diff options
142 files changed, 0 insertions, 88310 deletions
diff --git a/examples/middleware/.gitignore b/examples/middleware/.gitignore deleted file mode 100644 index 16d54bb13..000000000 --- a/examples/middleware/.gitignore +++ /dev/null @@ -1,24 +0,0 @@ -# build output -dist/ -# generated types -.astro/ - -# dependencies -node_modules/ - -# logs -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* - - -# environment variables -.env -.env.production - -# macOS-specific files -.DS_Store - -# jetbrains setting folder -.idea/ diff --git a/examples/middleware/astro.config.mjs b/examples/middleware/astro.config.mjs deleted file mode 100644 index 68ba7fac5..000000000 --- a/examples/middleware/astro.config.mjs +++ /dev/null @@ -1,10 +0,0 @@ -import { defineConfig } from 'astro/config'; -import node from '@astrojs/node'; - -// https://astro.build/config -export default defineConfig({ - output: 'server', - adapter: node({ - mode: 'standalone', - }), -}); diff --git a/examples/middleware/package.json b/examples/middleware/package.json deleted file mode 100644 index ce2a5ea57..000000000 --- a/examples/middleware/package.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name": "@example/middleware", - "type": "module", - "version": "0.0.1", - "private": true, - "scripts": { - "dev": "astro dev", - "start": "astro dev", - "build": "astro build", - "preview": "astro preview", - "astro": "astro", - "server": "node dist/server/entry.mjs" - }, - "dependencies": { - "@astrojs/node": "^8.3.4", - "astro": "^4.16.0", - "html-minifier": "^4.0.0" - }, - "devDependencies": { - "@types/html-minifier": "^4.0.5" - } -} diff --git a/examples/middleware/src/components/Card.astro b/examples/middleware/src/components/Card.astro deleted file mode 100644 index 1ff16e5fb..000000000 --- a/examples/middleware/src/components/Card.astro +++ /dev/null @@ -1,65 +0,0 @@ ---- -interface Props { - title: string; - body: string; - href: string; -} - -const { href, title, body } = Astro.props; ---- - -<li class="link-card"> - <a href={href}> - <h2> - {title} - <span>→</span> - </h2> - <p> - {body} - </p> - </a> -</li> -<style> - .link-card { - list-style: none; - display: flex; - padding: 0.25rem; - background-color: white; - background-image: none; - background-size: 400%; - border-radius: 0.6rem; - background-position: 100%; - transition: background-position 0.6s cubic-bezier(0.22, 1, 0.36, 1); - box-shadow: - 0 4px 6px -1px rgba(0, 0, 0, 0.1), - 0 2px 4px -2px rgba(0, 0, 0, 0.1); - } - - .link-card > a { - width: 100%; - text-decoration: none; - line-height: 1.4; - padding: 1rem 1.3rem; - border-radius: 0.35rem; - color: #111; - background-color: white; - opacity: 0.8; - } - h2 { - margin: 0; - font-size: 1.25rem; - transition: color 0.6s cubic-bezier(0.22, 1, 0.36, 1); - } - p { - margin-top: 0.5rem; - margin-bottom: 0; - color: #444; - } - .link-card:is(:hover, :focus-within) { - background-position: 0; - background-image: var(--accent-gradient); - } - .link-card:is(:hover, :focus-within) h2 { - color: rgb(var(--accent)); - } -</style> diff --git a/examples/middleware/src/env.d.ts b/examples/middleware/src/env.d.ts deleted file mode 100644 index 74b9019e5..000000000 --- a/examples/middleware/src/env.d.ts +++ /dev/null @@ -1,9 +0,0 @@ -/// <reference path="../.astro/types.d.ts" /> -declare namespace App { - interface Locals { - user: { - name: string; - surname: string; - }; - } -} diff --git a/examples/middleware/src/layouts/Layout.astro b/examples/middleware/src/layouts/Layout.astro deleted file mode 100644 index 90d2fb715..000000000 --- a/examples/middleware/src/layouts/Layout.astro +++ /dev/null @@ -1,42 +0,0 @@ ---- -interface Props { - title: string; -} - -const { title } = Astro.props; ---- - -<!doctype html> -<html lang="en"> - <head> - <meta charset="UTF-8" /> - <meta name="viewport" content="width=device-width" /> - <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> - <meta name="generator" content={Astro.generator} /> - <title>{title}</title> - </head> - <body> - <slot /> - </body> -</html> -<style is:global> - :root { - --accent: 124, 58, 237; - --accent-gradient: linear-gradient(45deg, rgb(var(--accent)), #da62c4 30%, white 60%); - } - html { - font-family: system-ui, sans-serif; - background-color: #f6f6f6; - } - code { - font-family: - Menlo, - Monaco, - Lucida Console, - Liberation Mono, - DejaVu Sans Mono, - Bitstream Vera Sans Mono, - Courier New, - monospace; - } -</style> diff --git a/examples/middleware/src/middleware.ts b/examples/middleware/src/middleware.ts deleted file mode 100644 index 4854105ca..000000000 --- a/examples/middleware/src/middleware.ts +++ /dev/null @@ -1,83 +0,0 @@ -import { defineMiddleware, sequence } from 'astro:middleware'; -import htmlMinifier from 'html-minifier'; - -const limit = 50; - -const loginInfo: { - token: undefined | string; - currentTime: undefined | number; -} = { - token: undefined, - currentTime: undefined, -}; - -export const minifier = defineMiddleware(async (_context, next) => { - const response = await next(); - // check if the response is returning some HTML - if (response.headers.get('content-type') === 'text/html') { - let headers = response.headers; - let html = await response.text(); - let newHtml = htmlMinifier.minify(html, { - removeAttributeQuotes: true, - collapseWhitespace: true, - }); - return new Response(newHtml, { - status: 200, - headers, - }); - } - return response; -}); - -const validation = defineMiddleware(async (context, next) => { - if (context.request.url.endsWith('/admin')) { - if (loginInfo.currentTime) { - const difference = new Date().getTime() - loginInfo.currentTime; - if (difference > limit) { - console.log('hit threshold'); - loginInfo.token = undefined; - loginInfo.currentTime = undefined; - return context.redirect('/login'); - } - } - // we naively check if we have a token - if (loginInfo.token && loginInfo.token === 'loggedIn') { - // we fill the locals with user-facing information - context.locals.user = { - name: 'AstroUser', - surname: 'AstroSurname', - }; - return await next(); - } else { - loginInfo.token = undefined; - loginInfo.currentTime = undefined; - return context.redirect('/login'); - } - } else if (context.request.url.endsWith('/api/login')) { - const response = await next(); - // the login endpoint will return to us a JSON with username and password - if (response.headers.get('content-type') === 'application/json') { - const data = await response.json(); - // we naively check if username and password are equals to some string - if (data.username === 'astro' && data.password === 'astro') { - // we store the token somewhere outside of locals because the `locals` object is attached to the request - // and when doing a redirect, we lose that information - loginInfo.token = 'loggedIn'; - loginInfo.currentTime = new Date().getTime(); - return context.redirect('/admin'); - } - } - return response; - } else if (context.request.url.endsWith('/api/logout')) { - const response = await next(); - if (response.ok) { - loginInfo.token = undefined; - loginInfo.currentTime = undefined; - return context.redirect('/login'); - } - return response; - } - return next(); -}); - -export const onRequest = sequence(validation, minifier); diff --git a/examples/middleware/src/pages/admin.astro b/examples/middleware/src/pages/admin.astro deleted file mode 100644 index 921758228..000000000 --- a/examples/middleware/src/pages/admin.astro +++ /dev/null @@ -1,60 +0,0 @@ ---- -import Layout from '../layouts/Layout.astro'; -import Card from '../components/Card.astro'; -const user = Astro.locals.user; ---- - -<Layout title="Welcome back!!"> - <main> - <h1>Welcome back <span class="text-gradient">{user.name} {user.surname}</span></h1> - {} - <ul role="list" class="link-card-grid"> - <Card href="/api/logout" title="Logout" body="Logout now" /> - </ul> - </main> -</Layout> - -<style> - main { - margin: auto; - padding: 1.5rem; - max-width: 60ch; - } - h1 { - font-size: 3rem; - font-weight: 800; - margin: 0; - } - .text-gradient { - background-image: var(--accent-gradient); - -webkit-background-clip: text; - -webkit-text-fill-color: transparent; - background-size: 400%; - background-position: 0%; - } - .instructions { - line-height: 1.6; - margin: 1rem 0; - border: 1px solid rgba(var(--accent), 25%); - background-color: white; - padding: 1rem; - border-radius: 0.4rem; - } - .instructions code { - font-size: 0.875em; - font-weight: bold; - background: rgba(var(--accent), 12%); - color: rgb(var(--accent)); - border-radius: 4px; - padding: 0.3em 0.45em; - } - .instructions strong { - color: rgb(var(--accent)); - } - .link-card-grid { - display: grid; - grid-template-columns: repeat(auto-fit, minmax(24ch, 1fr)); - gap: 1rem; - padding: 0; - } -</style> diff --git a/examples/middleware/src/pages/api/login.ts b/examples/middleware/src/pages/api/login.ts deleted file mode 100644 index 24012444c..000000000 --- a/examples/middleware/src/pages/api/login.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { APIRoute, APIContext } from "astro"; - -export const POST: APIRoute = async (context: APIContext) => { - try { - const data = await context.request.formData(); - return new Response( - JSON.stringify({ - username: data.get("username"), - password: data.get("password"), - }), - { - headers: { "Content-Type": "application/json" }, - } - ); - } catch (e) { - if (e instanceof Error) { - console.error(e.message); - } - } - return new Response(null, { status: 400 }); -}; diff --git a/examples/middleware/src/pages/api/logout.ts b/examples/middleware/src/pages/api/logout.ts deleted file mode 100644 index b6c6e9e06..000000000 --- a/examples/middleware/src/pages/api/logout.ts +++ /dev/null @@ -1,5 +0,0 @@ -import type { APIRoute, APIContext } from "astro"; - -export const GET: APIRoute = async (_: APIContext) => { - return new Response(null, { status: 200 }); -}; diff --git a/examples/middleware/src/pages/index.astro b/examples/middleware/src/pages/index.astro deleted file mode 100644 index bd934ff94..000000000 --- a/examples/middleware/src/pages/index.astro +++ /dev/null @@ -1,63 +0,0 @@ ---- -import Layout from '../layouts/Layout.astro'; -import Card from '../components/Card.astro'; ---- - -<Layout title="Welcome to Astro."> - <main> - <h1>Welcome to <span class="text-gradient">Astro</span></h1> - <p class="instructions"> - To get started, open the directory <code>src/pages</code> in your project.<br /> - <strong>Code Challenge:</strong> Tweak the "Welcome to Astro" message above. - </p> - {} - <ul role="list" class="link-card-grid"> - <Card href="/login" title="Login" body="Try the login with astro/astro" /> - </ul> - </main> -</Layout> - -<style> - main { - margin: auto; - padding: 1.5rem; - max-width: 60ch; - } - h1 { - font-size: 3rem; - font-weight: 800; - margin: 0; - } - .text-gradient { - background-image: var(--accent-gradient); - -webkit-background-clip: text; - -webkit-text-fill-color: transparent; - background-size: 400%; - background-position: 0%; - } - .instructions { - line-height: 1.6; - margin: 1rem 0; - border: 1px solid rgba(var(--accent), 25%); - background-color: white; - padding: 1rem; - border-radius: 0.4rem; - } - .instructions code { - font-size: 0.875em; - font-weight: bold; - background: rgba(var(--accent), 12%); - color: rgb(var(--accent)); - border-radius: 4px; - padding: 0.3em 0.45em; - } - .instructions strong { - color: rgb(var(--accent)); - } - .link-card-grid { - display: grid; - grid-template-columns: repeat(auto-fit, minmax(24ch, 1fr)); - gap: 1rem; - padding: 0; - } -</style> diff --git a/examples/middleware/src/pages/login.astro b/examples/middleware/src/pages/login.astro deleted file mode 100644 index 697f6819c..000000000 --- a/examples/middleware/src/pages/login.astro +++ /dev/null @@ -1,76 +0,0 @@ ---- -import Layout from '../layouts/Layout.astro'; - -const status = Astro.response.status; -let redirectMessage; -if (status === 301) { - redirectMessage = 'Your session is finished, please login again'; -} ---- - -<Layout title="Welcome to Astro."> - <main> - <h1>Welcome to <span class="text-gradient">Astro</span></h1> - <p class="instructions"> - To get started, open the directory <code>src/pages</code> in your project.<br /> - <strong>Code Challenge:</strong> Tweak the "Welcome to Astro" message above. - <strong>Login with:</strong> Username: <code>astro</code> Password: <code>astro</code> - </p> - {redirectMessage} - <form action="/api/login" method="POST"> - <label> - Username: <input type="text" minlength="1" id="username" name="username" /> - </label> - <label> - Password: <input type="password" minlength="1" id="password" name="password" /> - </label> - - <button>Submit</button> - </form> - </main> -</Layout> - -<style> - main { - margin: auto; - padding: 1.5rem; - max-width: 60ch; - } - h1 { - font-size: 3rem; - font-weight: 800; - margin: 0; - } - .text-gradient { - background-image: var(--accent-gradient); - -webkit-background-clip: text; - -webkit-text-fill-color: transparent; - background-size: 400%; - background-position: 0%; - } - .instructions { - line-height: 1.6; - margin: 1rem 0; - border: 1px solid rgba(var(--accent), 25%); - background-color: white; - padding: 1rem; - border-radius: 0.4rem; - } - .instructions code { - font-size: 0.875em; - font-weight: bold; - background: rgba(var(--accent), 12%); - color: rgb(var(--accent)); - border-radius: 4px; - padding: 0.3em 0.45em; - } - .instructions strong { - color: rgb(var(--accent)); - } - .link-card-grid { - display: grid; - grid-template-columns: repeat(auto-fit, minmax(24ch, 1fr)); - gap: 1rem; - padding: 0; - } -</style> diff --git a/examples/middleware/tsconfig.json b/examples/middleware/tsconfig.json deleted file mode 100644 index d78f81ec4..000000000 --- a/examples/middleware/tsconfig.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "astro/tsconfigs/base" -} diff --git a/examples/non-html-pages/.codesandbox/Dockerfile b/examples/non-html-pages/.codesandbox/Dockerfile deleted file mode 100644 index c3b5c81a1..000000000 --- a/examples/non-html-pages/.codesandbox/Dockerfile +++ /dev/null @@ -1 +0,0 @@ -FROM node:18-bullseye diff --git a/examples/non-html-pages/.gitignore b/examples/non-html-pages/.gitignore deleted file mode 100644 index 16d54bb13..000000000 --- a/examples/non-html-pages/.gitignore +++ /dev/null @@ -1,24 +0,0 @@ -# build output -dist/ -# generated types -.astro/ - -# dependencies -node_modules/ - -# logs -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* - - -# environment variables -.env -.env.production - -# macOS-specific files -.DS_Store - -# jetbrains setting folder -.idea/ diff --git a/examples/non-html-pages/.vscode/extensions.json b/examples/non-html-pages/.vscode/extensions.json deleted file mode 100644 index 22a15055d..000000000 --- a/examples/non-html-pages/.vscode/extensions.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "recommendations": ["astro-build.astro-vscode"], - "unwantedRecommendations": [] -} diff --git a/examples/non-html-pages/.vscode/launch.json b/examples/non-html-pages/.vscode/launch.json deleted file mode 100644 index d64220976..000000000 --- a/examples/non-html-pages/.vscode/launch.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - "command": "./node_modules/.bin/astro dev", - "name": "Development server", - "request": "launch", - "type": "node-terminal" - } - ] -} diff --git a/examples/non-html-pages/README.md b/examples/non-html-pages/README.md deleted file mode 100644 index c26b01698..000000000 --- a/examples/non-html-pages/README.md +++ /dev/null @@ -1,52 +0,0 @@ -# Astro Starter Kit: Non-HTML Pages - -Documentation for "Non-HTML Pages": - -https://docs.astro.build/en/core-concepts/endpoints/#static-file-endpoints - -```sh -npm create astro@latest -- --template non-html-pages -``` - -[](https://stackblitz.com/github/withastro/astro/tree/latest/examples/non-html-pages) -[](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/non-html-pages) -[](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/non-html-pages/devcontainer.json) - -> 🧑🚀 **Seasoned astronaut?** Delete this file. Have fun! - -## 🚀 Project Structure - -Inside of your Astro project, you'll see the following folders and files: - -```text -/ -├── public/ -├── src/ -│ └── pages/ -│ └── index.astro -│ └── about.json.ts -└── package.json -``` - -Astro looks for `.astro`, `.js` or `.ts` files in the `src/pages/` directory. Each page is exposed as a route based on its file name. - -There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components. - -Any static assets, like images, can be placed in the `public/` directory. - -## 🧞 Commands - -All commands are run from the root of the project, from a terminal: - -| Command | Action | -| :------------------------ | :----------------------------------------------- | -| `npm install` | Installs dependencies | -| `npm run dev` | Starts local dev server at `localhost:4321` | -| `npm run build` | Build your production site to `./dist/` | -| `npm run preview` | Preview your build locally, before deploying | -| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` | -| `npm run astro -- --help` | Get help using the Astro CLI | - -## 👀 Want to learn more? - -Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat). diff --git a/examples/non-html-pages/astro.config.mjs b/examples/non-html-pages/astro.config.mjs deleted file mode 100644 index 882e6515a..000000000 --- a/examples/non-html-pages/astro.config.mjs +++ /dev/null @@ -1,4 +0,0 @@ -import { defineConfig } from 'astro/config'; - -// https://astro.build/config -export default defineConfig({}); diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json deleted file mode 100644 index 42eeb8439..000000000 --- a/examples/non-html-pages/package.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "name": "@example/non-html-pages", - "type": "module", - "version": "0.0.1", - "private": true, - "scripts": { - "dev": "astro dev", - "start": "astro dev", - "build": "astro build", - "preview": "astro preview", - "astro": "astro" - }, - "dependencies": { - "astro": "^4.16.0" - } -} diff --git a/examples/non-html-pages/public/favicon.svg b/examples/non-html-pages/public/favicon.svg deleted file mode 100644 index f157bd1c5..000000000 --- a/examples/non-html-pages/public/favicon.svg +++ /dev/null @@ -1,9 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 128 128"> - <path d="M50.4 78.5a75.1 75.1 0 0 0-28.5 6.9l24.2-65.7c.7-2 1.9-3.2 3.4-3.2h29c1.5 0 2.7 1.2 3.4 3.2l24.2 65.7s-11.6-7-28.5-7L67 45.5c-.4-1.7-1.6-2.8-2.9-2.8-1.3 0-2.5 1.1-2.9 2.7L50.4 78.5Zm-1.1 28.2Zm-4.2-20.2c-2 6.6-.6 15.8 4.2 20.2a17.5 17.5 0 0 1 .2-.7 5.5 5.5 0 0 1 5.7-4.5c2.8.1 4.3 1.5 4.7 4.7.2 1.1.2 2.3.2 3.5v.4c0 2.7.7 5.2 2.2 7.4a13 13 0 0 0 5.7 4.9v-.3l-.2-.3c-1.8-5.6-.5-9.5 4.4-12.8l1.5-1a73 73 0 0 0 3.2-2.2 16 16 0 0 0 6.8-11.4c.3-2 .1-4-.6-6l-.8.6-1.6 1a37 37 0 0 1-22.4 2.7c-5-.7-9.7-2-13.2-6.2Z" /> - <style> - path { fill: #000; } - @media (prefers-color-scheme: dark) { - path { fill: #FFF; } - } - </style> -</svg> diff --git a/examples/non-html-pages/src/env.d.ts b/examples/non-html-pages/src/env.d.ts deleted file mode 100644 index e16c13c69..000000000 --- a/examples/non-html-pages/src/env.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// <reference path="../.astro/types.d.ts" /> diff --git a/examples/non-html-pages/src/pages/about.json.ts b/examples/non-html-pages/src/pages/about.json.ts deleted file mode 100644 index 8fa365724..000000000 --- a/examples/non-html-pages/src/pages/about.json.ts +++ /dev/null @@ -1,11 +0,0 @@ -// Returns the file body for this non-HTML file. -// The content type is based off of the extension in the filename, -// in this case: about.json. -export async function GET() { - return new Response( - JSON.stringify({ - name: 'Astro', - url: 'https://astro.build/', - }) - ); -} diff --git a/examples/non-html-pages/src/pages/index.astro b/examples/non-html-pages/src/pages/index.astro deleted file mode 100644 index 921400acd..000000000 --- a/examples/non-html-pages/src/pages/index.astro +++ /dev/null @@ -1,22 +0,0 @@ -<html lang="en"> - <head> - <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width" /> - <meta name="generator" content={Astro.generator} /> - <title>Astro</title> - </head> - <body> - <h1 id="result">Loading...</h1> - <script> - // Non-HTML files will be included in your final build, so you - // can fetch them directly in the browser. - const response = await fetch(`/about.json`); - const data = await response.json(); - const resultHeader = document.getElementById('result'); - - if (resultHeader) { - resultHeader.innerHTML = `Load complete!<br/>Built with: <a href="${data.url}">${data.name}!</a>`; - } - </script> - </body> -</html> diff --git a/examples/non-html-pages/tsconfig.json b/examples/non-html-pages/tsconfig.json deleted file mode 100644 index d78f81ec4..000000000 --- a/examples/non-html-pages/tsconfig.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "astro/tsconfigs/base" -} diff --git a/examples/server-islands/.gitignore b/examples/server-islands/.gitignore deleted file mode 100644 index 16d54bb13..000000000 --- a/examples/server-islands/.gitignore +++ /dev/null @@ -1,24 +0,0 @@ -# build output -dist/ -# generated types -.astro/ - -# dependencies -node_modules/ - -# logs -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* - - -# environment variables -.env -.env.production - -# macOS-specific files -.DS_Store - -# jetbrains setting folder -.idea/ diff --git a/examples/server-islands/astro.config.mjs b/examples/server-islands/astro.config.mjs deleted file mode 100644 index c0d6b918a..000000000 --- a/examples/server-islands/astro.config.mjs +++ /dev/null @@ -1,18 +0,0 @@ -import { defineConfig } from 'astro/config'; -import nodejs from '@astrojs/node'; -import react from '@astrojs/react'; -import tailwind from '@astrojs/tailwind'; - -// https://astro.build/config -export default defineConfig({ - output: 'server', - adapter: nodejs({ mode: 'standalone' }), - integrations: [ - react(), - tailwind({ applyBaseStyles: false }) - ], - devToolbar: { enabled: false }, - experimental: { - serverIslands: true, - } -}); diff --git a/examples/server-islands/package.json b/examples/server-islands/package.json deleted file mode 100644 index 32835a17b..000000000 --- a/examples/server-islands/package.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "name": "@example/server-islands", - "version": "0.0.1", - "private": true, - "scripts": { - "dev": "astro dev", - "start": "astro dev", - "build": "astro build", - "preview": "astro preview", - "astro": "astro" - }, - "devDependencies": { - "@astrojs/node": "^8.3.4", - "@astrojs/react": "^3.6.2", - "@astrojs/tailwind": "^5.1.2", - "@fortawesome/fontawesome-free": "^6.6.0", - "@tailwindcss/forms": "^0.5.9", - "@types/react": "^18.3.11", - "@types/react-dom": "^18.3.0", - "astro": "^4.16.0", - "postcss": "^8.4.47", - "react": "^18.3.1", - "react-dom": "^18.3.1", - "tailwindcss": "^3.4.13" - } -} diff --git a/examples/server-islands/public/assets/css/main.css b/examples/server-islands/public/assets/css/main.css deleted file mode 100644 index 5b49f60e1..000000000 --- a/examples/server-islands/public/assets/css/main.css +++ /dev/null @@ -1,1874 +0,0 @@ -/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap"); -@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap"); */ - -/* ! tailwindcss v3.0.23 | MIT License | https://tailwindcss.com */ - -/* -1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4) -2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116) -*/ - -*, -::before, -::after { - box-sizing: border-box; - /* 1 */ - border-width: 0; - /* 2 */ - border-style: solid; - /* 2 */ - border-color: #e5e7eb; - /* 2 */ -} - -::before, -::after { - --tw-content: ''; -} - -/* -1. Use a consistent sensible line-height in all browsers. -2. Prevent adjustments of font size after orientation changes in iOS. -3. Use a more readable tab size. -4. Use the user's configured `sans` font-family by default. -*/ - -html { - line-height: 1.5; - /* 1 */ - -webkit-text-size-adjust: 100%; - /* 2 */ - -moz-tab-size: 4; - /* 3 */ - -o-tab-size: 4; - tab-size: 4; - /* 3 */ - font-family: - ui-sans-serif, - system-ui, - -apple-system, - BlinkMacSystemFont, - 'Segoe UI', - Roboto, - 'Helvetica Neue', - Arial, - 'Noto Sans', - sans-serif, - 'Apple Color Emoji', - 'Segoe UI Emoji', - 'Segoe UI Symbol', - 'Noto Color Emoji'; - /* 4 */ -} - -/* -1. Remove the margin in all browsers. -2. Inherit line-height from `html` so users can set them as a class directly on the `html` element. -*/ - -body { - margin: 0; - /* 1 */ - line-height: inherit; - /* 2 */ -} - -/* -1. Add the correct height in Firefox. -2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) -3. Ensure horizontal rules are visible by default. -*/ - -hr { - height: 0; - /* 1 */ - color: inherit; - /* 2 */ - border-top-width: 1px; - /* 3 */ -} - -/* -Add the correct text decoration in Chrome, Edge, and Safari. -*/ - -abbr:where([title]) { - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; -} - -/* -Remove the default font size and weight for headings. -*/ - -h1, -h2, -h3, -h4, -h5, -h6 { - font-size: inherit; - font-weight: inherit; -} - -/* -Reset links to optimize for opt-in styling instead of opt-out. -*/ - -a { - color: inherit; - text-decoration: inherit; -} - -/* -Add the correct font weight in Edge and Safari. -*/ - -b, -strong { - font-weight: bolder; -} - -/* -1. Use the user's configured `mono` font family by default. -2. Correct the odd `em` font sizing in all browsers. -*/ - -code, -kbd, -samp, -pre { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', - 'Courier New', monospace; - /* 1 */ - font-size: 1em; - /* 2 */ -} - -/* -Add the correct font size in all browsers. -*/ - -small { - font-size: 80%; -} - -/* -Prevent `sub` and `sup` elements from affecting the line height in all browsers. -*/ - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sub { - bottom: -0.25em; -} - -sup { - top: -0.5em; -} - -/* -1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) -2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) -3. Remove gaps between table borders by default. -*/ - -table { - text-indent: 0; - /* 1 */ - border-color: inherit; - /* 2 */ - border-collapse: collapse; - /* 3 */ -} - -/* -1. Change the font styles in all browsers. -2. Remove the margin in Firefox and Safari. -3. Remove default padding in all browsers. -*/ - -button, -input, -optgroup, -select, -textarea { - font-family: inherit; - /* 1 */ - font-size: 100%; - /* 1 */ - line-height: inherit; - /* 1 */ - color: inherit; - /* 1 */ - margin: 0; - /* 2 */ - padding: 0; - /* 3 */ -} - -/* -Remove the inheritance of text transform in Edge and Firefox. -*/ - -button, -select { - text-transform: none; -} - -/* -1. Correct the inability to style clickable types in iOS and Safari. -2. Remove default button styles. -*/ - -button, -[type='button'], -[type='reset'], -[type='submit'] { - -webkit-appearance: button; - /* 1 */ - background-color: transparent; - /* 2 */ - background-image: none; - /* 2 */ -} - -/* -Use the modern Firefox focus style for all focusable elements. -*/ - -:-moz-focusring { - outline: auto; -} - -/* -Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737) -*/ - -:-moz-ui-invalid { - box-shadow: none; -} - -/* -Add the correct vertical alignment in Chrome and Firefox. -*/ - -progress { - vertical-align: baseline; -} - -/* -Correct the cursor style of increment and decrement buttons in Safari. -*/ - -::-webkit-inner-spin-button, -::-webkit-outer-spin-button { - height: auto; -} - -/* -1. Correct the odd appearance in Chrome and Safari. -2. Correct the outline style in Safari. -*/ - -[type='search'] { - -webkit-appearance: textfield; - /* 1 */ - outline-offset: -2px; - /* 2 */ -} - -/* -Remove the inner padding in Chrome and Safari on macOS. -*/ - -::-webkit-search-decoration { - -webkit-appearance: none; -} - -/* -1. Correct the inability to style clickable types in iOS and Safari. -2. Change font properties to `inherit` in Safari. -*/ - -::-webkit-file-upload-button { - -webkit-appearance: button; - /* 1 */ - font: inherit; - /* 2 */ -} - -/* -Add the correct display in Chrome and Safari. -*/ - -summary { - display: list-item; -} - -/* -Removes the default spacing and border for appropriate elements. -*/ - -blockquote, -dl, -dd, -h1, -h2, -h3, -h4, -h5, -h6, -hr, -figure, -p, -pre { - margin: 0; -} - -fieldset { - margin: 0; - padding: 0; -} - -legend { - padding: 0; -} - -ol, -ul, -menu { - list-style: none; - margin: 0; - padding: 0; -} - -/* -Prevent resizing textareas horizontally by default. -*/ - -textarea { - resize: vertical; -} - -/* -1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300) -2. Set the default placeholder color to the user's configured gray 400 color. -*/ - -input::-moz-placeholder, -textarea::-moz-placeholder { - opacity: 1; - /* 1 */ - color: #9ca3af; - /* 2 */ -} - -input:-ms-input-placeholder, -textarea:-ms-input-placeholder { - opacity: 1; - /* 1 */ - color: #9ca3af; - /* 2 */ -} - -input::placeholder, -textarea::placeholder { - opacity: 1; - /* 1 */ - color: #9ca3af; - /* 2 */ -} - -/* -Set the default cursor for buttons. -*/ - -button, -[role='button'] { - cursor: pointer; -} - -/* -Make sure disabled buttons don't get the pointer cursor. -*/ - -:disabled { - cursor: default; -} - -/* -1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14) -2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210) - This can trigger a poorly considered lint error in some tools but is included by design. -*/ - -img, -svg, -video, -canvas, -audio, -iframe, -embed, -object { - display: block; - /* 1 */ - vertical-align: middle; - /* 2 */ -} - -/* -Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14) -*/ - -img, -video { - max-width: 100%; - height: auto; -} - -/* -Ensure the default browser behavior of the `hidden` attribute. -*/ - -[hidden] { - display: none; -} - -[type='text'], -[type='email'], -[type='url'], -[type='password'], -[type='number'], -[type='date'], -[type='datetime-local'], -[type='month'], -[type='search'], -[type='tel'], -[type='time'], -[type='week'], -[multiple], -textarea, -select { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - background-color: #fff; - border-color: #6b7280; - border-width: 1px; - border-radius: 0px; - padding-top: 0.5rem; - padding-right: 0.75rem; - padding-bottom: 0.5rem; - padding-left: 0.75rem; - font-size: 1rem; - line-height: 1.5rem; - --tw-shadow: 0 0 #0000; -} - -[type='text']:focus, -[type='email']:focus, -[type='url']:focus, -[type='password']:focus, -[type='number']:focus, -[type='date']:focus, -[type='datetime-local']:focus, -[type='month']:focus, -[type='search']:focus, -[type='tel']:focus, -[type='time']:focus, -[type='week']:focus, -[multiple]:focus, -textarea:focus, -select:focus { - outline: 2px solid transparent; - outline-offset: 2px; - --tw-ring-inset: var(--tw-empty, /*!*/ /*!*/); - --tw-ring-offset-width: 0px; - --tw-ring-offset-color: #fff; - --tw-ring-color: #2563eb; - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) - var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) - var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - border-color: #2563eb; -} - -input::-moz-placeholder, -textarea::-moz-placeholder { - color: #6b7280; - opacity: 1; -} - -input:-ms-input-placeholder, -textarea:-ms-input-placeholder { - color: #6b7280; - opacity: 1; -} - -input::placeholder, -textarea::placeholder { - color: #6b7280; - opacity: 1; -} - -::-webkit-datetime-edit-fields-wrapper { - padding: 0; -} - -::-webkit-date-and-time-value { - min-height: 1.5em; -} - -::-webkit-datetime-edit, -::-webkit-datetime-edit-year-field, -::-webkit-datetime-edit-month-field, -::-webkit-datetime-edit-day-field, -::-webkit-datetime-edit-hour-field, -::-webkit-datetime-edit-minute-field, -::-webkit-datetime-edit-second-field, -::-webkit-datetime-edit-millisecond-field, -::-webkit-datetime-edit-meridiem-field { - padding-top: 0; - padding-bottom: 0; -} - -select { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e"); - background-position: right 0.5rem center; - background-repeat: no-repeat; - background-size: 1.5em 1.5em; - padding-right: 2.5rem; - -webkit-print-color-adjust: exact; - color-adjust: exact; -} - -[multiple] { - background-image: initial; - background-position: initial; - background-repeat: unset; - background-size: initial; - padding-right: 0.75rem; - -webkit-print-color-adjust: unset; - color-adjust: unset; -} - -[type='checkbox'], -[type='radio'] { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - padding: 0; - -webkit-print-color-adjust: exact; - color-adjust: exact; - display: inline-block; - vertical-align: middle; - background-origin: border-box; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - flex-shrink: 0; - height: 1rem; - width: 1rem; - color: #2563eb; - background-color: #fff; - border-color: #6b7280; - border-width: 1px; - --tw-shadow: 0 0 #0000; -} - -[type='checkbox'] { - border-radius: 0px; -} - -[type='radio'] { - border-radius: 100%; -} - -[type='checkbox']:focus, -[type='radio']:focus { - outline: 2px solid transparent; - outline-offset: 2px; - --tw-ring-inset: var(--tw-empty, /*!*/ /*!*/); - --tw-ring-offset-width: 2px; - --tw-ring-offset-color: #fff; - --tw-ring-color: #2563eb; - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) - var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) - var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); -} - -[type='checkbox']:checked, -[type='radio']:checked { - border-color: transparent; - background-color: currentColor; - background-size: 100% 100%; - background-position: center; - background-repeat: no-repeat; -} - -[type='checkbox']:checked { - background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e"); -} - -[type='radio']:checked { - background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e"); -} - -[type='checkbox']:checked:hover, -[type='checkbox']:checked:focus, -[type='radio']:checked:hover, -[type='radio']:checked:focus { - border-color: transparent; - background-color: currentColor; -} - -[type='checkbox']:indeterminate { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e"); - border-color: transparent; - background-color: currentColor; - background-size: 100% 100%; - background-position: center; - background-repeat: no-repeat; -} - -[type='checkbox']:indeterminate:hover, -[type='checkbox']:indeterminate:focus { - border-color: transparent; - background-color: currentColor; -} - -[type='file'] { - background: unset; - border-color: inherit; - border-width: 0; - border-radius: 0; - padding: 0; - font-size: unset; - line-height: inherit; -} - -[type='file']:focus { - outline: 1px auto -webkit-focus-ring-color; -} - -body { - font-family: Poppins, sans-serif; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - font-family: Roboto, sans-serif; -} - -*, -::before, -::after { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - --tw-pan-x: ; - --tw-pan-y: ; - --tw-pinch-zoom: ; - --tw-scroll-snap-strictness: proximity; - --tw-ordinal: ; - --tw-slashed-zero: ; - --tw-numeric-figure: ; - --tw-numeric-spacing: ; - --tw-numeric-fraction: ; - --tw-ring-inset: ; - --tw-ring-offset-width: 0px; - --tw-ring-offset-color: #fff; - --tw-ring-color: rgb(59 130 246 / 0.5); - --tw-ring-offset-shadow: 0 0 #0000; - --tw-ring-shadow: 0 0 #0000; - --tw-shadow: 0 0 #0000; - --tw-shadow-colored: 0 0 #0000; - --tw-blur: ; - --tw-brightness: ; - --tw-contrast: ; - --tw-grayscale: ; - --tw-hue-rotate: ; - --tw-invert: ; - --tw-saturate: ; - --tw-sepia: ; - --tw-drop-shadow: ; - --tw-backdrop-blur: ; - --tw-backdrop-brightness: ; - --tw-backdrop-contrast: ; - --tw-backdrop-grayscale: ; - --tw-backdrop-hue-rotate: ; - --tw-backdrop-invert: ; - --tw-backdrop-opacity: ; - --tw-backdrop-saturate: ; - --tw-backdrop-sepia: ; -} - -.container { - width: 100%; - margin-right: auto; - margin-left: auto; - padding-right: 1rem; - padding-left: 1rem; -} - -@media (min-width: 640px) { - .container { - max-width: 640px; - } -} - -@media (min-width: 768px) { - .container { - max-width: 768px; - } -} - -@media (min-width: 1024px) { - .container { - max-width: 1024px; - } -} - -@media (min-width: 1280px) { - .container { - max-width: 1280px; - } -} - -@media (min-width: 1536px) { - .container { - max-width: 1536px; - } -} - -.size-selector input:checked + label { - --tw-bg-opacity: 1; - background-color: rgb(253 61 87 / var(--tw-bg-opacity)); - --tw-text-opacity: 1; - color: rgb(255 255 255 / var(--tw-text-opacity)); -} - -.color-selector input:checked + label { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) - var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) - var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); - --tw-ring-opacity: 1; - --tw-ring-color: rgb(253 61 87 / var(--tw-ring-opacity)); -} - -.input-box { - display: block; - width: 100%; - border-radius: 0.25rem; - border-width: 1px; - --tw-border-opacity: 1; - border-color: rgb(209 213 219 / var(--tw-border-opacity)); - padding-left: 1rem; - padding-right: 1rem; - padding-top: 0.75rem; - padding-bottom: 0.75rem; - font-size: 0.875rem; - line-height: 1.25rem; - --tw-text-opacity: 1; - color: rgb(75 85 99 / var(--tw-text-opacity)); -} - -.input-box::-moz-placeholder { - --tw-placeholder-opacity: 1; - color: rgb(156 163 175 / var(--tw-placeholder-opacity)); -} - -.input-box:-ms-input-placeholder { - --tw-placeholder-opacity: 1; - color: rgb(156 163 175 / var(--tw-placeholder-opacity)); -} - -.input-box::placeholder { - --tw-placeholder-opacity: 1; - color: rgb(156 163 175 / var(--tw-placeholder-opacity)); -} - -.input-box:focus { - --tw-border-opacity: 1; - border-color: rgb(253 61 87 / var(--tw-border-opacity)); - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) - var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) - var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); -} - -.invisible { - visibility: hidden; -} - -.absolute { - position: absolute; -} - -.relative { - position: relative; -} - -.inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; -} - -.left-4 { - left: 1rem; -} - -.top-3 { - top: 0.75rem; -} - -.right-0 { - right: 0px; -} - -.-top-1 { - top: -0.25rem; -} - -.-right-3 { - right: -0.75rem; -} - -.left-0 { - left: 0px; -} - -.top-full { - top: 100%; -} - -.-left-8 { - left: -2rem; -} - -.top-0 { - top: 0px; -} - -.z-10 { - z-index: 10; -} - -.col-span-1 { - grid-column: span 1 / span 1; -} - -.col-span-2 { - grid-column: span 2 / span 2; -} - -.col-span-3 { - grid-column: span 3 / span 3; -} - -.col-span-9 { - grid-column: span 9 / span 9; -} - -.col-span-8 { - grid-column: span 8 / span 8; -} - -.col-span-4 { - grid-column: span 4 / span 4; -} - -.mx-auto { - margin-left: auto; - margin-right: auto; -} - -.mx-3 { - margin-left: 0.75rem; - margin-right: 0.75rem; -} - -.ml-2 { - margin-left: 0.5rem; -} - -.ml-6 { - margin-left: 1.5rem; -} - -.mb-4 { - margin-bottom: 1rem; -} - -.mt-12 { - margin-top: 3rem; -} - -.mb-6 { - margin-bottom: 1.5rem; -} - -.mb-2 { - margin-bottom: 0.5rem; -} - -.mb-1 { - margin-bottom: 0.25rem; -} - -.ml-3 { - margin-left: 0.75rem; -} - -.mr-2 { - margin-right: 0.5rem; -} - -.mt-4 { - margin-top: 1rem; -} - -.mt-6 { - margin-top: 1.5rem; -} - -.mt-1 { - margin-top: 0.25rem; -} - -.mt-2 { - margin-top: 0.5rem; -} - -.mb-3 { - margin-bottom: 0.75rem; -} - -.ml-auto { - margin-left: auto; -} - -.block { - display: block; -} - -.flex { - display: flex; -} - -.table { - display: table; -} - -.grid { - display: grid; -} - -.hidden { - display: none; -} - -.h-5 { - height: 1.25rem; -} - -.h-12 { - height: 3rem; -} - -.h-8 { - height: 2rem; -} - -.h-14 { - height: 3.5rem; -} - -.h-3 { - height: 0.75rem; -} - -.h-6 { - height: 1.5rem; -} - -.h-9 { - height: 2.25rem; -} - -.w-32 { - width: 8rem; -} - -.w-full { - width: 100%; -} - -.w-5 { - width: 1.25rem; -} - -.w-10\/12 { - width: 83.333333%; -} - -.w-12 { - width: 3rem; -} - -.w-9 { - width: 2.25rem; -} - -.w-14 { - width: 3.5rem; -} - -.w-3 { - width: 0.75rem; -} - -.w-1\/2 { - width: 50%; -} - -.w-6 { - width: 1.5rem; -} - -.w-max { - width: -webkit-max-content; - width: -moz-max-content; - width: max-content; -} - -.w-8 { - width: 2rem; -} - -.w-3\/5 { - width: 60%; -} - -.w-40 { - width: 10rem; -} - -.w-44 { - width: 11rem; -} - -.w-10 { - width: 2.5rem; -} - -.w-28 { - width: 7rem; -} - -.w-1\/3 { - width: 33.333333%; -} - -.max-w-xl { - max-width: 36rem; -} - -.max-w-lg { - max-width: 32rem; -} - -.flex-shrink-0 { - flex-shrink: 0; -} - -.flex-grow { - flex-grow: 1; -} - -.table-auto { - table-layout: auto; -} - -.border-collapse { - border-collapse: collapse; -} - -.cursor-pointer { - cursor: pointer; -} - -.cursor-not-allowed { - cursor: not-allowed; -} - -.select-none { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); -} - -.grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); -} - -.grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); -} - -.grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)); -} - -.grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); -} - -.grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); -} - -.items-start { - align-items: flex-start; -} - -.items-center { - align-items: center; -} - -.items-baseline { - align-items: baseline; -} - -.justify-center { - justify-content: center; -} - -.justify-between { - justify-content: space-between; -} - -.gap-6 { - gap: 1.5rem; -} - -.gap-5 { - gap: 1.25rem; -} - -.gap-3 { - gap: 0.75rem; -} - -.gap-2 { - gap: 0.5rem; -} - -.gap-1 { - gap: 0.25rem; -} - -.gap-4 { - gap: 1rem; -} - -.gap-8 { - gap: 2rem; -} - -.space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(1rem * var(--tw-space-x-reverse)); - margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); -} - -.space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); -} - -.space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0.5rem * var(--tw-space-x-reverse)); - margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); -} - -.space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1rem * var(--tw-space-y-reverse)); -} - -.space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(1.25rem * var(--tw-space-x-reverse)); - margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); -} - -.space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); -} - -.space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2rem * var(--tw-space-y-reverse)); -} - -.space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); -} - -.space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); -} - -.divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); -} - -.divide-x > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 0; - border-right-width: calc(1px * var(--tw-divide-x-reverse)); - border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); -} - -.divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed; -} - -.divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgb(209 213 219 / var(--tw-divide-opacity)); -} - -.divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgb(229 231 235 / var(--tw-divide-opacity)); -} - -.overflow-hidden { - overflow: hidden; -} - -.rounded-full { - border-radius: 9999px; -} - -.rounded-md { - border-radius: 0.375rem; -} - -.rounded-sm { - border-radius: 0.125rem; -} - -.rounded { - border-radius: 0.25rem; -} - -.rounded-l-md { - border-top-left-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; -} - -.rounded-r-md { - border-top-right-radius: 0.375rem; - border-bottom-right-radius: 0.375rem; -} - -.rounded-b { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; -} - -.border { - border-width: 1px; -} - -.border-r-0 { - border-right-width: 0px; -} - -.border-t { - border-top-width: 1px; -} - -.border-b { - border-bottom-width: 1px; -} - -.border-b-2 { - border-bottom-width: 2px; -} - -.border-primary { - --tw-border-opacity: 1; - border-color: rgb(253 61 87 / var(--tw-border-opacity)); -} - -.border-gray-100 { - --tw-border-opacity: 1; - border-color: rgb(243 244 246 / var(--tw-border-opacity)); -} - -.border-gray-200 { - --tw-border-opacity: 1; - border-color: rgb(229 231 235 / var(--tw-border-opacity)); -} - -.border-gray-300 { - --tw-border-opacity: 1; - border-color: rgb(209 213 219 / var(--tw-border-opacity)); -} - -.border-red-400 { - --tw-border-opacity: 1; - border-color: rgb(248 113 113 / var(--tw-border-opacity)); -} - -.bg-white { - --tw-bg-opacity: 1; - background-color: rgb(255 255 255 / var(--tw-bg-opacity)); -} - -.bg-primary { - --tw-bg-opacity: 1; - background-color: rgb(253 61 87 / var(--tw-bg-opacity)); -} - -.bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgb(31 41 55 / var(--tw-bg-opacity)); -} - -.bg-black { - --tw-bg-opacity: 1; - background-color: rgb(0 0 0 / var(--tw-bg-opacity)); -} - -.bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgb(30 64 175 / var(--tw-bg-opacity)); -} - -.bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgb(220 38 38 / var(--tw-bg-opacity)); -} - -.bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgb(248 113 113 / var(--tw-bg-opacity)); -} - -.bg-opacity-40 { - --tw-bg-opacity: 0.4; -} - -.bg-cover { - background-size: cover; -} - -.bg-center { - background-position: center; -} - -.bg-no-repeat { - background-repeat: no-repeat; -} - -.object-contain { - -o-object-fit: contain; - object-fit: contain; -} - -.object-cover { - -o-object-fit: cover; - object-fit: cover; -} - -.p-1 { - padding: 0.25rem; -} - -.p-4 { - padding: 1rem; -} - -.py-4 { - padding-top: 1rem; - padding-bottom: 1rem; -} - -.py-3 { - padding-top: 0.75rem; - padding-bottom: 0.75rem; -} - -.px-8 { - padding-left: 2rem; - padding-right: 2rem; -} - -.px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; -} - -.py-5 { - padding-top: 1.25rem; - padding-bottom: 1.25rem; -} - -.py-36 { - padding-top: 9rem; - padding-bottom: 9rem; -} - -.py-16 { - padding-top: 4rem; - padding-bottom: 4rem; -} - -.px-3 { - padding-left: 0.75rem; - padding-right: 0.75rem; -} - -.py-6 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; -} - -.px-4 { - padding-left: 1rem; - padding-right: 1rem; -} - -.py-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; -} - -.py-7 { - padding-top: 1.75rem; - padding-bottom: 1.75rem; -} - -.py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; -} - -.pl-12 { - padding-left: 3rem; -} - -.pr-3 { - padding-right: 0.75rem; -} - -.pb-16 { - padding-bottom: 4rem; -} - -.pt-4 { - padding-top: 1rem; -} - -.pb-3 { - padding-bottom: 0.75rem; -} - -.pt-16 { - padding-top: 4rem; -} - -.pb-12 { - padding-bottom: 3rem; -} - -.pl-8 { - padding-left: 2rem; -} - -.pt-6 { - padding-top: 1.5rem; -} - -.pb-8 { - padding-bottom: 2rem; -} - -.pb-5 { - padding-bottom: 1.25rem; -} - -.pt-5 { - padding-top: 1.25rem; -} - -.pb-7 { - padding-bottom: 1.75rem; -} - -.pb-6 { - padding-bottom: 1.5rem; -} - -.text-left { - text-align: left; -} - -.text-center { - text-align: center; -} - -.font-roboto { - font-family: Roboto, sans-serif; -} - -.text-lg { - font-size: 1.125rem; - line-height: 1.75rem; -} - -.text-2xl { - font-size: 1.5rem; - line-height: 2rem; -} - -.text-xs { - font-size: 0.75rem; - line-height: 1rem; -} - -.text-sm { - font-size: 0.875rem; - line-height: 1.25rem; -} - -.text-6xl { - font-size: 3.75rem; - line-height: 1; -} - -.text-xl { - font-size: 1.25rem; - line-height: 1.75rem; -} - -.text-base { - font-size: 1rem; - line-height: 1.5rem; -} - -.text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; -} - -.font-medium { - font-weight: 500; -} - -.font-semibold { - font-weight: 600; -} - -.uppercase { - text-transform: uppercase; -} - -.capitalize { - text-transform: capitalize; -} - -.leading-3 { - line-height: 0.75rem; -} - -.tracking-wider { - letter-spacing: 0.05em; -} - -.text-gray-400 { - --tw-text-opacity: 1; - color: rgb(156 163 175 / var(--tw-text-opacity)); -} - -.text-white { - --tw-text-opacity: 1; - color: rgb(255 255 255 / var(--tw-text-opacity)); -} - -.text-gray-700 { - --tw-text-opacity: 1; - color: rgb(55 65 81 / var(--tw-text-opacity)); -} - -.text-gray-600 { - --tw-text-opacity: 1; - color: rgb(75 85 99 / var(--tw-text-opacity)); -} - -.text-gray-200 { - --tw-text-opacity: 1; - color: rgb(229 231 235 / var(--tw-text-opacity)); -} - -.text-gray-800 { - --tw-text-opacity: 1; - color: rgb(31 41 55 / var(--tw-text-opacity)); -} - -.text-gray-500 { - --tw-text-opacity: 1; - color: rgb(107 114 128 / var(--tw-text-opacity)); -} - -.text-primary { - --tw-text-opacity: 1; - color: rgb(253 61 87 / var(--tw-text-opacity)); -} - -.text-yellow-400 { - --tw-text-opacity: 1; - color: rgb(250 204 21 / var(--tw-text-opacity)); -} - -.text-green-600 { - --tw-text-opacity: 1; - color: rgb(22 163 74 / var(--tw-text-opacity)); -} - -.text-red-600 { - --tw-text-opacity: 1; - color: rgb(220 38 38 / var(--tw-text-opacity)); -} - -.line-through { - -webkit-text-decoration-line: line-through; - text-decoration-line: line-through; -} - -.placeholder-gray-400::-moz-placeholder { - --tw-placeholder-opacity: 1; - color: rgb(156 163 175 / var(--tw-placeholder-opacity)); -} - -.placeholder-gray-400:-ms-input-placeholder { - --tw-placeholder-opacity: 1; - color: rgb(156 163 175 / var(--tw-placeholder-opacity)); -} - -.placeholder-gray-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgb(156 163 175 / var(--tw-placeholder-opacity)); -} - -.opacity-0 { - opacity: 0; -} - -.shadow-sm { - --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); - --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), - var(--tw-shadow); -} - -.shadow-md { - --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); - --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), - var(--tw-shadow); -} - -.shadow { - --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); - --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), - var(--tw-shadow); -} - -.transition { - transition-property: - color, - background-color, - border-color, - fill, - stroke, - opacity, - box-shadow, - transform, - filter, - -webkit-text-decoration-color, - -webkit-backdrop-filter; - transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, - opacity, box-shadow, transform, filter, backdrop-filter; - transition-property: - color, - background-color, - border-color, - text-decoration-color, - fill, - stroke, - opacity, - box-shadow, - transform, - filter, - backdrop-filter, - -webkit-text-decoration-color, - -webkit-backdrop-filter; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; -} - -.duration-300 { - transition-duration: 300ms; -} - -.hover\:bg-transparent:hover { - background-color: transparent; -} - -.hover\:bg-gray-100:hover { - --tw-bg-opacity: 1; - background-color: rgb(243 244 246 / var(--tw-bg-opacity)); -} - -.hover\:bg-gray-800:hover { - --tw-bg-opacity: 1; - background-color: rgb(31 41 55 / var(--tw-bg-opacity)); -} - -.hover\:bg-blue-700:hover { - --tw-bg-opacity: 1; - background-color: rgb(29 78 216 / var(--tw-bg-opacity)); -} - -.hover\:bg-red-500:hover { - --tw-bg-opacity: 1; - background-color: rgb(239 68 68 / var(--tw-bg-opacity)); -} - -.hover\:text-primary:hover { - --tw-text-opacity: 1; - color: rgb(253 61 87 / var(--tw-text-opacity)); -} - -.hover\:text-white:hover { - --tw-text-opacity: 1; - color: rgb(255 255 255 / var(--tw-text-opacity)); -} - -.hover\:text-gray-500:hover { - --tw-text-opacity: 1; - color: rgb(107 114 128 / var(--tw-text-opacity)); -} - -.hover\:text-gray-900:hover { - --tw-text-opacity: 1; - color: rgb(17 24 39 / var(--tw-text-opacity)); -} - -.focus\:border-primary:focus { - --tw-border-opacity: 1; - border-color: rgb(253 61 87 / var(--tw-border-opacity)); -} - -.focus\:outline-none:focus { - outline: 2px solid transparent; - outline-offset: 2px; -} - -.focus\:ring-0:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) - var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) - var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); -} - -.focus\:ring-primary:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgb(253 61 87 / var(--tw-ring-opacity)); -} - -.group:hover .group-hover\:visible { - visibility: visible; -} - -.group:hover .group-hover\:bg-opacity-60 { - --tw-bg-opacity: 0.6; -} - -.group:hover .group-hover\:opacity-100 { - opacity: 1; -} - -@media (min-width: 768px) { - .md\:block { - display: block; - } - - .md\:flex { - display: flex; - } - - .md\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); - } - - .md\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); - } - - .md\:gap-8 { - gap: 2rem; - } - - .md\:pl-12 { - padding-left: 3rem; - } -} diff --git a/examples/server-islands/public/assets/images/avatar.png b/examples/server-islands/public/assets/images/avatar.png Binary files differdeleted file mode 100644 index 4e8512382..000000000 --- a/examples/server-islands/public/assets/images/avatar.png +++ /dev/null diff --git a/examples/server-islands/public/assets/images/banner-bg.jpg b/examples/server-islands/public/assets/images/banner-bg.jpg Binary files differdeleted file mode 100644 index 0ce119a45..000000000 --- a/examples/server-islands/public/assets/images/banner-bg.jpg +++ /dev/null diff --git a/examples/server-islands/public/assets/images/category/category-1.jpg b/examples/server-islands/public/assets/images/category/category-1.jpg Binary files differdeleted file mode 100644 index e45bf4ae0..000000000 --- a/examples/server-islands/public/assets/images/category/category-1.jpg +++ /dev/null diff --git a/examples/server-islands/public/assets/images/category/category-2.jpg b/examples/server-islands/public/assets/images/category/category-2.jpg Binary files differdeleted file mode 100644 index 56249e6a3..000000000 --- a/examples/server-islands/public/assets/images/category/category-2.jpg +++ /dev/null diff --git a/examples/server-islands/public/assets/images/category/category-3.jpg b/examples/server-islands/public/assets/images/category/category-3.jpg Binary files differdeleted file mode 100644 index 5ef665946..000000000 --- a/examples/server-islands/public/assets/images/category/category-3.jpg +++ /dev/null diff --git a/examples/server-islands/public/assets/images/category/category-4.jpg b/examples/server-islands/public/assets/images/category/category-4.jpg Binary files differdeleted file mode 100644 index b12e64830..000000000 --- a/examples/server-islands/public/assets/images/category/category-4.jpg +++ /dev/null diff --git a/examples/server-islands/public/assets/images/category/category-5.jpg b/examples/server-islands/public/assets/images/category/category-5.jpg Binary files differdeleted file mode 100644 index f8e804f8c..000000000 --- a/examples/server-islands/public/assets/images/category/category-5.jpg +++ /dev/null diff --git a/examples/server-islands/public/assets/images/category/category-6.jpg b/examples/server-islands/public/assets/images/category/category-6.jpg Binary files differdeleted file mode 100644 index e1991d35c..000000000 --- a/examples/server-islands/public/assets/images/category/category-6.jpg +++ /dev/null diff --git a/examples/server-islands/public/assets/images/complete.png b/examples/server-islands/public/assets/images/complete.png Binary files differdeleted file mode 100644 index ea3fe9681..000000000 --- a/examples/server-islands/public/assets/images/complete.png +++ /dev/null diff --git a/examples/server-islands/public/assets/images/favicon/about.txt b/examples/server-islands/public/assets/images/favicon/about.txt deleted file mode 100644 index 7229927f7..000000000 --- a/examples/server-islands/public/assets/images/favicon/about.txt +++ /dev/null @@ -1,6 +0,0 @@ -This favicon was generated using the following font: - -- Font Title: Roboto -- Font Author: Copyright 2011 Google Inc. All Rights Reserved. -- Font Source: http://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf -- Font License: Apache License, version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html)) diff --git a/examples/server-islands/public/assets/images/favicon/android-chrome-192x192.png b/examples/server-islands/public/assets/images/favicon/android-chrome-192x192.png Binary files differdeleted file mode 100644 index 6809c7978..000000000 --- a/examples/server-islands/public/assets/images/favicon/android-chrome-192x192.png +++ /dev/null diff --git a/examples/server-islands/public/assets/images/favicon/android-chrome-512x512.png b/examples/server-islands/public/assets/images/favicon/android-chrome-512x512.png Binary files differdeleted file mode 100644 index 27d7db79c..000000000 --- a/examples/server-islands/public/assets/images/favicon/android-chrome-512x512.png +++ /dev/null diff --git a/examples/server-islands/public/assets/images/favicon/apple-touch-icon.png b/examples/server-islands/public/assets/images/favicon/apple-touch-icon.png Binary files differdeleted file mode 100644 index ff578ae53..000000000 --- a/examples/server-islands/public/assets/images/favicon/apple-touch-icon.png +++ /dev/null diff --git a/examples/server-islands/public/assets/images/favicon/favicon-16x16.png b/examples/server-islands/public/assets/images/favicon/favicon-16x16.png Binary files differdeleted file mode 100644 index 470a85966..000000000 --- a/examples/server-islands/public/assets/images/favicon/favicon-16x16.png +++ /dev/null diff --git a/examples/server-islands/public/assets/images/favicon/favicon-32x32.png b/examples/server-islands/public/assets/images/favicon/favicon-32x32.png Binary files differdeleted file mode 100644 index 56afd053d..000000000 --- a/examples/server-islands/public/assets/images/favicon/favicon-32x32.png +++ /dev/null diff --git a/examples/server-islands/public/assets/images/favicon/favicon.ico b/examples/server-islands/public/assets/images/favicon/favicon.ico Binary files differdeleted file mode 100644 index 77bb5fa18..000000000 --- a/examples/server-islands/public/assets/images/favicon/favicon.ico +++ /dev/null diff --git a/examples/server-islands/public/assets/images/favicon/site.webmanifest b/examples/server-islands/public/assets/images/favicon/site.webmanifest deleted file mode 100644 index 52a2fe3f6..000000000 --- a/examples/server-islands/public/assets/images/favicon/site.webmanifest +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "", - "short_name": "", - "icons": [ - { "src": "/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, - { "src": "/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" } - ], - "theme_color": "#ffffff", - "background_color": "#ffffff", - "display": "standalone" -} diff --git a/examples/server-islands/public/assets/images/icons/bed-2.svg b/examples/server-islands/public/assets/images/icons/bed-2.svg deleted file mode 100644 index 09b790da7..000000000 --- a/examples/server-islands/public/assets/images/icons/bed-2.svg +++ /dev/null @@ -1,60 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 480 480" style="enable-background:new 0 0 480 480;" xml:space="preserve"> -<g> - <g> - <path fill="#E994A0" d="M479.744,398.008L408,118.992V8c0-4.418-3.582-8-8-8H80c-4.418,0-8,3.582-8,8v110.992L0.256,398.008 - C0.087,398.659,0.001,399.328,0,400v72c0,4.418,3.582,8,8,8h464c4.418,0,8-3.582,8-8v-72 - C479.999,399.328,479.913,398.659,479.744,398.008z M88,16h304v96h-16V80c0-4.418-3.582-8-8-8H256c-4.418,0-8,3.582-8,8v32h-16V80 - c0-4.418-3.582-8-8-8H112c-4.418,0-8,3.582-8,8v32H88V16z M360,88v56h-96V88H360z M216,88v56h-96V88H216z M86.2,128H104v24 - c0,4.418,3.582,8,8,8h112c4.418,0,8-3.582,8-8v-24h16v24c0,4.418,3.582,8,8,8h112c4.418,0,8-3.582,8-8v-24h17.8l16.456,64H69.744 - L86.2,128z M65.6,208h348.8l4.112,16H61.52L65.6,208z M464,464H16v-62.992L57.4,240h365.2L464,401.008V464z"/> - </g> -</g> -<g> - <g> - <rect fill="#E994A0" x="264" y="392" width="184" height="16"/> - </g> -</g> -<g> - <g> - <rect fill="#E994A0" x="232" y="392" width="16" height="16"/> - </g> -</g> -<g> - <g> - <rect fill="#E994A0" x="32" y="392" width="184" height="16"/> - </g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -</svg> diff --git a/examples/server-islands/public/assets/images/icons/bed.svg b/examples/server-islands/public/assets/images/icons/bed.svg deleted file mode 100644 index d66adb501..000000000 --- a/examples/server-islands/public/assets/images/icons/bed.svg +++ /dev/null @@ -1,2 +0,0 @@ -<?xml version="1.0"?> -<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><path fill="#E994A0" d="M496,344h-8V280a32.042,32.042,0,0,0-32-32V112a32.042,32.042,0,0,0-32-32H88a32.042,32.042,0,0,0-32,32V248a32.042,32.042,0,0,0-32,32v64H16a8,8,0,0,0-8,8v32a8,8,0,0,0,8,8h8v32a8,8,0,0,0,8,8H56a7.99,7.99,0,0,0,7.84-6.43L70.56,392H441.44l6.72,33.57A7.99,7.99,0,0,0,456,432h24a8,8,0,0,0,8-8V392h8a8,8,0,0,0,8-8V352A8,8,0,0,0,496,344ZM72,112A16.021,16.021,0,0,1,88,96H424a16.021,16.021,0,0,1,16,16V248H424V216a32.042,32.042,0,0,0-32-32H296a32.042,32.042,0,0,0-32,32v32H248V216a32.042,32.042,0,0,0-32-32H120a32.042,32.042,0,0,0-32,32v32H72ZM408,216v32H280V216a16.021,16.021,0,0,1,16-16h96A16.021,16.021,0,0,1,408,216Zm-176,0v32H104V216a16.021,16.021,0,0,1,16-16h96A16.021,16.021,0,0,1,232,216ZM40,280a16.021,16.021,0,0,1,16-16H456a16.021,16.021,0,0,1,16,16v64H40Zm9.44,136H40V392H54.24ZM472,416h-9.44l-4.8-24H472Zm16-40H24V360H488Z"/></svg> diff --git a/examples/server-islands/public/assets/images/icons/delivery-van.svg b/examples/server-islands/public/assets/images/icons/delivery-van.svg deleted file mode 100644 index a6c08a447..000000000 --- a/examples/server-islands/public/assets/images/icons/delivery-van.svg +++ /dev/null @@ -1,15 +0,0 @@ -<svg width="49" height="35" viewBox="0 0 49 35" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M11.2082 25.1056C8.55904 25.1056 6.40469 27.2599 6.40469 29.9091C6.40469 32.5582 8.55904 34.7126 11.2082 34.7126C13.8573 34.7126 16.0117 32.5582 16.0117 29.9091C16.0117 27.2599 13.8572 25.1056 11.2082 25.1056ZM11.2082 33.1114C9.44206 33.1114 8.00589 31.6751 8.00589 29.9091C8.00589 28.1429 9.44216 26.7068 11.2082 26.7068C12.9742 26.7068 14.4105 28.143 14.4105 29.9091C14.4105 31.6751 12.9742 33.1114 11.2082 33.1114Z" fill="#FD3D57"/> -<path d="M38.428 25.1056C35.7788 25.1056 33.6245 27.2599 33.6245 29.9091C33.6245 32.5582 35.7788 34.7126 38.428 34.7126C41.0771 34.7126 43.2315 32.5582 43.2315 29.9091C43.2315 27.2599 41.0771 25.1056 38.428 25.1056ZM38.428 33.1114C36.6618 33.1114 35.2257 31.6751 35.2257 29.9091C35.2257 28.1429 36.6619 26.7068 38.428 26.7068C40.1941 26.7068 41.6303 28.143 41.6303 29.9091C41.6303 31.6751 40.1941 33.1114 38.428 33.1114Z" fill="#FD3D57"/> -<path d="M47.9077 20.6696L40.7024 9.46136C40.5551 9.23235 40.3013 9.09387 40.0291 9.09387H31.2227C30.78 9.09387 30.4222 9.45254 30.4222 9.89442V29.909C30.4222 30.3517 30.78 30.7095 31.2227 30.7095H34.425V29.1083H32.0233V10.6951H39.592L46.4338 21.338V29.1085H42.4308V30.7096H47.2343C47.6771 30.7096 48.0349 30.3518 48.0349 29.9091V21.1026C48.035 20.9497 47.991 20.7984 47.9077 20.6696Z" fill="#FD3D57"/> -<path d="M35.2257 19.5014V13.8974H41.6304V12.2962H34.4251C33.9824 12.2962 33.6246 12.6548 33.6246 13.0967V20.302C33.6246 20.7447 33.9824 21.1025 34.4251 21.1025H46.4339V19.5013H35.2257V19.5014Z" fill="#FD3D57"/> -<path d="M31.2227 3.48981H0.800552C0.358667 3.48981 0 3.84847 0 4.29036V29.909C0 30.3518 0.358667 30.7096 0.800552 30.7096H7.20525V29.1084H1.6012V5.09091H30.4222V29.1084H15.211V30.7096H31.2227C31.6655 30.7096 32.0233 30.3518 32.0233 29.909V4.29036C32.0233 3.84847 31.6655 3.48981 31.2227 3.48981Z" fill="#FD3D57"/> -<path d="M5.60407 25.9061H0.800568V27.5073H5.60407V25.9061Z" fill="#FD3D57"/> -<path d="M30.4222 25.9061H16.8122V27.5073H30.4222V25.9061Z" fill="#FD3D57"/> -<path d="M47.2343 25.9061H44.032V27.5073H47.2343V25.9061Z" fill="#FD3D57"/> -<path d="M31.2227 6.69211H3.2023V8.2933H31.2227V6.69211Z" fill="#FD3D57"/> -<path d="M12.0087 29.1084H10.4075V30.7096H12.0087V29.1084Z" fill="#FD3D57"/> -<path d="M39.2286 29.1084H37.6274V30.7096H39.2286V29.1084Z" fill="#FD3D57"/> -<path d="M14.4105 0.287415H3.2023V1.88861H14.4105V0.287415Z" fill="#FD3D57"/> -<path d="M1.6012 0.287415H0V1.88861H1.6012V0.287415Z" fill="#FD3D57"/> -</svg> diff --git a/examples/server-islands/public/assets/images/icons/money-back.svg b/examples/server-islands/public/assets/images/icons/money-back.svg deleted file mode 100644 index 8722d5538..000000000 --- a/examples/server-islands/public/assets/images/icons/money-back.svg +++ /dev/null @@ -1,13 +0,0 @@ -<svg width="49" height="48" viewBox="0 0 49 48" fill="none" xmlns="http://www.w3.org/2000/svg"> -<g clip-path="url(#clip0)"> -<path d="M48.216 27.8883C47.5434 26.9486 46.4229 26.3171 45.292 26.2402C44.3688 26.178 43.5323 26.4898 42.9372 27.1198C42.8066 27.258 42.6657 27.4097 42.5166 27.5723C41.8582 26.9691 40.9954 26.581 40.1256 26.5219C39.2021 26.46 38.3658 26.7716 37.7708 27.4015C36.4754 28.7727 34.1817 31.4513 32.3804 33.5838C32.1455 33.4448 31.8941 33.3303 31.6282 33.2443C30.7672 32.8735 18.8981 27.8045 13.637 27.8045C5.13846 27.8045 1.23412 32.3725 1.07212 32.5669C0.823588 32.8652 0.8639 33.3076 1.16137 33.557C1.45894 33.8064 1.90294 33.7673 2.15325 33.4705C2.16225 33.4599 3.07435 32.3919 4.93736 31.3396C6.6545 30.3698 9.55776 29.2135 13.6369 29.2135C18.6914 29.2135 30.9783 34.4984 31.1018 34.5518C31.3277 34.6492 31.5606 34.7237 31.7669 34.8613C31.9616 34.9913 32.1359 35.1517 32.282 35.3346C32.5656 35.69 32.7433 36.1297 32.7806 36.5832C32.8591 37.5335 32.3257 38.4516 31.4648 38.8574C30.9219 39.1134 30.348 39.1211 29.7776 38.9648L22.0904 36.8476C21.7203 36.7456 21.326 36.9698 21.2241 37.3397C21.1222 37.7098 21.3461 38.1041 21.7162 38.206L29.3927 40.3202C30.3254 40.608 31.3446 40.5138 32.2088 40.0606C33.0866 39.6004 33.7327 38.8258 34.0278 37.8797C34.1242 37.5711 34.1785 37.2562 34.1932 36.9415L36.255 36.7243C36.4375 36.7051 36.6053 36.6155 36.7227 36.4745C36.7735 36.4135 41.829 30.3443 43.9615 28.0872C44.8478 27.1486 46.4303 27.8139 47.0704 28.7081C48.0546 30.0831 46.8315 31.5842 46.4332 32.0116C44.4761 34.1114 40.8872 38.4377 40.2421 39.2175L25.6355 46.5208L18.1204 43.3565C17.7666 43.2076 17.3467 43.3785 17.1977 43.7325C17.0487 44.0863 17.2197 44.5061 17.5735 44.6551L25.3874 47.9451C25.5753 48.0243 25.7937 48.0171 25.9759 47.9259L41.0055 40.4111C41.0935 40.3671 41.1712 40.3052 41.2338 40.2293C41.2751 40.1793 45.3831 35.2049 47.4641 32.9721C48.9958 31.3289 49.2842 29.3806 48.216 27.8883ZM35.8233 35.3532L33.9876 35.5465C33.8574 35.1781 33.6697 34.8319 33.4331 34.5211C34.9675 32.7048 37.4609 29.7814 38.7949 28.3694C39.1803 27.9613 39.6791 27.9035 40.0299 27.928C40.5822 27.9656 41.1485 28.2261 41.5744 28.6202C39.4607 31.0063 36.583 34.4432 35.8233 35.3532Z" fill="#FD3D57"/> -<path d="M14.6616 41.9007L11.6559 40.6351C11.5693 40.5986 11.4763 40.5798 11.3824 40.5798H1.6131C1.22404 40.5798 0.908569 40.8952 0.908569 41.2844C0.908569 41.6735 1.22404 41.9889 1.6131 41.9889H11.2401L14.1146 43.1992C14.4928 43.3585 14.9361 43.1515 15.0599 42.7617C15.1687 42.4195 14.9922 42.0398 14.6616 41.9007Z" fill="#FD3D57"/> -<path d="M38.3374 23.4908L35.3374 23.9194C37.7769 21.3057 39.1415 17.8817 39.1415 14.2311C39.1415 6.38413 32.7573 0 24.9103 0C17.0632 0 10.6792 6.38413 10.6792 14.2311C10.6792 17.3798 11.6866 20.3636 13.5926 22.8598C15.4372 25.2757 18.0529 27.0678 20.9581 27.9061C21.3424 28.0168 21.7504 27.7751 21.84 27.3862C21.923 27.0267 21.7026 26.6545 21.3486 26.5522C15.8962 24.9791 12.0881 19.9123 12.0881 14.231C12.0881 7.16085 17.8402 1.40888 24.9103 1.40888C31.9805 1.40888 37.7325 7.16085 37.7325 14.231C37.7325 17.7262 36.345 20.9915 33.8811 23.3947V19.6793C33.8811 19.2901 33.5657 18.9747 33.1766 18.9747C32.7874 18.9747 32.472 19.2901 32.472 19.6793V24.9396C32.472 25.3608 32.8589 25.697 33.2762 25.6371L38.5366 24.8856C38.9166 24.8313 39.1888 24.4686 39.1344 24.0885C39.0801 23.7089 38.7169 23.4371 38.3374 23.4908Z" fill="#FD3D57"/> -<path d="M24.9103 13.5265H24.1588C23.3042 13.5265 22.6089 12.8312 22.6089 11.9766C22.6089 11.122 23.3043 10.4266 24.1588 10.4266H27.1647C27.5539 10.4266 27.8693 10.1113 27.8693 9.7221C27.8693 9.33294 27.5539 9.01757 27.1647 9.01757H25.6147V8.21909C25.6147 7.82993 25.2994 7.51456 24.9102 7.51456C24.5211 7.51456 24.2057 7.82993 24.2057 8.21909V9.01757H24.1587C22.5272 9.01757 21.1998 10.345 21.1998 11.9765C21.1998 13.6081 22.5272 14.9355 24.1587 14.9355H24.9102C25.7648 14.9355 26.4602 15.6308 26.4602 16.4854C26.4602 17.3399 25.7648 18.0352 24.9102 18.0352H21.9043C21.5152 18.0352 21.1998 18.3506 21.1998 18.7398C21.1998 19.1289 21.5152 19.4443 21.9043 19.4443H24.2057V20.2428C24.2057 20.6319 24.5211 20.9473 24.9102 20.9473C25.2994 20.9473 25.6147 20.6319 25.6147 20.2428V19.359C26.9072 19.042 27.8692 17.8743 27.8692 16.4855C27.8693 14.8539 26.5418 13.5265 24.9103 13.5265Z" fill="#FD3D57"/> -</g> -<defs> -<clipPath id="clip0"> -<rect width="48" height="48" fill="white" transform="translate(0.882416)"/> -</clipPath> -</defs> -</svg> diff --git a/examples/server-islands/public/assets/images/icons/office.svg b/examples/server-islands/public/assets/images/icons/office.svg deleted file mode 100644 index 27451293b..000000000 --- a/examples/server-islands/public/assets/images/icons/office.svg +++ /dev/null @@ -1,2 +0,0 @@ -<?xml version="1.0"?> -<svg fill="#E994A0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="512" height="512"><g id="Layer_15" data-name="Layer 15"><path d="M62,35H61V32a1,1,0,0,0-1-1H59V20a3,3,0,0,0-3-3H42a3,3,0,0,0-3,3V31H38a1,1,0,0,0-1,1v3H35V26a1,1,0,0,0-1-1H26a1,1,0,0,0-1,1v1H24a3,3,0,0,0,0,6h1v2H15V32a1,1,0,0,0-1-1H13V28a1,1,0,0,0-1-1H2a1,1,0,0,0-1,1v4a1,1,0,0,0,1,1H3v2H2a1,1,0,0,0-1,1v6a1,1,0,0,0,1,1H5V62a1,1,0,0,0,1,1h6a1,1,0,0,0,1-1V61H51v1a1,1,0,0,0,1,1h6a1,1,0,0,0,1-1V43h3a1,1,0,0,0,1-1V36A1,1,0,0,0,62,35ZM41,20a1,1,0,0,1,1-1H56a1,1,0,0,1,1,1V31H41ZM39,33H59v2H39ZM24,31a1,1,0,0,1,0-2h1v2Zm3-4h6v8H27ZM3,29h8v2H3Zm2,4h8v2H5ZM7,61V43h4V61Zm6-2V43H51V59Zm44,2H53V43h4Zm4-20H3V37H61Z"/><path d="M49,21a4,4,0,1,0,4,4A4,4,0,0,0,49,21Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,49,27Z"/><path d="M27.59,19a1.42,1.42,0,0,1,0,2l-1.3,1.29,1.42,1.42L29,22.41a3.4,3.4,0,0,0,0-4.82L28.41,17A1.43,1.43,0,0,1,28,16V15H26v1a3.36,3.36,0,0,0,1,2.41Z"/><path d="M31.59,19a1.42,1.42,0,0,1,0,2l-1.3,1.29,1.42,1.42L33,22.41a3.4,3.4,0,0,0,0-4.82L32.41,17A1.43,1.43,0,0,1,32,16V15H30v1a3.36,3.36,0,0,0,1,2.41Z"/><path d="M12,23A11,11,0,1,0,1,12,11,11,0,0,0,12,23ZM5,6.39,6.29,7.71,7.71,6.29,6.39,5A8.89,8.89,0,0,1,11,3.06V5h2V3.06A8.89,8.89,0,0,1,17.61,5L16.29,6.29l1.42,1.42L19,6.39A8.89,8.89,0,0,1,20.94,11H19v2h1.94A8.89,8.89,0,0,1,19,17.61l-1.31-1.32-1.42,1.42L17.61,19A8.89,8.89,0,0,1,13,20.94V19H11v1.94A8.89,8.89,0,0,1,6.39,19l1.32-1.31L6.29,16.29,5,17.61A8.89,8.89,0,0,1,3.06,13H5V11H3.06A8.89,8.89,0,0,1,5,6.39Z"/><path d="M15.29,16.71l1.42-1.42L13,11.59V7H11v5a1,1,0,0,0,.29.71Z"/></g></svg> diff --git a/examples/server-islands/public/assets/images/icons/outdoor-cafe.svg b/examples/server-islands/public/assets/images/icons/outdoor-cafe.svg deleted file mode 100644 index 2f0149979..000000000 --- a/examples/server-islands/public/assets/images/icons/outdoor-cafe.svg +++ /dev/null @@ -1,63 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"> -<g> - <path fill="#E994A0" d="M512,136.144c0-10.585-6.798-19.79-16.916-22.903c-0.081-0.025-0.162-0.048-0.243-0.071L286.705,56.262 - c-20.092-6.156-41.319-6.156-61.411,0L17.159,113.17c-0.082,0.022-0.162,0.046-0.243,0.071C6.798,116.354,0,125.558,0,136.144 - c0,0.73,0.106,1.433,0.289,2.105C0.106,138.921,0,139.624,0,140.354v8c0,13.234,10.766,24,24,24h112c6.142,0,11.751-2.322,16-6.131 - c4.249,3.809,9.858,6.131,16,6.131h80v152h-80c-4.418,0-8,3.582-8,8s3.582,8,8,8h64v8c0,10.429,6.689,19.322,16,22.624v42.181 - c-18.236,3.717-32,19.878-32,39.195c0,4.418,3.582,8,8,8s8-3.582,8-8c0-10.429,6.689-19.321,16-22.624v22.624c0,4.418,3.582,8,8,8 - s8-3.582,8-8V429.73c9.311,3.302,16,12.195,16,22.624c0,4.418,3.582,8,8,8s8-3.582,8-8c0-19.317-13.764-35.479-32-39.195v-42.181 - c9.311-3.302,16-12.194,16-22.624v-8h64c4.418,0,8-3.582,8-8s-3.582-8-8-8h-80v-152h80c6.142,0,11.75-2.322,16-6.131 - c4.249,3.809,9.858,6.131,16,6.131h112c13.234,0,24-10.766,24-24v-8c0-0.73-0.106-1.433-0.289-2.105 - C511.894,137.577,512,136.874,512,136.144z M264,348.354c0,4.411-3.589,8-8,8s-8-3.589-8-8v-8h16V348.354z M149.694,116.354H66.18 - l143.414-39.212C186.294,93.195,157.356,111.526,149.694,116.354z M242.511,72.963c7.943-6.354,19.052-6.34,27.016,0.031 - c0.17,0.136,0.346,0.265,0.526,0.387l63.762,42.973h-154.36C199.68,103.304,227.942,84.618,242.511,72.963z M136,156.354H24 - c-4.411,0-8-3.589-8-8v-8c0-0.73-0.106-1.433-0.289-2.105c0.183-0.672,0.289-1.375,0.289-2.105c0-1.365,0.35-2.654,0.962-3.79H144 - v16C144,152.765,140.411,156.354,136,156.354z M344,156.354H168c-4.411,0-8-3.589-8-8v-16h192v16 - C352,152.765,348.411,156.354,344,156.354z M496,148.354c0,4.411-3.589,8-8,8H376c-4.411,0-8-3.589-8-8v-16h8c4.418,0,8-3.582,8-8 - s-3.582-8-8-8h-13.556L305.53,77.996l140.291,38.358H408c-4.418,0-8,3.582-8,8s3.582,8,8,8h87.038 - c0.613,1.135,0.962,2.425,0.962,3.79c0,0.73,0.106,1.433,0.289,2.105c-0.183,0.672-0.289,1.375-0.289,2.105V148.354z"/> - <path fill="#E994A0" d="M160,403.692v-37.338c0-5.514-4.486-10-10-10H72v-56c0-13.234-10.766-24-24-24c-4.418,0-8,3.582-8,8s3.582,8,8,8 - c4.411,0,8,3.589,8,8v64v39.338l-7.891,47.347c-0.727,4.358,2.218,8.479,6.576,9.206c0.445,0.074,0.888,0.11,1.325,0.11 - c3.84,0,7.229-2.773,7.881-6.687l6.886-41.315h74.446l6.886,41.315c0.652,3.914,4.042,6.687,7.881,6.687 - c0.437,0,0.88-0.036,1.325-0.11c4.358-0.727,7.303-4.848,6.576-9.206L160,403.692z M144,396.354H72v-24h72V396.354z"/> - <path fill="#E994A0" d="M464,276.354c-13.234,0-24,10.766-24,24v56h-78c-5.514,0-10,4.486-10,10v37.338l-7.891,47.347 - c-0.727,4.358,2.218,8.479,6.576,9.206c0.445,0.074,0.888,0.11,1.325,0.11c3.84,0,7.229-2.773,7.881-6.687l6.886-41.315h74.446 - l6.886,41.315c0.652,3.914,4.042,6.687,7.881,6.687c0.437,0,0.88-0.036,1.325-0.11c4.358-0.727,7.303-4.848,6.576-9.206 - L456,403.692v-39.338v-64c0-4.411,3.589-8,8-8c4.418,0,8-3.582,8-8S468.418,276.354,464,276.354z M368,372.354h72v24h-72V372.354z" - /> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -</svg> diff --git a/examples/server-islands/public/assets/images/icons/phone.svg b/examples/server-islands/public/assets/images/icons/phone.svg deleted file mode 100644 index 1ab3dafd2..000000000 --- a/examples/server-islands/public/assets/images/icons/phone.svg +++ /dev/null @@ -1,12 +0,0 @@ -<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"> -<g clip-path="url(#clip0)"> -<path d="M4.80007 -7.62939e-06H13.2001C14.0281 0.000967371 14.6991 0.671992 14.7001 1.49999V16.5C14.6991 17.328 14.0281 17.999 13.2001 18H4.80007C3.97207 17.999 3.30105 17.328 3.30007 16.5V1.49999C3.30105 0.671992 3.97207 0.000967371 4.80007 -7.62939e-06ZM3.90007 16.5C3.90007 16.9971 4.30301 17.4 4.80007 17.4H13.2001C13.6971 17.4 14.1001 16.9971 14.1001 16.5V15H3.90007V16.5ZM3.90007 14.4H14.1001V2.39999H3.90007V14.4ZM3.90007 1.79999H14.1001V1.49999C14.1001 1.00293 13.6971 0.599992 13.2001 0.599992H4.80007C4.30301 0.599992 3.90007 1.00293 3.90007 1.49999V1.79999Z" fill="#E994A0"/> -<path d="M9.00003 15.3C9.49709 15.3 9.90002 15.7029 9.90002 16.2C9.90002 16.6971 9.49709 17.1 9.00003 17.1C8.50297 17.1 8.10003 16.6971 8.10003 16.2C8.10003 15.7029 8.50297 15.3 9.00003 15.3ZM9.00003 16.5C9.1657 16.5 9.30003 16.3657 9.30003 16.2C9.30003 16.0343 9.1657 15.9 9.00003 15.9C8.83435 15.9 8.70003 16.0343 8.70003 16.2C8.70003 16.3657 8.83435 16.5 9.00003 16.5Z" fill="#E994A0"/> -<path d="M8.7001 0.899988H9.3001C9.46577 0.899988 9.6001 1.03431 9.6001 1.19999C9.6001 1.36566 9.46577 1.49999 9.3001 1.49999H8.7001C8.53442 1.49999 8.40009 1.36566 8.40009 1.19999C8.40009 1.03431 8.53442 0.899988 8.7001 0.899988Z" fill="#E994A0"/> -</g> -<defs> -<clipPath id="clip0"> -<rect width="18" height="18" fill="white" transform="matrix(-1 0 0 1 18 0)"/> -</clipPath> -</defs> -</svg> diff --git a/examples/server-islands/public/assets/images/icons/restaurant.svg b/examples/server-islands/public/assets/images/icons/restaurant.svg deleted file mode 100644 index 859ca4457..000000000 --- a/examples/server-islands/public/assets/images/icons/restaurant.svg +++ /dev/null @@ -1 +0,0 @@ -<svg height="637pt" viewBox="-20 -46 637.33396 637" width="637pt" xmlns="http://www.w3.org/2000/svg"><path fill="#E994A0" d="m587.648438 98.503906c-6.167969-.769531-11.789063 3.605469-12.558594 9.765625l-23.769532 190.148438h-87.714843l-11.589844-65.710938c-.945313-5.375-5.617187-9.296875-11.078125-9.296875h-283.75c-5.449219 0-10.117188 3.90625-11.074219 9.273438l-11.738281 65.726562h-88.191406l-23.769532-190.140625c-.769531-6.164062-6.394531-10.535156-12.558593-9.765625-6.164063.769532-10.539063 6.394532-9.7656252 12.558594l25.0000002 200c.703125 5.628906 5.488281 9.855469 11.160156 9.855469h20.054688l-23.652344 141.898437c-1.019532 6.128906 3.121094 11.921875 9.246094 12.949219 6.132812 1.019531 11.929687-3.121094 12.949218-9.25l24.269532-145.597656h51.25l-34.253907 191.769531c-.765625 4.269531.996094 8.601562 4.515625 11.125l.265625.191406c33.007813 23.65625 77.019531 25.097656 111.503907 3.644532 45.183593 21.308593 97.554687 21.207031 142.660156-.28125 20.160156 10.535156 42.503906 16.226562 65.25 16.621093.800781.015625 1.597656.019531 2.398437.019531 24.015625-.015624 47.660157-5.9375 68.847657-17.25l4.054687-2.167968c4.289063-2.296875 6.617187-7.085938 5.773437-11.875l-33.8125-191.796875h50.820313l24.265625 145.597656c.621094 4 3.34375 7.359375 7.128906 8.796875 3.789063 1.429688 8.050782.722656 11.167969-1.867188 3.113281-2.582031 4.605469-6.640624 3.894531-10.628906l-23.652344-141.898437h20.054688c5.675781 0 10.460938-4.226563 11.164062-9.855469l25-200c.769532-6.164062-3.605468-11.785156-9.765624-12.558594zm-221.085938 409.46875v-144.554687c0-6.210938-5.035156-11.25-11.25-11.25-6.210938 0-11.25 5.039062-11.25 11.25v144.238281c-38.445312 17.84375-82.800781 17.84375-121.25 0v-100.488281c0-6.210938-5.035156-11.25-11.25-11.25-6.210938 0-11.25 5.039062-11.25 11.25v101.488281c-24.6875 15.257812-55.804688 15.523438-80.746094.6875l47.039063-263.425781h264.894531l46.3125 262.625c-35.039062 17.617187-76.390625 17.40625-111.25-.570313zm0 0"/><path fill="#E994A0" d="m217.5 208.914062h150c6.214844 0 11.25-5.035156 11.25-11.25-.058594-43.257812-32.113281-79.796874-75-85.488281v-10.507812c0-6.214844-5.035156-11.25-11.25-11.25-6.210938 0-11.25 5.035156-11.25 11.25v10.507812c-42.878906 5.691407-74.941406 42.230469-75 85.488281 0 6.214844 5.039062 11.25 11.25 11.25zm75-75c30.855469.046876 57.265625 22.140626 62.75 52.5h-125.5c5.488281-30.359374 31.894531-52.453124 62.75-52.5zm0 0"/><path fill="#E994A0" d="m330 87.167969c6.214844 0 11.25-5.039063 11.25-11.25v-28.75c0-6.210938-5.035156-11.25-11.25-11.25-6.210938 0-11.25 5.039062-11.25 11.25v28.75c0 6.210937 5.039062 11.25 11.25 11.25zm0 0"/><path fill="#E994A0" d="m278.75 65.917969c6.214844 0 11.25-5.039063 11.25-11.25v-45c0-6.210938-5.035156-11.25-11.25-11.25-6.210938 0-11.25 5.039062-11.25 11.25v45c0 6.210937 5.039062 11.25 11.25 11.25zm0 0"/><path fill="#E994A0" d="m231.25 95.917969c6.214844 0 11.25-5.039063 11.25-11.25v-23.75c0-6.210938-5.035156-11.25-11.25-11.25-6.210938 0-11.25 5.039062-11.25 11.25v23.75c0 6.210937 5.039062 11.25 11.25 11.25zm0 0"/></svg>
\ No newline at end of file diff --git a/examples/server-islands/public/assets/images/icons/service-hours.svg b/examples/server-islands/public/assets/images/icons/service-hours.svg deleted file mode 100644 index 311820ec5..000000000 --- a/examples/server-islands/public/assets/images/icons/service-hours.svg +++ /dev/null @@ -1,27 +0,0 @@ -<svg width="49" height="48" viewBox="0 0 49 48" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M26.9288 1.50003C23.7579 1.50237 20.6317 2.24883 17.8017 3.67936C14.9717 5.10989 12.517 7.18457 10.6348 9.73655C8.75268 12.2885 7.49567 15.2466 6.9649 18.3728C6.43413 21.4991 6.64441 24.7063 7.57883 27.7364L3.26446 25.5793C3.08677 25.4921 2.88185 25.4787 2.69435 25.5421C2.50685 25.6054 2.35196 25.7402 2.26345 25.9172C2.17494 26.0942 2.15997 26.299 2.22181 26.487C2.28364 26.675 2.41728 26.8309 2.59358 26.9208L8.59358 29.9208C8.73439 29.9912 8.89378 30.0155 9.04917 29.9903C9.20456 29.965 9.34807 29.8915 9.45936 29.7802L13.9594 25.2802C14.029 25.2105 14.0843 25.1279 14.1219 25.0369C14.1596 24.9459 14.179 24.8483 14.179 24.7498C14.179 24.6513 14.1596 24.5538 14.1219 24.4628C14.0843 24.3718 14.029 24.2891 13.9594 24.2195C13.8897 24.1499 13.807 24.0946 13.716 24.0569C13.625 24.0192 13.5275 23.9998 13.429 23.9998C13.3305 23.9998 13.233 24.0192 13.142 24.0569C13.051 24.0946 12.9683 24.1499 12.8987 24.2195L9.21336 27.9048C8.52545 25.9258 8.17571 23.8452 8.17883 21.75C8.17883 11.4113 16.5901 3.00003 26.9288 3.00003C37.2676 3.00003 45.6788 11.4113 45.6788 21.75C45.6788 32.0888 37.2676 40.5 26.9288 40.5C26.7299 40.5 26.5392 40.579 26.3985 40.7197C26.2578 40.8604 26.1788 41.0511 26.1788 41.25C26.1788 41.4489 26.2578 41.6397 26.3985 41.7804C26.5392 41.921 26.7299 42 26.9288 42C30.9339 42 34.849 40.8124 38.1791 38.5873C41.5092 36.3622 44.1047 33.1996 45.6374 29.4994C47.1701 25.7992 47.5711 21.7276 46.7897 17.7995C46.0084 13.8713 44.0797 10.2631 41.2477 7.43112C39.3717 5.54484 37.1402 4.04939 34.6824 3.03131C32.2245 2.01324 29.5892 1.49277 26.9288 1.50003Z" fill="#FD3D57"/> -<path d="M17.2359 25.7871C17.2927 25.9241 17.3888 26.0412 17.5122 26.1236C17.6355 26.206 17.7805 26.25 17.9288 26.25H25.4288C25.6277 26.25 25.8185 26.171 25.9592 26.0303C26.0998 25.8897 26.1788 25.6989 26.1788 25.5C26.1788 25.3011 26.0998 25.1103 25.9592 24.9697C25.8185 24.829 25.6277 24.75 25.4288 24.75H19.7394L25.2092 19.2803C25.2788 19.2107 25.3341 19.128 25.3717 19.037C25.4094 18.946 25.4288 18.8485 25.4288 18.75C25.4288 17.0958 23.7466 15.75 21.6788 15.75C19.6111 15.75 17.9288 17.0958 17.9288 18.75C17.9288 18.9489 18.0078 19.1397 18.1485 19.2803C18.2891 19.421 18.4799 19.5 18.6788 19.5C18.8777 19.5 19.0685 19.421 19.2092 19.2803C19.3498 19.1397 19.4288 18.9489 19.4288 18.75C19.4288 17.9369 20.4591 17.25 21.6788 17.25C22.7596 17.25 23.6918 17.7895 23.89 18.4781L17.3985 24.9696C17.2936 25.0745 17.2221 25.2081 17.1932 25.3537C17.1642 25.4992 17.1791 25.65 17.2359 25.7871Z" fill="#FD3D57"/> -<path d="M40.0572 13.046C39.9471 12.8803 39.7758 12.7651 39.5808 12.7258C39.3858 12.6864 39.1831 12.7262 39.0174 12.8363C38.8517 12.9463 38.7366 13.1177 38.6972 13.3127C38.6579 13.5077 38.6976 13.7103 38.8077 13.876C39.0697 14.2703 39.3145 14.6823 39.5355 15.0999C39.6296 15.2737 39.7885 15.4032 39.9776 15.4605C40.1667 15.5177 40.3708 15.498 40.5455 15.4057C40.7201 15.3133 40.8513 15.1558 40.9105 14.9673C40.9697 14.7787 40.9521 14.5745 40.8615 14.3989C40.6173 13.9369 40.3467 13.4818 40.0572 13.046Z" fill="#FD3D57"/> -<path d="M42.0449 17.3126C42.0181 17.2171 41.9726 17.1278 41.9111 17.0499C41.8495 16.9721 41.7731 16.9072 41.6864 16.8591C41.5996 16.811 41.5041 16.7806 41.4055 16.7697C41.3068 16.7587 41.207 16.7674 41.1118 16.7954C41.0166 16.8233 40.9278 16.8698 40.8507 16.9323C40.7736 16.9947 40.7096 17.0718 40.6625 17.1592C40.6155 17.2465 40.5862 17.3424 40.5764 17.4411C40.5666 17.5399 40.5765 17.6396 40.6055 17.7345C40.739 18.1901 40.8495 18.6521 40.9367 19.1188C40.9731 19.3143 41.0858 19.4874 41.2499 19.5998C41.4139 19.7123 41.616 19.755 41.8115 19.7185C42.007 19.6821 42.1801 19.5694 42.2926 19.4054C42.405 19.2413 42.4477 19.0393 42.4113 18.8437C42.3148 18.3276 42.1925 17.8165 42.0449 17.3126Z" fill="#FD3D57"/> -<path d="M41.4847 25.4653C41.2948 25.4067 41.0893 25.426 40.9135 25.5188C40.7377 25.6117 40.606 25.7705 40.5472 25.9605C40.407 26.4142 40.2441 26.8606 40.0592 27.298C40.02 27.3889 39.9992 27.4866 39.998 27.5855C39.9967 27.6844 40.015 27.7826 40.0519 27.8744C40.0888 27.9662 40.1434 28.0498 40.2127 28.1204C40.282 28.191 40.3646 28.2472 40.4558 28.2857C40.5469 28.3243 40.6447 28.3444 40.7437 28.3449C40.8426 28.3455 40.9406 28.3265 41.0322 28.289C41.1237 28.2515 41.207 28.1962 41.2771 28.1264C41.3472 28.0566 41.4028 27.9737 41.4407 27.8823C41.6452 27.3986 41.8253 26.905 41.9804 26.4033C42.0095 26.3091 42.0197 26.2102 42.0105 26.1121C42.0013 26.014 41.9729 25.9187 41.9269 25.8316C41.8809 25.7445 41.8181 25.6673 41.7423 25.6045C41.6664 25.5416 41.5789 25.4943 41.4847 25.4653Z" fill="#FD3D57"/> -<path d="M36.8996 9.55736C36.7455 9.43304 36.5485 9.3747 36.3516 9.39506C36.1546 9.41542 35.9737 9.51283 35.8483 9.66604C35.7229 9.81925 35.6632 10.0158 35.6821 10.2129C35.7011 10.41 35.7972 10.5916 35.9496 10.7181C36.3162 11.0181 36.6714 11.3399 37.0053 11.6743C37.0749 11.744 37.1576 11.7993 37.2486 11.837C37.3396 11.8747 37.4371 11.8941 37.5356 11.8942C37.6341 11.8942 37.7316 11.8748 37.8227 11.8371C37.9137 11.7995 37.9964 11.7442 38.066 11.6746C38.1357 11.605 38.191 11.5223 38.2287 11.4313C38.2664 11.3403 38.2859 11.2428 38.2859 11.1443C38.2859 11.0458 38.2665 10.9482 38.2289 10.8572C38.1912 10.7662 38.136 10.6835 38.0663 10.6138C37.6973 10.2444 37.3049 9.88904 36.8996 9.55736Z" fill="#FD3D57"/> -<path d="M37.9212 31.9838C38.0733 32.112 38.2701 32.1745 38.4683 32.1575C38.6665 32.1406 38.8498 32.0456 38.9779 31.8935C39.3148 31.4937 39.6354 31.0723 39.9309 30.6412C40.0434 30.4771 40.086 30.275 40.0495 30.0795C40.013 29.8839 39.9003 29.7109 39.7362 29.5984C39.6549 29.5427 39.5635 29.5036 39.4671 29.4833C39.3707 29.4629 39.2713 29.4618 39.1745 29.4799C38.9789 29.5164 38.8059 29.6291 38.6934 29.7932C38.426 30.1836 38.1357 30.565 37.8309 30.9276C37.7029 31.0797 37.6405 31.2763 37.6575 31.4744C37.6744 31.6725 37.7692 31.8557 37.9212 31.9838Z" fill="#FD3D57"/> -<path d="M42.6015 23.3207C42.6529 22.802 42.6788 22.2734 42.6788 21.75C42.6788 21.5511 42.5998 21.3603 42.4592 21.2197C42.3185 21.079 42.1277 21 41.9288 21C41.7299 21 41.5392 21.079 41.3985 21.2197C41.2579 21.3603 41.1788 21.5511 41.1788 21.75C41.1788 22.2244 41.1553 22.7032 41.1088 23.1731C41.0892 23.3711 41.1491 23.5687 41.2752 23.7225C41.4014 23.8763 41.5834 23.9737 41.7814 23.9933C41.8064 23.9957 41.8313 23.997 41.8564 23.997C42.0423 23.9967 42.2215 23.9273 42.3592 23.8024C42.4969 23.6774 42.5832 23.5057 42.6015 23.3207Z" fill="#FD3D57"/> -<path d="M23.7395 7.83979C23.793 7.83973 23.8465 7.83398 23.8988 7.82264C24.3629 7.72228 24.8317 7.64522 25.3035 7.59173C25.4014 7.58065 25.4961 7.5504 25.5823 7.50271C25.6685 7.45502 25.7444 7.39081 25.8058 7.31377C25.8672 7.23673 25.9128 7.14835 25.94 7.05368C25.9672 6.95902 25.9755 6.85992 25.9644 6.76204C25.9534 6.66417 25.9231 6.56943 25.8754 6.48325C25.8277 6.39706 25.7635 6.32111 25.6865 6.25974C25.6094 6.19837 25.5211 6.15277 25.4264 6.12555C25.3317 6.09833 25.2326 6.09002 25.1347 6.1011C24.6146 6.16007 24.0921 6.24595 23.5816 6.35648C23.4005 6.39543 23.2403 6.49999 23.1317 6.65002C23.0232 6.80005 22.974 6.98493 22.9936 7.16908C23.0132 7.35323 23.1002 7.52361 23.2379 7.64743C23.3756 7.77124 23.5543 7.83973 23.7395 7.8397V7.83979Z" fill="#FD3D57"/> -<path d="M14.3195 31.1888C14.6332 31.6072 14.9715 32.0144 15.3248 32.3992C15.4599 32.5437 15.6465 32.629 15.8441 32.6366C16.0418 32.6442 16.2344 32.5733 16.3801 32.4396C16.5257 32.3058 16.6127 32.1199 16.622 31.9224C16.6313 31.7248 16.5622 31.5316 16.4297 31.3848C16.1098 31.0364 15.8035 30.6677 15.5194 30.2888C15.4 30.1297 15.2223 30.0245 15.0254 29.9964C14.8285 29.9682 14.6285 30.0195 14.4694 30.1388C14.3102 30.2582 14.205 30.4359 14.1769 30.6328C14.1488 30.8297 14.2 31.0297 14.3194 31.1888H14.3195Z" fill="#FD3D57"/> -<path d="M12.6084 17.2102C12.5132 17.1853 12.4139 17.1793 12.3163 17.1926C12.2187 17.206 12.1247 17.2385 12.0397 17.2882C11.9547 17.3379 11.8803 17.4038 11.8207 17.4823C11.7612 17.5608 11.7177 17.6502 11.6927 17.7455C11.5597 18.2534 11.4522 18.7677 11.3706 19.2864C11.3397 19.4829 11.3881 19.6837 11.5052 19.8445C11.6224 20.0053 11.7986 20.1129 11.9951 20.1438C12.1916 20.1747 12.3923 20.1262 12.5531 20.0091C12.7139 19.892 12.8216 19.7158 12.8525 19.5193C12.9262 19.0503 13.0234 18.5853 13.1437 18.126C13.1686 18.0307 13.1746 17.9315 13.1612 17.8339C13.1479 17.7363 13.1154 17.6423 13.0657 17.5573C13.016 17.4722 12.95 17.3978 12.8716 17.3383C12.7931 17.2787 12.7037 17.2352 12.6084 17.2102Z" fill="#FD3D57"/> -<path d="M33.5796 9.14376C33.6667 9.19059 33.7622 9.21973 33.8607 9.22948C33.9591 9.23924 34.0585 9.22943 34.1531 9.20061C34.2478 9.1718 34.3357 9.12454 34.412 9.06158C34.4883 8.99861 34.5514 8.92118 34.5977 8.83373C34.6439 8.74628 34.6724 8.65055 34.6815 8.55205C34.6906 8.45355 34.6801 8.35422 34.6506 8.25979C34.6211 8.16536 34.5733 8.07768 34.5098 8.00182C34.4463 7.92596 34.3685 7.8634 34.2807 7.81776C33.8178 7.57298 33.3377 7.34901 32.8537 7.1526C32.7624 7.11554 32.6647 7.09681 32.5662 7.09749C32.4678 7.09817 32.3704 7.11824 32.2796 7.15656C32.1889 7.19487 32.1066 7.25069 32.0374 7.32081C31.9683 7.39093 31.9136 7.47399 31.8765 7.56524C31.8395 7.6565 31.8208 7.75415 31.8214 7.85264C31.8221 7.95113 31.8422 8.04853 31.8805 8.13926C31.9188 8.22999 31.9746 8.31229 32.0447 8.38145C32.1149 8.45062 32.1979 8.50529 32.2892 8.54235C32.7291 8.72117 33.1597 8.92189 33.5796 9.14376Z" fill="#FD3D57"/> -<path d="M14.1377 15.4617C14.3476 15.0357 14.5786 14.6204 14.83 14.2175C14.933 14.0488 14.9652 13.8463 14.9197 13.6541C14.8742 13.4618 14.7546 13.2952 14.587 13.1906C14.4194 13.0859 14.2172 13.0517 14.0245 13.0952C13.8317 13.1388 13.664 13.2567 13.5576 13.4232C13.2808 13.8667 13.0233 14.3296 12.792 14.7988C12.7485 14.8872 12.7228 14.9833 12.7164 15.0816C12.71 15.1798 12.723 15.2784 12.7547 15.3717C12.7864 15.4649 12.8362 15.551 12.9011 15.6251C12.9661 15.6991 13.045 15.7596 13.1334 15.8031C13.2217 15.8467 13.3178 15.8724 13.4161 15.8788C13.5144 15.8852 13.613 15.8721 13.7062 15.8404C13.7995 15.8087 13.8856 15.759 13.9596 15.694C14.0336 15.629 14.0942 15.5501 14.1377 15.4617Z" fill="#FD3D57"/> -<path d="M19.5532 9.43604C19.6825 9.43605 19.8095 9.40252 19.9219 9.33873C20.3344 9.10567 20.7621 8.89098 21.1945 8.70066C21.2847 8.66099 21.3661 8.60395 21.4342 8.5328C21.5023 8.46164 21.5558 8.37777 21.5914 8.28597C21.6271 8.19418 21.6444 8.09624 21.6422 7.99777C21.6401 7.8993 21.6186 7.80222 21.5789 7.71207C21.5392 7.62192 21.4822 7.54047 21.411 7.47236C21.3399 7.40426 21.256 7.35083 21.1642 7.31514C21.0724 7.27945 20.9745 7.26219 20.876 7.26434C20.7775 7.26649 20.6804 7.28802 20.5903 7.3277C20.1098 7.53926 19.6402 7.77474 19.1832 8.03326C19.039 8.11486 18.9258 8.24194 18.8614 8.39465C18.797 8.54736 18.785 8.71709 18.8273 8.87734C18.8696 9.03758 18.9637 9.17931 19.0951 9.28039C19.2264 9.38147 19.3875 9.4362 19.5532 9.43604Z" fill="#FD3D57"/> -<path d="M35.7904 32.9102C35.4199 33.2049 35.0304 33.484 34.6327 33.7403C34.5494 33.7934 34.4774 33.8624 34.4209 33.9434C34.3644 34.0244 34.3244 34.1158 34.3032 34.2123C34.2821 34.3088 34.2803 34.4085 34.2978 34.5058C34.3153 34.603 34.3519 34.6958 34.4054 34.7788C34.4589 34.8619 34.5282 34.9335 34.6095 34.9897C34.6908 35.0459 34.7823 35.0854 34.879 35.1061C34.9756 35.1268 35.0753 35.1282 35.1724 35.1102C35.2696 35.0922 35.3622 35.0552 35.445 35.0013C35.8843 34.7182 36.3146 34.4097 36.7238 34.0844C36.8795 33.9606 36.9797 33.7801 37.0023 33.5824C37.0249 33.3848 36.968 33.1863 36.8442 33.0306C36.7204 32.8749 36.5399 32.7747 36.3422 32.7521C36.1446 32.7296 35.9461 32.7864 35.7904 32.9102Z" fill="#FD3D57"/> -<path d="M32.0994 35.0332C31.657 35.2055 31.2062 35.3554 30.7487 35.4824C30.6538 35.5087 30.565 35.5535 30.4874 35.6142C30.4098 35.6748 30.3449 35.7502 30.2964 35.8359C30.2479 35.9216 30.2168 36.0161 30.2048 36.1138C30.1928 36.2116 30.2002 36.3108 30.2265 36.4057C30.2797 36.5974 30.4069 36.7601 30.58 36.858C30.6658 36.9065 30.7602 36.9376 30.858 36.9496C30.9558 36.9616 31.0549 36.9542 31.1498 36.9278C31.6559 36.7873 32.1546 36.6215 32.644 36.431C32.7363 36.3956 32.8206 36.3423 32.8923 36.2742C32.9639 36.2061 33.0213 36.1245 33.0613 36.0341C33.1013 35.9437 33.123 35.8463 33.1252 35.7476C33.1274 35.6488 33.1101 35.5505 33.0742 35.4584C33.0383 35.3663 32.9846 35.2823 32.9161 35.211C32.8477 35.1398 32.7658 35.0827 32.6752 35.0432C32.5846 35.0037 32.4871 34.9825 32.3883 34.9808C32.2895 34.9791 32.1913 34.997 32.0994 35.0333V35.0332Z" fill="#FD3D57"/> -<path d="M18.5526 33.2796C18.3917 33.1625 18.191 33.1141 17.9945 33.1451C17.798 33.176 17.6219 33.2837 17.5048 33.4446C17.3877 33.6054 17.3394 33.8061 17.3703 34.0026C17.4013 34.1991 17.509 34.3752 17.6698 34.4923C18.0929 34.8003 18.5361 35.0901 18.9872 35.354C19.0722 35.405 19.1666 35.4386 19.2647 35.4529C19.3628 35.4672 19.4628 35.4619 19.5589 35.4372C19.655 35.4126 19.7452 35.3692 19.8244 35.3095C19.9036 35.2498 19.9701 35.175 20.0202 35.0894C20.0703 35.0038 20.1029 34.9091 20.1161 34.8108C20.1293 34.7125 20.123 34.6126 20.0973 34.5168C20.0717 34.421 20.0273 34.3312 19.9667 34.2527C19.9062 34.1742 19.8306 34.1084 19.7445 34.0593C19.3364 33.8205 18.9353 33.5582 18.5526 33.2796Z" fill="#FD3D57"/> -<path d="M26.5211 35.9942H26.4996C26.3007 35.9914 26.1089 36.0678 25.9663 36.2065C25.8237 36.3452 25.742 36.5349 25.7392 36.7338C25.7365 36.9327 25.8128 37.1246 25.9515 37.2672C26.0902 37.4098 26.2799 37.4914 26.4788 37.4942C26.6277 37.4984 26.7788 37.5005 26.9288 37.5005C27.3032 37.5005 27.6809 37.4871 28.0514 37.461C28.2498 37.447 28.4346 37.3548 28.565 37.2046C28.6954 37.0544 28.7608 36.8585 28.7468 36.6601C28.7328 36.4617 28.6406 36.2769 28.4904 36.1465C28.3402 36.0161 28.1444 35.9507 27.9459 35.9647C27.4756 35.9975 26.9938 36.0077 26.5211 35.9942Z" fill="#FD3D57"/> -<path d="M16.6153 9.84615C16.2203 10.1886 15.838 10.5549 15.479 10.935C15.3424 11.0796 15.2688 11.2725 15.2745 11.4714C15.2801 11.6702 15.3645 11.8587 15.5092 11.9953C15.6538 12.1319 15.8467 12.2054 16.0456 12.1998C16.2444 12.1941 16.4329 12.1097 16.5695 11.9651C16.8945 11.6211 17.2405 11.2895 17.598 10.9796C17.7483 10.8493 17.8407 10.6646 17.8548 10.4662C17.869 10.2678 17.8037 10.0719 17.6734 9.92157C17.5431 9.77127 17.3584 9.67889 17.16 9.66474C16.9616 9.6506 16.7657 9.71585 16.6154 9.84615H16.6153Z" fill="#FD3D57"/> -<path d="M22.331 35.2421C22.1427 35.1779 21.9366 35.1912 21.7581 35.2789C21.5796 35.3667 21.4432 35.5218 21.3791 35.7101C21.3149 35.8983 21.3281 36.1044 21.4159 36.2829C21.5037 36.4614 21.6587 36.5978 21.847 36.6619C22.3442 36.8311 22.8496 36.9754 23.3613 37.094C23.4572 37.1163 23.5566 37.1194 23.6538 37.1032C23.7509 37.087 23.8439 37.0518 23.9275 36.9997C24.0111 36.9475 24.0835 36.8795 24.1408 36.7993C24.198 36.7192 24.2389 36.6285 24.2612 36.5326C24.2834 36.4366 24.2865 36.3372 24.2703 36.2401C24.2541 36.1429 24.219 36.0499 24.1668 35.9663C24.1147 35.8828 24.0466 35.8103 23.9664 35.753C23.8863 35.6958 23.7957 35.6549 23.6997 35.6327C23.2372 35.5255 22.7804 35.3951 22.331 35.2421Z" fill="#FD3D57"/> -<path d="M29.8358 6.26785C29.3226 6.17213 28.7979 6.10106 28.2761 6.05681C28.0779 6.04003 27.8811 6.10268 27.7291 6.23097C27.5771 6.35926 27.4822 6.54269 27.4655 6.74091C27.4487 6.93913 27.5113 7.13589 27.6396 7.28792C27.7679 7.43995 27.9513 7.53478 28.1496 7.55157C28.6217 7.5916 29.0964 7.65572 29.5604 7.74244C29.7559 7.77897 29.958 7.73632 30.1221 7.62387C30.2862 7.51143 30.3989 7.33841 30.4354 7.14286C30.4719 6.94732 30.4293 6.74527 30.3168 6.58118C30.2044 6.41708 30.0314 6.30437 29.8358 6.26785Z" fill="#FD3D57"/> -<path d="M17.1788 45.75V38.25C17.1788 38.0511 17.0998 37.8603 16.9592 37.7197C16.8185 37.579 16.6277 37.5 16.4288 37.5H14.1788V35.25C14.1788 35.0511 14.0998 34.8603 13.9592 34.7197C13.8185 34.579 13.6277 34.5 13.4288 34.5H5.92883C5.72992 34.5 5.53916 34.579 5.3985 34.7197C5.25785 34.8603 5.17883 35.0511 5.17883 35.25V37.5H2.92883C2.72992 37.5 2.53916 37.579 2.3985 37.7197C2.25785 37.8603 2.17883 38.0511 2.17883 38.25V45.75C2.17883 45.9489 2.25785 46.1397 2.3985 46.2803C2.53916 46.421 2.72992 46.5 2.92883 46.5H16.4288C16.6277 46.5 16.8185 46.421 16.9592 46.2803C17.0998 46.1397 17.1788 45.9489 17.1788 45.75ZM5.17883 45H3.67883V39H5.17883V45ZM12.6788 45H10.4288V44.25C10.4288 44.0511 10.3498 43.8603 10.2092 43.7197C10.0685 43.579 9.87775 43.5 9.67883 43.5C9.47992 43.5 9.28916 43.579 9.1485 43.7197C9.00785 43.8603 8.92883 44.0511 8.92883 44.25V45H6.67883V36H12.6788V45ZM15.6788 45H14.1788V39H15.6788V45Z" fill="#FD3D57"/> -<path d="M8.92883 39H10.4288C10.6277 39 10.8185 38.921 10.9592 38.7803C11.0998 38.6397 11.1788 38.4489 11.1788 38.25C11.1788 38.0511 11.0998 37.8603 10.9592 37.7197C10.8185 37.579 10.6277 37.5 10.4288 37.5H8.92883C8.72992 37.5 8.53916 37.579 8.3985 37.7197C8.25785 37.8603 8.17883 38.0511 8.17883 38.25C8.17883 38.4489 8.25785 38.6397 8.3985 38.7803C8.53916 38.921 8.72992 39 8.92883 39Z" fill="#FD3D57"/> -<path d="M8.92883 42H10.4288C10.6277 42 10.8185 41.921 10.9592 41.7803C11.0998 41.6397 11.1788 41.4489 11.1788 41.25C11.1788 41.0511 11.0998 40.8603 10.9592 40.7197C10.8185 40.579 10.6277 40.5 10.4288 40.5H8.92883C8.72992 40.5 8.53916 40.579 8.3985 40.7197C8.25785 40.8603 8.17883 41.0511 8.17883 41.25C8.17883 41.4489 8.25785 41.6397 8.3985 41.7803C8.53916 41.921 8.72992 42 8.92883 42Z" fill="#FD3D57"/> -<path d="M27.7459 22.8099C27.8054 22.9411 27.9015 23.0524 28.0226 23.1304C28.1437 23.2085 28.2848 23.25 28.4288 23.25H32.9288V25.5C32.9288 25.6989 33.0079 25.8897 33.1485 26.0303C33.2892 26.171 33.4799 26.25 33.6788 26.25C33.8777 26.25 34.0685 26.171 34.2092 26.0303C34.3498 25.8897 34.4288 25.6989 34.4288 25.5V23.25H35.9288C36.1277 23.25 36.3185 23.171 36.4592 23.0303C36.5998 22.8897 36.6788 22.6989 36.6788 22.5C36.6788 22.3011 36.5998 22.1103 36.4592 21.9696C36.3185 21.829 36.1277 21.75 35.9288 21.75H34.4288V16.5C34.4288 16.3474 34.3823 16.1984 34.2954 16.073C34.2085 15.9475 34.0855 15.8515 33.9426 15.7979C33.7998 15.7442 33.644 15.7354 33.496 15.7726C33.348 15.8098 33.2148 15.8913 33.1144 16.0061L27.8644 22.0061C27.7695 22.1145 27.7079 22.248 27.6868 22.3906C27.6658 22.5331 27.6863 22.6787 27.7459 22.8099ZM32.9288 18.4961V21.75H30.0816L32.9288 18.4961Z" fill="#FD3D57"/> -</svg> diff --git a/examples/server-islands/public/assets/images/icons/sofa.svg b/examples/server-islands/public/assets/images/icons/sofa.svg deleted file mode 100644 index 61608eb42..000000000 --- a/examples/server-islands/public/assets/images/icons/sofa.svg +++ /dev/null @@ -1,59 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" - viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"> -<g> - <g> - <path fill="#E994A0" d="M510.417,210.76c-4.698-19.198-20.897-34.833-40.305-38.896c-3.961-0.829-7.945-1.199-11.886-1.159 - c-37.112-56.479-104.896-85.372-202.21-85.372c-97.635,0-165.523,28.962-202.51,85.6c-12.656,0.009-24.99,4.167-34.713,12.431 - C6.855,193.521,0,208.333,0,224c0,16.677,8.042,32.427,21.335,42.448v74.885c0,23.531,19.137,42.667,42.669,42.667v10.667 - c0,17.646,14.355,32,32.002,32s32.002-14.354,32.002-32V384h256.016v10.667c0,17.646,14.355,32,32.002,32 - c17.647,0,32.002-14.354,32.002-32V384c23.533,0,42.669-19.135,42.669-42.667v-74.875 - C507.75,253.667,515.615,232.042,510.417,210.76z M256,106.667c85.625,0,145.768,23.478,179.749,69.255 - c-3.773,1.794-7.378,3.978-10.686,6.661c-12.542,10.188-19.729,25.281-19.729,41.417v32h-128c-8.225,0-15.659,3.206-21.333,8.323 - c-5.674-5.117-13.108-8.323-21.333-8.323h-128v-29.719c0-21.911-12.536-41.307-30.646-50.236 - C109.9,130.191,170.12,106.667,256,106.667z M426.667,288c0,5.885-4.781,10.667-10.667,10.667H277.333 - c-5.885,0-10.667-4.781-10.667-10.667s4.781-10.667,10.667-10.667H416C421.885,277.333,426.667,282.115,426.667,288z M245.333,288 - c0,5.885-4.781,10.667-10.667,10.667H96c-5.885,0-10.667-4.781-10.667-10.667S90.115,277.333,96,277.333h138.667 - C240.552,277.333,245.333,282.115,245.333,288z M106.667,394.667c0,5.885-4.781,10.667-10.667,10.667s-10.667-4.781-10.667-10.667 - V384h21.333V394.667z M426.667,394.667c0,5.885-4.781,10.667-10.667,10.667c-5.885,0-10.667-4.781-10.667-10.667V384h21.333 - V394.667z M474.635,251.531c-3.281,1.906-5.302,5.417-5.302,9.219v80.583c0,11.76-9.573,21.333-21.333,21.333H64 - c-11.76,0-21.333-9.573-21.333-21.333V260.75c0-3.792-2.021-7.302-5.302-9.219C27.323,245.688,21.333,235.396,21.333,224 - c0-9.396,4.115-18.292,11.281-24.385c7.281-6.188,16.625-8.729,26.167-7.167c15.135,2.458,26.552,17.01,26.552,33.833v31.684 - C72.944,262.383,64,274.112,64,288c0,17.646,14.354,32,32,32h138.667c8.225,0,15.659-3.206,21.333-8.323 - c5.674,5.117,13.108,8.323,21.333,8.323H416c17.646,0,32-14.354,32-32c0-13.888-8.944-25.617-21.333-30.035V224 - c0-9.688,4.313-18.74,11.844-24.854c7.635-6.198,17.323-8.479,27.198-6.406c11.542,2.417,21.167,11.698,23.948,23.083 - C493.167,230.167,487.271,244.177,474.635,251.531z"/> - </g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -<g> -</g> -</svg> diff --git a/examples/server-islands/public/assets/images/icons/terrace.svg b/examples/server-islands/public/assets/images/icons/terrace.svg deleted file mode 100644 index 40cd91ff4..000000000 --- a/examples/server-islands/public/assets/images/icons/terrace.svg +++ /dev/null @@ -1 +0,0 @@ -<svg id="Layer_3" enable-background="new 0 0 64 64" height="512" viewBox="0 0 64 64" width="512" xmlns="http://www.w3.org/2000/svg"><path fill="#E994A0" d="m63 3v-2h-31c-.553 0-1 .447-1 1v8c0 .553.447 1 1 1h1v50h-32v2h33 4 8 4 13v-2h-12v-5h12v-2h-13-4-3v-2h20v-2h-21c-.553 0-1 .447-1 1v4c0 .553.447 1 1 1h3v5h-6v-50h24v-2h-25-4-1v-6zm-16 53h2v5h-2zm-10-45v50h-2v-50z"/><path fill="#E994A0" d="m21 32c0-2.118-.501-4.238-1.447-6.131l-.658-1.316c-.34-.678-1.449-.678-1.789 0l-.658 1.316c-.947 1.893-1.448 4.013-1.448 6.131 0 .241.029.481.042.722-.646-.483-1.383-.837-2.172-1.034l-2.628-.657c-.338-.087-.701.015-.949.263s-.349.608-.263.949l.657 2.629c.269 1.073.823 2.055 1.605 2.836.781.782 1.763 1.337 2.836 1.605h.001l.672.168-1.25.625.895 1.789 2.554-1.277v2.382h-7c-.553 0-1 .447-1 1v4c0 .553.447 1 1 1h1.095l.91 9.1c.051.51.481.9.995.9h10c.514 0 .944-.39.995-.9l.91-9.1h1.095c.553 0 1-.447 1-1v-4c0-.553-.447-1-1-1h-7v-2.382l2.553 1.276.895-1.789-1.25-.625.672-.168h.001c1.073-.269 2.055-.823 2.836-1.605.782-.781 1.337-1.763 1.605-2.837l.657-2.628c.086-.341-.015-.701-.263-.949s-.609-.35-.949-.263l-2.629.657c-.788.197-1.525.551-2.171 1.034.014-.24.043-.48.043-.721zm1.095 25h-8.189l-.8-8h9.79zm2.905-10h-14v-2h14zm-7-19.734c.655 1.485 1 3.11 1 4.734s-.345 3.249-1 4.734c-.655-1.485-1-3.11-1-4.734s.345-3.249 1-4.734zm-5.293 9.027c-.525-.525-.898-1.186-1.08-1.907l-.252-1.011 1.01.252c.723.182 1.383.555 1.908 1.08s.898 1.186 1.08 1.907l.252 1.011-1.01-.252c-.722-.182-1.383-.555-1.908-1.08zm10.907-2.666 1.011-.252-.252 1.01c-.182.723-.555 1.383-1.08 1.908s-1.186.898-1.908 1.08l-1.01.252.252-1.01c.182-.723.555-1.383 1.08-1.908s1.186-.898 1.907-1.08z"/><path fill="#E994A0" d="m5 15h13c2.757 0 5-2.243 5-5s-2.243-5-5-5c-.438 0-.877.061-1.303.18-.766-2.455-3.023-4.18-5.697-4.18-3.309 0-6 2.691-6 6-2.206 0-4 1.794-4 4s1.794 4 4 4zm0-6c.27 0 .533.054.783.16.352.147.756.085 1.043-.163.288-.248.411-.639.317-1.007-.098-.377-.143-.692-.143-.99 0-2.206 1.794-4 4-4 2.081 0 3.784 1.574 3.961 3.662.028.345.233.648.54.806.308.158.675.145.97-.032.483-.29.997-.436 1.529-.436 1.654 0 3 1.346 3 3s-1.346 3-3 3h-13c-1.103 0-2-.897-2-2s.897-2 2-2z"/></svg>
\ No newline at end of file diff --git a/examples/server-islands/public/assets/images/logo.svg b/examples/server-islands/public/assets/images/logo.svg deleted file mode 100644 index 4a698caaa..000000000 --- a/examples/server-islands/public/assets/images/logo.svg +++ /dev/null @@ -1,4 +0,0 @@ -<svg width="122" height="23" viewBox="0 0 122 23" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M16.8232 22H12.751L9.39648 16.375C9.09375 15.8574 8.7959 15.418 8.50293 15.0566C8.21973 14.6855 7.92676 14.3828 7.62402 14.1484C7.33105 13.9141 7.00879 13.7432 6.65723 13.6357C6.30566 13.5283 5.91016 13.4746 5.4707 13.4746H4.06445V22H0.592773V0.994141H7.50684C8.49316 0.994141 9.40137 1.11133 10.2314 1.3457C11.0615 1.58008 11.7842 1.93652 12.3994 2.41504C13.0146 2.88379 13.4932 3.47461 13.835 4.1875C14.1865 4.89062 14.3623 5.71582 14.3623 6.66309C14.3623 7.40527 14.25 8.08887 14.0254 8.71387C13.8105 9.3291 13.498 9.88086 13.0879 10.3691C12.6875 10.8477 12.1992 11.2578 11.623 11.5996C11.0566 11.9414 10.417 12.2051 9.7041 12.3906V12.4492C10.085 12.6641 10.417 12.9033 10.7002 13.167C10.9834 13.4209 11.252 13.6846 11.5059 13.958C11.7598 14.2314 12.0088 14.5439 12.2529 14.8955C12.5068 15.2373 12.7852 15.6377 13.0879 16.0967L16.8232 22ZM4.06445 3.82129V10.6475H6.96484C7.50195 10.6475 7.99512 10.5645 8.44434 10.3984C8.90332 10.2324 9.29883 9.99316 9.63086 9.68066C9.96289 9.36816 10.2217 8.9873 10.4072 8.53809C10.5928 8.08887 10.6855 7.58594 10.6855 7.0293C10.6855 6.02344 10.3682 5.2373 9.7334 4.6709C9.09863 4.10449 8.18555 3.82129 6.99414 3.82129H4.06445ZM35.94 22H32.1168L30.2271 16.6533H21.9654L20.149 22H16.3404L24.2066 0.994141H28.1324L35.94 22ZM29.3043 13.8115L26.3893 5.43262C26.3014 5.15918 26.2086 4.71973 26.1109 4.11426H26.0523C25.9645 4.6709 25.8668 5.11035 25.7594 5.43262L22.8736 13.8115H29.3043ZM49.5783 3.95312H41.7268V10.2666H48.9631V13.2109H41.7268V22H38.2404V0.994141H49.5783V3.95312Z" fill="#FD3D57"/> -<path d="M67.3768 21.1211C65.7947 21.9414 63.827 22.3516 61.4734 22.3516C58.4266 22.3516 55.9852 21.3896 54.1492 19.4658C52.3133 17.542 51.3953 15.0176 51.3953 11.8926C51.3953 8.5332 52.4256 5.81836 54.4861 3.74805C56.5564 1.67773 59.1688 0.642578 62.323 0.642578C64.3543 0.642578 66.0389 0.930664 67.3768 1.50684V4.96387C65.9607 4.12402 64.3982 3.7041 62.6893 3.7041C60.4139 3.7041 58.5682 4.43164 57.1521 5.88672C55.7459 7.3418 55.0428 9.28516 55.0428 11.7168C55.0428 14.0312 55.702 15.877 57.0203 17.2539C58.3387 18.6211 60.0721 19.3047 62.2205 19.3047C64.2029 19.3047 65.9217 18.8359 67.3768 17.8984V21.1211ZM88.017 22H84.1937L82.3041 16.6533H74.0424L72.226 22H68.4174L76.2836 0.994141H80.2094L88.017 22ZM81.3812 13.8115L78.4662 5.43262C78.3783 5.15918 78.2855 4.71973 78.1879 4.11426H78.1293C78.0414 4.6709 77.9437 5.11035 77.8363 5.43262L74.9506 13.8115H81.3812ZM106.548 22H102.476L99.1211 16.375C98.8184 15.8574 98.5205 15.418 98.2275 15.0566C97.9443 14.6855 97.6514 14.3828 97.3486 14.1484C97.0557 13.9141 96.7334 13.7432 96.3818 13.6357C96.0303 13.5283 95.6348 13.4746 95.1953 13.4746H93.7891V22H90.3174V0.994141H97.2314C98.2178 0.994141 99.126 1.11133 99.9561 1.3457C100.786 1.58008 101.509 1.93652 102.124 2.41504C102.739 2.88379 103.218 3.47461 103.56 4.1875C103.911 4.89062 104.087 5.71582 104.087 6.66309C104.087 7.40527 103.975 8.08887 103.75 8.71387C103.535 9.3291 103.223 9.88086 102.812 10.3691C102.412 10.8477 101.924 11.2578 101.348 11.5996C100.781 11.9414 100.142 12.2051 99.4287 12.3906V12.4492C99.8096 12.6641 100.142 12.9033 100.425 13.167C100.708 13.4209 100.977 13.6846 101.23 13.958C101.484 14.2314 101.733 14.5439 101.978 14.8955C102.231 15.2373 102.51 15.6377 102.812 16.0967L106.548 22ZM93.7891 3.82129V10.6475H96.6895C97.2266 10.6475 97.7197 10.5645 98.1689 10.3984C98.6279 10.2324 99.0234 9.99316 99.3555 9.68066C99.6875 9.36816 99.9463 8.9873 100.132 8.53809C100.317 8.08887 100.41 7.58594 100.41 7.0293C100.41 6.02344 100.093 5.2373 99.458 4.6709C98.8232 4.10449 97.9102 3.82129 96.7188 3.82129H93.7891ZM121.182 3.95312H115.147V22H111.661V3.95312H105.64V0.994141H121.182V3.95312Z" fill="#2B2D42"/> -</svg> diff --git a/examples/server-islands/public/assets/images/methods.png b/examples/server-islands/public/assets/images/methods.png Binary files differdeleted file mode 100644 index 6ab2499aa..000000000 --- a/examples/server-islands/public/assets/images/methods.png +++ /dev/null diff --git a/examples/server-islands/public/assets/images/offer.jpg b/examples/server-islands/public/assets/images/offer.jpg Binary files differdeleted file mode 100644 index 1b735cdb8..000000000 --- a/examples/server-islands/public/assets/images/offer.jpg +++ /dev/null diff --git a/examples/server-islands/public/assets/images/products/product1.jpg b/examples/server-islands/public/assets/images/products/product1.jpg Binary files differdeleted file mode 100644 index 523c18d1c..000000000 --- a/examples/server-islands/public/assets/images/products/product1.jpg +++ /dev/null diff --git a/examples/server-islands/public/assets/images/products/product10.jpg b/examples/server-islands/public/assets/images/products/product10.jpg Binary files differdeleted file mode 100644 index 234c4b1ba..000000000 --- a/examples/server-islands/public/assets/images/products/product10.jpg +++ /dev/null diff --git a/examples/server-islands/public/assets/images/products/product11.jpg b/examples/server-islands/public/assets/images/products/product11.jpg Binary files differdeleted file mode 100644 index 8f23255cf..000000000 --- a/examples/server-islands/public/assets/images/products/product11.jpg +++ /dev/null diff --git a/examples/server-islands/public/assets/images/products/product12.jpg b/examples/server-islands/public/assets/images/products/product12.jpg Binary files differdeleted file mode 100644 index f1f32d6dd..000000000 --- a/examples/server-islands/public/assets/images/products/product12.jpg +++ /dev/null diff --git a/examples/server-islands/public/assets/images/products/product2.jpg b/examples/server-islands/public/assets/images/products/product2.jpg Binary files differdeleted file mode 100644 index ab2fc5d8b..000000000 --- a/examples/server-islands/public/assets/images/products/product2.jpg +++ /dev/null diff --git a/examples/server-islands/public/assets/images/products/product3.jpg b/examples/server-islands/public/assets/images/products/product3.jpg Binary files differdeleted file mode 100644 index dd2e27bc4..000000000 --- a/examples/server-islands/public/assets/images/products/product3.jpg +++ /dev/null diff --git a/examples/server-islands/public/assets/images/products/product4.jpg b/examples/server-islands/public/assets/images/products/product4.jpg Binary files differdeleted file mode 100644 index 4e31e49b8..000000000 --- a/examples/server-islands/public/assets/images/products/product4.jpg +++ /dev/null diff --git a/examples/server-islands/public/assets/images/products/product5.jpg b/examples/server-islands/public/assets/images/products/product5.jpg Binary files differdeleted file mode 100644 index e950c71fd..000000000 --- a/examples/server-islands/public/assets/images/products/product5.jpg +++ /dev/null diff --git a/examples/server-islands/public/assets/images/products/product6.jpg b/examples/server-islands/public/assets/images/products/product6.jpg Binary files differdeleted file mode 100644 index fb6827706..000000000 --- a/examples/server-islands/public/assets/images/products/product6.jpg +++ /dev/null diff --git a/examples/server-islands/public/assets/images/products/product7.jpg b/examples/server-islands/public/assets/images/products/product7.jpg Binary files differdeleted file mode 100644 index e0c355a9b..000000000 --- a/examples/server-islands/public/assets/images/products/product7.jpg +++ /dev/null diff --git a/examples/server-islands/public/assets/images/products/product8.jpg b/examples/server-islands/public/assets/images/products/product8.jpg Binary files differdeleted file mode 100644 index bca29d380..000000000 --- a/examples/server-islands/public/assets/images/products/product8.jpg +++ /dev/null diff --git a/examples/server-islands/public/assets/images/products/product9.jpg b/examples/server-islands/public/assets/images/products/product9.jpg Binary files differdeleted file mode 100644 index 7e4558371..000000000 --- a/examples/server-islands/public/assets/images/products/product9.jpg +++ /dev/null diff --git a/examples/server-islands/src/base.css b/examples/server-islands/src/base.css deleted file mode 100644 index d0ae7cae4..000000000 --- a/examples/server-islands/src/base.css +++ /dev/null @@ -1,32 +0,0 @@ -@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap'); - -@tailwind base; -@tailwind components; -@tailwind utilities; - -@layer base { - body { - @apply font-poppins; - } - h1, - h2, - h3, - h4, - h5, - h6 { - @apply font-roboto; - } -} - -@layer components { - .size-selector input:checked + label { - @apply bg-primary text-white; - } - .color-selector input:checked + label { - @apply ring-2 ring-primary; - } - - .input-box { - @apply block w-full border border-gray-300 px-4 py-3 text-gray-600 text-sm rounded placeholder-gray-400 focus:border-primary focus:ring-0; - } -} diff --git a/examples/server-islands/src/cart.ts b/examples/server-islands/src/cart.ts deleted file mode 100644 index 355074a38..000000000 --- a/examples/server-islands/src/cart.ts +++ /dev/null @@ -1,20 +0,0 @@ - -const channel = new MessageChannel(); - -function onNewCartItem(cb: (m: any) => void) { - let onMessage = (ev: MessageEvent) => { - cb(ev.data); - }; - channel.port2.addEventListener('message', onMessage); - channel.port2.start(); - return () => channel.port2.removeEventListener('message', onMessage); -} - -function addToCart(item: any) { - channel.port1.postMessage(item); -} - -export { - onNewCartItem, - addToCart -} diff --git a/examples/server-islands/src/components/AddToCart.tsx b/examples/server-islands/src/components/AddToCart.tsx deleted file mode 100644 index 5fcfc4eaa..000000000 --- a/examples/server-islands/src/components/AddToCart.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import { addToCart } from '../cart'; - -export default function({ small }) { - function onClick(ev: Event) { - ev.preventDefault(); - let item = { name: 'Sofa' }; - addToCart(item); - - } - - if(small) { - return ( - <a href="#" - onClick={onClick} - className="block w-full py-1 text-center text-white bg-primary border border-primary rounded-b hover:bg-transparent hover:text-primary transition">Add - to cart</a> - ) - } - - return ( - <a href="#" - onClick={onClick} - className="bg-primary border border-primary text-white px-8 py-2 font-medium rounded uppercase flex items-center gap-2 hover:bg-transparent hover:text-primary transition"> - <i className="fa-solid fa-bag-shopping"></i> Add to cart - </a> - ) -} diff --git a/examples/server-islands/src/components/CartCount.tsx b/examples/server-islands/src/components/CartCount.tsx deleted file mode 100644 index 5c3d3e392..000000000 --- a/examples/server-islands/src/components/CartCount.tsx +++ /dev/null @@ -1,14 +0,0 @@ -import { useEffect, useState } from 'react'; -import { onNewCartItem } from '../cart'; - -export default function({ count: initialCount }) { - const [count, setCount] = useState(initialCount); - useEffect(() => { - return onNewCartItem(() => setCount(count + 1)); - }, [count]); - - return ( - <div className="absolute -right-3 -top-1 w-5 h-5 rounded-full flex items-center justify-center bg-primary text-white text-xs"> -{count}</div> - ); -} diff --git a/examples/server-islands/src/components/PersonalBar.astro b/examples/server-islands/src/components/PersonalBar.astro deleted file mode 100644 index afff16d60..000000000 --- a/examples/server-islands/src/components/PersonalBar.astro +++ /dev/null @@ -1,36 +0,0 @@ ---- -import CartCount from './CartCount'; - -const { placeholder } = Astro.props; -let wishlist = 0; -let cart = 0; - -if (!placeholder) { - await new Promise((resolve) => setTimeout(resolve, 3000)); -} ---- - -<a href="#" class="text-center text-gray-700 hover:text-primary transition relative"> - <div class="text-2xl"> - <i class="fa-regular fa-heart"></i> - </div> - <div class="text-xs leading-3">Wishlist</div> - <div - class="absolute right-0 -top-1 w-5 h-5 rounded-full flex items-center justify-center bg-primary text-white text-xs" - > - {wishlist} - </div> -</a> -<a href="#" class="text-center text-gray-700 hover:text-primary transition relative"> - <div class="text-2xl"> - <i class="fa-solid fa-bag-shopping"></i> - </div> - <div class="text-xs leading-3">Cart</div> - <CartCount client:load count={cart} /> -</a> -<a href="#" class="text-center text-gray-700 hover:text-primary transition relative"> - <div class="text-2xl"> - <i class="fa-regular fa-user"></i> - </div> - <div class="text-xs leading-3">Account</div> -</a> diff --git a/examples/server-islands/src/pages/index.astro b/examples/server-islands/src/pages/index.astro deleted file mode 100644 index b12fb0c5e..000000000 --- a/examples/server-islands/src/pages/index.astro +++ /dev/null @@ -1,678 +0,0 @@ ---- -import '../base.css'; -import AddToCart from '../components/AddToCart'; -import PersonalBar from '../components/PersonalBar.astro'; -import '@fortawesome/fontawesome-free/css/all.min.css'; ---- - -<!doctype html> -<html lang="en"> - <head> - <meta charset="UTF-8" /> - <meta http-equiv="X-UA-Compatible" content="IE=edge" /> - <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <title>Product - Ecommerce Tailwind</title> - - <link rel="shortcut icon" href="../assets/images/favicon/favicon.ico" type="image/x-icon" /> - - <link rel="preconnect" href="https://fonts.googleapis.com" /> - <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> - <link - href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap" - rel="stylesheet" - /> - </head> - - <body> - <!-- header --> - <header class="py-4 shadow-sm bg-white"> - <div class="container flex items-center justify-between"> - <a href="index.html"> - <img src="../assets/images/logo.svg" alt="Logo" class="w-32" /> - </a> - - <div class="w-full max-w-xl relative flex"> - <span class="absolute left-4 top-3 text-lg text-gray-400"> - <i class="fa-solid fa-magnifying-glass"></i> - </span> - <input - type="text" - name="search" - id="search" - class="w-full border border-primary border-r-0 pl-12 py-3 pr-3 rounded-l-md focus:outline-none" - placeholder="search" - /> - <button - class="bg-primary border border-primary text-white px-8 rounded-r-md hover:bg-transparent hover:text-primary transition" - >Search</button - > - </div> - - <div class="flex items-center space-x-4"> - <PersonalBar server:defer> - <PersonalBar placeholder slot="fallback" /> - </PersonalBar> - </div> - </div> - </header> - <!-- ./header --> - - <!-- navbar --> - <nav class="bg-gray-800"> - <div class="container flex"> - <div class="px-8 py-4 bg-primary flex items-center cursor-pointer relative group"> - <span class="text-white"> - <i class="fa-solid fa-bars"></i> - </span> - <span class="capitalize ml-2 text-white">All Categories</span> - - <!-- dropdown --> - <div - class="absolute w-full left-0 top-full bg-white shadow-md py-3 divide-y divide-gray-300 divide-dashed opacity-0 group-hover:opacity-100 transition duration-300 invisible group-hover:visible" - > - <a href="#" class="flex items-center px-6 py-3 hover:bg-gray-100 transition"> - <img - src="../assets/images/icons/sofa.svg" - alt="sofa" - class="w-5 h-5 object-contain" - /> - <span class="ml-6 text-gray-600 text-sm">Sofa</span> - </a> - <a href="#" class="flex items-center px-6 py-3 hover:bg-gray-100 transition"> - <img - src="../assets/images/icons/terrace.svg" - alt="terrace" - class="w-5 h-5 object-contain" - /> - <span class="ml-6 text-gray-600 text-sm">Terarce</span> - </a> - <a href="#" class="flex items-center px-6 py-3 hover:bg-gray-100 transition"> - <img src="../assets/images/icons/bed.svg" alt="bed" class="w-5 h-5 object-contain" /> - <span class="ml-6 text-gray-600 text-sm">Bed</span> - </a> - <a href="#" class="flex items-center px-6 py-3 hover:bg-gray-100 transition"> - <img - src="../assets/images/icons/office.svg" - alt="office" - class="w-5 h-5 object-contain" - /> - <span class="ml-6 text-gray-600 text-sm">office</span> - </a> - <a href="#" class="flex items-center px-6 py-3 hover:bg-gray-100 transition"> - <img - src="../assets/images/icons/outdoor-cafe.svg" - alt="outdoor" - class="w-5 h-5 object-contain" - /> - <span class="ml-6 text-gray-600 text-sm">Outdoor</span> - </a> - <a href="#" class="flex items-center px-6 py-3 hover:bg-gray-100 transition"> - <img - src="../assets/images/icons/bed-2.svg" - alt="Mattress" - class="w-5 h-5 object-contain" - /> - <span class="ml-6 text-gray-600 text-sm">Mattress</span> - </a> - </div> - </div> - - <div class="flex items-center justify-between flex-grow pl-12"> - <div class="flex items-center space-x-6 capitalize"> - <a href="../index.html" class="text-gray-200 hover:text-white transition">Home</a> - <a href="pages/shop.html" class="text-gray-200 hover:text-white transition">Shop</a> - <a href="#" class="text-gray-200 hover:text-white transition">About us</a> - <a href="#" class="text-gray-200 hover:text-white transition">Contact us</a> - </div> - <a href="#" class="text-gray-200 hover:text-white transition">Login/Register</a> - </div> - </div> - </nav> - <!-- ./navbar --> - - <!-- breadcrumb --> - <div class="container py-4 flex items-center gap-3"> - <a href="../index.html" class="text-primary text-base"> - <i class="fa-solid fa-house"></i> - </a> - <span class="text-sm text-gray-400"> - <i class="fa-solid fa-chevron-right"></i> - </span> - <p class="text-gray-600 font-medium">Product</p> - </div> - <!-- ./breadcrumb --> - - <!-- product-detail --> - <div class="container grid grid-cols-2 gap-6"> - <div> - <img src="../assets/images/products/product1.jpg" alt="product" class="w-full" /> - <div class="grid grid-cols-5 gap-4 mt-4"> - <img - src="../assets/images/products/product2.jpg" - alt="product2" - class="w-full cursor-pointer border border-primary" - /> - <img - src="../assets/images/products/product3.jpg" - alt="product2" - class="w-full cursor-pointer border" - /> - <img - src="../assets/images/products/product4.jpg" - alt="product2" - class="w-full cursor-pointer border" - /> - <img - src="../assets/images/products/product5.jpg" - alt="product2" - class="w-full cursor-pointer border" - /> - <img - src="../assets/images/products/product6.jpg" - alt="product2" - class="w-full cursor-pointer border" - /> - </div> - </div> - - <div> - <h2 class="text-3xl font-medium uppercase mb-2">Italian L Shape Sofa</h2> - <div class="flex items-center mb-4"> - <div class="flex gap-1 text-sm text-yellow-400"> - <span><i class="fa-solid fa-star"></i></span> - <span><i class="fa-solid fa-star"></i></span> - <span><i class="fa-solid fa-star"></i></span> - <span><i class="fa-solid fa-star"></i></span> - <span><i class="fa-solid fa-star"></i></span> - </div> - <div class="text-xs text-gray-500 ml-3">(150 Reviews)</div> - </div> - <div class="space-y-2"> - <p class="text-gray-800 font-semibold space-x-2"> - <span>Availability: </span> - <span class="text-green-600">In Stock</span> - </p> - <p class="space-x-2"> - <span class="text-gray-800 font-semibold">Brand: </span> - <span class="text-gray-600">Apex</span> - </p> - <p class="space-x-2"> - <span class="text-gray-800 font-semibold">Category: </span> - <span class="text-gray-600">Sofa</span> - </p> - <p class="space-x-2"> - <span class="text-gray-800 font-semibold">SKU: </span> - <span class="text-gray-600">BE45VGRT</span> - </p> - </div> - <div class="flex items-baseline mb-1 space-x-2 font-roboto mt-4"> - <p class="text-xl text-primary font-semibold">$45.00</p> - <p class="text-base text-gray-400 line-through">$55.00</p> - </div> - - <p class="mt-4 text-gray-600"> - Lorem ipsum dolor sit amet consectetur adipisicing elit. Eos eius eum reprehenderit dolore - vel mollitia optio consequatur hic asperiores inventore suscipit, velit consequuntur, - voluptate doloremque iure necessitatibus adipisci magnam porro. - </p> - - <div class="pt-4"> - <h3 class="text-sm text-gray-800 uppercase mb-1">Size</h3> - <div class="flex items-center gap-2"> - <div class="size-selector"> - <input type="radio" name="size" id="size-xs" class="hidden" /> - <label - for="size-xs" - class="text-xs border border-gray-200 rounded-sm h-6 w-6 flex items-center justify-center cursor-pointer shadow-sm text-gray-600" - >XS</label - > - </div> - <div class="size-selector"> - <input type="radio" name="size" id="size-sm" class="hidden" /> - <label - for="size-sm" - class="text-xs border border-gray-200 rounded-sm h-6 w-6 flex items-center justify-center cursor-pointer shadow-sm text-gray-600" - >S</label - > - </div> - <div class="size-selector"> - <input type="radio" name="size" id="size-m" class="hidden" /> - <label - for="size-m" - class="text-xs border border-gray-200 rounded-sm h-6 w-6 flex items-center justify-center cursor-pointer shadow-sm text-gray-600" - >M</label - > - </div> - <div class="size-selector"> - <input type="radio" name="size" id="size-l" class="hidden" /> - <label - for="size-l" - class="text-xs border border-gray-200 rounded-sm h-6 w-6 flex items-center justify-center cursor-pointer shadow-sm text-gray-600" - >L</label - > - </div> - <div class="size-selector"> - <input type="radio" name="size" id="size-xl" class="hidden" /> - <label - for="size-xl" - class="text-xs border border-gray-200 rounded-sm h-6 w-6 flex items-center justify-center cursor-pointer shadow-sm text-gray-600" - >XL</label - > - </div> - </div> - </div> - - <div class="pt-4"> - <h3 class="text-xl text-gray-800 mb-3 uppercase font-medium">Color</h3> - <div class="flex items-center gap-2"> - <div class="color-selector"> - <input type="radio" name="color" id="red" class="hidden" /> - <label - for="red" - class="border border-gray-200 rounded-sm h-6 w-6 cursor-pointer shadow-sm block" - style="background-color: #fc3d57;"></label> - </div> - <div class="color-selector"> - <input type="radio" name="color" id="black" class="hidden" /> - <label - for="black" - class="border border-gray-200 rounded-sm h-6 w-6 cursor-pointer shadow-sm block" - style="background-color: #000;"></label> - </div> - <div class="color-selector"> - <input type="radio" name="color" id="white" class="hidden" /> - <label - for="white" - class="border border-gray-200 rounded-sm h-6 w-6 cursor-pointer shadow-sm block" - style="background-color: #fff;"></label> - </div> - </div> - </div> - - <div class="mt-4"> - <h3 class="text-sm text-gray-800 uppercase mb-1">Quantity</h3> - <div class="flex border border-gray-300 text-gray-600 divide-x divide-gray-300 w-max"> - <div - class="h-8 w-8 text-xl flex items-center justify-center cursor-pointer select-none" - > - - - </div> - <div class="h-8 w-8 text-base flex items-center justify-center">4</div> - <div - class="h-8 w-8 text-xl flex items-center justify-center cursor-pointer select-none" - > - + - </div> - </div> - </div> - - <div class="mt-6 flex gap-3 border-b border-gray-200 pb-5 pt-5"> - <AddToCart client:load /> - <a - href="#" - class="border border-gray-300 text-gray-600 px-8 py-2 font-medium rounded uppercase flex items-center gap-2 hover:text-primary transition" - > - <i class="fa-solid fa-heart"></i> Wishlist - </a> - </div> - - <div class="flex gap-3 mt-4"> - <a - href="#" - class="text-gray-400 hover:text-gray-500 h-8 w-8 rounded-full border border-gray-300 flex items-center justify-center" - > - <i class="fa-brands fa-facebook-f"></i> - </a> - <a - href="#" - class="text-gray-400 hover:text-gray-500 h-8 w-8 rounded-full border border-gray-300 flex items-center justify-center" - > - <i class="fa-brands fa-twitter"></i> - </a> - <a - href="#" - class="text-gray-400 hover:text-gray-500 h-8 w-8 rounded-full border border-gray-300 flex items-center justify-center" - > - <i class="fa-brands fa-instagram"></i> - </a> - </div> - </div> - </div> - <!-- ./product-detail --> - - <!-- description --> - <div class="container pb-16"> - <h3 class="border-b border-gray-200 font-roboto text-gray-800 pb-3 font-medium"> - Product details - </h3> - <div class="w-3/5 pt-6"> - <div class="text-gray-600"> - <p> - Lorem, ipsum dolor sit amet consectetur adipisicing elit. Tenetur necessitatibus - deleniti natus dolore cum maiores suscipit optio itaque voluptatibus veritatis tempora - iste facilis non aut sapiente dolor quisquam, ex ab. - </p> - <p> - Lorem ipsum dolor sit amet consectetur adipisicing elit. Dolorum, quae accusantium - voluptatem blanditiis sapiente voluptatum. Autem ab, dolorum assumenda earum veniam eius - illo fugiat possimus illum dolor totam, ducimus excepturi. - </p> - <p> - Lorem ipsum dolor sit amet consectetur adipisicing elit. Error quia modi ut expedita! - Iure molestiae labore cumque nobis quasi fuga, quibusdam rem? Temporibus consectetur - corrupti rerum veritatis numquam labore amet. - </p> - </div> - - <table class="table-auto border-collapse w-full text-left text-gray-600 text-sm mt-6"> - <tr> - <th class="py-2 px-4 border border-gray-300 w-40 font-medium">Color</th> - <th class="py-2 px-4 border border-gray-300">Blank, Brown, Red</th> - </tr> - <tr> - <th class="py-2 px-4 border border-gray-300 w-40 font-medium">Material</th> - <th class="py-2 px-4 border border-gray-300">Latex</th> - </tr> - <tr> - <th class="py-2 px-4 border border-gray-300 w-40 font-medium">Weight</th> - <th class="py-2 px-4 border border-gray-300">55kg</th> - </tr> - </table> - </div> - </div> - <!-- ./description --> - - <!-- related product --> - <div class="container pb-16"> - <h2 class="text-2xl font-medium text-gray-800 uppercase mb-6">Related products</h2> - <div class="grid grid-cols-4 gap-6"> - <div class="bg-white shadow rounded overflow-hidden group"> - <div class="relative"> - <img src="../assets/images/products/product1.jpg" alt="product 1" class="w-full" /> - <div - class="absolute inset-0 bg-black bg-opacity-40 flex items-center - justify-center gap-2 opacity-0 group-hover:opacity-100 transition" - > - <a - href="#" - class="text-white text-lg w-9 h-8 rounded-full bg-primary flex items-center justify-center hover:bg-gray-800 transition" - title="view product" - > - <i class="fa-solid fa-magnifying-glass"></i> - </a> - <a - href="#" - class="text-white text-lg w-9 h-8 rounded-full bg-primary flex items-center justify-center hover:bg-gray-800 transition" - title="add to wishlist" - > - <i class="fa-solid fa-heart"></i> - </a> - </div> - </div> - <div class="pt-4 pb-3 px-4"> - <a href="#"> - <h4 - class="uppercase font-medium text-xl mb-2 text-gray-800 hover:text-primary transition" - > - Guyer Chair - </h4> - </a> - <div class="flex items-baseline mb-1 space-x-2"> - <p class="text-xl text-primary font-semibold">$45.00</p> - <p class="text-sm text-gray-400 line-through">$55.90</p> - </div> - <div class="flex items-center"> - <div class="flex gap-1 text-sm text-yellow-400"> - <span><i class="fa-solid fa-star"></i></span> - <span><i class="fa-solid fa-star"></i></span> - <span><i class="fa-solid fa-star"></i></span> - <span><i class="fa-solid fa-star"></i></span> - <span><i class="fa-solid fa-star"></i></span> - </div> - <div class="text-xs text-gray-500 ml-3">(150)</div> - </div> - </div> - <AddToCart small client:load /> - </div> - <div class="bg-white shadow rounded overflow-hidden group"> - <div class="relative"> - <img src="../assets/images/products/product4.jpg" alt="product 1" class="w-full" /> - <div - class="absolute inset-0 bg-black bg-opacity-40 flex items-center - justify-center gap-2 opacity-0 group-hover:opacity-100 transition" - > - <a - href="#" - class="text-white text-lg w-9 h-8 rounded-full bg-primary flex items-center justify-center hover:bg-gray-800 transition" - title="view product" - > - <i class="fa-solid fa-magnifying-glass"></i> - </a> - <a - href="#" - class="text-white text-lg w-9 h-8 rounded-full bg-primary flex items-center justify-center hover:bg-gray-800 transition" - title="add to wishlist" - > - <i class="fa-solid fa-heart"></i> - </a> - </div> - </div> - <div class="pt-4 pb-3 px-4"> - <a href="#"> - <h4 - class="uppercase font-medium text-xl mb-2 text-gray-800 hover:text-primary transition" - > - Bed King Size - </h4> - </a> - <div class="flex items-baseline mb-1 space-x-2"> - <p class="text-xl text-primary font-semibold">$45.00</p> - <p class="text-sm text-gray-400 line-through">$55.90</p> - </div> - <div class="flex items-center"> - <div class="flex gap-1 text-sm text-yellow-400"> - <span><i class="fa-solid fa-star"></i></span> - <span><i class="fa-solid fa-star"></i></span> - <span><i class="fa-solid fa-star"></i></span> - <span><i class="fa-solid fa-star"></i></span> - <span><i class="fa-solid fa-star"></i></span> - </div> - <div class="text-xs text-gray-500 ml-3">(150)</div> - </div> - </div> - <AddToCart small client:load /> - </div> - <div class="bg-white shadow rounded overflow-hidden group"> - <div class="relative"> - <img src="../assets/images/products/product2.jpg" alt="product 1" class="w-full" /> - <div - class="absolute inset-0 bg-black bg-opacity-40 flex items-center - justify-center gap-2 opacity-0 group-hover:opacity-100 transition" - > - <a - href="#" - class="text-white text-lg w-9 h-8 rounded-full bg-primary flex items-center justify-center hover:bg-gray-800 transition" - title="view product" - > - <i class="fa-solid fa-magnifying-glass"></i> - </a> - <a - href="#" - class="text-white text-lg w-9 h-8 rounded-full bg-primary flex items-center justify-center hover:bg-gray-800 transition" - title="add to wishlist" - > - <i class="fa-solid fa-heart"></i> - </a> - </div> - </div> - <div class="pt-4 pb-3 px-4"> - <a href="#"> - <h4 - class="uppercase font-medium text-xl mb-2 text-gray-800 hover:text-primary transition" - > - Couple Sofa - </h4> - </a> - <div class="flex items-baseline mb-1 space-x-2"> - <p class="text-xl text-primary font-semibold">$45.00</p> - <p class="text-sm text-gray-400 line-through">$55.90</p> - </div> - <div class="flex items-center"> - <div class="flex gap-1 text-sm text-yellow-400"> - <span><i class="fa-solid fa-star"></i></span> - <span><i class="fa-solid fa-star"></i></span> - <span><i class="fa-solid fa-star"></i></span> - <span><i class="fa-solid fa-star"></i></span> - <span><i class="fa-solid fa-star"></i></span> - </div> - <div class="text-xs text-gray-500 ml-3">(150)</div> - </div> - </div> - <AddToCart small client:load /> - </div> - <div class="bg-white shadow rounded overflow-hidden group"> - <div class="relative"> - <img src="../assets/images/products/product3.jpg" alt="product 1" class="w-full" /> - <div - class="absolute inset-0 bg-black bg-opacity-40 flex items-center - justify-center gap-2 opacity-0 group-hover:opacity-100 transition" - > - <a - href="#" - class="text-white text-lg w-9 h-8 rounded-full bg-primary flex items-center justify-center hover:bg-gray-800 transition" - title="view product" - > - <i class="fa-solid fa-magnifying-glass"></i> - </a> - <a - href="#" - class="text-white text-lg w-9 h-8 rounded-full bg-primary flex items-center justify-center hover:bg-gray-800 transition" - title="add to wishlist" - > - <i class="fa-solid fa-heart"></i> - </a> - </div> - </div> - <div class="pt-4 pb-3 px-4"> - <a href="#"> - <h4 - class="uppercase font-medium text-xl mb-2 text-gray-800 hover:text-primary transition" - > - Mattrass X - </h4> - </a> - <div class="flex items-baseline mb-1 space-x-2"> - <p class="text-xl text-primary font-semibold">$45.00</p> - <p class="text-sm text-gray-400 line-through">$55.90</p> - </div> - <div class="flex items-center"> - <div class="flex gap-1 text-sm text-yellow-400"> - <span><i class="fa-solid fa-star"></i></span> - <span><i class="fa-solid fa-star"></i></span> - <span><i class="fa-solid fa-star"></i></span> - <span><i class="fa-solid fa-star"></i></span> - <span><i class="fa-solid fa-star"></i></span> - </div> - <div class="text-xs text-gray-500 ml-3">(150)</div> - </div> - </div> - <AddToCart small client:load /> - </div> - </div> - </div> - <!-- ./related product --> - - <!-- footer --> - <footer class="bg-white pt-16 pb-12 border-t border-gray-100"> - <div class="container grid grid-cols-3"> - <div class="col-span-1 space-y-8 mr-2"> - <img src="../assets/images/logo.svg" alt="logo" class="w-30" /> - <div class="mr-2"> - <p class="text-gray-500"> - Lorem ipsum dolor sit amet consectetur adipisicing elit. Quia, hic? - </p> - </div> - <div class="flex space-x-6"> - <a href="#" class="text-gray-400 hover:text-gray-500" - ><i class="fa-brands fa-facebook-square"></i></a - > - <a href="#" class="text-gray-400 hover:text-gray-500" - ><i class="fa-brands fa-instagram-square"></i></a - > - <a href="#" class="text-gray-400 hover:text-gray-500" - ><i class="fa-brands fa-twitter-square"></i></a - > - <a href="#" class="text-gray-400 hover:text-gray-500"> - <i class="fa-brands fa-github-square"></i> - </a> - </div> - </div> - - <div class="col-span-2 grid grid-cols-2 gap-8"> - <div class="grid grid-cols-2 gap-8"> - <div> - <h3 class="text-sm font-semibold text-gray-400 uppercase tracking-wider"> - Solutions - </h3> - <div class="mt-4 space-y-4"> - <a href="#" class="text-base text-gray-500 hover:text-gray-900 block">Marketing</a> - <a href="#" class="text-base text-gray-500 hover:text-gray-900 block">Analitycs</a> - <a href="#" class="text-base text-gray-500 hover:text-gray-900 block">Commerce</a> - <a href="#" class="text-base text-gray-500 hover:text-gray-900 block">Insights</a> - </div> - </div> - - <div> - <h3 class="text-sm font-semibold text-gray-400 uppercase tracking-wider">Support</h3> - <div class="mt-4 space-y-4"> - <a href="#" class="text-base text-gray-500 hover:text-gray-900 block">Pricing</a> - <a href="#" class="text-base text-gray-500 hover:text-gray-900 block" - >Documentation</a - > - <a href="#" class="text-base text-gray-500 hover:text-gray-900 block">Guides</a> - <a href="#" class="text-base text-gray-500 hover:text-gray-900 block">API Status</a> - </div> - </div> - </div> - <div class="grid grid-cols-2 gap-8"> - <div> - <h3 class="text-sm font-semibold text-gray-400 uppercase tracking-wider"> - Solutions - </h3> - <div class="mt-4 space-y-4"> - <a href="#" class="text-base text-gray-500 hover:text-gray-900 block">Marketing</a> - <a href="#" class="text-base text-gray-500 hover:text-gray-900 block">Analitycs</a> - <a href="#" class="text-base text-gray-500 hover:text-gray-900 block">Commerce</a> - <a href="#" class="text-base text-gray-500 hover:text-gray-900 block">Insights</a> - </div> - </div> - - <div> - <h3 class="text-sm font-semibold text-gray-400 uppercase tracking-wider">Support</h3> - <div class="mt-4 space-y-4"> - <a href="#" class="text-base text-gray-500 hover:text-gray-900 block">Pricing</a> - <a href="#" class="text-base text-gray-500 hover:text-gray-900 block" - >Documentation</a - > - <a href="#" class="text-base text-gray-500 hover:text-gray-900 block">Guides</a> - <a href="#" class="text-base text-gray-500 hover:text-gray-900 block">API Status</a> - </div> - </div> - </div> - </div> - </div> - </footer> - <!-- ./footer --> - - <!-- copyright --> - <div class="bg-gray-800 py-4"> - <div class="container flex items-center justify-between"> - <p class="text-white">© TailCommerce - All Right Reserved</p> - <div> - <img src="../assets/images/methods.png" alt="methods" class="h-5" /> - </div> - </div> - </div> - <!-- ./copyright --> - </body> -</html> diff --git a/examples/server-islands/tailwind.config.cjs b/examples/server-islands/tailwind.config.cjs deleted file mode 100644 index 4076218af..000000000 --- a/examples/server-islands/tailwind.config.cjs +++ /dev/null @@ -1,27 +0,0 @@ -module.exports = { - content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'], - theme: { - screen: { - sm: "576px", - md: "768px", - lg: "992px", - xl: "1200px", - }, - container: { - center: true, - padding: "1rem", - }, - extend: { - fontFamily: { - poppins: ["Poppins", "sans-serif"], - roboto: ["Roboto", "sans-serif"], - }, - colors: { - primary: "#fd3d57", - }, - }, - }, - plugins: [ - require("@tailwindcss/forms"), - ], -}; diff --git a/examples/view-transitions/.gitignore b/examples/view-transitions/.gitignore deleted file mode 100644 index 16d54bb13..000000000 --- a/examples/view-transitions/.gitignore +++ /dev/null @@ -1,24 +0,0 @@ -# build output -dist/ -# generated types -.astro/ - -# dependencies -node_modules/ - -# logs -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* - - -# environment variables -.env -.env.production - -# macOS-specific files -.DS_Store - -# jetbrains setting folder -.idea/ diff --git a/examples/view-transitions/README.md b/examples/view-transitions/README.md deleted file mode 100644 index 255c73187..000000000 --- a/examples/view-transitions/README.md +++ /dev/null @@ -1,30 +0,0 @@ -# Astro Movies View Transitions Demo - -### 👉🏽 [Live Demo](https://astro-movies.pages.dev/) - - - -## 🚀 Getting Started - -1. Clone this repository and install dependencies with `npm install`. -2. Start the project locally with npm run dev, or deploy it to your favorite server. -3. Have fun! ✨ - -## 🧞 Commands - -All commands are run from the root of the project, from a terminal: - -| Command | Action | -| :--------------------- | :----------------------------------------------- | -| `npm install` | Installs dependencies | -| `npm run dev` | Starts local dev server at `localhost:3000` | -| `npm run build` | Build your production site to `./dist/` | -| `npm run preview` | Preview your build locally, before deploying | -| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` | -| `npm run astro --help` | Get help using the Astro CLI | - -## 👀 Want to learn more? - -Check out [Astro's documentation](https://docs.astro.build) or jump into their [Discord server](https://astro.build/chat). - -You can also reach out to [Maxi on Twitter](https://twitter.com/charca). diff --git a/examples/view-transitions/astro.config.mjs b/examples/view-transitions/astro.config.mjs deleted file mode 100644 index 2ec6d614a..000000000 --- a/examples/view-transitions/astro.config.mjs +++ /dev/null @@ -1,15 +0,0 @@ -import { defineConfig } from 'astro/config'; -import tailwind from '@astrojs/tailwind'; -import nodejs from '@astrojs/node'; - -// https://astro.build/config -export default defineConfig({ - integrations: [tailwind()], - output: 'server', - adapter: nodejs({ mode: 'standalone' }), - vite: { - define: { - 'process.env.TMDB_API_KEY': JSON.stringify(process.env.TMDB_API_KEY), - }, - }, -}); diff --git a/examples/view-transitions/package.json b/examples/view-transitions/package.json deleted file mode 100644 index 79ad9421b..000000000 --- a/examples/view-transitions/package.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "name": "@example/view-transitions", - "version": "0.0.1", - "private": true, - "scripts": { - "dev": "astro dev", - "start": "astro dev", - "build": "astro build", - "preview": "astro preview", - "astro": "astro" - }, - "devDependencies": { - "@astrojs/tailwind": "^5.1.2", - "@astrojs/node": "^8.3.4", - "astro": "^4.16.0" - } -} diff --git a/examples/view-transitions/public/favicon.ico b/examples/view-transitions/public/favicon.ico Binary files differdeleted file mode 100644 index 578ad458b..000000000 --- a/examples/view-transitions/public/favicon.ico +++ /dev/null diff --git a/examples/view-transitions/src/components/Footer.astro b/examples/view-transitions/src/components/Footer.astro deleted file mode 100644 index d9f29219b..000000000 --- a/examples/view-transitions/src/components/Footer.astro +++ /dev/null @@ -1,17 +0,0 @@ -<footer class="border border-t border-gray-800"> - <div class="container mx-auto text-sm px-4 py-6"> - Made with ❤️ by <a - href="https://www.twitter.com/charca" - target="_blank" - class="underline hover:text-gray-300">Maxi Ferreira</a - > — Powered by <a - href="https://astro.build" - target="_blank" - class="underline hover:text-gray-300">Astro</a - > and <a - href="https://www.themoviedb.org/documentation/api" - target="_blank" - class="underline hover:text-gray-300">TMDb API</a - >. - </div> -</footer> diff --git a/examples/view-transitions/src/components/MovieCard.astro b/examples/view-transitions/src/components/MovieCard.astro deleted file mode 100644 index c2b3aa4b1..000000000 --- a/examples/view-transitions/src/components/MovieCard.astro +++ /dev/null @@ -1,31 +0,0 @@ ---- -const { movie } = Astro.props; ---- - -<div class="mt-8"> - <a href={`/movies/${movie.id}`}> - <img - src={`https://image.tmdb.org/t/p/w500${movie.poster_path}`} - alt={`${movie.title} Poster`} - class="thumbnail hover:opacity-75 transition ease-in-out duration-150" - id={`movie-poster-${movie.id}`} - transition:name={`poster-${movie.id}`} - /> - </a> - <div class="mt-2"> - <a href={`/movies/${movie.id}`} class="text-lg mt-2 hover:text-gray-300">{movie.title}</a> - <div class="flex items-center text-gray-400 text-sm mt-1"> - <svg class="fill-current text-orange-500 w-4" viewBox="0 0 24 24" - ><g data-name="Layer 2" - ><path - d="M17.56 21a1 1 0 01-.46-.11L12 18.22l-5.1 2.67a1 1 0 01-1.45-1.06l1-5.63-4.12-4a1 1 0 01-.25-1 1 1 0 01.81-.68l5.7-.83 2.51-5.13a1 1 0 011.8 0l2.54 5.12 5.7.83a1 1 0 01.81.68 1 1 0 01-.25 1l-4.12 4 1 5.63a1 1 0 01-.4 1 1 1 0 01-.62.18z" - data-name="star"></path></g - ></svg - > - <span class="ml-1">{movie.vote_average}</span> - <span class="mx-2">|</span> - <span>{movie.release_date}</span> - </div> - <div class="text-gray-400 text-sm">{movie.genres}</div> - </div> -</div> diff --git a/examples/view-transitions/src/components/MovieDetails.astro b/examples/view-transitions/src/components/MovieDetails.astro deleted file mode 100644 index 32af40090..000000000 --- a/examples/view-transitions/src/components/MovieDetails.astro +++ /dev/null @@ -1,125 +0,0 @@ ---- -const { data } = Astro.props; - -const movie = { - ...data, - poster_path: data.poster_path - ? 'https://image.tmdb.org/t/p/w500/' + data.poster_path - : 'https://via.placeholder.com/500x750', - vote_average: (data.vote_average * 10).toFixed(2) + '%', - release_date: new Date(data.release_date).toLocaleDateString('en-us', { - year: 'numeric', - month: 'long', - day: 'numeric', - }), - genres: data.genres.map((g: any) => g.name).join(', '), - crew: data.credits.crew.slice(0, 3), - cast: data.credits.cast.slice(0, 5).map((c: any) => ({ - ...c, - profile_path: c.profile_path - ? 'https://image.tmdb.org/t/p/w300/' + c.profile_path - : 'https://via.placeholder.com/300x450', - })), - images: data.images.backdrops.slice(0, 9), -}; ---- - -<div class="movie-info border-b border-gray-800"> - <div class="container mx-auto px-4 py-16 flex flex-col md:flex-row"> - <div class="flex-none"> - <img - src={movie.poster_path} - alt={`${movie.title} Poster`} - class="movie-poster w-64 lg:w-96" - id="movie-poster" - transition:name={`poster-${movie.id}`} - /> - </div> - <div class="md:ml-24"> - <h2 class="text-4xl mt-4 md:mt-0 mb-2 font-semibold">{movie.title}</h2> - <div class="flex flex-wrap items-center text-gray-400 text-sm"> - <svg class="fill-current text-orange-500 w-4" viewBox="0 0 24 24" - ><g data-name="Layer 2" - ><path - d="M17.56 21a1 1 0 01-.46-.11L12 18.22l-5.1 2.67a1 1 0 01-1.45-1.06l1-5.63-4.12-4a1 1 0 01-.25-1 1 1 0 01.81-.68l5.7-.83 2.51-5.13a1 1 0 011.8 0l2.54 5.12 5.7.83a1 1 0 01.81.68 1 1 0 01-.25 1l-4.12 4 1 5.63a1 1 0 01-.4 1 1 1 0 01-.62.18z" - data-name="star"></path></g - ></svg - > - <span class="ml-1">{movie.vote_average}</span> - <span class="mx-2">|</span> - <span>{movie.release_date}</span> - <span class="mx-2">|</span> - <span>{movie.genres}</span> - </div> - - <p class="text-gray-300 mt-8"> - {movie.overview} - </p> - - <div class="mt-12"> - <h4 class="text-white font-semibold">Featured Crew</h4> - <div class="flex mt-4"> - { - movie.crew.map((crew: any) => ( - <div class="mr-8"> - <div>{crew.name}</div> - <div class="text-gray-400 text-sm">{crew.job}</div> - </div> - )) - } - </div> - </div> - </div> - </div> -</div> -<!-- end movie-info --> - -<div class="movie-cast border-b border-gray-800"> - <div class="container mx-auto px-4 py-16"> - <h2 class="text-4xl font-semibold">Cast</h2> - <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-5 gap-8"> - { - movie.cast.map((cast: any) => ( - <div class="mt-8"> - <span> - <img - id={`person-photo-${cast.id}`} - src={cast.profile_path} - alt={cast.name} - class="thumbnail hover:opacity-75 transition ease-in-out duration-150" - /> - </span> - <div class="mt-2"> - <span class="text-lg mt-2 hover:text-gray:300">{cast.name}</span> - <div class="text-sm text-gray-400">{cast.character}</div> - </div> - </div> - )) - } - </div> - </div> -</div> -<!-- end movie-cast --> - -<div class="movie-images"> - <div class="container mx-auto px-4 py-16"> - <h2 class="text-4xl font-semibold">Images</h2> - <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-8"> - { - movie.images.map((image: any) => ( - <div class="mt-8"> - <span> - <img - src={`https://image.tmdb.org/t/p/w500${image.file_path}`} - loading="lazy" - alt={movie.name} - class="hover:opacity-75 transition ease-in-out duration-150" - /> - </span> - </div> - )) - } - </div> - </div> -</div> -<!-- end movie-images --> diff --git a/examples/view-transitions/src/components/MovieList.astro b/examples/view-transitions/src/components/MovieList.astro deleted file mode 100644 index a6bf53453..000000000 --- a/examples/view-transitions/src/components/MovieList.astro +++ /dev/null @@ -1,15 +0,0 @@ ---- -import MovieCard from './MovieCard.astro'; -import movies from '../popular-movies.json'; -const popularMovies = movies.results; ---- - -<div class="container mx-auto px-4 pt-16 mb-16"> - <div class="popular-movies"> - <h2 class="uppercase tracking-wider text-orange-500 text-lg font-semibold">Popular Movies</h2> - <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-5 gap-8"> - {popularMovies.map((movie) => <MovieCard movie={movie} />)} - </div> - </div> - <!-- end pouplar-movies --> -</div> diff --git a/examples/view-transitions/src/components/Nav.astro b/examples/view-transitions/src/components/Nav.astro deleted file mode 100644 index 4d11be24e..000000000 --- a/examples/view-transitions/src/components/Nav.astro +++ /dev/null @@ -1,16 +0,0 @@ -<nav class="nav border-b border-gray-800 sticky top-0 z-30 bg-gray-900"> - <div class="container mx-auto flex flex-col md:flex-row items-center justify-between px-4 py-6"> - <ul class="flex flex-col md:flex-row items-center"> - <li> - <a href="/" class="flex items-center font-bold text-xl"> - <span>Movies</span> - - <span class="text-orange-500">List</span> - </a> - </li> - <li class="md:ml-16 mt-3 md:mt-0"> - <a href="/" class="hover:text-gray-300">Movies</a> - </li> - </ul> - </div> -</nav> diff --git a/examples/view-transitions/src/content/config.ts b/examples/view-transitions/src/content/config.ts deleted file mode 100644 index 40e22b781..000000000 --- a/examples/view-transitions/src/content/config.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { z, defineCollection } from 'astro:content'; - -const movies = defineCollection({ - type: 'data', - schema: z.object({ - data: z.any(), - }), -}); - -// Expose your defined collection to Astro -// with the `collections` export -export const collections = { movies }; diff --git a/examples/view-transitions/src/content/movies/1008042.json b/examples/view-transitions/src/content/movies/1008042.json deleted file mode 100644 index d8479344b..000000000 --- a/examples/view-transitions/src/content/movies/1008042.json +++ /dev/null @@ -1,4056 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/iIvQnZyzgx9TkbrOgcXx0p7aLiq.jpg", - "belongs_to_collection": { - "id": 1162328, - "name": "Talk to Me Collection", - "poster_path": "/oNG1XQpMTbAuItS10y7pTSURwyG.jpg", - "backdrop_path": "/brtSrbFFfYB9liimgRzBb0JHaaz.jpg" - }, - "budget": 4500000, - "genres": [ - { "id": 27, "name": "Horror" }, - { "id": 53, "name": "Thriller" } - ], - "homepage": "https://umbrellaent.com.au/movie/talk-to-me", - "id": 1008042, - "imdb_id": "tt10638522", - "original_language": "en", - "original_title": "Talk to Me", - "overview": "When a group of friends discover how to conjure spirits using an embalmed hand, they become hooked on the new thrill, until one of them goes too far and unleashes terrifying supernatural forces.", - "popularity": 2292.177, - "poster_path": "/kdPMUMJzyYAc4roD52qavX0nLIC.jpg", - "production_companies": [ - { - "id": 32301, - "logo_path": "/5VG9QRUCSDez359VNqcTmOLOH3C.png", - "name": "Causeway Films", - "origin_country": "AU" - }, - { - "id": 110175, - "logo_path": "/eOGU7DcaBNq1KemTPkQuVWMX8L2.png", - "name": "Metrol Technology", - "origin_country": "GB" - }, - { - "id": 7584, - "logo_path": "/eGkfvvyf4fJTvBUR1xt1669IPA3.png", - "name": "Screen Australia", - "origin_country": "AU" - }, - { - "id": 2806, - "logo_path": "/vxOhCbpsRBh10m6LZ3HyImTYpPY.png", - "name": "South Australian Film Corporation", - "origin_country": "AU" - }, - { - "id": 61922, - "logo_path": "/aGPysvtFfH8d8UjekpZD3GT9m7k.png", - "name": "Bankside Films", - "origin_country": "GB" - }, - { - "id": 5056, - "logo_path": "/583ITs4w9sK31FnJwKiRwapTpzb.png", - "name": "Head Gear Films", - "origin_country": "GB" - } - ], - "production_countries": [ - { "iso_3166_1": "AU", "name": "Australia" }, - { "iso_3166_1": "GB", "name": "United Kingdom" } - ], - "release_date": "2023-07-26", - "revenue": 68859794, - "runtime": 95, - "spoken_languages": [{ "english_name": "English", "iso_639_1": "en", "name": "English" }], - "status": "Released", - "tagline": "You call. They'll answer.", - "title": "Talk to Me", - "video": false, - "vote_average": 7.2, - "vote_count": 693, - "credits": { - "cast": [ - { - "adult": false, - "gender": 1, - "id": 3115932, - "known_for_department": "Acting", - "name": "Sophie Wilde", - "original_name": "Sophie Wilde", - "popularity": 18.793, - "profile_path": "/3ImqawPfIsu95THFeCYGQw2500H.jpg", - "cast_id": 1, - "character": "Mia", - "credit_id": "62ea87f76d9fe8005eeda022", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 2644232, - "known_for_department": "Acting", - "name": "Alexandra Jensen", - "original_name": "Alexandra Jensen", - "popularity": 134.253, - "profile_path": "/jzY7CkJt40N3eYV3bKsRZq4DrjU.jpg", - "cast_id": 4, - "character": "Jade", - "credit_id": "62ea882bf1b571005e2c746f", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 3047804, - "known_for_department": "Acting", - "name": "Joe Bird", - "original_name": "Joe Bird", - "popularity": 64.348, - "profile_path": "/nhkPLaVaDFVuI1oFRdJcgs95pyK.jpg", - "cast_id": 3, - "character": "Riley", - "credit_id": "62ea8816091e62005d2c11e6", - "order": 2 - }, - { - "adult": false, - "gender": 2, - "id": 1822223, - "known_for_department": "Acting", - "name": "Otis Dhanji", - "original_name": "Otis Dhanji", - "popularity": 23.437, - "profile_path": "/n0Ooc4r6rcGMqpnn9haSRX2lR2m.jpg", - "cast_id": 5, - "character": "Daniel", - "credit_id": "62ea88396d9fe80059760905", - "order": 3 - }, - { - "adult": false, - "gender": 1, - "id": 502, - "known_for_department": "Acting", - "name": "Miranda Otto", - "original_name": "Miranda Otto", - "popularity": 20.366, - "profile_path": "/szME1IBVTLgiKrO5D5wvOGnvUDW.jpg", - "cast_id": 2, - "character": "Sue", - "credit_id": "62ea88031e64890060651138", - "order": 4 - }, - { - "adult": false, - "gender": 3, - "id": 2659518, - "known_for_department": "Acting", - "name": "Zoe Terakes", - "original_name": "Zoe Terakes", - "popularity": 19.963, - "profile_path": "/d76CY7JMI2RuxFWwrrNHXRratJf.jpg", - "cast_id": 8, - "character": "Hayley", - "credit_id": "62ea888425cd850060e71c77", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 2467788, - "known_for_department": "Acting", - "name": "Chris Alosio", - "original_name": "Chris Alosio", - "popularity": 33.14, - "profile_path": "/abFg3zNpz6l8zhgt8ESlZvVX8Uh.jpg", - "cast_id": 9, - "character": "Joss", - "credit_id": "62ea8895f1b571005957cd48", - "order": 6 - }, - { - "adult": false, - "gender": 0, - "id": 213070, - "known_for_department": "Acting", - "name": "Marcus Johnson", - "original_name": "Marcus Johnson", - "popularity": 6.522, - "profile_path": "/sHUZnN8YjswLgftgDi1GzlWrcJJ.jpg", - "cast_id": 6, - "character": "Max", - "credit_id": "62ea88508566d2006276b404", - "order": 7 - }, - { - "adult": false, - "gender": 1, - "id": 3281952, - "known_for_department": "Acting", - "name": "Alexandria Steffensen", - "original_name": "Alexandria Steffensen", - "popularity": 3.266, - "profile_path": "/nB2m6B2JeyXRBTcNJQSbhCtyJ8a.jpg", - "cast_id": 7, - "character": "Rhea", - "credit_id": "62ea8873fc5f06006107e8fb", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 2131239, - "known_for_department": "Acting", - "name": "Ari McCarthy", - "original_name": "Ari McCarthy", - "popularity": 7.721, - "profile_path": "/uF9qARjYzSHVzO8VIdv0y6AJvhn.jpg", - "cast_id": 10, - "character": "Cole", - "credit_id": "62ea88af1e6489005dc0b939", - "order": 9 - }, - { - "adult": false, - "gender": 0, - "id": 3648542, - "known_for_department": "Acting", - "name": "Sunny Johnson", - "original_name": "Sunny Johnson", - "popularity": 1.384, - "profile_path": "/blL2Ox8DiPlU5x0lDrUEtOPHZa7.jpg", - "cast_id": 11, - "character": "Duckett", - "credit_id": "62ea88cd1bf266005da4c82b", - "order": 10 - }, - { - "adult": false, - "gender": 0, - "id": 3648543, - "known_for_department": "Acting", - "name": "James Oliver", - "original_name": "James Oliver", - "popularity": 0.6, - "profile_path": null, - "cast_id": 12, - "character": "James", - "credit_id": "62ea88df1bf26600602ee2ab", - "order": 11 - }, - { - "adult": false, - "gender": 2, - "id": 1734185, - "known_for_department": "Acting", - "name": "Cass Cumerford", - "original_name": "Cass Cumerford", - "popularity": 0.676, - "profile_path": "/booCg51LxJ4KFRluGZhRZRSA5j1.jpg", - "cast_id": 212, - "character": "Quain / Quain Spirit (voice)", - "credit_id": "64edc0755258ae012ca6bb49", - "order": 12 - }, - { - "adult": false, - "gender": 0, - "id": 3648546, - "known_for_department": "Acting", - "name": "Jett Gazley", - "original_name": "Jett Gazley", - "popularity": 1.4, - "profile_path": "/n8F5sTJyxXIooTrKa43Z0Cu3olE.jpg", - "cast_id": 14, - "character": "Alex Varolli", - "credit_id": "62ea892325cd85005802a15c", - "order": 13 - }, - { - "adult": false, - "gender": 0, - "id": 3648547, - "known_for_department": "Acting", - "name": "Kitt Erhart-Bruce", - "original_name": "Kitt Erhart-Bruce", - "popularity": 0.6, - "profile_path": null, - "cast_id": 15, - "character": "Peck", - "credit_id": "62ea8935091e62005ae4a99c", - "order": 14 - }, - { - "adult": false, - "gender": 0, - "id": 3648548, - "known_for_department": "Acting", - "name": "Hamish Phillips", - "original_name": "Hamish Phillips", - "popularity": 0.6, - "profile_path": null, - "cast_id": 16, - "character": "Tyson", - "credit_id": "62ea8952f1b571005957cd84", - "order": 15 - }, - { - "adult": false, - "gender": 0, - "id": 2786562, - "known_for_department": "Acting", - "name": "Kidaan Zelleke", - "original_name": "Kidaan Zelleke", - "popularity": 0.6, - "profile_path": null, - "cast_id": 17, - "character": "Aunty Lee", - "credit_id": "62ea8968f1b571005e2c74d6", - "order": 16 - }, - { - "adult": false, - "gender": 1, - "id": 3648550, - "known_for_department": "Acting", - "name": "Sarah Brokensha", - "original_name": "Sarah Brokensha", - "popularity": 0.6, - "profile_path": null, - "cast_id": 18, - "character": "Fiona", - "credit_id": "62ea897dfc5f060059c4b44c", - "order": 17 - }, - { - "adult": false, - "gender": 0, - "id": 3648551, - "known_for_department": "Acting", - "name": "Jayden Davison", - "original_name": "Jayden Davison", - "popularity": 0.6, - "profile_path": null, - "cast_id": 19, - "character": "Jayden", - "credit_id": "62ea898b1e6489005dc0b997", - "order": 18 - }, - { - "adult": false, - "gender": 0, - "id": 1229579, - "known_for_department": "Acting", - "name": "Jodie Dry", - "original_name": "Jodie Dry", - "popularity": 0.749, - "profile_path": null, - "cast_id": 20, - "character": "Mrs. Falk", - "credit_id": "62ea899caede5900617e6cdf", - "order": 19 - }, - { - "adult": false, - "gender": 0, - "id": 3648553, - "known_for_department": "Acting", - "name": "Frances Cassar", - "original_name": "Frances Cassar", - "popularity": 0.6, - "profile_path": null, - "cast_id": 24, - "character": "Olmen", - "credit_id": "62ea89e9f1b57100613566b3", - "order": 20 - }, - { - "adult": false, - "gender": 1, - "id": 152545, - "known_for_department": "Acting", - "name": "Kelly Butler", - "original_name": "Kelly Butler", - "popularity": 2.198, - "profile_path": null, - "cast_id": 152, - "character": "Olmen Spirit (voice)", - "credit_id": "64c5846041aac40fb547e9ad", - "order": 21 - }, - { - "adult": false, - "gender": 0, - "id": 4187104, - "known_for_department": "Acting", - "name": "Ava Stenta", - "original_name": "Ava Stenta", - "popularity": 0.6, - "profile_path": null, - "cast_id": 156, - "character": "Little Girl Audrey", - "credit_id": "64c5850eeec5b500e23bbe69", - "order": 22 - }, - { - "adult": false, - "gender": 2, - "id": 1530759, - "known_for_department": "Acting", - "name": "Harli Ames", - "original_name": "Harli Ames", - "popularity": 4.364, - "profile_path": "/gNT5ghKlvVQkjp82d3GMMyhRcBj.jpg", - "cast_id": 25, - "character": "The Sad Man", - "credit_id": "62ea8a038566d2006276b4b9", - "order": 23 - }, - { - "adult": false, - "gender": 1, - "id": 93114, - "known_for_department": "Acting", - "name": "Leeanna Walsman", - "original_name": "Leeanna Walsman", - "popularity": 3.961, - "profile_path": "/necrzRUdJCCYml8c90sEOXBsr0a.jpg", - "cast_id": 153, - "character": "Elizabeth Spirit (voice)", - "credit_id": "64c5847d63a695012040ae56", - "order": 24 - }, - { - "adult": false, - "gender": 0, - "id": 3648554, - "known_for_department": "Acting", - "name": "Kerry Reid", - "original_name": "Kerry Reid", - "popularity": 0.6, - "profile_path": null, - "cast_id": 26, - "character": "Hungry Woman", - "credit_id": "62ea8a1a091e62005d2c12c4", - "order": 25 - }, - { - "adult": false, - "gender": 0, - "id": 2649831, - "known_for_department": "Acting", - "name": "Robin Northover", - "original_name": "Robin Northover", - "popularity": 0.64, - "profile_path": null, - "cast_id": 27, - "character": "Eerie Man", - "credit_id": "62ea8a2cfc5f060059c4b492", - "order": 26 - }, - { - "adult": false, - "gender": 2, - "id": 12210, - "known_for_department": "Acting", - "name": "Jacek Koman", - "original_name": "Jacek Koman", - "popularity": 8.791, - "profile_path": "/fajWa6UPn9eLne6TjT8zs4VOd7c.jpg", - "cast_id": 157, - "character": "Burke Spirit (voice)", - "credit_id": "64c585219b6e47013958fb34", - "order": 27 - }, - { - "adult": false, - "gender": 0, - "id": 4187087, - "known_for_department": "Acting", - "name": "Helene Philippou", - "original_name": "Helene Philippou", - "popularity": 0.6, - "profile_path": null, - "cast_id": 140, - "character": "Possessed Girl on Phone", - "credit_id": "64c58297eec5b500ad020a4f", - "order": 28 - }, - { - "adult": false, - "gender": 0, - "id": 3879249, - "known_for_department": "Acting", - "name": "Jude Turner", - "original_name": "Jude Turner", - "popularity": 0.676, - "profile_path": "/8WiQxE3ti0lQfWFp5tyf4Clqupk.jpg", - "cast_id": 141, - "character": "Possessed Boy on Phone", - "credit_id": "64c582d363e6fb0138d98c08", - "order": 29 - }, - { - "adult": false, - "gender": 0, - "id": 4187089, - "known_for_department": "Acting", - "name": "Zac Scott", - "original_name": "Zac Scott", - "popularity": 0.6, - "profile_path": null, - "cast_id": 142, - "character": "Teen at First Possession Party", - "credit_id": "64c582f663aad2020d091b91", - "order": 30 - }, - { - "adult": false, - "gender": 1, - "id": 2095155, - "known_for_department": "Acting", - "name": "Jess Kuss", - "original_name": "Jess Kuss", - "popularity": 1.105, - "profile_path": "/9iDbOxSEwaGSrTFYYztDNibKMTD.jpg", - "cast_id": 143, - "character": "Teen at First Possession Party", - "credit_id": "64c5835063aad2020ec34428", - "order": 31 - }, - { - "adult": false, - "gender": 2, - "id": 2807388, - "known_for_department": "Acting", - "name": "David Roberts", - "original_name": "David Roberts", - "popularity": 1.38, - "profile_path": "/AdaroIcOqABtC1xcR9p0ENVHvB1.jpg", - "cast_id": 144, - "character": "Teen at First Possession Party", - "credit_id": "64c583a295ce2400e410dd10", - "order": 32 - }, - { - "adult": false, - "gender": 0, - "id": 4187093, - "known_for_department": "Acting", - "name": "Demi Van Kasteren", - "original_name": "Demi Van Kasteren", - "popularity": 0.6, - "profile_path": "/rnNoNwrTNvOKs71nePwKpwVAWA3.jpg", - "cast_id": 145, - "character": "Teen at First Possession Party", - "credit_id": "64c583b063e6fb00acdbecb0", - "order": 33 - }, - { - "adult": false, - "gender": 0, - "id": 4187095, - "known_for_department": "Acting", - "name": "Pia Gillings", - "original_name": "Pia Gillings", - "popularity": 0.6, - "profile_path": null, - "cast_id": 146, - "character": "Teen at First Possession Party", - "credit_id": "64c583bf63e6fb00acdbecbd", - "order": 34 - }, - { - "adult": false, - "gender": 0, - "id": 3648552, - "known_for_department": "Acting", - "name": "Oscar Wangel", - "original_name": "Oscar Wangel", - "popularity": 0.6, - "profile_path": null, - "cast_id": 21, - "character": "Teen at First Possession Party", - "credit_id": "62ea89b0aede590059ec4201", - "order": 35 - }, - { - "adult": false, - "gender": 0, - "id": 4187097, - "known_for_department": "Acting", - "name": "Courtlan Gordan", - "original_name": "Courtlan Gordan", - "popularity": 0.6, - "profile_path": null, - "cast_id": 147, - "character": "Teen at First Possession Party", - "credit_id": "64c583f595ce2401012efa70", - "order": 36 - }, - { - "adult": false, - "gender": 0, - "id": 4187098, - "known_for_department": "Acting", - "name": "Louisa Giameos", - "original_name": "Louisa Giameos", - "popularity": 0.6, - "profile_path": null, - "cast_id": 148, - "character": "Teen at First Possession Party", - "credit_id": "64c5840495ce24013b9b399b", - "order": 37 - }, - { - "adult": false, - "gender": 0, - "id": 3040858, - "known_for_department": "Acting", - "name": "Jem O'Callaghan", - "original_name": "Jem O'Callaghan", - "popularity": 0.6, - "profile_path": null, - "cast_id": 22, - "character": "Teen at First Possession Party", - "credit_id": "62ea89c1091e62006048ca03", - "order": 38 - }, - { - "adult": false, - "gender": 0, - "id": 2321660, - "known_for_department": "Acting", - "name": "Joe Romeo", - "original_name": "Joe Romeo", - "popularity": 0.62, - "profile_path": "/k6ZQzMjfygvVnDwXhUB3BZDqmqr.jpg", - "cast_id": 149, - "character": "Teen at First Possession Party", - "credit_id": "64c5841241aac40fb547e99f", - "order": 39 - }, - { - "adult": false, - "gender": 0, - "id": 4187099, - "known_for_department": "Acting", - "name": "Alex Noel McCarthy", - "original_name": "Alex Noel McCarthy", - "popularity": 0.6, - "profile_path": "/v19c3dgkHqm3hJ5t570uQJG0s18.jpg", - "cast_id": 150, - "character": "Teen at First Possession Party", - "credit_id": "64c5842963e6fb00c408eea8", - "order": 40 - }, - { - "adult": false, - "gender": 0, - "id": 4187100, - "known_for_department": "Acting", - "name": "Charlie Morkunas", - "original_name": "Charlie Morkunas", - "popularity": 0.6, - "profile_path": null, - "cast_id": 151, - "character": "Teen at First Possession Party", - "credit_id": "64c584339b6e4700ad2a59cd", - "order": 41 - }, - { - "adult": false, - "gender": 0, - "id": 4187102, - "known_for_department": "Acting", - "name": "Patricia Haycock", - "original_name": "Patricia Haycock", - "popularity": 0.6, - "profile_path": null, - "cast_id": 154, - "character": "Old Lady in Hospital", - "credit_id": "64c584c441aac40fb547e9d5", - "order": 42 - }, - { - "adult": false, - "gender": 0, - "id": 4187103, - "known_for_department": "Acting", - "name": "Murray Haycock", - "original_name": "Murray Haycock", - "popularity": 0.6, - "profile_path": null, - "cast_id": 155, - "character": "Old Man in Hospital", - "credit_id": "64c584d79b6e4700e2096c9f", - "order": 43 - }, - { - "adult": false, - "gender": 0, - "id": 3088180, - "known_for_department": "Acting", - "name": "Catherine Purling", - "original_name": "Catherine Purling", - "popularity": 0.6, - "profile_path": null, - "cast_id": 178, - "character": "Nurse", - "credit_id": "64dff040aaec7103f9979bf2", - "order": 44 - }, - { - "adult": false, - "gender": 0, - "id": 3648559, - "known_for_department": "Acting", - "name": "Nicola Thiele", - "original_name": "Nicola Thiele", - "popularity": 0.6, - "profile_path": null, - "cast_id": 29, - "character": "Predator Spirit", - "credit_id": "62ea8a62091e62005d2c12eb", - "order": 45 - }, - { - "adult": false, - "gender": 0, - "id": 3648557, - "known_for_department": "Acting", - "name": "David Simmons", - "original_name": "David Simmons", - "popularity": 0.6, - "profile_path": null, - "cast_id": 28, - "character": "Predator Spirit", - "credit_id": "62ea8a4557d378005d8c1f38", - "order": 46 - }, - { - "adult": false, - "gender": 0, - "id": 4222363, - "known_for_department": "Acting", - "name": "Joseph House Baker", - "original_name": "Joseph House Baker", - "popularity": 1.018, - "profile_path": null, - "cast_id": 179, - "character": "Predator Spirit", - "credit_id": "64dff136d100b614b15af427", - "order": 47 - }, - { - "adult": false, - "gender": 0, - "id": 3350573, - "known_for_department": "Acting", - "name": "Alice Scheid", - "original_name": "Alice Scheid", - "popularity": 1.414, - "profile_path": "/tgGy3fDHSEXbIY3OWsyFeXT76JD.jpg", - "cast_id": 180, - "character": "Predator Spirit", - "credit_id": "64dff14bb77d4b114348c1d6", - "order": 48 - }, - { - "adult": false, - "gender": 0, - "id": 4222364, - "known_for_department": "Acting", - "name": "Anita Kimber", - "original_name": "Anita Kimber", - "popularity": 0.6, - "profile_path": "/mtNAop0SgPcw9dlGePm3pu3Bgbz.jpg", - "cast_id": 181, - "character": "Predator Spirit", - "credit_id": "64dff164a3b5e60139017dd3", - "order": 49 - }, - { - "adult": false, - "gender": 0, - "id": 3067619, - "known_for_department": "Art", - "name": "Ben Bullock", - "original_name": "Ben Bullock", - "popularity": 0.6, - "profile_path": null, - "cast_id": 182, - "character": "Predator Spirit", - "credit_id": "64dff1a3d100b614b15af444", - "order": 50 - }, - { - "adult": false, - "gender": 0, - "id": 4222366, - "known_for_department": "Acting", - "name": "Brian Godfrey", - "original_name": "Brian Godfrey", - "popularity": 0.6, - "profile_path": null, - "cast_id": 183, - "character": "Predator Spirit", - "credit_id": "64dff1f3aaec7103f9979c4a", - "order": 51 - }, - { - "adult": false, - "gender": 0, - "id": 4222368, - "known_for_department": "Acting", - "name": "Cooper Duncan", - "original_name": "Cooper Duncan", - "popularity": 0.6, - "profile_path": null, - "cast_id": 184, - "character": "Predator Spirit", - "credit_id": "64dff209e19de9013a27f839", - "order": 52 - }, - { - "adult": false, - "gender": 2, - "id": 2749125, - "known_for_department": "Acting", - "name": "Daniel Pitt", - "original_name": "Daniel Pitt", - "popularity": 1.4, - "profile_path": "/hT3YbgvUdZO6zHexE8OAGWWufDk.jpg", - "cast_id": 185, - "character": "Predator Spirit", - "credit_id": "64dff227e19de900c68b41ab", - "order": 53 - }, - { - "adult": false, - "gender": 0, - "id": 4222369, - "known_for_department": "Acting", - "name": "Danielle Ruggiero-Prior", - "original_name": "Danielle Ruggiero-Prior", - "popularity": 0.6, - "profile_path": null, - "cast_id": 186, - "character": "Predator Spirit", - "credit_id": "64dff24d5ab81a00ad20c27a", - "order": 54 - }, - { - "adult": false, - "gender": 0, - "id": 1923071, - "known_for_department": "Acting", - "name": "Dylan Warren", - "original_name": "Dylan Warren", - "popularity": 0.6, - "profile_path": null, - "cast_id": 187, - "character": "Predator Spirit", - "credit_id": "64dff269d100b614b4cd9471", - "order": 55 - }, - { - "adult": false, - "gender": 0, - "id": 4222372, - "known_for_department": "Acting", - "name": "Emily Fogg", - "original_name": "Emily Fogg", - "popularity": 0.652, - "profile_path": null, - "cast_id": 188, - "character": "Predator Spirit", - "credit_id": "64dff28ea3b5e600e29d5ad5", - "order": 56 - }, - { - "adult": false, - "gender": 0, - "id": 4222375, - "known_for_department": "Acting", - "name": "Emily Gun", - "original_name": "Emily Gun", - "popularity": 0.619, - "profile_path": null, - "cast_id": 189, - "character": "Predator Spirit", - "credit_id": "64dff2d3aaec7103fa482c39", - "order": 57 - }, - { - "adult": false, - "gender": 0, - "id": 4222377, - "known_for_department": "Acting", - "name": "Jason Moore", - "original_name": "Jason Moore", - "popularity": 1.018, - "profile_path": "/y88DqmKa88Rqmn8lQ5H65tGx3Od.jpg", - "cast_id": 190, - "character": "Predator Spirit", - "credit_id": "64dff34f076ce800e312fa6a", - "order": 58 - }, - { - "adult": false, - "gender": 0, - "id": 4222378, - "known_for_department": "Acting", - "name": "Jessica Homewood", - "original_name": "Jessica Homewood", - "popularity": 1.397, - "profile_path": null, - "cast_id": 191, - "character": "Predator Spirit", - "credit_id": "64dff37b076ce80100f12f51", - "order": 59 - }, - { - "adult": false, - "gender": 0, - "id": 4222379, - "known_for_department": "Acting", - "name": "Kate Portus", - "original_name": "Kate Portus", - "popularity": 0.6, - "profile_path": null, - "cast_id": 192, - "character": "Predator Spirit", - "credit_id": "64dff392076ce800adce1b80", - "order": 60 - }, - { - "adult": false, - "gender": 0, - "id": 4222380, - "known_for_department": "Acting", - "name": "Lelum Rathnayake", - "original_name": "Lelum Rathnayake", - "popularity": 0.683, - "profile_path": null, - "cast_id": 193, - "character": "Predator Spirit", - "credit_id": "64dff403076ce800c641c7e0", - "order": 61 - }, - { - "adult": false, - "gender": 0, - "id": 4222382, - "known_for_department": "Acting", - "name": "Matt Goldwyn", - "original_name": "Matt Goldwyn", - "popularity": 0.6, - "profile_path": null, - "cast_id": 194, - "character": "Predator Spirit", - "credit_id": "64dff41ab77d4b114348c29d", - "order": 62 - }, - { - "adult": false, - "gender": 0, - "id": 4222385, - "known_for_department": "Acting", - "name": "Michael Gilmore", - "original_name": "Michael Gilmore", - "popularity": 0.6, - "profile_path": null, - "cast_id": 195, - "character": "Predator Spirit", - "credit_id": "64dff45a37109700c51e9143", - "order": 63 - }, - { - "adult": false, - "gender": 0, - "id": 4222386, - "known_for_department": "Acting", - "name": "Philip Maynard", - "original_name": "Philip Maynard", - "popularity": 0.6, - "profile_path": null, - "cast_id": 196, - "character": "Predator Spirit", - "credit_id": "64dff46cd100b614b0a5bf23", - "order": 64 - }, - { - "adult": false, - "gender": 0, - "id": 3547196, - "known_for_department": "Acting", - "name": "Sarah Baber", - "original_name": "Sarah Baber", - "popularity": 0.997, - "profile_path": "/9kaT7Ylo2TvcJTIgc3Dgs8EbiSj.jpg", - "cast_id": 197, - "character": "Predator Spirit", - "credit_id": "64dff491a3b5e600c5bd5676", - "order": 65 - }, - { - "adult": false, - "gender": 0, - "id": 4222387, - "known_for_department": "Acting", - "name": "Saravjit Singh", - "original_name": "Saravjit Singh", - "popularity": 0.6, - "profile_path": null, - "cast_id": 198, - "character": "Predator Spirit", - "credit_id": "64dff4ab076ce8013a294c58", - "order": 66 - }, - { - "adult": false, - "gender": 0, - "id": 4222388, - "known_for_department": "Acting", - "name": "Shadrack Kamau", - "original_name": "Shadrack Kamau", - "popularity": 0.6, - "profile_path": null, - "cast_id": 199, - "character": "Predator Spirit", - "credit_id": "64dff4c5076ce80100f12faa", - "order": 67 - }, - { - "adult": false, - "gender": 0, - "id": 4222389, - "known_for_department": "Acting", - "name": "Thomas Gardner", - "original_name": "Thomas Gardner", - "popularity": 0.675, - "profile_path": null, - "cast_id": 200, - "character": "Predator Spirit", - "credit_id": "64dff4d8076ce800adce1bd1", - "order": 68 - }, - { - "adult": false, - "gender": 0, - "id": 1487967, - "known_for_department": "Acting", - "name": "Mark Duncan", - "original_name": "Mark Duncan", - "popularity": 0.719, - "profile_path": null, - "cast_id": 201, - "character": "Husband in Car Crash", - "credit_id": "64dff4f4d100b614b5f83f1e", - "order": 69 - }, - { - "adult": false, - "gender": 0, - "id": 3044290, - "known_for_department": "Acting", - "name": "Ella Fenwick", - "original_name": "Ella Fenwick", - "popularity": 1.052, - "profile_path": "/i7BDnpTrvFSGw6A9foCrmS9D8t0.jpg", - "cast_id": 202, - "character": "Wife in Car Crash", - "credit_id": "64dff532e19de90100e87175", - "order": 70 - }, - { - "adult": false, - "gender": 0, - "id": 2442554, - "known_for_department": "Acting", - "name": "Michael Harpas", - "original_name": "Michael Harpas", - "popularity": 0.6, - "profile_path": "/udM6qzXcPAffYlzYBSzkW7ZAMg0.jpg", - "cast_id": 203, - "character": "Stranger in Greece", - "credit_id": "64dff557076ce80100f12fc5", - "order": 71 - }, - { - "adult": false, - "gender": 0, - "id": 4222395, - "known_for_department": "Acting", - "name": "Nikolas Gelios", - "original_name": "Nikolas Gelios", - "popularity": 0.6, - "profile_path": null, - "cast_id": 204, - "character": "Young Man in Greece", - "credit_id": "64dff57ae19de9013a27f8f3", - "order": 72 - }, - { - "adult": false, - "gender": 0, - "id": 4222396, - "known_for_department": "Acting", - "name": "Alex Philippou", - "original_name": "Alex Philippou", - "popularity": 0.618, - "profile_path": null, - "cast_id": 205, - "character": "Man in Greece", - "credit_id": "64dff59037109700ac44dc11", - "order": 73 - }, - { - "adult": false, - "gender": 0, - "id": 4222398, - "known_for_department": "Acting", - "name": "Con Lipapis", - "original_name": "Con Lipapis", - "popularity": 0.741, - "profile_path": null, - "cast_id": 206, - "character": "Man in Greece", - "credit_id": "64dff59e37109700ac44dc1e", - "order": 74 - }, - { - "adult": false, - "gender": 0, - "id": 4222399, - "known_for_department": "Acting", - "name": "Con Patelias", - "original_name": "Con Patelias", - "popularity": 0.6, - "profile_path": null, - "cast_id": 207, - "character": "Man in Greece", - "credit_id": "64dff5af076ce800c641c855", - "order": 75 - }, - { - "adult": false, - "gender": 0, - "id": 4222400, - "known_for_department": "Acting", - "name": "Louis Vavaroutsos", - "original_name": "Louis Vavaroutsos", - "popularity": 0.652, - "profile_path": null, - "cast_id": 208, - "character": "Man in Greece", - "credit_id": "64dff5bfb77d4b114348c306", - "order": 76 - }, - { - "adult": false, - "gender": 0, - "id": 4222402, - "known_for_department": "Acting", - "name": "Uncle Mars", - "original_name": "Uncle Mars", - "popularity": 0.732, - "profile_path": null, - "cast_id": 209, - "character": "Man in Greece", - "credit_id": "64dff5d0d100b614b0a5bf67", - "order": 77 - }, - { - "adult": false, - "gender": 0, - "id": 4222403, - "known_for_department": "Acting", - "name": "Nick Lipapis", - "original_name": "Nick Lipapis", - "popularity": 0.618, - "profile_path": null, - "cast_id": 210, - "character": "Man in Greece", - "credit_id": "64dff5e0d100b614b5f83f87", - "order": 78 - }, - { - "adult": false, - "gender": 1, - "id": 4221584, - "known_for_department": "Acting", - "name": "Ruby Piper", - "original_name": "Ruby Piper", - "popularity": 0.997, - "profile_path": null, - "cast_id": 211, - "character": "Pool Party Teen (uncredited)", - "credit_id": "64e1b2dfda9ef2011fe493f4", - "order": 79 - }, - { - "adult": false, - "gender": 2, - "id": 4052656, - "known_for_department": "Acting", - "name": "Leonardo Dantès", - "original_name": "Leonardo Dantès", - "popularity": 0.6, - "profile_path": null, - "cast_id": 133, - "character": "Pool Party Teen (uncredited)", - "credit_id": "645cb2d8fe077a5caae11b45", - "order": 80 - }, - { - "adult": false, - "gender": 2, - "id": 1513866, - "known_for_department": "Acting", - "name": "KSI", - "original_name": "KSI", - "popularity": 6.867, - "profile_path": "/Aft18wTH16nFzfOFxNnzvHgZFQX.jpg", - "cast_id": 158, - "character": "Self (archive footage)", - "credit_id": "64d22d15c3bffe0f01fa9a50", - "order": 81 - }, - { - "adult": false, - "gender": 2, - "id": 2464464, - "known_for_department": "Acting", - "name": "Harry Lewis", - "original_name": "Harry Lewis", - "popularity": 7.636, - "profile_path": "/t0lHKn12udMfSDpBFTlyDEDE56e.jpg", - "cast_id": 159, - "character": "Self (archive footage)", - "credit_id": "64d22d266d4c97012e8c8b1d", - "order": 82 - }, - { - "adult": false, - "gender": 2, - "id": 2464458, - "known_for_department": "Acting", - "name": "Simon Minter", - "original_name": "Simon Minter", - "popularity": 3.665, - "profile_path": "/5J5BJhB7V3baqplLjGaPs81SOD2.jpg", - "cast_id": 172, - "character": "Self (archive footage)", - "credit_id": "64d53fba021cee00ff104ffb", - "order": 83 - }, - { - "adult": false, - "gender": 2, - "id": 2464459, - "known_for_department": "Acting", - "name": "Josh Bradley", - "original_name": "Josh Bradley", - "popularity": 1.812, - "profile_path": "/hqs2FlrPUPPjks8JZAUTN2kvCq6.jpg", - "cast_id": 175, - "character": "Self (archive footage)", - "credit_id": "64d53fd74a4bf600c7145398", - "order": 84 - }, - { - "adult": false, - "gender": 2, - "id": 2464460, - "known_for_department": "Acting", - "name": "Vik Barn", - "original_name": "Vik Barn", - "popularity": 2.492, - "profile_path": "/jKe9EZNTIlLfy0EYQENcjte0zOn.jpg", - "cast_id": 173, - "character": "Self (archive footage)", - "credit_id": "64d53fc4db4ed6011c4b1ebe", - "order": 85 - }, - { - "adult": false, - "gender": 2, - "id": 2464462, - "known_for_department": "Acting", - "name": "Tobi Brown", - "original_name": "Tobi Brown", - "popularity": 5.505, - "profile_path": "/aqObrMLO7iVri9PjbClAbwGyKCe.jpg", - "cast_id": 174, - "character": "Self (archive footage)", - "credit_id": "64d53fcff14dad013a8a9266", - "order": 86 - }, - { - "adult": false, - "gender": 2, - "id": 2464461, - "known_for_department": "Acting", - "name": "Ethan Payne", - "original_name": "Ethan Payne", - "popularity": 3.336, - "profile_path": "/4gQ25MaDMkKzs1t3exVhbh7mD.jpg", - "cast_id": 176, - "character": "Self (archive footage)", - "credit_id": "64d53fe74a4bf60101e7a5bb", - "order": 87 - }, - { - "adult": false, - "gender": 0, - "id": 4271227, - "known_for_department": "Acting", - "name": "Cookie", - "original_name": "Cookie", - "popularity": 0.6, - "profile_path": null, - "cast_id": 213, - "character": "Self", - "credit_id": "6502f47dd7dcd2011c61a344", - "order": 88 - } - ], - "crew": [ - { - "adult": false, - "gender": 1, - "id": 502, - "known_for_department": "Acting", - "name": "Miranda Otto", - "original_name": "Miranda Otto", - "popularity": 20.366, - "profile_path": "/szME1IBVTLgiKrO5D5wvOGnvUDW.jpg", - "credit_id": "64d34b29db4ed600ad2392ed", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 37281, - "known_for_department": "Production", - "name": "Nikki Barrett", - "original_name": "Nikki Barrett", - "popularity": 1.132, - "profile_path": null, - "credit_id": "62ea8ca06d9fe80059760a7a", - "department": "Production", - "job": "Casting Director" - }, - { - "adult": false, - "gender": 0, - "id": 75508, - "known_for_department": "Acting", - "name": "Paul Lightfoot", - "original_name": "Paul Lightfoot", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea93d2af432400599f61b1", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 80817, - "known_for_department": "Sound", - "name": "Greg Crawford", - "original_name": "Greg Crawford", - "popularity": 0.652, - "profile_path": null, - "credit_id": "6434bf9c06f98400b322ad0a", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 237172, - "known_for_department": "Acting", - "name": "Mike Duncan", - "original_name": "Mike Duncan", - "popularity": 0.6, - "profile_path": "/lROtmh0DZ9xr6w0k8lmRKGssXta.jpg", - "credit_id": "62ea938f57d3780060aaaedc", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 951484, - "known_for_department": "Production", - "name": "Phil Hunt", - "original_name": "Phil Hunt", - "popularity": 5.302, - "profile_path": "/f5CL2pPFzcte7a0lBE2BzIZ5YJq.jpg", - "credit_id": "62ea8ba2f1b571005957ce3d", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 986415, - "known_for_department": "Production", - "name": "Compton Ross", - "original_name": "Compton Ross", - "popularity": 2.17, - "profile_path": "/v0EW6qBxMfQcT1nrytBAFj2w6eE.jpg", - "credit_id": "62ea8c1c1e6489005882b99d", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1116331, - "known_for_department": "Visual Effects", - "name": "Marty Pepper", - "original_name": "Marty Pepper", - "popularity": 0.646, - "profile_path": null, - "credit_id": "62ea931daf4324005c1a289c", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1116331, - "known_for_department": "Visual Effects", - "name": "Marty Pepper", - "original_name": "Marty Pepper", - "popularity": 0.646, - "profile_path": null, - "credit_id": "646b9b9dc3514c2b0741aa75", - "department": "Editing", - "job": "Colorist" - }, - { - "adult": false, - "gender": 0, - "id": 1311622, - "known_for_department": "Production", - "name": "Jeff Harrison", - "original_name": "Jeff Harrison", - "popularity": 1.09, - "profile_path": null, - "credit_id": "64d34ba303726400c572d880", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1323512, - "known_for_department": "Sound", - "name": "Cornel Wilczek", - "original_name": "Cornel Wilczek", - "popularity": 1.495, - "profile_path": null, - "credit_id": "646b9cd554a09800e4103a6d", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 0, - "id": 1364805, - "known_for_department": "Production", - "name": "Kristina Ceyton", - "original_name": "Kristina Ceyton", - "popularity": 1.4, - "profile_path": null, - "credit_id": "62ea8b78091e62006048ca95", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1365544, - "known_for_department": "Lighting", - "name": "Richard Rees-Jones", - "original_name": "Richard Rees-Jones", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6434c0a2cca7de00e06effae", - "department": "Lighting", - "job": "Gaffer" - }, - { - "adult": false, - "gender": 0, - "id": 1402909, - "known_for_department": "Sound", - "name": "Emma Bortignon", - "original_name": "Emma Bortignon", - "popularity": 0.84, - "profile_path": null, - "credit_id": "6434bf8ea6ddcb00f403950c", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1402909, - "known_for_department": "Sound", - "name": "Emma Bortignon", - "original_name": "Emma Bortignon", - "popularity": 0.84, - "profile_path": null, - "credit_id": "6434bf8611c06600d60d115b", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1410544, - "known_for_department": "Art", - "name": "Jennifer Drake", - "original_name": "Jennifer Drake", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8d178566d2005a482b1c", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 0, - "id": 1410558, - "known_for_department": "Costume & Make-Up", - "name": "Olivia Iacobelli", - "original_name": "Olivia Iacobelli", - "popularity": 0.648, - "profile_path": null, - "credit_id": "63cf5b050d2f53022e45a89c", - "department": "Costume & Make-Up", - "job": "Costume Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1452257, - "known_for_department": "Costume & Make-Up", - "name": "Paul Katte", - "original_name": "Paul Katte", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8e01aede590059ec4365", - "department": "Crew", - "job": "Makeup Effects" - }, - { - "adult": false, - "gender": 0, - "id": 1452258, - "known_for_department": "Costume & Make-Up", - "name": "Nick Nicolaou", - "original_name": "Nick Nicolaou", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8e236d9fe8005eeda25a", - "department": "Crew", - "job": "Makeup Effects" - }, - { - "adult": false, - "gender": 0, - "id": 1453895, - "known_for_department": "Production", - "name": "Christopher Seeto", - "original_name": "Christopher Seeto", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d34c05db4ed600ffb629b5", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1487967, - "known_for_department": "Acting", - "name": "Mark Duncan", - "original_name": "Mark Duncan", - "popularity": 0.719, - "profile_path": null, - "credit_id": "62ea935e091e62005d2c1688", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 1490393, - "known_for_department": "Sound", - "name": "Andrew Kotatko", - "original_name": "Andrew Kotatko", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea9620fc5f06006107ed70", - "department": "Sound", - "job": "Music Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1517967, - "known_for_department": "Art", - "name": "Peter 'Babylon' Owens", - "original_name": "Peter 'Babylon' Owens", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea92eff1b5710061356989", - "department": "Crew", - "job": "Special Effects" - }, - { - "adult": false, - "gender": 0, - "id": 1573001, - "known_for_department": "Production", - "name": "Daniel Negret", - "original_name": "Daniel Negret", - "popularity": 0.756, - "profile_path": null, - "credit_id": "64751e2e96386400a8e64429", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1672488, - "known_for_department": "Acting", - "name": "Daley Pearson", - "original_name": "Daley Pearson", - "popularity": 2.379, - "profile_path": "/zo1dWEybBsXHIh7ps9u9K8mkJ6z.jpg", - "credit_id": "6434bf6506f98400b322ace3", - "department": "Writing", - "job": "Idea" - }, - { - "adult": false, - "gender": 0, - "id": 1689955, - "known_for_department": "Directing", - "name": "Greg Cobain", - "original_name": "Greg Cobain", - "popularity": 0.618, - "profile_path": null, - "credit_id": "62ea8f89aede590059ec4417", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 1756283, - "known_for_department": "Production", - "name": "Stephen Kelliher", - "original_name": "Stephen Kelliher", - "popularity": 1.026, - "profile_path": null, - "credit_id": "64d34bb5db4ed600ad239335", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1839053, - "known_for_department": "Sound", - "name": "Lachlan Harris", - "original_name": "Lachlan Harris", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6434bfb306f984009222ac10", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1861509, - "known_for_department": "Crew", - "name": "Jesse Rowles", - "original_name": "Jesse Rowles", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea9462aede59005e14e3df", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1923073, - "known_for_department": "Art", - "name": "Emma Hough Hobbs", - "original_name": "Emma Hough Hobbs", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea90f21bf26600602ee585", - "department": "Art", - "job": "Props" - }, - { - "adult": false, - "gender": 0, - "id": 1935682, - "known_for_department": "Costume & Make-Up", - "name": "Anna Cahill", - "original_name": "Anna Cahill", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8d30f1b571005957cee4", - "department": "Costume & Make-Up", - "job": "Costume Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1936739, - "known_for_department": "Crew", - "name": "Josh Head", - "original_name": "Josh Head", - "popularity": 0.728, - "profile_path": null, - "credit_id": "62ea92bf1e64890060651517", - "department": "Crew", - "job": "Animatronics Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1936739, - "known_for_department": "Crew", - "name": "Josh Head", - "original_name": "Josh Head", - "popularity": 0.728, - "profile_path": null, - "credit_id": "62ea8deb57d378005d8c2076", - "department": "Costume & Make-Up", - "job": "Prosthetics" - }, - { - "adult": false, - "gender": 0, - "id": 1961726, - "known_for_department": "Crew", - "name": "Michael Wolff", - "original_name": "Michael Wolff", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea923325cd85005d00673c", - "department": "Art", - "job": "Art Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1962916, - "known_for_department": "Art", - "name": "Jonathon Hyde-Neary", - "original_name": "Jonathon Hyde-Neary", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea91016d9fe8006136220f", - "department": "Costume & Make-Up", - "job": "Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 1972016, - "known_for_department": "Production", - "name": "Samantha Jennings", - "original_name": "Samantha Jennings", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d34b4cdd926a01e73247f5", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1980633, - "known_for_department": "Production", - "name": "Carly Maple", - "original_name": "Carly Maple", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8f521e6489005882bb2f", - "department": "Production", - "job": "Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 1980633, - "known_for_department": "Production", - "name": "Carly Maple", - "original_name": "Carly Maple", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8bc91e648900606512d9", - "department": "Production", - "job": "Line Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1980643, - "known_for_department": "Sound", - "name": "Nick Steele", - "original_name": "Nick Steele", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea928f8566d2005a482d44", - "department": "Sound", - "job": "Sound Recordist" - }, - { - "adult": false, - "gender": 0, - "id": 1987106, - "known_for_department": "Art", - "name": "Bethany Ryan", - "original_name": "Bethany Ryan", - "popularity": 0.656, - "profile_path": null, - "credit_id": "62ea8cdaf1b571005957ceb2", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 0, - "id": 1988765, - "known_for_department": "Costume & Make-Up", - "name": "Marie Princi", - "original_name": "Marie Princi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8e8baede5900617e6ec5", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 2015673, - "known_for_department": "Crew", - "name": "Philip Fraschetti", - "original_name": "Philip Fraschetti", - "popularity": 1.02, - "profile_path": null, - "credit_id": "646b9b3354a09800feac40f1", - "department": "Crew", - "job": "Compositor" - }, - { - "adult": false, - "gender": 2, - "id": 2046119, - "known_for_department": "Camera", - "name": "Aaron McLisky", - "original_name": "Aaron McLisky", - "popularity": 0.6, - "profile_path": "/hVa2CeNN01Oksm4cYc6Q26oZT6S.jpg", - "credit_id": "6434c07f11c06600f5065297", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 2, - "id": 2070452, - "known_for_department": "Directing", - "name": "Michael Philippou", - "original_name": "Michael Philippou", - "popularity": 2.682, - "profile_path": "/mRoll1HB1fdsSE8lquSgFzX3NqG.jpg", - "credit_id": "62ea8b348566d2005a482a7f", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 2070452, - "known_for_department": "Directing", - "name": "Michael Philippou", - "original_name": "Michael Philippou", - "popularity": 2.682, - "profile_path": "/mRoll1HB1fdsSE8lquSgFzX3NqG.jpg", - "credit_id": "64d34bdbdb4ed600ffb62995", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 2070453, - "known_for_department": "Directing", - "name": "Danny Philippou", - "original_name": "Danny Philippou", - "popularity": 6.053, - "profile_path": "/hQcCIov6s4qWqHyCnbrKEo3yq79.jpg", - "credit_id": "62ea8b1257d3780060aaab51", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 2070453, - "known_for_department": "Directing", - "name": "Danny Philippou", - "original_name": "Danny Philippou", - "popularity": 6.053, - "profile_path": "/hQcCIov6s4qWqHyCnbrKEo3yq79.jpg", - "credit_id": "64d34bd0bf31f201ccbc9199", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 2070453, - "known_for_department": "Directing", - "name": "Danny Philippou", - "original_name": "Danny Philippou", - "popularity": 6.053, - "profile_path": "/hQcCIov6s4qWqHyCnbrKEo3yq79.jpg", - "credit_id": "62ea8b46fc5f06006107ea0a", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 0, - "id": 2103375, - "known_for_department": "Directing", - "name": "Luke Wissell", - "original_name": "Luke Wissell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea96368566d2005fb06041", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2103389, - "known_for_department": "Costume & Make-Up", - "name": "Rebecca Buratto", - "original_name": "Rebecca Buratto", - "popularity": 0.997, - "profile_path": null, - "credit_id": "62ea8d9225cd85005802a2cc", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 2148997, - "known_for_department": "Sound", - "name": "Oliver McLoughlin", - "original_name": "Oliver McLoughlin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea9279af432400599f6154", - "department": "Sound", - "job": "Boom Operator" - }, - { - "adult": false, - "gender": 0, - "id": 2160086, - "known_for_department": "Costume & Make-Up", - "name": "Helen Tuck", - "original_name": "Helen Tuck", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8f3af1b571005957cf79", - "department": "Crew", - "job": "Makeup Effects" - }, - { - "adult": false, - "gender": 0, - "id": 2272448, - "known_for_department": "Crew", - "name": "Cory Beeston", - "original_name": "Cory Beeston", - "popularity": 0.861, - "profile_path": "/vkLSL43UOqgkm9V2qFCdVF2IOc1.jpg", - "credit_id": "62ea933cf1b571005e2c78b0", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 2437333, - "known_for_department": "Editing", - "name": "Geoff Lamb", - "original_name": "Geoff Lamb", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8c6a1bf266005da4c99c", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 0, - "id": 2607041, - "known_for_department": "Production", - "name": "Emma Marshall", - "original_name": "Emma Marshall", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8f696d9fe80061362181", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 2607051, - "known_for_department": "Camera", - "name": "John Smith", - "original_name": "John Smith", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6434c0b5ec8a430219261f24", - "department": "Camera", - "job": "Key Grip" - }, - { - "adult": false, - "gender": 0, - "id": 2699096, - "known_for_department": "Production", - "name": "Kelly Graham", - "original_name": "Kelly Graham", - "popularity": 0.98, - "profile_path": null, - "credit_id": "62ea8cbb1e6489005dc0bad6", - "department": "Production", - "job": "Casting Director" - }, - { - "adult": false, - "gender": 0, - "id": 2701262, - "known_for_department": "Camera", - "name": "Matthew Thorne", - "original_name": "Matthew Thorne", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6434c0d8a6ddcb0113a83a02", - "department": "Camera", - "job": "Still Photographer" - }, - { - "adult": false, - "gender": 0, - "id": 2720752, - "known_for_department": "Directing", - "name": "James Dubay", - "original_name": "James Dubay", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8fa5aede59005e14e24c", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 2724906, - "known_for_department": "Costume & Make-Up", - "name": "Cassie O'Brien Pollard", - "original_name": "Cassie O'Brien Pollard", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8e31fc5f060059c4b607", - "department": "Costume & Make-Up", - "job": "Prosthetic Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2737399, - "known_for_department": "Production", - "name": "Ari Harrison", - "original_name": "Ari Harrison", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d34b98bf31f201ccbc9176", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2737703, - "known_for_department": "Art", - "name": "Gareth Wilkes", - "original_name": "Gareth Wilkes", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8cfd1e64890060651347", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 1, - "id": 2756240, - "known_for_department": "Crew", - "name": "Daisy Fryer", - "original_name": "Daisy Fryer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea93b61bf266005da4cc2e", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 2788722, - "known_for_department": "Camera", - "name": "Joey McQuade", - "original_name": "Joey McQuade", - "popularity": 1.057, - "profile_path": null, - "credit_id": "6434c097cca7de00bd20de7e", - "department": "Crew", - "job": "Drone Operator" - }, - { - "adult": false, - "gender": 2, - "id": 2898720, - "known_for_department": "Visual Effects", - "name": "Dylan Browne", - "original_name": "Dylan Browne", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646b9b3dd18572016192c941", - "department": "Visual Effects", - "job": "VFX Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2925580, - "known_for_department": "Art", - "name": "Stephen Roedel", - "original_name": "Stephen Roedel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea91af1e6489005882bc57", - "department": "Art", - "job": "Set Painter" - }, - { - "adult": false, - "gender": 0, - "id": 2925585, - "known_for_department": "Costume & Make-Up", - "name": "Bec Triosi", - "original_name": "Bec Triosi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8f238566d2005a482bde", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 3044290, - "known_for_department": "Acting", - "name": "Ella Fenwick", - "original_name": "Ella Fenwick", - "popularity": 1.052, - "profile_path": "/i7BDnpTrvFSGw6A9foCrmS9D8t0.jpg", - "credit_id": "62ea93a21bf26600602ee688", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3048683, - "known_for_department": "Camera", - "name": "Bec Taylor", - "original_name": "Bec Taylor", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6434c0c8a6ddcb00f403958d", - "department": "Camera", - "job": "Second Assistant \"B\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3246962, - "known_for_department": "Production", - "name": "Dale Roberts", - "original_name": "Dale Roberts", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d34bf0b6c2641158c54480", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3318395, - "known_for_department": "Production", - "name": "Sophie Green", - "original_name": "Sophie Green", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d34b88d100b600ad9f0c37", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3422936, - "known_for_department": "Costume & Make-Up", - "name": "Adele Shearwin", - "original_name": "Adele Shearwin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8ef3f1b571006135685a", - "department": "Costume & Make-Up", - "job": "Makeup & Hair Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3522958, - "known_for_department": "Camera", - "name": "Sid Tinney", - "original_name": "Sid Tinney", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6434c0e7cca7de0077ae01f1", - "department": "Camera", - "job": "Second Assistant \"A\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3529081, - "known_for_department": "Crew", - "name": "Alek Skar", - "original_name": "Alek Skar", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea946e6d9fe800613622f9", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 3648607, - "known_for_department": "Costume & Make-Up", - "name": "Georgia Edgar", - "original_name": "Georgia Edgar", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8dc525cd85005d006581", - "department": "Costume & Make-Up", - "job": "Makeup & Hair Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3648612, - "known_for_department": "Costume & Make-Up", - "name": "Megan O'Mahoney", - "original_name": "Megan O'Mahoney", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8e4d091e62006048cb80", - "department": "Costume & Make-Up", - "job": "Makeup & Hair Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3648613, - "known_for_department": "Costume & Make-Up", - "name": "Kristina Persichini", - "original_name": "Kristina Persichini", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8e6725cd850060e71e8e", - "department": "Costume & Make-Up", - "job": "Makeup & Hair Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3648614, - "known_for_department": "Costume & Make-Up", - "name": "Matthew Ping", - "original_name": "Matthew Ping", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8e741e6489005dc0bb5c", - "department": "Costume & Make-Up", - "job": "Makeup & Hair Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3648616, - "known_for_department": "Costume & Make-Up", - "name": "Erin Scott", - "original_name": "Erin Scott", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8eb5fc5f06005e709bd6", - "department": "Costume & Make-Up", - "job": "Makeup & Hair Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3648618, - "known_for_department": "Costume & Make-Up", - "name": "Alexandra Swistro", - "original_name": "Alexandra Swistro", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8f136d9fe80061362166", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 3648626, - "known_for_department": "Directing", - "name": "Kate Larmer", - "original_name": "Kate Larmer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8fbe1bf266005da4cada", - "department": "Directing", - "job": "Third Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 3648628, - "known_for_department": "Directing", - "name": "Jack Lukac", - "original_name": "Jack Lukac", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8fe01bf26600602ee519", - "department": "Directing", - "job": "Third Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 3648633, - "known_for_department": "Art", - "name": "Ben Allen", - "original_name": "Ben Allen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea90218566d2005a482c52", - "department": "Art", - "job": "Art Department Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3648634, - "known_for_department": "Crew", - "name": "Gary Baxter", - "original_name": "Gary Baxter", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea903e091e62005d2c152b", - "department": "Crew", - "job": "Vehicles Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3648637, - "known_for_department": "Costume & Make-Up", - "name": "Ben Conroy", - "original_name": "Ben Conroy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea9065fc5f060059c4b6f4", - "department": "Costume & Make-Up", - "job": "Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 3648639, - "known_for_department": "Art", - "name": "Ben Crabtree", - "original_name": "Ben Crabtree", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea907c25cd85005802a3b1", - "department": "Art", - "job": "Props" - }, - { - "adult": false, - "gender": 0, - "id": 3648643, - "known_for_department": "Art", - "name": "Ashleigh D'Antonio", - "original_name": "Ashleigh D'Antonio", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea90b3fc5f06005e709c91", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 3648644, - "known_for_department": "Art", - "name": "Troy Dignon", - "original_name": "Troy Dignon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea90c657d3780058457c6b", - "department": "Art", - "job": "Property Master" - }, - { - "adult": false, - "gender": 0, - "id": 3648648, - "known_for_department": "Crew", - "name": "Jason Lapins", - "original_name": "Jason Lapins", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea91151e6489005882bc13", - "department": "Crew", - "job": "Animal Wrangler" - }, - { - "adult": false, - "gender": 0, - "id": 3648650, - "known_for_department": "Crew", - "name": "Karen Macey-Mort", - "original_name": "Karen Macey-Mort", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea91256d9fe8006136221d", - "department": "Crew", - "job": "Animal Wrangler" - }, - { - "adult": false, - "gender": 0, - "id": 3648653, - "known_for_department": "Art", - "name": "Stewart Marsh", - "original_name": "Stewart Marsh", - "popularity": 0.611, - "profile_path": null, - "credit_id": "62ea914125cd85005802a3e8", - "department": "Art", - "job": "Graphic Designer" - }, - { - "adult": false, - "gender": 0, - "id": 3648657, - "known_for_department": "Art", - "name": "Ella Neumann", - "original_name": "Ella Neumann", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea9168af4324005c1a280b", - "department": "Art", - "job": "Art Department Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3648662, - "known_for_department": "Art", - "name": "Laura Ockenden", - "original_name": "Laura Ockenden", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea919a6d9fe8005eeda3b7", - "department": "Art", - "job": "Art Department Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3648663, - "known_for_department": "Crew", - "name": "Greg Sweeney", - "original_name": "Greg Sweeney", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea91cbfc5f06005e709ce7", - "department": "Crew", - "job": "Prop Maker" - }, - { - "adult": false, - "gender": 0, - "id": 3648664, - "known_for_department": "Art", - "name": "Shane Towns", - "original_name": "Shane Towns", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea91da1bf266005da4cb97", - "department": "Art", - "job": "Set Painter" - }, - { - "adult": false, - "gender": 0, - "id": 3648665, - "known_for_department": "Art", - "name": "Sonja Van Bavel", - "original_name": "Sonja Van Bavel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea91f68566d2005fb05f3b", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 0, - "id": 3648667, - "known_for_department": "Art", - "name": "Fraser Whitehead", - "original_name": "Fraser Whitehead", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea921a25cd850060e71fc4", - "department": "Art", - "job": "Props" - }, - { - "adult": false, - "gender": 0, - "id": 3648693, - "known_for_department": "Crew", - "name": "Tess Malpas", - "original_name": "Tess Malpas", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea93e2fc5f060059c4b841", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 3648693, - "known_for_department": "Crew", - "name": "Tess Malpas", - "original_name": "Tess Malpas", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea93f7f1b57100613569c2", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 3648697, - "known_for_department": "Crew", - "name": "Craig Morgan", - "original_name": "Craig Morgan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea944a1bf26600602ee6dd", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 3648698, - "known_for_department": "Camera", - "name": "Jonathan Baker", - "original_name": "Jonathan Baker", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea95971bf266005a6214a5", - "department": "Camera", - "job": "Camera Operator" - }, - { - "adult": false, - "gender": 0, - "id": 3648699, - "known_for_department": "Camera", - "name": "Sian Bates", - "original_name": "Sian Bates", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea95c31bf266005a6214b9", - "department": "Camera", - "job": "First Assistant \"B\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3648700, - "known_for_department": "Lighting", - "name": "Tom Clark", - "original_name": "Tom Clark", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea95e0af4324005c1a2956", - "department": "Lighting", - "job": "Best Boy Electric" - }, - { - "adult": false, - "gender": 2, - "id": 3764010, - "known_for_department": "Writing", - "name": "Bill Hinzman", - "original_name": "Bill Hinzman", - "popularity": 1.4, - "profile_path": null, - "credit_id": "635e7d68e18e3f0090930c20", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 0, - "id": 3970973, - "known_for_department": "Visual Effects", - "name": "Sharna Hackett", - "original_name": "Sharna Hackett", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6434bff4ec8a4301f63ade47", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 4075180, - "known_for_department": "Editing", - "name": "Joshua Atterton-Evans", - "original_name": "Joshua Atterton-Evans", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646b9b93d185720101996a74", - "department": "Editing", - "job": "Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 4205384, - "known_for_department": "Production", - "name": "John Dummett", - "original_name": "John Dummett", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d34b6103726400e2be9baf", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 4205385, - "known_for_department": "Production", - "name": "Noah Dummett", - "original_name": "Noah Dummett", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d34b79b6c2641158c5443c", - "department": "Production", - "job": "Executive Producer" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Preview", - "key": "jlIDtfOzrqQ", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-09-12T21:00:29.000Z", - "id": "6500df851bf26600e25e23c7" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "'Who's First?' Clip", - "key": "x_TSgCjSoOQ", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-07-31T10:43:26.000Z", - "id": "64c8d73489f7490126accc4e" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "‘Viral’ TV Spot", - "key": "mAbWxKLBkbY", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-24T10:48:36.000Z", - "id": "64c8d792d5191f011c65a11d" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Behind the Scenes", - "key": "msZabC0rsPM", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-19T23:00:08.000Z", - "id": "64c971f3dd83fa00e2a0b45a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Promo", - "key": "zeCL4bt7K6w", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-03T15:35:48.000Z", - "id": "64d41623dd926a01ea9d5a6e" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official US Trailer 2", - "key": "PGo4wfCejsk", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-06-06T13:00:18.000Z", - "id": "647f41f517497300fb3ca23c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official US Trailer", - "key": "aLAKJu9aJys", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-04-11T13:00:00.000Z", - "id": "643559e7e6357100f27a0662" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Michael & Danny Philippou on “Talk to Me\"", - "key": "VIUHY4YeAiE", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2022-12-09T21:13:13.000Z", - "id": "63c246a3df857c008927f568" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/iIvQnZyzgx9TkbrOgcXx0p7aLiq.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1348, - "iso_639_1": null, - "file_path": "/lDCIQ1Qe7cRnhZ4ybQVVEbadMZ.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2397 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/foh54FH3gOybnl2K7uytz21HXcv.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/55Rb9qt3yzyF4KQpC1c3T3Fbcao.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/rTJ8LLzT9NPRJA2dnQs0241bMRn.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 1688, - "iso_639_1": null, - "file_path": "/l19Gqm7tK4a7jQCLMg5JA8JIHKP.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3000 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/9u7kOQB3wBkeWkkdrnDGb4of7gz.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/A6cQPjSA0JKkTbGeEWEUgZWmK3Y.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/zOsLfqzFxXGaoQRRsSXAZeKELz1.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/rYRSlgvWFrLOkuyb3SUg2nDc3u5.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/ysVGUStdDk41se0UOo5ChyHRsA0.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/oYHXpmL3LCrtwiJMZbNVrA6haXk.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/kF1KkTgbkqUQ3Gi1nJV7GucYbN2.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/bTzq40wrtfbmEk7VmEXHAZcd52A.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/3tzPSJiCPqacAgRsMkMPof2ZinL.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/t56tUeIMm0CdnGJJeOikGFS5Ltu.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1920 - }, - { - "aspect_ratio": 1.777, - "height": 1959, - "iso_639_1": null, - "file_path": "/vcxquXWJ6hsjf8v9tNTRMkiPwd9.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3482 - }, - { - "aspect_ratio": 1.777, - "height": 1959, - "iso_639_1": null, - "file_path": "/dVdjbRLvL4qan6APcpnl5BIXJGU.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3482 - }, - { - "aspect_ratio": 1.779, - "height": 1439, - "iso_639_1": null, - "file_path": "/t0E4ZVFYC3YnKen9LlcQ6g89ThI.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2560 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/iDVzS1AkkS0vH9A8hVwPPmqKxBU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1372, - "iso_639_1": null, - "file_path": "/9ZxW9OH2It6rxfNTA5nu4KZxQW7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2440 - }, - { - "aspect_ratio": 1.779, - "height": 1439, - "iso_639_1": null, - "file_path": "/dGKTGMSMk8oDoUYkdiRKSJyjOzW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2560 - }, - { - "aspect_ratio": 1.778, - "height": 1348, - "iso_639_1": "en", - "file_path": "/gd1QPnOzopd6lr2DDmZS1id7FRx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2397 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/7wIJ4CJyQkMaOi3evSbBPd1oP7s.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/w0jRshxnCvIRhergmY7awpkmOGj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/7hEDrS3lbAEINmY9CY8eT4L8VBN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/jThx7iGDRXW0ACf75fM4KumDEoh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "pt", - "file_path": "/w2Uw5ZpyPUAxqo647JWMflfOARk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - } - ], - "logos": [ - { - "aspect_ratio": 6.706, - "height": 119, - "iso_639_1": "pt", - "file_path": "/5HhO9XMbK9YcoSfY3uJRPuOKevM.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 798 - }, - { - "aspect_ratio": 7.218, - "height": 413, - "iso_639_1": "en", - "file_path": "/xkPlchCzDO8waiKhr9hesu6k9YQ.png", - "vote_average": 0, - "vote_count": 0, - "width": 2981 - }, - { - "aspect_ratio": 5.113, - "height": 97, - "iso_639_1": "en", - "file_path": "/7NtfnTF1Uyrr6YfwMyorULGUd51.png", - "vote_average": 0, - "vote_count": 0, - "width": 496 - }, - { - "aspect_ratio": 3.893, - "height": 196, - "iso_639_1": "pt", - "file_path": "/gH5gd2yuiY8GOw3OLSJ2MV1eYY8.png", - "vote_average": 0, - "vote_count": 0, - "width": 763 - }, - { - "aspect_ratio": 1.298, - "height": 1079, - "iso_639_1": "he", - "file_path": "/jCXjuDtaSzgd9iWJk9OpHCg75ST.png", - "vote_average": 0, - "vote_count": 0, - "width": 1401 - }, - { - "aspect_ratio": 5.708, - "height": 137, - "iso_639_1": "en", - "file_path": "/yCZVHGRzgxL0qcyz0MNUxoI8SM0.png", - "vote_average": 0, - "vote_count": 0, - "width": 782 - }, - { - "aspect_ratio": 7.617, - "height": 193, - "iso_639_1": "pl", - "file_path": "/aBORyWCnUr1fGyAxy2JbJBwvLvB.png", - "vote_average": 0, - "vote_count": 0, - "width": 1470 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/kdPMUMJzyYAc4roD52qavX0nLIC.jpg", - "vote_average": 5.708, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "uk", - "file_path": "/j9B0UK96y4aGfAaaH8duGRGNpNT.jpg", - "vote_average": 5.458, - "vote_count": 17, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 1778, - "iso_639_1": "uk", - "file_path": "/mG4CMCC7eSMRNpmWYnBGYW4Rxhv.jpg", - "vote_average": 5.402, - "vote_count": 18, - "width": 1186 - }, - { - "aspect_ratio": 0.656, - "height": 1830, - "iso_639_1": "uk", - "file_path": "/52QUAmeReW1W1MaFWbhDJELrGRb.jpg", - "vote_average": 5.396, - "vote_count": 12, - "width": 1200 - }, - { - "aspect_ratio": 0.675, - "height": 1778, - "iso_639_1": "en", - "file_path": "/kw0Hegzpg08v37nRcmczCvqpl7d.jpg", - "vote_average": 5.392, - "vote_count": 8, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/rS8fjd6dYcf64v3ZhAE6fKrxoaF.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/lnTfm7V0JnzY5262pCMzvRf7nza.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/4Jx9sLUU5s4ETMQqmofdwq6kznj.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/gutvZwYkZ3lX3Cd0UjcY75NaPm9.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/3AxxRfQZqwrTgAo4SKkB8Cxn2EJ.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/uPSthtiPU1gRK55Szjex31R4fmU.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1721, - "iso_639_1": "he", - "file_path": "/uwmC1GeXVoNepRIH5EBe6HmDtnE.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1148 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/yoZmZOIk35ZuH0WJoakB81ypHUH.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/tFVJwcCvQscxRr4BSndCHfpgSYV.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "id", - "file_path": "/jfmZP9RIS42XVAYTskWrVV6voen.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gw30weETaMZqwJXIk65FALfme3s.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1778, - "iso_639_1": null, - "file_path": "/eDwf6OHKcZYPyFaE3NvlPO0JnzC.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 2435, - "iso_639_1": "no", - "file_path": "/7U3lC4YnHD8zpeoxbY6Hsj9jyeu.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1624 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ro", - "file_path": "/iyxdXKRWAL0VhN2eSBzFGhagEcX.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1763, - "iso_639_1": "en", - "file_path": "/x5sWVFL78X6KC4dil7QSOqCDqS8.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1175 - }, - { - "aspect_ratio": 0.75, - "height": 1080, - "iso_639_1": "fr", - "file_path": "/3jUeFQvp6iygJnCuiOmZktURgAi.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 810 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/n2HcaD1dEVrwXlSFJD7GmcqHSxv.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/fEAU4gZg3F8HCrbK4RwqpAVOVrK.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1721, - "iso_639_1": "he", - "file_path": "/itY83E4NIBSZJYe30GiTlRfH6XI.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1148 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/sF73xKArWL8VUuJmcJWYQUYkL5w.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1778, - "iso_639_1": "bg", - "file_path": "/wYMdhLikNg7qgvCg9smStFXF8zn.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/edXi2LQD181HpJoxGedbtA4mOTi.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/nAhSa8D0hDIgFpKW5ah27tjbTYK.jpg", - "vote_average": 5.282, - "vote_count": 14, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tajFI7ELaty2YV4frzVQ45Q18Hc.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/98OeYXDQm27XyAe1wSuceCxpmGJ.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2700, - "iso_639_1": "ru", - "file_path": "/aBEzoWyxW3DjAeuMtrgGAphqzjq.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1800 - }, - { - "aspect_ratio": 0.681, - "height": 2350, - "iso_639_1": "pt", - "file_path": "/6tIhfkc52XQnxzbMYeV9XK90NTG.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1600 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/6dX0u0W5YDrg4CKYzxWC4cde0Of.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.7, - "height": 1000, - "iso_639_1": "es", - "file_path": "/nfY0LdXZzggFKfjhyHVEHZfO484.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 700 - }, - { - "aspect_ratio": 0.675, - "height": 1778, - "iso_639_1": "en", - "file_path": "/wvNF1Q5SSXUwWlKQ2Rae6yLoK2C.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1200 - }, - { - "aspect_ratio": 0.675, - "height": 1778, - "iso_639_1": "pt", - "file_path": "/eqTYmtZKv4RGJiIQy6P6KyMNJ3h.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1200 - }, - { - "aspect_ratio": 0.681, - "height": 2350, - "iso_639_1": "pt", - "file_path": "/cJyxQYBhbSAdP8UR8rKCsTUjhqb.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/sK8Cpw6NqUFw0qVao94LcUOzlSg.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/zjLpFWqcEK3hAI9NpZPXUXuUxvd.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/bhMmniJ0Hosy0mjYFFSN97lWAI2.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/dfXwzohYz5IHp6h5tYIcwUIVSu.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/5EypjzJzxGdNtQy4BGU1g1qIZRC.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2358, - "iso_639_1": "en", - "file_path": "/rh9KdeelIt1aab8475GQW0rTWiC.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1572 - }, - { - "aspect_ratio": 0.675, - "height": 1037, - "iso_639_1": "en", - "file_path": "/ejxknWbPvvivFg1im3PflkNjcaQ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 700 - }, - { - "aspect_ratio": 0.737, - "height": 1411, - "iso_639_1": "en", - "file_path": "/u0Org7QtBAAVHPeDlECdrZ91j9V.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1040 - }, - { - "aspect_ratio": 0.741, - "height": 1884, - "iso_639_1": "en", - "file_path": "/aTNOSYf1ZJXP35WjjBYPNhz44NB.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1396 - }, - { - "aspect_ratio": 0.667, - "height": 1296, - "iso_639_1": "en", - "file_path": "/5e4Sq9kMvvhu7RwNKshYR4XpA8A.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 864 - }, - { - "aspect_ratio": 0.667, - "height": 1420, - "iso_639_1": "en", - "file_path": "/c7E7Uqr9DRoIxsmIsvSyK1HsXO5.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 947 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/6xSFeacDWPFkJYF3pMcw4ti3taz.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qAQfhZK0is1Detqsl1zTN3Juz1T.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1728, - "iso_639_1": "en", - "file_path": "/rKaSNuu95P1iVcdJfqx2MAlmoDV.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1152 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "pt", - "file_path": "/3cbeF5MIzhNOJNE5twLdeBZ6HlR.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 1863, - "iso_639_1": "en", - "file_path": "/bEWMEfK15H5UErSYxS6JqrYBLQy.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1242 - }, - { - "aspect_ratio": 0.658, - "height": 760, - "iso_639_1": null, - "file_path": "/1zTJgMMHkyRgxzwPEf9oPvifEpo.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 1600, - "iso_639_1": "de", - "file_path": "/4SUv6meTr0gRHmZd4TyoSsxQbLb.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1067 - }, - { - "aspect_ratio": 0.667, - "height": 2358, - "iso_639_1": "en", - "file_path": "/i1cslkbMPrAa2nEGDz0H7BX3cms.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1572 - }, - { - "aspect_ratio": 0.666, - "height": 1283, - "iso_639_1": "en", - "file_path": "/wFtk4YED1WZ8UIbAqIlqzEMHPoy.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 855 - }, - { - "aspect_ratio": 0.666, - "height": 1283, - "iso_639_1": "en", - "file_path": "/zk3MuUemkikP6FLh7bNNyE41gjr.jpg", - "vote_average": 4.996, - "vote_count": 6, - "width": 855 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "hu", - "file_path": "/t7SXSS54Mn8eVB5yJZRjMPjIB4u.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/h2hArYuTYf16v0ZERRd24KdySS0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/9YlsDgPGp4n9OTApQk8uAzNOJKH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/s6V24pU3EKAf24CSYSoArj6mtdh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1280, - "iso_639_1": "fr", - "file_path": "/s3WnF5NKpCicYayfi5aHcgIukx3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 854 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/oJJziIZdIeDmHQEiKmEMUY3x0fK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/kFUTnBapLPe7EZIkfQkiC4hIidK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "nl", - "file_path": "/aK7UybY20HSfHc63ZWQYXKY5tOh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/uFgLKkEEKZbEXLMl9mS4ZGfmN2K.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/c1rvuav5bvSoo1EemSLWDnLQZ1W.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "th", - "file_path": "/aQuTCt1a00NWPYhUBO96pKV1kWt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.666, - "height": 1714, - "iso_639_1": "es", - "file_path": "/qO0L1PzZCmqhRrYUuPvGXdysMdG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1142 - }, - { - "aspect_ratio": 0.71, - "height": 1408, - "iso_639_1": "cn", - "file_path": "/sDPWTp3yBoYHmiwlZew8d6IIEXF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.7, - "height": 2048, - "iso_639_1": "th", - "file_path": "/1tRlHHTRJby56hBATrIzKoP8c2s.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1434 - }, - { - "aspect_ratio": 0.7, - "height": 2048, - "iso_639_1": "th", - "file_path": "/cuWRbtQkB5xvQkNhT1Njtbruoul.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1434 - }, - { - "aspect_ratio": 0.75, - "height": 800, - "iso_639_1": "tr", - "file_path": "/plUHdnkGw42B1GKm6S6nLTi5ed2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/fi337dUQz2A40CCCxATBHt1Xl62.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/nWnFHHM2VoQcg7ocYIrw0S6o181.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/449CMENQ3XDF9bT2mkUvizoIhfH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/pvgVw9AKndFUBT18sF09HGZUK2C.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/vZibEu3qfcDfhyNAg1uLOzCcWoT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/rCCir3gwRl5JmoOBwRyu19Or1wG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/eq5v0pzijtjBCRwr6K8LQsiQxSd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/m5lh7C9fIbgeQgWTtWKpYsdg871.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/7UIoHNeHQ6qo0odERsL0YrF95BP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.737, - "height": 1411, - "iso_639_1": "en", - "file_path": "/w4GquQAXuGz00Ll8b4MrmTGXZGl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1040 - }, - { - "aspect_ratio": 0.737, - "height": 1411, - "iso_639_1": null, - "file_path": "/b3uA0HvVdyPMsBEvU0BifmjSbYs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1040 - }, - { - "aspect_ratio": 0.667, - "height": 1728, - "iso_639_1": null, - "file_path": "/7JsNlDLJuACubzGedMp9j1vLDiy.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1152 - }, - { - "aspect_ratio": 0.667, - "height": 2544, - "iso_639_1": "en", - "file_path": "/mOjZ9OlmeYBYRS8uv4OI6JGT3mE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1696 - }, - { - "aspect_ratio": 0.666, - "height": 1472, - "iso_639_1": "en", - "file_path": "/hg47LQ4t0syjwB5ZCgey8xC8nfp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 981 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pl", - "file_path": "/m84qrULV142MMieKlpLXTRf0nTF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/nTudfuXOrEFMl2BNlhxlwLXHtTp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/j2ukEOeTjDfFcH8StzbCuOsgkWZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "pt", - "file_path": "/pzXUL3QugPm7gUcoI8aVNUPnL16.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/y7bOXaWkozKZbXXi8tMNZI9jxO5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/aXtIz4EgGuESORBECQg77qLZWgV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/kW0IVRTWFPipgXAdMlYVKcmXqRW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 981, - "iso_639_1": "sk", - "file_path": "/kMhNvWgkaIpHo69zIKvW3HaKFhG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 654 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/wFiqgA2pI4udd3bSuzxUU2vkcfz.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/7HAt93cxFVyFepOUBencWaTTfn6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "fr", - "file_path": "/ddA1cWOlmYbjTHxIl17RXOj4rDZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 667 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "fr", - "file_path": "/9YvV9x8xIiV2MxpmTMwx5xv64Uo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 667 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/1085218.json b/examples/view-transitions/src/content/movies/1085218.json deleted file mode 100644 index e5de6d3d7..000000000 --- a/examples/view-transitions/src/content/movies/1085218.json +++ /dev/null @@ -1,345 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/e8FyMnifoN5BMuRFE97fS1lJZ6S.jpg", - "belongs_to_collection": { - "id": 1153632, - "name": "Darkland Collection", - "poster_path": null, - "backdrop_path": null - }, - "budget": 0, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 53, "name": "Thriller" } - ], - "homepage": "", - "id": 1085218, - "imdb_id": "tt20204996", - "original_language": "da", - "original_title": "Underverden 2", - "overview": "Seven years ago, Zaid went to war against the Copenhagen underworld to avenge his dead brother. His identity as a respected doctor of cardiology and life as a family man is but a fading dream, and in prison Zaid suffers the loss of his son Noah, whom he barely knows. When a police agent approaches Zaid and offers him a deal to be released in exchange for infiltrating the Copenhagen underworld, he sees his chance to reclaim the remnants of the family life he left behind. But everything has a price, and Zaid realizes that he has now seriously endangered his son's life. After all, once you become part of the underworld, is there any way out?", - "popularity": 524.476, - "poster_path": "/c8B4DsVcFVDLVmbpHMHU3RjLNAV.jpg", - "production_companies": [ - { - "id": 64293, - "logo_path": "/lbYGnir9KeY8NyQZrUFZbf3QDej.png", - "name": "Profile Pictures", - "origin_country": "DK" - } - ], - "production_countries": [{ "iso_3166_1": "DK", "name": "Denmark" }], - "release_date": "2023-04-13", - "revenue": 0, - "runtime": 110, - "spoken_languages": [ - { "english_name": "Arabic", "iso_639_1": "ar", "name": "العربية" }, - { "english_name": "Danish", "iso_639_1": "da", "name": "Dansk" } - ], - "status": "Released", - "tagline": "", - "title": "Darkland: The Return", - "video": false, - "vote_average": 6.32, - "vote_count": 64, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 234907, - "known_for_department": "Acting", - "name": "Dar Salim", - "original_name": "Dar Salim", - "popularity": 16.442, - "profile_path": "/oTYCqdF6nfZTsvt1fbypi54ydI.jpg", - "cast_id": 1, - "character": "Zaid", - "credit_id": "6429b39701b1ca0113cc2840", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 90514, - "known_for_department": "Acting", - "name": "Birgitte Hjort Sørensen", - "original_name": "Birgitte Hjort Sørensen", - "popularity": 9.741, - "profile_path": "/uPak0FlCPdsc9B1pw4bBkuaMLXT.jpg", - "cast_id": 2, - "character": "Helle", - "credit_id": "6429b3d101b1ca00d5e8507e", - "order": 1 - }, - { - "adult": false, - "gender": 1, - "id": 32682, - "known_for_department": "Acting", - "name": "Stine Fischer Christensen", - "original_name": "Stine Fischer Christensen", - "popularity": 3.87, - "profile_path": "/6MYODCa28L1IzfhcYTUZUYThoF2.jpg", - "cast_id": 3, - "character": "Stine", - "credit_id": "6429b42c9cc67b05796bcdcc", - "order": 2 - }, - { - "adult": false, - "gender": 0, - "id": 1178394, - "known_for_department": "Acting", - "name": "Henrik Vestergaard", - "original_name": "Henrik Vestergaard", - "popularity": 0.766, - "profile_path": "/1Opgkbdkyt1x5iEOLgV3VJ29ZpA.jpg", - "cast_id": 4, - "character": "Lars", - "credit_id": "6429b45401b1ca0097fdfb0f", - "order": 3 - }, - { - "adult": false, - "gender": 0, - "id": 3236472, - "known_for_department": "Acting", - "name": "Soheil Bavi", - "original_name": "Soheil Bavi", - "popularity": 0.6, - "profile_path": null, - "cast_id": 5, - "character": "Muhdir", - "credit_id": "6429b4828de0ae00b65514de", - "order": 4 - }, - { - "adult": false, - "gender": 0, - "id": 3991209, - "known_for_department": "Acting", - "name": "Jack Pedersen", - "original_name": "Jack Pedersen", - "popularity": 0.648, - "profile_path": null, - "cast_id": 6, - "character": "Shahin", - "credit_id": "6429b4f4ac8e6b00d32aa4eb", - "order": 5 - }, - { - "adult": false, - "gender": 0, - "id": 2595279, - "known_for_department": "Acting", - "name": "Mohamed Djeziri", - "original_name": "Mohamed Djeziri", - "popularity": 0.84, - "profile_path": null, - "cast_id": 11, - "character": "", - "credit_id": "64c14243871b340101072cf6", - "order": 6 - }, - { - "adult": false, - "gender": 0, - "id": 4188787, - "known_for_department": "Acting", - "name": "Abud Mustafa", - "original_name": "Abud Mustafa", - "popularity": 0.98, - "profile_path": null, - "cast_id": 12, - "character": "", - "credit_id": "64c6c269db8a0000e3286594", - "order": 7 - }, - { - "adult": false, - "gender": 0, - "id": 4188788, - "known_for_department": "Acting", - "name": "Ahmad Ayman", - "original_name": "Ahmad Ayman", - "popularity": 0.6, - "profile_path": null, - "cast_id": 13, - "character": "", - "credit_id": "64c6c27f63aad20209a58505", - "order": 8 - }, - { - "adult": false, - "gender": 0, - "id": 4188789, - "known_for_department": "Acting", - "name": "Sebastian Nørgaard", - "original_name": "Sebastian Nørgaard", - "popularity": 0.6, - "profile_path": null, - "cast_id": 14, - "character": "", - "credit_id": "64c6c298db8a0000e32865ab", - "order": 9 - }, - { - "adult": false, - "gender": 0, - "id": 4188791, - "known_for_department": "Acting", - "name": "Hamed \"Baloosh\" Balosha", - "original_name": "Hamed \"Baloosh\" Balosha", - "popularity": 0.6, - "profile_path": null, - "cast_id": 15, - "character": "", - "credit_id": "64c6c2a3eec5b500ff5262cb", - "order": 10 - }, - { - "adult": false, - "gender": 0, - "id": 3549264, - "known_for_department": "Acting", - "name": "Noah Carter", - "original_name": "Noah Carter", - "popularity": 0.6, - "profile_path": null, - "cast_id": 16, - "character": "", - "credit_id": "64c6c2b0cadb6b00c82a2404", - "order": 11 - }, - { - "adult": false, - "gender": 0, - "id": 4188792, - "known_for_department": "Acting", - "name": "Asgar Hansen", - "original_name": "Asgar Hansen", - "popularity": 0.6, - "profile_path": null, - "cast_id": 17, - "character": "", - "credit_id": "64c6c2bc30f79c00c781a97c", - "order": 12 - } - ], - "crew": [ - { - "adult": false, - "gender": 0, - "id": 1183636, - "known_for_department": "Directing", - "name": "Fenar Ahmad", - "original_name": "Fenar Ahmad", - "popularity": 1.646, - "profile_path": null, - "credit_id": "6429b673c04429026b13a94a", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 0, - "id": 1183636, - "known_for_department": "Directing", - "name": "Fenar Ahmad", - "original_name": "Fenar Ahmad", - "popularity": 1.646, - "profile_path": null, - "credit_id": "642ed070158c8501263ad755", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 0, - "id": 2405913, - "known_for_department": "Directing", - "name": "Behrouz Bigdeli", - "original_name": "Behrouz Bigdeli", - "popularity": 0.6, - "profile_path": null, - "credit_id": "642ed08058361b00f2f13338", - "department": "Writing", - "job": "Writer" - } - ] - }, - "videos": { "results": [] }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "da", - "file_path": "/4wVFtesa5YEWuAUHRcxoCN1Y1uN.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": null, - "file_path": "/e8FyMnifoN5BMuRFE97fS1lJZ6S.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 1116, - "iso_639_1": null, - "file_path": "/tDT465D3JZiABgz2uug9jCgOUlw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1984 - } - ], - "logos": [], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "da", - "file_path": "/A8EPXv3SV9qiNCIttIM4ezJRmhW.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "da", - "file_path": "/A0cxUcMWBruPknr5ZSePIYFfe7z.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 800 - }, - { - "aspect_ratio": 0.7, - "height": 2834, - "iso_639_1": "en", - "file_path": "/c8B4DsVcFVDLVmbpHMHU3RjLNAV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1984 - }, - { - "aspect_ratio": 0.7, - "height": 2834, - "iso_639_1": "en", - "file_path": "/my1ve6HKygOVNYJBi3A0pRpPm2l.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1984 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/1880.json b/examples/view-transitions/src/content/movies/1880.json deleted file mode 100644 index abfc5fd6f..000000000 --- a/examples/view-transitions/src/content/movies/1880.json +++ /dev/null @@ -1,1547 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/9fOfsVHZHig6MHPHczv0zMY6cKc.jpg", - "belongs_to_collection": null, - "budget": 17000000, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 53, "name": "Thriller" }, - { "id": 10752, "name": "War" }, - { "id": 18, "name": "Drama" } - ], - "homepage": "", - "id": 1880, - "imdb_id": "tt0087985", - "original_language": "en", - "original_title": "Red Dawn", - "overview": "It is the dawn of World War III. In mid-western America, a group of teenagers band together to defend their town—and their country—from invading Soviet forces.", - "popularity": 579.024, - "poster_path": "/a2GkHcioc2QEFJbQk1NTB85u3vD.jpg", - "production_companies": [ - { "id": 774, "logo_path": null, "name": "Valkyrie Films", "origin_country": "" }, - { - "id": 60, - "logo_path": "/1SEj4nyG3JPBSKBbFhtdcHRaIF9.png", - "name": "United Artists", - "origin_country": "US" - }, - { - "id": 21, - "logo_path": "/5Va1Ie5c4sjfEYqixQ3L8qg7fKu.png", - "name": "Metro-Goldwyn-Mayer", - "origin_country": "US" - } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "1984-08-10", - "revenue": 38376497, - "runtime": 114, - "spoken_languages": [ - { "english_name": "English", "iso_639_1": "en", "name": "English" }, - { "english_name": "Russian", "iso_639_1": "ru", "name": "Pусский" }, - { "english_name": "Spanish", "iso_639_1": "es", "name": "Español" } - ], - "status": "Released", - "tagline": "In our time, no foreign army has ever occupied American soil. Until now.", - "title": "Red Dawn", - "video": false, - "vote_average": 6.3, - "vote_count": 670, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 723, - "known_for_department": "Acting", - "name": "Patrick Swayze", - "original_name": "Patrick Swayze", - "popularity": 20.808, - "profile_path": "/md10KJbLxmOZMD9dvebySJR9qE7.jpg", - "cast_id": 1, - "character": "Jed", - "credit_id": "52fe431dc3a36847f803b5af", - "order": 0 - }, - { - "adult": false, - "gender": 2, - "id": 6952, - "known_for_department": "Acting", - "name": "Charlie Sheen", - "original_name": "Charlie Sheen", - "popularity": 11.152, - "profile_path": "/sxoSLhXPEL1Hp1yaTpejTLfd1As.jpg", - "cast_id": 5, - "character": "Matt", - "credit_id": "52fe431dc3a36847f803b5bf", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 2878, - "known_for_department": "Acting", - "name": "C. Thomas Howell", - "original_name": "C. Thomas Howell", - "popularity": 15.73, - "profile_path": "/739YbFWpAYyo9neHvBGThgmT4YH.jpg", - "cast_id": 2, - "character": "Robert", - "credit_id": "52fe431dc3a36847f803b5b3", - "order": 2 - }, - { - "adult": false, - "gender": 1, - "id": 1063, - "known_for_department": "Acting", - "name": "Lea Thompson", - "original_name": "Lea Thompson", - "popularity": 14.015, - "profile_path": "/85E9NTEfkRdUdK4kTrrnk5of25w.jpg", - "cast_id": 3, - "character": "Erica", - "credit_id": "52fe431dc3a36847f803b5b7", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 2884, - "known_for_department": "Acting", - "name": "Darren Dalton", - "original_name": "Darren Dalton", - "popularity": 1.142, - "profile_path": "/1wN9qopLWKS7PnJrRB0mR3XWwOQ.jpg", - "cast_id": 4, - "character": "Daryl", - "credit_id": "52fe431dc3a36847f803b5bb", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 722, - "known_for_department": "Acting", - "name": "Jennifer Grey", - "original_name": "Jennifer Grey", - "popularity": 13.838, - "profile_path": "/dY8mECHnrLvr4UQr61Ym78cakoA.jpg", - "cast_id": 12, - "character": "Toni", - "credit_id": "52fe431dc3a36847f803b5e7", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 6280, - "known_for_department": "Acting", - "name": "Powers Boothe", - "original_name": "Powers Boothe", - "popularity": 7.789, - "profile_path": "/dOwVFE10FgpLXrKhPdEAplpESjR.jpg", - "cast_id": 19, - "character": "Lt. Col. Andrew 'Andy' Tanner", - "credit_id": "52fe431dc3a36847f803b607", - "order": 6 - }, - { - "adult": false, - "gender": 2, - "id": 19737, - "known_for_department": "Acting", - "name": "Brad Savage", - "original_name": "Brad Savage", - "popularity": 1.086, - "profile_path": "/wmmtbypvyJQy26zrldTAXpWPrEF.jpg", - "cast_id": 13, - "character": "Danny", - "credit_id": "52fe431dc3a36847f803b5eb", - "order": 7 - }, - { - "adult": false, - "gender": 2, - "id": 8258, - "known_for_department": "Acting", - "name": "Ben Johnson", - "original_name": "Ben Johnson", - "popularity": 5.093, - "profile_path": "/VJYWJAOLcLE1WyG1v8W2h7TahA.jpg", - "cast_id": 16, - "character": "Mr. Mason", - "credit_id": "52fe431dc3a36847f803b5fb", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 5048, - "known_for_department": "Acting", - "name": "Harry Dean Stanton", - "original_name": "Harry Dean Stanton", - "popularity": 9.069, - "profile_path": "/197UiLVdxPOv8196sqmUpJzOQB5.jpg", - "cast_id": 17, - "character": "Mr. Eckert", - "credit_id": "52fe431dc3a36847f803b5ff", - "order": 9 - }, - { - "adult": false, - "gender": 2, - "id": 98102, - "known_for_department": "Acting", - "name": "William Smith", - "original_name": "William Smith", - "popularity": 15.42, - "profile_path": "/iyIc5xoLPzcy73nQWIZH2nlTarg.jpg", - "cast_id": 18, - "character": "Strelnikov", - "credit_id": "52fe431dc3a36847f803b603", - "order": 10 - }, - { - "adult": false, - "gender": 2, - "id": 55841, - "known_for_department": "Acting", - "name": "Ron O'Neal", - "original_name": "Ron O'Neal", - "popularity": 2.989, - "profile_path": "/aqcIHjX3MfbdViZlb4jPfzaDsEp.jpg", - "cast_id": 22, - "character": "Col Ernesto Bella", - "credit_id": "5830806192514162d8012131", - "order": 11 - }, - { - "adult": false, - "gender": 2, - "id": 39036, - "known_for_department": "Acting", - "name": "Vladek Sheybal", - "original_name": "Vladek Sheybal", - "popularity": 4.243, - "profile_path": "/1DT8AE1sD7ADGaoPxYvYo1EzrKz.jpg", - "cast_id": 23, - "character": "Bratchenko", - "credit_id": "5830807ac3a3685b93012039", - "order": 12 - }, - { - "adult": false, - "gender": 2, - "id": 1735, - "known_for_department": "Acting", - "name": "Frank McRae", - "original_name": "Frank McRae", - "popularity": 3.538, - "profile_path": "/tkEt3ACC46Zjm8pmPVBXva0p84Q.jpg", - "cast_id": 24, - "character": "Mr. Teasdale", - "credit_id": "5830809692514162c30129cf", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 65019, - "known_for_department": "Acting", - "name": "Lane Smith", - "original_name": "Lane Smith", - "popularity": 3.73, - "profile_path": "/stmbrf2qdq6umxt3Jh30IDhCfi3.jpg", - "cast_id": 25, - "character": "Mayor Bates", - "credit_id": "583080a892514162cf012b18", - "order": 14 - }, - { - "adult": false, - "gender": 2, - "id": 12298, - "known_for_department": "Acting", - "name": "Roy Jenson", - "original_name": "Roy Jenson", - "popularity": 2.577, - "profile_path": "/c0e49ddO1igeztMSrGPDmx4EyTo.jpg", - "cast_id": 26, - "character": "Samuel Morris", - "credit_id": "583080bcc3a3685ba10147e4", - "order": 15 - }, - { - "adult": false, - "gender": 2, - "id": 1169, - "known_for_department": "Acting", - "name": "Pepe Serna", - "original_name": "Pepe Serna", - "popularity": 2.439, - "profile_path": "/6fEdr5dpXYjpudCtmvhpZXl9q2F.jpg", - "cast_id": 27, - "character": "Mr. Mondragón", - "credit_id": "583080d2c3a3685bb00120ea", - "order": 16 - }, - { - "adult": false, - "gender": 2, - "id": 1221566, - "known_for_department": "Acting", - "name": "Radames Pera", - "original_name": "Radames Pera", - "popularity": 3.999, - "profile_path": "/u0Wz324ZH2RxjbMNLuODyFRYsn0.jpg", - "cast_id": 28, - "character": "Gorsky", - "credit_id": "583080e7c3a3685ba101482e", - "order": 17 - }, - { - "adult": false, - "gender": 2, - "id": 44819, - "known_for_department": "Acting", - "name": "Judd Omen", - "original_name": "Judd Omen", - "popularity": 4.653, - "profile_path": "/6ZL0ztbCS2WmN4aVRdegl0Gq16I.jpg", - "cast_id": 30, - "character": "The Nicaraguan Captain", - "credit_id": "5ab4c5d10e0a265f2101a4b7", - "order": 18 - }, - { - "adult": false, - "gender": 2, - "id": 59352, - "known_for_department": "Acting", - "name": "Zitto Kazann", - "original_name": "Zitto Kazann", - "popularity": 1.792, - "profile_path": null, - "cast_id": 31, - "character": "Political Officer", - "credit_id": "5ab4c60a0e0a265f2101a4eb", - "order": 19 - }, - { - "adult": false, - "gender": 0, - "id": 1850434, - "known_for_department": "Acting", - "name": "Doug Toby", - "original_name": "Doug Toby", - "popularity": 0.6, - "profile_path": null, - "cast_id": 72, - "character": "Aardvark", - "credit_id": "640ae365caaca200d7362828", - "order": 20 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 8328, - "known_for_department": "Writing", - "name": "John Milius", - "original_name": "John Milius", - "popularity": 6.639, - "profile_path": "/5e9PS8MtgEqpSAeqgUp7gaVU0gU.jpg", - "credit_id": "52fe431dc3a36847f803b5f1", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 8328, - "known_for_department": "Writing", - "name": "John Milius", - "original_name": "John Milius", - "popularity": 6.639, - "profile_path": "/5e9PS8MtgEqpSAeqgUp7gaVU0gU.jpg", - "credit_id": "52fe431dc3a36847f803b5d7", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 0, - "id": 3719, - "known_for_department": "Art", - "name": "Adrian Gorton", - "original_name": "Adrian Gorton", - "popularity": 0.991, - "profile_path": null, - "credit_id": "62f87427cffeed00820e417c", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 375, - "known_for_department": "Sound", - "name": "Bub Asman", - "original_name": "Bub Asman", - "popularity": 1.14, - "profile_path": null, - "credit_id": "62f875321cac8c007a3031cb", - "department": "Sound", - "job": "Sound Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1728, - "known_for_department": "Camera", - "name": "Ric Waite", - "original_name": "Ric Waite", - "popularity": 0.862, - "profile_path": null, - "credit_id": "52fe431dc3a36847f803b5dd", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 1, - "id": 2874, - "known_for_department": "Production", - "name": "Janet Hirshenson", - "original_name": "Janet Hirshenson", - "popularity": 2.317, - "profile_path": null, - "credit_id": "62f8730c1750510084a33550", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 1, - "id": 3275, - "known_for_department": "Production", - "name": "Jane Jenkins", - "original_name": "Jane Jenkins", - "popularity": 2.033, - "profile_path": "/aVOlC6UkKaxZpzvpdRxCjkMtJHI.jpg", - "credit_id": "62f873056f53e1007edc8819", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 0, - "id": 4142, - "known_for_department": "Production", - "name": "Elisabeth Leustig", - "original_name": "Elisabeth Leustig", - "popularity": 2.744, - "profile_path": null, - "credit_id": "62f874c2258823007a7b3f91", - "department": "Production", - "job": "Casting Associate" - }, - { - "adult": false, - "gender": 2, - "id": 4434, - "known_for_department": "Camera", - "name": "Frederick Elmes", - "original_name": "Frederick Elmes", - "popularity": 1.153, - "profile_path": null, - "credit_id": "62f87448724de1007d214fb5", - "department": "Camera", - "job": "Second Unit Director of Photography" - }, - { - "adult": false, - "gender": 2, - "id": 7716, - "known_for_department": "Art", - "name": "Jackson De Govia", - "original_name": "Jackson De Govia", - "popularity": 0.965, - "profile_path": null, - "credit_id": "5ab4c5789251417afb018c85", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 2, - "id": 7728, - "known_for_department": "Sound", - "name": "Basil Poledouris", - "original_name": "Basil Poledouris", - "popularity": 3.777, - "profile_path": "/8itBIwQLzi9VkoMeKYreVpBO5QV.jpg", - "credit_id": "52fe431dc3a36847f803b5d1", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 0, - "id": 8277, - "known_for_department": "Production", - "name": "Arne Schmidt", - "original_name": "Arne Schmidt", - "popularity": 2.036, - "profile_path": null, - "credit_id": "62f873a72faf4d00795d26a7", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 2, - "id": 9972, - "known_for_department": "Crew", - "name": "Dale L. Martin", - "original_name": "Dale L. Martin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f874b52faf4d00795d26ff", - "department": "Crew", - "job": "Special Effects" - }, - { - "adult": false, - "gender": 2, - "id": 12040, - "known_for_department": "Costume & Make-Up", - "name": "George L. Little", - "original_name": "George L. Little", - "popularity": 0.62, - "profile_path": null, - "credit_id": "62f874731cac8c007a30318a", - "department": "Costume & Make-Up", - "job": "Costume Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 12882, - "known_for_department": "Production", - "name": "Buzz Feitshans", - "original_name": "Buzz Feitshans", - "popularity": 0.713, - "profile_path": null, - "credit_id": "52fe431dc3a36847f803b5cb", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 12884, - "known_for_department": "Production", - "name": "Elliot Schick", - "original_name": "Elliot Schick", - "popularity": 0.763, - "profile_path": null, - "credit_id": "62f8736ce323f3007bc9b7cb", - "department": "Production", - "job": "Unit Production Manager" - }, - { - "adult": false, - "gender": 2, - "id": 16552, - "known_for_department": "Sound", - "name": "Fred J. Brown", - "original_name": "Fred J. Brown", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f8751ecffeed007d9eedc4", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 1, - "id": 16573, - "known_for_department": "Sound", - "name": "Denise Horta", - "original_name": "Denise Horta", - "popularity": 1.18, - "profile_path": null, - "credit_id": "62f8755bcffeed00820e41eb", - "department": "Sound", - "job": "ADR Editor" - }, - { - "adult": false, - "gender": 2, - "id": 17399, - "known_for_department": "Editing", - "name": "Thom Noble", - "original_name": "Thom Noble", - "popularity": 0.943, - "profile_path": null, - "credit_id": "52fe431dc3a36847f803b5e3", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 19423, - "known_for_department": "Production", - "name": "Sidney Beckerman", - "original_name": "Sidney Beckerman", - "popularity": 0.84, - "profile_path": null, - "credit_id": "52fe431dc3a36847f803b613", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 19567, - "known_for_department": "Crew", - "name": "Terry Leonard", - "original_name": "Terry Leonard", - "popularity": 3.096, - "profile_path": "/iRejgxxjuMXfLLYHXGCInX288B.jpg", - "credit_id": "62f873e06f53e1007b385dc2", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 19567, - "known_for_department": "Crew", - "name": "Terry Leonard", - "original_name": "Terry Leonard", - "popularity": 3.096, - "profile_path": "/iRejgxxjuMXfLLYHXGCInX288B.jpg", - "credit_id": "62f873f6e78687007ac8e228", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 0, - "id": 19736, - "known_for_department": "Writing", - "name": "Barry Beckerman", - "original_name": "Barry Beckerman", - "popularity": 1.103, - "profile_path": null, - "credit_id": "52fe431dc3a36847f803b5c5", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 8300, - "known_for_department": "Directing", - "name": "Kevin Reynolds", - "original_name": "Kevin Reynolds", - "popularity": 3.26, - "profile_path": "/nLFx6wt9DVeYjTv2abGdY09ALsm.jpg", - "credit_id": "52fe431dc3a36847f803b5f7", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 8300, - "known_for_department": "Directing", - "name": "Kevin Reynolds", - "original_name": "Kevin Reynolds", - "popularity": 3.26, - "profile_path": "/nLFx6wt9DVeYjTv2abGdY09ALsm.jpg", - "credit_id": "52fe431dc3a36847f803b60d", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 55245, - "known_for_department": "Camera", - "name": "John R. Shannon", - "original_name": "John R. Shannon", - "popularity": 0.606, - "profile_path": null, - "credit_id": "62f874d97eb5f2007ea42e89", - "department": "Camera", - "job": "Still Photographer" - }, - { - "adult": false, - "gender": 2, - "id": 43010, - "known_for_department": "Acting", - "name": "Thomas Rosales Jr.", - "original_name": "Thomas Rosales Jr.", - "popularity": 5.1, - "profile_path": "/tlJzLctGc6UmB7JQrkFcdMEuRx3.jpg", - "credit_id": "6429a873a3e4ba1cb5eb0368", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 75127, - "known_for_department": "Costume & Make-Up", - "name": "Lance Anderson", - "original_name": "Lance Anderson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f874516f53e1007edc8873", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 75251, - "known_for_department": "Sound", - "name": "Harry V. Lojewski", - "original_name": "Harry V. Lojewski", - "popularity": 1.052, - "profile_path": null, - "credit_id": "62f875a325882300821fd105", - "department": "Sound", - "job": "Music Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 79664, - "known_for_department": "Production", - "name": "Jim Behnke", - "original_name": "Jim Behnke", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f873b67eb5f200830b1c2f", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 2, - "id": 91915, - "known_for_department": "Crew", - "name": "Ross Reynolds", - "original_name": "Ross Reynolds", - "popularity": 0.744, - "profile_path": null, - "credit_id": "5e9541dcaf58cb0014db943e", - "department": "Crew", - "job": "Pilot" - }, - { - "adult": false, - "gender": 0, - "id": 559903, - "known_for_department": "Costume & Make-Up", - "name": "Lola 'Skip' McNalley", - "original_name": "Lola 'Skip' McNalley", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f874646f53e10083f490cf", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 2, - "id": 949558, - "known_for_department": "Costume & Make-Up", - "name": "Wes Dawn", - "original_name": "Wes Dawn", - "popularity": 1.252, - "profile_path": null, - "credit_id": "62f87458e78687007f12ef8f", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1116961, - "known_for_department": "Sound", - "name": "Joe Kenworthy", - "original_name": "Joe Kenworthy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f874cfa313b80084e6e7f4", - "department": "Sound", - "job": "Sound Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1339183, - "known_for_department": "Art", - "name": "Vincent M. Cresciman", - "original_name": "Vincent M. Cresciman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f874122faf4d00795d26cc", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1339319, - "known_for_department": "Sound", - "name": "Alex Bamattre", - "original_name": "Alex Bamattre", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f8753c724de1007d214ff9", - "department": "Sound", - "job": "Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1339961, - "known_for_department": "Crew", - "name": "Terry Collis", - "original_name": "Terry Collis", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f875aee78687009133c578", - "department": "Crew", - "job": "Transportation Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 1390233, - "known_for_department": "Production", - "name": "Joseph D'Agosta", - "original_name": "Joseph D'Agosta", - "popularity": 1.025, - "profile_path": null, - "credit_id": "62f8749a48333a008041bc2b", - "department": "Production", - "job": "Additional Casting" - }, - { - "adult": false, - "gender": 0, - "id": 1394921, - "known_for_department": "Sound", - "name": "Carlos Delarios", - "original_name": "Carlos Delarios", - "popularity": 0.98, - "profile_path": null, - "credit_id": "62f8758c77d23b007b79c00c", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1394922, - "known_for_department": "Sound", - "name": "Michael J. Kohut", - "original_name": "Michael J. Kohut", - "popularity": 0.932, - "profile_path": null, - "credit_id": "62f8756b48333a0083efcd82", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1394924, - "known_for_department": "Sound", - "name": "Aaron Rochin", - "original_name": "Aaron Rochin", - "popularity": 0.652, - "profile_path": null, - "credit_id": "62f87574e78687007ac8e2a8", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 1, - "id": 1399146, - "known_for_department": "Directing", - "name": "Carline Davis-Dyer", - "original_name": "Carline Davis-Dyer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f874eef92532007e9a5b60", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1434205, - "known_for_department": "Art", - "name": "Dennis J. Parrish", - "original_name": "Dennis J. Parrish", - "popularity": 0.979, - "profile_path": null, - "credit_id": "62f874a477d23b008b0dd2fa", - "department": "Art", - "job": "Property Master" - }, - { - "adult": false, - "gender": 0, - "id": 1446537, - "known_for_department": "Crew", - "name": "Ed Pine", - "original_name": "Ed Pine", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f874e32faf4d007c6c4373", - "department": "Crew", - "job": "Unit Publicist" - }, - { - "adult": false, - "gender": 0, - "id": 1538745, - "known_for_department": "Costume & Make-Up", - "name": "Julie Starr Dresner", - "original_name": "Julie Starr Dresner", - "popularity": 1.048, - "profile_path": null, - "credit_id": "62f87486f92532007e9a5b36", - "department": "Costume & Make-Up", - "job": "Costumer" - }, - { - "adult": false, - "gender": 0, - "id": 1550730, - "known_for_department": "Editing", - "name": "Bob Kaiser", - "original_name": "Bob Kaiser", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f875b9a313b80084e6e846", - "department": "Editing", - "job": "Color Timer" - }, - { - "adult": false, - "gender": 1, - "id": 1564476, - "known_for_department": "Sound", - "name": "Michele Sharp", - "original_name": "Michele Sharp", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f87529f92532007bbdcf65", - "department": "Sound", - "job": "Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1745776, - "known_for_department": "Sound", - "name": "Stan Witt", - "original_name": "Stan Witt", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f87596e267de007eb82c87", - "department": "Sound", - "job": "Music Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1776971, - "known_for_department": "Sound", - "name": "Lauren Palmer", - "original_name": "Lauren Palmer", - "popularity": 0.606, - "profile_path": null, - "credit_id": "62f8754f7eb5f2007ea42eac", - "department": "Sound", - "job": "ADR Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1821435, - "known_for_department": "Art", - "name": "Lowell Chambers", - "original_name": "Lowell Chambers", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f8741d596a91009b0d5d48", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 0, - "id": 1896609, - "known_for_department": "Costume & Make-Up", - "name": "Dan Chichester", - "original_name": "Dan Chichester", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f8747d389da1007b8b6560", - "department": "Costume & Make-Up", - "job": "Costumer" - }, - { - "adult": false, - "gender": 0, - "id": 3333772, - "known_for_department": "Art", - "name": "Brandy Alexander", - "original_name": "Brandy Alexander", - "popularity": 0.698, - "profile_path": null, - "credit_id": "62f87432724de1007d214fb0", - "department": "Art", - "job": "Set Designer" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "RED DAWN (1984) | The Teens Set Up a Trap | MGM", - "key": "8F6hRiSBZ7A", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2022-09-05T20:00:02.000Z", - "id": "631f6f2d58efd300847368c6" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "RED DAWN (1984) | Dad's Goodbye: 'Avenge Me' Scene | MGM", - "key": "TSGD4lEUY-k", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2022-09-03T20:00:05.000Z", - "id": "6316053f0c125500923b0038" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "RED DAWN (1984) | Opening Scene: Paramilitary Invasion | MGM", - "key": "jooIG9BuEUk", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2022-09-02T20:00:18.000Z", - "id": "6316054d02842000830dd1ea" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Red Dawn (1984) - Clip 2: The Wolverines (HD)", - "key": "d5b69FRBuLk", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2017-03-14T20:38:07.000Z", - "id": "631f72c30b7316007dc440d5" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "kZLLKwFpFG4", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2017-03-14T20:38:06.000Z", - "id": "5dd47e258c40f70014bc2315" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Red Dawn (1984) - Bonus Clip 1: Casting Lea Thompson and Jennifer Grey (HD)", - "key": "FaxDzk74q4Y", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2017-03-14T20:38:05.000Z", - "id": "631605a8d40d4c007ddd02d4" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Red Dawn (1984) - Bonus Clip 2: The Weapons (HD)", - "key": "b6PoKnBJyCU", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2017-03-14T20:38:05.000Z", - "id": "631605ba7fcab30091dd706f" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/9fOfsVHZHig6MHPHczv0zMY6cKc.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/5eU8WPfMg8uBhoGdza0gtPMr1t9.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/gixMkOcooKLTITxht7xbkk59NN3.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/uXviGCQaCCUF9npPebz7AE9lv1p.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1036, - "iso_639_1": null, - "file_path": "/yAHggsTKuGHD7J3TvH6OkaFkfti.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1842 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/mX9bv5KzgZlVg9KqGD6DSGW2pPP.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/gbXWRK5pJeddW0EeqoNaiY17lp1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/knCcHn1LX2mJIdcVOS7jGqwppL9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/wBvBxhQvEUqy62KHKa361BHwIYq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/5cWS9uuAoCQACzrO5xOjfZIQ4Hs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/fXuoRXwy8kVJW72lnlW7hOzlwSs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/8B4WsWTa6WDs5VWrLZOR55jFQwt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/lIpV7tyoxlJf1b3LNtk69WuMm2O.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "fr", - "file_path": "/vgFME1CQTIamz5fdH73HjHZQAXV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1040, - "iso_639_1": null, - "file_path": "/A2cLxljNmHJK5DhiOg773tPqFoS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1849 - }, - { - "aspect_ratio": 1.778, - "height": 1040, - "iso_639_1": null, - "file_path": "/jOc4ETdjQAGKknqGgFgNaxK43fE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1849 - }, - { - "aspect_ratio": 1.778, - "height": 1040, - "iso_639_1": null, - "file_path": "/qkRsX8xVlEFXCUhE3mfLjzsCASL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1849 - }, - { - "aspect_ratio": 1.778, - "height": 1040, - "iso_639_1": null, - "file_path": "/aQw6yys8i7ADgGGXYd8v0Qrgj4D.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1849 - } - ], - "logos": [ - { - "aspect_ratio": 3.721, - "height": 233, - "iso_639_1": "pt", - "file_path": "/qQaDlU8pzTcEST6TpmmGshBrGsS.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 867 - }, - { - "aspect_ratio": 2.399, - "height": 296, - "iso_639_1": "en", - "file_path": "/aqj2NalzeqYy5xoX3upf3VrOF1S.png", - "vote_average": 0, - "vote_count": 0, - "width": 710 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/a2GkHcioc2QEFJbQk1NTB85u3vD.jpg", - "vote_average": 5.454, - "vote_count": 3, - "width": 1400 - }, - { - "aspect_ratio": 0.693, - "height": 1535, - "iso_639_1": "de", - "file_path": "/5GML4GCINRPpvYVxHriiEMAOKmF.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1063 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "hu", - "file_path": "/rSKaVidsftj7ttDRT0htsVA2gbO.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "de", - "file_path": "/jseJLFUrANo0bvQrwELq62DtSsi.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/p66hn6JWfBZe9kj2UdYp3p2LRsK.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2864, - "iso_639_1": "en", - "file_path": "/5grYNTqeJSzIvTNMZ3lycDi2mXd.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1909 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "fr", - "file_path": "/f60nY59ezmsHbPcmQV53T2DycfU.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/czuLv6kLez43glyPtCjzCs7ocC.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/3LihAXYzvB5nrfSBJRmdYoFjUWT.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/p01KcZDk2pdwsvrsF58A1W9PrIP.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.721, - "height": 2333, - "iso_639_1": "es", - "file_path": "/zWzkCNltVaYaa4veMlzsZEBQpy0.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1681 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": "fr", - "file_path": "/vkar6pw3cIe3D7d1OoJiuBbDpC2.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gNj3AmfEecjuM9mjG6MOIr8bNsc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.699, - "height": 1000, - "iso_639_1": "it", - "file_path": "/8W4OxkmQnzmeTHEUzz8ETcrZUU7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 699 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "de", - "file_path": "/tdwJa4r2G4jXwUMrPVNsuOouPjK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1440, - "iso_639_1": "es", - "file_path": "/7Z1NgiJ3cq5tasdfKVuAmcJpXyK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 960 - }, - { - "aspect_ratio": 0.702, - "height": 1000, - "iso_639_1": "pt", - "file_path": "/cmqaGAtKlcGsp1MmOfrxbeg66me.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 702 - }, - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": "en", - "file_path": "/d3GIjSfR3qnQRbixGoROTnHQyBL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1500 - }, - { - "aspect_ratio": 0.68, - "height": 750, - "iso_639_1": "en", - "file_path": "/hHIjv3N80ii3UsOgxToZ4ODIt2n.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 510 - }, - { - "aspect_ratio": 0.701, - "height": 1426, - "iso_639_1": "es", - "file_path": "/vTJTlAZ9jUYgcoxL7cxGHhal8fF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/f6Pp3cDp6Kobr9JSS3EoLTHDR3b.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "it", - "file_path": "/4AvQjlcrB9uhoBSLEbe5xkGFf9Q.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2218, - "iso_639_1": "en", - "file_path": "/bII5crX676Sf2dbFpLx6RDO3brF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1479 - }, - { - "aspect_ratio": 0.667, - "height": 2560, - "iso_639_1": "en", - "file_path": "/v3fUiglaQlLLLVE82cHpEh3vq4c.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1707 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "it", - "file_path": "/qLQt3U6RZCw8INf4bzfvkF3Fr6q.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.666, - "height": 1000, - "iso_639_1": "de", - "file_path": "/ahbnUQyOwXgn1M5AQkP66BeJ0t7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 666 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "de", - "file_path": "/oMwdpLmRPBmglT7M1j1lNGeMhbk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/298618.json b/examples/view-transitions/src/content/movies/298618.json deleted file mode 100644 index 45b009956..000000000 --- a/examples/view-transitions/src/content/movies/298618.json +++ /dev/null @@ -1,5708 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/yF1eOkaYvwiORauRCPWznV9xVvi.jpg", - "belongs_to_collection": null, - "budget": 300000000, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 12, "name": "Adventure" }, - { "id": 878, "name": "Science Fiction" } - ], - "homepage": "https://www.dc.com/theflash", - "id": 298618, - "imdb_id": "tt0439572", - "original_language": "en", - "original_title": "The Flash", - "overview": "When his attempt to save his family inadvertently alters the future, Barry Allen becomes trapped in a reality in which General Zod has returned and there are no Super Heroes to turn to. In order to save the world that he is in and return to the future that he knows, Barry's only hope is to race for his life. But will making the ultimate sacrifice be enough to reset the universe?", - "popularity": 561.181, - "poster_path": "/rktDFPbfHfUbArZ6OOOKsXcv0Bm.jpg", - "production_companies": [ - { - "id": 174, - "logo_path": "/IuAlhI9eVC9Z8UQWOIDdWRKSEJ.png", - "name": "Warner Bros. Pictures", - "origin_country": "US" - }, - { "id": 152809, "logo_path": null, "name": "Double Dream", "origin_country": "US" }, - { "id": 170335, "logo_path": null, "name": "The Disco Factory", "origin_country": "US" }, - { - "id": 128064, - "logo_path": "/13F3Jf7EFAcREU0xzZqJnVnyGXu.png", - "name": "DC Films", - "origin_country": "US" - } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "2023-06-13", - "revenue": 268375616, - "runtime": 144, - "spoken_languages": [ - { "english_name": "English", "iso_639_1": "en", "name": "English" }, - { "english_name": "Spanish", "iso_639_1": "es", "name": "Español" }, - { "english_name": "Russian", "iso_639_1": "ru", "name": "Pусский" } - ], - "status": "Released", - "tagline": "Worlds collide.", - "title": "The Flash", - "video": false, - "vote_average": 6.905, - "vote_count": 2872, - "credits": { - "cast": [ - { - "adult": false, - "gender": 3, - "id": 132157, - "known_for_department": "Acting", - "name": "Ezra Miller", - "original_name": "Ezra Miller", - "popularity": 20.833, - "profile_path": "/s6ulsRYtkaAArXsNC6cvinUiRNc.jpg", - "cast_id": 0, - "character": "Barry Allen / The Flash", - "credit_id": "5447bf27c3a3686e910022ec", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 2542319, - "known_for_department": "Acting", - "name": "Sasha Calle", - "original_name": "Sasha Calle", - "popularity": 22.013, - "profile_path": "/1GOW1cejmE8D8T6PRikYlGmUae0.jpg", - "cast_id": 58, - "character": "Kara Zor-El / Supergirl", - "credit_id": "60300ad620ecaf003f149b47", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 2232, - "known_for_department": "Acting", - "name": "Michael Keaton", - "original_name": "Michael Keaton", - "popularity": 37.781, - "profile_path": "/82rxrGxOqQW2NjKsIiNbDYHFfmb.jpg", - "cast_id": 49, - "character": "Bruce Wayne / Batman", - "credit_id": "5ef10418283ed900368eb76d", - "order": 2 - }, - { - "adult": false, - "gender": 2, - "id": 335, - "known_for_department": "Acting", - "name": "Michael Shannon", - "original_name": "Michael Shannon", - "popularity": 20.331, - "profile_path": "/6mMczfjM8CiS1WuBOgo5Xom1TcR.jpg", - "cast_id": 82, - "character": "General Zod", - "credit_id": "61c3399737b3a900c3459731", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 17402, - "known_for_department": "Acting", - "name": "Ron Livingston", - "original_name": "Ron Livingston", - "popularity": 16.602, - "profile_path": "/pr5CjWnkaf5WKTIYh8wtNufjmyb.jpg", - "cast_id": 66, - "character": "Henry Allen", - "credit_id": "605ba914a2d2e9002ae2deec", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 16971, - "known_for_department": "Acting", - "name": "Maribel Verdú", - "original_name": "Maribel Verdú", - "popularity": 9.302, - "profile_path": "/5ml5J9yDEV6ZLkinkS7vAHfE882.jpg", - "cast_id": 67, - "character": "Nora Allen", - "credit_id": "605bb0f6e4c9eb003d1da728", - "order": 5 - }, - { - "adult": false, - "gender": 1, - "id": 1253355, - "known_for_department": "Acting", - "name": "Kiersey Clemons", - "original_name": "Kiersey Clemons", - "popularity": 21.087, - "profile_path": "/iZD6EzMGnuHFjFgmO8G1wyiLrTy.jpg", - "cast_id": 61, - "character": "Iris West", - "credit_id": "6042cd788813e40059ddc8ef", - "order": 6 - }, - { - "adult": false, - "gender": 1, - "id": 43202, - "known_for_department": "Acting", - "name": "Antje Traue", - "original_name": "Antje Traue", - "popularity": 17.582, - "profile_path": "/xEwHBfAtcDCKGvo2lAD9xc55X7O.jpg", - "cast_id": 83, - "character": "Faora-Ul", - "credit_id": "61c339af0102c90065a50a04", - "order": 7 - }, - { - "adult": false, - "gender": 1, - "id": 1660888, - "known_for_department": "Acting", - "name": "Saoirse-Monica Jackson", - "original_name": "Saoirse-Monica Jackson", - "popularity": 11.659, - "profile_path": "/5CSLLbQS59BlUPOqaxABQKfnnkz.jpg", - "cast_id": 88, - "character": "Patty Spivot", - "credit_id": "62822d1bfb3f6112716c46e2", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 1727045, - "known_for_department": "Acting", - "name": "Rudy Mancuso", - "original_name": "Rudy Mancuso", - "popularity": 3.252, - "profile_path": "/6PtUsjNCYOIN7PjvQin8ck4vfjd.jpg", - "cast_id": 89, - "character": "Albert Desmond", - "credit_id": "62adc3d7944a5703e5b954d7", - "order": 9 - }, - { - "adult": false, - "gender": 2, - "id": 2651020, - "known_for_department": "Acting", - "name": "Ed Wade", - "original_name": "Ed Wade", - "popularity": 0.6, - "profile_path": "/j4Cs33ES3ocdG6jNTOEtP0bjx4w.jpg", - "cast_id": 154, - "character": "Court Reporter", - "credit_id": "648fc2c90f0da500c5f5a5b2", - "order": 10 - }, - { - "adult": false, - "gender": 2, - "id": 16940, - "known_for_department": "Acting", - "name": "Jeremy Irons", - "original_name": "Jeremy Irons", - "popularity": 27.261, - "profile_path": "/w8Ct1q02Ht3sWdOSqfp3B85TzT.jpg", - "cast_id": 119, - "character": "Alfred Pennyworth", - "credit_id": "646c31bc2bcf67011bf4c802", - "order": 11 - }, - { - "adult": false, - "gender": 2, - "id": 7242, - "known_for_department": "Acting", - "name": "Temuera Morrison", - "original_name": "Temuera Morrison", - "popularity": 19.565, - "profile_path": "/1ckHDFgKXJ8pazmvLCW7DeOKqA0.jpg", - "cast_id": 138, - "character": "Thomas Curry", - "credit_id": "648af14542bf0100c7f9e762", - "order": 12 - }, - { - "adult": false, - "gender": 2, - "id": 145997, - "known_for_department": "Acting", - "name": "Sanjeev Bhaskar", - "original_name": "Sanjeev Bhaskar", - "popularity": 10.657, - "profile_path": "/gPFoGWj5VPm4IZVn9sMdBicVh2E.jpg", - "cast_id": 141, - "character": "David Singh", - "credit_id": "648b9828c2ff3d011cb7ffee", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 2519858, - "known_for_department": "Acting", - "name": "Sean Rogers", - "original_name": "Sean Rogers", - "popularity": 1.178, - "profile_path": "/hYZiDuFNriFbLvKoQh0PL5h8Gvc.jpg", - "cast_id": 139, - "character": "Gary", - "credit_id": "648b1671c3c891014ebc1ace", - "order": 14 - }, - { - "adult": false, - "gender": 2, - "id": 1300306, - "known_for_department": "Acting", - "name": "Kieran Hodgson", - "original_name": "Kieran Hodgson", - "popularity": 1.567, - "profile_path": "/wGm7GopyPDAwSbDbFTPRKCl0xEd.jpg", - "cast_id": 155, - "character": "Sandwich Guy", - "credit_id": "648fc336c2ff3d0139aefedb", - "order": 15 - }, - { - "adult": false, - "gender": 2, - "id": 59096, - "known_for_department": "Acting", - "name": "Luke Brandon Field", - "original_name": "Luke Brandon Field", - "popularity": 2.545, - "profile_path": "/oFxfxwnJAZ6JSSpXWNuAt9ffW8W.jpg", - "cast_id": 113, - "character": "Al Falcone", - "credit_id": "644b9141596a9102fc57c661", - "order": 16 - }, - { - "adult": false, - "gender": 2, - "id": 3023721, - "known_for_department": "Acting", - "name": "Ian Loh", - "original_name": "Ian Loh", - "popularity": 1.286, - "profile_path": "/7NtafmntpvtYbF6bRMEvZDHx7VK.jpg", - "cast_id": 70, - "character": "Kid Barry", - "credit_id": "605bd3863081310053e9d753", - "order": 17 - }, - { - "adult": false, - "gender": 2, - "id": 193356, - "known_for_department": "Acting", - "name": "Karl Collins", - "original_name": "Karl Collins", - "popularity": 3.617, - "profile_path": "/xmKa1IZN5H4TUflTsUZzIAdApMp.jpg", - "cast_id": 156, - "character": "Henry's Lawyer", - "credit_id": "648fc36f263462012d4afbb8", - "order": 18 - }, - { - "adult": false, - "gender": 2, - "id": 12795, - "known_for_department": "Acting", - "name": "Nikolaj Coster-Waldau", - "original_name": "Nikolaj Coster-Waldau", - "popularity": 24.63, - "profile_path": "/rpFOERbHkj7GWxkinUNiQ76sSGk.jpg", - "cast_id": 157, - "character": "Pizza Guy", - "credit_id": "648fc37f45765d00e358623c", - "order": 19 - }, - { - "adult": false, - "gender": 1, - "id": 3951800, - "known_for_department": "Acting", - "name": "Poppy Shepherd", - "original_name": "Poppy Shepherd", - "popularity": 0.6, - "profile_path": null, - "cast_id": 158, - "character": "Flash Fan", - "credit_id": "648fc38cc2ff3d00c59ad428", - "order": 20 - }, - { - "adult": false, - "gender": 0, - "id": 3443007, - "known_for_department": "Acting", - "name": "Nina Barker-Francis", - "original_name": "Nina Barker-Francis", - "popularity": 1.4, - "profile_path": "/cxLvNLHY13Bj5Gr8ZOBYqs4KM0o.jpg", - "cast_id": 159, - "character": "Flash Fan", - "credit_id": "648fc397c2ff3d00ad02d0d1", - "order": 21 - }, - { - "adult": false, - "gender": 0, - "id": 4119378, - "known_for_department": "Acting", - "name": "Ava Hamada", - "original_name": "Ava Hamada", - "popularity": 0.6, - "profile_path": null, - "cast_id": 160, - "character": "Flash Fan", - "credit_id": "648fc39f0f0da5011c2b3012", - "order": 22 - }, - { - "adult": false, - "gender": 0, - "id": 4119379, - "known_for_department": "Acting", - "name": "Maurice Chung", - "original_name": "Maurice Chung", - "popularity": 0.6, - "profile_path": null, - "cast_id": 161, - "character": "Flash Fan", - "credit_id": "648fc3a52f8d0900c6668e28", - "order": 23 - }, - { - "adult": false, - "gender": 0, - "id": 4119380, - "known_for_department": "Acting", - "name": "Florence Wright", - "original_name": "Florence Wright", - "popularity": 0.6, - "profile_path": null, - "cast_id": 162, - "character": "Baby Nurse", - "credit_id": "648fc40e559d220139be9cd4", - "order": 24 - }, - { - "adult": false, - "gender": 2, - "id": 3144892, - "known_for_department": "Acting", - "name": "Bastian Antonio Fuentes", - "original_name": "Bastian Antonio Fuentes", - "popularity": 1.654, - "profile_path": "/u7SDAocZ7ZCMOCejLRZtZFdb2Bl.jpg", - "cast_id": 163, - "character": "Tony's Son", - "credit_id": "648fc41942bf0100e49f729e", - "order": 25 - }, - { - "adult": false, - "gender": 0, - "id": 240759, - "known_for_department": "Acting", - "name": "Andoni Gracia", - "original_name": "Andoni Gracia", - "popularity": 1.498, - "profile_path": "/xppbj7Or7Ziyi533FascluSLro8.jpg", - "cast_id": 164, - "character": "Tony", - "credit_id": "648fc42626346200ae1c9d68", - "order": 26 - }, - { - "adult": false, - "gender": 0, - "id": 4119381, - "known_for_department": "Acting", - "name": "Alex Hank", - "original_name": "Alex Hank", - "popularity": 0.6, - "profile_path": null, - "cast_id": 165, - "character": "Security Guard", - "credit_id": "648fc440c2ff3d00e2e125cb", - "order": 27 - }, - { - "adult": false, - "gender": 0, - "id": 4119382, - "known_for_department": "Acting", - "name": "Miki Muschietti", - "original_name": "Miki Muschietti", - "popularity": 0.6, - "profile_path": null, - "cast_id": 166, - "character": "Crying Toddler", - "credit_id": "648fc44f559d2200c57765c7", - "order": 28 - }, - { - "adult": false, - "gender": 0, - "id": 4119383, - "known_for_department": "Acting", - "name": "Rebecca Hiller", - "original_name": "Rebecca Hiller", - "popularity": 0.6, - "profile_path": null, - "cast_id": 167, - "character": "Toddler's Mother", - "credit_id": "648fc47042bf01011e744df9", - "order": 29 - }, - { - "adult": false, - "gender": 0, - "id": 2160754, - "known_for_department": "Crew", - "name": "Rob Hunt", - "original_name": "Rob Hunt", - "popularity": 0.848, - "profile_path": null, - "cast_id": 168, - "character": "Falcone's Crew", - "credit_id": "648fc47b0f0da500c5f5a6d0", - "order": 30 - }, - { - "adult": false, - "gender": 0, - "id": 2752028, - "known_for_department": "Crew", - "name": "Jonny Stockwell", - "original_name": "Jonny Stockwell", - "popularity": 0.6, - "profile_path": null, - "cast_id": 169, - "character": "Falcone's Crew", - "credit_id": "648fc48226346200ca1aef25", - "order": 31 - }, - { - "adult": false, - "gender": 2, - "id": 2270892, - "known_for_department": "Crew", - "name": "Michael Byrch", - "original_name": "Michael Byrch", - "popularity": 2.235, - "profile_path": null, - "cast_id": 170, - "character": "Falcone's Crew", - "credit_id": "648fc48a45765d010016d5b6", - "order": 32 - }, - { - "adult": false, - "gender": 0, - "id": 931013, - "known_for_department": "Acting", - "name": "Bret Jones", - "original_name": "Bret Jones", - "popularity": 0.6, - "profile_path": null, - "cast_id": 171, - "character": "Neighbour with Dog", - "credit_id": "648fc49e0f0da500ffa8d61d", - "order": 33 - }, - { - "adult": false, - "gender": 1, - "id": 1793943, - "known_for_department": "Acting", - "name": "Sue Maund", - "original_name": "Sue Maund", - "popularity": 1.689, - "profile_path": "/drwHdpBinA6eweQQ3Yyb0amkPnu.jpg", - "cast_id": 172, - "character": "Neighbour with Dog", - "credit_id": "648fc4a50f0da5011c2b30f3", - "order": 34 - }, - { - "adult": false, - "gender": 2, - "id": 4119385, - "known_for_department": "Acting", - "name": "Alex Batareanu", - "original_name": "Alex Batareanu", - "popularity": 0.986, - "profile_path": "/n8Ieg0jn33pTlnNPmWE9rE0ORQ8.jpg", - "cast_id": 173, - "character": "Russian Captain", - "credit_id": "648fc4f1c2ff3d00c59ad51e", - "order": 35 - }, - { - "adult": false, - "gender": 2, - "id": 1654741, - "known_for_department": "Acting", - "name": "Andrei Nova", - "original_name": "Andrei Nova", - "popularity": 1.614, - "profile_path": "/qW4RfbmHffTdiwmuEIQv3oyJ8YA.jpg", - "cast_id": 174, - "character": "Russian Guard", - "credit_id": "648fc4ffc2ff3d00ffbc5494", - "order": 36 - }, - { - "adult": false, - "gender": 2, - "id": 1459975, - "known_for_department": "Acting", - "name": "Gabriel Constantin", - "original_name": "Gabriel Constantin", - "popularity": 1.774, - "profile_path": "/zwTHzcYGoho4gbVdYVfMqF5Wxq3.jpg", - "cast_id": 175, - "character": "Head Scientist", - "credit_id": "648fc50cc3c89100cadb19a5", - "order": 37 - }, - { - "adult": false, - "gender": 2, - "id": 1599253, - "known_for_department": "Acting", - "name": "Oleg Mirochnikov", - "original_name": "Oleg Mirochnikov", - "popularity": 2.549, - "profile_path": "/eWfA64TAF7xsGVfxL9KCqf12FEg.jpg", - "cast_id": 176, - "character": "Scientist", - "credit_id": "648fc5140f0da50139039ea8", - "order": 38 - }, - { - "adult": false, - "gender": 1, - "id": 1620249, - "known_for_department": "Acting", - "name": "Katia Elizarova", - "original_name": "Katia Elizarova", - "popularity": 3.209, - "profile_path": "/bQBgjTNlhEDiObJJuEo2NVkLE7W.jpg", - "cast_id": 177, - "character": "Scientist", - "credit_id": "648fc51b45765d00e3586345", - "order": 39 - }, - { - "adult": false, - "gender": 0, - "id": 1347131, - "known_for_department": "Acting", - "name": "Denis Khoroshko", - "original_name": "Denis Khoroshko", - "popularity": 1.4, - "profile_path": "/rbvHeDJ4fYUoJd43ajxQ38h2ZB3.jpg", - "cast_id": 178, - "character": "Scientist", - "credit_id": "648fc52245765d011dbfec86", - "order": 40 - }, - { - "adult": false, - "gender": 1, - "id": 4119386, - "known_for_department": "Acting", - "name": "Zsuzsa Magyar", - "original_name": "Zsuzsa Magyar", - "popularity": 0.618, - "profile_path": "/oUU2DMVEO6p9HFs5ifPNZMxuYn0.jpg", - "cast_id": 179, - "character": "Scientist", - "credit_id": "648fc531559d2200e207162e", - "order": 41 - }, - { - "adult": false, - "gender": 2, - "id": 1563756, - "known_for_department": "Directing", - "name": "Michael Lerman", - "original_name": "Michael Lerman", - "popularity": 2.598, - "profile_path": "/kztQ2HnT4Hl3IbyrS9PGFcVmqsQ.jpg", - "cast_id": 180, - "character": "Scientist", - "credit_id": "648fc54f42bf0100e49f737b", - "order": 42 - }, - { - "adult": false, - "gender": 1, - "id": 1737976, - "known_for_department": "Acting", - "name": "Rosie Ede", - "original_name": "Rosie Ede", - "popularity": 1.231, - "profile_path": "/h6HTwvixLAq9HMGVyoAlWwahuA0.jpg", - "cast_id": 140, - "character": "Thomas Curry's Wife", - "credit_id": "648b16bf559d220139bbf32b", - "order": 43 - }, - { - "adult": false, - "gender": 2, - "id": 1113116, - "known_for_department": "Directing", - "name": "Andy Muschietti", - "original_name": "Andy Muschietti", - "popularity": 2.746, - "profile_path": "/mzOMGWzqFFLqIqa2WkDv5I1IxHE.jpg", - "cast_id": 130, - "character": "Hot Dog Reporter", - "credit_id": "6488cb28d2b209014e0b05b1", - "order": 44 - }, - { - "adult": false, - "gender": 1, - "id": 3107464, - "known_for_department": "Acting", - "name": "Ellie Rawnsley", - "original_name": "Ellie Rawnsley", - "popularity": 1.558, - "profile_path": null, - "cast_id": 181, - "character": "Metropolis Reporter", - "credit_id": "648fc69526346200eb76f7f9", - "order": 45 - }, - { - "adult": false, - "gender": 2, - "id": 1503079, - "known_for_department": "Acting", - "name": "Greg Lockett", - "original_name": "Greg Lockett", - "popularity": 1.597, - "profile_path": "/p2OeDF1ssTV4plTILk5O5pbevMJ.jpg", - "cast_id": 182, - "character": "Gotham Reporter", - "credit_id": "648fc69c45765d00ac6aa46c", - "order": 46 - }, - { - "adult": false, - "gender": 0, - "id": 4119388, - "known_for_department": "Acting", - "name": "Chelsea Leigh Macleod", - "original_name": "Chelsea Leigh Macleod", - "popularity": 0.6, - "profile_path": null, - "cast_id": 183, - "character": "Gotham Reporter", - "credit_id": "648fc6a8c3c891014ebe8e03", - "order": 47 - }, - { - "adult": false, - "gender": 0, - "id": 4119389, - "known_for_department": "Acting", - "name": "Leslie Soo", - "original_name": "Leslie Soo", - "popularity": 0.6, - "profile_path": null, - "cast_id": 184, - "character": "Staff Nurse", - "credit_id": "648fc6b145765d013be9e518", - "order": 48 - }, - { - "adult": false, - "gender": 0, - "id": 2593001, - "known_for_department": "Acting", - "name": "Freya Evans", - "original_name": "Freya Evans", - "popularity": 0.605, - "profile_path": null, - "cast_id": 185, - "character": "Woman in Park", - "credit_id": "648fc6bf0f0da500c5f5a880", - "order": 49 - }, - { - "adult": false, - "gender": 1, - "id": 1191890, - "known_for_department": "Acting", - "name": "Sue Moore", - "original_name": "Sue Moore", - "popularity": 0.737, - "profile_path": "/o2JxGDlAvZskFYaUAxv2Zu76uaV.jpg", - "cast_id": 186, - "character": "Woman with Shopping Cart", - "credit_id": "648fc6d2c2ff3d00ffbc5629", - "order": 50 - }, - { - "adult": false, - "gender": 1, - "id": 1220072, - "known_for_department": "Acting", - "name": "Lynn Farleigh", - "original_name": "Lynn Farleigh", - "popularity": 4.273, - "profile_path": "/mb4jBY5OcGl8WGiP1wQce7Khffk.jpg", - "cast_id": 187, - "character": "Judge", - "credit_id": "648fc6db263462012d4afdd0", - "order": 51 - }, - { - "adult": false, - "gender": 2, - "id": 123507, - "known_for_department": "Acting", - "name": "Martin Pemberton", - "original_name": "Martin Pemberton", - "popularity": 2.798, - "profile_path": null, - "cast_id": 188, - "character": "Ambulance Driver", - "credit_id": "648fc6e445765d010016d76c", - "order": 52 - }, - { - "adult": false, - "gender": 0, - "id": 4119391, - "known_for_department": "Acting", - "name": "Sarah Lawn", - "original_name": "Sarah Lawn", - "popularity": 0.6, - "profile_path": null, - "cast_id": 189, - "character": "Magician", - "credit_id": "648fc6ec45765d013be9e553", - "order": 53 - }, - { - "adult": false, - "gender": 2, - "id": 3339507, - "known_for_department": "Acting", - "name": "David Calvitto", - "original_name": "David Calvitto", - "popularity": 0.6, - "profile_path": null, - "cast_id": 190, - "character": "Batman Suit Performer", - "credit_id": "648fc6f7559d2200ff11b167", - "order": 54 - }, - { - "adult": false, - "gender": 2, - "id": 880, - "known_for_department": "Acting", - "name": "Ben Affleck", - "original_name": "Ben Affleck", - "popularity": 25.682, - "profile_path": "/u525jeDOzg9hVdvYfeehTGnw7Aa.jpg", - "cast_id": 59, - "character": "Bruce Wayne / Batman (uncredited)", - "credit_id": "60300ae444ea540040426820", - "order": 55 - }, - { - "adult": false, - "gender": 1, - "id": 90633, - "known_for_department": "Acting", - "name": "Gal Gadot", - "original_name": "Gal Gadot", - "popularity": 57.901, - "profile_path": "/qCJB1ACi5VjtY4ypXuv3hjAvbSu.jpg", - "cast_id": 112, - "character": "Diana Prince / Wonder Woman (uncredited)", - "credit_id": "644b90560c125505d47ae713", - "order": 56 - }, - { - "adult": false, - "gender": 2, - "id": 2963, - "known_for_department": "Acting", - "name": "Nicolas Cage", - "original_name": "Nicolas Cage", - "popularity": 94.247, - "profile_path": "/ar33qcWbEgREn07ZpXv5Pbj8hbM.jpg", - "cast_id": 223, - "character": "Superman (uncredited)", - "credit_id": "6492bf5b43cd54012598aeee", - "order": 57 - }, - { - "adult": false, - "gender": 2, - "id": 1461, - "known_for_department": "Acting", - "name": "George Clooney", - "original_name": "George Clooney", - "popularity": 26.005, - "profile_path": "/4s3wI0bqOP7K3hhcmKqV6m3GYiQ.jpg", - "cast_id": 122, - "character": "Bruce Wayne (uncredited)", - "credit_id": "648872a199259c01392d04b5", - "order": 58 - }, - { - "adult": false, - "gender": 2, - "id": 117642, - "known_for_department": "Acting", - "name": "Jason Momoa", - "original_name": "Jason Momoa", - "popularity": 55.838, - "profile_path": "/6dEFBpZH8C8OijsynkSajQT99Pb.jpg", - "cast_id": 121, - "character": "Arthur Curry / Aquaman (uncredited)", - "credit_id": "6480032099259c011c3e1a92", - "order": 59 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 2293, - "known_for_department": "Writing", - "name": "Frank Miller", - "original_name": "Frank Miller", - "popularity": 3.715, - "profile_path": "/2eqqLG9Sv4i1ZlM14wY2LTTEbld.jpg", - "credit_id": "648fc94842bf01013bbdebdb", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 3794, - "known_for_department": "Writing", - "name": "Bob Kane", - "original_name": "Bob Kane", - "popularity": 2.716, - "profile_path": "/vuXwrlqaUydA4t5SFVdQkK9KsZL.jpg", - "credit_id": "648fc82345765d013be9e631", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 0, - "id": 9161, - "known_for_department": "Costume & Make-Up", - "name": "Carmel Jackson", - "original_name": "Carmel Jackson", - "popularity": 0.848, - "profile_path": null, - "credit_id": "63e9a49363aad2007a64f92f", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 10788, - "known_for_department": "Art", - "name": "Steven Lawrence", - "original_name": "Steven Lawrence", - "popularity": 0.6, - "profile_path": null, - "credit_id": "60f290254c2592005e619a0c", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 1, - "id": 40694, - "known_for_department": "Crew", - "name": "Talila Craig", - "original_name": "Talila Craig", - "popularity": 1.22, - "profile_path": null, - "credit_id": "64a0b72c81da39010b8b094e", - "department": "Crew", - "job": "Utility Stunts" - }, - { - "adult": false, - "gender": 1, - "id": 40712, - "known_for_department": "Crew", - "name": "Eunice Huthart", - "original_name": "Eunice Huthart", - "popularity": 1.663, - "profile_path": null, - "credit_id": "64a0b73bc390c5014e3c59c4", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 40825, - "known_for_department": "Sound", - "name": "Benjamin Wallfisch", - "original_name": "Benjamin Wallfisch", - "popularity": 1.541, - "profile_path": "/dWcshjk0OUi3stGFFrwZIsYKZfQ.jpg", - "credit_id": "607dd7b9031deb00599c9f5f", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 2, - "id": 12795, - "known_for_department": "Acting", - "name": "Nikolaj Coster-Waldau", - "original_name": "Nikolaj Coster-Waldau", - "popularity": 24.63, - "profile_path": "/rpFOERbHkj7GWxkinUNiQ76sSGk.jpg", - "credit_id": "648fc888c3c891012d5e832e", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 1, - "id": 13009, - "known_for_department": "Costume & Make-Up", - "name": "Alexandra Byrne", - "original_name": "Alexandra Byrne", - "popularity": 0.6, - "profile_path": null, - "credit_id": "608d4c107b7b4d0057dc100d", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 2, - "id": 13611, - "known_for_department": "Acting", - "name": "Jack White", - "original_name": "Jack White", - "popularity": 3.843, - "profile_path": "/cqn3AKfLGtzKBsXHqHM3W5HNVeI.jpg", - "credit_id": "648fc897c2ff3d0139af02b3", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 18330, - "known_for_department": "Production", - "name": "Rob Cowan", - "original_name": "Rob Cowan", - "popularity": 1.332, - "profile_path": null, - "credit_id": "648fc86cc3c89100cadb1c1b", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 10830, - "known_for_department": "Production", - "name": "Toby Emmerich", - "original_name": "Toby Emmerich", - "popularity": 2.314, - "profile_path": "/mfkHPnmazcxDcjyVovNPzhUX1JN.jpg", - "credit_id": "63e9da73a2e60200b5eee572", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 23422, - "known_for_department": "Camera", - "name": "Henry Braham", - "original_name": "Henry Braham", - "popularity": 2.5, - "profile_path": "/8dyRB2OQn2wtHEqWbjpqkARBifk.jpg", - "credit_id": "60d20b7c95c0af0075dee45c", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 1, - "id": 23490, - "known_for_department": "Art", - "name": "Julia Dehoff", - "original_name": "Julia Dehoff", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63e9a4219512e1008cb7f1d9", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 40835, - "known_for_department": "Art", - "name": "Paul D. Austerberry", - "original_name": "Paul D. Austerberry", - "popularity": 0.959, - "profile_path": "/t9SHWHFPB5YAdvD5dJ5GP7ebTOO.jpg", - "credit_id": "5f0cef1ad5dbc20036e3e05f", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 2, - "id": 47365, - "known_for_department": "Production", - "name": "Walter Hamada", - "original_name": "Walter Hamada", - "popularity": 3.224, - "profile_path": "/cykm5UtrpVYMY6gc5CfFt6eXZXG.jpg", - "credit_id": "5b6dd4be0e0a267ef4150939", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 52935, - "known_for_department": "Directing", - "name": "John Francis Daley", - "original_name": "John Francis Daley", - "popularity": 18.483, - "profile_path": "/rKZL3e8gI2tQD6Kv0QojXK5sG4u.jpg", - "credit_id": "61c378402ac49900191c8933", - "department": "Writing", - "job": "Screenstory" - }, - { - "adult": false, - "gender": 2, - "id": 59930, - "known_for_department": "Editing", - "name": "Jason Ballantine", - "original_name": "Jason Ballantine", - "popularity": 2.615, - "profile_path": "/9gl7jGZpFeoepsFmb7Vi6vvFOKr.jpg", - "credit_id": "60f28ff8f5f1c50073e08a67", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 1, - "id": 112656, - "known_for_department": "Costume & Make-Up", - "name": "Victoria Down", - "original_name": "Victoria Down", - "popularity": 1.48, - "profile_path": null, - "credit_id": "63e9a47d6c849200c77373b8", - "department": "Costume & Make-Up", - "job": "Makeup Designer" - }, - { - "adult": false, - "gender": 2, - "id": 74569, - "known_for_department": "Writing", - "name": "Joby Harold", - "original_name": "Joby Harold", - "popularity": 2.237, - "profile_path": "/q3jMKt9f93fZwJHVQoov0hFAFwJ.jpg", - "credit_id": "648cdb51559d2200ad81853f", - "department": "Writing", - "job": "Screenstory" - }, - { - "adult": false, - "gender": 2, - "id": 87172, - "known_for_department": "Writing", - "name": "Mark Millar", - "original_name": "Mark Millar", - "popularity": 2.147, - "profile_path": "/oK9I2KfVM7zZZd6dD1gKBH8WrsX.jpg", - "credit_id": "648fcab3c3c891010ca5be32", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 135520, - "known_for_department": "Writing", - "name": "Marv Wolfman", - "original_name": "Marv Wolfman", - "popularity": 2.881, - "profile_path": "/rf9tFlKXpqsm7uHILuFgRzoBNs6.jpg", - "credit_id": "648fcae1c2ff3d00e2e12afc", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 175475, - "known_for_department": "Writing", - "name": "Cary Bates", - "original_name": "Cary Bates", - "popularity": 3.352, - "profile_path": null, - "credit_id": "648fca0e0f0da500ad25bd6d", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 198034, - "known_for_department": "Writing", - "name": "Bill Finger", - "original_name": "Bill Finger", - "popularity": 5.236, - "profile_path": "/jxdEBHtODH7OFEYXYIaYZEhB5ak.jpg", - "credit_id": "648fc829559d2200ad830632", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 2, - "id": 211962, - "known_for_department": "Writing", - "name": "Geoff Johns", - "original_name": "Geoff Johns", - "popularity": 4.171, - "profile_path": "/1hiQjkIkeFoiwvD4yIk2Dq6tnOa.jpg", - "credit_id": "648fcaa80f0da500ffa8daf9", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 928272, - "known_for_department": "Production", - "name": "Rich Delia", - "original_name": "Rich Delia", - "popularity": 3.755, - "profile_path": "/UiNvcLDmStXxpEmx6JrGKRI7UF.jpg", - "credit_id": "648cd9a9263462014e573113", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 2, - "id": 957353, - "known_for_department": "Directing", - "name": "Jeffrey Wetzel", - "original_name": "Jeffrey Wetzel", - "popularity": 1.8, - "profile_path": null, - "credit_id": "648fc874559d2200ad83066e", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 962164, - "known_for_department": "Art", - "name": "Jason Knox-Johnston", - "original_name": "Jason Knox-Johnston", - "popularity": 2.451, - "profile_path": null, - "credit_id": "60f29015635e78007cbefdc9", - "department": "Art", - "job": "Supervising Art Director" - }, - { - "adult": false, - "gender": 2, - "id": 966721, - "known_for_department": "Art", - "name": "Dominic Capon", - "original_name": "Dominic Capon", - "popularity": 1.066, - "profile_path": null, - "credit_id": "63e9a4d5a2e60200b5eeb223", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 2, - "id": 969705, - "known_for_department": "Editing", - "name": "Paul Machliss", - "original_name": "Paul Machliss", - "popularity": 0.885, - "profile_path": "/we1Y7sF1O4XPLoO4WywQ2YwcmlJ.jpg", - "credit_id": "60f2900362fcd30027ec9f83", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1072762, - "known_for_department": "Writing", - "name": "Otto Binder", - "original_name": "Otto Binder", - "popularity": 1.576, - "profile_path": null, - "credit_id": "648fcaa3c2ff3d00e2e12ac9", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 1072763, - "known_for_department": "Writing", - "name": "Al Plastino", - "original_name": "Al Plastino", - "popularity": 0.734, - "profile_path": null, - "credit_id": "648fcad545765d00c61bb35d", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 1, - "id": 1094761, - "known_for_department": "Production", - "name": "Bárbara Muschietti", - "original_name": "Bárbara Muschietti", - "popularity": 2.08, - "profile_path": "/3VieMn9ekZX4I1BdwxhJePzpYk8.jpg", - "credit_id": "604c42bc1065d30029360adf", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1113116, - "known_for_department": "Directing", - "name": "Andy Muschietti", - "original_name": "Andy Muschietti", - "popularity": 2.746, - "profile_path": "/mzOMGWzqFFLqIqa2WkDv5I1IxHE.jpg", - "credit_id": "5d1bad0555b0c031756ab9bf", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 1202850, - "known_for_department": "Costume & Make-Up", - "name": "Mike Smithson", - "original_name": "Mike Smithson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63e9a4aca2e602007bb802e2", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1222597, - "known_for_department": "Writing", - "name": "Mort Weisinger", - "original_name": "Mort Weisinger", - "popularity": 2.227, - "profile_path": "/czoIFxONXNoWee6hPgcLXMCbGLc.jpg", - "credit_id": "648fca9d263462014e58cd61", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1236448, - "known_for_department": "Writing", - "name": "William Moulton Marston", - "original_name": "William Moulton Marston", - "popularity": 2.97, - "profile_path": "/o5wbY2yg6RDAC9VXoQKGpN2YeBP.jpg", - "credit_id": "648fc830263462014e58cbb9", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 2, - "id": 1236679, - "known_for_department": "Directing", - "name": "Jonathan Goldstein", - "original_name": "Jonathan Goldstein", - "popularity": 3.655, - "profile_path": "/s1fwSaxlYvw3KdmRvT1ZSYhsEkJ.jpg", - "credit_id": "61c3784e0102c9001d1e32e1", - "department": "Writing", - "job": "Screenstory" - }, - { - "adult": false, - "gender": 2, - "id": 1263443, - "known_for_department": "Sound", - "name": "Brandon Jones", - "original_name": "Brandon Jones", - "popularity": 1.469, - "profile_path": null, - "credit_id": "63e9a5429512e100a97e20db", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1286900, - "known_for_department": "Acting", - "name": "Andy Kubert", - "original_name": "Andy Kubert", - "popularity": 1.171, - "profile_path": null, - "credit_id": "648fcaae42bf010101bf6381", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 1, - "id": 1342656, - "known_for_department": "Sound", - "name": "Nancy Nugent", - "original_name": "Nancy Nugent", - "popularity": 0.942, - "profile_path": null, - "credit_id": "63e9a57b1277780081a46134", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1356195, - "known_for_department": "Acting", - "name": "Jerry Robinson", - "original_name": "Jerry Robinson", - "popularity": 2.124, - "profile_path": "/606OVQrzUFksbBERMiNxsm8MQtL.jpg", - "credit_id": "648fca972f8d0900e38651ec", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1368162, - "known_for_department": "Creator", - "name": "Gardner Fox", - "original_name": "Gardner Fox", - "popularity": 1.054, - "profile_path": null, - "credit_id": "5844b6fcc3a368478d00f67e", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 0, - "id": 1384722, - "known_for_department": "Art", - "name": "Marco Anton Restivo", - "original_name": "Marco Anton Restivo", - "popularity": 0.618, - "profile_path": null, - "credit_id": "60f2903a7d5db500458b730c", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1394357, - "known_for_department": "Acting", - "name": "Kenny Knight", - "original_name": "Kenny Knight", - "popularity": 0.6, - "profile_path": "/o23Emg1L3Dstu3GgvnifuLNvM2J.jpg", - "credit_id": "64a0b752c390c500aeb0dacc", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 1394766, - "known_for_department": "Crew", - "name": "Brad Minnich", - "original_name": "Brad Minnich", - "popularity": 7.256, - "profile_path": null, - "credit_id": "6457ff9e77d23b0119e01c1b", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1397011, - "known_for_department": "Production", - "name": "Michael Disco", - "original_name": "Michael Disco", - "popularity": 1.4, - "profile_path": null, - "credit_id": "604c42af4f9a99003c5ea958", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1401362, - "known_for_department": "Visual Effects", - "name": "John 'D.J.' Des Jardin", - "original_name": "John 'D.J.' Des Jardin", - "popularity": 1.114, - "profile_path": null, - "credit_id": "648cd96cc2ff3d00ad01404a", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 1404845, - "known_for_department": "Visual Effects", - "name": "Tamara Watts Kent", - "original_name": "Tamara Watts Kent", - "popularity": 1.708, - "profile_path": null, - "credit_id": "648cd989559d22011c4b7b16", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1413508, - "known_for_department": "Visual Effects", - "name": "Bryan Hirota", - "original_name": "Bryan Hirota", - "popularity": 1.266, - "profile_path": null, - "credit_id": "6457ff941b70ae01260bacce", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1417828, - "known_for_department": "Visual Effects", - "name": "Andrew Lockley", - "original_name": "Andrew Lockley", - "popularity": 1.135, - "profile_path": "/5K5XTIK5ny3qZAn3SzLWehVRqyL.jpg", - "credit_id": "6457ff306c849200e35d1950", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1433721, - "known_for_department": "Sound", - "name": "Greg ten Bosch", - "original_name": "Greg ten Bosch", - "popularity": 1.684, - "profile_path": null, - "credit_id": "63e9a55bd388ae00b63a6d39", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1440664, - "known_for_department": "Crew", - "name": "Isaac Hamon", - "original_name": "Isaac Hamon", - "popularity": 0.739, - "profile_path": "/yBGcINj11twiOoR4vckwd5VqBnY.jpg", - "credit_id": "64a0b73f81da39010b8b0957", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 1446082, - "known_for_department": "Visual Effects", - "name": "Scott Vosbury", - "original_name": "Scott Vosbury", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6457ffa877d23b00e2f4d346", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 1448221, - "known_for_department": "Writing", - "name": "Christina Hodson", - "original_name": "Christina Hodson", - "popularity": 5.366, - "profile_path": "/2Y4wDj55n9UOEaaSwDPu9Nso0qH.jpg", - "credit_id": "5d1bad184dc34a000f9fe928", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 0, - "id": 1460124, - "known_for_department": "Art", - "name": "Paul Savulescu", - "original_name": "Paul Savulescu", - "popularity": 0.98, - "profile_path": null, - "credit_id": "63e9a521d388ae00806274f5", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 1, - "id": 1486198, - "known_for_department": "Production", - "name": "Kate Ringsell", - "original_name": "Kate Ringsell", - "popularity": 0.716, - "profile_path": null, - "credit_id": "648cd9b0c3c891012d5cf4ca", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 2, - "id": 1563756, - "known_for_department": "Directing", - "name": "Michael Lerman", - "original_name": "Michael Lerman", - "popularity": 2.598, - "profile_path": "/kztQ2HnT4Hl3IbyrS9PGFcVmqsQ.jpg", - "credit_id": "648cd927559d2200ad8184ae", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 1, - "id": 1564101, - "known_for_department": "Production", - "name": "Marianne Jenkins", - "original_name": "Marianne Jenkins", - "popularity": 1.436, - "profile_path": null, - "credit_id": "604c42c81d538600727621eb", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1645448, - "known_for_department": "Crew", - "name": "Lee Millham", - "original_name": "Lee Millham", - "popularity": 1.057, - "profile_path": null, - "credit_id": "64a0b76381da3900ad2bb699", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 1717345, - "known_for_department": "Sound", - "name": "Randy Torres", - "original_name": "Randy Torres", - "popularity": 1.4, - "profile_path": null, - "credit_id": "63e9a54e63aad200e05dcc78", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1718184, - "known_for_department": "Writing", - "name": "Paul Norris", - "original_name": "Paul Norris", - "popularity": 1.704, - "profile_path": "/rHDHSx4g4nHU2BzXIB8LuMBx7Qk.jpg", - "credit_id": "648fca43559d2200e20719e1", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1718424, - "known_for_department": "Writing", - "name": "Harry Lampert", - "original_name": "Harry Lampert", - "popularity": 1.223, - "profile_path": null, - "credit_id": "5844b6d0c3a368478d00f65d", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 2, - "id": 1726488, - "known_for_department": "Writing", - "name": "George Pérez", - "original_name": "George Pérez", - "popularity": 1.18, - "profile_path": "/9FBgan1WokYEBYglMnY7bMy8q1H.jpg", - "credit_id": "648fc94e0f0da5013903a1ff", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1726489, - "known_for_department": "Writing", - "name": "John Broome", - "original_name": "John Broome", - "popularity": 1.149, - "profile_path": null, - "credit_id": "648fc9162f8d0900e38650be", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1738711, - "known_for_department": "Writing", - "name": "Carmine Infantino", - "original_name": "Carmine Infantino", - "popularity": 1.4, - "profile_path": "/rd7rptOdCetoLkITsPWyyxhHwEF.jpg", - "credit_id": "648cd8fac3c891012d5cf497", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 0, - "id": 1753309, - "known_for_department": "Crew", - "name": "Joel Conlan", - "original_name": "Joel Conlan", - "popularity": 0.754, - "profile_path": null, - "credit_id": "64a0b70a8c0a48010176904b", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 1771001, - "known_for_department": "Art", - "name": "Will Houghton-Connell", - "original_name": "Will Houghton-Connell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63e9a4e663aad2008f864df1", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 1821154, - "known_for_department": "Costume & Make-Up", - "name": "Emmy Beech", - "original_name": "Emmy Beech", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63e9a4729512e100e3d15ef9", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1873714, - "known_for_department": "Costume & Make-Up", - "name": "Marzenna Fus-Mickiewicz", - "original_name": "Marzenna Fus-Mickiewicz", - "popularity": 0.98, - "profile_path": null, - "credit_id": "63e9a487a2e60200b5eeb1e3", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1931606, - "known_for_department": "Costume & Make-Up", - "name": "Gabor Kerekes", - "original_name": "Gabor Kerekes", - "popularity": 0.612, - "profile_path": null, - "credit_id": "63e9a49f9512e100e3d15f19", - "department": "Costume & Make-Up", - "job": "Makeup Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2137200, - "known_for_department": "Crew", - "name": "Robert Kanigher", - "original_name": "Robert Kanigher", - "popularity": 2.725, - "profile_path": "/6jmF1hZXhwMTf1C1Pb2HSEwTkWI.jpg", - "credit_id": "648cd8f42f8d0900e384c87c", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 2, - "id": 2137704, - "known_for_department": "Crew", - "name": "Curt Swan", - "original_name": "Curt Swan", - "popularity": 0.668, - "profile_path": "/nlLfbl0s3O6E4qyn4oPawtMRX2Y.jpg", - "credit_id": "648fc975559d2200c57769b1", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 2137803, - "known_for_department": "Crew", - "name": "Dick Sprang", - "original_name": "Dick Sprang", - "popularity": 0.704, - "profile_path": "/3zg7AdfXx05Ra2M2S6aPw4pudLs.jpg", - "credit_id": "648fcadb26346200ae1ca24e", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 2236047, - "known_for_department": "Crew", - "name": "Paul Bailey", - "original_name": "Paul Bailey", - "popularity": 0.733, - "profile_path": null, - "credit_id": "64a0b70f4a52f800af12250a", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 1, - "id": 2243625, - "known_for_department": "Crew", - "name": "Elizabeth Donker Curtius", - "original_name": "Elizabeth Donker Curtius", - "popularity": 0.798, - "profile_path": "/jbZuxzXUL6IwG56NjS4LHKDBpG1.jpg", - "credit_id": "64a6258fc3bffe00e78e059c", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 2292187, - "known_for_department": "Crew", - "name": "Matt Sherren", - "original_name": "Matt Sherren", - "popularity": 0.621, - "profile_path": null, - "credit_id": "64a0b76fd5191f01393e02a2", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 2341498, - "known_for_department": "Art", - "name": "Felicity Hickman", - "original_name": "Felicity Hickman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63e9a4c89512e1008462b639", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 2423282, - "known_for_department": "Crew", - "name": "Aidan Brindle", - "original_name": "Aidan Brindle", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0b6edd5191f00ac925686", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 2441054, - "known_for_department": "Production", - "name": "Matías Lértora", - "original_name": "Matías Lértora", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648fc84345765d00ac6aa596", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 2475246, - "known_for_department": "Production", - "name": "Galen Vaisman", - "original_name": "Galen Vaisman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61c37807a93d250061a82202", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 2476295, - "known_for_department": "Crew", - "name": "Liam Coote", - "original_name": "Liam Coote", - "popularity": 0.6, - "profile_path": "/e4Wj17jM6hoVmmT0ocd8cmFHNck.jpg", - "credit_id": "64a0b6f18c0a4800c76403e0", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 2, - "id": 2698446, - "known_for_department": "Visual Effects", - "name": "Leonardo Costa", - "original_name": "Leonardo Costa", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6457ff436aa8e00139baadf0", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2752091, - "known_for_department": "Crew", - "name": "Adam Bowman", - "original_name": "Adam Bowman", - "popularity": 0.98, - "profile_path": null, - "credit_id": "64a0b700c390c500eb34e41a", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 1, - "id": 2890978, - "known_for_department": "Crew", - "name": "Claudia Heinz", - "original_name": "Claudia Heinz", - "popularity": 0.662, - "profile_path": "/xEhjy00x5NAC7Hluo93vIf80rfQ.jpg", - "credit_id": "64a0b725d5191f01393e0290", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 2, - "id": 2916185, - "known_for_department": "Writing", - "name": "David Mazzucchelli", - "original_name": "David Mazzucchelli", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648fca2d42bf0100e49f7706", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 2921418, - "known_for_department": "Acting", - "name": "Joseph Paxton", - "original_name": "Joseph Paxton", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0b75e4a52f800c9948367", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 3043167, - "known_for_department": "Art", - "name": "Dominique Law", - "original_name": "Dominique Law", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63e9a5099512e100a97e20b4", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 3149571, - "known_for_department": "Art", - "name": "Laura Mickiewicz", - "original_name": "Laura Mickiewicz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63e9a43aa2e60200932a9b59", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 1, - "id": 3291297, - "known_for_department": "Crew", - "name": "Ramona Fradon", - "original_name": "Ramona Fradon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648fca14c2ff3d011cba510c", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 3300601, - "known_for_department": "Crew", - "name": "Scott Kolins", - "original_name": "Scott Kolins", - "popularity": 1.229, - "profile_path": null, - "credit_id": "648fca1c559d2200ad83078d", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 3362393, - "known_for_department": "Costume & Make-Up", - "name": "Katie Jones", - "original_name": "Katie Jones", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63e9a59d63aad200e05dccae", - "department": "Costume & Make-Up", - "job": "Set Costumer" - }, - { - "adult": false, - "gender": 2, - "id": 3371264, - "known_for_department": "Crew", - "name": "Irv Novick", - "original_name": "Irv Novick", - "popularity": 0.745, - "profile_path": null, - "credit_id": "648fcac1559d2200ff11b422", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 3452999, - "known_for_department": "Crew", - "name": "Francis Manapul", - "original_name": "Francis Manapul", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648fc942559d2200e207193b", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 3500848, - "known_for_department": "Crew", - "name": "Harry G. Peter", - "original_name": "Harry G. Peter", - "popularity": 0.77, - "profile_path": null, - "credit_id": "648fca4f559d220139bea1d2", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 3557752, - "known_for_department": "Crew", - "name": "Ashley Beck", - "original_name": "Ashley Beck", - "popularity": 2.179, - "profile_path": null, - "credit_id": "64a0b6fb8c0a480101769044", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 3559077, - "known_for_department": "Crew", - "name": "Rick English", - "original_name": "Rick English", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0b71fd5191f01393e028d", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 2, - "id": 3611367, - "known_for_department": "Crew", - "name": "Mike Baron", - "original_name": "Mike Baron", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648fc8a90f0da5011c2b3402", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 3793729, - "known_for_department": "Art", - "name": "Christine Lois", - "original_name": "Christine Lois", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63e9a4f8a2e60200853568a9", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 3918499, - "known_for_department": "Art", - "name": "Sian Midgley", - "original_name": "Sian Midgley", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63e9a5146c84920097fffa04", - "department": "Art", - "job": "Standby Art Director" - }, - { - "adult": false, - "gender": 1, - "id": 4116185, - "known_for_department": "Sound", - "name": "Kim Baum", - "original_name": "Kim Baum", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648cd955263462012d497b5f", - "department": "Sound", - "job": "Music Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 4119399, - "known_for_department": "Crew", - "name": "Dave Johnson", - "original_name": "Dave Johnson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648fc93b2f8d0900c666920a", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 4119400, - "known_for_department": "Crew", - "name": "Joe Quinones", - "original_name": "Joe Quinones", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648fc96d0f0da500e2b2a7f5", - "department": "Crew", - "job": "Thanks" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Fighting Dark Flash Behind The Scenes", - "key": "8YV2hzjGjJw", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-08-29T16:00:05.000Z", - "id": "64ee1d405258ae012ca6d2ed" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Flash Suit", - "key": "Rt33T_hykfs", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-08-15T16:30:05.000Z", - "id": "64e35a5eb77d4b11434a2a88" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Supergirl vs. Zod", - "key": "DTUcaDb-2r0", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-08-11T18:30:13.000Z", - "id": "64e35237076ce843ba73aa88" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Spaghetti Theory", - "key": "7U6QLXDivv4", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-08-04T17:00:05.000Z", - "id": "64d3482ddd926a01e627061f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Let's Get Nuts: Batman Returns... Again", - "key": "Y9RfhbH0GEQ", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-21T16:45:02.000Z", - "id": "64c456accadb6b00c828eec0" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Extended Preview", - "key": "a7LknNfORNI", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-07-18T17:00:00.000Z", - "id": "64b6e9d837806200e2acf168" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Abbey Road Recording Sessions - \"Baby Shower\"", - "key": "p1Fafb702Vo", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-01T16:00:36.000Z", - "id": "64a590a25a991500c604089d" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Abbey Road Recording Sessions - \"Worlds Collide\"", - "key": "2OiqqiG3pyM", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-06-24T16:00:02.000Z", - "id": "649a28b67e348300e237683f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "London Projection", - "key": "GRAkxHVNu9s", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-16T16:18:29.000Z", - "id": "649021f52f8d090100ab5173" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Supergirl Featurette", - "key": "ZFQ7pYcbbis", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-31T11:39:16.000Z", - "id": "647c19a993828e011624ca51" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Final Trailer", - "key": "jprhe-cWKGs", - "site": "YouTube", - "size": 2160, - "type": "Trailer", - "official": true, - "published_at": "2023-05-24T00:00:24.000Z", - "id": "646d5c05d185720140330a6e" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Flashback Fridays: Batman Returns..Again!", - "key": "obwv4OEKjyg", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-19T22:00:22.000Z", - "id": "64682a7933a376013b3daefc" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer 2", - "key": "r51cYVZWKdY", - "site": "YouTube", - "size": 2160, - "type": "Trailer", - "official": true, - "published_at": "2023-04-25T19:00:18.000Z", - "id": "644823dec51acd0566a95dcc" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Teaser", - "key": "xMxUg7IV_dk", - "site": "YouTube", - "size": 720, - "type": "Teaser", - "official": true, - "published_at": "2023-02-13T01:15:37.000Z", - "id": "63eafaea813cb600dc066760" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Big Game TV Spot", - "key": "M0zdJOM_5Vg", - "site": "YouTube", - "size": 2160, - "type": "Teaser", - "official": true, - "published_at": "2023-02-13T00:23:56.000Z", - "id": "63e983cb9512e1008cb7dbbf" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "hebWYacbdvc", - "site": "YouTube", - "size": 2160, - "type": "Trailer", - "official": true, - "published_at": "2023-02-12T22:59:38.000Z", - "id": "63e973b01277780079f29a92" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/yF1eOkaYvwiORauRCPWznV9xVvi.jpg", - "vote_average": 5.638, - "vote_count": 12, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/xGIeqQunSj5dxGZVKzNNr9W4vps.jpg", - "vote_average": 5.582, - "vote_count": 9, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/s2JS5hUBiHlz1Mlxi4XNpIzcUAW.jpg", - "vote_average": 5.39, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 1555, - "iso_639_1": null, - "file_path": "/5oZ8tazqOfPjh4H2dhAlAMDvncq.jpg", - "vote_average": 5.334, - "vote_count": 11, - "width": 2764 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/1YaWl2oHo61HWraD7dKW5OAjrL4.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/beJrLpub7UwBStu038mJFiApZ3o.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/x1WErt8qjP2mQO6LB8odT3bpUCe.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/e5SxkGcTf8djmgFjlwVDMMpojb1.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1943, - "iso_639_1": null, - "file_path": "/5YsXVCX3AMJhW85yuEXzqYBvXfF.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 3455 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/kIX6VS5FTMURcK3WlNNkPss60e4.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/9lL3VVktfy8ny774XP00tJHXGvP.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/jJaXsmmwz6SlEY2lOPrzf0huwpy.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/zcngBdcbbH1rL1IzS0gsAEjAnWk.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/mI3SPntNSu6KlrSZB0ysKHKiKuS.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/jPJiK5PiiVllJ7IMvJZ72FazXlD.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/sP5S6AZykc6SNt54XOoIfP3wG3n.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/e327y7QWR3a9fDKLUkgLPJavvkW.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/ux6528axisPMMVOrlYELdmVjffq.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 1555, - "iso_639_1": null, - "file_path": "/fEe2csLOUsTyaLdCccVJfFeJzhx.jpg", - "vote_average": 5.206, - "vote_count": 9, - "width": 2764 - }, - { - "aspect_ratio": 1.78, - "height": 1154, - "iso_639_1": "en", - "file_path": "/mLY3oqwFkNZ65ZMtI5CTKFFz60i.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 2054 - }, - { - "aspect_ratio": 1.778, - "height": 1365, - "iso_639_1": "en", - "file_path": "/aaxyTDpFyjFTVlBUssKUkXdhPEO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2427 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/qhsumJrFkYhjwksPFKJNcZjgKva.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/1ucy86ZFVbzx3LBzYNvins1e4Gl.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/oEE9ogPgZT7D3zcGAKVIjAG6QGB.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": null, - "file_path": "/imrDnp8TE0InS4D8sULYKeAxyVF.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1280 - }, - { - "aspect_ratio": 1.777, - "height": 1555, - "iso_639_1": null, - "file_path": "/u0Idv93k1EPYahn1QjJXexbT2g2.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2764 - }, - { - "aspect_ratio": 1.779, - "height": 1138, - "iso_639_1": null, - "file_path": "/cJDqNlTnqo1xBORIrILhtDib53w.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2024 - }, - { - "aspect_ratio": 1.778, - "height": 1650, - "iso_639_1": null, - "file_path": "/fUVK7iUF0k9dU3MwV5MIKWMKGys.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2934 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/wToCyYiclGdNF2uARIygZXWVeVf.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/21TjCM0B20nxwksMoYkC5H9qoun.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/6GIpI3X65J6DT2nSTSga9LnanGJ.jpg", - "vote_average": 5.11, - "vote_count": 15, - "width": 3840 - }, - { - "aspect_ratio": 1.779, - "height": 917, - "iso_639_1": null, - "file_path": "/l9h3XiVH38ZWnEmR8VokTXz5cGB.jpg", - "vote_average": 5.08, - "vote_count": 9, - "width": 1631 - }, - { - "aspect_ratio": 1.777, - "height": 1555, - "iso_639_1": null, - "file_path": "/eVOLW3JnHh9dIeoCwI2PzDmWTdg.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 2764 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/mDmWLL1IzXf0jv1Cla174fR7FlF.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": null, - "file_path": "/hnsSBrfQ0mSSB68Q9ZTJVhyJ9N1.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1280 - }, - { - "aspect_ratio": 1.777, - "height": 1688, - "iso_639_1": null, - "file_path": "/7e9MVGg8efOhoA2R9XhZcGWTC5Z.jpg", - "vote_average": 5.022, - "vote_count": 10, - "width": 3000 - }, - { - "aspect_ratio": 1.776, - "height": 1010, - "iso_639_1": null, - "file_path": "/3RzSfGddAlv6hIFD165xsZu8BcI.jpg", - "vote_average": 5.01, - "vote_count": 8, - "width": 1794 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": null, - "file_path": "/94ivMfHXaMOlIDvhNaXbeYLKMnO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/zuqKAc34OxYtwmX0wuD3y0jl7RB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/npHNtWirLpcjl1umS7DVGh6XZhj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/aEMflEUniBJ9KpEFKDtwsaq3oyN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1200, - "iso_639_1": "th", - "file_path": "/qlEEBD3jPxjj1Gp9DNTHqF6XPcW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2133 - }, - { - "aspect_ratio": 1.777, - "height": 1688, - "iso_639_1": null, - "file_path": "/1h4aKG7ZJ3q4SoIO7hfdwzGFIzC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3000 - }, - { - "aspect_ratio": 1.777, - "height": 1688, - "iso_639_1": null, - "file_path": "/kYOpy1v0lk7VOrJouq40jckwbXo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3000 - }, - { - "aspect_ratio": 1.777, - "height": 1688, - "iso_639_1": null, - "file_path": "/v6qts7V0xRcuT5cR0L2wEQMIh9H.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3000 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/tZ439Os5dyYkKKJ7XjyMAGJkT0J.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/8vgRcm246X2QAqaBPPHAfTM4T93.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/sIzQKVbwgR6iEEHlaIZVbsaUqmo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/fiXlA8hQqjjjhCIN6H1SaKtCQ9D.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/2ltG8wDai3N3VALmSZRAOQ35q72.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/fsTH1oJHEqNRfvAKfCsZIrfCwQB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/pO4CWB3dyBivXR0014RtQFi2U5R.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/2qPOe3mDuYvaubJbLLa3iiAhvdW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/9va6rgBIsmr6XozMFDtjFReS2Qv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/cYjOePqDeGM2P49LiEAaQ39H7Ot.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/hZnHUTHFONsT5Wj36i35L2EkdwS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/a2j9j9z0O0sZGpRgCQDDt2eVMl3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/pgOD7rSmFOBrzTFN2n79hXYxYqQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "cs", - "file_path": "/AtOfqLMpIAvTBw6faGaSi0pGNwr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "sk", - "file_path": "/76WBsH0LvB8c7J7whHhrBwNjKKJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "cs", - "file_path": "/fPSoIGT9rQp9EHk7KTWXBphMDOS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/8JPtI7YLeUQLOD05Gf1ZwRFw0ay.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "cn", - "file_path": "/81Go51vzsQKiMEHxvrJYwr4ryFn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.777, - "height": 1631, - "iso_639_1": null, - "file_path": "/l7lgs45dFZOI2PEwUItPO9ZlTPp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2899 - } - ], - "logos": [ - { - "aspect_ratio": 2.647, - "height": 295, - "iso_639_1": "en", - "file_path": "/caIauyJYJzoGYORxekr4FzxbaVZ.png", - "vote_average": 5.384, - "vote_count": 2, - "width": 781 - }, - { - "aspect_ratio": 2.521, - "height": 1287, - "iso_639_1": "en", - "file_path": "/uc0c80tcRls7YOBTL9LPAn9068Q.png", - "vote_average": 5.318, - "vote_count": 3, - "width": 3245 - }, - { - "aspect_ratio": 1.895, - "height": 1298, - "iso_639_1": "en", - "file_path": "/cwKD6pHmuqYXwKyvp3WRQQ52ZWH.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 2460 - }, - { - "aspect_ratio": 1.895, - "height": 1298, - "iso_639_1": "en", - "file_path": "/9DvA4oKaco5b0DlZOIkEXKAGinj.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 2460 - }, - { - "aspect_ratio": 1.433, - "height": 1298, - "iso_639_1": "th", - "file_path": "/1zNeboYeLPy0eJZfeqSvxRtKNKN.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1860 - }, - { - "aspect_ratio": 1.898, - "height": 1288, - "iso_639_1": "en", - "file_path": "/tc5roQaVPWRe0eVZPeCisBapUTC.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 2444 - }, - { - "aspect_ratio": 1.425, - "height": 200, - "iso_639_1": "zh", - "file_path": "/8NYibp44Qkr6rpYNjp0YBaiyHaa.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 285 - }, - { - "aspect_ratio": 1.613, - "height": 2439, - "iso_639_1": "en", - "file_path": "/eEgk99bEnrF2tur0tGvxpT70tEC.png", - "vote_average": 5.246, - "vote_count": 2, - "width": 3935 - }, - { - "aspect_ratio": 1.895, - "height": 1298, - "iso_639_1": "en", - "file_path": "/u92O7uc5qwFCrdEU6J5jVVjB8JN.png", - "vote_average": 5.246, - "vote_count": 2, - "width": 2460 - }, - { - "aspect_ratio": 2.316, - "height": 294, - "iso_639_1": "en", - "file_path": "/458LMSgCkQXdvrAD1trdf69myOe.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 681 - }, - { - "aspect_ratio": 1.537, - "height": 296, - "iso_639_1": "en", - "file_path": "/2bXd3J6SH8l00brPew6YmuuSN1o.png", - "vote_average": 0, - "vote_count": 0, - "width": 455 - }, - { - "aspect_ratio": 4.245, - "height": 184, - "iso_639_1": "en", - "file_path": "/2hIQxiFtXEd6BtOt6bb60NGvurK.png", - "vote_average": 0, - "vote_count": 0, - "width": 781 - }, - { - "aspect_ratio": 2.656, - "height": 294, - "iso_639_1": "en", - "file_path": "/itWRXWxoCJnSZMUfJk4dohtv6QY.png", - "vote_average": 0, - "vote_count": 0, - "width": 781 - }, - { - "aspect_ratio": 1.455, - "height": 536, - "iso_639_1": "uk", - "file_path": "/sSnZEYzXX2yS3Ebttaqz715YgcO.png", - "vote_average": 0, - "vote_count": 0, - "width": 780 - }, - { - "aspect_ratio": 1.004, - "height": 254, - "iso_639_1": "th", - "file_path": "/u6FgmFZEtTeCMjMp0A1zmIbTxYG.png", - "vote_average": 0, - "vote_count": 0, - "width": 255 - }, - { - "aspect_ratio": 1.636, - "height": 357, - "iso_639_1": "ko", - "file_path": "/eBqhurROk9QTAujlxbcetYu1rdt.png", - "vote_average": 0, - "vote_count": 0, - "width": 584 - }, - { - "aspect_ratio": 1.622, - "height": 957, - "iso_639_1": "cn", - "file_path": "/94xqdD3arBNaNypTY4ND2sUjo6F.png", - "vote_average": 0, - "vote_count": 0, - "width": 1552 - }, - { - "aspect_ratio": 1.39, - "height": 692, - "iso_639_1": "zh", - "file_path": "/lUfZ7oXNKFypgR3qfL4i8pn6PtP.png", - "vote_average": 0, - "vote_count": 0, - "width": 962 - }, - { - "aspect_ratio": 5.174, - "height": 92, - "iso_639_1": "en", - "file_path": "/n1Ph6J5XSSJlBwsQTRvWzpMf0vF.png", - "vote_average": 0, - "vote_count": 0, - "width": 476 - }, - { - "aspect_ratio": 2.056, - "height": 746, - "iso_639_1": "ru", - "file_path": "/r8qJcffhKaoOOr3ptNqiu8eM19Y.png", - "vote_average": 0, - "vote_count": 0, - "width": 1534 - }, - { - "aspect_ratio": 1.899, - "height": 1298, - "iso_639_1": "hu", - "file_path": "/e5wAgtD8Gs0sDECX9stdJfFB7Hh.png", - "vote_average": 0, - "vote_count": 0, - "width": 2465 - }, - { - "aspect_ratio": 3.361, - "height": 1285, - "iso_639_1": "th", - "file_path": "/tp7rckRtkwhPu72gYx93lwblcnR.png", - "vote_average": 0, - "vote_count": 0, - "width": 4319 - }, - { - "aspect_ratio": 4.234, - "height": 171, - "iso_639_1": "en", - "file_path": "/jiGrO9MDRh0jKKC5tkJ0WY3cCqw.png", - "vote_average": 0, - "vote_count": 0, - "width": 724 - }, - { - "aspect_ratio": 2.34, - "height": 1296, - "iso_639_1": "ko", - "file_path": "/6xEz7nO0c8XuL66pYzY8ecPG47R.png", - "vote_average": 0, - "vote_count": 0, - "width": 3033 - }, - { - "aspect_ratio": 1.396, - "height": 1299, - "iso_639_1": "ko", - "file_path": "/nGNHkCtYVfuAGL0koIhtGKLWYlH.png", - "vote_average": 0, - "vote_count": 0, - "width": 1813 - }, - { - "aspect_ratio": 1.703, - "height": 960, - "iso_639_1": "bg", - "file_path": "/kAFIiVg9R0B5218k6iovB2dSRtE.png", - "vote_average": 0, - "vote_count": 0, - "width": 1635 - }, - { - "aspect_ratio": 1.417, - "height": 357, - "iso_639_1": "zh", - "file_path": "/rB1G6TybmKm7taUd95JNeDqNk7F.png", - "vote_average": 0, - "vote_count": 0, - "width": 506 - }, - { - "aspect_ratio": 1.427, - "height": 267, - "iso_639_1": "zh", - "file_path": "/j7pFDLcqmMNfpHB5Tp0ZJdKdleX.png", - "vote_average": 0, - "vote_count": 0, - "width": 381 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/rktDFPbfHfUbArZ6OOOKsXcv0Bm.jpg", - "vote_average": 5.308, - "vote_count": 53, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/4vjKJRcO1LO36JZYMbbjbx421YN.jpg", - "vote_average": 5.832, - "vote_count": 22, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/mlNNmAfyHU8hSiHs8PO4GajMnIK.jpg", - "vote_average": 5.61, - "vote_count": 28, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "cn", - "file_path": "/6bDHQPVP0kXvxgHf7uvKzsDWrch.jpg", - "vote_average": 5.456, - "vote_count": 5, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/x9Qc86JEyYkAKsdzjDpS5kbaAB7.jpg", - "vote_average": 5.456, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "vi", - "file_path": "/cmjiTVMuyRj3Bp8Dg306UksHBDc.jpg", - "vote_average": 5.454, - "vote_count": 3, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cLqyz8aMgR0veS3U1ESKeIwD0TA.jpg", - "vote_average": 5.4, - "vote_count": 16, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/oOpqVIBaQ5tg8ZBdNUg3mKPF56W.jpg", - "vote_average": 5.398, - "vote_count": 14, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/b1YUXJ0Crdf0xywYFNlHHaQjixI.jpg", - "vote_average": 5.396, - "vote_count": 12, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cAtFJxmHL4PCIpueQhwMIDi0ij1.jpg", - "vote_average": 5.394, - "vote_count": 10, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/gNbZNuZ2fBferjJspfmvnskODGc.jpg", - "vote_average": 5.39, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/vjEZrx9vSP40NKXhNxAGxvHxL9y.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2964, - "iso_639_1": "ko", - "file_path": "/muD7qu9UagO08dZBout1YXwdE6a.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 1976 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/lp0EFLwAjJ4JC3CxWo30E6ARSzk.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/a2eLoc3HOXE23SQjLrRqCRl73AE.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/itYONYDHpJqTuu8BCXAtHxgpglq.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/os4an6H5zgZ1LUFvYiH4yuV6kvK.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/1Skp4ZD2pzE1Qp7wOn2hNTGKQxT.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1229, - "iso_639_1": "ja", - "file_path": "/ojO2JW9h4ORSkjRZv5gpU4lAzA.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 830 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "id", - "file_path": "/yrrsBUQzBYkPn9btngf5DTHOSyA.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1200 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/ghW33P7hV4RVSrLMBkMBgZh13ym.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1382 - }, - { - "aspect_ratio": 0.676, - "height": 2880, - "iso_639_1": "sk", - "file_path": "/3739cpiE6vFakm6LQd600wbUFtp.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1948 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/z8AbUqkTE5CsCtL39LTnymuBAcw.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": null, - "file_path": "/f21vip58dhwB0rF31j9AYYvC8Xa.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/8uI3sF8V9AqleQY5r779rrEzQ9Z.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/jiNlu6UKYfqa9gckFjzhB9x4sdQ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/fFe8CWZQTVtOACKtJ8sBDWj7pXq.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/93FsGzjoyQOFlsIEaM6uVZPOs.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/7ssevlDIjihqwCHuOcIAZUYK9t2.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "el", - "file_path": "/ovzKOC84zEn42lO6Se6T28d0fVQ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/ipkmsv0yUMuTFscTIZAQfZKGV70.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/54QHzHr7SSDkCAVb6QGBHehzz6t.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/1ZUtbI9WdcOjgriNAME3As1WgaT.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.698, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/6iIBctlKo47wHXHgAjYeJoz9OlO.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1978 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/6gw2C8CseveOvtTmwJcABx5KIsh.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/bqqI73fAaAtgQTYzRTaJAYss45A.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/2fQLeZXEIdE80RVtq7yaCEq9eur.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/1FmASTsiOP9ylJEbySms5bPgliR.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/azio74W2qw7bNg7ePqzkWywwK1n.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2700, - "iso_639_1": "fr", - "file_path": "/kKYDeFvoe0PAkMHQjHYMoETX9K9.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1800 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "de", - "file_path": "/egk71eSgc3oT5ZCmtIhXRwUo8li.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 1778, - "iso_639_1": "uk", - "file_path": "/kZLd5S1u7PcRKfQPmAo2pFO4lqn.jpg", - "vote_average": 5.292, - "vote_count": 18, - "width": 1186 - }, - { - "aspect_ratio": 0.675, - "height": 2160, - "iso_639_1": "zh", - "file_path": "/dJxOAjnqOQC0xI3NJ6N5fB8JGPz.jpg", - "vote_average": 5.27, - "vote_count": 10, - "width": 1458 - }, - { - "aspect_ratio": 0.667, - "height": 1936, - "iso_639_1": "fr", - "file_path": "/3GYBkfoRePXlBoLf2HDLqUScO5q.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1291 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/83C4IDpnK7gCMzKXLjpWtxNiSP5.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/qo7vMEtBemFMpkmABYHaukRPZxG.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "id", - "file_path": "/zKEJ2tvAbBtZdhKglD9gYpxbxno.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/qTXa7CJAj2RzAgxzuplEemPb87b.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.708, - "height": 848, - "iso_639_1": "no", - "file_path": "/A6PQxKm9D0ndYYw0Up7Xu3XV3rN.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/mftHmdslz5BaAyrcZ1TTR0JZWpD.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1936, - "iso_639_1": "fr", - "file_path": "/kIHEPNYLWnG2fSwsAPmJkHdwce6.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1291 - }, - { - "aspect_ratio": 0.666, - "height": 1000, - "iso_639_1": "it", - "file_path": "/iSrDzA2PtYvSpl6IS8QJwajJe3b.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 666 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "no", - "file_path": "/lJELFWjiK9ijAUJl7fzYUScooEf.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/qYOo3uJHfBmxEzGwEyyje0qOdEX.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/i4FChXSm2TFcNJNCfqB7IfmUw8I.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/rBTMtui3uNou2xyHlYmTgqcGPbR.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/oQawaiEJOqWSinryksJejYZst5r.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1896, - "iso_639_1": "zh", - "file_path": "/51FXgqdrak8w4ZhKkhzDtup758Z.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1264 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/tuPAjzS42xDG0LHxTTr4Kma0KOo.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 945, - "iso_639_1": "ar", - "file_path": "/abT8jngvBDk31BsVgMMNrP4OTIY.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 630 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/1EhxqgGBfkqjRYVExalJpd4swOk.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/r4r599MfyohaKAFwGZdcnEp5ts9.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/dQIOyTGjJe9xqSk0M7tWbfQVaOk.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "en", - "file_path": "/e7AUG4IArMWRw4Ji5pXRB0miRqD.jpg", - "vote_average": 5.238, - "vote_count": 19, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/cevSI3w2xSWvqnjQodvDCjw76vG.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/vhOJQV7KM2ycaodhy9AUpfuxh8a.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1936, - "iso_639_1": "pt", - "file_path": "/gCp4ATDNhhZyxZiLYkpQlMEiWWG.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 1290 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/andOxWauD5cx4zIhqabfAJ4qBDo.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/qDK4Ty1b4rayzbSbXz6bS4OcWMl.jpg", - "vote_average": 5.194, - "vote_count": 22, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "es", - "file_path": "/oT6EkLKQLzbSpVJViRefDVElVcs.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1366 - }, - { - "aspect_ratio": 0.665, - "height": 2560, - "iso_639_1": "en", - "file_path": "/wtxQcQxqIVStja6DFksiwC1tER8.jpg", - "vote_average": 5.186, - "vote_count": 20, - "width": 1703 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/vGKUK1nMLgARiLVKHByTkURRvoC.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/mN8TsVWd01qjnz9f4DYkw2LPJH6.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "es", - "file_path": "/gZEqh3vVcHhPBmBHdkprePuMgWn.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": null, - "file_path": "/hVikDCRC7SrgXwc4c8sVKDNvZmN.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1400 - }, - { - "aspect_ratio": 0.7, - "height": 1772, - "iso_639_1": "es", - "file_path": "/mbRXvNdL2zRGR82s0CXhiEiSAP2.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1240 - }, - { - "aspect_ratio": 0.7, - "height": 1772, - "iso_639_1": "es", - "file_path": "/dRI3uPdBSinF5VbaGXRftB1APz7.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1240 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/24Om4ZTUoxyZZi5IRbwanDWCiqg.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/fcAzXjAKN8DVC8cLvpUvdx8JWke.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "es", - "file_path": "/qAmdUdcXDvF3V90cbx2srydAEfq.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/n9mxOXXL1nJulD7KCdWdjFu4R3i.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/fREVr1bocjvnKw1Cd32QCKG0a0h.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/dy3ytt1zXNo40HkwvQRzXcBNGhv.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/a5yUY5g9IiD8LDhRhXH3vmVva74.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/wnovSDu1NLtT5cW2NIzwS7CixKA.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/1wC6LPhZW4962ifYB5013HAS7E0.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/wZ51QNzkiztSZd75wiNcAzoFSv0.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/hXH1Qd2ipMrJlovLYFJxJwR4jgk.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1936, - "iso_639_1": "ar", - "file_path": "/hLsJGpCVRf7MtVTGXKwCsBcswsJ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1291 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/ijCUTdB9P7WenxkCnkeAiV7lNOt.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1890 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/o2NzHxNSc7sYqpBB27vcMMl6AMH.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1772, - "iso_639_1": "es", - "file_path": "/jF6xKawyXPsT5E4I0bzjbo4Tc0Y.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1240 - }, - { - "aspect_ratio": 0.717, - "height": 2048, - "iso_639_1": null, - "file_path": "/mj5GMi6NaPN3ao5OVwtxIAMYXlV.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1469 - }, - { - "aspect_ratio": 0.664, - "height": 2880, - "iso_639_1": "zh", - "file_path": "/n0VOJbONtWD9HvGvGJS9Gx7ZCiY.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1911 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "el", - "file_path": "/6iXYiRZtmhML13pqowMpVvK5eIS.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "el", - "file_path": "/3482tBuPuFW5afyhUl8crNoueig.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "el", - "file_path": "/7rsSoUD5vzOIKcXkGEDUlomrxZC.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "el", - "file_path": "/9xK9BNnsnaiFxlVdqBMzYSUv3O2.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/9UInyKOyE56T5WfsSTxiWzwEFwJ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1600, - "iso_639_1": "zh", - "file_path": "/y7cIexqprBa3tI7M7xRBiW5TIud.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1080 - }, - { - "aspect_ratio": 0.708, - "height": 1808, - "iso_639_1": "zh", - "file_path": "/bmNhOhmAJhUcKxx42TDgTcr9OzT.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1280 - }, - { - "aspect_ratio": 0.708, - "height": 1808, - "iso_639_1": "zh", - "file_path": "/3aXVaoEMIYXim3hsEVIr9uRHmM.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/67PmbAViFCW3obXxr5Utm9wArIP.jpg", - "vote_average": 5.156, - "vote_count": 12, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/g6UvbzX4yvOJAv9fRMjjUuzXhQt.jpg", - "vote_average": 5.146, - "vote_count": 10, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/kJ6EAjzwPeL0ajayhQ7vA8XssN7.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/eOlrbKNEs10Nz8oFNHilMaQNKj7.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/jxoh5U7uG9nUuXEMzCpF5UfatI9.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1728, - "iso_639_1": "en", - "file_path": "/a0rSS8Z42r0BGoM2yiV5fu0WZ7X.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 1166 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/eOAWLYnOxEGFrIAMR5DeGDGNiuj.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/p6sgN148uUiaWqxRjdVqVgeODfV.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/9AIoAUYvkuLpN8uYbebCN0ndacC.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1728, - "iso_639_1": "en", - "file_path": "/hfAoyPr5XGE6Iy0SW9aI31akfqW.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1152 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "en", - "file_path": "/l8302j9ko6rtjlrQLo3szvsaXCS.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 1584, - "iso_639_1": "en", - "file_path": "/xdGlTUVfcik9RToAsDNnSlMTkfc.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1056 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/negzF1YDTfkb0GjO76DexkiEeWY.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/9wbmAQ3AzA1WND0U5aCY1BItFrE.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/41bJKBns4mdU8K3sGlVnIIpIkmE.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/a7wD5izhzxP70qDvCHbVrQ94RP2.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/wuT1WkzeulEdkgx5ghwFIw5OJPE.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/iq4R9VhqN61q4604MR7zKOeu8RU.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/pw7aU5IJ79IA3wmj78XDOZI6ZD7.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 850, - "iso_639_1": "en", - "file_path": "/mdQyHR8EyjJmHwHW9PTKErfgX4S.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 567 - }, - { - "aspect_ratio": 0.716, - "height": 2048, - "iso_639_1": "en", - "file_path": "/6vNNj2gZF3NNfJdwdJRpmBeeSQw.jpg", - "vote_average": 5.11, - "vote_count": 15, - "width": 1466 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/lM3Kh2sBDrJdGprjyCxwBZw3Xjt.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/tOTG7AfJRTTxzpXFoiIEAdcqkOS.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/xv03cwRdvC8znnbtmqdwT7f165M.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/qk3V5O45JkOD08ULLda9gifZdMP.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2962, - "iso_639_1": "zh", - "file_path": "/9EvU5naGzYrkVo4FNKR6amjXkxX.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.695, - "height": 2560, - "iso_639_1": "he", - "file_path": "/uxdPgL4QL8hnr9TDuXxIMHQuVwR.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1780 - }, - { - "aspect_ratio": 0.667, - "height": 1728, - "iso_639_1": "en", - "file_path": "/yyFUUIEfkO0lvNsaP3CGmhBT63u.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1152 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/pexmqcugG1yMZm1IcyvaASNwqv.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/j2F9uqMB9NGhYtigoowXHIF37MT.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1365 - }, - { - "aspect_ratio": 0.666, - "height": 1196, - "iso_639_1": "en", - "file_path": "/d5FySUeozWrqbiGPvNtE7ufsIF7.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 797 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zPETeuTZNtHALv9KZRcmnS8sdOf.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/5VlAD162XyYnA4PFzrGFG7g9w01.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/bOqMWEYxRajbF4QreFl61DUi0M6.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/5aZoKcR8VxYWhiENYOUg6ooGbc8.jpg", - "vote_average": 5.104, - "vote_count": 26, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/hMs0FtNLuVWLsBm26ZKUovIs5RM.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "en", - "file_path": "/vOWMMreZURRblhgmxkdqr7yBTyt.jpg", - "vote_average": 5.01, - "vote_count": 8, - "width": 1440 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/eqWznn1nwpvUjqsr2EwaDZtPdMa.jpg", - "vote_average": 4.994, - "vote_count": 15, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ywZXIZroU4G6Lki7PkeSmechcaa.jpg", - "vote_average": 4.968, - "vote_count": 20, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/pDYjNlDoN61F39qgJQE3MSK3PmD.jpg", - "vote_average": 4.942, - "vote_count": 16, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/63veS0OYDTLjnfJ58PLEiOqe9Hq.jpg", - "vote_average": 4.942, - "vote_count": 16, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "en", - "file_path": "/5mmd0cqjIljjRet8xsT3J3Sf4Gd.jpg", - "vote_average": 4.938, - "vote_count": 7, - "width": 1440 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/noQ30As2LOZ5EGBWJBVYyN08Hyh.jpg", - "vote_average": 4.928, - "vote_count": 14, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "en", - "file_path": "/vRI1SWcQvoaPdLJmYtR8cFULy8B.jpg", - "vote_average": 4.922, - "vote_count": 5, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/2y8SJsAam9MvUjWjXdzjay5cD4f.jpg", - "vote_average": 4.892, - "vote_count": 17, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/3lXvxiJ5J9rvK6ntAL7521ea9Hc.jpg", - "vote_average": 4.892, - "vote_count": 17, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/mqx6Z5pSVtpWLOXAYFKx5rVKktb.jpg", - "vote_average": 4.888, - "vote_count": 24, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2355, - "iso_639_1": "en", - "file_path": "/8Dvb5Gll4mJcE6gF0nViVbBVXoD.jpg", - "vote_average": 4.882, - "vote_count": 8, - "width": 1570 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/58quDLcapkNuptBmaZlgKBEeWRO.jpg", - "vote_average": 4.878, - "vote_count": 15, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1440, - "iso_639_1": "en", - "file_path": "/5YazGPXVLHX5W5YQDBZ2Rol2Lqd.jpg", - "vote_average": 4.866, - "vote_count": 6, - "width": 960 - }, - { - "aspect_ratio": 0.667, - "height": 1778, - "iso_639_1": "uk", - "file_path": "/niNPebld658yLbCP6VsXZDI1btD.jpg", - "vote_average": 4.862, - "vote_count": 13, - "width": 1186 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/8OxGxEzoaRscEZzlUIwMZABsRgE.jpg", - "vote_average": 4.846, - "vote_count": 11, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/i9vdA8SNEZiRReaifayx6hfT2j9.jpg", - "vote_average": 4.828, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/yNJN3NutKIkMJt9txMHMi78RLpK.jpg", - "vote_average": 4.828, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6QBJs1e2jWSJSMLVxpMnsfilEuM.jpg", - "vote_average": 4.828, - "vote_count": 30, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/u920pVQ12cFBwWu7XJM3x23OSmV.jpg", - "vote_average": 4.81, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/3HUlW6bgiyZNhHAbt1rmKXNu3my.jpg", - "vote_average": 4.796, - "vote_count": 19, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/nc6RCGaavLeYpRgJ6N9puiyWZDW.jpg", - "vote_average": 4.774, - "vote_count": 10, - "width": 500 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/5Ezl7rXuMQ9MhvhBRfcqqKZWcHL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "cn", - "file_path": "/lpzuo8skMWVJ2WE2zLyySYQZuTo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/Atn6rxgtZXz9zhvZw3JqjGmnGTr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/pkQGRQTRx1w6YSHHz6bAAD8gqoj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/A4FULF75gu2lyTpRE4vs6sRxI7Q.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/bC8ieYsOn1OmqvVRX7ofWTroNN2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1600, - "iso_639_1": "de", - "file_path": "/1um4RgzHQ5r0pKPrQryPmqwk1iS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1067 - }, - { - "aspect_ratio": 0.707, - "height": 1828, - "iso_639_1": "ja", - "file_path": "/yFVOi2Nh69q3AW5bdYtcA3UJ7xb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1292 - }, - { - "aspect_ratio": 0.675, - "height": 1229, - "iso_639_1": "ja", - "file_path": "/mFuN3FRHFHYFRIWutQHCt6c7AeQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 830 - }, - { - "aspect_ratio": 0.675, - "height": 1229, - "iso_639_1": "ja", - "file_path": "/m7JmDO29sw6ilGXdpHnzjVi3naO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 830 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hi", - "file_path": "/pntSXRuIyf2yWUFwr29OJhcVAbd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ta", - "file_path": "/gUcFzawXZr2Msc2Jn83FbzAHeOX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "te", - "file_path": "/2jKAHVYGLOyzjjEhgbTWzjFwcMj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.674, - "height": 1170, - "iso_639_1": "th", - "file_path": "/sqRKcM0S2eF5HpC2vX4EslLpnjU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 789 - }, - { - "aspect_ratio": 0.666, - "height": 2003, - "iso_639_1": "pt", - "file_path": "/89GrfnscTLQJZDPwo2XewBfAF9x.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1333 - }, - { - "aspect_ratio": 0.675, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/vkGRvmBc4nKGvvTRBLE0pgt84vA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 972 - }, - { - "aspect_ratio": 0.675, - "height": 2560, - "iso_639_1": "he", - "file_path": "/63k4iNpSfK6eRigyDGkAwgYmm0m.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1728 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/v2n3LrUU0LpsVHKAwMoYAUBLoC1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/bm0S637Esk0o47rzpfLBMzVQ5sl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1440 - }, - { - "aspect_ratio": 0.714, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/yDioRiSs1mZwhwmGudpglbGczoU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 771 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/3BIBsht3RcHYlb6D2uIUPkFHmLV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/t0BYa6yRrPBqK51YkgHsSzjARZu.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/4gzKJBgHqxvyIAL2D6qo9hPXqEV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "uk", - "file_path": "/jyRFs1YLCDWtAzmIYNHazoOi9w0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "nl", - "file_path": "/53GZj6TYAGoJCx3pb9BCZeRVqqU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.695, - "height": 1600, - "iso_639_1": "en", - "file_path": "/1qFoCxXNcBxLWGuvqIy1Hv7AV4T.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1112 - }, - { - "aspect_ratio": 0.675, - "height": 889, - "iso_639_1": "fi", - "file_path": "/89FLXgirGJQaG4cHqND57sY40dE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/ozBz6PcTfyhcrci6ZygzVJgPHxO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.665, - "height": 2000, - "iso_639_1": "th", - "file_path": "/3hU0Yo0qCFu48DFFBJt104Yg4VO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1330 - }, - { - "aspect_ratio": 0.665, - "height": 2000, - "iso_639_1": "th", - "file_path": "/lWnCplu42E3g2GVqxSWaWloHrba.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1330 - }, - { - "aspect_ratio": 0.665, - "height": 2000, - "iso_639_1": "th", - "file_path": "/nUaHAg6FBfTJ0aDTzbo1v61Fuw4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1330 - }, - { - "aspect_ratio": 0.7, - "height": 1600, - "iso_639_1": "he", - "file_path": "/12e9ZH6VhrgZ4KpzzBSxP527UUi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1120 - }, - { - "aspect_ratio": 0.67, - "height": 2048, - "iso_639_1": "th", - "file_path": "/6f4assESPRDCzjv9bxAor4pMh19.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1373 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/a9B01YPxwg4ZZ3pZjW4nRhnPpU7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/iOd0ca59wf17FlMbQKzVC3B23U.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/5ZCgfxJXBkAwMH9WHm26qKoo8f2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 2048, - "iso_639_1": "he", - "file_path": "/4Xzs7wNDdP7kRDT1KT7DNeEyygM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1433 - }, - { - "aspect_ratio": 0.7, - "height": 2048, - "iso_639_1": "he", - "file_path": "/ngnlT76Y1sZbm99ye9qlw6UFXMx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1433 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "en", - "file_path": "/izdTRghIGNXIxncAawgfrfJ30A7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/llwC7JUQH2hMIoYaEFidx3C8NjR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/lJy30nnPvyYbvRpf6hsrQhO172Z.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.669, - "height": 1237, - "iso_639_1": "en", - "file_path": "/wBuYonRatcekja5VjCgRApEDlUK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 828 - }, - { - "aspect_ratio": 0.677, - "height": 2048, - "iso_639_1": "th", - "file_path": "/2XzohjcLG7fWrvl8bzxSkLkyjS0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1387 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/1z01PJ2WgT4wYghIQsgRXmHxA7V.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/e66isruPcwIKzqhS0KW6e6kccnq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/s7JLVKGJk0l9OLrdRevdFAe6Iwc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "en", - "file_path": "/ld9FcnEHXoubLH0XuAQUsBU33z5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/geKWtsrGshMNSwJEdwlQUcH37yV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "en", - "file_path": "/1DJ5GdtV0oRUOkmGnzcibQfUqyH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": null, - "file_path": "/6oWqmktdu4kEhZdfCwjste1iVXb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "hu", - "file_path": "/7ZAqwgXsRJLXm5L4zmJKLNLVvM0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.666, - "height": 1200, - "iso_639_1": "ro", - "file_path": "/ad0Ywt0XW4sfCKecFBM6dY4j327.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 799 - }, - { - "aspect_ratio": 0.667, - "height": 1479, - "iso_639_1": "en", - "file_path": "/msTmhHRce2BT8bWFXAUEt48SFPL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 986 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cd8vh8o3XFWkZRSrVLAaeQbsAjb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/epuC7I0r4GEtf4owrUOUTjywJmS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cn", - "file_path": "/ff0GEhkUc78kNCkNCxrzQdr1l2R.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "en", - "file_path": "/lp5BmNBE4FbR7stpnrtFxsyy6Hq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1492, - "iso_639_1": "en", - "file_path": "/skZb8aVBArBR7ygD0llAMq6AOsQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 995 - }, - { - "aspect_ratio": 0.667, - "height": 2397, - "iso_639_1": "en", - "file_path": "/35eGTVNtbRFCKvYpErgNCKWWx8s.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1598 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "en", - "file_path": "/hDm63sQZl52Gmuy9Z9c9W1xI4TE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/7ubKKEFs5UOSDcNrPWMEfm6eaMr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "sk", - "file_path": "/aQVnNVPh6I22JhnvEgarh7W2mWF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/vfLLahvUd1FR0tohGsjpbTPpTcg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": "en", - "file_path": "/6HwhQpZ12oQdpYUoL5w64Vt7Fxc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/em8uKwvyK6svvVKEaktptyRyahQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/vHcFC9VwmIB1N8cdkHswmhONKCq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/ndFGMkiIyMk9ylIy67MLnxJj5sU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/eOiNR6Dmq9L9n5TKpZPB0eBOVnd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/uVd78P4ORSWJDqYgsP0hTqLhWTN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "ab", - "file_path": "/yxawUE8b2uX1qPQHYOz2MHPzr0m.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/eyWSDhorgWMqcMbvUrw75iRisMZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/m4TKuI67a6MjLbsbAWmBQdlIpuj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/8Ab7oHCqgzzjE9mjl4DKWSkuXVs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/xgwIymBeMGqahopiiB33q6zLJWF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/bf1AVpoLJ4UlupRwsYXceJqzdRa.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/txIxCIi8SbQRPwEvX8f5XBfnb4X.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/p7gz7AWLfMkLdUsxqwxJWkA6xun.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/jxtRekz99z6AXCJ9pbtc9hX5KkV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "de", - "file_path": "/jm2okNjLIuSQq3td1KJ5OMcbul.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/aGDItH8A1rISeBr8Pbc98igGH8J.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/8v8roezG4bQJulxXjBTSaAdSsUo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/oou43rblr9Si3kakefIQP66lNvc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/rV3JzCqIplAFn5zeAbdcU6XuWJH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "en", - "file_path": "/srcfwYIN8qvv6UfDIJab2IQYjgi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/p50pEVhpyd0C0711WO0fs9KyjUt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": null, - "file_path": "/3YJHHmlTwCQP0ZcnBo3TBbLo7Gu.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 2700, - "iso_639_1": null, - "file_path": "/kKQseKCjQVFLi5vLETPTutrHnqe.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1800 - }, - { - "aspect_ratio": 0.667, - "height": 2868, - "iso_639_1": null, - "file_path": "/esEadiRc4lQdF9i2p7AREbkFTdp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1912 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/o0LdJIKP9TgWPZseqfVhIUthIKx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/gugniGmKliqPGPHLs7cjgKwzEaR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": null, - "file_path": "/4VF8IHzmtiGw5SmKbwIdI9PfQ3n.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "th", - "file_path": "/5tsA2Bkn5lFYhQLN4C7k1bFNPYf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/kBU0YJ6hAuCmnOBWKX6xiGDCefM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.698, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/zJd7OcYvWc8IvLVfcQHI8ZMKFLk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1978 - }, - { - "aspect_ratio": 0.698, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/9ic9pGNafUoDHYyBJLKvXAUMNDL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1978 - }, - { - "aspect_ratio": 0.698, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/9bVw3O7EadQkV7hk299BWOc5ezT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1978 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/bfOpFxj61t9tGgxxZY2ZR9ZVi7j.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1500, - "iso_639_1": "en", - "file_path": "/qSG0bSLKkYFAfLAonTfRjaBQyIp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1013 - }, - { - "aspect_ratio": 0.675, - "height": 1500, - "iso_639_1": "en", - "file_path": "/foZAnzrCY6TNDiGxyPSZebRPrWn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1013 - }, - { - "aspect_ratio": 0.696, - "height": 1200, - "iso_639_1": "tr", - "file_path": "/4HUgY00z7vThmOmZbBuH74pNfdj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 835 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/gr5PiNwf71moV1NvKXB6E6Z53hM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/U5TKwn2d2SxLDpw4oNs1YWVnFh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "hr", - "file_path": "/lkc0kLuCLltoRGhcIR5Sv6etsTt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 2046, - "iso_639_1": "en", - "file_path": "/gYkQmAqObF1sr4lEaMGjDpHHSAD.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gng4p0wAiGzTJAovBCwm8ZF2o3R.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "en", - "file_path": "/bqpzgKmaC8H4DHY3CArxvZGDAhn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/uqi4MfGomZnmtWhvCesXMUEmvNd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/pvVGtqZmBh9iaID86e1BZXbAo3T.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/pk37evZ2x46YlwueYAZ5FFJg2PW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.75, - "height": 1269, - "iso_639_1": "de", - "file_path": "/qWcb2tZFP9Lhn4nuzFQwrbHaN9b.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 952 - }, - { - "aspect_ratio": 0.704, - "height": 2136, - "iso_639_1": "de", - "file_path": "/kWNaF0rtekNZ9fOvaEqcmtxnHah.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1504 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/335977.json b/examples/view-transitions/src/content/movies/335977.json deleted file mode 100644 index aaac6cb59..000000000 --- a/examples/view-transitions/src/content/movies/335977.json +++ /dev/null @@ -1,7685 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/9m161GawbY3cWxe6txd1NOHTjd0.jpg", - "belongs_to_collection": { - "id": 84, - "name": "Indiana Jones Collection", - "poster_path": "/lpxDrACKJhbbGOlwVMNz5YCj6SI.jpg", - "backdrop_path": "/6kh59mZizZsttZPR0HAdXk6Ve2n.jpg" - }, - "budget": 294700000, - "genres": [ - { "id": 878, "name": "Science Fiction" }, - { "id": 12, "name": "Adventure" }, - { "id": 28, "name": "Action" }, - { "id": 14, "name": "Fantasy" } - ], - "homepage": "https://movies.disney.com/indiana-jones-and-the-dial-of-destiny", - "id": 335977, - "imdb_id": "tt1462764", - "original_language": "en", - "original_title": "Indiana Jones and the Dial of Destiny", - "overview": "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.", - "popularity": 804.982, - "poster_path": "/Af4bXE63pVsb2FtbW8uYIyPBadD.jpg", - "production_companies": [ - { - "id": 1, - "logo_path": "/o86DbpburjxrqAzEDhXZcyE8pDb.png", - "name": "Lucasfilm Ltd.", - "origin_country": "US" - } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "2023-06-28", - "revenue": 382336037, - "runtime": 155, - "spoken_languages": [{ "english_name": "English", "iso_639_1": "en", "name": "English" }], - "status": "Released", - "tagline": "A legend will face his destiny.", - "title": "Indiana Jones and the Dial of Destiny", - "video": false, - "vote_average": 6.676, - "vote_count": 1650, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 3, - "known_for_department": "Acting", - "name": "Harrison Ford", - "original_name": "Harrison Ford", - "popularity": 30.392, - "profile_path": "/5M7oN3sznp99hWYQ9sX0xheswWX.jpg", - "cast_id": 0, - "character": "Indiana Jones", - "credit_id": "56e8490ec3a368408f003646", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 1023483, - "known_for_department": "Acting", - "name": "Phoebe Waller-Bridge", - "original_name": "Phoebe Waller-Bridge", - "popularity": 12.635, - "profile_path": "/ppRIfUYcl0RWlxp5gSmdzIFFLAS.jpg", - "cast_id": 19, - "character": "Helena", - "credit_id": "60707c53924ce5003f3416e0", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 1019, - "known_for_department": "Acting", - "name": "Mads Mikkelsen", - "original_name": "Mads Mikkelsen", - "popularity": 48.578, - "profile_path": "/ntwPvV4GKGGHO3I7LcHMwhXfsw9.jpg", - "cast_id": 21, - "character": "Dr. Voller", - "credit_id": "60786bcafbe36f0029a80c9b", - "order": 2 - }, - { - "adult": false, - "gender": 2, - "id": 467645, - "known_for_department": "Acting", - "name": "Boyd Holbrook", - "original_name": "Boyd Holbrook", - "popularity": 19.399, - "profile_path": "/zKYA9XfK5jtCpBgTr62jm4xVS79.jpg", - "cast_id": 29, - "character": "Klaber", - "credit_id": "609ea6af5b370d0028e76da3", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 2074238, - "known_for_department": "Acting", - "name": "Olivier Richters", - "original_name": "Olivier Richters", - "popularity": 11.705, - "profile_path": "/8Zz5WYE1Muc3AX9daxCxgNTRE5.jpg", - "cast_id": 33, - "character": "Hauke", - "credit_id": "61b5c4de9d893900403f90c2", - "order": 4 - }, - { - "adult": false, - "gender": 2, - "id": 3810691, - "known_for_department": "Acting", - "name": "Ethann Isidore", - "original_name": "Ethann Isidore", - "popularity": 2.236, - "profile_path": "/64mNpiPrraEUjwSHLJzLfFxjXwT.jpg", - "cast_id": 39, - "character": "Teddy", - "credit_id": "638923e3229ae21572ab05fa", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 13014, - "known_for_department": "Acting", - "name": "Toby Jones", - "original_name": "Toby Jones", - "popularity": 21.504, - "profile_path": "/1qNisdp4f1KstdfvAgYXMdrhwfk.jpg", - "cast_id": 31, - "character": "Basil Shaw", - "credit_id": "60c3d8e618864b006e27dc45", - "order": 6 - }, - { - "adult": false, - "gender": 2, - "id": 3131, - "known_for_department": "Acting", - "name": "Antonio Banderas", - "original_name": "Antonio Banderas", - "popularity": 36.607, - "profile_path": "/n8YlGookYzgD3cmpMP45BYRNIoh.jpg", - "cast_id": 32, - "character": "Renaldo", - "credit_id": "60f13a85097c490046569131", - "order": 7 - }, - { - "adult": false, - "gender": 1, - "id": 650, - "known_for_department": "Acting", - "name": "Karen Allen", - "original_name": "Karen Allen", - "popularity": 22.418, - "profile_path": "/eJszpndpRzrXbSlz7RUlApoTykn.jpg", - "cast_id": 92, - "character": "Marion", - "credit_id": "64783abb17497301186f65c2", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 655, - "known_for_department": "Acting", - "name": "John Rhys-Davies", - "original_name": "John Rhys-Davies", - "popularity": 19.372, - "profile_path": "/bfn4WvhGo2QKYtv5ynk7tKu7NnL.jpg", - "cast_id": 38, - "character": "Sallah", - "credit_id": "63207365b87aec0082842f26", - "order": 9 - }, - { - "adult": false, - "gender": 1, - "id": 1787399, - "known_for_department": "Acting", - "name": "Shaunette Renée Wilson", - "original_name": "Shaunette Renée Wilson", - "popularity": 6.738, - "profile_path": "/fPjeTxxE2sB0bQUcAoO13mKsKK5.jpg", - "cast_id": 30, - "character": "Mason", - "credit_id": "609ea6b9a275020029640e62", - "order": 10 - }, - { - "adult": false, - "gender": 2, - "id": 3491, - "known_for_department": "Acting", - "name": "Thomas Kretschmann", - "original_name": "Thomas Kretschmann", - "popularity": 12.488, - "profile_path": "/7M0P39a3CVA22dJyv5YQEkTThU7.jpg", - "cast_id": 25, - "character": "Colonel Weber", - "credit_id": "6081d67a8390180058714085", - "order": 11 - }, - { - "adult": false, - "gender": 2, - "id": 36901, - "known_for_department": "Acting", - "name": "Martin McDougall", - "original_name": "Martin McDougall", - "popularity": 5.347, - "profile_path": "/sqosciocBl1OgQmnBXjSOafDvpt.jpg", - "cast_id": 35, - "character": "Durkin", - "credit_id": "61e19d9f196757008b48d70d", - "order": 12 - }, - { - "adult": false, - "gender": 2, - "id": 126802, - "known_for_department": "Acting", - "name": "Alaa Safi", - "original_name": "Alaa Safi", - "popularity": 9.01, - "profile_path": "/11R1c4UOSMsj1advqUmFQj6sTe1.jpg", - "cast_id": 68, - "character": "Rahim", - "credit_id": "638a62546dc6c000af11ddda", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 1867299, - "known_for_department": "Acting", - "name": "Francis Chapman", - "original_name": "Francis Chapman", - "popularity": 2.152, - "profile_path": "/yMLhKYHITI3wA57ctG1Vfr06FZj.jpg", - "cast_id": 101, - "character": "Young SS Officer", - "credit_id": "648138a0bf31f20100334855", - "order": 14 - }, - { - "adult": false, - "gender": 0, - "id": 4102339, - "known_for_department": "Acting", - "name": "Alfonso Rosario Mandia", - "original_name": "Alfonso Rosario Mandia", - "popularity": 0.6, - "profile_path": null, - "cast_id": 102, - "character": "Italian Ticket Seller", - "credit_id": "648138bad2b209012dfb64e3", - "order": 15 - }, - { - "adult": false, - "gender": 0, - "id": 4102340, - "known_for_department": "Acting", - "name": "Chase Brown", - "original_name": "Chase Brown", - "popularity": 1.052, - "profile_path": null, - "cast_id": 103, - "character": "Larry - Beat Poet Guy", - "credit_id": "648138dfe272600128783b62", - "order": 16 - }, - { - "adult": false, - "gender": 2, - "id": 946350, - "known_for_department": "Acting", - "name": "Nasser Memarzia", - "original_name": "Nasser Memarzia", - "popularity": 6.515, - "profile_path": "/pugV3fpgTJg98JmVLoPAHxpDAwE.jpg", - "cast_id": 71, - "character": "Archimedes", - "credit_id": "638a62b215376c00b5056efa", - "order": 17 - }, - { - "adult": false, - "gender": 0, - "id": 4102341, - "known_for_department": "Acting", - "name": "Amedeo Bianchimano", - "original_name": "Amedeo Bianchimano", - "popularity": 0.6, - "profile_path": null, - "cast_id": 104, - "character": "Milanese Suit Man", - "credit_id": "6481390fe2726000afc0e9eb", - "order": 18 - }, - { - "adult": false, - "gender": 1, - "id": 1320746, - "known_for_department": "Acting", - "name": "Anna Francolini", - "original_name": "Anna Francolini", - "popularity": 1.567, - "profile_path": "/zkfIJehMXE8jSzbClQsILZqddM5.jpg", - "cast_id": 105, - "character": "Mandy", - "credit_id": "648139ed99259c00e2f3282c", - "order": 19 - }, - { - "adult": false, - "gender": 1, - "id": 2654393, - "known_for_department": "Acting", - "name": "Gabby Wong", - "original_name": "Gabby Wong", - "popularity": 2.506, - "profile_path": "/8ja0TBklf82kOD5ASE3SXwaEVvK.jpg", - "cast_id": 106, - "character": "Chinese Hat Bidder", - "credit_id": "64813a03bf31f2010033496a", - "order": 20 - }, - { - "adult": false, - "gender": 0, - "id": 225705, - "known_for_department": "Acting", - "name": "Adolfo Margiotta", - "original_name": "Adolfo Margiotta", - "popularity": 0.875, - "profile_path": "/y5FiYFuFogq0oHr1PPGklAyNjIr.jpg", - "cast_id": 107, - "character": "Hector - Salty Diver", - "credit_id": "64813a0de375c000ff46d841", - "order": 21 - }, - { - "adult": false, - "gender": 0, - "id": 1746388, - "known_for_department": "Acting", - "name": "Niccolo Cancellieri", - "original_name": "Niccolo Cancellieri", - "popularity": 0.68, - "profile_path": null, - "cast_id": 108, - "character": "Sirene Deck Hand", - "credit_id": "64813a17d2b20900ebbedcd9", - "order": 22 - }, - { - "adult": true, - "gender": 0, - "id": 2136480, - "known_for_department": "Acting", - "name": "Antonio Iorio", - "original_name": "Antonio Iorio", - "popularity": 0.6, - "profile_path": null, - "cast_id": 109, - "character": "Popeye - Lead Scuba Diver", - "credit_id": "64813a3ae2726000afc0eac2", - "order": 23 - }, - { - "adult": false, - "gender": 2, - "id": 53166, - "known_for_department": "Acting", - "name": "Manuel Klein", - "original_name": "Manuel Klein", - "popularity": 1.4, - "profile_path": "/2Fzai7q0oGAccXQWnxMruloCwbL.jpg", - "cast_id": 110, - "character": "SS Stormtrooper", - "credit_id": "64813a44e2726000c92ef1b1", - "order": 24 - }, - { - "adult": false, - "gender": 0, - "id": 2675526, - "known_for_department": "Acting", - "name": "Holly Lawton", - "original_name": "Holly Lawton", - "popularity": 0.615, - "profile_path": null, - "cast_id": 111, - "character": "Young Helena", - "credit_id": "64813a52e375c00139be7c99", - "order": 25 - }, - { - "adult": false, - "gender": 0, - "id": 1809454, - "known_for_department": "Acting", - "name": "Guy Paul", - "original_name": "Guy Paul", - "popularity": 0.779, - "profile_path": null, - "cast_id": 112, - "character": "Prof. Plimpton", - "credit_id": "64813a8964765400e6801da0", - "order": 26 - }, - { - "adult": false, - "gender": 1, - "id": 2480853, - "known_for_department": "Acting", - "name": "Harriet Slater", - "original_name": "Harriet Slater", - "popularity": 1.626, - "profile_path": "/5AnOyNfZ6doZWueuHo7unYE3lMI.jpg", - "cast_id": 113, - "character": "Fran", - "credit_id": "64813a92bf31f200aec6a643", - "order": 27 - }, - { - "adult": false, - "gender": 2, - "id": 1990962, - "known_for_department": "Acting", - "name": "Alton Fitzgerald White", - "original_name": "Alton Fitzgerald White", - "popularity": 2.097, - "profile_path": "/j6tlSWT0VFa8lSTnFaphDuCuzAP.jpg", - "cast_id": 114, - "character": "Hotel Porter", - "credit_id": "64813a9ee272600107208714", - "order": 28 - }, - { - "adult": false, - "gender": 2, - "id": 59085, - "known_for_department": "Acting", - "name": "Ian Porter", - "original_name": "Ian Porter", - "popularity": 1.587, - "profile_path": "/qmTTaWGp5OO5rTFey9EFfo0dH5n.jpg", - "cast_id": 115, - "character": "Bob - Bartender", - "credit_id": "64813aaa99259c00e2f328c5", - "order": 29 - }, - { - "adult": false, - "gender": 2, - "id": 987009, - "known_for_department": "Acting", - "name": "Daniel Anderson", - "original_name": "Daniel Anderson", - "popularity": 6.135, - "profile_path": "/iwyzD7tcNVeXY7py6qTk3INlY7F.jpg", - "cast_id": 116, - "character": "Kommando Commander", - "credit_id": "64813ab5d2b20900ca1d4175", - "order": 30 - }, - { - "adult": false, - "gender": 0, - "id": 232979, - "known_for_department": "Acting", - "name": "Cory Peterson", - "original_name": "Cory Peterson", - "popularity": 4.68, - "profile_path": "/rJBVo64hhSdmAJS7raAT0L9nJcS.jpg", - "cast_id": 117, - "character": "Gov PR Man", - "credit_id": "64813ac6e2726000c92ef203", - "order": 31 - }, - { - "adult": false, - "gender": 0, - "id": 4102344, - "known_for_department": "Acting", - "name": "Charles Hagerty", - "original_name": "Charles Hagerty", - "popularity": 1.279, - "profile_path": "/FPYghZNwfWsgdCUxQ8gMrIsFSE.jpg", - "cast_id": 118, - "character": "Reporter - St Regis", - "credit_id": "64813ad899259c00e2f328f8", - "order": 32 - }, - { - "adult": false, - "gender": 0, - "id": 2947788, - "known_for_department": "Acting", - "name": "Ali Saleh", - "original_name": "Ali Saleh", - "popularity": 0.706, - "profile_path": null, - "cast_id": 119, - "character": "Jabari - Sallah's Grandson", - "credit_id": "64813aeae272600147b83ded", - "order": 33 - }, - { - "adult": false, - "gender": 0, - "id": 4102345, - "known_for_department": "Acting", - "name": "Amara Khan", - "original_name": "Amara Khan", - "popularity": 0.618, - "profile_path": null, - "cast_id": 120, - "character": "Alia - Sallah's Granddaughter", - "credit_id": "64813b06e375c000c525d907", - "order": 34 - }, - { - "adult": false, - "gender": 1, - "id": 1474690, - "known_for_department": "Acting", - "name": "Jill Winternitz", - "original_name": "Jill Winternitz", - "popularity": 2.96, - "profile_path": "/bBfmth2C93OkyYir6w8qxjmHpiR.jpg", - "cast_id": 121, - "character": "Pan Am Stewardess", - "credit_id": "64813b10bf31f200e3fb7ad1", - "order": 35 - }, - { - "adult": false, - "gender": 2, - "id": 1642036, - "known_for_department": "Acting", - "name": "Billy Postlethwaite", - "original_name": "Billy Postlethwaite", - "popularity": 2.685, - "profile_path": "/cpHNAqOBP8SIcml1A8ODmtuEyNh.jpg", - "cast_id": 122, - "character": "Prof. Donner", - "credit_id": "64813b1cd2b20900ebbedd83", - "order": 36 - }, - { - "adult": false, - "gender": 0, - "id": 3855450, - "known_for_department": "Acting", - "name": "Clara Greco", - "original_name": "Clara Greco", - "popularity": 0.6, - "profile_path": null, - "cast_id": 123, - "character": "Italian Tour Guide", - "credit_id": "64813b25e272600107208773", - "order": 37 - }, - { - "adult": false, - "gender": 0, - "id": 2669776, - "known_for_department": "Acting", - "name": "Joe Gallina", - "original_name": "Joe Gallina", - "popularity": 1.089, - "profile_path": "/bw0oa1SXhNXlZPKjLxHPkS978s.jpg", - "cast_id": 124, - "character": "Mounted Cop", - "credit_id": "64813b3264765400ad814937", - "order": 38 - }, - { - "adult": false, - "gender": 0, - "id": 4102346, - "known_for_department": "Acting", - "name": "Nicholas Bendall", - "original_name": "Nicholas Bendall", - "popularity": 0.6, - "profile_path": null, - "cast_id": 125, - "character": "Filthy Guitar Guy", - "credit_id": "64813b4ae272600107208796", - "order": 39 - }, - { - "adult": false, - "gender": 0, - "id": 4102348, - "known_for_department": "Acting", - "name": "Thulani Storm", - "original_name": "Thulani Storm", - "popularity": 0.6, - "profile_path": null, - "cast_id": 126, - "character": "Filthy Guitar Guy", - "credit_id": "64813b6a64765400c7b70659", - "order": 40 - }, - { - "adult": false, - "gender": 0, - "id": 2410286, - "known_for_department": "Acting", - "name": "Edoardo Strano", - "original_name": "Edoardo Strano", - "popularity": 0.6, - "profile_path": null, - "cast_id": 127, - "character": "Archimedes Servant", - "credit_id": "64813b79bf31f200e3fb7b12", - "order": 41 - }, - { - "adult": false, - "gender": 2, - "id": 3102373, - "known_for_department": "Acting", - "name": "Angelo Spagnoletti", - "original_name": "Angelo Spagnoletti", - "popularity": 2.03, - "profile_path": "/4NtUvdYzUaL0WTE57mciOGGedEZ.jpg", - "cast_id": 128, - "character": "Archimedes Servant", - "credit_id": "64813b8599259c011c3ea158", - "order": 42 - }, - { - "adult": false, - "gender": 0, - "id": 4102350, - "known_for_department": "Acting", - "name": "Hicham Ouaraqa", - "original_name": "Hicham Ouaraqa", - "popularity": 0.6, - "profile_path": null, - "cast_id": 129, - "character": "Moroccan Policeman", - "credit_id": "64813ba4e272600147b83e5d", - "order": 43 - }, - { - "adult": false, - "gender": 0, - "id": 4102351, - "known_for_department": "Acting", - "name": "Adil Louchgui", - "original_name": "Adil Louchgui", - "popularity": 0.6, - "profile_path": null, - "cast_id": 130, - "character": "Moroccan Policeman", - "credit_id": "64813bb3e2726001072087d9", - "order": 44 - }, - { - "adult": false, - "gender": 2, - "id": 1679369, - "known_for_department": "Acting", - "name": "David Mills", - "original_name": "David Mills", - "popularity": 1.051, - "profile_path": null, - "cast_id": 131, - "character": "TV Reporter", - "credit_id": "64813bc3d2b209010c176dd2", - "order": 45 - }, - { - "adult": false, - "gender": 0, - "id": 3020800, - "known_for_department": "Acting", - "name": "Rhyanna Alexander-Davis", - "original_name": "Rhyanna Alexander-Davis", - "popularity": 0.765, - "profile_path": "/p1lfGT7SU0BDjfWLljRx4vSnWpR.jpg", - "cast_id": 132, - "character": "Hippie Girl", - "credit_id": "64813bd0647654012496c98b", - "order": 46 - }, - { - "adult": false, - "gender": 2, - "id": 1599257, - "known_for_department": "Acting", - "name": "Gary Fannin", - "original_name": "Gary Fannin", - "popularity": 0.6, - "profile_path": "/93KIHd00iHFotZz3uTdCugNke7o.jpg", - "cast_id": 133, - "character": "Armed Intelligence Officer", - "credit_id": "64813bddbf31f200e3fb7b4c", - "order": 47 - }, - { - "adult": false, - "gender": 2, - "id": 1953482, - "known_for_department": "Acting", - "name": "Gunnar Cauthery", - "original_name": "Gunnar Cauthery", - "popularity": 0.63, - "profile_path": "/as93zqZlUUM3UgfJdLuVdDRdrC3.jpg", - "cast_id": 134, - "character": "Pilot - Heinkel 111", - "credit_id": "64813bead2b20900ebbede06", - "order": 48 - }, - { - "adult": false, - "gender": 2, - "id": 3091617, - "known_for_department": "Writing", - "name": "Aron von Andrian", - "original_name": "Aron von Andrian", - "popularity": 2.417, - "profile_path": "/zK7lumC8gfsldg9rtLS42RzxJ4u.jpg", - "cast_id": 135, - "character": "Navigator - Heinkel 111", - "credit_id": "64813bf4e272600147b83e87", - "order": 49 - }, - { - "adult": false, - "gender": 0, - "id": 3335477, - "known_for_department": "Acting", - "name": "Nikola Trifunovic", - "original_name": "Nikola Trifunovic", - "popularity": 0.6, - "profile_path": null, - "cast_id": 136, - "character": "SS Kommando", - "credit_id": "64813c10d2b209014e0744c5", - "order": 50 - }, - { - "adult": false, - "gender": 2, - "id": 125719, - "known_for_department": "Acting", - "name": "Henry Garrett", - "original_name": "Henry Garrett", - "popularity": 8.551, - "profile_path": "/uVmFDIaaBNvMYC0iBCr3dFoMdfK.jpg", - "cast_id": 137, - "character": "Louis - Drunk Airline Pilot", - "credit_id": "64813c1ae375c0011c7e4561", - "order": 51 - }, - { - "adult": false, - "gender": 1, - "id": 2218975, - "known_for_department": "Acting", - "name": "Elena Saurel", - "original_name": "Elena Saurel", - "popularity": 5.377, - "profile_path": "/j9QlZakIhoGAPmXHbwlH3wHYDbG.jpg", - "cast_id": 138, - "character": "Drunk Airline Stewardess", - "credit_id": "64813c23e375c00139be7db0", - "order": 52 - }, - { - "adult": false, - "gender": 2, - "id": 1530091, - "known_for_department": "Crew", - "name": "Mike Massa", - "original_name": "Mike Massa", - "popularity": 2.478, - "profile_path": null, - "cast_id": 139, - "character": "1944 Indiana Jones Double", - "credit_id": "64813c2ee375c000ff46d99e", - "order": 53 - }, - { - "adult": false, - "gender": 2, - "id": 1207282, - "known_for_department": "Acting", - "name": "Anthony Ingruber", - "original_name": "Anthony Ingruber", - "popularity": 2.549, - "profile_path": "/fUTCd1jGGQHn912czglHg28v4gR.jpg", - "cast_id": 36, - "character": "1944 Indiana Jones Double / Dutch Prince - Bidder", - "credit_id": "61e19de1eec4f3001ca42c96", - "order": 54 - }, - { - "adult": false, - "gender": 0, - "id": 4102352, - "known_for_department": "Acting", - "name": "Christian Sacha Mehja-Stokes", - "original_name": "Christian Sacha Mehja-Stokes", - "popularity": 0.84, - "profile_path": null, - "cast_id": 140, - "character": "Rich Kid", - "credit_id": "64813c7dd2b20900ca1d42f7", - "order": 55 - }, - { - "adult": false, - "gender": 0, - "id": 3115612, - "known_for_department": "Acting", - "name": "Angus Yellowlees", - "original_name": "Angus Yellowlees", - "popularity": 1.4, - "profile_path": "/lNsKu31s7FSohLIhmrlVgTLeYVS.jpg", - "cast_id": 141, - "character": "Hippie Student", - "credit_id": "64813c896476540143338849", - "order": 56 - }, - { - "adult": false, - "gender": 0, - "id": 3578285, - "known_for_department": "Acting", - "name": "Matthew Staite", - "original_name": "Matthew Staite", - "popularity": 0.627, - "profile_path": null, - "cast_id": 142, - "character": "SS Guard/Comms Officer", - "credit_id": "64813c9564765400e6801eed", - "order": 57 - }, - { - "adult": false, - "gender": 2, - "id": 105869, - "known_for_department": "Acting", - "name": "Corrado Invernizzi", - "original_name": "Corrado Invernizzi", - "popularity": 5.66, - "profile_path": "/eT0noHS5TtUTr0O1bcE8yqWkRoI.jpg", - "cast_id": 74, - "character": "Luigi - Italian Engineer", - "credit_id": "638a62fa0e64af00deaa6d2c", - "order": 58 - }, - { - "adult": false, - "gender": 2, - "id": 12838, - "known_for_department": "Acting", - "name": "Joerg Stadler", - "original_name": "Joerg Stadler", - "popularity": 2.261, - "profile_path": "/c442cR10gEk6CWXNJQUdf3rUFgk.jpg", - "cast_id": 143, - "character": "Gestapo Officer", - "credit_id": "64813cb3bf31f200c612f89c", - "order": 59 - }, - { - "adult": false, - "gender": 2, - "id": 1434488, - "known_for_department": "Acting", - "name": "Thorston Manderlay", - "original_name": "Thorston Manderlay", - "popularity": 2.353, - "profile_path": "/2VHGWiwsWtV3st16pj088KVtDzS.jpg", - "cast_id": 144, - "character": "Staff Car Officer", - "credit_id": "64813cc2647654014333886f", - "order": 60 - }, - { - "adult": false, - "gender": 2, - "id": 1858594, - "known_for_department": "Acting", - "name": "Basil Eidenbenz", - "original_name": "Basil Eidenbenz", - "popularity": 2.71, - "profile_path": "/fvT27dKBe0mLouXE6xa0oCgIAta.jpg", - "cast_id": 145, - "character": "Sentry", - "credit_id": "64813cd0d2b209010c176e8b", - "order": 61 - }, - { - "adult": false, - "gender": 0, - "id": 4102353, - "known_for_department": "Acting", - "name": "Johann Heske", - "original_name": "Johann Heske", - "popularity": 0.63, - "profile_path": null, - "cast_id": 146, - "character": "Sentry", - "credit_id": "64813ce264765400ad814a33", - "order": 62 - }, - { - "adult": false, - "gender": 0, - "id": 4102354, - "known_for_department": "Acting", - "name": "Joshua Broadstone", - "original_name": "Joshua Broadstone", - "popularity": 0.6, - "profile_path": null, - "cast_id": 147, - "character": "Overalls", - "credit_id": "64813cf564765400ad814a4b", - "order": 63 - }, - { - "adult": false, - "gender": 2, - "id": 2622652, - "known_for_department": "Acting", - "name": "Bruce Lester-Johnson", - "original_name": "Bruce Lester-Johnson", - "popularity": 3.714, - "profile_path": "/qcDYGUloUe2thCpaBWHJ1yOWqWY.jpg", - "cast_id": 148, - "character": "Screaming Cabbie", - "credit_id": "64813d01e375c0011c7e45f2", - "order": 64 - }, - { - "adult": false, - "gender": 2, - "id": 1094667, - "known_for_department": "Acting", - "name": "Martin Sherman", - "original_name": "Martin Sherman", - "popularity": 2.015, - "profile_path": "/6i4EIOrnaHvytOxUsh0LLH0M4wf.jpg", - "cast_id": 149, - "character": "Drunk - Appliance Store", - "credit_id": "64813d1699259c0139299575", - "order": 65 - }, - { - "adult": false, - "gender": 0, - "id": 1865779, - "known_for_department": "Acting", - "name": "Allon Sylvain", - "original_name": "Allon Sylvain", - "popularity": 1.096, - "profile_path": "/ajW5apLv666aoh6UeCpe6MLRk5G.jpg", - "cast_id": 150, - "character": "L'Atlantique Maître D", - "credit_id": "64813d22e2726000c92ef395", - "order": 66 - }, - { - "adult": false, - "gender": 2, - "id": 122344, - "known_for_department": "Acting", - "name": "William Meredith", - "original_name": "William Meredith", - "popularity": 1.4, - "profile_path": "/vLiHlMF7IPZ0bNQzN0MV8RKw992.jpg", - "cast_id": 151, - "character": "Con Ed Van Driver", - "credit_id": "64813d2cbf31f200aec6a836", - "order": 67 - }, - { - "adult": false, - "gender": 1, - "id": 3053187, - "known_for_department": "Acting", - "name": "Kate Doherty", - "original_name": "Kate Doherty", - "popularity": 0.622, - "profile_path": null, - "cast_id": 164, - "character": "Basil's Housekeeper", - "credit_id": "64813e9abf31f20100334cbb", - "order": 68 - }, - { - "adult": false, - "gender": 2, - "id": 1623272, - "known_for_department": "Acting", - "name": "Duran Fulton Brown", - "original_name": "Duran Fulton Brown", - "popularity": 1.774, - "profile_path": null, - "cast_id": 153, - "character": "Barricade Cop", - "credit_id": "64813d4999259c011c3ea28c", - "order": 69 - }, - { - "adult": false, - "gender": 0, - "id": 4102355, - "known_for_department": "Acting", - "name": "Eliza Mae Kyffin", - "original_name": "Eliza Mae Kyffin", - "popularity": 0.706, - "profile_path": null, - "cast_id": 154, - "character": "Screaming Beauty Queen", - "credit_id": "64813d5b99259c01392995ab", - "order": 70 - }, - { - "adult": false, - "gender": 0, - "id": 3665696, - "known_for_department": "Acting", - "name": "Mauro Cardinali", - "original_name": "Mauro Cardinali", - "popularity": 0.6, - "profile_path": null, - "cast_id": 155, - "character": "Maximus", - "credit_id": "64813d80bf31f2011d41b30d", - "order": 71 - }, - { - "adult": false, - "gender": 2, - "id": 142290, - "known_for_department": "Acting", - "name": "Mark Killeen", - "original_name": "Mark Killeen", - "popularity": 6.712, - "profile_path": "/dcsHqbZXmCsQE8Vcw3jufx8C8FX.jpg", - "cast_id": 34, - "character": "Pontimus", - "credit_id": "61e19d885f622b00422e50c6", - "order": 72 - }, - { - "adult": false, - "gender": 1, - "id": 2707907, - "known_for_department": "Acting", - "name": "Bharat Doshi", - "original_name": "Bharat Doshi", - "popularity": 0.6, - "profile_path": null, - "cast_id": 156, - "character": "Miss Jaffrey", - "credit_id": "64813d95d2b209014e0745d1", - "order": 73 - }, - { - "adult": false, - "gender": 2, - "id": 1094218, - "known_for_department": "Acting", - "name": "Aïssam Bouali", - "original_name": "Aïssam Bouali", - "popularity": 1.4, - "profile_path": "/bUsUqtF4tjXDMytMggMAx5xUJvv.jpg", - "cast_id": 157, - "character": "Henchman", - "credit_id": "64813d9ed2b20900ebbedee1", - "order": 74 - }, - { - "adult": false, - "gender": 0, - "id": 1405566, - "known_for_department": "Acting", - "name": "Douglas Robson", - "original_name": "Douglas Robson", - "popularity": 1.01, - "profile_path": null, - "cast_id": 158, - "character": "Gunther", - "credit_id": "64813da764765400c7b707c9", - "order": 75 - }, - { - "adult": false, - "gender": 0, - "id": 3988344, - "known_for_department": "Acting", - "name": "Mohammed R. Kamel", - "original_name": "Mohammed R. Kamel", - "popularity": 0.6, - "profile_path": null, - "cast_id": 159, - "character": "Hotel Security", - "credit_id": "64813db199259c00c5b2fff6", - "order": 76 - }, - { - "adult": false, - "gender": 1, - "id": 2001428, - "known_for_department": "Acting", - "name": "Bryony Miller", - "original_name": "Bryony Miller", - "popularity": 4.079, - "profile_path": "/b8j1QLDHlRqG6fq4SkSCK1ayaGW.jpg", - "cast_id": 160, - "character": "Confused Student", - "credit_id": "64813dbce375c000c525daf5", - "order": 77 - }, - { - "adult": false, - "gender": 0, - "id": 4102357, - "known_for_department": "Acting", - "name": "Tiwa Lade", - "original_name": "Tiwa Lade", - "popularity": 0.6, - "profile_path": null, - "cast_id": 161, - "character": "Bubblegum Student", - "credit_id": "64813dd064765400c7b707f5", - "order": 78 - }, - { - "adult": false, - "gender": 0, - "id": 4102358, - "known_for_department": "Acting", - "name": "Brodie Husband", - "original_name": "Brodie Husband", - "popularity": 0.6, - "profile_path": null, - "cast_id": 162, - "character": "Sketching Student", - "credit_id": "64813de6e375c000c525db16", - "order": 79 - }, - { - "adult": false, - "gender": 1, - "id": 3260026, - "known_for_department": "Acting", - "name": "Hannah Onslow", - "original_name": "Hannah Onslow", - "popularity": 1.4, - "profile_path": "/tGSdGZRoWRSMgihgRD5SQ8vxrQ3.jpg", - "cast_id": 163, - "character": "Student", - "credit_id": "64813df6e2726001072089ad", - "order": 80 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 1, - "known_for_department": "Directing", - "name": "George Lucas", - "original_name": "George Lucas", - "popularity": 17.686, - "profile_path": "/WCSZzWdtPmdRxH9LUCVi2JPCSJ.jpg", - "credit_id": "63892422d388ae00961ac9d8", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1, - "known_for_department": "Directing", - "name": "George Lucas", - "original_name": "George Lucas", - "popularity": 17.686, - "profile_path": "/WCSZzWdtPmdRxH9LUCVi2JPCSJ.jpg", - "credit_id": "6082562867825900570e8120", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 2, - "id": 491, - "known_for_department": "Sound", - "name": "John Williams", - "original_name": "John Williams", - "popularity": 3.347, - "profile_path": "/KFyMqUWeiBdP9tJcZyGWOqnrgK.jpg", - "credit_id": "575b68959251410504000dc8", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 2, - "id": 491, - "known_for_department": "Sound", - "name": "John Williams", - "original_name": "John Williams", - "popularity": 3.347, - "profile_path": "/KFyMqUWeiBdP9tJcZyGWOqnrgK.jpg", - "credit_id": "64bc942aac617c00e6bbcdaa", - "department": "Sound", - "job": "Orchestrator" - }, - { - "adult": false, - "gender": 2, - "id": 491, - "known_for_department": "Sound", - "name": "John Williams", - "original_name": "John Williams", - "popularity": 3.347, - "profile_path": "/KFyMqUWeiBdP9tJcZyGWOqnrgK.jpg", - "credit_id": "64bc9431eb79c200c5d9df25", - "department": "Sound", - "job": "Conductor" - }, - { - "adult": false, - "gender": 1, - "id": 8384, - "known_for_department": "Art", - "name": "Anna Pinnock", - "original_name": "Anna Pinnock", - "popularity": 0.891, - "profile_path": null, - "credit_id": "638a5f077d5db500c89b83f2", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 2, - "id": 366, - "known_for_department": "Directing", - "name": "James Mangold", - "original_name": "James Mangold", - "popularity": 14.362, - "profile_path": "/pk0GDjn99crNwR4qgCCEokDYd71.jpg", - "credit_id": "5e574108a6d93100145c82c6", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 366, - "known_for_department": "Directing", - "name": "James Mangold", - "original_name": "James Mangold", - "popularity": 14.362, - "profile_path": "/pk0GDjn99crNwR4qgCCEokDYd71.jpg", - "credit_id": "64800861e375c000e24d1e55", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 2, - "id": 432, - "known_for_department": "Camera", - "name": "Phedon Papamichael", - "original_name": "Phedon Papamichael", - "popularity": 4.494, - "profile_path": null, - "credit_id": "605ea61f8c315900294626e2", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 2, - "id": 433, - "known_for_department": "Editing", - "name": "Michael McCusker", - "original_name": "Michael McCusker", - "popularity": 0.854, - "profile_path": null, - "credit_id": "64686810d1857201802c982e", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 488, - "known_for_department": "Directing", - "name": "Steven Spielberg", - "original_name": "Steven Spielberg", - "popularity": 26.915, - "profile_path": "/tZxcg19YQ3e8fJ0pOs7hjlnmmr6.jpg", - "credit_id": "585e94c392514115c700f680", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 489, - "known_for_department": "Production", - "name": "Kathleen Kennedy", - "original_name": "Kathleen Kennedy", - "popularity": 9.143, - "profile_path": "/ndgYlie0PHkyqEiEBGM8SqrPOkr.jpg", - "credit_id": "56ec87d69251415e59003568", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 1, - "id": 498, - "known_for_department": "Costume & Make-Up", - "name": "Joanna Johnston", - "original_name": "Joanna Johnston", - "popularity": 2.48, - "profile_path": "/xuCe7ZgtqOCaY6MUvXpG7buckXO.jpg", - "credit_id": "638a5f250e64af00c25d127f", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 2, - "id": 508, - "known_for_department": "Writing", - "name": "David Koepp", - "original_name": "David Koepp", - "popularity": 5.807, - "profile_path": "/is3t4k8OMX0KNCD3EilDWOucYZG.jpg", - "credit_id": "6480084fd2b20900ca1ca6dd", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 2, - "id": 648, - "known_for_department": "Writing", - "name": "Philip Kaufman", - "original_name": "Philip Kaufman", - "popularity": 2.737, - "profile_path": "/AtTB8qM4UsifYsKtEPgQSCibP5s.jpg", - "credit_id": "6082561f7776f00058228a40", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 2, - "id": 664, - "known_for_department": "Directing", - "name": "Frank Marshall", - "original_name": "Frank Marshall", - "popularity": 5.083, - "profile_path": "/lt2aBdnfDRJI4hvBu4733ZPGaCa.jpg", - "credit_id": "56e8a51e9251417bb70009c0", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 2216, - "known_for_department": "Sound", - "name": "Gary Rydstrom", - "original_name": "Gary Rydstrom", - "popularity": 2.919, - "profile_path": "/1DoKaxoJlz6hV9bai43e07GxGQf.jpg", - "credit_id": "638a608ce93e950211134101", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 2, - "id": 2216, - "known_for_department": "Sound", - "name": "Gary Rydstrom", - "original_name": "Gary Rydstrom", - "popularity": 2.919, - "profile_path": "/1DoKaxoJlz6hV9bai43e07GxGQf.jpg", - "credit_id": "6481371ce2726000afc0e879", - "department": "Sound", - "job": "Additional Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 5338, - "known_for_department": "Sound", - "name": "Kyrsten Mate", - "original_name": "Kyrsten Mate", - "popularity": 2.076, - "profile_path": null, - "credit_id": "638a605e0e64af009e8eadb7", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 0, - "id": 8163, - "known_for_department": "Sound", - "name": "Jana Vance", - "original_name": "Jana Vance", - "popularity": 1.411, - "profile_path": null, - "credit_id": "64ecbbafe894a6011ef9910c", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 8166, - "known_for_department": "Sound", - "name": "Juan Peralta", - "original_name": "Juan Peralta", - "popularity": 0.706, - "profile_path": "/e89pv3PlTiauZHa1CuC9i8M34Wl.jpg", - "credit_id": "64ecaf69c3c89101007e2a53", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 8684, - "known_for_department": "Crew", - "name": "Dan Bradley", - "original_name": "Dan Bradley", - "popularity": 5.31, - "profile_path": "/hrnm0T93g6yd5WBiZ59Aoff0c2F.jpg", - "credit_id": "64a0e75981da3900c9ed1fc5", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 2, - "id": 11166, - "known_for_department": "Sound", - "name": "William Ross", - "original_name": "William Ross", - "popularity": 1.06, - "profile_path": null, - "credit_id": "64bc9437e9da69012e0dfebf", - "department": "Sound", - "job": "Orchestrator" - }, - { - "adult": false, - "gender": 2, - "id": 11166, - "known_for_department": "Sound", - "name": "William Ross", - "original_name": "William Ross", - "popularity": 1.06, - "profile_path": null, - "credit_id": "64a0e9bc4a52f8012694cd07", - "department": "Sound", - "job": "Conductor" - }, - { - "adult": false, - "gender": 2, - "id": 11354, - "known_for_department": "Crew", - "name": "Ben Cooke", - "original_name": "Ben Cooke", - "popularity": 5.686, - "profile_path": "/tuMetGw8QNRbWEEtMP3SITwBFc2.jpg", - "credit_id": "64a0e7e14a52f800c994b826", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 40796, - "known_for_department": "Camera", - "name": "David Appleby", - "original_name": "David Appleby", - "popularity": 0.989, - "profile_path": "/b8zskcykOOugn31axyHn5qB8hdn.jpg", - "credit_id": "64ecb669e894a600e4e7cba0", - "department": "Camera", - "job": "Key Grip" - }, - { - "adult": false, - "gender": 2, - "id": 15017, - "known_for_department": "Costume & Make-Up", - "name": "Bill Corso", - "original_name": "Bill Corso", - "popularity": 3.51, - "profile_path": "/gY3zqmfv2kNYpQBnIgFormVU829.jpg", - "credit_id": "64c7292163e6fb0138da5853", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 1, - "id": 16363, - "known_for_department": "Production", - "name": "Nina Gold", - "original_name": "Nina Gold", - "popularity": 3.728, - "profile_path": "/emeKuabMDN3C8x8ibby7FNtjRgu.jpg", - "credit_id": "64c72785eec5b50139006437", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 0, - "id": 21122, - "known_for_department": "Sound", - "name": "Ramiro Belgardt", - "original_name": "Ramiro Belgardt", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecafd606f98400ae4a5f1f", - "department": "Sound", - "job": "Music Editor" - }, - { - "adult": false, - "gender": 2, - "id": 21339, - "known_for_department": "Writing", - "name": "Jez Butterworth", - "original_name": "Jez Butterworth", - "popularity": 5.832, - "profile_path": "/fCdknBtQMVoIEW0VfKiL2yMZqgW.jpg", - "credit_id": "6480082be2726000afc05ed7", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 2, - "id": 113041, - "known_for_department": "Sound", - "name": "David Betancourt", - "original_name": "David Betancourt", - "popularity": 2.1, - "profile_path": null, - "credit_id": "64ecbca41feac100c4700f60", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 113046, - "known_for_department": "Sound", - "name": "David Giammarco", - "original_name": "David Giammarco", - "popularity": 1.801, - "profile_path": null, - "credit_id": "64ecaf8806f98400eb6110b3", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 113054, - "known_for_department": "Sound", - "name": "Warren Hendriks", - "original_name": "Warren Hendriks", - "popularity": 1.677, - "profile_path": null, - "credit_id": "64ecb723c613ce00eaaa14e9", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 2, - "id": 113073, - "known_for_department": "Sound", - "name": "Paul Massey", - "original_name": "Paul Massey", - "popularity": 1.477, - "profile_path": "/tWhvSEIPMJVrxeWZ1deVGbMxZLY.jpg", - "credit_id": "64ecaf555258ae00add5d37f", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 113087, - "known_for_department": "Sound", - "name": "Erin Michael Rettig", - "original_name": "Erin Michael Rettig", - "popularity": 0.614, - "profile_path": null, - "credit_id": "64ecb953458199011d2c214a", - "department": "Sound", - "job": "Sound Engineer" - }, - { - "adult": false, - "gender": 2, - "id": 71148, - "known_for_department": "Editing", - "name": "Dirk Westervelt", - "original_name": "Dirk Westervelt", - "popularity": 0.974, - "profile_path": null, - "credit_id": "638a5ea51283e900861e6817", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 77511, - "known_for_department": "Production", - "name": "Zakaria Alaoui", - "original_name": "Zakaria Alaoui", - "popularity": 0.816, - "profile_path": "/wOAZpt31Rv2EMazldNNcMPEheNW.jpg", - "credit_id": "64c72828eec5b501390064a6", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 82133, - "known_for_department": "Production", - "name": "David Webb", - "original_name": "David Webb", - "popularity": 0.73, - "profile_path": null, - "credit_id": "64a0e6df4a52f80145de8af9", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 2, - "id": 95835, - "known_for_department": "Sound", - "name": "Eric A. Norris", - "original_name": "Eric A. Norris", - "popularity": 1.606, - "profile_path": null, - "credit_id": "64ecbad706f984014e69a684", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 120254, - "known_for_department": "Writing", - "name": "John-Henry Butterworth", - "original_name": "John-Henry Butterworth", - "popularity": 2.904, - "profile_path": null, - "credit_id": "6480083ebf31f2013adc2f91", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 0, - "id": 927696, - "known_for_department": "Sound", - "name": "George Hart", - "original_name": "George Hart", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecb9a4e894a60101227204", - "department": "Sound", - "job": "Sound Engineer" - }, - { - "adult": false, - "gender": 0, - "id": 1023711, - "known_for_department": "Art", - "name": "Adam Stockhausen", - "original_name": "Adam Stockhausen", - "popularity": 2.351, - "profile_path": "/i0Pjdf3nfXcMyJmKTmR8fCT9JOt.jpg", - "credit_id": "5e500485a76ac50013a0584d", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 2, - "id": 1073372, - "known_for_department": "Art", - "name": "Oli van der Vijver", - "original_name": "Oli van der Vijver", - "popularity": 1.106, - "profile_path": null, - "credit_id": "64c7287741aac40fb3e5be3d", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1078710, - "known_for_department": "Visual Effects", - "name": "Berj Bannayan", - "original_name": "Berj Bannayan", - "popularity": 0.628, - "profile_path": null, - "credit_id": "64a0e949d5191f011cabb91d", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1174045, - "known_for_department": "Production", - "name": "Simon Emanuel", - "original_name": "Simon Emanuel", - "popularity": 1.668, - "profile_path": "/clw3K31l1TKmoDoSPSBu1F8rVNc.jpg", - "credit_id": "6070bbc0498bc20029457af7", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 1, - "id": 1319120, - "known_for_department": "Costume & Make-Up", - "name": "Charlotte Finlay", - "original_name": "Charlotte Finlay", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0e8178c0a4800e478c3c4", - "department": "Costume & Make-Up", - "job": "Costume Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1326396, - "known_for_department": "Art", - "name": "Kate Grimble", - "original_name": "Kate Grimble", - "popularity": 1.8, - "profile_path": null, - "credit_id": "638a5fa91283e9007c73c5e5", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1337040, - "known_for_department": "Visual Effects", - "name": "Laurens Ehrmann", - "original_name": "Laurens Ehrmann", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6481377abf31f2010033479d", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1360099, - "known_for_department": "Sound", - "name": "Lee Gilmore", - "original_name": "Lee Gilmore", - "popularity": 0.937, - "profile_path": null, - "credit_id": "64ecbaeae894a600c729d61d", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1367505, - "known_for_department": "Sound", - "name": "Ted Caplan", - "original_name": "Ted Caplan", - "popularity": 0.763, - "profile_path": null, - "credit_id": "64ecaff745819900c6f988ce", - "department": "Sound", - "job": "Music Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1379940, - "known_for_department": "Acting", - "name": "Joel Adrian", - "original_name": "Joel Adrian", - "popularity": 1.921, - "profile_path": null, - "credit_id": "64ceaba5614c6d00acb19469", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1388850, - "known_for_department": "Art", - "name": "Peter Dorme", - "original_name": "Peter Dorme", - "popularity": 1.074, - "profile_path": null, - "credit_id": "638a5f416dc6c00097baf59f", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 1388851, - "known_for_department": "Art", - "name": "Oliver Goodier", - "original_name": "Oliver Goodier", - "popularity": 0.6, - "profile_path": null, - "credit_id": "638a5f968a84d200c9c9034d", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1388865, - "known_for_department": "Sound", - "name": "David Chrastka", - "original_name": "David Chrastka", - "popularity": 0.776, - "profile_path": null, - "credit_id": "64ecbb28839018011f8e8138", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1399300, - "known_for_department": "Crew", - "name": "John Berri", - "original_name": "John Berri", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecb7b383901800e5d12757", - "department": "Visual Effects", - "job": "VFX Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1399300, - "known_for_department": "Crew", - "name": "John Berri", - "original_name": "John Berri", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecb69fc613ce014dfd7993", - "department": "Editing", - "job": "Additional Editor" - }, - { - "adult": false, - "gender": 1, - "id": 1400540, - "known_for_department": "Directing", - "name": "Sheila Waldron", - "original_name": "Sheila Waldron", - "popularity": 1.635, - "profile_path": null, - "credit_id": "64a0e78b81da3900ad2be58b", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1401690, - "known_for_department": "Sound", - "name": "Polly McKinnon", - "original_name": "Polly McKinnon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecb91e06f984012d740379", - "department": "Sound", - "job": "Dialogue Editor" - }, - { - "adult": false, - "gender": 1, - "id": 1403427, - "known_for_department": "Production", - "name": "Candice D. Campos", - "original_name": "Candice D. Campos", - "popularity": 0.631, - "profile_path": null, - "credit_id": "64c72813d7a70a0139dc50e3", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1404553, - "known_for_department": "Crew", - "name": "Moira Houlihan", - "original_name": "Moira Houlihan", - "popularity": 1.097, - "profile_path": null, - "credit_id": "64ecbe08594c9400ffe77c16", - "department": "Crew", - "job": "Unit Publicist" - }, - { - "adult": false, - "gender": 2, - "id": 1406873, - "known_for_department": "Sound", - "name": "Josh Gold", - "original_name": "Josh Gold", - "popularity": 1.38, - "profile_path": null, - "credit_id": "64ecb70d5258ae012ca669b4", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1408329, - "known_for_department": "Visual Effects", - "name": "Kathy Siegel", - "original_name": "Kathy Siegel", - "popularity": 0.615, - "profile_path": null, - "credit_id": "648b6346076ce800c8b964fa", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1414187, - "known_for_department": "Crew", - "name": "Robert Weaver", - "original_name": "Robert Weaver", - "popularity": 0.635, - "profile_path": null, - "credit_id": "64a0e7b44a52f80145de8bcf", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1416153, - "known_for_department": "Sound", - "name": "Donald Sylvester", - "original_name": "Donald Sylvester", - "popularity": 0.713, - "profile_path": null, - "credit_id": "638a60a91283e90097662e0a", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1426327, - "known_for_department": "Crew", - "name": "Nicolas Hernandez", - "original_name": "Nicolas Hernandez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "638a616115376c00c834be59", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1430408, - "known_for_department": "Costume & Make-Up", - "name": "Frances Hannon", - "original_name": "Frances Hannon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecb3c8594c9400ffe7790f", - "department": "Costume & Make-Up", - "job": "Hair Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1430408, - "known_for_department": "Costume & Make-Up", - "name": "Frances Hannon", - "original_name": "Frances Hannon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecb3b91feac100c4700c1e", - "department": "Costume & Make-Up", - "job": "Makeup Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1430408, - "known_for_department": "Costume & Make-Up", - "name": "Frances Hannon", - "original_name": "Frances Hannon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c7295395ce24011e59b95b", - "department": "Costume & Make-Up", - "job": "Prosthetic Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1430472, - "known_for_department": "Costume & Make-Up", - "name": "Chiara Ugolini", - "original_name": "Chiara Ugolini", - "popularity": 0.682, - "profile_path": null, - "credit_id": "64c72adecadb6b01440e5346", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 1434643, - "known_for_department": "Crew", - "name": "Waldo Mason", - "original_name": "Waldo Mason", - "popularity": 0.895, - "profile_path": null, - "credit_id": "64c72a57cadb6b01440e52ea", - "department": "Costume & Make-Up", - "job": "Prosthetics" - }, - { - "adult": false, - "gender": 0, - "id": 1437621, - "known_for_department": "Costume & Make-Up", - "name": "Sarah Nuth", - "original_name": "Sarah Nuth", - "popularity": 0.659, - "profile_path": null, - "credit_id": "64c72a6c30f79c013bd2c836", - "department": "Costume & Make-Up", - "job": "Prosthetic Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1437622, - "known_for_department": "Costume & Make-Up", - "name": "Charlotte Rogers", - "original_name": "Charlotte Rogers", - "popularity": 1.197, - "profile_path": null, - "credit_id": "64c7299563e6fb00e12b805b", - "department": "Costume & Make-Up", - "job": "Prosthetic Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1450955, - "known_for_department": "Production", - "name": "Lex Donovan", - "original_name": "Lex Donovan", - "popularity": 0.632, - "profile_path": null, - "credit_id": "64a0e8b0d5191f00c506811e", - "department": "Production", - "job": "Location Manager" - }, - { - "adult": false, - "gender": 0, - "id": 1453243, - "known_for_department": "Costume & Make-Up", - "name": "Lorraine Hill", - "original_name": "Lorraine Hill", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c7296763aad2020d09ee95", - "department": "Costume & Make-Up", - "job": "Prosthetics" - }, - { - "adult": false, - "gender": 1, - "id": 1459645, - "known_for_department": "Sound", - "name": "Christine Sirois", - "original_name": "Christine Sirois", - "popularity": 0.829, - "profile_path": null, - "credit_id": "64ecbd24839018013cdbb4c1", - "department": "Sound", - "job": "ADR Recordist" - }, - { - "adult": false, - "gender": 0, - "id": 1459864, - "known_for_department": "Art", - "name": "Quinn Robinson", - "original_name": "Quinn Robinson", - "popularity": 0.836, - "profile_path": null, - "credit_id": "638a60220e64af00c25d12af", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 1461368, - "known_for_department": "Sound", - "name": "Mark Appleby", - "original_name": "Mark Appleby", - "popularity": 0.683, - "profile_path": null, - "credit_id": "64ecbd56594c9400e26117fa", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1463393, - "known_for_department": "Sound", - "name": "Chris Manning", - "original_name": "Chris Manning", - "popularity": 0.729, - "profile_path": "/epR2FpCWyqUZV4rkdKBe0wAoSYE.jpg", - "credit_id": "64ecbc225258ae014df3b186", - "department": "Sound", - "job": "Foley Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1463477, - "known_for_department": "Acting", - "name": "Michael DeBeer", - "original_name": "Michael DeBeer", - "popularity": 2.896, - "profile_path": null, - "credit_id": "64a0e908d5191f011cabb8e5", - "department": "Crew", - "job": "In Memory Of" - }, - { - "adult": false, - "gender": 0, - "id": 1470167, - "known_for_department": "Camera", - "name": "Jonathan Olley", - "original_name": "Jonathan Olley", - "popularity": 1.719, - "profile_path": null, - "credit_id": "64ecbde2c3c891011da00eaa", - "department": "Camera", - "job": "Still Photographer" - }, - { - "adult": false, - "gender": 0, - "id": 1473164, - "known_for_department": "Visual Effects", - "name": "Andrew Whitehurst", - "original_name": "Andrew Whitehurst", - "popularity": 0.823, - "profile_path": null, - "credit_id": "648b6331c2ff3d00ad008ace", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1487710, - "known_for_department": "Art", - "name": "Martin Foley", - "original_name": "Martin Foley", - "popularity": 2.479, - "profile_path": null, - "credit_id": "638a5f6fe93e9501c466a20b", - "department": "Art", - "job": "Supervising Art Director" - }, - { - "adult": false, - "gender": 2, - "id": 1530091, - "known_for_department": "Crew", - "name": "Mike Massa", - "original_name": "Mike Massa", - "popularity": 2.478, - "profile_path": null, - "credit_id": "64ecb35f5258ae00add5d485", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 1533060, - "known_for_department": "Editing", - "name": "Andrew Buckland", - "original_name": "Andrew Buckland", - "popularity": 2.36, - "profile_path": null, - "credit_id": "64686824c3514c015779be2a", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1534821, - "known_for_department": "Art", - "name": "Gabriel Hardman", - "original_name": "Gabriel Hardman", - "popularity": 0.652, - "profile_path": null, - "credit_id": "64ecb3955258ae00c94d9898", - "department": "Art", - "job": "Storyboard Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1534987, - "known_for_department": "Sound", - "name": "Tom Williams", - "original_name": "Tom Williams", - "popularity": 1.103, - "profile_path": null, - "credit_id": "64bc947d85c0a200c897f0f0", - "department": "Sound", - "job": "Other" - }, - { - "adult": false, - "gender": 0, - "id": 1542378, - "known_for_department": "Costume & Make-Up", - "name": "Emma J. Slater", - "original_name": "Emma J. Slater", - "popularity": 0.854, - "profile_path": null, - "credit_id": "64c72aaf95ce24011e59ba55", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 2, - "id": 1546028, - "known_for_department": "Art", - "name": "Andrew Palmer", - "original_name": "Andrew Palmer", - "popularity": 0.937, - "profile_path": null, - "credit_id": "64c728b830f79c00c781d3ff", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1548696, - "known_for_department": "Editing", - "name": "Skip Kimball", - "original_name": "Skip Kimball", - "popularity": 1.118, - "profile_path": null, - "credit_id": "64a0ea7ec390c500cafffbaa", - "department": "Editing", - "job": "Colorist" - }, - { - "adult": false, - "gender": 0, - "id": 1550636, - "known_for_department": "Costume & Make-Up", - "name": "Karen Asano-Myers", - "original_name": "Karen Asano-Myers", - "popularity": 1.221, - "profile_path": null, - "credit_id": "64c728f463aad2020b7b715f", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 2, - "id": 1561360, - "known_for_department": "Sound", - "name": "Brian Chumney", - "original_name": "Brian Chumney", - "popularity": 1.742, - "profile_path": "/hioKZVbtglGhL0rdI9mjqf2AwEe.jpg", - "credit_id": "64a0e9a2d5191f00e26401c4", - "department": "Sound", - "job": "Foley Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 1564540, - "known_for_department": "Editing", - "name": "Sandra Grubb", - "original_name": "Sandra Grubb", - "popularity": 1.64, - "profile_path": null, - "credit_id": "64ecb883e894a600c729d55e", - "department": "Editing", - "job": "First Assistant Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1568519, - "known_for_department": "Sound", - "name": "Stuart Wilson", - "original_name": "Stuart Wilson", - "popularity": 0.789, - "profile_path": null, - "credit_id": "64ecaf27c3c891013ab36d6f", - "department": "Sound", - "job": "Production Sound Mixer" - }, - { - "adult": false, - "gender": 1, - "id": 1572873, - "known_for_department": "Sound", - "name": "Ronni Brown", - "original_name": "Ronni Brown", - "popularity": 2.18, - "profile_path": "/ivUg96HtBHsyIMJ5dLq64KNxsrM.jpg", - "credit_id": "64ecbbd15258ae010bdab218", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1591559, - "known_for_department": "Costume & Make-Up", - "name": "Adrian Rigby", - "original_name": "Adrian Rigby", - "popularity": 1.321, - "profile_path": null, - "credit_id": "64c72981eec5b5011cb12b8b", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 2, - "id": 1614071, - "known_for_department": "Lighting", - "name": "Tom O'Sullivan", - "original_name": "Tom O'Sullivan", - "popularity": 0.676, - "profile_path": null, - "credit_id": "64a0e9dd4a52f800af1253a2", - "department": "Lighting", - "job": "Rigging Gaffer" - }, - { - "adult": false, - "gender": 0, - "id": 1615149, - "known_for_department": "Sound", - "name": "Simon Diggins", - "original_name": "Simon Diggins", - "popularity": 1.245, - "profile_path": null, - "credit_id": "64ecbd6ac3c891013ab3724b", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1616064, - "known_for_department": "Costume & Make-Up", - "name": "Karen Cohen", - "original_name": "Karen Cohen", - "popularity": 1.084, - "profile_path": null, - "credit_id": "64a0e82f81da3900c9ed2099", - "department": "Costume & Make-Up", - "job": "Hair Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1616064, - "known_for_department": "Costume & Make-Up", - "name": "Karen Cohen", - "original_name": "Karen Cohen", - "popularity": 1.084, - "profile_path": null, - "credit_id": "64a0e8278c0a48013b3d94ef", - "department": "Costume & Make-Up", - "job": "Makeup Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1635006, - "known_for_department": "Costume & Make-Up", - "name": "Chris Lyons", - "original_name": "Chris Lyons", - "popularity": 1.4, - "profile_path": null, - "credit_id": "64c72a4563aad20209a5b43c", - "department": "Costume & Make-Up", - "job": "Special Effects Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1669139, - "known_for_department": "Sound", - "name": "Samson Neslund", - "original_name": "Samson Neslund", - "popularity": 0.979, - "profile_path": null, - "credit_id": "64ecbafe458199013a7f4a76", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1697626, - "known_for_department": "Lighting", - "name": "Dave Brennan", - "original_name": "Dave Brennan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0e9d0c390c500eb35186c", - "department": "Lighting", - "job": "Best Boy Electric" - }, - { - "adult": false, - "gender": 0, - "id": 1714911, - "known_for_department": "Costume & Make-Up", - "name": "Sally Crouch", - "original_name": "Sally Crouch", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c7293ed7a70a00ad654159", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 1730428, - "known_for_department": "Costume & Make-Up", - "name": "Angie Mudge", - "original_name": "Angie Mudge", - "popularity": 0.76, - "profile_path": null, - "credit_id": "64c7297263e6fb00acdcc09c", - "department": "Costume & Make-Up", - "job": "Makeup Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1757613, - "known_for_department": "Visual Effects", - "name": "Keith Sellers", - "original_name": "Keith Sellers", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0e9540cb3350138fcfab9", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1757647, - "known_for_department": "Editing", - "name": "Daniel M. Nussbaum", - "original_name": "Daniel M. Nussbaum", - "popularity": 0.66, - "profile_path": null, - "credit_id": "64ecb8a706f984014e69a5b7", - "department": "Editing", - "job": "First Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1759658, - "known_for_department": "Costume & Make-Up", - "name": "Jo Barrass-Short", - "original_name": "Jo Barrass-Short", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c729b1db8a0000ad4b423b", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 2, - "id": 1769100, - "known_for_department": "Editing", - "name": "Christopher Rucinski", - "original_name": "Christopher Rucinski", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecb8c51feac100c4700def", - "department": "Editing", - "job": "Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1775689, - "known_for_department": "Art", - "name": "Jake Hall", - "original_name": "Jake Hall", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c7288acadb6b0125707742", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 1784629, - "known_for_department": "Sound", - "name": "Mike Tehrani", - "original_name": "Mike Tehrani", - "popularity": 0.601, - "profile_path": null, - "credit_id": "64ecbd8a458199010099c491", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1789575, - "known_for_department": "Art", - "name": "Isona Rigau", - "original_name": "Isona Rigau", - "popularity": 0.988, - "profile_path": "/9QKjIf1jmemge0tnREL811kPKmB.jpg", - "credit_id": "638a60116dc6c00097baf5d3", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 1797894, - "known_for_department": "Production", - "name": "Simon Mills", - "original_name": "Simon Mills", - "popularity": 1.102, - "profile_path": null, - "credit_id": "64ecb46083901800c88b8585", - "department": "Production", - "job": "Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 1918598, - "known_for_department": "Art", - "name": "Charlotte Malynn", - "original_name": "Charlotte Malynn", - "popularity": 1.799, - "profile_path": null, - "credit_id": "638a5fe815376c007b36f62d", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1922321, - "known_for_department": "Costume & Make-Up", - "name": "Amy Haida", - "original_name": "Amy Haida", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c729f841aac40fb2da742a", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 1931606, - "known_for_department": "Costume & Make-Up", - "name": "Gabor Kerekes", - "original_name": "Gabor Kerekes", - "popularity": 0.612, - "profile_path": null, - "credit_id": "64c72a29db8a0000ad4b428d", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 1967858, - "known_for_department": "Sound", - "name": "Richard Duarte", - "original_name": "Richard Duarte", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecbbf5c613ce010b8e0cff", - "department": "Sound", - "job": "Foley Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1971073, - "known_for_department": "Costume & Make-Up", - "name": "Sophie Ashworth", - "original_name": "Sophie Ashworth", - "popularity": 0.621, - "profile_path": null, - "credit_id": "64c7290bd7a70a00e2f6d9c4", - "department": "Costume & Make-Up", - "job": "Prosthetic Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1974609, - "known_for_department": "Art", - "name": "Elicia Scales", - "original_name": "Elicia Scales", - "popularity": 0.666, - "profile_path": null, - "credit_id": "64c728cdeec5b500ff529216", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 2009105, - "known_for_department": "Art", - "name": "Sam Leake", - "original_name": "Sam Leake", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c728a063aad20209a5b334", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 2016737, - "known_for_department": "Visual Effects", - "name": "Julien Martins", - "original_name": "Julien Martins", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0e9914a52f8012694cce3", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2095251, - "known_for_department": "Camera", - "name": "Nic Cupac", - "original_name": "Nic Cupac", - "popularity": 1.543, - "profile_path": null, - "credit_id": "64813f2599259c00c5b300ef", - "department": "Crew", - "job": "In Memory Of" - }, - { - "adult": false, - "gender": 0, - "id": 2157866, - "known_for_department": "Crew", - "name": "Hanin Ouidder", - "original_name": "Hanin Ouidder", - "popularity": 0.932, - "profile_path": null, - "credit_id": "638a60d87d5db5007cdb9681", - "department": "Visual Effects", - "job": "Special Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2177238, - "known_for_department": "Visual Effects", - "name": "Matt Blouin", - "original_name": "Matt Blouin", - "popularity": 0.628, - "profile_path": null, - "credit_id": "64ecb7cf594c9400c554d6c8", - "department": "Visual Effects", - "job": "VFX Editor" - }, - { - "adult": false, - "gender": 0, - "id": 2357879, - "known_for_department": "Costume & Make-Up", - "name": "Leanne Alison White", - "original_name": "Leanne Alison White", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c72af1cadb6b01440e5359", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 2, - "id": 2437985, - "known_for_department": "Crew", - "name": "Adam Basil", - "original_name": "Adam Basil", - "popularity": 5.03, - "profile_path": "/nFacpuhpaOl013z9cUqL1dSFxtj.jpg", - "credit_id": "64ceac02303c85013a14d49f", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2438109, - "known_for_department": "Acting", - "name": "Fredrik T. Hiebert", - "original_name": "Fredrik T. Hiebert", - "popularity": 1.005, - "profile_path": null, - "credit_id": "64a0eb1481da39012c6f4d50", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 2441460, - "known_for_department": "Visual Effects", - "name": "Alistair Williams", - "original_name": "Alistair Williams", - "popularity": 0.898, - "profile_path": null, - "credit_id": "64a0e7fc0cb3350138fcf963", - "department": "Visual Effects", - "job": "Special Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2503997, - "known_for_department": "Crew", - "name": "Abdelaaziz Attougui", - "original_name": "Abdelaaziz Attougui", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceabfa85090f00e796c258", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2650623, - "known_for_department": "Costume & Make-Up", - "name": "Andrew Whiteoak", - "original_name": "Andrew Whiteoak", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c72b06db8a0000e328979d", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 2, - "id": 2808013, - "known_for_department": "Visual Effects", - "name": "Reetu Aggarwal", - "original_name": "Reetu Aggarwal", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64813757bf31f2011d41af01", - "department": "Visual Effects", - "job": "VFX Artist" - }, - { - "adult": false, - "gender": 2, - "id": 2827126, - "known_for_department": "Production", - "name": "Matthew Wells", - "original_name": "Matthew Wells", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64686837c3514c015779be37", - "department": "Crew", - "job": "Post Production Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2846579, - "known_for_department": "Crew", - "name": "Matthew Bell", - "original_name": "Matthew Bell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceac0b85090f00c87ce465", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2849340, - "known_for_department": "Costume & Make-Up", - "name": "Clementine Ollerenshaw", - "original_name": "Clementine Ollerenshaw", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c72a7f30f79c00c781d4f4", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 2851511, - "known_for_department": "Crew", - "name": "Dan Adams", - "original_name": "Dan Adams", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceab876d4c9700afadb371", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2886344, - "known_for_department": "Costume & Make-Up", - "name": "Olivia Jerrard", - "original_name": "Olivia Jerrard", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c72a1663e6fb011b3aefbc", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 2891049, - "known_for_department": "Crew", - "name": "Roman Neso Laupmaa", - "original_name": "Roman Neso Laupmaa", - "popularity": 0.6, - "profile_path": "/k2oeQpPqlZtRAwZbQ5k0XlKmbaI.jpg", - "credit_id": "64ceab97fa27f400c50af42f", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 2969854, - "known_for_department": "Crew", - "name": "Alex King", - "original_name": "Alex King", - "popularity": 0.642, - "profile_path": null, - "credit_id": "64bc9384af85de00c662c9fe", - "department": "Crew", - "job": "Other" - }, - { - "adult": false, - "gender": 2, - "id": 2972694, - "known_for_department": "Sound", - "name": "Greg J. Peterson", - "original_name": "Greg J. Peterson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecbc401feac100c4700f38", - "department": "Sound", - "job": "Foley Editor" - }, - { - "adult": false, - "gender": 0, - "id": 3129337, - "known_for_department": "Editing", - "name": "A.R. Björklund", - "original_name": "A.R. Björklund", - "popularity": 0.725, - "profile_path": "/v5HcsF9bHB3GTuALC0ItrT40ZKx.jpg", - "credit_id": "6481356dd2b20900ca1d3d30", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 0, - "id": 3129337, - "known_for_department": "Editing", - "name": "A.R. Björklund", - "original_name": "A.R. Björklund", - "popularity": 0.725, - "profile_path": "/v5HcsF9bHB3GTuALC0ItrT40ZKx.jpg", - "credit_id": "6468684b006b01018958588e", - "department": "Production", - "job": "Post Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3162828, - "known_for_department": "Costume & Make-Up", - "name": "Mona Turnbull", - "original_name": "Mona Turnbull", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c72acd63e6fb00e12b812d", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 3344658, - "known_for_department": "Costume & Make-Up", - "name": "Madeleine Drewell", - "original_name": "Madeleine Drewell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c729e863aad20209a5b3f8", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 3446430, - "known_for_department": "Crew", - "name": "James Apps", - "original_name": "James Apps", - "popularity": 1.105, - "profile_path": null, - "credit_id": "64ceabb46d4c97014f4222c2", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3477194, - "known_for_department": "Directing", - "name": "Blake Simon", - "original_name": "Blake Simon", - "popularity": 0.6, - "profile_path": "/3Af4Gn0ECRmONJ8dysANHq5sKuS.jpg", - "credit_id": "64ecb29d83901801021de41c", - "department": "Production", - "job": "Associate Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3491105, - "known_for_department": "Costume & Make-Up", - "name": "Samuel James", - "original_name": "Samuel James", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c72a08eec5b500c5f2579a", - "department": "Costume & Make-Up", - "job": "Wigmaker" - }, - { - "adult": false, - "gender": 2, - "id": 3505011, - "known_for_department": "Crew", - "name": "Mehrzad Asgi-Kermani", - "original_name": "Mehrzad Asgi-Kermani", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceabe74d679100acf0593d", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3548737, - "known_for_department": "Art", - "name": "Tim Dutton", - "original_name": "Tim Dutton", - "popularity": 0.6, - "profile_path": null, - "credit_id": "638a5f58e93e9501e208c18d", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 1, - "id": 3553794, - "known_for_department": "Crew", - "name": "Emma Sawyer", - "original_name": "Emma Sawyer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecba6345819900c6f98c46", - "department": "Directing", - "job": "Script Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3580287, - "known_for_department": "Crew", - "name": "Luciano Bacheta", - "original_name": "Luciano Bacheta", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceabf0549dda0139328f1c", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 3652887, - "known_for_department": "Costume & Make-Up", - "name": "Jean Carlos de Blas", - "original_name": "Jean Carlos de Blas", - "popularity": 0.6, - "profile_path": "/zpQPINZtUNKwu4f6UOchnW2ewk.jpg", - "credit_id": "64c729d995ce2400af1c145f", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 3831786, - "known_for_department": "Costume & Make-Up", - "name": "Hazel d Smith", - "original_name": "Hazel d Smith", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c72abedb8a000100c4a5a7", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 3837119, - "known_for_department": "Costume & Make-Up", - "name": "Emma Leigh Porter", - "original_name": "Emma Leigh Porter", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c72a8ddb8a00013a05e0aa", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 0, - "id": 3892435, - "known_for_department": "Costume & Make-Up", - "name": "Debbie Black", - "original_name": "Debbie Black", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c729c430f79c011e0682b9", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 4104274, - "known_for_department": "Crew", - "name": "Fiona Cousins", - "original_name": "Fiona Cousins", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0ea0b81da3900c9ed21fd", - "department": "Crew", - "job": "Special Effects Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4141523, - "known_for_department": "Production", - "name": "Nathan Woods", - "original_name": "Nathan Woods", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64bc93ea85c0a200ad602fac", - "department": "Crew", - "job": "Production Controller" - }, - { - "adult": false, - "gender": 0, - "id": 4141523, - "known_for_department": "Production", - "name": "Nathan Woods", - "original_name": "Nathan Woods", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0e71a0cb33500ab977973", - "department": "Production", - "job": "Associate Producer" - }, - { - "adult": false, - "gender": 0, - "id": 4141524, - "known_for_department": "Production", - "name": "Kirsty Barham", - "original_name": "Kirsty Barham", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0e8628c0a4800ae244a24", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4141525, - "known_for_department": "Art", - "name": "Siobhan Walsh", - "original_name": "Siobhan Walsh", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0ea6581da39010b8b3b7a", - "department": "Art", - "job": "Construction Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4141526, - "known_for_department": "Crew", - "name": "Edoardo Martino", - "original_name": "Edoardo Martino", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0eadc81da3900c9ed228f", - "department": "Crew", - "job": "Animal Wrangler" - }, - { - "adult": false, - "gender": 0, - "id": 4189264, - "known_for_department": "Production", - "name": "Anthony Dixon", - "original_name": "Anthony Dixon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c7280163e6fb00acdcbfcd", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 0, - "id": 4189272, - "known_for_department": "Costume & Make-Up", - "name": "Lucy Rowley", - "original_name": "Lucy Rowley", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c72a9ecadb6b01066dd4be", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 4199357, - "known_for_department": "Crew", - "name": "Miguel Arregui", - "original_name": "Miguel Arregui", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceabdd85090f0125bc658a", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 1, - "id": 4225447, - "known_for_department": "Visual Effects", - "name": "Lily-May Licorish", - "original_name": "Lily-May Licorish", - "popularity": 0.6, - "profile_path": "/6MUH6x4M3WsAgXCl8q37gItrYN3.jpg", - "credit_id": "64e2a1869463180102cb4660", - "department": "Visual Effects", - "job": "Visual Effects Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4239323, - "known_for_department": "Production", - "name": "Kelly Lee", - "original_name": "Kelly Lee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecb5a4c613ce012cc69be5", - "department": "Production", - "job": "Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 4239377, - "known_for_department": "Sound", - "name": "Rich Danhakl", - "original_name": "Rich Danhakl", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecbb68c3c89100c6842056", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 0, - "id": 4239382, - "known_for_department": "Sound", - "name": "Dave Tourkow", - "original_name": "Dave Tourkow", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecbcdf458199010099c462", - "department": "Sound", - "job": "ADR Engineer" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Vudu Extended Preview", - "key": "WBoDtHx1jAA", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-08-29T16:00:18.000Z", - "id": "64ee2b6977d23b00cb84d230" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Crafting Indy", - "key": "3dmRtTJrz5k", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-17T19:00:19.000Z", - "id": "64b5c7f0e0ca7f0106989903" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Celebrating Harrison Ford", - "key": "jDY6Ul5jJg0", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-13T17:00:21.000Z", - "id": "64b162c7bbd0b0013bc1e324" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "John Williams Featurette", - "key": "N1IxAXuyDAQ", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-07T22:31:37.000Z", - "id": "64b1c20a78570e00ad4abffe" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Ride of a Lifetime", - "key": "iDsrpTG6GvM", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-06T16:03:16.000Z", - "id": "64b1c1e50bb07600eb283574" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Biggest Fear", - "key": "-qZm3-ec7Aw", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-05T19:41:33.000Z", - "id": "64b1c1db23d27800c93b12a3" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "First Day", - "key": "270cxx1k378", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-05T19:39:59.000Z", - "id": "64b1c1d50e4fc800c682ddbd" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Summer's #1 Movie", - "key": "7KiG8UxDg0I", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-05T16:45:45.000Z", - "id": "64b1c1c137806200c58647d9" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "BFI Future Skills trainees on working on LucasFilms’ Indiana Jones and the Dial of Destiny", - "key": "Kzj51XOVQuY", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-03T10:42:51.000Z", - "id": "64a2c0a1e8d02800c5467e1b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Spoiler Warning", - "key": "I0vnE0-jXS4", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-01T17:00:14.000Z", - "id": "64a2c9dc11386c011c3a9429" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "A New Discovery", - "key": "T8ojE7Nsfwc", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-29T16:00:19.000Z", - "id": "649db2c3c072a2012e23be37" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Summer's Biggest Adventure", - "key": "0Xud-uWZBbo", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-29T07:11:34.000Z", - "id": "649db2aec072a2014faf0d7b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Map of Adventures", - "key": "VfReNyfvQWA", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-27T19:00:26.000Z", - "id": "649cc9ccc072a2014fae7025" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Behind the Action Featurette", - "key": "XiLeOpe1384", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-26T16:00:17.000Z", - "id": "649a8a270e5aba00e2c5e42f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "One Final Adventure", - "key": "dTkkNkBLmM0", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-25T16:04:07.000Z", - "id": "649913bd03bf8400af157cc2" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Triumphant", - "key": "uzdf9BKwAVQ", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-23T16:00:46.000Z", - "id": "6499878fb3440900e272e97c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Harrison Ford Reflects on Playing Indiana Jones, New Adventures Come to the Disney Parks, and More!", - "key": "MuyDxVAhKBA", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-22T19:00:15.000Z", - "id": "6499883f6f43ec00e27eb2ef" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Stars at the U.S. Red Carpet Premiere", - "key": "Mc_D2bWMaSo", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-21T19:00:09.000Z", - "id": "649987cfbbd0b000e7305fde" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Train", - "key": "xBue7dwYVP4", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-20T16:00:42.000Z", - "id": "649987f862f33500ca44641f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Icons", - "key": "7nssKGKCiYU", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-16T23:56:12.000Z", - "id": "64901960c3c89100ae51f9a1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "In 2 Weeks", - "key": "8-nrsYTzMC8", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-16T16:00:10.000Z", - "id": "64901932559d2200c5779c7c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Harrison Ford and Ke Huy Quan", - "key": "7AfDAtEgJTo", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-15T21:33:31.000Z", - "id": "6490194ec3c89100cadb4d86" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Legacy of Indiana Jones", - "key": "AYZmL9D3BEI", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-14T16:00:07.000Z", - "id": "649019462f8d09011d251937" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Get in the Pool", - "key": "LsZb0RE-ZfE", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-06-12T17:00:19.000Z", - "id": "64897c04bf31f25054b813dd" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Steal", - "key": "deacRH_uoJc", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-22T13:51:40.000Z", - "id": "6472c50abe2d4900a7d6012c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Rescue", - "key": "Q9Tian4FtJA", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-18T20:04:28.000Z", - "id": "64669be4006b0100e6b343cc" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Last Adventure", - "key": "TgBvNq94C6o", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-18T16:01:07.000Z", - "id": "64669c2433a3760175d1cb27" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer 2", - "key": "eQfMbSe7F2g", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-04-07T11:57:51.000Z", - "id": "643093aa6dea3a00b54ea94f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Big Game TV Spot", - "key": "TQpwONzpcy4", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-02-13T00:02:27.000Z", - "id": "63e97fd21277780081a444ab" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "ZfVYgWYaHmE", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2022-12-01T21:00:16.000Z", - "id": "63891de20398ab008fad9781" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/9m161GawbY3cWxe6txd1NOHTjd0.jpg", - "vote_average": 5.454, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/35z8hWuzfFUZQaYog8E9LsXW3iI.jpg", - "vote_average": 5.394, - "vote_count": 10, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/57JocxmicOoAMhkUSmdKBlpZWMT.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/ymZDxJle67EBFTEiBp1WzRuXjZc.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "de", - "file_path": "/g2sNNB5OYZDhVdvDolsDCftAAS1.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/4COltJdpjNmcTSgS0nGxVOZrDAw.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/j0IobR8VH9x0Y5koAcnB7VkPW04.jpg", - "vote_average": 5.27, - "vote_count": 10, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/oFv4qzBLAbi7AKnPaRfiApF4XbL.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 855, - "iso_639_1": null, - "file_path": "/AgoA1zXLXMHN6E9fDTYuE10Tmuc.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1520 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/o9GQIxwZIR6VKSwLZHiaRSgaMzA.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/b0UUx8OvqQASesc78mXRzvjmxmj.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1125, - "iso_639_1": null, - "file_path": "/4MJYDmHX5thaHhF45xzorQp06rs.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/po6AvQRVi01teGlRMX3VYsJ5zuc.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/4Pp3stq63JykDEWookarcngL8Dj.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/pEIoGAuBcnNYRSK1qI3fjew2g7G.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "de", - "file_path": "/cxXH96ZJZU4lDKIYi8zxR0E47BX.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/76405158Vu9xWtocQvRtsOn1sCQ.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1806, - "iso_639_1": null, - "file_path": "/3nm8b8VluUJZj8Hdtwmb2Zy1B1Y.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3211 - }, - { - "aspect_ratio": 1.778, - "height": 1803, - "iso_639_1": null, - "file_path": "/ahe0zwv4ajIpDuD7PffXkBuJSMg.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3205 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/3dK3SMOQiKYpTr36KAI8995FK52.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/b4EgNYB4ZlThtf4EHKZiu1Qfa1o.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/2BKJMsrlUUbosT36kyCdwD26HDt.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/dzFsfqe7nVKpsYEzdW1CfxNp2NO.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/CrwsWGdNtYpc1zGg1hPxuB88PT.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1620, - "iso_639_1": null, - "file_path": "/gCT47rlj2NcME1ObrzLJwlbutMT.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2880 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/r3TQrFiBRoYqZcL1aAUU7HBc2JH.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/5RpBfgxKRht9i1W69TJfrz78aGH.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 848, - "iso_639_1": null, - "file_path": "/4ZJu62h1M6WnwuXG5cls20RMi2k.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1507 - }, - { - "aspect_ratio": 1.778, - "height": 1607, - "iso_639_1": null, - "file_path": "/2i2xWYOoniy61xDYDAmFMYodmW6.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2857 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/uCXBDR8ArGWFh36lZaIlutW3pOa.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/rDZ7ETqD5u0hbQuMiaig6G8yLLp.jpg", - "vote_average": 5.068, - "vote_count": 7, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/2ycmzTMAU6peTnas80lz4oDxMRp.jpg", - "vote_average": 5.068, - "vote_count": 7, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/zPcuuhwZFDzBTc66wtrLZ2qX5y4.jpg", - "vote_average": 5.068, - "vote_count": 7, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/m0cKmfdhXoGSuPphbe06IoAOMEy.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/cg7IqhQvRgQxcY4VB3doHUgvOlQ.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/u8MCqhIV29jq4VHc6VMSWNDwW1j.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/nlAxSe05g8IJ4y5kNr7gm5iswjr.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/wT2Vev31ZvtR9IO1MyMdQKJnZfL.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1843, - "iso_639_1": null, - "file_path": "/8XeZr9VaaN5Np7NLvxRn852smap.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 3277 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/iLGYCAtAK4kwKj86YSgB2wwW9Kg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "cs", - "file_path": "/pbO15LtKgkfXxxoNXkpwI6gYJ69.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "it", - "file_path": "/sBhiQtMfzQxvIdFHsm7gs2N9G3D.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1646, - "iso_639_1": null, - "file_path": "/kA3JoRjnP63f8FEtEy07nFRCpF5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2926 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "es", - "file_path": "/oQSv7d0OBzwbVCZ8Nfns4RdMoGg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/ArFToMV0EdTzmJc0xXM2FVXNxUo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/r8j7pG5qMNWBTGLHfnWXvwz21J0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/axy4Ln73s6MNQRi12lpx274LX4h.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/6oqqJftYoDV1A2nbCfOUYbFiOlB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/kkQeAdpZTAtciwTEpSpbopHp1ZA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/t0pvCpaYKiS6ZgoBL3syXGQiUik.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/y3gQJsTyRntO5MCH5nbaE4OxS5X.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/tOSjW6J5cnr4eBv8zjypjwtaHWW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/yRm6mAvGZQmSu6N4eYaMDprqVKr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/6KQsyMNjuLbws5YPyDMaUBsiDyd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/cwmyii3AUYgBaQjdce8CqzHOKG5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/nw3kmTN6jT3I9IHnrLvfVBs92ko.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/g2UNFa4e7SIvDv0XDlxE8mCrJ8E.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/jmvvIpqqnlQanjet44mLQB7upxG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/cSjzhEyMRC3a3kiMAXORHfNYmai.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/ugvfCvpJFPxlzJ06RYLNrSRlkyR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/wAV188AurZxbbpJdUy9ARt29ewP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/zl2dY2QcgIVWbH50ymUiFiqNyya.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/jfkjWZN2h9KY0EPNfQ3YfoKzzND.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/bJHsDRTx6Iu0n1iRihCGrKvz9Qd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/xYXXhUil7XjzWrO31viuWcMyjc6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "fr", - "file_path": "/cIR2y6s1A9TVrXT45L9DnRIRMxm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "fr", - "file_path": "/wn8jkD0koZcFmmJvrWCgu2K1cgc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "de", - "file_path": "/dDpD55SiCiua0WTvCFE2qZTIRc1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - } - ], - "logos": [ - { - "aspect_ratio": 2.324, - "height": 825, - "iso_639_1": "en", - "file_path": "/kg5DhkPTZkOpoPyAscpRHTUdoW3.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1917 - }, - { - "aspect_ratio": 2.129, - "height": 897, - "iso_639_1": "pt", - "file_path": "/fecG1EMalY23XPBDk6XSYDAnI3c.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1910 - }, - { - "aspect_ratio": 2.67, - "height": 327, - "iso_639_1": "he", - "file_path": "/gIIeiuQVl8nabVh4rGfPvny2zWn.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 873 - }, - { - "aspect_ratio": 2.325, - "height": 819, - "iso_639_1": "cs", - "file_path": "/nVn5bYgAjjvco4PpqVwyHUQFIYI.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1904 - }, - { - "aspect_ratio": 2.338, - "height": 820, - "iso_639_1": "en", - "file_path": "/vuZ1tjoeuiWlu8sf6mXaGrMK690.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1917 - }, - { - "aspect_ratio": 2.633, - "height": 713, - "iso_639_1": "zh", - "file_path": "/CpgZ7VGtx2ntixEaq2sJjyOEWf.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1877 - }, - { - "aspect_ratio": 2.182, - "height": 1279, - "iso_639_1": "en", - "file_path": "/deZjHbQhAtiwG7egxESVim6kYfD.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 2791 - }, - { - "aspect_ratio": 2.338, - "height": 820, - "iso_639_1": "en", - "file_path": "/6SLGnc8qxcVXgtY7rDf5Oa7taVc.png", - "vote_average": 5.246, - "vote_count": 2, - "width": 1917 - }, - { - "aspect_ratio": 2.324, - "height": 2366, - "iso_639_1": "en", - "file_path": "/sv1yS0w4Ylk1A9AvAZzMwrp2wna.png", - "vote_average": 5.238, - "vote_count": 0, - "width": 5498 - }, - { - "aspect_ratio": 2.338, - "height": 820, - "iso_639_1": "en", - "file_path": "/9OGDuNO0xJbJYo8r1QcY1Qoc9vk.png", - "vote_average": 5.238, - "vote_count": 0, - "width": 1917 - }, - { - "aspect_ratio": 4.042, - "height": 472, - "iso_639_1": "zh", - "file_path": "/q1AiLeR67XUpRVhUI8Mb8ImzmCm.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1908 - }, - { - "aspect_ratio": 2.325, - "height": 822, - "iso_639_1": "fr", - "file_path": "/8zHn3R4FWb4RUxNjjMz7QuN57tS.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1911 - }, - { - "aspect_ratio": 2.201, - "height": 546, - "iso_639_1": "uk", - "file_path": "/4fj8q12osQgtn1xsYkOpCxo54QZ.png", - "vote_average": 0, - "vote_count": 0, - "width": 1202 - }, - { - "aspect_ratio": 2.208, - "height": 616, - "iso_639_1": "uk", - "file_path": "/gYnvYiA6SdtC0I3yVmkEEINrWbi.png", - "vote_average": 0, - "vote_count": 0, - "width": 1360 - }, - { - "aspect_ratio": 1.809, - "height": 1056, - "iso_639_1": "ja", - "file_path": "/2lsf7NXiVSSMERCNAsyQhAsPGVW.png", - "vote_average": 0, - "vote_count": 0, - "width": 1910 - }, - { - "aspect_ratio": 2.135, - "height": 897, - "iso_639_1": "pt", - "file_path": "/fjMEbkSOvuOkqiapj7BkAZ2nITN.png", - "vote_average": 0, - "vote_count": 0, - "width": 1915 - }, - { - "aspect_ratio": 2.137, - "height": 895, - "iso_639_1": "it", - "file_path": "/dj1T9l1joqXBtGimAUPcRE4M9uQ.png", - "vote_average": 0, - "vote_count": 0, - "width": 1913 - }, - { - "aspect_ratio": 2.324, - "height": 825, - "iso_639_1": "hu", - "file_path": "/p64hGfwaEVbCulIOx4sdAp40gYQ.png", - "vote_average": 0, - "vote_count": 0, - "width": 1917 - }, - { - "aspect_ratio": 2.327, - "height": 820, - "iso_639_1": "de", - "file_path": "/fRi7xH6FEQ0sBlhuFQptXXOGFnc.png", - "vote_average": 0, - "vote_count": 0, - "width": 1908 - }, - { - "aspect_ratio": 2.325, - "height": 819, - "iso_639_1": "sk", - "file_path": "/hQ3QGvljUnYrpsfGFB1OWzvbnbf.png", - "vote_average": 0, - "vote_count": 0, - "width": 1904 - }, - { - "aspect_ratio": 2.325, - "height": 822, - "iso_639_1": "es", - "file_path": "/epOOxRKlKG0tfqRL8lTfZmPICNZ.png", - "vote_average": 0, - "vote_count": 0, - "width": 1911 - }, - { - "aspect_ratio": 2.242, - "height": 853, - "iso_639_1": "el", - "file_path": "/4N8IygPQuzh6OmPtpKfGEDfIWGm.png", - "vote_average": 0, - "vote_count": 0, - "width": 1912 - }, - { - "aspect_ratio": 2.137, - "height": 891, - "iso_639_1": "pl", - "file_path": "/tTXvVLY5hDyLvovb21mk4WpHvPb.png", - "vote_average": 0, - "vote_count": 0, - "width": 1904 - }, - { - "aspect_ratio": 2.066, - "height": 925, - "iso_639_1": "cn", - "file_path": "/yAjyvg99Pg4Qyymja5MlR24JUUB.png", - "vote_average": 0, - "vote_count": 0, - "width": 1911 - }, - { - "aspect_ratio": 2.325, - "height": 825, - "iso_639_1": "tr", - "file_path": "/jqLs0ON8c9SajuOUP3jDpZJSSDG.png", - "vote_average": 0, - "vote_count": 0, - "width": 1918 - }, - { - "aspect_ratio": 2.137, - "height": 897, - "iso_639_1": "ro", - "file_path": "/1ZjKjn3iS7MW6LyTIaTXwhsYubj.png", - "vote_average": 0, - "vote_count": 0, - "width": 1917 - }, - { - "aspect_ratio": 3.544, - "height": 540, - "iso_639_1": "ko", - "file_path": "/x4RyRgOVah6t9omozbfMB8rusM0.png", - "vote_average": 0, - "vote_count": 0, - "width": 1914 - }, - { - "aspect_ratio": 2.324, - "height": 2366, - "iso_639_1": "en", - "file_path": "/ajtsRiei8cFSc5CM86QND17ZlN7.png", - "vote_average": 0, - "vote_count": 0, - "width": 5498 - }, - { - "aspect_ratio": 2.263, - "height": 426, - "iso_639_1": "bg", - "file_path": "/fVV4fxQbzydb5hTvrepiBk9d2YJ.png", - "vote_average": 0, - "vote_count": 0, - "width": 964 - }, - { - "aspect_ratio": 2.324, - "height": 2366, - "iso_639_1": "en", - "file_path": "/3H1AvA1Z1iMP6mG0sG7CoPpHYpk.png", - "vote_average": 0, - "vote_count": 0, - "width": 5498 - }, - { - "aspect_ratio": 2.324, - "height": 825, - "iso_639_1": "en", - "file_path": "/k2wYY4dH2vh83ag0M7fLwwLZFcj.png", - "vote_average": 0, - "vote_count": 0, - "width": 1917 - }, - { - "aspect_ratio": 2.324, - "height": 825, - "iso_639_1": "en", - "file_path": "/BbeqOJL0Mif7DIwxOxqA61thFi.png", - "vote_average": 0, - "vote_count": 0, - "width": 1917 - }, - { - "aspect_ratio": 2.325, - "height": 822, - "iso_639_1": "fr", - "file_path": "/gPZKYGGo2vqftvw0e9ghoCk80uo.png", - "vote_average": 0, - "vote_count": 0, - "width": 1911 - }, - { - "aspect_ratio": 3.301, - "height": 316, - "iso_639_1": "fr", - "file_path": "/bHOiJJulJhG6SVN9AoN6GoL4teV.png", - "vote_average": 0, - "vote_count": 0, - "width": 1043 - }, - { - "aspect_ratio": 2.183, - "height": 1299, - "iso_639_1": "en", - "file_path": "/n6qoY7G47xJvboGem7aO8HctjXL.png", - "vote_average": 0, - "vote_count": 0, - "width": 2836 - }, - { - "aspect_ratio": 2.21, - "height": 1299, - "iso_639_1": "de", - "file_path": "/eBhxqaSLJhUwTnSNkAqfb9QVLnE.png", - "vote_average": 0, - "vote_count": 0, - "width": 2871 - }, - { - "aspect_ratio": 3.107, - "height": 1192, - "iso_639_1": "es", - "file_path": "/mRMP0SbiZLymm5ZME3tjNK6wape.png", - "vote_average": 0, - "vote_count": 0, - "width": 3704 - }, - { - "aspect_ratio": 2.332, - "height": 479, - "iso_639_1": "pt", - "file_path": "/sfAuQGeyR3TaqjX8vD7ryTTTcxa.png", - "vote_average": 0, - "vote_count": 0, - "width": 1117 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/Af4bXE63pVsb2FtbW8uYIyPBadD.jpg", - "vote_average": 4.874, - "vote_count": 22, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/y4zAHCRmS1wof5bUmEM9CZOYQ04.jpg", - "vote_average": 5.824, - "vote_count": 37, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/sv7iVXYVJTtOUAM9KGwsIuO0dEc.jpg", - "vote_average": 5.65, - "vote_count": 33, - "width": 2000 - }, - { - "aspect_ratio": 0.708, - "height": 848, - "iso_639_1": "no", - "file_path": "/zvmmREtqUmNUcQmev6BAaDzxEsQ.jpg", - "vote_average": 5.582, - "vote_count": 9, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/m9c0GaHLQXisKB5XLCbjVmDrrol.jpg", - "vote_average": 5.52, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ar", - "file_path": "/6R0wpRBtdnCr9Kh1TCgqQJR2ehR.jpg", - "vote_average": 5.456, - "vote_count": 7, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/5KTyTpupZXAZK6HPIPVyKhgKaOJ.jpg", - "vote_average": 5.456, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tZLCjk9apdFW4Gb9i2ohLlJnDCI.jpg", - "vote_average": 5.39, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/xvrOBLSnuNVqZloaAGGSKWKujSy.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/yI64DI8BBcmX0Sf9E0brkirdwca.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/1TMczPTGEtl2DrpWNEy7aLm7XxB.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/i0wwmskzVAODTarZDXtjAaTFV0z.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/aw6DdAI6ZPLqynub4bgg0PkZaec.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/8lFkW5kBFeYCe3A0jLDj71jG5yb.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/t5gGBjs3Te3NATS6gukB6KAEWRN.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.701, - "height": 2284, - "iso_639_1": "zh", - "file_path": "/fWxkYvm69q9731RfWvwcQdu5LPD.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 1600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tDY5ZxKIP0o9n1d4or8U53MI7JD.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/gTAR51U4eAiCokNqtRy7FsprUar.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1863, - "iso_639_1": "en", - "file_path": "/upEnaBzQtG3rIr05RL8Bdgay4GS.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1242 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/77AHS2lV0PZSjXmAytvvEAFWCYR.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/hAzPDbYB7IGmuGGWr14U2m9HEJg.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/64TyGedJPmfwfO0dIQWFDLIw1U7.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/51zIj9keXgndOeSLjxmn7ZbxhhM.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.7, - "height": 1714, - "iso_639_1": "sk", - "file_path": "/vsvF8lizq3Z3y6uEGrKxJ3u0izG.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/s810Nig8BA6bDfBNhzXbQot1s8s.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/8ifAx8GS5AHL7xOTMJDMaza84RQ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1890 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "no", - "file_path": "/cSveXycGSi14EjisYpLmXzVA3Oo.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "no", - "file_path": "/sGmSQBSLTz80FRJ1T33M5Ox66DR.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "no", - "file_path": "/o2rXT0sUT1u90ymEqGYsUfWlwIr.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "no", - "file_path": "/k4wxZXBsQyC7KHbOA9ClCQ0xXpN.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 810, - "iso_639_1": "it", - "file_path": "/sBK30XSO6lA3dhjoJ8I8RFkosIH.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 540 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/9FmZHcoEos0fJBhIK9gjdmTAQBS.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "ja", - "file_path": "/1JEHa2DSV9pGhXDoouPiKaVWjad.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 667 - }, - { - "aspect_ratio": 0.667, - "height": 1863, - "iso_639_1": "it", - "file_path": "/pAyQJAlO9vC4jgcApxrIcptBUAp.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1242 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zeVe4tESuacloHZSqnsihokT0Dq.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.672, - "height": 2197, - "iso_639_1": "ro", - "file_path": "/fV5eGjjVHx6OdCi0OKkdU9c2o69.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1476 - }, - { - "aspect_ratio": 0.672, - "height": 2197, - "iso_639_1": "ro", - "file_path": "/6OdedQv2kxMm1Jd24muQslcdkCJ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1476 - }, - { - "aspect_ratio": 0.672, - "height": 2197, - "iso_639_1": "ro", - "file_path": "/nI4VvWzS2BxQC1Zu8fCytxEgXz7.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1476 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/m4oBOUtLP51EiCIQJ0zMbTPTRVv.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/xOhuJs4zsxTxYmnI5mFEE1NzEuI.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.756, - "height": 1350, - "iso_639_1": "el", - "file_path": "/sX0lZsBNUDivVYNTVbJQWwxb6s1.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1020 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/uK8ZR0PkZqf9Zrsg9AYvcoUxWI8.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/ohyBuxe8peJQSdoS5hw31VmKCZ4.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/gJrPOlwwTTWSPuFAVcY8CZasZ8w.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/ekXY2j3DkcSZgXPXIglNOdNMyFn.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/emtliD6tvlZMreBC6x5G2RCzzpy.jpg", - "vote_average": 5.284, - "vote_count": 39, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "cn", - "file_path": "/zcVmoYA8InLCalpbBePY5Rdtuns.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/oYLX2MMVMoM55tTQExZrpcsMqGt.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/hUAxVUfIJvtX8J5656n804VxIbl.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/3Sj5ubQ0BLXd6JuECq52Ira8Oor.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/d8EOMMPGAzBy5PLRREP673GncRR.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/2vTsUU93ZHJlvpQukmvIWABD3HL.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/6qF2gzZspNHPjeFEKTR27rPWaNd.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/zQqhQDuTQIz1FEX65Z1FuDIkRE6.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/ymdNJTgBY3sI0eZMNlz6WPxELaY.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1080, - "iso_639_1": "no", - "file_path": "/xRAoQO95fu1lv7TEZHSBujpKm99.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 720 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/h48tDVKaCnrBUo1AZBXL9zA1jqn.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/1dgvcZtfYHEDzCVGjt7RyezaKl3.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/kmeXJthRzFLrxe9J5puXkQysxB8.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/5YDjMVlYWERIri6UqQUasRleJKY.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/fvZqVQ3kqRQwTTohM0DNDkFr8YZ.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/s2rYQR0Uj6PvRQuuo7TWYLz39Am.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/j03PSxQcf2Zvt3C2jiulWp5nbQi.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/yhfc2nALbgSUw3RRXAG9FPpQEHP.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/nV5etMnBWh45Z7Qd71ODL84gR7g.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/s0xEukElpnt4pVKzQlU757X5Ter.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/9UgK0pJj6e0QL3Kn6lcGNTpTGlc.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/jlhzWwbRRv7gbSqhVt1r05IW6p3.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/fxl2C9yDfujE8HBf3nsmCAt9zyb.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qWR6OyWOYBDjZc6nKSKnJ2xf1hU.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/bUo9EO1jfYkfpbBTMYHoeUnjFnm.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zLhWetZp1VdjVJVcZ2fNZgc88kn.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/i9eI9C8atFBUQ4m4eek6Q7PYzWP.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/vb6NkmZbOtdNj4ZbmHwNsiyaHMc.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/vRtEizoX0TUKXFpTw1AJsBCW5gb.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2890, - "iso_639_1": "en", - "file_path": "/lsI9PwoKorWFYBaIG1QOCKtFlKH.jpg", - "vote_average": 5.232, - "vote_count": 17, - "width": 1950 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "uk", - "file_path": "/ye6zvyTM0jSMqpQyNwFVYq8ObVr.jpg", - "vote_average": 5.218, - "vote_count": 30, - "width": 733 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/qcm9zeiWFPFJdWW0kR7MzY0PlDa.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6c7Kj4llRREY82rS7YZFu2Y8OL6.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/3Z5D7T7iZgrA6XkxGxlIruqa8sW.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.742, - "height": 2696, - "iso_639_1": null, - "file_path": "/pFrMxpAidV0DIUWIjeVhdLiOGDs.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/viX25whf5oJbKuQy7MmvQd2ihpP.jpg", - "vote_average": 5.19, - "vote_count": 37, - "width": 2000 - }, - { - "aspect_ratio": 0.712, - "height": 1405, - "iso_639_1": "zh", - "file_path": "/jifMzdkoF5MSpHn5x6DCc0RODvk.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/9EnfMH0nTPCna87Mh3G8Q6W2wze.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/uJVBk98aBXz19LfOmG688sMgcLO.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/kMemwCJP1tR4EabApKUumOX9zoV.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1032, - "iso_639_1": "es", - "file_path": "/4rC64ABovm9p90dZOWMyZC3PMfC.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 688 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/sl842ldg48YW8MYwZ2IDj0rYqdv.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/uGwxC5YXLDwYRSBhWpFjU7Q0cbn.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/skyDJSckppDiuSi9eu0RJRUbaie.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "es", - "file_path": "/hEU77GeZMolNhj0ermmtF05gLTZ.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/a6GcHPbRBOZHKFcI2NzKVGGmb33.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.67, - "height": 2983, - "iso_639_1": "zh", - "file_path": "/riVvyL0qsBWV6YOf4MuNsVxaXHM.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2400, - "iso_639_1": "en", - "file_path": "/ALYjrgU1g0Hiq6xKwqnoWgSxjL.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/yMMXRC7SESR10u4hST7Df9ZgKx7.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/rSyZwBSze8g3zxoLHOjigDz7BTy.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/9JwDvVMXQcX1jVgxj2kAs96lv2E.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cDF54cVAbptcUGySSozMF4XgQVq.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qqxa34GI2odfcJPkF2KHJOudCNg.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tTi468ohXrIJZM4lhX9L4nHMS3O.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/c9ZZgc34zLTeZI7LyG5HC1xHvx.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "de", - "file_path": "/3Ql3DzEa8mVRpm616R4cNvyTqHI.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/6ScvTOC302e8GUJuiJIM7gTEhxf.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": "pt", - "file_path": "/wI4RwvFhUqFBj5PN1SAoIOwreeh.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1500 - }, - { - "aspect_ratio": 0.704, - "height": 1597, - "iso_639_1": "ko", - "file_path": "/8DzQfAOf0DHXdXHFUNofEqZGRwp.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1125 - }, - { - "aspect_ratio": 0.7, - "height": 2048, - "iso_639_1": "sk", - "file_path": "/du2ZikMIC80w6DjgvsLsgZTTWMt.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1434 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/anNuKgtQlxyfvvEFXz9QV2FrWDG.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1296, - "iso_639_1": "en", - "file_path": "/gjHBLNE5H8GZYxHdEsXJ8kEy51T.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 864 - }, - { - "aspect_ratio": 0.667, - "height": 1445, - "iso_639_1": "it", - "file_path": "/opcWotN74cQSHbTc0pmxzhhvqqY.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 964 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "cs", - "file_path": "/58si8r1SKUAuyjfmVsy8DMdB5YN.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 770 - }, - { - "aspect_ratio": 0.719, - "height": 2048, - "iso_639_1": "el", - "file_path": "/i25nEOGfXBwMeLij0jBTBi5Xlkl.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1472 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/1Pb4akjT3tWG4zjrRB7eq4Tpowo.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.71, - "height": 2818, - "iso_639_1": "cs", - "file_path": "/6oeIUPcJVZAIVtcGnSqmPWtPvlS.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/4ZzGYaDEKXh3XIggI0AaP0rvaaH.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/1PvSqAB0WxRm2SVMmUuYHCXYJBS.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/pxAqtOgH07PefJjsahDTpQiJ6hB.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/a7rjOKJGLiro41s6IEzxCCAXBX1.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/4ABd8QByw7uJANBQktvbbRVlDaO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/ct7ZUip6Ug2bo11GGewjXAuZ8ye.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/vVb9tdV632gRuEqZOsbnghKsQ64.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.7, - "height": 2857, - "iso_639_1": "cs", - "file_path": "/efdNdrFgy1CWXcvxOqXqFycObBF.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/qstcXhRqcdiJFOiovzkzUbOMrnu.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/nBTxgyZTHMAiVVR752EqLNZTp9X.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2925, - "iso_639_1": "en", - "file_path": "/9qKAe14iv1Z42NeyGWKQZdUcGj.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1950 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/wBuvdx8HsCj2njSJ5WvGhDbmQGm.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/fn0F9bjfcoFIkakaQSpLJCM7B5t.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/A3OiJcZN5srogjKYoNEdYV6Njv7.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1734, - "iso_639_1": "en", - "file_path": "/6lrz2K4Tn7j2tTMDghCgWHHcWXd.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1170 - }, - { - "aspect_ratio": 0.676, - "height": 1731, - "iso_639_1": "en", - "file_path": "/2vrvKjRrXUCj263nHTL76MIzjb4.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1170 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/4CsthpFzr28HDva7zU6WiUaZ4Ln.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/wYrElp1dzR56rs9LyREbjWShKMa.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/egwdQKA9dT3OFcFHm1p87EEgTWT.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/ov2xut1aPFaPMqWWBLyn4AuNueY.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/3J6xqBoFfIoRRErdYcKbMDXpEcC.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "en", - "file_path": "/y7DFwUJkIaQQPvMZOy7iQPkNWzM.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "en", - "file_path": "/1fqDX6bktFIeRZepdNzTEgUqhPV.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6sx9mR9GkBwGpwfthXDURRlzZ4c.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tBwFD0e6GnNThEHaIagNxmsUSfV.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/1Wf9SgJieYxGxaYvv1zVqXEtFSb.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/yHRyjNYKQwbGfDwjs0Qw3LC0Y0q.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "es", - "file_path": "/n40Wg9kTTVvnYSVHvuyVCc3MVKE.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/1AE4RHgX5o7UWivWaSCTugZlYBF.jpg", - "vote_average": 5.146, - "vote_count": 10, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "en", - "file_path": "/kJXFkZvEC26aEIOComnbvfrin1b.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/pu2SbVt07bebhkom6B4Duq37Qqi.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/4altOCHb85TTkuJMocKR4b5dk8Q.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.709, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/yALWWBM9o7cQkSzxmLtwBYGbb35.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 1453 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/sD2OJEacK5GEXTFPn0jn1zRnovV.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/wWcEfmTENf9Yyr29jyhqapIfOgL.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/1o3mguGCAmRGMlfW2VXvxyKVAnw.jpg", - "vote_average": 5.128, - "vote_count": 19, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2400, - "iso_639_1": "en", - "file_path": "/11XqFeGLDTmAJhl0BvonLrl5KME.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 1600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/keIzu2yvjl4mpyXFw8LSNGEYhte.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": null, - "file_path": "/h901pw1zOQtiDYAO6MR4b3BlwVp.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1080, - "iso_639_1": "es", - "file_path": "/7VGUm5jHAR8bj4VC15V1G1SUnIN.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 720 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/h1UjEZxf1SK6hBhiyZTRFKsQH8J.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/TcrL5RynKasINbOwBt1D2xS2oJ.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/awvhFVRtAN2wr8HLPKpeHdY8qiC.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/560EiUX2Q5ao0vM3tVhy3b23zYV.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zlX1f79yMoTFhu6ilMmoOEixO90.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/gPB4yR4gDlm3CbEyzSwwgtX5s2m.jpg", - "vote_average": 5.11, - "vote_count": 15, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1080, - "iso_639_1": "cs", - "file_path": "/sXXLxhQtFSPGBJ4A5p4d65POef4.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 756 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/pV0K9V24YytDOLR4zLPqP4w7NLs.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "de", - "file_path": "/dI96j6PGKXzHbBoJCR5L1enWgGT.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 733 - }, - { - "aspect_ratio": 0.675, - "height": 1200, - "iso_639_1": "en", - "file_path": "/4ns4K8qxvNhwqfkQ1bSGXPsR66Y.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 810 - }, - { - "aspect_ratio": 0.675, - "height": 1200, - "iso_639_1": "en", - "file_path": "/uYszXb7X5VERFdVZ24BxxrtP3OQ.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 810 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/kyDiLH8V6JCW7bGuXljycZ3AzB3.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1926, - "iso_639_1": "en", - "file_path": "/81AMlVJyZWozV32u4HXRMaXgTvG.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1284 - }, - { - "aspect_ratio": 0.68, - "height": 1000, - "iso_639_1": "fr", - "file_path": "/jSjZunnUZXIgB0CfVSJAPq146Ci.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 680 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tDT0iYzNltVktcH5IqWLTTohiwN.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/AWYPABxnYUQNRgPEsXCnf4zaqo.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/27T0nssyKIZHWFDotQWAQbQ3FZm.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/7mEOEjGqQdRqOFPUmXAqWVvLCEj.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/6dLDFHzSlJsy1pRKeeu40dje89h.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/tzr7p4KDe5U1RWfCVVAvxi3oUfH.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/xV7GpHw6ARqEqw56NytggF5xBYX.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1687, - "iso_639_1": "en", - "file_path": "/6fjsSeSxOQyf1IfVjeSZKryRx8U.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1125 - }, - { - "aspect_ratio": 0.667, - "height": 1687, - "iso_639_1": "en", - "file_path": "/DRmYljrkIS9oWj3TIXPxVYL3AY.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1125 - }, - { - "aspect_ratio": 0.667, - "height": 1687, - "iso_639_1": "en", - "file_path": "/hAX60w2L3txTq5wVLces1WoxVQZ.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1125 - }, - { - "aspect_ratio": 0.7, - "height": 2835, - "iso_639_1": null, - "file_path": "/s7ib2AZXi9RLYKFeo0sn425aVHR.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1984 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "uk", - "file_path": "/6gqgWzArSVYL8MeWfQiup6Z9QNw.jpg", - "vote_average": 5.1, - "vote_count": 37, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/13irwPfFp79PXMgxhmEOpyCDz17.jpg", - "vote_average": 5.068, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/9myf1VeUxkks2MjNbSLNLcOR4zl.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2500, - "iso_639_1": "en", - "file_path": "/lMQtl79BXVDwtWDHVLbZJHbXhnn.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1666 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/3nV38ejSCB6qRnadAB0Y0mE7u6b.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/eIuRWrTDRRWkASJYYcAh63pk6aX.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "es", - "file_path": "/bPeibTFBE0mDLnKudHfnfixutsP.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/alnG2cx9MKVKC9gzh7s1vXzbOMx.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "en", - "file_path": "/o4jUsn2FFpe6dHV5fssZOcz1HSr.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "en", - "file_path": "/u9G8JYm103U0JR2NOD8AYnxYDvP.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/LGaAqVG0ZfbZF21w78X8ej13We.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/kn3DCN9U4SKe3yxGCgbEROuptsv.jpg", - "vote_average": 5.01, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/thpefKUl9U2kiiHDZ3uAUqRR5tt.jpg", - "vote_average": 4.996, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/r4vOcZR9jzmcd9QhslbaDN7UpSr.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/1hisWyFpxosdfh3UKqPvAC0RLdb.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/nJ0XpsfNXyk8Z1uJrfoOc7AIfSJ.jpg", - "vote_average": 4.954, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/l2XAhDDXj4YBFHjfMvD8m2Es7lP.jpg", - "vote_average": 4.938, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.75, - "height": 1350, - "iso_639_1": "en", - "file_path": "/gweFw7ayfqvoyiZXlGEGkmoAJHz.jpg", - "vote_average": 4.922, - "vote_count": 5, - "width": 1013 - }, - { - "aspect_ratio": 0.677, - "height": 911, - "iso_639_1": "en", - "file_path": "/bxtTWh9PzVDYL01X1U74Q8nEEeK.jpg", - "vote_average": 4.898, - "vote_count": 10, - "width": 617 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/xQOMgcFbXiYu91eHsnQed1fEzMV.jpg", - "vote_average": 4.866, - "vote_count": 6, - "width": 1365 - }, - { - "aspect_ratio": 0.676, - "height": 900, - "iso_639_1": "en", - "file_path": "/cxfz8bfwHdpLhs3KHSMJCDliXLE.jpg", - "vote_average": 4.866, - "vote_count": 6, - "width": 608 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/y4MBS0SKE0pHR57vfYBxGhrkfcv.jpg", - "vote_average": 4.846, - "vote_count": 11, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/5BzY3hyvtxQEh6oGpOnkFnOmbAS.jpg", - "vote_average": 4.828, - "vote_count": 9, - "width": 1000 - }, - { - "aspect_ratio": 0.675, - "height": 2880, - "iso_639_1": "no", - "file_path": "/bJcnQCTfrCVjgmMzZbrguYe848J.jpg", - "vote_average": 4.828, - "vote_count": 9, - "width": 1944 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/aANuS8yig0NmTlsHF5q6euEsH3L.jpg", - "vote_average": 4.812, - "vote_count": 14, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/kVeNrCG5iyg1YGhaEtIUG6mZRUV.jpg", - "vote_average": 4.794, - "vote_count": 12, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/eXpreW1z88ljUDkl9P95uWLCGHW.jpg", - "vote_average": 4.794, - "vote_count": 12, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2500, - "iso_639_1": "en", - "file_path": "/ArspOiFVXfLpjFwgxqEwegddcbj.jpg", - "vote_average": 4.774, - "vote_count": 10, - "width": 1688 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/8jUb8Ya4GdBRz6GGYZBbVkeSsNo.jpg", - "vote_average": 4.724, - "vote_count": 11, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/rli5uQahUc8qxFXbjtGRy3yBc7P.jpg", - "vote_average": 4.656, - "vote_count": 27, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/4TuTrvprluiFhIGS5wAs67qfnXP.jpg", - "vote_average": 4.634, - "vote_count": 30, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/7UKaHqh3xARuZJ3zsQoyiYbc4Ae.jpg", - "vote_average": 4.432, - "vote_count": 25, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/8uxdNRcYpLUWi9xmHQ5kLtYhRpk.jpg", - "vote_average": 4.424, - "vote_count": 33, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/dUX0eSkZ7ap2XWYAtZfrcvWuVMe.jpg", - "vote_average": 4.318, - "vote_count": 28, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/5shYvcDqXZNyBrLrpRNE9hxEalT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/wlg8rbvw4wppzccrFYXFmJVMPp9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/5uixHLS6egg8gnFllfkHfINGRe3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1920, - "iso_639_1": "ca", - "file_path": "/xvNngGmz7c6TBTUtknd77UodBEY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1344 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/8k2YxgEZ3IHhZ0xw4AQU5JWXVXE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "th", - "file_path": "/wG941HW8KvroPJeo0BbhjTDtFFJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/rX7ltbrdWqTo8Ga62EKTSVqwoLc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/f1C7BR5owa3eCYDSgSFXNOhFhRn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/mM9um9VVzsARz5qK0lmrvKDMa6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/v7nRptIYZVCca1YoXJDOqNtk8lG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1080, - "iso_639_1": "hr", - "file_path": "/tyZukr2JMof4b2dpdUqw3Iz8cmy.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 720 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/vJsSrHE1vno7vK7FDcNqhOunHiq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/5a4ynoUh3HyG6juEaySw5W3EGP4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.704, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/rNTNUsBllzDx3RpnPk8Bushxt2g.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 760 - }, - { - "aspect_ratio": 0.7, - "height": 1372, - "iso_639_1": "tr", - "file_path": "/rAjVndCqUx7QZ2ExvJidoxIlrtv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 960 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "nl", - "file_path": "/kloYF5prmNlVr5UI1hM1vX8zVTp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 733 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/aB6Pv6kGJglFg9HFxkdc1P08A6n.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/hS3WiBuL6fQV1mUDgX8QRBHFdqd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/8o5aZYG1ukn27WV6SoMla2bx7AC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/9ANc7gpOXv4aRtSTZQq0F7Hh3Lg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/yLqzlQMjt604Dn8sBkeBnDA598.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/fXXOfqB4l82iviJhjXpLmYrGirK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/b2tFUUO88J0yfhB9frosAzf0yJe.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/7YBjsd6aY0DYiwX9xi0haTzWcYn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/klascxJHV9f9CM5MRoMlBjeN1mp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/Vm46a2CFdxg2x3mm6Gt3uUpVyp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/hI9Wh2eSkyO1yZAoiflRNW7q6C0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/hV3LlPRbBfrXci2VVzdyh0GQAx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "no", - "file_path": "/vTf7YoOLW3dPZt7Y8TMUP8E0PI6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "no", - "file_path": "/57oCWy62JSXMEGQm1juMIfWSoLL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "no", - "file_path": "/hc0VTUXgbNMBY9r9dg0mUDv2erC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "th", - "file_path": "/dNLciVM9fI4YdtfXHxpUENaHJ0Z.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "th", - "file_path": "/sg3bV3n9K8J2JdeY7VxgZAfbtIr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "th", - "file_path": "/rAO6zYYwBNloMrPl2LOXH9ECN2C.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "th", - "file_path": "/8o2tceLKzHQwMwimEq3346kmy2k.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "th", - "file_path": "/oqW0q5BAQpeYZlf9RcY6LlqO91T.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "th", - "file_path": "/jlVNipcTq3YpdrJKFnP5ZxFeh7L.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "th", - "file_path": "/uoTgU3eGZOmAAEV23BmLQQNFrrs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "th", - "file_path": "/Aba8iTuYrBn4jGjKKRztTqMnPuW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "th", - "file_path": "/i4nY8gpvJ5UftePTIpDerTaBFTf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1191, - "iso_639_1": "ro", - "file_path": "/8DQH8lBQFaaw18ED8nl2bWaRJmA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 794 - }, - { - "aspect_ratio": 0.707, - "height": 2828, - "iso_639_1": "zh", - "file_path": "/u59cdTrEFgAdcT8oe4IUM8XkXzv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 810, - "iso_639_1": "de", - "file_path": "/smQcbQlQaTWR68lxbcGuvLZYeoM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 540 - }, - { - "aspect_ratio": 0.675, - "height": 1599, - "iso_639_1": "zh", - "file_path": "/yEJHzayRG8Jq9G9jEk40bPekczK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.715, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/fe5mOfMEK3INQJ2OVXqKk0j7Dj5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 772 - }, - { - "aspect_ratio": 0.745, - "height": 2686, - "iso_639_1": "cs", - "file_path": "/jzCN1PNgv5MX8LRGUMpcwccEA7F.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/vPuWLflBjuEItRdhlbsPFHv11OO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.707, - "height": 1811, - "iso_639_1": "ja", - "file_path": "/9kBchhEJkkwaNtFmtIPdsCOXEg9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.709, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/uiJtUGAmswLTxGYe0uPsOzYIpdt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1453 - }, - { - "aspect_ratio": 0.709, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/8eoYMZq18l6oMVDO2zfkgsBFmWl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1453 - }, - { - "aspect_ratio": 0.709, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/wUNtxUAelneYNxhwvZg6oIenKkj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1453 - }, - { - "aspect_ratio": 0.709, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/55fBHWuSEc9SXIJVENiluMvAfyE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1453 - }, - { - "aspect_ratio": 0.7, - "height": 1350, - "iso_639_1": "zh", - "file_path": "/6Ur9DTqHWS0ix5qbRjwYA1nAkrk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 945 - }, - { - "aspect_ratio": 0.7, - "height": 1350, - "iso_639_1": "zh", - "file_path": "/7G6LjqSuRGOk95NDWuXTIpMoB9k.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 945 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "pl", - "file_path": "/vGyqJD6VfZ2yx23LHRgMHQkAgHx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 2440, - "iso_639_1": "ar", - "file_path": "/ihCGDoHik5dAaF2ho8wM8BBzZcl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1627 - }, - { - "aspect_ratio": 0.667, - "height": 1611, - "iso_639_1": "fr", - "file_path": "/2GiM2Mb60EsdbuWYYYFhPvFpCm5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1074 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/b0mSUpkI960sin9gY3oEtMI8o7q.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/nEMqyBDptulPmRxk7yeBaakJNoE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "th", - "file_path": "/4IFbd09bYSYtsAFHzOPneN6TFHl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "th", - "file_path": "/fs4bNvKk3FLQ1XSshD8n808zlp0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "th", - "file_path": "/kSCawldqH5X1UODBWTzvCuOjV8i.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1440 - }, - { - "aspect_ratio": 0.666, - "height": 1718, - "iso_639_1": "th", - "file_path": "/2XcOwxJZJ9lQQHpsNDTCd7UJ46I.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1145 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/siI2fMb9bPsedqOdCM9a1wGFuwx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/NdYfXxyuHewHUaXQjW48wmxjho.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 648 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/8LbbQvjrp5IuA179w1pFiaFHVHD.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 648 - }, - { - "aspect_ratio": 0.7, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/xZT5pJAkPDBp2kDjLB8zv4fqA22.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1008 - }, - { - "aspect_ratio": 0.7, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/mFmqr1fs5GeLR8E5URmXMVS3n2U.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1008 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gvAfPsrGNLMPK7Ojun36h7BTiRY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zZ5zSCrF6Gg0IePdtkuTNiQczpp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6hNQe4iT3Vrrb0Q6fdyoqrUGqMk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/wmfNgLBVsz3HEjAzqYVO78ct5aY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/paapw58PtlBmbu7WKQlUJvIsCuc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/9eD1NSKZklNWwIEaonV43i9PNAc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.744, - "height": 1440, - "iso_639_1": "sk", - "file_path": "/yx7ljz7tH70GnTRVhXqwCkBVlgg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1072 - }, - { - "aspect_ratio": 0.744, - "height": 1440, - "iso_639_1": "sk", - "file_path": "/yrMhLKayjRCMYRUNBXPXFpIr3jT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1072 - }, - { - "aspect_ratio": 0.744, - "height": 1440, - "iso_639_1": "sk", - "file_path": "/icMW728XWWEVX3XuD2iJr6hfMMU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1072 - }, - { - "aspect_ratio": 0.744, - "height": 1440, - "iso_639_1": "sk", - "file_path": "/jMwuOOL3a75FKJI7fA4bteTC0Al.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1072 - }, - { - "aspect_ratio": 0.744, - "height": 1440, - "iso_639_1": "sk", - "file_path": "/6iX7h2w2VN8WLUGGfr2JAFy9vYA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1072 - }, - { - "aspect_ratio": 0.744, - "height": 1440, - "iso_639_1": "sk", - "file_path": "/pwYc8jjkC9So92hcdjpIVkL7d6e.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1072 - }, - { - "aspect_ratio": 0.744, - "height": 1440, - "iso_639_1": "sk", - "file_path": "/cOP6Sw6QjATeSCiuXSoBALoKuf5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1072 - }, - { - "aspect_ratio": 0.675, - "height": 1896, - "iso_639_1": "zh", - "file_path": "/v7ui0Aywr7NR54vYPmfdSHBMB4Z.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.675, - "height": 1896, - "iso_639_1": "zh", - "file_path": "/9WRlCr93Z00F1zdTftZyewrtZE9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cU6bSTpG0iCEevXhfpBs6FY9KHf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2985, - "iso_639_1": "ru", - "file_path": "/p1b9uUAbxuKAK06iQOIm8kZG8BH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1990 - }, - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": "tr", - "file_path": "/3bstvUOGWzv34XwaZ94rGoA4RFx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/4PMVco2AWfcV1Wwdsouaf3GtwGr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/w5sy455R1yYkgcz3d50D20tJW4o.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/mHbjhqR277tW0uiCOf5QZpJATGf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/3mKf6irIWfjcLJNHqmYIe83AIBl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/a84VqaQJmEePGTHo3KmTyUyKJqw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/6eTVc61Q2bZhaEJ98XQAdOAZsZK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/aB10NJSuexPSfszPqpFfx82zY8u.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/xRHwNdUgaOnkmfEwrED9HV7Oacj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/A8ITeABpDs1uPspal58a1nj84cs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/A6cuXRLz2tVBEnSkwK6gWlP37HZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/fZwoQljkH8xy6DfHY1AlbrOROmf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/pz2kQF1Wb4hjuBybYFZX558hlw4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/3VUMUpvsIF1iZbv4dfVE0BHe7dE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/arYn8cbu4E1TD28MoLmRc9QL3WM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/vpQ5oSbucVydLnYuoQ94CS8YZjx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/xY1uOFuqQ9iQSDuCgH73jzpR046.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qHqWhDlXCbSKPcaZX9PZJG7uFKL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/8DESehsQime1s8KuCM8Thciz9Ht.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ma76wmrPtnM69Qcg22leiyC1la5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/f0BaCdmwtTF9Mj6IgPZ2tCXYR7j.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/uMLcfQMlKDxKIVxVOPM9MYmhtMR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/ee7PiZPp1QGjS5CPWHN4icwhY0J.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/w6NpRGq7KSxZ463DL87kOnj9O6T.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/tBIWAoyE4znf4ocnuuMxnRFWCIQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": "en", - "file_path": "/sXx6Y7z4QWG6EFOuUUOL35giOs1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/ccM45yJyROzUkaHzeKAeahMQLox.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/jVxc0a1lFcJ2l8l6zq0yDSeNb81.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.677, - "height": 1600, - "iso_639_1": "fr", - "file_path": "/s7wmNqs3MUuuMC2HdFZY140Heem.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1083 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/reMvrfIKQ0lS1Q2JxwCK7WdfYDl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/iuI4tBgS94v2k73xGxECetKedFM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.701, - "height": 1426, - "iso_639_1": "de", - "file_path": "/tfVqZbCLi3OOjVjyLPot4VPKB1S.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/hxnVwsqovBYLFUQaPU636Mfds1B.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/fw8jRpvHjcsJwPsstgPFHsihExm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zk8FtZLJUcrR91oqO8qUMwnfiau.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/nUT7sR1wtLDHFV2dpioWsfxB94d.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/jXaoUkW1RmFEgVLB8qxdkAE2e2r.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/c7v9oUYxhs1KqCu3BpfOrNzVTSj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/346698.json b/examples/view-transitions/src/content/movies/346698.json deleted file mode 100644 index 7810cb436..000000000 --- a/examples/view-transitions/src/content/movies/346698.json +++ /dev/null @@ -1,8064 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/ctMserH8g2SeOAnCw5gFjdQF8mo.jpg", - "belongs_to_collection": null, - "budget": 145000000, - "genres": [ - { "id": 35, "name": "Comedy" }, - { "id": 12, "name": "Adventure" }, - { "id": 14, "name": "Fantasy" } - ], - "homepage": "https://www.barbie-themovie.com", - "id": 346698, - "imdb_id": "tt1517268", - "original_language": "en", - "original_title": "Barbie", - "overview": "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.", - "popularity": 1899.184, - "poster_path": "/iuFNMS8U5cb6xfzi51Dbkovj7vM.jpg", - "production_companies": [ - { - "id": 82968, - "logo_path": "/gRROMOG5bpF6TIDMbfaa5gnFFzl.png", - "name": "LuckyChap Entertainment", - "origin_country": "US" - }, - { - "id": 437, - "logo_path": "/nu20mtwbEIhUNnQ5NXVhHsNknZj.png", - "name": "Heyday Films", - "origin_country": "GB" - }, - { "id": 181486, "logo_path": null, "name": "NB/GG Pictures", "origin_country": "US" }, - { - "id": 6220, - "logo_path": "/cAj69EL1zSXmZH6STbMGZrunyMD.png", - "name": "Mattel", - "origin_country": "US" - } - ], - "production_countries": [ - { "iso_3166_1": "GB", "name": "United Kingdom" }, - { "iso_3166_1": "US", "name": "United States of America" } - ], - "release_date": "2023-07-19", - "revenue": 1418073931, - "runtime": 114, - "spoken_languages": [{ "english_name": "English", "iso_639_1": "en", "name": "English" }], - "status": "Released", - "tagline": "She's everything. He's just Ken.", - "title": "Barbie", - "video": false, - "vote_average": 7.307, - "vote_count": 4767, - "credits": { - "cast": [ - { - "adult": false, - "gender": 1, - "id": 234352, - "known_for_department": "Acting", - "name": "Margot Robbie", - "original_name": "Margot Robbie", - "popularity": 65.539, - "profile_path": "/euDPyqLnuwaWMHajcU3oZ9uZezR.jpg", - "cast_id": 58, - "character": "Barbie", - "credit_id": "5f88a9d28258fc0036ad14ff", - "order": 0 - }, - { - "adult": false, - "gender": 2, - "id": 30614, - "known_for_department": "Acting", - "name": "Ryan Gosling", - "original_name": "Ryan Gosling", - "popularity": 60.054, - "profile_path": "/lyUyVARQKhGxaxy0FbPJCQRpiaW.jpg", - "cast_id": 59, - "character": "Ken", - "credit_id": "61732049a217c000434083ec", - "order": 1 - }, - { - "adult": false, - "gender": 1, - "id": 59174, - "known_for_department": "Acting", - "name": "America Ferrera", - "original_name": "America Ferrera", - "popularity": 27.145, - "profile_path": "/dhiUliLE7dFaqj5BKNQ6x7Wm9uR.jpg", - "cast_id": 64, - "character": "Gloria", - "credit_id": "620408d4194186001ba589e4", - "order": 2 - }, - { - "adult": false, - "gender": 1, - "id": 1240487, - "known_for_department": "Acting", - "name": "Kate McKinnon", - "original_name": "Kate McKinnon", - "popularity": 19.161, - "profile_path": "/2cNetzianFcxPQbyOQnkAIkKUZE.jpg", - "cast_id": 67, - "character": "Barbie", - "credit_id": "620d7599e039f1001cde4012", - "order": 3 - }, - { - "adult": false, - "gender": 1, - "id": 1767250, - "known_for_department": "Acting", - "name": "Ariana Greenblatt", - "original_name": "Ariana Greenblatt", - "popularity": 109.874, - "profile_path": "/8xrCTYP8PuHixWzkiX6onJNfw8k.jpg", - "cast_id": 69, - "character": "Sasha", - "credit_id": "621e9f569f1be7001b137584", - "order": 4 - }, - { - "adult": false, - "gender": 2, - "id": 39995, - "known_for_department": "Acting", - "name": "Michael Cera", - "original_name": "Michael Cera", - "popularity": 32.001, - "profile_path": "/lFKyW2C7xj7X4nWpOEbVIDGOKrH.jpg", - "cast_id": 74, - "character": "Allan", - "credit_id": "6258485809191b0065316886", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 23659, - "known_for_department": "Acting", - "name": "Will Ferrell", - "original_name": "Will Ferrell", - "popularity": 21.729, - "profile_path": "/xYPM1OOLXZguj4FsgmOzTSUXaXd.jpg", - "cast_id": 72, - "character": "Mattel CEO", - "credit_id": "6254669a8e2e001659ef6fdf", - "order": 6 - }, - { - "adult": false, - "gender": 2, - "id": 1489211, - "known_for_department": "Acting", - "name": "Simu Liu", - "original_name": "Simu Liu", - "popularity": 9.726, - "profile_path": "/uFNmmFTfNES3LW6H2gifpj6QQgh.jpg", - "cast_id": 100, - "character": "Ken", - "credit_id": "62a5e59053866e0de0f3a9d6", - "order": 7 - }, - { - "adult": false, - "gender": 1, - "id": 1252934, - "known_for_department": "Directing", - "name": "Emerald Fennell", - "original_name": "Emerald Fennell", - "popularity": 7.572, - "profile_path": "/ytyHUsPb7Saulczm8nCJHypIWQF.jpg", - "cast_id": 79, - "character": "Midge", - "credit_id": "62599b3cd55c3d006695211f", - "order": 8 - }, - { - "adult": false, - "gender": 1, - "id": 15735, - "known_for_department": "Acting", - "name": "Helen Mirren", - "original_name": "Helen Mirren", - "popularity": 43.912, - "profile_path": "/eY26gqv9EGunId7kp32pLueXvz4.jpg", - "cast_id": 177, - "character": "Narrator (voice)", - "credit_id": "63a2ac6abcf8c900a703e06f", - "order": 9 - }, - { - "adult": false, - "gender": 1, - "id": 24203, - "known_for_department": "Acting", - "name": "Rhea Perlman", - "original_name": "Rhea Perlman", - "popularity": 7.07, - "profile_path": "/3kUrd75OesnsmicI15dWdswHy7T.jpg", - "cast_id": 82, - "character": "Ruth Handler", - "credit_id": "62599b675f2db100a855bcaf", - "order": 10 - }, - { - "adult": false, - "gender": 1, - "id": 1455336, - "known_for_department": "Acting", - "name": "Issa Rae", - "original_name": "Issa Rae", - "popularity": 9.214, - "profile_path": "/1tX1T5ZNCMh2KYP1jMgfg8P26vm.jpg", - "cast_id": 97, - "character": "Barbie", - "credit_id": "628697ceec45525126899890", - "order": 11 - }, - { - "adult": false, - "gender": 1, - "id": 1253199, - "known_for_department": "Acting", - "name": "Alexandra Shipp", - "original_name": "Alexandra Shipp", - "popularity": 14.753, - "profile_path": "/4GOxIqnQXK5iGINdFDBlIQYa519.jpg", - "cast_id": 70, - "character": "Barbie", - "credit_id": "6234a816df29450046fe52f0", - "order": 12 - }, - { - "adult": false, - "gender": 1, - "id": 2201315, - "known_for_department": "Acting", - "name": "Emma Mackey", - "original_name": "Emma Mackey", - "popularity": 42.224, - "profile_path": "/y8nDoKXpyNViFL8Eam4Ey1PkgQ6.jpg", - "cast_id": 71, - "character": "Barbie", - "credit_id": "623b6caa719aeb00486bf21e", - "order": 13 - }, - { - "adult": false, - "gender": 1, - "id": 1611609, - "known_for_department": "Acting", - "name": "Hari Nef", - "original_name": "Hari Nef", - "popularity": 9.958, - "profile_path": "/i6Y4jABEIFEtjxg9PM2vdQlmBgc.jpg", - "cast_id": 103, - "character": "Barbie", - "credit_id": "62a5e5b535d1bc5107d08f00", - "order": 14 - }, - { - "adult": false, - "gender": 2, - "id": 1417352, - "known_for_department": "Acting", - "name": "Kingsley Ben-Adir", - "original_name": "Kingsley Ben-Adir", - "popularity": 9.761, - "profile_path": "/35EG2nZhvVF7Cf317wWpIJfQwWl.jpg", - "cast_id": 78, - "character": "Ken", - "credit_id": "62599b1c71f095009beb8a42", - "order": 15 - }, - { - "adult": false, - "gender": 2, - "id": 1475239, - "known_for_department": "Acting", - "name": "Ncuti Gatwa", - "original_name": "Ncuti Gatwa", - "popularity": 5.728, - "profile_path": "/mr5xF5oPULqQ1kPpURFc4NpXoSq.jpg", - "cast_id": 101, - "character": "Ken", - "credit_id": "62a5e59e1684f7004f7bcb8e", - "order": 16 - }, - { - "adult": false, - "gender": 2, - "id": 2112439, - "known_for_department": "Acting", - "name": "Connor Swindells", - "original_name": "Connor Swindells", - "popularity": 17.418, - "profile_path": "/365RWqbzPMx0JOyTPeP4rf8a0Kn.jpg", - "cast_id": 80, - "character": "Aaron Dinkins", - "credit_id": "62599b4cd236e60066ae44d3", - "order": 17 - }, - { - "adult": false, - "gender": 1, - "id": 1474028, - "known_for_department": "Acting", - "name": "Sharon Rooney", - "original_name": "Sharon Rooney", - "popularity": 9.986, - "profile_path": "/aMsYxadSBZ2dIlULmpHZCJyL9VF.jpg", - "cast_id": 83, - "character": "Barbie", - "credit_id": "62599b72fe6c18009f13f78f", - "order": 18 - }, - { - "adult": false, - "gender": 1, - "id": 1742596, - "known_for_department": "Acting", - "name": "Ritu Arya", - "original_name": "Ritu Arya", - "popularity": 10.791, - "profile_path": "/146HQxww4Yq97VcZ3YUHrErHMsm.jpg", - "cast_id": 179, - "character": "Barbie", - "credit_id": "63b4f7b9a9117f056567730f", - "order": 19 - }, - { - "adult": false, - "gender": 1, - "id": 1168285, - "known_for_department": "Acting", - "name": "Ana Kayne", - "original_name": "Ana Kayne", - "popularity": 3.186, - "profile_path": "/zvWAOkXkW40O4705GFaPyohS3tB.jpg", - "cast_id": 84, - "character": "Barbie", - "credit_id": "62599b85c92c5d196aa7bc99", - "order": 20 - }, - { - "adult": false, - "gender": 1, - "id": 1267240, - "known_for_department": "Acting", - "name": "Nicola Coughlan", - "original_name": "Nicola Coughlan", - "popularity": 7.376, - "profile_path": "/etMRCSnSgfLjqq5NEi8tgNClHLe.jpg", - "cast_id": 532, - "character": "Barbie", - "credit_id": "642c22219cc67b05bf708567", - "order": 21 - }, - { - "adult": false, - "gender": 1, - "id": 1959397, - "known_for_department": "Acting", - "name": "Dua Lipa", - "original_name": "Dua Lipa", - "popularity": 4.561, - "profile_path": "/82ZEdOoWZcRQbOawXbZ1EDTO85K.jpg", - "cast_id": 531, - "character": "Barbie", - "credit_id": "642c21b1ac8e6b34033382f7", - "order": 22 - }, - { - "adult": false, - "gender": 2, - "id": 56446, - "known_for_department": "Acting", - "name": "John Cena", - "original_name": "John Cena", - "popularity": 32.459, - "profile_path": "/6EZaBiQHx3Xlz3j0D6ttDxHXaxr.jpg", - "cast_id": 570, - "character": "Ken", - "credit_id": "6470954a336e0100c7079d0c", - "order": 23 - }, - { - "adult": false, - "gender": 2, - "id": 1427684, - "known_for_department": "Acting", - "name": "Scott Evans", - "original_name": "Scott Evans", - "popularity": 3.583, - "profile_path": "/x4tX5FmEBInEWTo0mFZkPU6fIqq.jpg", - "cast_id": 77, - "character": "Ken", - "credit_id": "62599afe3acd2016289fa921", - "order": 24 - }, - { - "adult": false, - "gender": 2, - "id": 1470911, - "known_for_department": "Acting", - "name": "Jamie Demetriou", - "original_name": "Jamie Demetriou", - "popularity": 4.938, - "profile_path": "/nRhjzDgxQ8PzdUX1MTGhSmWwm8D.jpg", - "cast_id": 102, - "character": "Mattel Executive #1", - "credit_id": "62a5e5ab35d1bc5107d08ede", - "order": 25 - }, - { - "adult": false, - "gender": 2, - "id": 1312526, - "known_for_department": "Acting", - "name": "Andrew Leung", - "original_name": "Andrew Leung", - "popularity": 11.063, - "profile_path": "/hXK4gUIooj3SpQ2qwEN9JLV0B7d.jpg", - "cast_id": 618, - "character": "Mattel Executive #2", - "credit_id": "64b794a1eee18600c6d10e45", - "order": 26 - }, - { - "adult": false, - "gender": 2, - "id": 1221073, - "known_for_department": "Acting", - "name": "Will Merrick", - "original_name": "Will Merrick", - "popularity": 4.356, - "profile_path": "/Al2mGwKBUX5FoUshdI2rVls71uu.jpg", - "cast_id": 619, - "character": "Young Mattel Employee", - "credit_id": "64b794abeee186011dc489c9", - "order": 27 - }, - { - "adult": false, - "gender": 2, - "id": 4169965, - "known_for_department": "Acting", - "name": "Zheng Xi Yong", - "original_name": "Zheng Xi Yong", - "popularity": 0.6, - "profile_path": "/zKJ1HxoIzin6fYtSj2QodXXdeCT.jpg", - "cast_id": 620, - "character": "An Even Younger Mattel Employee", - "credit_id": "64b794be109cd0011e69231f", - "order": 28 - }, - { - "adult": false, - "gender": 2, - "id": 1502438, - "known_for_department": "Acting", - "name": "Asim Chaudhry", - "original_name": "Asim Chaudhry", - "popularity": 7.957, - "profile_path": "/1F0DwOpxUAEpw5iovMHZ5Y1C8n6.jpg", - "cast_id": 621, - "character": "Warehouse Employee", - "credit_id": "64b794c6d399e600eb76c01e", - "order": 29 - }, - { - "adult": false, - "gender": 2, - "id": 56650, - "known_for_department": "Acting", - "name": "Ray Fearon", - "original_name": "Ray Fearon", - "popularity": 2.433, - "profile_path": "/ou2cqhqdhfQoKVEBpIh0P3sKZti.jpg", - "cast_id": 622, - "character": "Dan at the FBI", - "credit_id": "64b794d05aadc4011c0bbf9f", - "order": 30 - }, - { - "adult": false, - "gender": 1, - "id": 3975650, - "known_for_department": "Acting", - "name": "Erica Ford", - "original_name": "Erica Ford", - "popularity": 0.924, - "profile_path": "/h45yXrIOPeTpz8qUy6Pgu9lS9TA.jpg", - "cast_id": 623, - "character": "Skipper", - "credit_id": "64b794d9109cd0010183a81e", - "order": 31 - }, - { - "adult": false, - "gender": 0, - "id": 3412837, - "known_for_department": "Acting", - "name": "Hannah Khalique-Brown", - "original_name": "Hannah Khalique-Brown", - "popularity": 1.807, - "profile_path": "/fBxo4bVDNrCe7VqAR3kM1s7UMYj.jpg", - "cast_id": 624, - "character": "Growing Up Skipper", - "credit_id": "64b794e755b0c0011c466501", - "order": 32 - }, - { - "adult": false, - "gender": 1, - "id": 2152740, - "known_for_department": "Acting", - "name": "Mette Towley", - "original_name": "Mette Towley", - "popularity": 1.042, - "profile_path": "/3mBRyRqLrxxIL7hTBh52wmz07Ro.jpg", - "cast_id": 625, - "character": "Barbie Video Girl", - "credit_id": "64b794f9109cd0010183a830", - "order": 33 - }, - { - "adult": false, - "gender": 1, - "id": 2673762, - "known_for_department": "Acting", - "name": "Marisa Abela", - "original_name": "Marisa Abela", - "popularity": 1.826, - "profile_path": "/jmrlbz43kUk4H0bcRGVLdJ4RsDl.jpg", - "cast_id": 108, - "character": "Teen Talk Barbie", - "credit_id": "62c489c22da84606ae4af556", - "order": 34 - }, - { - "adult": false, - "gender": 1, - "id": 86232, - "known_for_department": "Acting", - "name": "Lucy Boynton", - "original_name": "Lucy Boynton", - "popularity": 7.946, - "profile_path": "/znBMEv0NmBewhZWHUopmzEIYVyY.jpg", - "cast_id": 626, - "character": "Proust Barbie", - "credit_id": "64b7950dd399e6010cb7f226", - "order": 35 - }, - { - "adult": false, - "gender": 2, - "id": 47632, - "known_for_department": "Acting", - "name": "Rob Brydon", - "original_name": "Rob Brydon", - "popularity": 7.922, - "profile_path": "/xoKLZVwzaUgTUEvPX4vymXpC1fU.jpg", - "cast_id": 627, - "character": "Sugar Daddy Ken", - "credit_id": "64b79516d399e600eb76c03c", - "order": 36 - }, - { - "adult": false, - "gender": 2, - "id": 1420175, - "known_for_department": "Acting", - "name": "Tom Stourton", - "original_name": "Tom Stourton", - "popularity": 2.655, - "profile_path": "/cwHVHtoqqVdxiQakrwlTfjBdafE.jpg", - "cast_id": 628, - "character": "Earring Magic Ken", - "credit_id": "64b7951f55b0c0011c466528", - "order": 37 - }, - { - "adult": false, - "gender": 0, - "id": 4183105, - "known_for_department": "Acting", - "name": "Chris Taylor", - "original_name": "Chris Taylor", - "popularity": 0.84, - "profile_path": "/lDYIiUeqVUbK3Ru5Rh10biwJn7W.jpg", - "cast_id": 768, - "character": "Ken Emcee", - "credit_id": "64c2548fdb4ed6011ed7a7f0", - "order": 38 - }, - { - "adult": false, - "gender": 2, - "id": 1619648, - "known_for_department": "Acting", - "name": "David Mumeni", - "original_name": "David Mumeni", - "popularity": 3.721, - "profile_path": "/sE7kybwXJoLpKualK5ayWG3U0GM.jpg", - "cast_id": 630, - "character": "Footrub Ken", - "credit_id": "64b79534d399e6010cb7f23a", - "order": 39 - }, - { - "adult": false, - "gender": 0, - "id": 2952051, - "known_for_department": "Acting", - "name": "Olivia Brody", - "original_name": "Olivia Brody", - "popularity": 0.6, - "profile_path": "/cRq9YhRThyHwsUnJ68Lg76fBkGa.jpg", - "cast_id": 631, - "character": "2001 Girl", - "credit_id": "64b795445aadc400c58a988c", - "order": 40 - }, - { - "adult": false, - "gender": 1, - "id": 4169971, - "known_for_department": "Acting", - "name": "Isla Ashworth", - "original_name": "Isla Ashworth", - "popularity": 0.6, - "profile_path": "/j6toGnhg5l0Cub0R1YslHA0oXSw.jpg", - "cast_id": 632, - "character": "2001 Girl", - "credit_id": "64b7954fd399e600eb76c066", - "order": 41 - }, - { - "adult": false, - "gender": 1, - "id": 4135287, - "known_for_department": "Acting", - "name": "Eire Farrell", - "original_name": "Eire Farrell", - "popularity": 0.6, - "profile_path": null, - "cast_id": 633, - "character": "2001 Girl", - "credit_id": "64b79556109cd000e4e97cb1", - "order": 42 - }, - { - "adult": false, - "gender": 1, - "id": 1779093, - "known_for_department": "Acting", - "name": "Daisy Duczmal", - "original_name": "Daisy Duczmal", - "popularity": 0.996, - "profile_path": "/fLTtnJfhOpjW24A4GLOxGZUMbtb.jpg", - "cast_id": 634, - "character": "2001 Girl", - "credit_id": "64b7955cb1f68d014469f1dc", - "order": 43 - }, - { - "adult": false, - "gender": 0, - "id": 4169978, - "known_for_department": "Acting", - "name": "Genvieve Toussaint", - "original_name": "Genvieve Toussaint", - "popularity": 0.84, - "profile_path": null, - "cast_id": 635, - "character": "Young Sasha", - "credit_id": "64b795a555b0c000ffb0ac1f", - "order": 44 - }, - { - "adult": false, - "gender": 1, - "id": 1623321, - "known_for_department": "Acting", - "name": "Isabella Nightingale", - "original_name": "Isabella Nightingale", - "popularity": 0.84, - "profile_path": null, - "cast_id": 636, - "character": "Girl Making Weird Barbie", - "credit_id": "64b795b2d399e600eb76c085", - "order": 45 - }, - { - "adult": false, - "gender": 1, - "id": 3144896, - "known_for_department": "Acting", - "name": "Manuela Mora", - "original_name": "Manuela Mora", - "popularity": 0.6, - "profile_path": "/b4Glsjv4jFjs7uJVZUzj5SCQuxM.jpg", - "cast_id": 637, - "character": "Girl with Barbie", - "credit_id": "64b795bab1f68d00ae33d9b9", - "order": 46 - }, - { - "adult": false, - "gender": 0, - "id": 4169980, - "known_for_department": "Acting", - "name": "Aida Sexton", - "original_name": "Aida Sexton", - "popularity": 0.6, - "profile_path": null, - "cast_id": 638, - "character": "Girl with Barbie", - "credit_id": "64b795cb109cd0013b029fbd", - "order": 47 - }, - { - "adult": false, - "gender": 1, - "id": 5493, - "known_for_department": "Costume & Make-Up", - "name": "Ann Roth", - "original_name": "Ann Roth", - "popularity": 8.092, - "profile_path": "/cT4EtdqvG0Yq4EQ3LASXiwyndYi.jpg", - "cast_id": 656, - "character": "The Woman on the Bench", - "credit_id": "64b796de109cd0013b02a040", - "order": 48 - }, - { - "adult": false, - "gender": 0, - "id": 4169981, - "known_for_department": "Acting", - "name": "Millie-Rose Crossley", - "original_name": "Millie-Rose Crossley", - "popularity": 0.6, - "profile_path": null, - "cast_id": 639, - "character": "Advertisement Girl", - "credit_id": "64b795d855b0c00139b68db4", - "order": 49 - }, - { - "adult": false, - "gender": 0, - "id": 4169982, - "known_for_department": "Acting", - "name": "Anvita Nehru", - "original_name": "Anvita Nehru", - "popularity": 0.6, - "profile_path": null, - "cast_id": 640, - "character": "Advertisement Girl", - "credit_id": "64b795e0a806730144924765", - "order": 50 - }, - { - "adult": false, - "gender": 0, - "id": 3506596, - "known_for_department": "Acting", - "name": "Kayla-Mai Alvares", - "original_name": "Kayla-Mai Alvares", - "popularity": 0.6, - "profile_path": null, - "cast_id": 641, - "character": "Advertisement Girl", - "credit_id": "64b795eaeee18600c6d10ed8", - "order": 51 - }, - { - "adult": false, - "gender": 2, - "id": 1965108, - "known_for_department": "Acting", - "name": "Luke Mullen", - "original_name": "Luke Mullen", - "popularity": 1.926, - "profile_path": "/l26Y8LORdeHMjrAr5074NtcRfGH.jpg", - "cast_id": 642, - "character": "Guy at the Beach", - "credit_id": "64b795f455b0c000ffb0ac47", - "order": 52 - }, - { - "adult": false, - "gender": 2, - "id": 2209431, - "known_for_department": "Acting", - "name": "Patrick Luwis", - "original_name": "Patrick Luwis", - "popularity": 1.852, - "profile_path": "/cDrbpzvAjX7zd7LtbkXHFSW6CS3.jpg", - "cast_id": 574, - "character": "Guy at the Beach", - "credit_id": "6470e58713a32000f9afd411", - "order": 53 - }, - { - "adult": false, - "gender": 2, - "id": 1215837, - "known_for_department": "Acting", - "name": "Mac Brandt", - "original_name": "Mac Brandt", - "popularity": 5.272, - "profile_path": "/u2zRIywRVcih7LsZIsybmbzwmJW.jpg", - "cast_id": 644, - "character": "Construction Worker", - "credit_id": "64b796065aadc400ffb7d111", - "order": 54 - }, - { - "adult": false, - "gender": 2, - "id": 2123597, - "known_for_department": "Acting", - "name": "Paul Jurewicz", - "original_name": "Paul Jurewicz", - "popularity": 1.193, - "profile_path": "/kFKDiMUwentySCuVVf7TYzUhUdA.jpg", - "cast_id": 645, - "character": "Construction Worker", - "credit_id": "64b7960eb1f68d014469f221", - "order": 55 - }, - { - "adult": false, - "gender": 0, - "id": 4169984, - "known_for_department": "Acting", - "name": "Oraldo Austin", - "original_name": "Oraldo Austin", - "popularity": 0.84, - "profile_path": null, - "cast_id": 646, - "character": "Construction Worker", - "credit_id": "64b7961d109cd0013b029fee", - "order": 56 - }, - { - "adult": false, - "gender": 2, - "id": 203637, - "known_for_department": "Acting", - "name": "Benjamin Arthur", - "original_name": "Benjamin Arthur", - "popularity": 1.726, - "profile_path": "/bj0a8v6tASvZ4iwvXtuNLSk2zGN.jpg", - "cast_id": 647, - "character": "Construction Worker", - "credit_id": "64b7962555b0c000e2cb56fa", - "order": 57 - }, - { - "adult": false, - "gender": 2, - "id": 52930, - "known_for_department": "Acting", - "name": "Carlos Jacott", - "original_name": "Carlos Jacott", - "popularity": 3.19, - "profile_path": "/wBwHJ5f8OBOoHACkSEGaczvt060.jpg", - "cast_id": 648, - "character": "Policeman", - "credit_id": "64b7962d55b0c00139b68df4", - "order": 58 - }, - { - "adult": false, - "gender": 2, - "id": 1637555, - "known_for_department": "Acting", - "name": "Adam Ray", - "original_name": "Adam Ray", - "popularity": 3.209, - "profile_path": "/f7LUTC2sAP3dMmiiC880NGUYYgc.jpg", - "cast_id": 649, - "character": "Policeman", - "credit_id": "64b79634b1f68d00c8ff88ba", - "order": 59 - }, - { - "adult": false, - "gender": 2, - "id": 1097533, - "known_for_department": "Acting", - "name": "George Basil", - "original_name": "George Basil", - "popularity": 3.378, - "profile_path": "/8Bn5ZZp0cAnyjRWGPGiV833y7LZ.jpg", - "cast_id": 650, - "character": "Boutique Owner", - "credit_id": "64b7963c55b0c0011c46659c", - "order": 60 - }, - { - "adult": false, - "gender": 2, - "id": 207453, - "known_for_department": "Acting", - "name": "Ptolemy Slocum", - "original_name": "Ptolemy Slocum", - "popularity": 2.373, - "profile_path": "/vCfBlwQxoVdUPzupjEFlbeK8B8z.jpg", - "cast_id": 651, - "character": "Corporate Man", - "credit_id": "64b79647109cd0010183a8ae", - "order": 61 - }, - { - "adult": false, - "gender": 0, - "id": 1571604, - "known_for_department": "Acting", - "name": "Deb Hiett", - "original_name": "Deb Hiett", - "popularity": 2.162, - "profile_path": "/dD5RdZwhCQtaiJYjQvDcXd9MuFw.jpg", - "cast_id": 575, - "character": "Doctor", - "credit_id": "6470e59877070000c25860fe", - "order": 62 - }, - { - "adult": false, - "gender": 0, - "id": 4169990, - "known_for_department": "Acting", - "name": "James Leon", - "original_name": "James Leon", - "popularity": 0.6, - "profile_path": null, - "cast_id": 652, - "character": "Life-Guard", - "credit_id": "64b796be5aadc4011c0bc094", - "order": 63 - }, - { - "adult": false, - "gender": 2, - "id": 1491397, - "known_for_department": "Acting", - "name": "Oliver Vaquer", - "original_name": "Oliver Vaquer", - "popularity": 1.111, - "profile_path": "/skidWai1DWg1b0Z1x9hhN0UEGfA.jpg", - "cast_id": 653, - "character": "Businessman", - "credit_id": "64b796c85aadc40139d13e57", - "order": 64 - }, - { - "adult": false, - "gender": 0, - "id": 3536866, - "known_for_department": "Acting", - "name": "Tony Noto", - "original_name": "Tony Noto", - "popularity": 0.6, - "profile_path": "/9bSFy5E1Kg1uY8fztpjAPbFe6nF.jpg", - "cast_id": 654, - "character": "Businessman", - "credit_id": "64b796cf55b0c000e2cb574f", - "order": 65 - }, - { - "adult": false, - "gender": 2, - "id": 1459152, - "known_for_department": "Acting", - "name": "Christopher T. Wood", - "original_name": "Christopher T. Wood", - "popularity": 1.521, - "profile_path": "/2Wbp7be4GNHU0yivHKXWwdZSEy8.jpg", - "cast_id": 655, - "character": "Businessman", - "credit_id": "64b796d6eee18600c6d10f38", - "order": 66 - }, - { - "adult": false, - "gender": 1, - "id": 174514, - "known_for_department": "Acting", - "name": "Annie Mumolo", - "original_name": "Annie Mumolo", - "popularity": 4.486, - "profile_path": "/4U943oEvfDg8Tuyjl9biLgzijBf.jpg", - "cast_id": 657, - "character": "Anxiety Mom", - "credit_id": "64b796e7109cd0010183a8f4", - "order": 67 - }, - { - "adult": false, - "gender": 0, - "id": 4169992, - "known_for_department": "Acting", - "name": "Elise Gallup", - "original_name": "Elise Gallup", - "popularity": 0.6, - "profile_path": null, - "cast_id": 658, - "character": "Warning Girl", - "credit_id": "64b796efd399e600ad449b95", - "order": 68 - }, - { - "adult": false, - "gender": 1, - "id": 2072197, - "known_for_department": "Acting", - "name": "McKenna Roberts", - "original_name": "McKenna Roberts", - "popularity": 12.383, - "profile_path": "/cxDP4bZIAeBDaIadkHaeswrUu0G.jpg", - "cast_id": 659, - "character": "Junior High Friend", - "credit_id": "64b796fceee1860100ea9695", - "order": 69 - }, - { - "adult": false, - "gender": 0, - "id": 4169993, - "known_for_department": "Acting", - "name": "Brylee Hsu", - "original_name": "Brylee Hsu", - "popularity": 0.6, - "profile_path": null, - "cast_id": 660, - "character": "Junior High Friend", - "credit_id": "64b79703d399e6012db4bdfd", - "order": 70 - }, - { - "adult": false, - "gender": 0, - "id": 4169994, - "known_for_department": "Acting", - "name": "Sasha Milstein", - "original_name": "Sasha Milstein", - "popularity": 0.6, - "profile_path": null, - "cast_id": 661, - "character": "Junior High Friend", - "credit_id": "64b7970955b0c00139b68e72", - "order": 71 - }, - { - "adult": false, - "gender": 0, - "id": 1681573, - "known_for_department": "Acting", - "name": "Lauren Holt", - "original_name": "Lauren Holt", - "popularity": 1.049, - "profile_path": "/2dPQDpa9Q3tWUOlFiGspxFAOw6l.jpg", - "cast_id": 662, - "character": "Time Mom", - "credit_id": "64b797105aadc400c58a9983", - "order": 72 - }, - { - "adult": false, - "gender": 0, - "id": 168834, - "known_for_department": "Acting", - "name": "Sterling Jones", - "original_name": "Sterling Jones", - "popularity": 0.84, - "profile_path": null, - "cast_id": 663, - "character": "Mattel Agent", - "credit_id": "64b797195aadc400c58a998f", - "order": 73 - }, - { - "adult": false, - "gender": 2, - "id": 131885, - "known_for_department": "Directing", - "name": "Ryan Piers Williams", - "original_name": "Ryan Piers Williams", - "popularity": 1.332, - "profile_path": "/nOhcNZ7IUbthH43XBTCmPFGhReo.jpg", - "cast_id": 664, - "character": "El Esposo de Gloria", - "credit_id": "64b7972755b0c000c58e8d2a", - "order": 74 - }, - { - "adult": false, - "gender": 2, - "id": 2131693, - "known_for_department": "Acting", - "name": "Jamaal Lewis", - "original_name": "Jamaal Lewis", - "popularity": 1.407, - "profile_path": "/eG2S2CYigneliGEjJwK4Or6Aehd.jpg", - "cast_id": 665, - "character": "Muscle Beach Guy", - "credit_id": "64b79730a8067300c8d1780a", - "order": 75 - }, - { - "adult": false, - "gender": 1, - "id": 1945733, - "known_for_department": "Acting", - "name": "Kathryn Akin", - "original_name": "Kathryn Akin", - "popularity": 0.731, - "profile_path": "/1CR7rYwRCHmHi0504Nn8JJ4URVJ.jpg", - "cast_id": 666, - "character": "Doctor Receptionist", - "credit_id": "64b79738b1f68d0106956d24", - "order": 76 - }, - { - "adult": false, - "gender": 1, - "id": 2112276, - "known_for_department": "Acting", - "name": "Grace Jabbari", - "original_name": "Grace Jabbari", - "popularity": 0.932, - "profile_path": null, - "cast_id": 675, - "character": "Dancer", - "credit_id": "64c1efad13a32000ad4e7de8", - "order": 77 - }, - { - "adult": false, - "gender": 0, - "id": 1488474, - "known_for_department": "Acting", - "name": "Ira Mandela Siobhan", - "original_name": "Ira Mandela Siobhan", - "popularity": 0.693, - "profile_path": "/ofnxItrjoOSFs1kPOR1qAtFAZb7.jpg", - "cast_id": 676, - "character": "Dancer", - "credit_id": "64c1efb81cfe3a0eb1cc42e9", - "order": 78 - }, - { - "adult": false, - "gender": 0, - "id": 3221943, - "known_for_department": "Acting", - "name": "Lisa Spencer", - "original_name": "Lisa Spencer", - "popularity": 0.6, - "profile_path": "/z6lcpomiNkgnb8XY5IpnJOELfP5.jpg", - "cast_id": 677, - "character": "Dancer", - "credit_id": "64c1f012be55b7011fbc68a7", - "order": 79 - }, - { - "adult": false, - "gender": 1, - "id": 1802794, - "known_for_department": "Acting", - "name": "Naomi Weijand", - "original_name": "Naomi Weijand", - "popularity": 0.6, - "profile_path": "/cMRu8nDIRPPAVvmN2oGLSvVksPp.jpg", - "cast_id": 678, - "character": "Dancer", - "credit_id": "64c1f01cdb4ed60101a9d101", - "order": 80 - }, - { - "adult": false, - "gender": 2, - "id": 2677070, - "known_for_department": "Acting", - "name": "Tom Clark", - "original_name": "Tom Clark", - "popularity": 0.84, - "profile_path": "/wYQkvbOeiFsNdSjaolyX6ovJPVa.jpg", - "cast_id": 679, - "character": "Dancer", - "credit_id": "64c1f04213a32000ad4e7e29", - "order": 81 - }, - { - "adult": false, - "gender": 0, - "id": 4182492, - "known_for_department": "Acting", - "name": "Ireanne Abenoja", - "original_name": "Ireanne Abenoja", - "popularity": 0.6, - "profile_path": null, - "cast_id": 680, - "character": "Dancer", - "credit_id": "64c1f0501cfe3a0eb282bfbf", - "order": 82 - }, - { - "adult": false, - "gender": 0, - "id": 4182493, - "known_for_department": "Acting", - "name": "Davide Albonetti", - "original_name": "Davide Albonetti", - "popularity": 0.629, - "profile_path": null, - "cast_id": 682, - "character": "Dancer", - "credit_id": "64c1f081db4ed6011ed7809a", - "order": 83 - }, - { - "adult": false, - "gender": 0, - "id": 4182494, - "known_for_department": "Acting", - "name": "Charlotte Anderson", - "original_name": "Charlotte Anderson", - "popularity": 0.6, - "profile_path": null, - "cast_id": 683, - "character": "Dancer", - "credit_id": "64c1f098ede1b00102455849", - "order": 84 - }, - { - "adult": false, - "gender": 0, - "id": 4182495, - "known_for_department": "Acting", - "name": "Michael Anderson", - "original_name": "Michael Anderson", - "popularity": 0.6, - "profile_path": null, - "cast_id": 684, - "character": "Dancer", - "credit_id": "64c1f0b2097c49013a31d035", - "order": 85 - }, - { - "adult": false, - "gender": 0, - "id": 4182496, - "known_for_department": "Acting", - "name": "Rico Bakker", - "original_name": "Rico Bakker", - "popularity": 0.6, - "profile_path": null, - "cast_id": 685, - "character": "Dancer", - "credit_id": "64c1f0bb13a32000e21af8f3", - "order": 86 - }, - { - "adult": false, - "gender": 0, - "id": 4182542, - "known_for_department": "Acting", - "name": "James Bamford", - "original_name": "James Bamford", - "popularity": 0.6, - "profile_path": null, - "cast_id": 686, - "character": "Dancer", - "credit_id": "64c1fc67ede1b00102455d31", - "order": 87 - }, - { - "adult": false, - "gender": 0, - "id": 2280478, - "known_for_department": "Acting", - "name": "William John Banks", - "original_name": "William John Banks", - "popularity": 0.6, - "profile_path": null, - "cast_id": 687, - "character": "Dancer", - "credit_id": "64c1fc74df86a801446c6938", - "order": 88 - }, - { - "adult": false, - "gender": 0, - "id": 4182543, - "known_for_department": "Acting", - "name": "Callum Bell", - "original_name": "Callum Bell", - "popularity": 0.6, - "profile_path": null, - "cast_id": 688, - "character": "Dancer", - "credit_id": "64c1fca81cfe3a0eb42991dc", - "order": 89 - }, - { - "adult": false, - "gender": 0, - "id": 4182544, - "known_for_department": "Acting", - "name": "Adam Blaug", - "original_name": "Adam Blaug", - "popularity": 0.6, - "profile_path": null, - "cast_id": 689, - "character": "Dancer", - "credit_id": "64c1fcb4097c4900e3f3aec8", - "order": 90 - }, - { - "adult": false, - "gender": 0, - "id": 4182545, - "known_for_department": "Acting", - "name": "Mason Boyce", - "original_name": "Mason Boyce", - "popularity": 0.6, - "profile_path": null, - "cast_id": 690, - "character": "Dancer", - "credit_id": "64c1fcc12f1be000ca273d47", - "order": 91 - }, - { - "adult": false, - "gender": 0, - "id": 4182546, - "known_for_department": "Acting", - "name": "Taylor Bradshaw", - "original_name": "Taylor Bradshaw", - "popularity": 0.6, - "profile_path": null, - "cast_id": 691, - "character": "Dancer", - "credit_id": "64c1fcf81cfe3a0eb282c45b", - "order": 92 - }, - { - "adult": false, - "gender": 0, - "id": 4182547, - "known_for_department": "Acting", - "name": "Alex Brown", - "original_name": "Alex Brown", - "popularity": 0.98, - "profile_path": null, - "cast_id": 692, - "character": "Dancer", - "credit_id": "64c1fd13ede1b000e50d77df", - "order": 93 - }, - { - "adult": false, - "gender": 0, - "id": 4182548, - "known_for_department": "Acting", - "name": "Miekaile Browne", - "original_name": "Miekaile Browne", - "popularity": 0.84, - "profile_path": "/4uEWRxCEZjI8VD057QrIeZIvBrv.jpg", - "cast_id": 693, - "character": "Dancer", - "credit_id": "64c1fd28ede1b0011f7dec4c", - "order": 94 - }, - { - "adult": false, - "gender": 0, - "id": 4182549, - "known_for_department": "Acting", - "name": "Lewis Calcutt", - "original_name": "Lewis Calcutt", - "popularity": 0.6, - "profile_path": null, - "cast_id": 694, - "character": "Dancer", - "credit_id": "64c1fd32097c4900e3f3af12", - "order": 95 - }, - { - "adult": false, - "gender": 1, - "id": 1535014, - "known_for_department": "Acting", - "name": "Nikkita Chadha", - "original_name": "Nikkita Chadha", - "popularity": 3.132, - "profile_path": "/j0d1shh4OEBVjuZlFAoC1pugaps.jpg", - "cast_id": 695, - "character": "Dancer", - "credit_id": "64c1fd3edb4ed600aeb06845", - "order": 96 - }, - { - "adult": false, - "gender": 0, - "id": 4182550, - "known_for_department": "Acting", - "name": "Oliver Chapman", - "original_name": "Oliver Chapman", - "popularity": 0.6, - "profile_path": null, - "cast_id": 696, - "character": "Dancer", - "credit_id": "64c1fd49fdc1460139fa4516", - "order": 97 - }, - { - "adult": false, - "gender": 0, - "id": 4182551, - "known_for_department": "Acting", - "name": "Megan Charles", - "original_name": "Megan Charles", - "popularity": 0.6, - "profile_path": null, - "cast_id": 697, - "character": "Dancer", - "credit_id": "64c1fd52df86a800c8e8d3a3", - "order": 98 - }, - { - "adult": false, - "gender": 0, - "id": 4182552, - "known_for_department": "Acting", - "name": "Callum Clack", - "original_name": "Callum Clack", - "popularity": 0.6, - "profile_path": null, - "cast_id": 698, - "character": "Dancer", - "credit_id": "64c1fd5dfdc14600ad556456", - "order": 99 - }, - { - "adult": false, - "gender": 0, - "id": 4182553, - "known_for_department": "Acting", - "name": "Danny Coburn", - "original_name": "Danny Coburn", - "popularity": 0.6, - "profile_path": null, - "cast_id": 699, - "character": "Dancer", - "credit_id": "64c1fd6b1cfe3a0eb429924d", - "order": 100 - }, - { - "adult": false, - "gender": 0, - "id": 4182554, - "known_for_department": "Acting", - "name": "Kat Collings", - "original_name": "Kat Collings", - "popularity": 0.6, - "profile_path": null, - "cast_id": 700, - "character": "Dancer", - "credit_id": "64c1fd75fdc14600c50c8147", - "order": 101 - }, - { - "adult": false, - "gender": 0, - "id": 4182556, - "known_for_department": "Acting", - "name": "Adam Crossley", - "original_name": "Adam Crossley", - "popularity": 0.6, - "profile_path": null, - "cast_id": 701, - "character": "Dancer", - "credit_id": "64c1fdc1df86a8012582d664", - "order": 102 - }, - { - "adult": false, - "gender": 0, - "id": 4182557, - "known_for_department": "Acting", - "name": "Sia Dauda", - "original_name": "Sia Dauda", - "popularity": 1.4, - "profile_path": null, - "cast_id": 702, - "character": "Dancer", - "credit_id": "64c1fdca097c4900e3f3af78", - "order": 103 - }, - { - "adult": false, - "gender": 0, - "id": 4182558, - "known_for_department": "Acting", - "name": "Gustave Die", - "original_name": "Gustave Die", - "popularity": 0.6, - "profile_path": null, - "cast_id": 703, - "character": "Dancer", - "credit_id": "64c1fdd52f1be0010c822cf1", - "order": 104 - }, - { - "adult": false, - "gender": 0, - "id": 4182559, - "known_for_department": "Acting", - "name": "Grace Durkin", - "original_name": "Grace Durkin", - "popularity": 0.6, - "profile_path": null, - "cast_id": 704, - "character": "Dancer", - "credit_id": "64c1fdf913a320011c5fa653", - "order": 105 - }, - { - "adult": false, - "gender": 0, - "id": 3640392, - "known_for_department": "Acting", - "name": "Joelle Dyson", - "original_name": "Joelle Dyson", - "popularity": 0.6, - "profile_path": "/33IblN4fZqDufbDPC0XaatkDgl.jpg", - "cast_id": 705, - "character": "Dancer", - "credit_id": "64c1fe07fdc14600ad5564ae", - "order": 106 - }, - { - "adult": false, - "gender": 0, - "id": 4182561, - "known_for_department": "Acting", - "name": "Lewis Easter", - "original_name": "Lewis Easter", - "popularity": 0.6, - "profile_path": null, - "cast_id": 706, - "character": "Dancer", - "credit_id": "64c1fe1213a32000ad4e847a", - "order": 107 - }, - { - "adult": false, - "gender": 0, - "id": 4182562, - "known_for_department": "Acting", - "name": "Onyemachi Ejimofor", - "original_name": "Onyemachi Ejimofor", - "popularity": 0.694, - "profile_path": null, - "cast_id": 707, - "character": "Dancer", - "credit_id": "64c1fe1fdf86a800e78072a9", - "order": 108 - }, - { - "adult": false, - "gender": 0, - "id": 4182563, - "known_for_department": "Acting", - "name": "Cameron Everitt", - "original_name": "Cameron Everitt", - "popularity": 0.6, - "profile_path": null, - "cast_id": 708, - "character": "Dancer", - "credit_id": "64c1fe2ddf86a8012582d69e", - "order": 109 - }, - { - "adult": false, - "gender": 0, - "id": 4182586, - "known_for_department": "Acting", - "name": "Luke Field-Wright", - "original_name": "Luke Field-Wright", - "popularity": 0.6, - "profile_path": null, - "cast_id": 709, - "character": "Dancer", - "credit_id": "64c20076097c490100d2273d", - "order": 110 - }, - { - "adult": false, - "gender": 0, - "id": 4182587, - "known_for_department": "Acting", - "name": "Sasha Flesch", - "original_name": "Sasha Flesch", - "popularity": 0.828, - "profile_path": null, - "cast_id": 710, - "character": "Dancer", - "credit_id": "64c20082ede1b0013c6ec5b0", - "order": 111 - }, - { - "adult": false, - "gender": 0, - "id": 4182588, - "known_for_department": "Acting", - "name": "Adam Fogarty", - "original_name": "Adam Fogarty", - "popularity": 0.6, - "profile_path": null, - "cast_id": 711, - "character": "Dancer", - "credit_id": "64c2008cfdc14600ff7374bd", - "order": 112 - }, - { - "adult": false, - "gender": 0, - "id": 4182589, - "known_for_department": "Acting", - "name": "Mikey French", - "original_name": "Mikey French", - "popularity": 0.6, - "profile_path": null, - "cast_id": 712, - "character": "Dancer", - "credit_id": "64c2009b097c4900c643883c", - "order": 113 - }, - { - "adult": false, - "gender": 0, - "id": 4182590, - "known_for_department": "Acting", - "name": "Anna-Kay Gayle", - "original_name": "Anna-Kay Gayle", - "popularity": 0.6, - "profile_path": null, - "cast_id": 713, - "character": "Dancer", - "credit_id": "64c200a91cfe3a0eb4299384", - "order": 114 - }, - { - "adult": false, - "gender": 0, - "id": 4182591, - "known_for_department": "Acting", - "name": "Charlie Goddard", - "original_name": "Charlie Goddard", - "popularity": 0.6, - "profile_path": null, - "cast_id": 714, - "character": "Dancer", - "credit_id": "64c200badb4ed600e4caae22", - "order": 115 - }, - { - "adult": false, - "gender": 0, - "id": 4182592, - "known_for_department": "Acting", - "name": "Marlie Goddard", - "original_name": "Marlie Goddard", - "popularity": 0.6, - "profile_path": "/2lijQM171XCgx4XHEHRk9OUrtXE.jpg", - "cast_id": 715, - "character": "Dancer", - "credit_id": "64c200c4df86a8012582d7ad", - "order": 116 - }, - { - "adult": false, - "gender": 0, - "id": 4182594, - "known_for_department": "Acting", - "name": "Ellis Harman", - "original_name": "Ellis Harman", - "popularity": 0.6, - "profile_path": null, - "cast_id": 716, - "character": "Dancer", - "credit_id": "64c200f7fdc1460139fa46c8", - "order": 117 - }, - { - "adult": false, - "gender": 1, - "id": 1826765, - "known_for_department": "Acting", - "name": "Yasmin Harrison", - "original_name": "Yasmin Harrison", - "popularity": 1.361, - "profile_path": null, - "cast_id": 717, - "character": "Dancer", - "credit_id": "64c201072f1be0014ef62b35", - "order": 118 - }, - { - "adult": false, - "gender": 0, - "id": 2242897, - "known_for_department": "Acting", - "name": "Josh Hawkins", - "original_name": "Josh Hawkins", - "popularity": 0.656, - "profile_path": null, - "cast_id": 718, - "character": "Dancer", - "credit_id": "64c2011cede1b0013c6ec5f7", - "order": 119 - }, - { - "adult": false, - "gender": 0, - "id": 4182597, - "known_for_department": "Acting", - "name": "James Healy", - "original_name": "James Healy", - "popularity": 0.6, - "profile_path": null, - "cast_id": 719, - "character": "Dancer", - "credit_id": "64c2012e1cfe3a0eb282c5d2", - "order": 120 - }, - { - "adult": false, - "gender": 0, - "id": 2732586, - "known_for_department": "Acting", - "name": "Tim Hodges", - "original_name": "Tim Hodges", - "popularity": 0.6, - "profile_path": null, - "cast_id": 720, - "character": "Dancer", - "credit_id": "64c2014aede1b000af4c9447", - "order": 121 - }, - { - "adult": false, - "gender": 0, - "id": 4182598, - "known_for_department": "Acting", - "name": "Mira Jebari", - "original_name": "Mira Jebari", - "popularity": 0.6, - "profile_path": "/4oE8Cuc6QMJ9NvjkGjcTqwmsIGN.jpg", - "cast_id": 721, - "character": "Dancer", - "credit_id": "64c20155df86a800e78073e7", - "order": 122 - }, - { - "adult": false, - "gender": 0, - "id": 4182601, - "known_for_department": "Acting", - "name": "Beccy Jones", - "original_name": "Beccy Jones", - "popularity": 0.6, - "profile_path": null, - "cast_id": 722, - "character": "Dancer", - "credit_id": "64c201662f1be0012d919270", - "order": 123 - }, - { - "adult": false, - "gender": 0, - "id": 4182604, - "known_for_department": "Acting", - "name": "Thomas Kalek", - "original_name": "Thomas Kalek", - "popularity": 0.6, - "profile_path": null, - "cast_id": 723, - "character": "Dancer", - "credit_id": "64c2017013a3200139f11e4c", - "order": 124 - }, - { - "adult": false, - "gender": 1, - "id": 1154760, - "known_for_department": "Acting", - "name": "Lily Laight", - "original_name": "Lily Laight", - "popularity": 2.236, - "profile_path": "/aaMk2vUeYz6C7OQunMQQKyPMx5g.jpg", - "cast_id": 724, - "character": "Dancer", - "credit_id": "64c2019b1cfe3a0eb1cc4990", - "order": 125 - }, - { - "adult": false, - "gender": 0, - "id": 4182606, - "known_for_department": "Acting", - "name": "Maiya Leeke", - "original_name": "Maiya Leeke", - "popularity": 0.6, - "profile_path": null, - "cast_id": 725, - "character": "Dancer", - "credit_id": "64c201a513a32000ad4e85f0", - "order": 126 - }, - { - "adult": false, - "gender": 0, - "id": 4182607, - "known_for_department": "Acting", - "name": "Cristian Liberti", - "original_name": "Cristian Liberti", - "popularity": 0.6, - "profile_path": null, - "cast_id": 726, - "character": "Dancer", - "credit_id": "64c201af097c49013a31d8f1", - "order": 127 - }, - { - "adult": false, - "gender": 0, - "id": 4182609, - "known_for_department": "Acting", - "name": "Prodromos Marneros", - "original_name": "Prodromos Marneros", - "popularity": 0.6, - "profile_path": null, - "cast_id": 727, - "character": "Dancer", - "credit_id": "64c201c0ede1b000c8bd356f", - "order": 128 - }, - { - "adult": false, - "gender": 0, - "id": 4182610, - "known_for_department": "Acting", - "name": "Nahum McLean", - "original_name": "Nahum McLean", - "popularity": 0.84, - "profile_path": null, - "cast_id": 728, - "character": "Dancer", - "credit_id": "64c201cb1cfe3a0eb5e9f042", - "order": 129 - }, - { - "adult": false, - "gender": 0, - "id": 3235100, - "known_for_department": "Crew", - "name": "Jordan Melchor", - "original_name": "Jordan Melchor", - "popularity": 0.6, - "profile_path": null, - "cast_id": 729, - "character": "Dancer", - "credit_id": "64c201efdb4ed60101a9d7ff", - "order": 130 - }, - { - "adult": false, - "gender": 2, - "id": 2021088, - "known_for_department": "Acting", - "name": "Ramzan Miah", - "original_name": "Ramzan Miah", - "popularity": 1.4, - "profile_path": null, - "cast_id": 730, - "character": "Dancer", - "credit_id": "64c201fadb4ed600aeb069d7", - "order": 131 - }, - { - "adult": false, - "gender": 0, - "id": 4182613, - "known_for_department": "Acting", - "name": "Andy Monaghan", - "original_name": "Andy Monaghan", - "popularity": 0.6, - "profile_path": null, - "cast_id": 731, - "character": "Dancer", - "credit_id": "64c202042f1be0012d9192ac", - "order": 132 - }, - { - "adult": false, - "gender": 0, - "id": 4182615, - "known_for_department": "Acting", - "name": "Florivaldo Mossi", - "original_name": "Florivaldo Mossi", - "popularity": 0.828, - "profile_path": null, - "cast_id": 732, - "character": "Dancer", - "credit_id": "64c2020fdb4ed6013bf3abe6", - "order": 133 - }, - { - "adult": false, - "gender": 0, - "id": 4182616, - "known_for_department": "Acting", - "name": "Hannah Nazareth", - "original_name": "Hannah Nazareth", - "popularity": 0.6, - "profile_path": null, - "cast_id": 733, - "character": "Dancer", - "credit_id": "64c20221df86a80106370451", - "order": 134 - }, - { - "adult": false, - "gender": 0, - "id": 4182619, - "known_for_department": "Acting", - "name": "Grant Neal", - "original_name": "Grant Neal", - "popularity": 0.6, - "profile_path": null, - "cast_id": 734, - "character": "Dancer", - "credit_id": "64c20255097c49011d832fd9", - "order": 135 - }, - { - "adult": false, - "gender": 0, - "id": 4182620, - "known_for_department": "Acting", - "name": "Freja Nicole", - "original_name": "Freja Nicole", - "popularity": 0.6, - "profile_path": null, - "cast_id": 735, - "character": "Dancer", - "credit_id": "64c202601cfe3a0eb4299434", - "order": 136 - }, - { - "adult": false, - "gender": 0, - "id": 4182622, - "known_for_department": "Acting", - "name": "Shaun Niles", - "original_name": "Shaun Niles", - "popularity": 0.6, - "profile_path": null, - "cast_id": 736, - "character": "Dancer", - "credit_id": "64c20269ede1b00102455fbd", - "order": 137 - }, - { - "adult": false, - "gender": 0, - "id": 4182623, - "known_for_department": "Acting", - "name": "Ella Nonini", - "original_name": "Ella Nonini", - "popularity": 0.6, - "profile_path": null, - "cast_id": 737, - "character": "Dancer", - "credit_id": "64c20273ede1b00102455fcb", - "order": 138 - }, - { - "adult": false, - "gender": 0, - "id": 4182625, - "known_for_department": "Acting", - "name": "Jack William Parry", - "original_name": "Jack William Parry", - "popularity": 0.6, - "profile_path": null, - "cast_id": 738, - "character": "Dancer", - "credit_id": "64c2032fede1b000af4c94fc", - "order": 139 - }, - { - "adult": false, - "gender": 0, - "id": 4182626, - "known_for_department": "Acting", - "name": "Josie Pocock", - "original_name": "Josie Pocock", - "popularity": 0.6, - "profile_path": null, - "cast_id": 739, - "character": "Dancer", - "credit_id": "64c203392f1be000ca273fe8", - "order": 140 - }, - { - "adult": false, - "gender": 0, - "id": 3404763, - "known_for_department": "Acting", - "name": "Barnaby Quarendon", - "original_name": "Barnaby Quarendon", - "popularity": 0.6, - "profile_path": null, - "cast_id": 740, - "character": "Dancer", - "credit_id": "64c2034a2f1be0014ef62c00", - "order": 141 - }, - { - "adult": false, - "gender": 0, - "id": 2677086, - "known_for_department": "Acting", - "name": "Redmand Rance", - "original_name": "Redmand Rance", - "popularity": 1.38, - "profile_path": null, - "cast_id": 741, - "character": "Dancer", - "credit_id": "64c203e0df86a800e78074f5", - "order": 142 - }, - { - "adult": false, - "gender": 0, - "id": 4182636, - "known_for_department": "Acting", - "name": "Zara Richards", - "original_name": "Zara Richards", - "popularity": 0.6, - "profile_path": null, - "cast_id": 742, - "character": "Dancer", - "credit_id": "64c203f02f1be0012d919360", - "order": 143 - }, - { - "adult": false, - "gender": 0, - "id": 4182638, - "known_for_department": "Acting", - "name": "Liam Riddick", - "original_name": "Liam Riddick", - "popularity": 0.6, - "profile_path": null, - "cast_id": 743, - "character": "Dancer", - "credit_id": "64c20403ede1b000af4c954e", - "order": 144 - }, - { - "adult": false, - "gender": 0, - "id": 4182640, - "known_for_department": "Acting", - "name": "Alana Rixon", - "original_name": "Alana Rixon", - "popularity": 0.6, - "profile_path": null, - "cast_id": 744, - "character": "Dancer", - "credit_id": "64c2040e1cfe3a0eb1cc4a9d", - "order": 145 - }, - { - "adult": false, - "gender": 0, - "id": 4182643, - "known_for_department": "Acting", - "name": "Adam Paul Robertson", - "original_name": "Adam Paul Robertson", - "popularity": 0.6, - "profile_path": null, - "cast_id": 745, - "character": "Dancer", - "credit_id": "64c204192f1be000ca27403e", - "order": 146 - }, - { - "adult": false, - "gender": 0, - "id": 4182647, - "known_for_department": "Acting", - "name": "Kingdom Sibanda", - "original_name": "Kingdom Sibanda", - "popularity": 0.6, - "profile_path": null, - "cast_id": 746, - "character": "Dancer", - "credit_id": "64c2045bdf86a801446c6c3d", - "order": 147 - }, - { - "adult": false, - "gender": 0, - "id": 4182648, - "known_for_department": "Acting", - "name": "Sebastian Skov", - "original_name": "Sebastian Skov", - "popularity": 0.698, - "profile_path": null, - "cast_id": 747, - "character": "Dancer", - "credit_id": "64c204722f1be000ae4c04f4", - "order": 148 - }, - { - "adult": false, - "gender": 0, - "id": 4182649, - "known_for_department": "Acting", - "name": "Aaron J. Smith", - "original_name": "Aaron J. Smith", - "popularity": 0.6, - "profile_path": null, - "cast_id": 748, - "character": "Dancer", - "credit_id": "64c20491fdc14600e2867279", - "order": 149 - }, - { - "adult": false, - "gender": 0, - "id": 4182651, - "known_for_department": "Acting", - "name": "Joshua Smith", - "original_name": "Joshua Smith", - "popularity": 0.6, - "profile_path": null, - "cast_id": 749, - "character": "Dancer", - "credit_id": "64c2049bede1b00102456099", - "order": 150 - }, - { - "adult": false, - "gender": 0, - "id": 4182655, - "known_for_department": "Acting", - "name": "Lucia-Rose Sokolowski", - "original_name": "Lucia-Rose Sokolowski", - "popularity": 0.608, - "profile_path": null, - "cast_id": 750, - "character": "Dancer", - "credit_id": "64c204acdf86a8010637056f", - "order": 151 - }, - { - "adult": false, - "gender": 0, - "id": 4182658, - "known_for_department": "Acting", - "name": "Janine Somcio", - "original_name": "Janine Somcio", - "popularity": 0.6, - "profile_path": null, - "cast_id": 751, - "character": "Dancer", - "credit_id": "64c204cbfdc14600e2867291", - "order": 152 - }, - { - "adult": false, - "gender": 0, - "id": 3563416, - "known_for_department": "Acting", - "name": "Callum Sterling", - "original_name": "Callum Sterling", - "popularity": 0.6, - "profile_path": null, - "cast_id": 752, - "character": "Dancer", - "credit_id": "64c205112f1be000ebd5c986", - "order": 153 - }, - { - "adult": false, - "gender": 0, - "id": 4182665, - "known_for_department": "Acting", - "name": "Todd Talbot", - "original_name": "Todd Talbot", - "popularity": 0.6, - "profile_path": null, - "cast_id": 754, - "character": "Dancer", - "credit_id": "64c2059cdb4ed600e4caafe2", - "order": 154 - }, - { - "adult": false, - "gender": 0, - "id": 4182671, - "known_for_department": "Acting", - "name": "Charles Tatman", - "original_name": "Charles Tatman", - "popularity": 0.6, - "profile_path": null, - "cast_id": 755, - "character": "Dancer", - "credit_id": "64c206e31cfe3a0eb30c4a3b", - "order": 155 - }, - { - "adult": false, - "gender": 0, - "id": 4002388, - "known_for_department": "Acting", - "name": "Grant Thresh", - "original_name": "Grant Thresh", - "popularity": 0.6, - "profile_path": null, - "cast_id": 756, - "character": "Dancer", - "credit_id": "64c206ed097c4900e3f3b36b", - "order": 156 - }, - { - "adult": false, - "gender": 0, - "id": 4182672, - "known_for_department": "Acting", - "name": "Connor Tidman", - "original_name": "Connor Tidman", - "popularity": 0.6, - "profile_path": null, - "cast_id": 757, - "character": "Dancer", - "credit_id": "64c206f9097c49011d83321f", - "order": 157 - }, - { - "adult": false, - "gender": 0, - "id": 4182673, - "known_for_department": "Acting", - "name": "Wahchi Vong", - "original_name": "Wahchi Vong", - "popularity": 0.6, - "profile_path": null, - "cast_id": 758, - "character": "Dancer", - "credit_id": "64c207061cfe3a0eb0a7d6bb", - "order": 158 - }, - { - "adult": false, - "gender": 0, - "id": 4182675, - "known_for_department": "Acting", - "name": "Jerry Wan", - "original_name": "Jerry Wan", - "popularity": 0.6, - "profile_path": null, - "cast_id": 759, - "character": "Dancer", - "credit_id": "64c207352f1be000ca274188", - "order": 159 - }, - { - "adult": false, - "gender": 0, - "id": 2572719, - "known_for_department": "Acting", - "name": "Sasha Wareham", - "original_name": "Sasha Wareham", - "popularity": 0.6, - "profile_path": null, - "cast_id": 760, - "character": "Dancer", - "credit_id": "64c2073fdb4ed60101a9d9ca", - "order": 160 - }, - { - "adult": false, - "gender": 2, - "id": 3129428, - "known_for_department": "Acting", - "name": "Stan West", - "original_name": "Stan West", - "popularity": 0.6, - "profile_path": null, - "cast_id": 761, - "character": "Dancer", - "credit_id": "64c207581cfe3a0eb30c4a6e", - "order": 161 - }, - { - "adult": false, - "gender": 0, - "id": 1462279, - "known_for_department": "Production", - "name": "Oliver Wheeler", - "original_name": "Oliver Wheeler", - "popularity": 0.6, - "profile_path": null, - "cast_id": 762, - "character": "Dancer", - "credit_id": "64c20799097c490100d22aa1", - "order": 162 - }, - { - "adult": false, - "gender": 0, - "id": 4182678, - "known_for_department": "Acting", - "name": "Josh Wild", - "original_name": "Josh Wild", - "popularity": 0.847, - "profile_path": "/2HqD06Ur8hX7BHlDcQmLyrXDqaf.jpg", - "cast_id": 763, - "character": "Dancer", - "credit_id": "64c207a413a3200139f1210a", - "order": 163 - }, - { - "adult": false, - "gender": 0, - "id": 4182680, - "known_for_department": "Acting", - "name": "Joe Wolstenholme", - "original_name": "Joe Wolstenholme", - "popularity": 0.98, - "profile_path": null, - "cast_id": 764, - "character": "Dancer", - "credit_id": "64c207aedf86a800c8e8d7e9", - "order": 164 - }, - { - "adult": false, - "gender": 0, - "id": 4182682, - "known_for_department": "Acting", - "name": "Richard Womersley", - "original_name": "Richard Womersley", - "popularity": 0.6, - "profile_path": null, - "cast_id": 765, - "character": "Dancer", - "credit_id": "64c207b92f1be0014ef62db0", - "order": 165 - }, - { - "adult": false, - "gender": 0, - "id": 4182688, - "known_for_department": "Acting", - "name": "Ashley Young", - "original_name": "Ashley Young", - "popularity": 0.6, - "profile_path": null, - "cast_id": 766, - "character": "Dancer", - "credit_id": "64c2082a13a32000c5332b31", - "order": 166 - }, - { - "adult": false, - "gender": 2, - "id": 2711395, - "known_for_department": "Acting", - "name": "Alex Sturman", - "original_name": "Alex Sturman", - "popularity": 0.6, - "profile_path": null, - "cast_id": 767, - "character": "Dancer", - "credit_id": "64c22fca13a32000ffbf2fe7", - "order": 167 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 275, - "known_for_department": "Camera", - "name": "Rodrigo Prieto", - "original_name": "Rodrigo Prieto", - "popularity": 1.608, - "profile_path": "/5h2U70z7OS5Rb2PdrPpjo35eWCl.jpg", - "credit_id": "63dc32d00cb33500a9183f88", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 2, - "id": 5656, - "known_for_department": "Writing", - "name": "Noah Baumbach", - "original_name": "Noah Baumbach", - "popularity": 5.465, - "profile_path": "/jIeAFowGbCt5OSMI6to00QrIvXN.jpg", - "credit_id": "64a381cfe8d02800ff8ae9c5", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 5656, - "known_for_department": "Writing", - "name": "Noah Baumbach", - "original_name": "Noah Baumbach", - "popularity": 5.465, - "profile_path": "/jIeAFowGbCt5OSMI6to00QrIvXN.jpg", - "credit_id": "5f87d5d32d8ef30037be87c4", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 0, - "id": 9161, - "known_for_department": "Costume & Make-Up", - "name": "Carmel Jackson", - "original_name": "Carmel Jackson", - "popularity": 0.848, - "profile_path": null, - "credit_id": "649f222a3af92900c8f41e91", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 10968, - "known_for_department": "Production", - "name": "David Heyman", - "original_name": "David Heyman", - "popularity": 3.746, - "profile_path": "/m39R6xbVfHfCEO4H0s2Fhwh9mkt.jpg", - "credit_id": "6206016f559d2200ca084411", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 20229, - "known_for_department": "Sound", - "name": "Andy Malcolm", - "original_name": "Andy Malcolm", - "popularity": 1.858, - "profile_path": null, - "credit_id": "649f2031edeb4300c6f7fe24", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 10830, - "known_for_department": "Production", - "name": "Toby Emmerich", - "original_name": "Toby Emmerich", - "popularity": 2.314, - "profile_path": "/mfkHPnmazcxDcjyVovNPzhUX1JN.jpg", - "credit_id": "643357679a6435068948bcf8", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 23424, - "known_for_department": "Production", - "name": "Lucy Bevan", - "original_name": "Lucy Bevan", - "popularity": 1.64, - "profile_path": null, - "credit_id": "62858e67e004a6006609863e", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 0, - "id": 29333, - "known_for_department": "Acting", - "name": "Roy Taylor", - "original_name": "Roy Taylor", - "popularity": 0.721, - "profile_path": "/eac87ztd0AcxBLvJPsCoNsvOzVc.jpg", - "credit_id": "62d34cf9d399e6004e722d01", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 30614, - "known_for_department": "Acting", - "name": "Ryan Gosling", - "original_name": "Ryan Gosling", - "popularity": 60.054, - "profile_path": "/lyUyVARQKhGxaxy0FbPJCQRpiaW.jpg", - "credit_id": "64a6ecc02b531d00c9a74514", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 1, - "id": 36591, - "known_for_department": "Costume & Make-Up", - "name": "Jacqueline Durran", - "original_name": "Jacqueline Durran", - "popularity": 3.821, - "profile_path": "/5aJTWqO5nZ8JSbLU5TxaACii8Tl.jpg", - "credit_id": "639e22589bcd0f00b4e938e3", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 1, - "id": 36656, - "known_for_department": "Art", - "name": "Sarah Greenwood", - "original_name": "Sarah Greenwood", - "popularity": 2.818, - "profile_path": "/3mCY4fv9z7EdpVH09qcA2dflIcD.jpg", - "credit_id": "626450c51f33190050972742", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 1, - "id": 36658, - "known_for_department": "Art", - "name": "Katie Spencer", - "original_name": "Katie Spencer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62858e9df5c8240066e7c215", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 1, - "id": 41080, - "known_for_department": "Production", - "name": "Allison Jones", - "original_name": "Allison Jones", - "popularity": 1.182, - "profile_path": "/d0Kk5DHy2dtoxwX7IelactzN0Hw.jpg", - "credit_id": "62858e7bcee4810d70a3d3b2", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 1, - "id": 45400, - "known_for_department": "Acting", - "name": "Greta Gerwig", - "original_name": "Greta Gerwig", - "popularity": 10.258, - "profile_path": "/3H0xzU12GTNJyQTpGysEuI9KyiQ.jpg", - "credit_id": "5f87d5b52385130036355b3a", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 1, - "id": 45400, - "known_for_department": "Acting", - "name": "Greta Gerwig", - "original_name": "Greta Gerwig", - "popularity": 10.258, - "profile_path": "/3H0xzU12GTNJyQTpGysEuI9KyiQ.jpg", - "credit_id": "64a381b911386c00c5916a36", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 45400, - "known_for_department": "Acting", - "name": "Greta Gerwig", - "original_name": "Greta Gerwig", - "popularity": 10.258, - "profile_path": "/3H0xzU12GTNJyQTpGysEuI9KyiQ.jpg", - "credit_id": "5f88a2df8258fc0034b05f7c", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 2, - "id": 77071, - "known_for_department": "Acting", - "name": "Mark Ronson", - "original_name": "Mark Ronson", - "popularity": 2.279, - "profile_path": "/2xmMlZ7LLlojzSMqNVzwqB5YEsd.jpg", - "credit_id": "648ef98942bf010101befc8d", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 1, - "id": 59700, - "known_for_department": "Production", - "name": "Robbie Brenner", - "original_name": "Robbie Brenner", - "popularity": 0.943, - "profile_path": null, - "credit_id": "61f48be9c5ada500cd9344c3", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 1, - "id": 60268, - "known_for_department": "Production", - "name": "Julia Pistor", - "original_name": "Julia Pistor", - "popularity": 1.4, - "profile_path": null, - "credit_id": "62858e12f10a1a009db13141", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 92491, - "known_for_department": "Crew", - "name": "Danny Downey", - "original_name": "Danny Downey", - "popularity": 2.737, - "profile_path": "/3yNkzbFoKGVleRwvNucvtG0GEK7.jpg", - "credit_id": "642c65bec0a30800f2e3804e", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 1, - "id": 77687, - "known_for_department": "Production", - "name": "Olivia Grant", - "original_name": "Olivia Grant", - "popularity": 1.783, - "profile_path": null, - "credit_id": "62d35208278d8a00540e44b2", - "department": "Production", - "job": "Casting Associate" - }, - { - "adult": false, - "gender": 1, - "id": 102990, - "known_for_department": "Directing", - "name": "Sarah Townsend", - "original_name": "Sarah Townsend", - "popularity": 1.468, - "profile_path": "/rKLbtREIMw3nX57o2YrnP7xU35Q.jpg", - "credit_id": "63c8bfbfc5c1ef00825b64ba", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 2, - "id": 161159, - "known_for_department": "Acting", - "name": "Dale Robinette", - "original_name": "Dale Robinette", - "popularity": 4.285, - "profile_path": "/lFDsZxKkaM8TsD2vmFN4vugHnv6.jpg", - "credit_id": "63cb6b76ea394900969deb29", - "department": "Camera", - "job": "Still Photographer" - }, - { - "adult": false, - "gender": 1, - "id": 234352, - "known_for_department": "Acting", - "name": "Margot Robbie", - "original_name": "Margot Robbie", - "popularity": 65.539, - "profile_path": "/euDPyqLnuwaWMHajcU3oZ9uZezR.jpg", - "credit_id": "5d2cd8133c887d00104fd329", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 588604, - "known_for_department": "Production", - "name": "Jo Beckett", - "original_name": "Jo Beckett", - "popularity": 1.048, - "profile_path": null, - "credit_id": "62d3519153f8330401f51171", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 968660, - "known_for_department": "Acting", - "name": "Nicki Minaj", - "original_name": "Nicki Minaj", - "popularity": 10.027, - "profile_path": "/xCD8pp9Y7hOe5hx9V9QhLeDQnkp.jpg", - "credit_id": "648edf8bc3c891014ebe235e", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 2, - "id": 972623, - "known_for_department": "Art", - "name": "Dean Clegg", - "original_name": "Dean Clegg", - "popularity": 3.58, - "profile_path": null, - "credit_id": "62d3471c158c85029e9b10eb", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1032067, - "known_for_department": "Visual Effects", - "name": "Mark Holt", - "original_name": "Mark Holt", - "popularity": 1.035, - "profile_path": null, - "credit_id": "62d34a0eafa1b0004c495edb", - "department": "Visual Effects", - "job": "Special Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1081074, - "known_for_department": "Crew", - "name": "George Cottle", - "original_name": "George Cottle", - "popularity": 2.15, - "profile_path": "/jwQmBfZCJk7V9W96r7fXo3JGyMs.jpg", - "credit_id": "63c8bbc1c5c1ef00bd9a8ea9", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 2, - "id": 1127893, - "known_for_department": "Directing", - "name": "Josh Robertson", - "original_name": "Josh Robertson", - "popularity": 2.81, - "profile_path": null, - "credit_id": "62d70ce41283e9004bccc550", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 2, - "id": 1192700, - "known_for_department": "Sound", - "name": "George Drakoulias", - "original_name": "George Drakoulias", - "popularity": 3.157, - "profile_path": "/7oiF0TXUhNQRsugEkmwsOQyik0V.jpg", - "credit_id": "643357b99a643506ab790972", - "department": "Sound", - "job": "Music Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1193622, - "known_for_department": "Camera", - "name": "Atsushi Nishijima", - "original_name": "Atsushi Nishijima", - "popularity": 1.4, - "profile_path": null, - "credit_id": "63cb6a906d97e600b74d10a7", - "department": "Camera", - "job": "Still Photographer" - }, - { - "adult": false, - "gender": 1, - "id": 1268074, - "known_for_department": "Crew", - "name": "Alice Ford", - "original_name": "Alice Ford", - "popularity": 1.4, - "profile_path": null, - "credit_id": "642c65e8ac8e6b33d8d89e23", - "department": "Crew", - "job": "Utility Stunts" - }, - { - "adult": false, - "gender": 1, - "id": 1319120, - "known_for_department": "Costume & Make-Up", - "name": "Charlotte Finlay", - "original_name": "Charlotte Finlay", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f2152858678012d769df8", - "department": "Costume & Make-Up", - "job": "Costume Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 1319627, - "known_for_department": "Production", - "name": "Beth Timbrell", - "original_name": "Beth Timbrell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63c8bae6abdec000e214055f", - "department": "Production", - "job": "Unit Production Manager" - }, - { - "adult": false, - "gender": 2, - "id": 1327142, - "known_for_department": "Art", - "name": "Joe Howard", - "original_name": "Joe Howard", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62d346c653f8330401f50d15", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1332186, - "known_for_department": "Costume & Make-Up", - "name": "Ivana Primorac", - "original_name": "Ivana Primorac", - "popularity": 2.278, - "profile_path": null, - "credit_id": "64cc04bf764b990100899f2d", - "department": "Costume & Make-Up", - "job": "Hair Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1332186, - "known_for_department": "Costume & Make-Up", - "name": "Ivana Primorac", - "original_name": "Ivana Primorac", - "popularity": 2.278, - "profile_path": null, - "credit_id": "64cc04ba43cd5400c526c973", - "department": "Costume & Make-Up", - "job": "Makeup Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1338372, - "known_for_department": "Sound", - "name": "Dan O'Connell", - "original_name": "Dan O'Connell", - "popularity": 1.722, - "profile_path": "/4AjIlClDijH3iYgXygHEcVZtTzi.jpg", - "credit_id": "649f2049d6590b00c469572f", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1340767, - "known_for_department": "Sound", - "name": "Brian Bowles", - "original_name": "Brian Bowles", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f21113af929010687b3b3", - "department": "Sound", - "job": "ADR Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1363079, - "known_for_department": "Production", - "name": "Tom Ackerley", - "original_name": "Tom Ackerley", - "popularity": 8.882, - "profile_path": "/1oMM60nZYnNrrg0BskREjt1FcRP.jpg", - "credit_id": "5d2cd836bf0f630011650a4c", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 1, - "id": 1367494, - "known_for_department": "Sound", - "name": "Ai-Ling Lee", - "original_name": "Ai-Ling Lee", - "popularity": 0.792, - "profile_path": null, - "credit_id": "649f2024edeb4300e3db61bd", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 1, - "id": 1367494, - "known_for_department": "Sound", - "name": "Ai-Ling Lee", - "original_name": "Ai-Ling Lee", - "popularity": 0.792, - "profile_path": null, - "credit_id": "649f2017858678012d769d98", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 1, - "id": 1367494, - "known_for_department": "Sound", - "name": "Ai-Ling Lee", - "original_name": "Ai-Ling Lee", - "popularity": 0.792, - "profile_path": null, - "credit_id": "649f201e6f6a99011d89f28d", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1367821, - "known_for_department": "Visual Effects", - "name": "François Dumoulin", - "original_name": "François Dumoulin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb5a5e9a6435008def217f", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1373701, - "known_for_department": "Art", - "name": "Jordana Finkel", - "original_name": "Jordana Finkel", - "popularity": 1.491, - "profile_path": null, - "credit_id": "62d3468e278d8a004c0a9189", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 1378171, - "known_for_department": "Sound", - "name": "Kevin O’Connell", - "original_name": "Kevin O’Connell", - "popularity": 0.721, - "profile_path": null, - "credit_id": "649f205585867800ae43d2b7", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1393448, - "known_for_department": "Camera", - "name": "Jaap Buitendijk", - "original_name": "Jaap Buitendijk", - "popularity": 0.661, - "profile_path": null, - "credit_id": "62d70c7203bf84004def0c6e", - "department": "Camera", - "job": "Still Photographer" - }, - { - "adult": false, - "gender": 2, - "id": 1394119, - "known_for_department": "Art", - "name": "David Doran", - "original_name": "David Doran", - "popularity": 1.4, - "profile_path": null, - "credit_id": "62d346706eecee067d95256c", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1426331, - "known_for_department": "Visual Effects", - "name": "Glen Pratt", - "original_name": "Glen Pratt", - "popularity": 0.6, - "profile_path": null, - "credit_id": "643357aa9a6435065eae04df", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1430498, - "known_for_department": "Lighting", - "name": "Lee Walters", - "original_name": "Lee Walters", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb6cf69a6435008def29e3", - "department": "Lighting", - "job": "Gaffer" - }, - { - "adult": false, - "gender": 2, - "id": 1445583, - "known_for_department": "Crew", - "name": "Adam Hart", - "original_name": "Adam Hart", - "popularity": 0.757, - "profile_path": "/lVQreqn2sL33TgPlqY12YymQ3e8.jpg", - "credit_id": "642c661b01b1ca0113cd461e", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 1, - "id": 1455294, - "known_for_department": "Costume & Make-Up", - "name": "Hope Slepak", - "original_name": "Hope Slepak", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62d34e6b378062049e387c53", - "department": "Costume & Make-Up", - "job": "Costume Supervisor" - }, - { - "adult": false, - "gender": 3, - "id": 1459321, - "known_for_department": "Acting", - "name": "Sam Smith", - "original_name": "Sam Smith", - "popularity": 3.504, - "profile_path": "/kNKDEhydDhLmjsoEbAaWrVzTQc0.jpg", - "credit_id": "64bee591ac6c7908df4d8ace", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 1459856, - "known_for_department": "Costume & Make-Up", - "name": "Robb Crafer", - "original_name": "Robb Crafer", - "popularity": 1.761, - "profile_path": null, - "credit_id": "62d34784afa1b0004f352777", - "department": "Costume & Make-Up", - "job": "Hair Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1459856, - "known_for_department": "Costume & Make-Up", - "name": "Robb Crafer", - "original_name": "Robb Crafer", - "popularity": 1.761, - "profile_path": null, - "credit_id": "63c8b6d1abdec000ae24b67b", - "department": "Costume & Make-Up", - "job": "Makeup Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 1463658, - "known_for_department": "Crew", - "name": "Hannah Betts", - "original_name": "Hannah Betts", - "popularity": 0.753, - "profile_path": null, - "credit_id": "642c65868de0ae00f4c1e16e", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 1, - "id": 1463661, - "known_for_department": "Crew", - "name": "Whitney Coleman", - "original_name": "Whitney Coleman", - "popularity": 2.359, - "profile_path": "/e6MyQLNmQUgIIoyJH5s4eGxVUF6.jpg", - "credit_id": "642c65aad100b60098e75265", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 1476518, - "known_for_department": "Art", - "name": "Tamara Catlin-Birch", - "original_name": "Tamara Catlin-Birch", - "popularity": 0.61, - "profile_path": null, - "credit_id": "63ca579703f0b60079046877", - "department": "Art", - "job": "Art Department Coordinator" - }, - { - "adult": false, - "gender": 1, - "id": 1529997, - "known_for_department": "Acting", - "name": "Charli XCX", - "original_name": "Charli XCX", - "popularity": 8.025, - "profile_path": "/ybCqkGMLxigViWZxkAR0BbCYaC6.jpg", - "credit_id": "648edf80c3c89100ae51604a", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 1532735, - "known_for_department": "Costume & Make-Up", - "name": "Marie Larkin", - "original_name": "Marie Larkin", - "popularity": 1.4, - "profile_path": null, - "credit_id": "62d347a62d1e40004ecdba76", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 1, - "id": 1545915, - "known_for_department": "Costume & Make-Up", - "name": "Laura Bailey", - "original_name": "Laura Bailey", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb6ec7d363e50079c169e7", - "department": "Costume & Make-Up", - "job": "Principal Costumer" - }, - { - "adult": false, - "gender": 2, - "id": 1550235, - "known_for_department": "Sound", - "name": "Robert Sharman", - "original_name": "Robert Sharman", - "popularity": 1.579, - "profile_path": null, - "credit_id": "62d348f82d1e4000560c07fc", - "department": "Sound", - "job": "Sound Mixer" - }, - { - "adult": false, - "gender": 1, - "id": 1550831, - "known_for_department": "Acting", - "name": "Lauren Shaw", - "original_name": "Lauren Shaw", - "popularity": 5.488, - "profile_path": "/sQ9lph00dpFhDTsh8ST7QhqMV3k.jpg", - "credit_id": "642c6737d100b60114c10d51", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 1551811, - "known_for_department": "Art", - "name": "Hugh McClelland", - "original_name": "Hugh McClelland", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62d346e3afa1b00067c39005", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1570045, - "known_for_department": "Costume & Make-Up", - "name": "Samantha Kininmonth", - "original_name": "Samantha Kininmonth", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f221e3af92900c8f41e78", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1576849, - "known_for_department": "Sound", - "name": "Dan Kenyon", - "original_name": "Dan Kenyon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f200b3af9290144f0bdd9", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1576849, - "known_for_department": "Sound", - "name": "Dan Kenyon", - "original_name": "Dan Kenyon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f20033af929010687b362", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 1, - "id": 1585171, - "known_for_department": "Acting", - "name": "Devyn LaBella", - "original_name": "Devyn LaBella", - "popularity": 3.28, - "profile_path": "/7htDHCPITciBA52Be1lBmld4AN9.jpg", - "credit_id": "642c669f8b959e00b6007ce8", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1606177, - "known_for_department": "Costume & Make-Up", - "name": "Sarah Downes", - "original_name": "Sarah Downes", - "popularity": 1.02, - "profile_path": null, - "credit_id": "649f22388d52c900eb4a7469", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 1, - "id": 1661465, - "known_for_department": "Acting", - "name": "Lizzo", - "original_name": "Lizzo", - "popularity": 3.382, - "profile_path": "/wYPEw07PGNht66ziBEuF4DoArQj.jpg", - "credit_id": "64bee5a358efd3013954b633", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 1, - "id": 1671065, - "known_for_department": "Production", - "name": "Kerri Smeltzer", - "original_name": "Kerri Smeltzer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62d348269f51af004f8f62d6", - "department": "Production", - "job": "Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1721453, - "known_for_department": "Crew", - "name": "Angelica O'Brien", - "original_name": "Angelica O'Brien", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb62c7e24b9300cdf8a3f1", - "department": "Crew", - "job": "Visual Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1723161, - "known_for_department": "Crew", - "name": "Holland Diaz", - "original_name": "Holland Diaz", - "popularity": 1.445, - "profile_path": null, - "credit_id": "642c65b48de0ae01135129eb", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1726512, - "known_for_department": "Production", - "name": "Courtenay Valenti", - "original_name": "Courtenay Valenti", - "popularity": 1.697, - "profile_path": null, - "credit_id": "6433575c391b9c00b6aec1ff", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 1737667, - "known_for_department": "Production", - "name": "Cate Adams", - "original_name": "Cate Adams", - "popularity": 1.002, - "profile_path": null, - "credit_id": "64335775e92d8300b6e541a2", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 1741366, - "known_for_department": "Acting", - "name": "Este Haim", - "original_name": "Este Haim", - "popularity": 2.229, - "profile_path": "/yGXIdcyTqm577PMQthA1EdiHlv3.jpg", - "credit_id": "64c3910443250f00c99fbd33", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 1, - "id": 1741367, - "known_for_department": "Acting", - "name": "Alana Haim", - "original_name": "Alana Haim", - "popularity": 7.429, - "profile_path": "/uOU4uueRxH5BYhzNjzPxJOxZStJ.jpg", - "credit_id": "64c390fbec370c011c469537", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 1, - "id": 1741368, - "known_for_department": "Acting", - "name": "Danielle Haim", - "original_name": "Danielle Haim", - "popularity": 3.991, - "profile_path": "/hvDVZHgafVuRbzbvktHHYPXLQIr.jpg", - "credit_id": "64c390f4028f1401524130ae", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 2, - "id": 1743134, - "known_for_department": "Acting", - "name": "Chris Reid", - "original_name": "Chris Reid", - "popularity": 6.915, - "profile_path": "/yvo81AU4zUKbcNtWEQjaSTvLTPS.jpg", - "credit_id": "642c67108b959e0113026d7d", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 1, - "id": 1746962, - "known_for_department": "Acting", - "name": "Brionna Maria Lynch", - "original_name": "Brionna Maria Lynch", - "popularity": 0.608, - "profile_path": "/oubWBxqYlA0TsQdY3mGlTGNghDW.jpg", - "credit_id": "642c66aa9cc67b05bf709ad8", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 2, - "id": 1747978, - "known_for_department": "Sound", - "name": "Kevin Schultz", - "original_name": "Kevin Schultz", - "popularity": 1.312, - "profile_path": null, - "credit_id": "649f2063edeb4300c6f7fe37", - "department": "Sound", - "job": "Foley Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1770975, - "known_for_department": "Costume & Make-Up", - "name": "Michelle Chong", - "original_name": "Michelle Chong", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f214385867800ae43d310", - "department": "Costume & Make-Up", - "job": "Set Costumer" - }, - { - "adult": false, - "gender": 0, - "id": 1784562, - "known_for_department": "Art", - "name": "Lorna Houlihan", - "original_name": "Lorna Houlihan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f20b485867800ebb60de4", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 1789391, - "known_for_department": "Sound", - "name": "Bálint Csáki", - "original_name": "Bálint Csáki", - "popularity": 0.919, - "profile_path": null, - "credit_id": "63c9cb6903f0b600b91d8f5e", - "department": "Sound", - "job": "Boom Operator" - }, - { - "adult": false, - "gender": 0, - "id": 1789973, - "known_for_department": "Crew", - "name": "Kye Mckee", - "original_name": "Kye Mckee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "642c66cf8b959e0113026d6a", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 1790904, - "known_for_department": "Art", - "name": "Laura Miller", - "original_name": "Laura Miller", - "popularity": 0.708, - "profile_path": null, - "credit_id": "649f20dcd6590b0138c4acd6", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 1809715, - "known_for_department": "Crew", - "name": "Donny Bailey", - "original_name": "Donny Bailey", - "popularity": 0.652, - "profile_path": null, - "credit_id": "642c65726e44bf00b4763538", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 1813931, - "known_for_department": "Directing", - "name": "Danni Lizaitis", - "original_name": "Danni Lizaitis", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62d70cb21c635b0050893803", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 1824242, - "known_for_department": "Art", - "name": "Clara Gomez del Moral", - "original_name": "Clara Gomez del Moral", - "popularity": 0.84, - "profile_path": null, - "credit_id": "62d346abd399e6004e722ac8", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 1, - "id": 1826944, - "known_for_department": "Crew", - "name": "Marie Fink", - "original_name": "Marie Fink", - "popularity": 0.782, - "profile_path": "/d59Gg9ZzMhq3cmoJczHNrcY7YUX.jpg", - "credit_id": "642c65ded100b60098e75273", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 2, - "id": 1832144, - "known_for_department": "Editing", - "name": "Nick Houy", - "original_name": "Nick Houy", - "popularity": 1.4, - "profile_path": "/tEBVPxfADgINL6lGbxnX5DtJwwe.jpg", - "credit_id": "642c9ff2c04429026b14cc78", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1835175, - "known_for_department": "Crew", - "name": "Nick Irving Allen", - "original_name": "Nick Irving Allen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb5875ea39490084d482ee", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1908039, - "known_for_department": "Production", - "name": "Josey McNamara", - "original_name": "Josey McNamara", - "popularity": 1.204, - "profile_path": null, - "credit_id": "61f48c01cedac4011b8ee939", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1915138, - "known_for_department": "Visual Effects", - "name": "Nick King", - "original_name": "Nick King", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb5b64cee481008efe3977", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1915698, - "known_for_department": "Camera", - "name": "Chris Bain", - "original_name": "Chris Bain", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb65c709dda400c0e2e62e", - "department": "Camera", - "job": "Steadicam Operator" - }, - { - "adult": false, - "gender": 0, - "id": 1917355, - "known_for_department": "Lighting", - "name": "Jason Blaise Cunningham", - "original_name": "Jason Blaise Cunningham", - "popularity": 0.84, - "profile_path": null, - "credit_id": "63cb6704ea394900812901d3", - "department": "Camera", - "job": "Key Grip" - }, - { - "adult": false, - "gender": 0, - "id": 1919777, - "known_for_department": "Sound", - "name": "Steve Hancock", - "original_name": "Steve Hancock", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62d34943278d8a004fdb5404", - "department": "Sound", - "job": "Boom Operator" - }, - { - "adult": false, - "gender": 1, - "id": 1920595, - "known_for_department": "Production", - "name": "Emily Buntyn", - "original_name": "Emily Buntyn", - "popularity": 0.706, - "profile_path": null, - "credit_id": "62d35225afa1b0004c496221", - "department": "Production", - "job": "Casting Associate" - }, - { - "adult": false, - "gender": 1, - "id": 1931805, - "known_for_department": "Acting", - "name": "KAROL G", - "original_name": "KAROL G", - "popularity": 0.74, - "profile_path": "/4NJcr9XeLWTVnOLvrPdon5CZhaT.jpg", - "credit_id": "64bee5dfe9da69014fecd3bd", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 2, - "id": 1944968, - "known_for_department": "Acting", - "name": "Khalid", - "original_name": "Khalid", - "popularity": 1.791, - "profile_path": "/hYJmbngSOvq1fqhKB8e0qyHPAe2.jpg", - "credit_id": "64bee5ae0ed2ab00e2db8b52", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 1, - "id": 1959397, - "known_for_department": "Acting", - "name": "Dua Lipa", - "original_name": "Dua Lipa", - "popularity": 4.561, - "profile_path": "/82ZEdOoWZcRQbOawXbZ1EDTO85K.jpg", - "credit_id": "648ee77a263462012d4a9c3f", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 1, - "id": 1977248, - "known_for_department": "Crew", - "name": "Miluette Nalin", - "original_name": "Miluette Nalin", - "popularity": 1.708, - "profile_path": "/fRbBzoDfG8UrSXOKft2njgifegy.jpg", - "credit_id": "642c66e4d100b600f58c35af", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 2, - "id": 1994376, - "known_for_department": "Production", - "name": "Michael B. Johnson", - "original_name": "Michael B. Johnson", - "popularity": 0.727, - "profile_path": "/rU1648PRHaCLPsU4x1ICbpvpsgs.jpg", - "credit_id": "642c6634ac8e6b340333981a", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 1, - "id": 2010488, - "known_for_department": "Crew", - "name": "Lucy Thompson", - "original_name": "Lucy Thompson", - "popularity": 0.84, - "profile_path": null, - "credit_id": "62d34a51f90b19004cb8a90b", - "department": "Crew", - "job": "Special Effects Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 2019888, - "known_for_department": "Costume & Make-Up", - "name": "Melanie Young", - "original_name": "Melanie Young", - "popularity": 0.656, - "profile_path": null, - "credit_id": "649f22006f6a9900ad57a536", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2047024, - "known_for_department": "Directing", - "name": "Matthew R. Milan", - "original_name": "Matthew R. Milan", - "popularity": 0.692, - "profile_path": null, - "credit_id": "63c8bdf270b44400aecd8a67", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 2058117, - "known_for_department": "Art", - "name": "Steven Morris", - "original_name": "Steven Morris", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cab11703f0b600a0792c23", - "department": "Art", - "job": "Property Master" - }, - { - "adult": false, - "gender": 0, - "id": 2069401, - "known_for_department": "Costume & Make-Up", - "name": "Jimmy Kenney", - "original_name": "Jimmy Kenney", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f216f3af9290125394c45", - "department": "Costume & Make-Up", - "job": "Set Costumer" - }, - { - "adult": false, - "gender": 2, - "id": 2085220, - "known_for_department": "Camera", - "name": "John Sorapure", - "original_name": "John Sorapure", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63c8bf0e70b444008743e69f", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 0, - "id": 2110965, - "known_for_department": "Costume & Make-Up", - "name": "Melanie Ghisays", - "original_name": "Melanie Ghisays", - "popularity": 0.84, - "profile_path": null, - "credit_id": "62d34e336eecee067e4a9504", - "department": "Costume & Make-Up", - "job": "Key Costumer" - }, - { - "adult": false, - "gender": 0, - "id": 2121850, - "known_for_department": "Camera", - "name": "David Tulett", - "original_name": "David Tulett", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb6c996d97e6007c9d41e0", - "department": "Camera", - "job": "Libra Head Technician" - }, - { - "adult": false, - "gender": 0, - "id": 2123450, - "known_for_department": "Crew", - "name": "Sam Perez", - "original_name": "Sam Perez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb5747e24b93009b9c548f", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 0, - "id": 2124403, - "known_for_department": "Art", - "name": "Gordon Stotz", - "original_name": "Gordon Stotz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62d34701cf62cd004cb2d79b", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 2144111, - "known_for_department": "Crew", - "name": "Owen Jackson", - "original_name": "Owen Jackson", - "popularity": 0.84, - "profile_path": null, - "credit_id": "63cb5af2d363e500ba7827ee", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 2144664, - "known_for_department": "Production", - "name": "Richard Dickson", - "original_name": "Richard Dickson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "5bba5c9a0e0a2634f903341a", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2146988, - "known_for_department": "Production", - "name": "Craig Jamieson", - "original_name": "Craig Jamieson", - "popularity": 0.629, - "profile_path": null, - "credit_id": "62d34860dd731b004f08f094", - "department": "Production", - "job": "Production Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2147627, - "known_for_department": "Lighting", - "name": "Manny Tapia", - "original_name": "Manny Tapia", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb6c65d363e5008e8e9091", - "department": "Lighting", - "job": "Gaffer" - }, - { - "adult": false, - "gender": 0, - "id": 2176989, - "known_for_department": "Sound", - "name": "Chelsea Body", - "original_name": "Chelsea Body", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f1ff0edeb4300aec434e5", - "department": "Sound", - "job": "Foley Mixer" - }, - { - "adult": false, - "gender": 1, - "id": 2190487, - "known_for_department": "Art", - "name": "Ashley Swanson", - "original_name": "Ashley Swanson", - "popularity": 0.603, - "profile_path": null, - "credit_id": "63c8b51f70b44400aecd84ee", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 2, - "id": 2238791, - "known_for_department": "Crew", - "name": "Aldonio Danny Frietas", - "original_name": "Aldonio Danny Frietas", - "popularity": 0.6, - "profile_path": null, - "credit_id": "642c65f4c0a30800b43c4bbb", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 2261974, - "known_for_department": "Acting", - "name": "Kevin Parker", - "original_name": "Kevin Parker", - "popularity": 2.081, - "profile_path": "/pJzgpxdlgYbwezmbzHfsFyjoxj5.jpg", - "credit_id": "64c390aeaf6e94013a52e960", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 2341402, - "known_for_department": "Costume & Make-Up", - "name": "Naomi Tolan", - "original_name": "Naomi Tolan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f220dedeb4300c6f7fec5", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2362590, - "known_for_department": "Production", - "name": "Ynon Kreiz", - "original_name": "Ynon Kreiz", - "popularity": 0.98, - "profile_path": null, - "credit_id": "61f48c155f6c49008b820967", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2399179, - "known_for_department": "Production", - "name": "Michael Sharp", - "original_name": "Michael Sharp", - "popularity": 0.715, - "profile_path": null, - "credit_id": "62858e410d5d854560e812b4", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2399179, - "known_for_department": "Production", - "name": "Michael Sharp", - "original_name": "Michael Sharp", - "popularity": 0.715, - "profile_path": null, - "credit_id": "63c8bb04abdec000c87fb08e", - "department": "Production", - "job": "Unit Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 2399181, - "known_for_department": "Directing", - "name": "David Keadell", - "original_name": "David Keadell", - "popularity": 0.696, - "profile_path": null, - "credit_id": "62d70c9877e1f600558b56b2", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 1, - "id": 2413513, - "known_for_department": "Acting", - "name": "Billie Eilish", - "original_name": "Billie Eilish", - "popularity": 8.577, - "profile_path": "/gpJSDIUsVFVSeCxbsC7w40X7K4f.jpg", - "credit_id": "64a6ec8ccae632013c6b092f", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 2424193, - "known_for_department": "Costume & Make-Up", - "name": "Kat Ali", - "original_name": "Kat Ali", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f2252edeb4300e3db6298", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2507636, - "known_for_department": "Camera", - "name": "Jordan Stossel", - "original_name": "Jordan Stossel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f21d53af92900e7fbc31a", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 1, - "id": 2544588, - "known_for_department": "Crew", - "name": "Ingrid Kleinig", - "original_name": "Ingrid Kleinig", - "popularity": 0.82, - "profile_path": "/jub7l33ZvhQ2vET0Az5QXb0oStq.jpg", - "credit_id": "62d34bfadd731b0054ebc90e", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 2544913, - "known_for_department": "Visual Effects", - "name": "Erin Hewitt", - "original_name": "Erin Hewitt", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb5aa76d97e60081fe8fdb", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2578165, - "known_for_department": "Crew", - "name": "Anthony Genova", - "original_name": "Anthony Genova", - "popularity": 0.6, - "profile_path": null, - "credit_id": "642c66019cc67b05bf709aaf", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2600733, - "known_for_department": "Acting", - "name": "Nina Rice", - "original_name": "Nina Rice", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62d348e02d1e40004ecdbae4", - "department": "Sound", - "job": "Sound Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 2622610, - "known_for_department": "Directing", - "name": "Aisling Hughes", - "original_name": "Aisling Hughes", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62d351bd91745b004cbab15b", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2626964, - "known_for_department": "Crew", - "name": "Derek Johnson", - "original_name": "Derek Johnson", - "popularity": 1.008, - "profile_path": null, - "credit_id": "642c662a8b959e00775de176", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 2, - "id": 2636803, - "known_for_department": "Crew", - "name": "Travis Fienhage", - "original_name": "Travis Fienhage", - "popularity": 0.6, - "profile_path": null, - "credit_id": "642c65d48de0ae01135129f8", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 2660043, - "known_for_department": "Crew", - "name": "Zoe Tough", - "original_name": "Zoe Tough", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63c8bf96c5c1ef008ae4ec34", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 1, - "id": 2687837, - "known_for_department": "Crew", - "name": "Kristina Baskett", - "original_name": "Kristina Baskett", - "popularity": 0.732, - "profile_path": null, - "credit_id": "642c657dc0a30800774f362d", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 2, - "id": 2711299, - "known_for_department": "Acting", - "name": "Dominic Fike", - "original_name": "Dominic Fike", - "popularity": 2.244, - "profile_path": "/vtuRZff8c3QNKiShMo25z5M5guD.jpg", - "credit_id": "64c38f08af6e9400ae3c8dd0", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 1, - "id": 2728316, - "known_for_department": "Acting", - "name": "Ava Max", - "original_name": "Ava Max", - "popularity": 1.482, - "profile_path": "/tCqydBoubnOme8GLRC2BhhlKVJM.jpg", - "credit_id": "64bee587e9da6900eceb2b67", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 1, - "id": 2750285, - "known_for_department": "Acting", - "name": "Cara Koh", - "original_name": "Cara Koh", - "popularity": 0.608, - "profile_path": "/t1ce7RlRkG8hF5Q6HuNTgrN82bS.jpg", - "credit_id": "642c6695c0442901f003c8ff", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2756166, - "known_for_department": "Crew", - "name": "Chris Naylor", - "original_name": "Chris Naylor", - "popularity": 0.641, - "profile_path": null, - "credit_id": "642c66efc0442902130735fd", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 2812881, - "known_for_department": "Art", - "name": "Jasmine Lean", - "original_name": "Jasmine Lean", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f20cb6f6a99013a89fd09", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 1, - "id": 2856218, - "known_for_department": "Editing", - "name": "Anna Kelman", - "original_name": "Anna Kelman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb5b4ecee481007cdc7019", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2880123, - "known_for_department": "Costume & Make-Up", - "name": "Kirsty Martin", - "original_name": "Kirsty Martin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63c8b89f70b444008743e312", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 0, - "id": 2893439, - "known_for_department": "Crew", - "name": "Peter Treece", - "original_name": "Peter Treece", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62d34aa19f51af0057b89f2b", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 0, - "id": 2899664, - "known_for_department": "Crew", - "name": "Vanessa Rael", - "original_name": "Vanessa Rael", - "popularity": 0.6, - "profile_path": null, - "credit_id": "642c670501b1ca00e3ac16a0", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 1, - "id": 3007411, - "known_for_department": "Crew", - "name": "Jennifer White", - "original_name": "Jennifer White", - "popularity": 0.756, - "profile_path": null, - "credit_id": "64c61a7541aac40fb4363427", - "department": "Crew", - "job": "Choreographer" - }, - { - "adult": false, - "gender": 0, - "id": 3090553, - "known_for_department": "Crew", - "name": "Alex Robinson", - "original_name": "Alex Robinson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62d34a82cf62cd004f2c125b", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 1, - "id": 3104797, - "known_for_department": "Art", - "name": "Trixie Gardner", - "original_name": "Trixie Gardner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f20a86f6a9900e34982a8", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 3124739, - "known_for_department": "Crew", - "name": "Sam Durrani", - "original_name": "Sam Durrani", - "popularity": 0.6, - "profile_path": null, - "credit_id": "642c65c99cc67b059cc5b5cc", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3198665, - "known_for_department": "Acting", - "name": "Troy Castaneda", - "original_name": "Troy Castaneda", - "popularity": 0.63, - "profile_path": null, - "credit_id": "642c65929cc67b05796cd7fd", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 1, - "id": 3200184, - "known_for_department": "Production", - "name": "Lauren Fox", - "original_name": "Lauren Fox", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63c8bc4fc5c1ef008ae4ea69", - "department": "Production", - "job": "Production Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3210016, - "known_for_department": "Crew", - "name": "Cody Mackie", - "original_name": "Cody Mackie", - "popularity": 0.84, - "profile_path": null, - "credit_id": "642c66c3c0a30800b43c4bf4", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3338823, - "known_for_department": "Art", - "name": "Andre Rivera", - "original_name": "Andre Rivera", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f210085867800ae43d2fa", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 1, - "id": 3352762, - "known_for_department": "Crew", - "name": "Nikita Mitchell", - "original_name": "Nikita Mitchell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "642c66d96e44bf00d30ad66e", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 3375786, - "known_for_department": "Camera", - "name": "Jac Hopkins", - "original_name": "Jac Hopkins", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb68c3ea394900afa12016", - "department": "Camera", - "job": "Key Grip" - }, - { - "adult": false, - "gender": 0, - "id": 3491133, - "known_for_department": "Costume & Make-Up", - "name": "Sara Osborn", - "original_name": "Sara Osborn", - "popularity": 0.69, - "profile_path": null, - "credit_id": "63c8b9187a97ab008aca39e6", - "department": "Costume & Make-Up", - "job": "Key Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 3501685, - "known_for_department": "Art", - "name": "Alicia Grace Martin", - "original_name": "Alicia Grace Martin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63caad8468afd600acf5f415", - "department": "Art", - "job": "Graphic Designer" - }, - { - "adult": false, - "gender": 2, - "id": 3544158, - "known_for_department": "Visual Effects", - "name": "Preston Mohr", - "original_name": "Preston Mohr", - "popularity": 0.6, - "profile_path": "/5n10ZmeDq088uQWXOGnjVTTOqws.jpg", - "credit_id": "63cb61896d97e60089efea56", - "department": "Visual Effects", - "job": "Visual Effects Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3582780, - "known_for_department": "Crew", - "name": "Lucy Scarfe", - "original_name": "Lucy Scarfe", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62a2ddd035d1bc5106b6c1fe", - "department": "Crew", - "job": "Stand In" - }, - { - "adult": false, - "gender": 0, - "id": 3674443, - "known_for_department": "Costume & Make-Up", - "name": "Grace Rufin", - "original_name": "Grace Rufin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f2185edeb43011d5f2b85", - "department": "Costume & Make-Up", - "job": "Set Costumer" - }, - { - "adult": false, - "gender": 0, - "id": 3735901, - "known_for_department": "Art", - "name": "Andrew Rafner", - "original_name": "Andrew Rafner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f20ec858678012d769dde", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 3784191, - "known_for_department": "Art", - "name": "Sonia Kasparian", - "original_name": "Sonia Kasparian", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f20beedeb4301006a3cfe", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 1, - "id": 3784466, - "known_for_department": "Sound", - "name": "GAYLE", - "original_name": "GAYLE", - "popularity": 0.6, - "profile_path": "/snBICknQkCh9tv2NiJtFvqbAiaO.jpg", - "credit_id": "64c38f86ec370c00ad51aecc", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 2, - "id": 3874127, - "known_for_department": "Crew", - "name": "Kurt Nelson", - "original_name": "Kurt Nelson", - "popularity": 0.6, - "profile_path": "/zcOS4UYph2d4pRbUJGuwS82rzWA.jpg", - "credit_id": "642c66fbc0a30800774f3689", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3899094, - "known_for_department": "Crew", - "name": "Natalie Rivera", - "original_name": "Natalie Rivera", - "popularity": 0.84, - "profile_path": null, - "credit_id": "642c672b6e44bf00b47635b8", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 1, - "id": 3946916, - "known_for_department": "Sound", - "name": "PinkPantheress", - "original_name": "PinkPantheress", - "popularity": 0.6, - "profile_path": "/5946DdyEeYJVnC4hyYmncKL9dwW.jpg", - "credit_id": "64bee5f5f9183a00e2bca5aa", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 3994214, - "known_for_department": "Crew", - "name": "Tegan Hammond", - "original_name": "Tegan Hammond", - "popularity": 0.6, - "profile_path": null, - "credit_id": "642c6610ac8e6b34540ec762", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 4075547, - "known_for_department": "Costume & Make-Up", - "name": "Janet E Jensen", - "original_name": "Janet E Jensen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f2162edeb4300e3db623d", - "department": "Costume & Make-Up", - "job": "Set Costumer" - }, - { - "adult": false, - "gender": 1, - "id": 4118330, - "known_for_department": "Sound", - "name": "Ice Spice", - "original_name": "Ice Spice", - "popularity": 0.6, - "profile_path": "/AibKYunFSD71V7pI1BMnzQ0LH7h.jpg", - "credit_id": "648edf9fc2ff3d00c59a6b07", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 2, - "id": 4125979, - "known_for_department": "Crew", - "name": "David Woods", - "original_name": "David Woods", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6494c69854508d00ae28cba2", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 2, - "id": 4184556, - "known_for_department": "Sound", - "name": "The Kid LAROI", - "original_name": "The Kid LAROI", - "popularity": 0.6, - "profile_path": "/4TjZsKNdYlQsnFyJIeIRZbvOwjz.jpg", - "credit_id": "64c38908af6e94013a52e63a", - "department": "Sound", - "job": "Songs" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "THANK YOU to all of the beautiful Barbies and Kens who helped get this pink party started! 🤩🎀💞", - "key": "uQCM613pqY4", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-08-14T18:38:12.000Z", - "id": "64e3a31dd75bd600aca46eb1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Score", - "key": "74Ie5QZC3Mc", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-08-04T16:46:06.000Z", - "id": "64d35621dd926a01e896fec6" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Kens", - "key": "KLqfVqDkXaI", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-28T11:35:19.000Z", - "id": "64c6552741aac40fb43651a1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Transportation", - "key": "Bcy3X57MSt0", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-28T11:12:25.000Z", - "id": "64c6554a63aad20209a5595c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Blow My Mind", - "key": "vkoAEuR-SJQ", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-27T17:35:07.000Z", - "id": "64c654cd41aac40fb3e56ab5" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Now Playing", - "key": "wVDEuVefTvA", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-21T13:00:56.000Z", - "id": "64c0c0acdf86a800ae00d652" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Greta's Vision", - "key": "3CVkQ9T0O08", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-21T08:33:23.000Z", - "id": "64c0c2b0097c49013a31336b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Album x Movie Trailer", - "key": "S0BJ8XOggmM", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-21T05:04:55.000Z", - "id": "64c6551295ce24013b9bc15b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "European Premiere", - "key": "k_29rmSGeEs", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-14T18:33:25.000Z", - "id": "64b1b96937806200ad13d24b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Best Day Ever", - "key": "MeKVPM_VJcg", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-13T11:14:50.000Z", - "id": "64afe6cae24b935b32b05194" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Cast of 'Barbie' Reveal How Old Hollywood and Disco Inspired 'Barbie' | Around The Table", - "key": "KdMm-_g_JS8", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": false, - "published_at": "2023-07-10T16:09:32.000Z", - "id": "64af7d4bc4904800e242d183" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Just Ken Exclusive", - "key": "Y1IgAEejvqM", - "site": "YouTube", - "size": 2160, - "type": "Trailer", - "official": true, - "published_at": "2023-07-10T16:00:31.000Z", - "id": "64ac3ba766a0d300c66f9c1f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Catastrophic", - "key": "SvbYPrSQ4I8", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-05T16:43:29.000Z", - "id": "64afd3526a344800ea8f626d" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Heels", - "key": "RuZa7M9fsvE", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-05T16:43:22.000Z", - "id": "64afd224c49048011c2f624b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Real", - "key": "lcnBEV5q8P4", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-05T16:43:16.000Z", - "id": "64afd244e24b935b32b046dd" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Choice Rev", - "key": "ylYDgHFqmhw", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-05T16:43:11.000Z", - "id": "64afd28dc4904800c506ce21" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Dream", - "key": "7bGCbZnn6Uc", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-05T16:42:59.000Z", - "id": "64afd2d18a0e9b00e3769e05" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Kicking off Summer with Barbie and Ken", - "key": "0BJi-Uhzqgk", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-21T17:09:22.000Z", - "id": "649354b96b5fc2010a4c9f1b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Cast of ‘Barbie’ on Greta Gerwig’s Vision, ‘Big Ken Energy’, and Favorite Outfits", - "key": "35FbTkEXe2s", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": false, - "published_at": "2023-06-21T16:00:02.000Z", - "id": "6493624a9a358d011cc841ac" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Margot Robbie Takes You Inside The Barbie Dreamhouse", - "key": "uKgaVlMN7IY", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": false, - "published_at": "2023-06-16T16:00:08.000Z", - "id": "64935fa589b56100ad694344" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Main Trailer", - "key": "pBk4NYhWNMM", - "site": "YouTube", - "size": 2160, - "type": "Trailer", - "official": true, - "published_at": "2023-05-25T16:00:38.000Z", - "id": "646f86ffe942ee00dcdffc45" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Teaser Trailer 2", - "key": "GRyt3Ov4zz0", - "site": "YouTube", - "size": 2160, - "type": "Trailer", - "official": true, - "published_at": "2023-04-04T16:00:09.000Z", - "id": "642c4aa6c0442901f003c257" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Teaser Trailer", - "key": "8zIf0XvoL9Y", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2022-12-16T14:00:08.000Z", - "id": "639cad2c2f266b009b0b4d2a" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/ctMserH8g2SeOAnCw5gFjdQF8mo.jpg", - "vote_average": 5.596, - "vote_count": 38, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/nHf61UzkfFno5X1ofIhugCPus2R.jpg", - "vote_average": 5.506, - "vote_count": 38, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2070, - "iso_639_1": null, - "file_path": "/tTfnd2VrlaZJSBD9HUbtSF3CqPJ.jpg", - "vote_average": 5.464, - "vote_count": 49, - "width": 3680 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/1esAE8sLJRWWFsLLeh5r3g2WanI.jpg", - "vote_average": 5.458, - "vote_count": 17, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/v3gfn7147bmp776ouWRUL3j3viV.jpg", - "vote_average": 5.398, - "vote_count": 14, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/3N5QNUqS76GFYNoEayfkkJyAyTN.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/frYbmlPnVwQNr1RrpyDhihPNz3B.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/Et0kiUZj30oAD3V4p2rCW20cvs.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/ovCpJJRqqdD8TMUSyAhfJff5oj2.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/ldFX26JW3fusyMewRoWoXYWaffw.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 1688, - "iso_639_1": "ro", - "file_path": "/jRJa3RxgXjnYow22MeTsAUBLpIm.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3000 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/tVlZORFsQRLo8Zp8HK1YAatmYJ8.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2070, - "iso_639_1": null, - "file_path": "/fRyYKQdsXIjw26MendWxpWmvnBs.jpg", - "vote_average": 5.3, - "vote_count": 22, - "width": 3680 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/uvaXVadrn3YPKFP1stA60k1jXi5.jpg", - "vote_average": 5.286, - "vote_count": 16, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/llZSAx6YW0y9tV4iMKmbUBNh70I.jpg", - "vote_average": 5.282, - "vote_count": 14, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1440, - "iso_639_1": null, - "file_path": "/4806moKxI5hCKmQz8TcQC0Hczfb.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 2560 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/yuikh0iVJxnA9RsrNiDfjez2j1T.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "no", - "file_path": "/rIyXqwMJScuTA20gl22uFrcLYpW.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/bazpB0IfrVxjZFwANJRbqFvUv2A.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.779, - "height": 1012, - "iso_639_1": "en", - "file_path": "/2H76C0wgi9ISrmCo7ZgG5zULAbr.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 1800 - }, - { - "aspect_ratio": 1.778, - "height": 1569, - "iso_639_1": null, - "file_path": "/uKT4sKhaVBkLbaEIUynLcGfKhGR.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 2790 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/uuk7FXrbcPlnCT0uFvRb3k8PLVI.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1920 - }, - { - "aspect_ratio": 1.779, - "height": 1012, - "iso_639_1": null, - "file_path": "/lQ519nzZbXcmVONibSpSNiDL5b1.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1800 - }, - { - "aspect_ratio": 1.778, - "height": 1200, - "iso_639_1": null, - "file_path": "/lLRrR9gQW2sMddvuc3AnA4JLDkt.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2133 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/iMPirFqLDbOFYfRHlCDfpaCD8Pn.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1920 - }, - { - "aspect_ratio": 1.779, - "height": 1012, - "iso_639_1": null, - "file_path": "/lL0N8Gb5tHSHi8Voda7kii2BVPc.jpg", - "vote_average": 5.156, - "vote_count": 12, - "width": 1800 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/pucmrS9TwhVRNp1f9nPJP6UXCfp.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/1FuebfLlwMRqWmjIYlv6wjVFgGZ.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/qLaQd7Ol3xyVt4sz59iHV91mRvK.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/5VTERbDQHQV9cGsce3llkV6HtKA.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/6roctBvDW0o2ZwFrdb1kgLQqUYr.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": null, - "file_path": "/14EfaWsbn4XVrl8LMsAxAM5sjZb.jpg", - "vote_average": 5.12, - "vote_count": 17, - "width": 1280 - }, - { - "aspect_ratio": 1.779, - "height": 1012, - "iso_639_1": null, - "file_path": "/jQbnhNvFQXO7jwLzdrceCTspEeI.jpg", - "vote_average": 5.12, - "vote_count": 17, - "width": 1800 - }, - { - "aspect_ratio": 1.777, - "height": 1688, - "iso_639_1": null, - "file_path": "/xmKiiEu43CTRiUM3JQAR7UcWBRZ.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 3000 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/8XXUELxpH8abOjqa6kg69UXpvDW.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/kcFgNH1PN0YNoboro6uxhGBf9iW.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 2160, - "iso_639_1": null, - "file_path": "/cQzFKlLZPcmG4iAH3c4iuPNOqNd.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3839 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "no", - "file_path": "/yzSbNAr3p6hxNIJyvPQePscdHwA.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/9ns0swQ7HeoqvkV33w6T8omJ2D8.jpg", - "vote_average": 5.1, - "vote_count": 13, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/keZwCyT8zbeh5hV9Po6AXRSF8X0.jpg", - "vote_average": 5.068, - "vote_count": 7, - "width": 3840 - }, - { - "aspect_ratio": 1.779, - "height": 759, - "iso_639_1": "uk", - "file_path": "/u3MSt536eKBWcrvvkVNA5pSuCQp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1350 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/vJahTRpKZJ42KL3CjYx4NgjBURQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.777, - "height": 759, - "iso_639_1": "th", - "file_path": "/thWqrbAGQ79oo3BWYfkvW5adZBq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1349 - }, - { - "aspect_ratio": 1.778, - "height": 1000, - "iso_639_1": "lo", - "file_path": "/emG4FteXntgZpHCL4s7xUzANuC2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1778 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "uk", - "file_path": "/cJI8RqnKyC6IECDpUBrjuOeShcx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - } - ], - "logos": [ - { - "aspect_ratio": 1.4, - "height": 1500, - "iso_639_1": null, - "file_path": "/qfvMCmB6P4M85ZivjQHYjaGoMOj.svg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2100 - }, - { - "aspect_ratio": 2.54, - "height": 1284, - "iso_639_1": "en", - "file_path": "/nsMnkuWIZCBxkBLPi0ZXuRloYL2.png", - "vote_average": 5.322, - "vote_count": 5, - "width": 3261 - }, - { - "aspect_ratio": 2.535, - "height": 1292, - "iso_639_1": "en", - "file_path": "/ePTZefgblCKMJnTzfPiUyzy9C8q.png", - "vote_average": 5.322, - "vote_count": 5, - "width": 3275 - }, - { - "aspect_ratio": 3.862, - "height": 457, - "iso_639_1": "zh", - "file_path": "/n1sIhir4h6waJaUsiNIEuvxu7qe.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1765 - }, - { - "aspect_ratio": 2.182, - "height": 697, - "iso_639_1": "uk", - "file_path": "/be49LZDQkEUoDzkCzNa62TYoxAZ.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1521 - }, - { - "aspect_ratio": 2.54, - "height": 1905, - "iso_639_1": "en", - "file_path": "/chvO48dgirqBYkXkWVuEtGj5Jke.png", - "vote_average": 5.246, - "vote_count": 2, - "width": 4838 - }, - { - "aspect_ratio": 2.711, - "height": 1583, - "iso_639_1": "en", - "file_path": "/pMcu6X9aSmBXxp2n2SG31Gw4nAG.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 4291 - }, - { - "aspect_ratio": 2.945, - "height": 1292, - "iso_639_1": "en", - "file_path": "/uBllJrRWteoPUSfTzbZwwhjPfjs.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 3805 - }, - { - "aspect_ratio": 2.557, - "height": 413, - "iso_639_1": "en", - "file_path": "/zst8tT4d7klJNLAmBupAxXgt7op.svg", - "vote_average": 5.128, - "vote_count": 6, - "width": 1056 - }, - { - "aspect_ratio": 2.556, - "height": 782, - "iso_639_1": "en", - "file_path": "/d2FE1qKZAKmtMZ7Zlf76lkhxG4n.png", - "vote_average": 5.106, - "vote_count": 2, - "width": 1999 - }, - { - "aspect_ratio": 2.001, - "height": 775, - "iso_639_1": "th", - "file_path": "/dosxOTMVMtKZyrs02ncKlHbqZLv.png", - "vote_average": 0, - "vote_count": 0, - "width": 1551 - }, - { - "aspect_ratio": 1.992, - "height": 592, - "iso_639_1": "uk", - "file_path": "/fx1fURy68mPx3q0ABMpBMAoVp4O.png", - "vote_average": 0, - "vote_count": 0, - "width": 1179 - }, - { - "aspect_ratio": 2.096, - "height": 522, - "iso_639_1": "uk", - "file_path": "/jvqBE3rncxKTzJzX5L17y4eQ8TO.png", - "vote_average": 0, - "vote_count": 0, - "width": 1094 - }, - { - "aspect_ratio": 1.992, - "height": 592, - "iso_639_1": "uk", - "file_path": "/xOQUFtMrJzBP97bPc25KaLwlQyM.png", - "vote_average": 0, - "vote_count": 0, - "width": 1179 - }, - { - "aspect_ratio": 2.086, - "height": 902, - "iso_639_1": "ja", - "file_path": "/oTbdfjU0lHO7spjUebPjGDDc8cf.png", - "vote_average": 0, - "vote_count": 0, - "width": 1882 - }, - { - "aspect_ratio": 3.944, - "height": 376, - "iso_639_1": "zh", - "file_path": "/f3rabe8niCVXB2JXsmbujYxQdGD.png", - "vote_average": 0, - "vote_count": 0, - "width": 1483 - }, - { - "aspect_ratio": 0.928, - "height": 1271, - "iso_639_1": "en", - "file_path": "/cSdUE8uFEL8p7qGDwdjCzAneyb5.png", - "vote_average": 0, - "vote_count": 0, - "width": 1180 - }, - { - "aspect_ratio": 1.998, - "height": 539, - "iso_639_1": "ar", - "file_path": "/4fsMHjVML8s8zoZ78V73C4qfoA7.png", - "vote_average": 0, - "vote_count": 0, - "width": 1077 - }, - { - "aspect_ratio": 1.971, - "height": 594, - "iso_639_1": "ar", - "file_path": "/7wwBcN4WR5UXVbsKBpwCcin724B.png", - "vote_average": 0, - "vote_count": 0, - "width": 1171 - }, - { - "aspect_ratio": 1.971, - "height": 594, - "iso_639_1": "ar", - "file_path": "/2NmNFX5dAEhxC8TZIbjjIdu98qB.png", - "vote_average": 0, - "vote_count": 0, - "width": 1171 - }, - { - "aspect_ratio": 4.088, - "height": 306, - "iso_639_1": "cn", - "file_path": "/e69CMKxTKxIk1ZQm5wEgWy8pJx0.png", - "vote_average": 0, - "vote_count": 0, - "width": 1251 - }, - { - "aspect_ratio": 1.932, - "height": 868, - "iso_639_1": "zh", - "file_path": "/xYOyyX8AcY1qiXicc4FqqefUuZj.png", - "vote_average": 0, - "vote_count": 0, - "width": 1677 - }, - { - "aspect_ratio": 2.401, - "height": 583, - "iso_639_1": "ru", - "file_path": "/isyAYdyTljfArCbeCaFT57S2UOv.png", - "vote_average": 0, - "vote_count": 0, - "width": 1400 - }, - { - "aspect_ratio": 2.164, - "height": 1017, - "iso_639_1": "uk", - "file_path": "/xl0htKGBIsSIdpcOv9f26UlKjn9.png", - "vote_average": 0, - "vote_count": 0, - "width": 2201 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/iuFNMS8U5cb6xfzi51Dbkovj7vM.jpg", - "vote_average": 5.992, - "vote_count": 57, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/cgYg04miVQUAG2FKk3amSnnHzOp.jpg", - "vote_average": 5.598, - "vote_count": 36, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/j9RaptNfOnqHMlTVa7nRdcTrSwr.jpg", - "vote_average": 5.518, - "vote_count": 12, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/aDlWqnAP9WTo64L2QlBvs21ESde.jpg", - "vote_average": 5.458, - "vote_count": 19, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/hmf2xnlUPdZyoRBFf7P6RCKTXEe.jpg", - "vote_average": 5.458, - "vote_count": 15, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/fNtqD4BTFj0Bgo9lyoAtmNFzxHN.jpg", - "vote_average": 5.456, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/yRRuLt7sMBEQkHsd1S3KaaofZn7.jpg", - "vote_average": 5.456, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cKCQRjp8WyOTGAZJSOf5SLjRyis.jpg", - "vote_average": 5.392, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "uk", - "file_path": "/lQrVqEYnJVljNaQYXcryKbX65Ks.jpg", - "vote_average": 5.39, - "vote_count": 6, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ar", - "file_path": "/e8Lng7AmGnCYLq7XPQnI9prRF3S.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/u5kboZR4OMi4QdbOhawCZuzMVWJ.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/7dK4kaCB0KuHWQwFrw5w5OgYOnW.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/qqwqW8jWjZ6iaLRU98z3fdghwRn.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/eId9DzACEY5QxufQCt3nJFHZkqq.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/2NbpEZIuhZuKkUyabeQJE7eV9k7.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/gvQ2JIqHvc5elysJK9wfx5p0k1x.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.737, - "height": 1024, - "iso_639_1": "fr", - "file_path": "/2EXE5WolOOrIqCmWuL6eOQG8Qxy.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 755 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "no", - "file_path": "/xi7jcTWoo9E9ESuUqL8J0KmZQ21.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.711, - "height": 1368, - "iso_639_1": "cn", - "file_path": "/3WZbasv3Y6Ul9wseaFLhq1a437V.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 972 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "cs", - "file_path": "/wXZfbEr5J6r0CdyLRQ4Sj8DtFqH.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2910, - "iso_639_1": "ko", - "file_path": "/rt8sHzR0XUyKHxU75ZIWs7MsNEN.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1940 - }, - { - "aspect_ratio": 0.682, - "height": 2400, - "iso_639_1": "th", - "file_path": "/ckiDUkTO8WPFF6gArhnNctPNzyU.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1638 - }, - { - "aspect_ratio": 0.707, - "height": 905, - "iso_639_1": "ja", - "file_path": "/gPKtvmMabSQ1EZINhFtB3DGbCpx.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 640 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "th", - "file_path": "/6d6ebttRuLUdOOpFvr2mCYmiPOj.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/eQjbB8p6BorINovLUk6flHhdGsZ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.685, - "height": 2920, - "iso_639_1": "it", - "file_path": "/lNH3igZmHIHduaGAsN1YrmLBlTi.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 2857, - "iso_639_1": "el", - "file_path": "/s0V7YJTa0U8zx29luYTEAX0dnK7.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "zh", - "file_path": "/scy5uilToAu7iLG9IYFWbFVwdeD.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/jZRbmxSF1AAU3Rf7zl1Spbbn0i7.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/h3mUJ9WEJ8PzA450ad4hrjsaiqG.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.704, - "height": 2840, - "iso_639_1": "de", - "file_path": "/7sBf4PQFL6H1rQzjYHy8KSQ4zNF.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/o1YxyJFVbQvqwfWnf6aVyjcUhcZ.jpg", - "vote_average": 5.308, - "vote_count": 26, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/bW0gPbSRXdXqKRNgeHbXsQ3iZP3.jpg", - "vote_average": 5.296, - "vote_count": 20, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2046, - "iso_639_1": "en", - "file_path": "/uUbdc9TMwbazp1zCNzGtXoBHhUa.jpg", - "vote_average": 5.28, - "vote_count": 37, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/qirvDexByE5erglM8fdIm0AEVFD.jpg", - "vote_average": 5.27, - "vote_count": 10, - "width": 1366 - }, - { - "aspect_ratio": 0.675, - "height": 1778, - "iso_639_1": "uk", - "file_path": "/kudd5ElWa99igVEFVHo9SSfIQbN.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 1200 - }, - { - "aspect_ratio": 0.666, - "height": 3000, - "iso_639_1": "es", - "file_path": "/21sRRZZ5lAYe1aLl9O0oz2qtXe0.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 1998 - }, - { - "aspect_ratio": 0.666, - "height": 893, - "iso_639_1": "es", - "file_path": "/EdAihG7i5ytQDo2mjCCZJ8iBZR.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 595 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/3w2uD3oAU9XyNWVl81F5wYorvp.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/vJ4r8imQ9piseO9ufCwsopBBWnZ.jpg", - "vote_average": 5.26, - "vote_count": 27, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/nh32u8OR4Te5aY1jODNEL8qaOP4.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 1999 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/4ODTvg9r3LQt31zxX6y8YELDo6p.jpg", - "vote_average": 5.254, - "vote_count": 25, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/oQjqjIQ46VVa8Q80y3FfLrPXoK3.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "es", - "file_path": "/lLVkbIz86qA3ynXbAectdoz29GF.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "es", - "file_path": "/kp3VeScrMBkHyCx2aOG9oAWLQCW.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/i7QrCnwzdp6NyyAPPtJloKZmbBH.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1000 - }, - { - "aspect_ratio": 0.666, - "height": 2560, - "iso_639_1": "en", - "file_path": "/aZxMccR8ac78GQpjC7hApQmqHQ.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1706 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/w79W4BQdP5Jy8uAdEoqTsY0cnfy.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6WRu3KSGR5PgSaCBHTzzSW6GNtA.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tQ5NvsAj8Yf7olkXqVFG91gw2bL.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/qtNZKbmGh2F4VTRNV2OAjFNm6iE.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1382 - }, - { - "aspect_ratio": 0.68, - "height": 2880, - "iso_639_1": "sk", - "file_path": "/u1dqEQ6FZRFySm4AW6QRBUAGr0Q.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1957 - }, - { - "aspect_ratio": 0.675, - "height": 2560, - "iso_639_1": "he", - "file_path": "/iCgapPEvZA11JkuRwtQCdkzZQxx.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1728 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/iPtla6hJOerwsgw0zMxyEI6pR3Q.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/6jZnkVwyh2wbN438UcMFV5VqSIR.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/iy8BIZ2ApegBJ7WE2AAL63Wc7mF.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1895, - "iso_639_1": "zh", - "file_path": "/dAv8RcdTEBe7zL93ySKYQHbBZAh.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1280 - }, - { - "aspect_ratio": 0.668, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/nH1P1LcmJpS3QXy7jEToz55x591.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1368 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/kau707eF6UBvrHX3v5BSYckqSXm.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1920, - "iso_639_1": "en", - "file_path": "/kkORXK5rfpZGdBz0r2AASHC8dyG.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1296 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/RjKltg3myc0PWStWsgVT9KOXC9.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/ze5vbG21agRR9kz5bXxBgLOJIeu.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/ley0I2BSgpgkK2ZVyjJz875b9Ql.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/szZqSvNecde4VZiMcXZwfPVfdlI.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/yH5gEJakJ4ZcO5AQMkOCTIl97Rq.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "de", - "file_path": "/6WP6FD932ce3H3Xi2UU5CVI7ilL.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6BMIooQpnhL4Q892WySS1Xy74yy.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1778, - "iso_639_1": "uk", - "file_path": "/uXmecTPtDC9tfvGelyZL33hG2bd.jpg", - "vote_average": 5.226, - "vote_count": 15, - "width": 1186 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/qL3jUsDMa4WnRKAzNZbfJC1l0GP.jpg", - "vote_average": 5.226, - "vote_count": 15, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/xHgeo4ptB514y0xDUo6MbnMZzfQ.jpg", - "vote_average": 5.224, - "vote_count": 32, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/kpC1TbKaLihzK9hhhRlySOI7QVA.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "es", - "file_path": "/jwwVZPKT4SqTtKIy4xqtu1gEvRM.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/w5J7eE9nJZkG5olLuZz27e2iB0e.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/sqvLahrvMjHqhaMQv0iXCM2dZCJ.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1600, - "iso_639_1": "zh", - "file_path": "/gVoSyGhrbEIbCwRx3N9dtlpXKwJ.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/jy9nw279TyeFLP4M4iJP3l3VKqF.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "es", - "file_path": "/9S9ShvnWoRhpJPTA5aqGJctqEK4.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/eonFdmXxJSGcDvvG1gDzW3Rajac.jpg", - "vote_average": 5.186, - "vote_count": 20, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/mqNkQhaXxsH8SLNmJnG5oGz4meR.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/5WS3yDPDyMUqIio88t4h8TaM4DZ.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/vnDtIPDHne7sYG52UOcxPnJADNi.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/nUWqnl4kJAoevGxPWa2SI6phGta.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": "vi", - "file_path": "/4mzEO5Lf7rvHFKuBmohIez7LFuH.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/sH7ra7uGyBLzeQnWB9sa1ttl2G7.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ar", - "file_path": "/uK4n2OTAUcwS0T1JVYohioFTaZF.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ar", - "file_path": "/GqLdfsYKX6mUc2xDkHL9ZzcxZ6.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/65k975H5wcRIzePv6lCJhMnRuXg.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "es", - "file_path": "/q1ZwEYbHDOnntusEk8OW0RtqQ19.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "es", - "file_path": "/8xgS05qDcFnqe2ewxqLM3crxrEo.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1122, - "iso_639_1": "en", - "file_path": "/eEOQx2iZO8Y4GTIe8veBZSny2DT.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 748 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/bORWapuzi4mbyXBI89UqMwOPn4X.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1440, - "iso_639_1": "cn", - "file_path": "/yGwyPUf780t78iz7WVngDbvQpTy.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 972 - }, - { - "aspect_ratio": 0.721, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/7tVqtSqpPnUvfX1u4MlHHQpzIco.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1477 - }, - { - "aspect_ratio": 0.708, - "height": 848, - "iso_639_1": "no", - "file_path": "/arYrVOK0mxlhzJavR3t472pLJsl.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 600 - }, - { - "aspect_ratio": 0.719, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/pYFDvaNPVNusendZyDykCHcHu3n.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 777 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/gsQH4F4K7zxIcUjhrJ8mYrjDI5c.jpg", - "vote_average": 5.172, - "vote_count": 16, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/nPNQuLtThaxYZ5Zv5sAOo4B3sa5.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/eNmb3IpPNk4d2yfIZsU4qwWPvGu.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/jZhEc7MisfBe33KGg8Xf7fEcgRq.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/awwGQslnJMlSerc4hdInb2dQoSH.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/xOGwqlLEY5Tf4R5w2YRfaDVvtjQ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/rmaGKRRGf4cAmXgpsztbDSvFBV7.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/4ZIuNrnhmoMLYIFxzzmpkk4H3Qf.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/lUcWIA81tBNAqI5qr02zVP7vOVD.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/phtVIbMJjylGofO6ejfrLsEySZf.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/2stn3LZE95ePT3LHSR5VtXkKTir.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/alKZbFH2fLrV0J7HCok3Th2Lw8A.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/a99JPawyTavCfN9b65rjrxhcSVW.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/3UH9z93WJIc7bILv106vd9MQrjO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/fOZCEfEso2fCgnCzbjX7W9RfcWR.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/cIK7QhukLfmBnshJxmyJyxrbK1L.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/qD7egYcpKcWdTFhtf1rYNXINKS9.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/f9vHy2SGTqEkmkw5uqSaeKEw8vx.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/9lyByeCx51kj7gQ8KPf1qP3gW7w.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2560, - "iso_639_1": "he", - "file_path": "/jvYuaocKZH3KeksGg7QytdOHgyG.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1728 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/nwmotrbSzD3vSQOXpsSvAy8eLxl.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/riEDvCBIWsogRq5Gq49lmrrsGhK.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/mafdqLYrerRdHVLzGAZ5VLnFH13.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 500 - }, - { - "aspect_ratio": 0.675, - "height": 1896, - "iso_639_1": "zh", - "file_path": "/ki7AHORnYqoQbELmoOGTJhWYTTW.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/A8gaRVLLmr6Mp0kn20czlU52FUe.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/cO2o8IEYMoMXc06MFkpONxV9WK4.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2850, - "iso_639_1": "ko", - "file_path": "/fucQmOmWe9gWdqXhqOv4xBISITO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/tWhuPHHu1gdnPgifvLmyBZbT6EH.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/iw3hB7UXi8JSFtMQFWB7b3F1qpS.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2457, - "iso_639_1": "en", - "file_path": "/e0GFhGoAcEiPZDW1odPnhQIOxaJ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1638 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/bkCkv65qHHkDfOH2HQyGBERv25P.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/lXWRCtLoPrdbeZB7v6WnywM3IIe.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1024, - "iso_639_1": "ru", - "file_path": "/yBVrSciQdiBwDv1uCVE4M6PWaDa.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 717 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/7dtc4fDP8rZxMwdcZer7ilbaJsd.jpg", - "vote_average": 5.156, - "vote_count": 12, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/8WHnqnzxyX6tvcMd7WDermWUrAi.jpg", - "vote_average": 5.156, - "vote_count": 12, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 998, - "iso_639_1": "en", - "file_path": "/x9v8cupGths9U9C3Ggom02XoQtk.jpg", - "vote_average": 5.146, - "vote_count": 10, - "width": 665 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/rZt7XQqLzlVpUZfGtKGH47UCwv6.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/hHvc0wQTFCM1DBjPLTODAy7N4Vf.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/lMpdf6qYRBqUKcuyGdRqgzOCGIX.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/eACGznumtmR72mVz5ZZlEklUDJd.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/cXS1xl2cfMhTuco6zlsxqjiAeQ4.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/wdrQ6IvYWjN4bHKHIskxAi3nvT9.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/3CriIiIDneXOSaoh9YJidJumbgj.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/yALMDqHvxVX9UrsGhTlhXU3kH3b.jpg", - "vote_average": 5.09, - "vote_count": 11, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/qLzeQkfbsa5Ud6jorN7H4CORKEq.jpg", - "vote_average": 5.08, - "vote_count": 9, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/gU7P1yKJCShnUacIdRaDexix91f.jpg", - "vote_average": 5.08, - "vote_count": 9, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/zek17M4HkImVD9nfdHo4eWdNEFx.jpg", - "vote_average": 5.08, - "vote_count": 9, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "uk", - "file_path": "/iDDnVFAZhSMtVC8lbUuYiM0h8DC.jpg", - "vote_average": 5.08, - "vote_count": 9, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 2232, - "iso_639_1": "en", - "file_path": "/rN00sd8bKUYAKAw9QMi4caExhKA.jpg", - "vote_average": 5.078, - "vote_count": 20, - "width": 1488 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/bU4UqQwXf1OXjVKT6HWqSzoUR3.jpg", - "vote_average": 5.068, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/9WQEVp8cqDoB7fdV8Aj5zIYmhCX.jpg", - "vote_average": 5.068, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/1oTjXow5UyBoDeSIod66e6PBYLy.jpg", - "vote_average": 5.068, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1215, - "iso_639_1": "en", - "file_path": "/cgKSM28kNW3syy2Z2Zw48nyR6EB.jpg", - "vote_average": 5.068, - "vote_count": 7, - "width": 810 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "es", - "file_path": "/8VmDhfl4gJZpHDkflHOkAEcQMmo.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 1009, - "iso_639_1": "en", - "file_path": "/kj18G32VBv9d1oH0IGrlCj8EwdY.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 673 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/jNmZI0kRAEVeRSFWqj45mYPsVtD.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/i0qbQyAr1ZDroQmpjJcqW31VuKa.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/jpcoaVwPZttZvKwTly1E1gOUxLr.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/5tWoNNNn4p6Km1h0lnElD80qsXv.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/22omd7bTY8J9mVnQAbE4GS7wM6C.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 1051, - "iso_639_1": "en", - "file_path": "/rJSlU2D1PW1OdL1vhBXS0QzZ3Fo.jpg", - "vote_average": 5.046, - "vote_count": 14, - "width": 701 - }, - { - "aspect_ratio": 0.711, - "height": 2048, - "iso_639_1": "es", - "file_path": "/yD3BxGuwyz069BkvKOZiSR9wSoT.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1456 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/ay8mAMdxp68GkKEiFwisAWbI6Z0.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/4P7hlYJLC9ihgzlTbpT3cLZeSJN.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/nJnZ9hIPhL8DvM6FrFqCrkaAFVZ.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/tylt5yPcH4Zr0vTy228pIssMNLU.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/5xX3nEVZGOKNO42gy4CPMS2wu8w.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/b7Jx4fURzl2ayRrA9Adp2EGnx9t.jpg", - "vote_average": 4.996, - "vote_count": 6, - "width": 1365 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "es", - "file_path": "/lF3ViyfgJ8VEwQSlqPhuhm6WW43.jpg", - "vote_average": 4.996, - "vote_count": 6, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 2232, - "iso_639_1": null, - "file_path": "/zikL5JKRNQ5RBzK9fQhIvCRfWU5.jpg", - "vote_average": 4.992, - "vote_count": 24, - "width": 1488 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ded7kzZTU8BxzmZCyIpFqmyT94y.jpg", - "vote_average": 4.982, - "vote_count": 13, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/bdcA7UoGvCWwnLzktgsJF8ce8h4.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/4xti5Jdz6J4GAdLnXzViLx2NBLO.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/mA9Lv93A4rcu0SA4o9WeKswCb0y.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/6swp38zlcePQeBQrAckxpyP3l29.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/ax3u1jdiVYTa616uMowrzKovVA2.jpg", - "vote_average": 4.938, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "cs", - "file_path": "/5ycqqgFhAMl7d3qhbjMIIx0H1DR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/sO3V9AgFsdo9jzf8th4HQiOjGJA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/fd8iqSzv6BvqDJEWPTEv4KPOhjZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.675, - "height": 889, - "iso_639_1": "it", - "file_path": "/2aBRoCiosgTx7WTYL8ugy1XfF7C.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/8CH2Dg9uOPbaYl2oKXzXBxWAMsj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/cAHWYDbnJft0UnEjoYlf8l1LikJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/5G8qzAUOISUzGqCSvs8lmBIeELm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/sdwYdMmoKRe3pukvUpIyVOwLnRL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/hcnsA8repickjQR8EvAOCVA3sNi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/akDU3Q0LJQSTNtwGa2jnmMVuPUz.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/rC3I4hN4ivnIBbbgPsvqOYXRjXc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/4iguMlJLiX9eqSMDqfJDDLghLtf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/aPcqDu1Bqjhfiy5uqTGoEmjd8f7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/636MXwpfRmoFsZDSLxO9Mnq256r.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/77jgvpAPIuMx1Y0XnEmsaq5o6x.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/gT22yY2qlZg3CoUfErOXjen2DhM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/qcEWthk9pUW9MrjEgfoKYGmfRS9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/sxgRBladnceoHUu4kVy9M5gT90W.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/mzeg9HTgdLWKlvgLohox3vzHRGP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/g07qWDHcs7SozvJ5BRwggJRB5I.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/g9gAoESv1VUtfZYCAtMLtYZFTzJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/66JhCovLuFUO2PqcP20oWLopEvr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/rLxorivq7xfHPf6xvbcwA5modO2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/o3DwfyDPEPfNl5X7e85Ftf5Cm3f.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/2mMsr04cQWXA7rZ0Q4WVJtYxLsW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/odzl9CE5LHd9Jlw96yq5iAPUXCS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/3Gx1Am8OdiniUO1kCcI7GkVrHzF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1200, - "iso_639_1": "ro", - "file_path": "/ddxJ1kxe01kAOhv0B1cEBqYvnx0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 799 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/2kmV8pHucpUCfbAx9wowzqYNH9a.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2835, - "iso_639_1": "nl", - "file_path": "/tnS9DqsJvFjmg4FK4R2LghvOhs5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1889 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "et", - "file_path": "/vNPKI1g96KXq2hXSDjYX1fwmA5D.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 667 - }, - { - "aspect_ratio": 0.695, - "height": 1280, - "iso_639_1": "ca", - "file_path": "/1HI9kQtJb0fKLMb9O58PUQG6m9v.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 890 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/lWhSvG5pP8WWRHLNKn9LWe3liDX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/pp5mwpyxLEkbxFTYBTTUKftbGXo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/zHRB5LqoclGFcQIqbmkv2gGP1Sx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/76avZo6SEdp349NHf5VfdeELMbK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/ltUhym1CMM8dr2HazAk9NfOHpkg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/3CuX6jI9n5U4EcxBUJnZgCNLhlU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/nITqRQt6tAFU6qFKgVL6FZpKhfK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/eov9qaFu3j0FyyQ9GiWBzWxg52b.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/znxLaP8Y21cCJqtO8saymfy8SuK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/oZeTCFSGqbC8qb1JDSxDwcmWEYE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/zOPdQA5Y1dTHyMIyOnbpZhti020.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/pmpJXyomxCe1Z68SNv5l7ES6Pvt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/inW08HWTs0b1agdwWS2q5b6oPxP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/dGXaLrCqSMEeuFpWIme1LO4KMuq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/5fFKIwMKkFPVCsv4pIUbQCOQbyd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/bFZzSKgLwcXtjplTmaCHSiiSXHn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/rMP5Xog78D4So9Ow8GbgciPdGVg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/ynamz3rjrRRX4w7vPKNeYrblyX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.71, - "height": 1080, - "iso_639_1": "cn", - "file_path": "/wgIGLl2qpoIqMblAgTQUGOrcZhH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 767 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/u5PKCUfLUqaUZT0Hy6H0E9FBaoG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 889, - "iso_639_1": "cs", - "file_path": "/uWnH64nLzpnj9th01Y5DotsuBFv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/rwbqjpX6sVm5z9wtKOFZKK6FiLY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2962, - "iso_639_1": "zh", - "file_path": "/rTZQo9vkkg1mtEWw3pFhi250gV7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "zh", - "file_path": "/z7XoxuUTNu09LVEr6sOUHTLf0Ds.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "id", - "file_path": "/yBvoDlzpKx9HRk2Pcp8gc0E6SYP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ar", - "file_path": "/jpnF54Kg7aM1wuxBFMhSADxjcmx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ar", - "file_path": "/zKIbj1kOdy601CCg4ryJ4JJGKUP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.737, - "height": 2000, - "iso_639_1": "th", - "file_path": "/uID7Xtl5vrE50oVGj232ArWY4mZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1474 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/zqv7ykKu5tuyOhkktu09xi6wmGR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2039, - "iso_639_1": "th", - "file_path": "/uqDxKjfX1gSkFjADlA45fuK1acv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1359 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "lo", - "file_path": "/gd6prTz0phQcrzUyC6adtLvqRKx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ka", - "file_path": "/eLpnP5Acz3PRDrWpRN8CGcyatZC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.7, - "height": 2857, - "iso_639_1": "el", - "file_path": "/kyzWUqsubPBsR10dRrflX6pQPyu.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "el", - "file_path": "/4NMVq4HznouTsmHe6O7oxl0Avcy.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "el", - "file_path": "/zOGrLr4qmHRBC3WwwaIEc569hSv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1897, - "iso_639_1": "zh", - "file_path": "/cczGSO58007NX2l93uXjPQRGWB9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/22fAimvj398HaUQSN3O3C5gWuD9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/v4Sg2nuYv0SluwWH0D1renYhl0s.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": null, - "file_path": "/yLutzXq0YjQY3eqDCNLyIYh1E7A.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/xI4SiRgwSuhZG5McnGITRPJz8w.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/neWmzIPgz5s1htN80RdbS2frl04.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/eZjPTTypwSUMmc8INVt3yppxC1y.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.707, - "height": 1556, - "iso_639_1": "ja", - "file_path": "/iPDYdgfC1kMxXELko911PfeGgHV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1100 - }, - { - "aspect_ratio": 0.7, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/gmuVrsplDBmco1kPjpOAUo6XXvO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1008 - }, - { - "aspect_ratio": 0.675, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/iY9QST74YDtTVoqImeapeKvHLCP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 972 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "en", - "file_path": "/dPSp7MwNjUb9eLLEA4ZmXoZU9D7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "en", - "file_path": "/fOzZ7ZUSsoJgkSPSz2K4fktE35S.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/52j5lINUlgIXxREoaBnQqPMOFjZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2814, - "iso_639_1": "en", - "file_path": "/f0hluxIlcjT89USPqvNwW1Vvm4o.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6ADAWKlv0dkHkIxpHmleKu7kgcs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/jRI62iDOvEp8uYvLZ4PwvWKlJm8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/7tbYfTvtLzZsYSLOr30MqYgmkqC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/kDS5rI0Yu4O6mJbxuaHGwI66o4q.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/wJxV0QhGPPR80oBoWo2r7fBAM4B.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "th", - "file_path": "/hwCqZbMZN68WqNbBOOgYrSAIaP2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cn", - "file_path": "/g5bd2NXpumZLrOFCnfDc7T0eGA4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cn", - "file_path": "/nc0mydl3ojfUMZwD6fDLmhhTskb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/oWkEvQB8gYNG9shGNK2kQLtDxcN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/ol1aHnf6W8VMn14UGj8RiruEe83.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/Yoa1n7joh9qb6GYhZwfbrqN11v.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/8O6fRJ1VVlmHL1RCt9thoDCe5Ao.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/6oqyVaxMiIrcRCxtalYxU8P9QZB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/3o4ZdtJEDlPdMt8u5cGvrfZdJNH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/kaewGrp2IldPjNhR3M3ObgbFVhC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1038, - "iso_639_1": "sk", - "file_path": "/6OVpQepx2U81fULv6tF3dAcxWEw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 692 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "sk", - "file_path": "/j5ikuMjJR31TkQNTNlqoTMPHbiq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/e1d2VgxzV3yakTwIthIdRpvTUi5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.675, - "height": 1000, - "iso_639_1": "lt", - "file_path": "/yRvEudSQZF59fX9fpX40H4pVKSJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 675 - }, - { - "aspect_ratio": 0.7, - "height": 1143, - "iso_639_1": "lv", - "file_path": "/xeJLU7ttAj6vwbVV9rEyzYC7GRb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "fr", - "file_path": "/seifNEAVjmwuin4gQl4C4aMv4XA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 667 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/2IPqw0r84tBfgPDD6GWuIGl36Hl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/385687.json b/examples/view-transitions/src/content/movies/385687.json deleted file mode 100644 index 447959338..000000000 --- a/examples/view-transitions/src/content/movies/385687.json +++ /dev/null @@ -1,6835 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/4XM8DUTQb3lhLemJC51Jx4a2EuA.jpg", - "belongs_to_collection": { - "id": 9485, - "name": "The Fast and the Furious Collection", - "poster_path": "/zQdytnqfsWKJlqazqfMBL2L7aql.jpg", - "backdrop_path": "/z5A5W3WYJc3UVEWljSGwdjDgQ0j.jpg" - }, - "budget": 340000000, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 80, "name": "Crime" }, - { "id": 53, "name": "Thriller" } - ], - "homepage": "https://fastxmovie.com", - "id": 385687, - "imdb_id": "tt5433140", - "original_language": "en", - "original_title": "Fast X", - "overview": "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.", - "popularity": 1973.052, - "poster_path": "/fiVW06jE7z9YnO4trhaMEdclSiC.jpg", - "production_companies": [ - { - "id": 33, - "logo_path": "/8lvHyhjr8oUKOOy2dKXoALWKdp0.png", - "name": "Universal Pictures", - "origin_country": "US" - }, - { - "id": 333, - "logo_path": "/5xUJfzPZ8jWJUDzYtIeuPO4qPIa.png", - "name": "Original Film", - "origin_country": "US" - }, - { - "id": 1225, - "logo_path": "/rIxhJMR7oK8b2fMakmTfRLY2TZv.png", - "name": "One Race", - "origin_country": "US" - }, - { - "id": 34530, - "logo_path": null, - "name": "Perfect Storm Entertainment", - "origin_country": "US" - } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "2023-05-17", - "revenue": 704709660, - "runtime": 142, - "spoken_languages": [{ "english_name": "English", "iso_639_1": "en", "name": "English" }], - "status": "Released", - "tagline": "The end of the road begins.", - "title": "Fast X", - "video": false, - "vote_average": 7.275, - "vote_count": 3753, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 12835, - "known_for_department": "Acting", - "name": "Vin Diesel", - "original_name": "Vin Diesel", - "popularity": 48.36, - "profile_path": "/nZdVry7lnUkE24PnXakok9okvL4.jpg", - "cast_id": 0, - "character": "Dominic Toretto", - "credit_id": "56d8c1e0c3a3681e3601fdc6", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 17647, - "known_for_department": "Acting", - "name": "Michelle Rodriguez", - "original_name": "Michelle Rodriguez", - "popularity": 16.199, - "profile_path": "/xSvkVrLz6xas1mCeOR9i4QtmhnQ.jpg", - "cast_id": 33, - "character": "Letty", - "credit_id": "6107f6a1ee43e80027c7bea1", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 8169, - "known_for_department": "Acting", - "name": "Tyrese Gibson", - "original_name": "Tyrese Gibson", - "popularity": 28.158, - "profile_path": "/1K315wBQBvDBuZMlzoozuGsqFXZ.jpg", - "cast_id": 35, - "character": "Roman", - "credit_id": "6107f6d61c635b003010d62b", - "order": 2 - }, - { - "adult": false, - "gender": 2, - "id": 8171, - "known_for_department": "Acting", - "name": "Ludacris", - "original_name": "Ludacris", - "popularity": 10.184, - "profile_path": "/erkJijujhe48vhJ8iCEtVpNEeVn.jpg", - "cast_id": 36, - "character": "Tej", - "credit_id": "6107f6ec8d22fc004713585b", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 56446, - "known_for_department": "Acting", - "name": "John Cena", - "original_name": "John Cena", - "popularity": 32.459, - "profile_path": "/6EZaBiQHx3Xlz3j0D6ttDxHXaxr.jpg", - "cast_id": 70, - "character": "Jakob Toretto", - "credit_id": "62991471a44d095275e980c1", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 1251069, - "known_for_department": "Acting", - "name": "Nathalie Emmanuel", - "original_name": "Nathalie Emmanuel", - "popularity": 22.476, - "profile_path": "/koSwmmonFJiZDfwmZgdVA7I1aR.jpg", - "cast_id": 37, - "character": "Ramsey", - "credit_id": "6107f70e17c443004690f509", - "order": 5 - }, - { - "adult": false, - "gender": 1, - "id": 22123, - "known_for_department": "Acting", - "name": "Jordana Brewster", - "original_name": "Jordana Brewster", - "popularity": 28.332, - "profile_path": "/8VzFsSfT7NnMGyH5JQBQdTxDHcO.jpg", - "cast_id": 34, - "character": "Mia Toretto", - "credit_id": "6107f6c08d22fc00300eee15", - "order": 6 - }, - { - "adult": false, - "gender": 2, - "id": 61697, - "known_for_department": "Acting", - "name": "Sung Kang", - "original_name": "Sung Kang", - "popularity": 32.546, - "profile_path": "/jCrjAt7L1SO4TOC0O6Nr7ZZU8vS.jpg", - "cast_id": 38, - "character": "Han", - "credit_id": "6107f7267ad08c005e578d66", - "order": 7 - }, - { - "adult": false, - "gender": 2, - "id": 117642, - "known_for_department": "Acting", - "name": "Jason Momoa", - "original_name": "Jason Momoa", - "popularity": 55.838, - "profile_path": "/6dEFBpZH8C8OijsynkSajQT99Pb.jpg", - "cast_id": 56, - "character": "Dante", - "credit_id": "61f42773a6fdaa001c92e6e4", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 928572, - "known_for_department": "Acting", - "name": "Scott Eastwood", - "original_name": "Scott Eastwood", - "popularity": 24.625, - "profile_path": "/2TofqgDl7ZlrAairMKKOSPITzka.jpg", - "cast_id": 64, - "character": "Little Nobody", - "credit_id": "6286770c6d9fe85497bfb9d1", - "order": 9 - }, - { - "adult": false, - "gender": 1, - "id": 1784612, - "known_for_department": "Acting", - "name": "Daniela Melchior", - "original_name": "Daniela Melchior", - "popularity": 18.937, - "profile_path": "/as7JfOagvDzhINDdA9Lkrp98UnJ.jpg", - "cast_id": 57, - "character": "Isabel", - "credit_id": "6238f9898ac3d0004430ba9f", - "order": 10 - }, - { - "adult": false, - "gender": 2, - "id": 64295, - "known_for_department": "Acting", - "name": "Alan Ritchson", - "original_name": "Alan Ritchson", - "popularity": 32.256, - "profile_path": "/iV4XpUEsvnncbRv1SJKasRY05cK.jpg", - "cast_id": 63, - "character": "Aimes", - "credit_id": "627e8b59c92c5d0068aaef0c", - "order": 11 - }, - { - "adult": false, - "gender": 1, - "id": 15735, - "known_for_department": "Acting", - "name": "Helen Mirren", - "original_name": "Helen Mirren", - "popularity": 43.912, - "profile_path": "/eY26gqv9EGunId7kp32pLueXvz4.jpg", - "cast_id": 77, - "character": "Queenie", - "credit_id": "6326a2f943250f007b7e09ae", - "order": 12 - }, - { - "adult": false, - "gender": 1, - "id": 60073, - "known_for_department": "Acting", - "name": "Brie Larson", - "original_name": "Brie Larson", - "popularity": 21.446, - "profile_path": "/iqZ5uKJWbwSITCK4CqdlUHZTnXD.jpg", - "cast_id": 58, - "character": "Tess", - "credit_id": "625258b0894ed600abc4e21b", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 976, - "known_for_department": "Acting", - "name": "Jason Statham", - "original_name": "Jason Statham", - "popularity": 118.356, - "profile_path": "/lldeQ91GwIVff43JBrpdbAAeYWj.jpg", - "cast_id": 74, - "character": "Shaw", - "credit_id": "62ab7a9435a61e0062082a1b", - "order": 14 - }, - { - "adult": false, - "gender": 1, - "id": 6885, - "known_for_department": "Acting", - "name": "Charlize Theron", - "original_name": "Charlize Theron", - "popularity": 44.864, - "profile_path": "/gd7ShD0yt4bsR2STeQ19KQ6hvXL.jpg", - "cast_id": 49, - "character": "Cipher", - "credit_id": "61367fbbef9d72002bee076d", - "order": 15 - }, - { - "adult": false, - "gender": 1, - "id": 13299, - "known_for_department": "Acting", - "name": "Rita Moreno", - "original_name": "Rita Moreno", - "popularity": 7.851, - "profile_path": "/zB0M77jr7tmsmWHEr2bWO2Xq66L.jpg", - "cast_id": 69, - "character": "Abuelita", - "credit_id": "628ce4ee1a32483b630dbee0", - "order": 16 - }, - { - "adult": false, - "gender": 2, - "id": 22462, - "known_for_department": "Acting", - "name": "Joaquim de Almeida", - "original_name": "Joaquim de Almeida", - "popularity": 15.177, - "profile_path": "/a4V9gZydtcObuiuiYlPU1grNmPL.jpg", - "cast_id": 113, - "character": "Hernan Reyes", - "credit_id": "6400bc4e7a4ee700f0fa7144", - "order": 17 - }, - { - "adult": false, - "gender": 2, - "id": 2984075, - "known_for_department": "Acting", - "name": "Leo A. Perry", - "original_name": "Leo A. Perry", - "popularity": 1.417, - "profile_path": "/22yhaD35P2AzJ8nA7EMbuIyyHEw.jpg", - "cast_id": 81, - "character": "Little Brian", - "credit_id": "63d945729512e1008f378bda", - "order": 18 - }, - { - "adult": false, - "gender": 2, - "id": 37149, - "known_for_department": "Acting", - "name": "Luis Da Silva Jr.", - "original_name": "Luis Da Silva Jr.", - "popularity": 5.958, - "profile_path": "/ajavEvDuNcinuw3BJ80OE0sEU5Q.jpg", - "cast_id": 79, - "character": "Diogo", - "credit_id": "638663455ed8e900b89eb2b1", - "order": 19 - }, - { - "adult": false, - "gender": 0, - "id": 1678751, - "known_for_department": "Acting", - "name": "Jaz Hutchins", - "original_name": "Jaz Hutchins", - "popularity": 0.753, - "profile_path": "/nvXgXVGOaHjE3HGE53FJQ4jvdww.jpg", - "cast_id": 139, - "character": "Agency Tech", - "credit_id": "646aba5f57530e078753ead7", - "order": 20 - }, - { - "adult": false, - "gender": 2, - "id": 1897706, - "known_for_department": "Acting", - "name": "Luka Hays", - "original_name": "Luka Hays", - "popularity": 1.03, - "profile_path": "/JymMSMDfVVv2Azoeu8piiqRr1f.jpg", - "cast_id": 140, - "character": "Cipher Tech", - "credit_id": "646aba92a5046e018941f2ba", - "order": 21 - }, - { - "adult": false, - "gender": 2, - "id": 4074147, - "known_for_department": "Acting", - "name": "Alexander Capon", - "original_name": "Alexander Capon", - "popularity": 0.6, - "profile_path": "/7DUvcjDq3ClcMIQgR1R5lVPdAge.jpg", - "cast_id": 141, - "character": "Cipher Tech", - "credit_id": "646abab5c3514c00e5dddabb", - "order": 22 - }, - { - "adult": false, - "gender": 2, - "id": 1427948, - "known_for_department": "Acting", - "name": "Pete Davidson", - "original_name": "Pete Davidson", - "popularity": 18.103, - "profile_path": "/mSlLMk45CUgMGT1o7Pkh9zYaLxK.jpg", - "cast_id": 132, - "character": "Bowie", - "credit_id": "646474d29f37b0017d5814b3", - "order": 23 - }, - { - "adult": false, - "gender": 2, - "id": 4074148, - "known_for_department": "Acting", - "name": "Shadrach Agozino", - "original_name": "Shadrach Agozino", - "popularity": 0.608, - "profile_path": "/w85Lgj4583MQNeZO7VXT1bV5wEA.jpg", - "cast_id": 142, - "character": "Bartender", - "credit_id": "646abae1d1857201802d7101", - "order": 24 - }, - { - "adult": false, - "gender": 1, - "id": 2282001, - "known_for_department": "Acting", - "name": "Ludmilla", - "original_name": "Ludmilla", - "popularity": 1.827, - "profile_path": "/hbEkg827B38ieLV8ZQZf0f65KET.jpg", - "cast_id": 115, - "character": "Starter", - "credit_id": "6446ce476dc507051fd4b0b9", - "order": 25 - }, - { - "adult": false, - "gender": 2, - "id": 508582, - "known_for_department": "Acting", - "name": "Miraj Grbić", - "original_name": "Miraj Grbić", - "popularity": 1.903, - "profile_path": "/ptCynXMskQ8CETCvg6ZjSwcMyVI.jpg", - "cast_id": 270, - "character": "Russian Bag Guy", - "credit_id": "64830e07d2b209014e08312b", - "order": 26 - }, - { - "adult": false, - "gender": 1, - "id": 3184164, - "known_for_department": "Acting", - "name": "Meadow Walker Thornton-Allan", - "original_name": "Meadow Walker Thornton-Allan", - "popularity": 0.606, - "profile_path": "/54L3RBjBIIxjfLOYEOadhZlftmg.jpg", - "cast_id": 116, - "character": "Flight Attendant", - "credit_id": "6448a7782fdec60573a0cb36", - "order": 27 - }, - { - "adult": false, - "gender": 2, - "id": 124304, - "known_for_department": "Acting", - "name": "Michael Irby", - "original_name": "Michael Irby", - "popularity": 6.927, - "profile_path": "/9cX8pKujyAlOyqGSAgvKNdA3qRj.jpg", - "cast_id": 269, - "character": "Zizi (archive footage)", - "credit_id": "6483066fbf31f250570578fc", - "order": 28 - }, - { - "adult": false, - "gender": 2, - "id": 4074151, - "known_for_department": "Acting", - "name": "Shahir Figueira", - "original_name": "Shahir Figueira", - "popularity": 0.6, - "profile_path": "/bUOSHf6iGS8fzfXtTK7Ve8KvJZR.jpg", - "cast_id": 145, - "character": "Officer", - "credit_id": "646abbc82bcf67011bf3ec53", - "order": 29 - }, - { - "adult": false, - "gender": 2, - "id": 2545367, - "known_for_department": "Acting", - "name": "Ben-Hur Santos", - "original_name": "Ben-Hur Santos", - "popularity": 1.058, - "profile_path": "/jjVqqt2e2b4TgBnrjHwYkKpvSBN.jpg", - "cast_id": 146, - "character": "Lead Cartel Thug", - "credit_id": "646abbdb57530e0788ae51d9", - "order": 30 - }, - { - "adult": false, - "gender": 1, - "id": 123846, - "known_for_department": "Acting", - "name": "Debby Ryan", - "original_name": "Debby Ryan", - "popularity": 28.527, - "profile_path": "/hYMnrAO1fZx9tPmIM8xajliVT1N.jpg", - "cast_id": 135, - "character": "Debby Ryan", - "credit_id": "64668e1833a3760158d89e32", - "order": 31 - }, - { - "adult": false, - "gender": 2, - "id": 2138286, - "known_for_department": "Acting", - "name": "Josh Dun", - "original_name": "Josh Dun", - "popularity": 1.951, - "profile_path": "/7xT72GgPrkllGjAF4vtyj4J65d1.jpg", - "cast_id": 136, - "character": "Josh Dun", - "credit_id": "64668e252bcf67011bf209dc", - "order": 32 - }, - { - "adult": false, - "gender": 2, - "id": 18918, - "known_for_department": "Acting", - "name": "Dwayne Johnson", - "original_name": "Dwayne Johnson", - "popularity": 27.175, - "profile_path": "/cgoy7t5Ve075naBPcewZrc08qGw.jpg", - "cast_id": 117, - "character": "Luke Hobbs (uncredited)", - "credit_id": "645eb09eb234b900fe037c40", - "order": 33 - }, - { - "adult": false, - "gender": 1, - "id": 90633, - "known_for_department": "Acting", - "name": "Gal Gadot", - "original_name": "Gal Gadot", - "popularity": 57.901, - "profile_path": "/qCJB1ACi5VjtY4ypXuv3hjAvbSu.jpg", - "cast_id": 114, - "character": "Gisele Yashar (uncredited)", - "credit_id": "6400bc647a4ee700aaad91a5", - "order": 34 - }, - { - "adult": false, - "gender": 2, - "id": 8167, - "known_for_department": "Acting", - "name": "Paul Walker", - "original_name": "Paul Walker", - "popularity": 19.365, - "profile_path": "/q2PLqKHYCs35HR7QybaNPH3JT96.jpg", - "cast_id": 344, - "character": "Brian O'Conner (archive footage) (uncredited)", - "credit_id": "64d61d73f14dad00e3b7f999", - "order": 35 - }, - { - "adult": false, - "gender": 2, - "id": 4211960, - "known_for_department": "Acting", - "name": "Ali Baddou", - "original_name": "Ali Baddou", - "popularity": 0.828, - "profile_path": "/qfBGks8ynZ1lqTcAEDMNhkFU2IS.jpg", - "cast_id": 345, - "character": "Ali Baddou (uncredited)", - "credit_id": "64d85bd7371097011c4fea6e", - "order": 36 - } - ], - "crew": [ - { - "adult": false, - "gender": 1, - "id": 1302, - "known_for_department": "Production", - "name": "Susie Figgis", - "original_name": "Susie Figgis", - "popularity": 2.374, - "profile_path": "/yW6eiXF0CEXCHpqxqvEUZmq2mUq.jpg", - "credit_id": "63fbc8cc344a8e007cba54a7", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 1, - "id": 2519, - "known_for_department": "Costume & Make-Up", - "name": "Sanja Milković Hays", - "original_name": "Sanja Milković Hays", - "popularity": 2.732, - "profile_path": null, - "credit_id": "626872999f37b00066e55b94", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 2, - "id": 7239, - "known_for_department": "Sound", - "name": "Peter Brown", - "original_name": "Peter Brown", - "popularity": 0.84, - "profile_path": null, - "credit_id": "64840842e375c000ff48294b", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 2, - "id": 7239, - "known_for_department": "Sound", - "name": "Peter Brown", - "original_name": "Peter Brown", - "popularity": 0.84, - "profile_path": null, - "credit_id": "64840856d2b209014e08b50f", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 10570, - "known_for_department": "Production", - "name": "Joseph M. Caracciolo Jr.", - "original_name": "Joseph M. Caracciolo Jr.", - "popularity": 2.736, - "profile_path": null, - "credit_id": "63e6a620a3d027009f3b7072", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 10570, - "known_for_department": "Production", - "name": "Joseph M. Caracciolo Jr.", - "original_name": "Joseph M. Caracciolo Jr.", - "popularity": 2.736, - "profile_path": null, - "credit_id": "64836539c9dbf9013a0601aa", - "department": "Production", - "job": "Unit Production Manager" - }, - { - "adult": false, - "gender": 2, - "id": 6041, - "known_for_department": "Sound", - "name": "Brian Tyler", - "original_name": "Brian Tyler", - "popularity": 6.194, - "profile_path": "/wLPLAOcEgA9vfNuXSX1QI1ajguU.jpg", - "credit_id": "63ed29a6813cb6007942d32a", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 2, - "id": 8162, - "known_for_department": "Writing", - "name": "Gary Scott Thompson", - "original_name": "Gary Scott Thompson", - "popularity": 7.605, - "profile_path": "/e2dMfqFvRsOXgWZ1VToYLmos17y.jpg", - "credit_id": "584340739251416764001ee7", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 2, - "id": 11874, - "known_for_department": "Production", - "name": "Neal H. Moritz", - "original_name": "Neal H. Moritz", - "popularity": 3.722, - "profile_path": "/pPvK5xZTp1PymWL5OGc7dtqvx9Q.jpg", - "credit_id": "60d4e2233c887d0076f14538", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 13162, - "known_for_department": "Editing", - "name": "Dov Samuel", - "original_name": "Dov Samuel", - "popularity": 0.638, - "profile_path": null, - "credit_id": "648337d3c9dbf900e3fef534", - "department": "Editing", - "job": "First Assistant Editor" - }, - { - "adult": false, - "gender": 2, - "id": 12835, - "known_for_department": "Acting", - "name": "Vin Diesel", - "original_name": "Vin Diesel", - "popularity": 48.36, - "profile_path": "/nZdVry7lnUkE24PnXakok9okvL4.jpg", - "credit_id": "613ee5ca149565006452a1d3", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 15227, - "known_for_department": "Crew", - "name": "Sharon Smith Holley", - "original_name": "Sharon Smith Holley", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64833828bf31f25055a024a9", - "department": "Visual Effects", - "job": "VFX Editor" - }, - { - "adult": false, - "gender": 0, - "id": 15355, - "known_for_department": "Crew", - "name": "Daniel Acon", - "original_name": "Daniel Acon", - "popularity": 1.113, - "profile_path": null, - "credit_id": "646bc5007b7b4d00e4adfe1a", - "department": "Visual Effects", - "job": "Special Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 15911, - "known_for_department": "Crew", - "name": "Franco Maria Salamon", - "original_name": "Franco Maria Salamon", - "popularity": 1.289, - "profile_path": null, - "credit_id": "646bbaf233a3760175d3eadd", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 18189, - "known_for_department": "Writing", - "name": "Mark Bomback", - "original_name": "Mark Bomback", - "popularity": 2.123, - "profile_path": "/sasLL2smKWuZUjYq7d9O2QQrN0G.jpg", - "credit_id": "63e6a653d29bdd008c9dc80f", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 17649, - "known_for_department": "Camera", - "name": "Alexander Witt", - "original_name": "Alexander Witt", - "popularity": 0.6, - "profile_path": "/hO1QZ7P3SRNom3Ap4YZPsgESUcx.jpg", - "credit_id": "6483658ee375c000c5270353", - "department": "Camera", - "job": "Second Unit Director of Photography" - }, - { - "adult": false, - "gender": 2, - "id": 17649, - "known_for_department": "Camera", - "name": "Alexander Witt", - "original_name": "Alexander Witt", - "popularity": 0.6, - "profile_path": "/hO1QZ7P3SRNom3Ap4YZPsgESUcx.jpg", - "credit_id": "646c11d9a5046e0189429c3c", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 2, - "id": 18865, - "known_for_department": "Directing", - "name": "Louis Leterrier", - "original_name": "Louis Leterrier", - "popularity": 8.233, - "profile_path": "/guzsaiGBEy1qi3Ffh2uPcqaURYN.jpg", - "credit_id": "62700baac56d2d6f7690125e", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 20292, - "known_for_department": "Art", - "name": "Jan Roelfs", - "original_name": "Jan Roelfs", - "popularity": 1.577, - "profile_path": null, - "credit_id": "62a307cb35d1bc5106b7103b", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 2, - "id": 24969, - "known_for_department": "Acting", - "name": "Henry Kingi", - "original_name": "Henry Kingi", - "popularity": 4.603, - "profile_path": "/cThdKH6fn4faqei4DC2H3BQNkgI.jpg", - "credit_id": "647530241bf2660442a72065", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 29400, - "known_for_department": "Production", - "name": "Jeff Kirschenbaum", - "original_name": "Jeff Kirschenbaum", - "popularity": 4.291, - "profile_path": "/mt7lkSY2tvSpUQZoXa1ZW9UfvSc.jpg", - "credit_id": "62cb7b2746aed4087e8706dc", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 29474, - "known_for_department": "Art", - "name": "Simon McGuire", - "original_name": "Simon McGuire", - "popularity": 0.694, - "profile_path": null, - "credit_id": "6461b54de3fa2f00e403c89c", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 58191, - "known_for_department": "Writing", - "name": "Chris Morgan", - "original_name": "Chris Morgan", - "popularity": 9.797, - "profile_path": "/ksZGCknL4lQceoDpHzX0LH5AFQP.jpg", - "credit_id": "63e6a639c2ff3d007c3c24a5", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 57029, - "known_for_department": "Production", - "name": "Amanda Lewis", - "original_name": "Amanda Lewis", - "popularity": 2.59, - "profile_path": null, - "credit_id": "63e6a647d29bdd00845fc101", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 58189, - "known_for_department": "Directing", - "name": "Justin Lin", - "original_name": "Justin Lin", - "popularity": 8.928, - "profile_path": "/w0ryazdt8iS3GBrjXfv0FIwvUGY.jpg", - "credit_id": "63fbc89484f249007beffed5", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 58189, - "known_for_department": "Directing", - "name": "Justin Lin", - "original_name": "Justin Lin", - "popularity": 8.928, - "profile_path": "/w0ryazdt8iS3GBrjXfv0FIwvUGY.jpg", - "credit_id": "6268725fc613ce00aa0fed40", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 58189, - "known_for_department": "Directing", - "name": "Justin Lin", - "original_name": "Justin Lin", - "popularity": 8.928, - "profile_path": "/w0ryazdt8iS3GBrjXfv0FIwvUGY.jpg", - "credit_id": "646abd9333a376013b3ea59e", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 58192, - "known_for_department": "Camera", - "name": "Stephen F. Windon", - "original_name": "Stephen F. Windon", - "popularity": 0.768, - "profile_path": null, - "credit_id": "5f8f7b9efed59700394c199b", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 1, - "id": 58193, - "known_for_department": "Editing", - "name": "Kelly Matsumoto", - "original_name": "Kelly Matsumoto", - "popularity": 1.273, - "profile_path": null, - "credit_id": "64631e4fa67254014367fd0e", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 0, - "id": 67695, - "known_for_department": "Sound", - "name": "Paul Rabjohns", - "original_name": "Paul Rabjohns", - "popularity": 0.663, - "profile_path": null, - "credit_id": "6483f782e375c0011c7f8bf5", - "department": "Sound", - "job": "Supervising Music Editor" - }, - { - "adult": false, - "gender": 1, - "id": 90635, - "known_for_department": "Production", - "name": "Samantha Vincent", - "original_name": "Samantha Vincent", - "popularity": 9.04, - "profile_path": null, - "credit_id": "62cb7b39595a5612b8a43540", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 75636, - "known_for_department": "Crew", - "name": "Jalil Jay Lynch", - "original_name": "Jalil Jay Lynch", - "popularity": 2.341, - "profile_path": "/lpU7fTd5MTv4nXcmmr1WdPcKnVN.jpg", - "credit_id": "648367f4e375c000ff47da48", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 30737, - "known_for_department": "Acting", - "name": "Bolek Polívka", - "original_name": "Bolek Polívka", - "popularity": 2.228, - "profile_path": "/gQ40joDui2BoDrMplvGERa1WVQC.jpg", - "credit_id": "646bbaa07b7b4d0172d5709c", - "department": "Crew", - "job": "Utility Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 83090, - "known_for_department": "Sound", - "name": "Todd Toon", - "original_name": "Todd Toon", - "popularity": 0.973, - "profile_path": "/4GUXef80FGLGhSyXUlhkVrbue8g.jpg", - "credit_id": "6483f725d2b209010c18c791", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 83093, - "known_for_department": "Crew", - "name": "Jimmy N. Roberts", - "original_name": "Jimmy N. Roberts", - "popularity": 0.902, - "profile_path": "/voJPkN18NYreFrwhhhDKC2hG83r.jpg", - "credit_id": "64cfb9484d679100ff682907", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 2, - "id": 112682, - "known_for_department": "Crew", - "name": "Spiro Razatos", - "original_name": "Spiro Razatos", - "popularity": 9.853, - "profile_path": "/tkJnvTnKa0t5HLi7dTKcXDrooFU.jpg", - "credit_id": "6483042a99259c00e2f41874", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 112682, - "known_for_department": "Crew", - "name": "Spiro Razatos", - "original_name": "Spiro Razatos", - "popularity": 9.853, - "profile_path": "/tkJnvTnKa0t5HLi7dTKcXDrooFU.jpg", - "credit_id": "6468550833a376013b3dc202", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 2, - "id": 119183, - "known_for_department": "Crew", - "name": "Giorgio Antonini", - "original_name": "Giorgio Antonini", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bb8f554a0980155e2eaa5", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 122274, - "known_for_department": "Visual Effects", - "name": "Peter Chiang", - "original_name": "Peter Chiang", - "popularity": 1.416, - "profile_path": null, - "credit_id": "63fbc9126aa8e000f0b70ab7", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 122464, - "known_for_department": "Editing", - "name": "David Kern", - "original_name": "David Kern", - "popularity": 0.836, - "profile_path": null, - "credit_id": "648300ede272600128791774", - "department": "Editing", - "job": "Additional Editor" - }, - { - "adult": false, - "gender": 2, - "id": 154668, - "known_for_department": "Acting", - "name": "Lee Spencer", - "original_name": "Lee Spencer", - "popularity": 2.013, - "profile_path": "/ohh0u2bN7YHtXQGMTN5JBrMCrpI.jpg", - "credit_id": "64836665e2726000afc1f5f2", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 221636, - "known_for_department": "Acting", - "name": "Patrick Vo", - "original_name": "Patrick Vo", - "popularity": 0.705, - "profile_path": "/ui160lW3FLPt9GVeaerNjOqcvMf.jpg", - "credit_id": "6466735d2bcf6700fe5f1e47", - "department": "Crew", - "job": "Fight Choreographer" - }, - { - "adult": false, - "gender": 2, - "id": 223238, - "known_for_department": "Visual Effects", - "name": "Hal Couzens", - "original_name": "Hal Couzens", - "popularity": 0.73, - "profile_path": null, - "credit_id": "646bc61c7b7b4d0155f99149", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 2, - "id": 228881, - "known_for_department": "Crew", - "name": "Olivier Schneider", - "original_name": "Olivier Schneider", - "popularity": 5.295, - "profile_path": "/i4pmJRPM1Qghf3t2oM9ZbhnKWn5.jpg", - "credit_id": "648365d7d2b20900ad3bb5cf", - "department": "Crew", - "job": "Other" - }, - { - "adult": false, - "gender": 2, - "id": 228881, - "known_for_department": "Crew", - "name": "Olivier Schneider", - "original_name": "Olivier Schneider", - "popularity": 5.295, - "profile_path": "/i4pmJRPM1Qghf3t2oM9ZbhnKWn5.jpg", - "credit_id": "646bbca57b7b4d0138b0352e", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 0, - "id": 563403, - "known_for_department": "Crew", - "name": "Jack Anderson", - "original_name": "Jack Anderson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc510a5046e00e5b76f5e", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 2, - "id": 937234, - "known_for_department": "Writing", - "name": "Dan Mazeau", - "original_name": "Dan Mazeau", - "popularity": 2.112, - "profile_path": null, - "credit_id": "63fbc89c0c125500da1e524a", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 937234, - "known_for_department": "Writing", - "name": "Dan Mazeau", - "original_name": "Dan Mazeau", - "popularity": 2.112, - "profile_path": null, - "credit_id": "646abd8c2bcf670172b1fe60", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 968316, - "known_for_department": "Crew", - "name": "Andy Gill", - "original_name": "Andy Gill", - "popularity": 1.73, - "profile_path": "/uphgScM95clUsV8Rb2nwdiqCndX.jpg", - "credit_id": "646674a633a376013b3cef95", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 1014026, - "known_for_department": "Writing", - "name": "Zach Dean", - "original_name": "Zach Dean", - "popularity": 0.912, - "profile_path": "/hYmQIDnJZYiFigMXuUs3NSPKtAV.jpg", - "credit_id": "646abd992bcf6700e3bb54b8", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 1157595, - "known_for_department": "Acting", - "name": "Nick McKinless", - "original_name": "Nick McKinless", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bba2f54a09800e410428f", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 1203510, - "known_for_department": "Crew", - "name": "Maurizio Salvatori", - "original_name": "Maurizio Salvatori", - "popularity": 1.4, - "profile_path": null, - "credit_id": "646bbc1354a09800e4104309", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 0, - "id": 1204245, - "known_for_department": "Editing", - "name": "Dylan Highsmith", - "original_name": "Dylan Highsmith", - "popularity": 1.116, - "profile_path": null, - "credit_id": "64631e5ca6725400e3d2fd5c", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1230574, - "known_for_department": "Crew", - "name": "Peter Miles", - "original_name": "Peter Miles", - "popularity": 4.874, - "profile_path": "/2Cu56fQK90ZWMq46B0WYMkF5m3I.jpg", - "credit_id": "648365eebf31f2505f3dedc7", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 1301638, - "known_for_department": "Acting", - "name": "Lee Charles", - "original_name": "Lee Charles", - "popularity": 4.507, - "profile_path": "/hPcEeF8mG9PiOJmnduVjq9yH9jD.jpg", - "credit_id": "646bb94dc3514c2b0741b21c", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1321750, - "known_for_department": "Crew", - "name": "Kurt D. Lott", - "original_name": "Kurt D. Lott", - "popularity": 2.379, - "profile_path": "/lPUdu9RkkSy6xLxKRbVMV3Ruh2W.jpg", - "credit_id": "646bb9f82bcf6700fe61a1c1", - "department": "Crew", - "job": "Utility Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1328758, - "known_for_department": "Sound", - "name": "Matthew Llewellyn", - "original_name": "Matthew Llewellyn", - "popularity": 1.411, - "profile_path": null, - "credit_id": "64830116bf31f25055a00b72", - "department": "Sound", - "job": "Music Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1338230, - "known_for_department": "Visual Effects", - "name": "Meg Guidon", - "original_name": "Meg Guidon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc6702bcf6700e3bbe3d5", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1338372, - "known_for_department": "Sound", - "name": "Dan O'Connell", - "original_name": "Dan O'Connell", - "popularity": 1.722, - "profile_path": "/4AjIlClDijH3iYgXygHEcVZtTzi.jpg", - "credit_id": "64830221e375c000ff47aee6", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1367493, - "known_for_department": "Sound", - "name": "John T. Cucci", - "original_name": "John T. Cucci", - "popularity": 3.165, - "profile_path": null, - "credit_id": "6483024e99259c00e2f4178f", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1367499, - "known_for_department": "Acting", - "name": "Troy Robinson", - "original_name": "Troy Robinson", - "popularity": 3.574, - "profile_path": "/eYnD3gE7Mjo26fQLuT0MSsVTMfq.jpg", - "credit_id": "646788a02bcf67011bf28fea", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 1385516, - "known_for_department": "Costume & Make-Up", - "name": "Victoria Conte", - "original_name": "Victoria Conte", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bbc4533a3760101fbf2a9", - "department": "Costume & Make-Up", - "job": "Wardrobe Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1390367, - "known_for_department": "Lighting", - "name": "Perry Evans", - "original_name": "Perry Evans", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64833c22e272600147b939a1", - "department": "Lighting", - "job": "Gaffer" - }, - { - "adult": false, - "gender": 0, - "id": 1390524, - "known_for_department": "Sound", - "name": "Jay Wilkinson", - "original_name": "Jay Wilkinson", - "popularity": 0.84, - "profile_path": null, - "credit_id": "6483017be375c000e24e8911", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 1, - "id": 1392908, - "known_for_department": "Visual Effects", - "name": "Karen M. Murphy", - "original_name": "Karen M. Murphy", - "popularity": 1.122, - "profile_path": null, - "credit_id": "646bc6cd33a3760175d3edcd", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1393883, - "known_for_department": "Camera", - "name": "Peter Mountain", - "original_name": "Peter Mountain", - "popularity": 1.474, - "profile_path": null, - "credit_id": "6483033e99259c00ff0dbeb1", - "department": "Camera", - "job": "Still Photographer" - }, - { - "adult": false, - "gender": 2, - "id": 1394130, - "known_for_department": "Sound", - "name": "Frank A. Montaño", - "original_name": "Frank A. Montaño", - "popularity": 1.05, - "profile_path": null, - "credit_id": "646b5ebd2bcf67011bf45f4f", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1394131, - "known_for_department": "Sound", - "name": "Jon Taylor", - "original_name": "Jon Taylor", - "popularity": 1.55, - "profile_path": null, - "credit_id": "648300bcd2b209010c184b45", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1399865, - "known_for_department": "Visual Effects", - "name": "Chad Wiebe", - "original_name": "Chad Wiebe", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fbc992e4b57600bd38ff57", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 1408293, - "known_for_department": "Costume & Make-Up", - "name": "Linda D. Flowers", - "original_name": "Linda D. Flowers", - "popularity": 1.432, - "profile_path": null, - "credit_id": "6461b5076e0d72015c0f2eb2", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 0, - "id": 1413453, - "known_for_department": "Sound", - "name": "Stephen P. Robinson", - "original_name": "Stephen P. Robinson", - "popularity": 1.429, - "profile_path": null, - "credit_id": "646bb8cdd18572016192d144", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1417685, - "known_for_department": "Crew", - "name": "Gregory J. Barnett", - "original_name": "Gregory J. Barnett", - "popularity": 1.905, - "profile_path": "/97Gns4ZXSHaVcpMwJSUjH3etjCx.jpg", - "credit_id": "646bb910a5046e00e5b76c56", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1418001, - "known_for_department": "Editing", - "name": "Ben Howdeshell", - "original_name": "Ben Howdeshell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64833848c9dbf900e3fef569", - "department": "Visual Effects", - "job": "VFX Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1426845, - "known_for_department": "Crew", - "name": "Aleksandar Pejic", - "original_name": "Aleksandar Pejic", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fbc97684f249008db0beec", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 1427849, - "known_for_department": "Directing", - "name": "Zoe Morgan", - "original_name": "Zoe Morgan", - "popularity": 1.056, - "profile_path": null, - "credit_id": "6482ffbebf31f250570575da", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1435703, - "known_for_department": "Sound", - "name": "Glynna Grimala", - "original_name": "Glynna Grimala", - "popularity": 0.631, - "profile_path": null, - "credit_id": "646bb8b1a5046e00e5b76c36", - "department": "Sound", - "job": "ADR Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 1436199, - "known_for_department": "Crew", - "name": "Carol McConnaughey", - "original_name": "Carol McConnaughey", - "popularity": 1.105, - "profile_path": null, - "credit_id": "648364a1e375c00139bf88bb", - "department": "Crew", - "job": "Unit Publicist" - }, - { - "adult": false, - "gender": 0, - "id": 1437798, - "known_for_department": "Costume & Make-Up", - "name": "Roxy D'Alonzo", - "original_name": "Roxy D'Alonzo", - "popularity": 0.619, - "profile_path": null, - "credit_id": "63ddeb30ddd52d008482d8bd", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1439735, - "known_for_department": "Visual Effects", - "name": "Corbin Mehl", - "original_name": "Corbin Mehl", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648304fa99259c00e2f418d3", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1439747, - "known_for_department": "Costume & Make-Up", - "name": "Andrew Hunt", - "original_name": "Andrew Hunt", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63ddeb6262f3350084a6a119", - "department": "Costume & Make-Up", - "job": "Costume Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1439749, - "known_for_department": "Editing", - "name": "Laura Steiger", - "original_name": "Laura Steiger", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483051fbf31f25057057856", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1441365, - "known_for_department": "Camera", - "name": "Peter Wilke", - "original_name": "Peter Wilke", - "popularity": 1.562, - "profile_path": null, - "credit_id": "64833528c9dbf900ad4523a6", - "department": "Camera", - "job": "\"A\" Camera Operator" - }, - { - "adult": false, - "gender": 2, - "id": 1450955, - "known_for_department": "Production", - "name": "Lex Donovan", - "original_name": "Lex Donovan", - "popularity": 0.632, - "profile_path": null, - "credit_id": "64833660e375c000c526ed16", - "department": "Production", - "job": "Location Manager" - }, - { - "adult": false, - "gender": 2, - "id": 1451649, - "known_for_department": "Sound", - "name": "Paul Drenning", - "original_name": "Paul Drenning", - "popularity": 0.729, - "profile_path": null, - "credit_id": "648301f6c9dbf900e3fedafc", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1460571, - "known_for_department": "Camera", - "name": "Jeremiah Kent", - "original_name": "Jeremiah Kent", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483f501d2b209014e08a8ad", - "department": "Camera", - "job": "Second Assistant \"A\" Camera" - }, - { - "adult": false, - "gender": 2, - "id": 1470154, - "known_for_department": "Art", - "name": "Matthew Clark", - "original_name": "Matthew Clark", - "popularity": 0.652, - "profile_path": null, - "credit_id": "6483344799259c011c3f8f57", - "department": "Art", - "job": "Graphic Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1531509, - "known_for_department": "Visual Effects", - "name": "Stanislas de Lesquen", - "original_name": "Stanislas de Lesquen", - "popularity": 0.609, - "profile_path": null, - "credit_id": "646bc62ba5046e012468f570", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1536539, - "known_for_department": "Costume & Make-Up", - "name": "Deborah Taylor", - "original_name": "Deborah Taylor", - "popularity": 1.4, - "profile_path": null, - "credit_id": "648336fec9dbf900c571027d", - "department": "Costume & Make-Up", - "job": "Key Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1537508, - "known_for_department": "Camera", - "name": "Craig Grossmueller", - "original_name": "Craig Grossmueller", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483f516c9dbf900ad458244", - "department": "Camera", - "job": "First Assistant \"B\" Camera" - }, - { - "adult": false, - "gender": 1, - "id": 1543196, - "known_for_department": "Costume & Make-Up", - "name": "Jacqueline Fernandez", - "original_name": "Jacqueline Fernandez", - "popularity": 1.4, - "profile_path": null, - "credit_id": "63ddeb25cd2046009d4e8eb5", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1543254, - "known_for_department": "Crew", - "name": "Peter Krumov", - "original_name": "Peter Krumov", - "popularity": 1.831, - "profile_path": null, - "credit_id": "646b5f1954a0980155e2c992", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 2, - "id": 1546028, - "known_for_department": "Art", - "name": "Andrew Palmer", - "original_name": "Andrew Palmer", - "popularity": 0.937, - "profile_path": null, - "credit_id": "6461b556a6725400e3d2361f", - "department": "Art", - "job": "Supervising Art Director" - }, - { - "adult": false, - "gender": 2, - "id": 1548455, - "known_for_department": "Sound", - "name": "Shane Hayes", - "original_name": "Shane Hayes", - "popularity": 1.4, - "profile_path": null, - "credit_id": "6483f7ef99259c00accc5f2e", - "department": "Sound", - "job": "Other" - }, - { - "adult": false, - "gender": 2, - "id": 1548953, - "known_for_department": "Production", - "name": "Dan Clay", - "original_name": "Dan Clay", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6461b521ef8b320155554c40", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 1550186, - "known_for_department": "Art", - "name": "Benton Jew", - "original_name": "Benton Jew", - "popularity": 1.199, - "profile_path": "/wiYoRBYQ5IxoiZIDs3o3uEHDl3p.jpg", - "credit_id": "6483332ac9dbf9013a05ebd7", - "department": "Art", - "job": "Storyboard Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1552475, - "known_for_department": "Camera", - "name": "Taylor Matheson", - "original_name": "Taylor Matheson", - "popularity": 1.003, - "profile_path": null, - "credit_id": "6483f4f1e2726000e8c0657a", - "department": "Camera", - "job": "First Assistant \"A\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 1553295, - "known_for_department": "Production", - "name": "David Cain", - "original_name": "David Cain", - "popularity": 2.622, - "profile_path": null, - "credit_id": "63e6a62fd29bdd00b2f99cf4", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1553295, - "known_for_department": "Production", - "name": "David Cain", - "original_name": "David Cain", - "popularity": 2.622, - "profile_path": null, - "credit_id": "64836546bf31f25054b52c9a", - "department": "Production", - "job": "Unit Production Manager" - }, - { - "adult": false, - "gender": 2, - "id": 1581175, - "known_for_department": "Art", - "name": "James Doh", - "original_name": "James Doh", - "popularity": 0.634, - "profile_path": null, - "credit_id": "64833310bf31f25055a0226e", - "department": "Art", - "job": "Storyboard Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1584868, - "known_for_department": "Art", - "name": "Chris Heap", - "original_name": "Chris Heap", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646b5f0554a0980155e2c982", - "department": "Art", - "job": "Standby Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 1636660, - "known_for_department": "Costume & Make-Up", - "name": "Jessica Pazdernik", - "original_name": "Jessica Pazdernik", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63ddeb4be55937008769ffde", - "department": "Costume & Make-Up", - "job": "Costume Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1669401, - "known_for_department": "Production", - "name": "Kirsty Kinnear", - "original_name": "Kirsty Kinnear", - "popularity": 4.826, - "profile_path": null, - "credit_id": "63fbc8c8344a8e00aa1be492", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 2, - "id": 1683365, - "known_for_department": "Art", - "name": "Josh Sheppard", - "original_name": "Josh Sheppard", - "popularity": 1.314, - "profile_path": null, - "credit_id": "648332e4bf31f2505f3dd9d9", - "department": "Art", - "job": "Storyboard Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1685991, - "known_for_department": "Sound", - "name": "John Casali", - "original_name": "John Casali", - "popularity": 0.73, - "profile_path": null, - "credit_id": "6461b58aa6725401436733d9", - "department": "Sound", - "job": "Production Sound Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1685994, - "known_for_department": "Art", - "name": "Nick Pelham", - "original_name": "Nick Pelham", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648332b8e375c00139bf72fc", - "department": "Art", - "job": "Storyboard Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1711214, - "known_for_department": "Directing", - "name": "Vincent Lascoumes", - "original_name": "Vincent Lascoumes", - "popularity": 0.787, - "profile_path": null, - "credit_id": "646bbcd02bcf67011bf47ff4", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 1725775, - "known_for_department": "Visual Effects", - "name": "Michael Grobe", - "original_name": "Michael Grobe", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fbc95696e30b009fca3d3f", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1789618, - "known_for_department": "Art", - "name": "Adonay Marin Conde", - "original_name": "Adonay Marin Conde", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bbd0d33a37600e67bad84", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 1824262, - "known_for_department": "Camera", - "name": "Daniele Postiglione", - "original_name": "Daniele Postiglione", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bbc0454a09801386521cb", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 2, - "id": 1829852, - "known_for_department": "Camera", - "name": "Steve Ellingworth", - "original_name": "Steve Ellingworth", - "popularity": 1.624, - "profile_path": null, - "credit_id": "64833c89d2b209010c1867bd", - "department": "Camera", - "job": "Key Grip" - }, - { - "adult": false, - "gender": 1, - "id": 1834185, - "known_for_department": "Crew", - "name": "Jade-Eleena Dregorius", - "original_name": "Jade-Eleena Dregorius", - "popularity": 0.722, - "profile_path": "/etgxJoL4HQ1PFRyC7i6dj7Rc22v.jpg", - "credit_id": "648367d899259c01392aa713", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1844654, - "known_for_department": "Art", - "name": "Anthony Liberatore", - "original_name": "Anthony Liberatore", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64833282bf31f25054b51771", - "department": "Art", - "job": "Storyboard Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1897684, - "known_for_department": "Acting", - "name": "Estelle Darnault", - "original_name": "Estelle Darnault", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bb97dc3514c2b0741b22e", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 1946990, - "known_for_department": "Visual Effects", - "name": "Paul Jones", - "original_name": "Paul Jones", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fbc94ee4b576009d1b382d", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1962597, - "known_for_department": "Camera", - "name": "Carlo Postiglione", - "original_name": "Carlo Postiglione", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bbbf7d1857201802df8e8", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 0, - "id": 1981994, - "known_for_department": "Visual Effects", - "name": "Mariluz Noto", - "original_name": "Mariluz Noto", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc6db2bcf6700e3bbe3ed", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2020341, - "known_for_department": "Visual Effects", - "name": "François Lambert", - "original_name": "François Lambert", - "popularity": 0.662, - "profile_path": null, - "credit_id": "63fbc97f57176f008544ad1f", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2046906, - "known_for_department": "Camera", - "name": "Tulio Duenas", - "original_name": "Tulio Duenas", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483f536c9dbf9013a064e43", - "department": "Camera", - "job": "First Assistant \"C\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 2069440, - "known_for_department": "Crew", - "name": "Dave Kneath", - "original_name": "Dave Kneath", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc55fa5046e0189427869", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 2, - "id": 2094554, - "known_for_department": "Camera", - "name": "Sean Kisch", - "original_name": "Sean Kisch", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483f542e375c0011c7f8abd", - "department": "Camera", - "job": "First Assistant \"C\" Camera" - }, - { - "adult": false, - "gender": 1, - "id": 2095074, - "known_for_department": "Art", - "name": "Kathryn Pyle", - "original_name": "Kathryn Pyle", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6461b56e6e0d72013dcc88e8", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 2, - "id": 2116196, - "known_for_department": "Editing", - "name": "L. Dillon Thomas", - "original_name": "L. Dillon Thomas", - "popularity": 0.73, - "profile_path": null, - "credit_id": "648337a1bf31f25055a02472", - "department": "Editing", - "job": "First Assistant Editor" - }, - { - "adult": false, - "gender": 2, - "id": 2116242, - "known_for_department": "Art", - "name": "Andy Young", - "original_name": "Andy Young", - "popularity": 0.98, - "profile_path": null, - "credit_id": "6461b561dbbb420170a951d8", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 2117037, - "known_for_department": "Crew", - "name": "Declan O'Donnell", - "original_name": "Declan O'Donnell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc57a7b7b4d00e4adfe3f", - "department": "Crew", - "job": "Special Effects" - }, - { - "adult": false, - "gender": 2, - "id": 2127274, - "known_for_department": "Sound", - "name": "Jack Cucci", - "original_name": "Jack Cucci", - "popularity": 1.4, - "profile_path": null, - "credit_id": "64830277c9dbf900e3fedb39", - "department": "Sound", - "job": "Foley Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 2136902, - "known_for_department": "Sound", - "name": "Bryan Mendoza", - "original_name": "Bryan Mendoza", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483f57399259c011c3fe842", - "department": "Sound", - "job": "Boom Operator" - }, - { - "adult": false, - "gender": 2, - "id": 2146964, - "known_for_department": "Camera", - "name": "Tom Wade", - "original_name": "Tom Wade", - "popularity": 0.608, - "profile_path": null, - "credit_id": "6483354cd2b20900ad3ba064", - "department": "Camera", - "job": "\"B\" Camera Operator" - }, - { - "adult": false, - "gender": 2, - "id": 2148372, - "known_for_department": "Crew", - "name": "Robert Bastens", - "original_name": "Robert Bastens", - "popularity": 1.12, - "profile_path": "/cWGBtJHTcBtzk5i80Ao3YHDrH5B.jpg", - "credit_id": "64d89396bf31f201ca8cc305", - "department": "Crew", - "job": "Stand In" - }, - { - "adult": false, - "gender": 0, - "id": 2256436, - "known_for_department": "Acting", - "name": "Tom Connelly", - "original_name": "Tom Connelly", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bb9707b7b4d0155f98d4b", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 2258650, - "known_for_department": "Crew", - "name": "Christopher McGovern", - "original_name": "Christopher McGovern", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483f564e375c000c527519f", - "department": "Camera", - "job": "Camera Loader" - }, - { - "adult": false, - "gender": 2, - "id": 2272446, - "known_for_department": "Crew", - "name": "Kim Fardy", - "original_name": "Kim Fardy", - "popularity": 1.139, - "profile_path": "/qDyu4KnaWLcnAwmh7RqfNMA2Iqh.jpg", - "credit_id": "646bb9b2c3514c2b08517a41", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 2, - "id": 2331651, - "known_for_department": "Art", - "name": "Mark Button", - "original_name": "Mark Button", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648331bde375c0011c7f3150", - "department": "Art", - "job": "Concept Artist" - }, - { - "adult": false, - "gender": 2, - "id": 2363529, - "known_for_department": "Crew", - "name": "Richard Frazer", - "original_name": "Richard Frazer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc64fd18572010199767b", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 2378823, - "known_for_department": "Acting", - "name": "Brenda Lorena Garcia", - "original_name": "Brenda Lorena Garcia", - "popularity": 1.808, - "profile_path": "/yxoH72yZxvykjONyOdHQjwhf3DN.jpg", - "credit_id": "64836738bf31f2505f3dee25", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2396253, - "known_for_department": "Production", - "name": "Matt Craufurd", - "original_name": "Matt Craufurd", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64833642c9dbf90100cac2ee", - "department": "Production", - "job": "Location Manager" - }, - { - "adult": false, - "gender": 0, - "id": 2396256, - "known_for_department": "Production", - "name": "Matt Risebrow", - "original_name": "Matt Risebrow", - "popularity": 0.742, - "profile_path": null, - "credit_id": "64833615d2b209010c186481", - "department": "Production", - "job": "Location Manager" - }, - { - "adult": false, - "gender": 0, - "id": 2423284, - "known_for_department": "Crew", - "name": "Billy Clements", - "original_name": "Billy Clements", - "popularity": 0.703, - "profile_path": null, - "credit_id": "648366f8d2b20900ca1e7f70", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2441229, - "known_for_department": "Crew", - "name": "Oleg Podobin", - "original_name": "Oleg Podobin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bba9133a3760175d3eabd", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2441460, - "known_for_department": "Visual Effects", - "name": "Alistair Williams", - "original_name": "Alistair Williams", - "popularity": 0.898, - "profile_path": null, - "credit_id": "6483031099259c00e2f417f4", - "department": "Visual Effects", - "job": "Special Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2477289, - "known_for_department": "Production", - "name": "Samantha Arnold", - "original_name": "Samantha Arnold", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648363b5e375c0011c7f45e4", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 1, - "id": 2487281, - "known_for_department": "Art", - "name": "Chloe Kletsa", - "original_name": "Chloe Kletsa", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6461b5436e0d7200e31d2956", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 2580099, - "known_for_department": "Sound", - "name": "Alan MacFeely", - "original_name": "Alan MacFeely", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bb8bfd1857201802df85c", - "department": "Sound", - "job": "Sound Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 2757911, - "known_for_department": "Costume & Make-Up", - "name": "Tania Couper", - "original_name": "Tania Couper", - "popularity": 0.652, - "profile_path": null, - "credit_id": "64833722bf31f25055a02435", - "department": "Costume & Make-Up", - "job": "Hair Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2833420, - "known_for_department": "Acting", - "name": "John P. Husky", - "original_name": "John P. Husky", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64833892bf31f25055a024cb", - "department": "Visual Effects", - "job": "VFX Editor" - }, - { - "adult": false, - "gender": 1, - "id": 2881848, - "known_for_department": "Crew", - "name": "Aurélia Agel", - "original_name": "Aurélia Agel", - "popularity": 4.904, - "profile_path": "/zHFdxVRVfBI4rrMBUsSyzUbZGzN.jpg", - "credit_id": "646bb8e0c3514c2b0a33729f", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 2897052, - "known_for_department": "Sound", - "name": "Mike Lerma", - "original_name": "Mike Lerma", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648301a0d2b209012dfc25ed", - "department": "Sound", - "job": "Dialogue Editor" - }, - { - "adult": false, - "gender": 2, - "id": 3090492, - "known_for_department": "Art", - "name": "Lance Ashton Slaton", - "original_name": "Lance Ashton Slaton", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483336ac9dbf900e3fef317", - "department": "Art", - "job": "Storyboard Artist" - }, - { - "adult": false, - "gender": 1, - "id": 3104797, - "known_for_department": "Art", - "name": "Trixie Gardner", - "original_name": "Trixie Gardner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646b5ef7d185720140321b56", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 3114050, - "known_for_department": "Directing", - "name": "Luís Sérgio", - "original_name": "Luís Sérgio", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64836435bf31f25054b52c4f", - "department": "Directing", - "job": "Third Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 3140713, - "known_for_department": "Visual Effects", - "name": "Jack Dorst", - "original_name": "Jack Dorst", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc63854a098011b2c1ebe", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 1, - "id": 3167141, - "known_for_department": "Production", - "name": "Katie Byles", - "original_name": "Katie Byles", - "popularity": 0.618, - "profile_path": null, - "credit_id": "64833134c9dbf900c570ffd1", - "department": "Production", - "job": "Production Manager" - }, - { - "adult": false, - "gender": 2, - "id": 3167155, - "known_for_department": "Art", - "name": "Alex Caldow", - "original_name": "Alex Caldow", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648331d999259c00ff0dd6f7", - "department": "Art", - "job": "Concept Artist" - }, - { - "adult": false, - "gender": 1, - "id": 3171603, - "known_for_department": "Sound", - "name": "Tavish Grade", - "original_name": "Tavish Grade", - "popularity": 1.078, - "profile_path": null, - "credit_id": "646bb8a5d1857200e5a543c6", - "department": "Sound", - "job": "Foley Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 3231760, - "known_for_department": "Production", - "name": "Danny Khoudary", - "original_name": "Danny Khoudary", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483367fd2b20900ad3ba10c", - "department": "Production", - "job": "Location Manager" - }, - { - "adult": false, - "gender": 2, - "id": 3258510, - "known_for_department": "Crew", - "name": "Carlos Castillo", - "original_name": "Carlos Castillo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64836613bf31f25055a037cb", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 3397648, - "known_for_department": "Editing", - "name": "Mike Azevedo", - "original_name": "Mike Azevedo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648337bebf31f250570590b9", - "department": "Editing", - "job": "First Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 3446430, - "known_for_department": "Crew", - "name": "James Apps", - "original_name": "James Apps", - "popularity": 1.105, - "profile_path": null, - "credit_id": "6483680699259c011c3fa3c4", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3448760, - "known_for_department": "Camera", - "name": "Peter Hayley-Barker", - "original_name": "Peter Hayley-Barker", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64833ce299259c00e2f4352f", - "department": "Camera", - "job": "Best Boy Grip" - }, - { - "adult": false, - "gender": 0, - "id": 3455960, - "known_for_department": "Visual Effects", - "name": "Dayaliyah Lopez", - "original_name": "Dayaliyah Lopez", - "popularity": 0.607, - "profile_path": null, - "credit_id": "646bc690c3514c2b0a3375f0", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 2, - "id": 3480232, - "known_for_department": "Directing", - "name": "Kyle Williams", - "original_name": "Kyle Williams", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64836415e2726000e8c01bea", - "department": "Directing", - "job": "Third Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 3485650, - "known_for_department": "Crew", - "name": "Matthew Bouchard", - "original_name": "Matthew Bouchard", - "popularity": 0.608, - "profile_path": null, - "credit_id": "646bc51ed1857200e5a546a7", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 2, - "id": 3491157, - "known_for_department": "Sound", - "name": "Mikel Parraga-Wills", - "original_name": "Mikel Parraga-Wills", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64830294e272600107216890", - "department": "Sound", - "job": "Foley Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 3526390, - "known_for_department": "Camera", - "name": "Lee Godfrey", - "original_name": "Lee Godfrey", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64833cc2bf31f25054b51c61", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 1, - "id": 3532449, - "known_for_department": "Acting", - "name": "Julia Schunevitsch", - "original_name": "Julia Schunevitsch", - "popularity": 0.6, - "profile_path": "/iCGvMtqjwsyLBYRGjY11wbmml9.jpg", - "credit_id": "646bbb03a5046e00e5b76cd4", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 3572158, - "known_for_department": "Art", - "name": "Giulia Romolini", - "original_name": "Giulia Romolini", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646b5f3d54a098011b2bfa36", - "department": "Art", - "job": "Set Decoration Buyer" - }, - { - "adult": false, - "gender": 0, - "id": 3593550, - "known_for_department": "Production", - "name": "Eleri Coulten", - "original_name": "Eleri Coulten", - "popularity": 0.608, - "profile_path": null, - "credit_id": "648335f2bf31f250569accca", - "department": "Production", - "job": "Location Manager" - }, - { - "adult": false, - "gender": 0, - "id": 3596370, - "known_for_department": "Editing", - "name": "Delaney Del Vecchio", - "original_name": "Delaney Del Vecchio", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648338c1c9dbf9011dfb4cdf", - "department": "Visual Effects", - "job": "VFX Editor" - }, - { - "adult": false, - "gender": 2, - "id": 3650884, - "known_for_department": "Visual Effects", - "name": "James Schembri", - "original_name": "James Schembri", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc705d18572016192d53a", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3665887, - "known_for_department": "Crew", - "name": "Ricardo Coelho", - "original_name": "Ricardo Coelho", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc52d7b7b4d011b7971d7", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 0, - "id": 3665900, - "known_for_department": "Crew", - "name": "Valter Évora", - "original_name": "Valter Évora", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc5c433a3760101fbf4d9", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 0, - "id": 3693862, - "known_for_department": "Production", - "name": "Danielle Stanners", - "original_name": "Danielle Stanners", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483359199259c011c3f8ffe", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3734578, - "known_for_department": "Crew", - "name": "Aaron Parrott", - "original_name": "Aaron Parrott", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc5882bcf670155842a66", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 0, - "id": 3804025, - "known_for_department": "Directing", - "name": "Brunella De Cola", - "original_name": "Brunella De Cola", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6461b52ddbbb420153068abc", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 3812676, - "known_for_department": "Visual Effects", - "name": "Tommy Leigh", - "original_name": "Tommy Leigh", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc69dc3514c2b0a3375f5", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3845493, - "known_for_department": "Visual Effects", - "name": "David Clifton", - "original_name": "David Clifton", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc609a5046e012468f568", - "department": "Visual Effects", - "job": "VFX Artist" - }, - { - "adult": false, - "gender": 0, - "id": 3852774, - "known_for_department": "Crew", - "name": "Nathan Grant", - "original_name": "Nathan Grant", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483376bc9dbf900e3fef50a", - "department": "Costume & Make-Up", - "job": "Costumer" - }, - { - "adult": false, - "gender": 0, - "id": 3880571, - "known_for_department": "Art", - "name": "Olivia Dibs", - "original_name": "Olivia Dibs", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646b5eeb2bcf6700e3bbc228", - "department": "Art", - "job": "Set Decoration Buyer" - }, - { - "adult": false, - "gender": 0, - "id": 3897577, - "known_for_department": "Art", - "name": "Joshua Benedetti", - "original_name": "Joshua Benedetti", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648335dabf31f2505f3ddb31", - "department": "Production", - "job": "Location Manager" - }, - { - "adult": false, - "gender": 1, - "id": 4062789, - "known_for_department": "Art", - "name": "Miranda Keeble", - "original_name": "Miranda Keeble", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6461b53a8c44b90119cb1352", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 4074776, - "known_for_department": "Art", - "name": "Jourdan McKee", - "original_name": "Jourdan McKee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646b5f2b33a37600e67b90bd", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 4074777, - "known_for_department": "Art", - "name": "Morena Trevisiol", - "original_name": "Morena Trevisiol", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646b5f4d54a098011b2bfa4b", - "department": "Art", - "job": "Set Decoration Buyer" - }, - { - "adult": false, - "gender": 0, - "id": 4075433, - "known_for_department": "Crew", - "name": "Brittany Marcotte", - "original_name": "Brittany Marcotte", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483674d99259c00ff0def0a", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4075434, - "known_for_department": "Crew", - "name": "Caitlin McNerney", - "original_name": "Caitlin McNerney", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483676bc9dbf900c57116e9", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4075444, - "known_for_department": "Crew", - "name": "Anastajah Stearns", - "original_name": "Anastajah Stearns", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bbb532bcf67013896044a", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4075447, - "known_for_department": "Crew", - "name": "Arttu Stenberg", - "original_name": "Arttu Stenberg", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648366adc9dbf9013a060226", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4075451, - "known_for_department": "Crew", - "name": "Oli Ward", - "original_name": "Oli Ward", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bbb7a2bcf6700fe61a225", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4075464, - "known_for_department": "Costume & Make-Up", - "name": "Chiara Ciotti", - "original_name": "Chiara Ciotti", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bbc362bcf670172b28f9a", - "department": "Costume & Make-Up", - "job": "Set Costumer" - }, - { - "adult": false, - "gender": 0, - "id": 4075469, - "known_for_department": "Art", - "name": "Virgilio Leandro", - "original_name": "Virgilio Leandro", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bbd36d1857201019973b4", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 4075492, - "known_for_department": "Crew", - "name": "Joshua Connaway", - "original_name": "Joshua Connaway", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc53ca5046e018942785f", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 0, - "id": 4075493, - "known_for_department": "Crew", - "name": "Andrea Ghellere", - "original_name": "Andrea Ghellere", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc5507b7b4d0155f99105", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 0, - "id": 4075494, - "known_for_department": "Crew", - "name": "Stuart Lovelock", - "original_name": "Stuart Lovelock", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc56c2bcf67013896072d", - "department": "Crew", - "job": "Special Effects" - }, - { - "adult": false, - "gender": 0, - "id": 4075495, - "known_for_department": "Crew", - "name": "Leon Van Der Walt", - "original_name": "Leon Van Der Walt", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc59e7b7b4d011b7971ed", - "department": "Crew", - "job": "Special Effects" - }, - { - "adult": false, - "gender": 0, - "id": 4075506, - "known_for_department": "Visual Effects", - "name": "Renée MacCarthy", - "original_name": "Renée MacCarthy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc6acc3514c2b0bf36e0a", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 1, - "id": 4104243, - "known_for_department": "Art", - "name": "Annabel Gibb", - "original_name": "Annabel Gibb", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64833484bf31f250569acbfb", - "department": "Art", - "job": "Graphic Designer" - }, - { - "adult": false, - "gender": 0, - "id": 4104274, - "known_for_department": "Crew", - "name": "Fiona Cousins", - "original_name": "Fiona Cousins", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64833af0e2726000c92fef81", - "department": "Crew", - "job": "Special Effects Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4104520, - "known_for_department": "Directing", - "name": "Nick White", - "original_name": "Nick White", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648363fabf31f2505880d480", - "department": "Directing", - "job": "Third Assistant Director" - }, - { - "adult": false, - "gender": 2, - "id": 4105289, - "known_for_department": "Camera", - "name": "Holden Miller", - "original_name": "Holden Miller", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483f52ae375c000acc505eb", - "department": "Camera", - "job": "Second Assistant \"B\" Camera" - }, - { - "adult": false, - "gender": 2, - "id": 4105290, - "known_for_department": "Camera", - "name": "Augustus Bechtold", - "original_name": "Augustus Bechtold", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483f555e375c000c5275192", - "department": "Camera", - "job": "Second Assistant \"C\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 4105293, - "known_for_department": "Camera", - "name": "Madie Ramser", - "original_name": "Madie Ramser", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483f59599259c00c5b44b00", - "department": "Camera", - "job": "Digital Imaging Technician" - }, - { - "adult": false, - "gender": 2, - "id": 4105310, - "known_for_department": "Crew", - "name": "Michael Serr", - "original_name": "Michael Serr", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483f819e272600128798855", - "department": "Crew", - "job": "Security" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "All About the Alfa Romeo", - "key": "mvqhB91E0Is", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-09-20T16:00:43.000Z", - "id": "650b524181c7be00adff1edd" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Agency's Home Invasion is No Match for Jakob and Mia", - "key": "z_rdUKMFpFc", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-09-19T16:00:46.000Z", - "id": "650b526981c7be010052d11c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Behind the 7 Hills of Rome Chase Scene", - "key": "wB64FqJ-H3s", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-09-17T14:00:40.000Z", - "id": "650b525e0d5d8500c3e9e04a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Dom and Dante Face Off in a Race to Settle the Score", - "key": "588qfb08rWM", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-09-15T17:00:02.000Z", - "id": "6504f15642d8a500c4fae970" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Behind the Iconic Flaming Bomb Ball Scene", - "key": "n9NpviAdKhs", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-09-15T14:00:37.000Z", - "id": "6504efc3373ac200c530f93c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Return of Hobbs Behind the Scenes", - "key": "of-LdY_oR7E", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-09-10T16:00:39.000Z", - "id": "650b5253501cf200e3c0f76a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "EVEN MORE Gags, Giggles and Goofy Bloopers from The Fast X Set", - "key": "i3F4zEOfYWA", - "site": "YouTube", - "size": 1080, - "type": "Bloopers", - "official": true, - "published_at": "2023-09-08T16:00:41.000Z", - "id": "64fffa9be0ca7f014f7045c7" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "How Fast X Intertwines With All The Other Fast Movies", - "key": "OKsfbx2_8D4", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-09-06T17:06:41.000Z", - "id": "64fffa8ce0ca7f014f7045ba" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Thought Process Behind the Big Truck & Off Road Cars", - "key": "fQxBVl3rk3k", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-09-03T13:00:27.000Z", - "id": "64fffa71efea7a00fd1b3e9a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Gags, Giggles and Goofy Bloopers from The Fast X Set", - "key": "RTdRK_JWCzE", - "site": "YouTube", - "size": 1080, - "type": "Bloopers", - "official": true, - "published_at": "2023-09-02T13:30:08.000Z", - "id": "64fffa621bf26600ac74a5f6" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "My Universal Story: Debbie Evans", - "key": "WwiGlsZpq_c", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-08-18T16:20:49.000Z", - "id": "64f9dedf5f2b8d0139d0b725" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "My Universal Story: Jalil Jay Lynch", - "key": "ia-WNRo5Kac", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-08-17T17:27:12.000Z", - "id": "64f9deba5f2b8d00e12e53bd" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Directing Fast X With All Things Rio De Janeiro in Mind", - "key": "hHShTJfki7w", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-08-13T16:00:35.000Z", - "id": "64e37aba544c4100ac3d18c3" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Charger: Main 'Character' Energy", - "key": "HTNKJWmWeW4", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-08-12T16:00:12.000Z", - "id": "64e37bb27ef381209b426967" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Han Arrives At Shaw's Safehouse Clip", - "key": "s99sfCLuYV8", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-08-11T16:00:42.000Z", - "id": "64e37c867ef381209f453b15" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "All About the Cars and Bikes of Fast X", - "key": "5jgc6BWH6zc", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-08-10T16:00:08.000Z", - "id": "64e37ae57ef381209f453a9d" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Jakob & Little B Escape Dante's Kidnapping Plan Clip", - "key": "g7Fsvz7Ldgk", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-08-09T16:00:36.000Z", - "id": "64e37adbb77d4b113fc7ed07" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Tess Tells Dom About Letty: \"Nothing's Impossible!\" Clip", - "key": "TD3_PfWl0-Y", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-08-08T16:00:32.000Z", - "id": "64d30969b6c264013a867d42" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "All About Jakob's 1993 LX Mustang Behind the Scenes", - "key": "L9UBYyBzQAM", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-08-07T16:00:15.000Z", - "id": "64d309bad100b600e2674123" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Making of Little B Taking The Wheel Behind the Scenes", - "key": "r8VDA97YYv4", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-08-06T16:00:41.000Z", - "id": "64d3099e94631800e46acc98" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Scene Where Letty Chases Dante in Rome", - "key": "aQD_f0gVyPk", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-07-31T16:00:00.000Z", - "id": "64cc7ced2f266b09ebdbc3ca" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Dom Tells Dante He Burned His Father's Money Movie Clip", - "key": "bXXgx8Y1mxI", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-07-29T16:00:25.000Z", - "id": "64cc7cdd764b99011df5a768" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Complex Character of Aimes Behind the Scenes", - "key": "Aox_XNPvvHg", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-27T16:00:08.000Z", - "id": "64cc7cf8764b9900ae124fd3" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Family Generations: The Toretto Family Behind the Scenes", - "key": "35TpKLB6koc", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-26T16:00:02.000Z", - "id": "64c1c8cbdf86a8010636e552" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "John Cena Talks The Cannon Car Behind the Scenes", - "key": "aYLMRU4uLS0", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-25T16:00:01.000Z", - "id": "64c0b0c1df86a801258241d8" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Yours to Own Promo", - "key": "_aMNKTiVbg4", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-25T13:00:32.000Z", - "id": "64c0b099514c4a014412860f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Dante Reyes Plays With Fire Extended Preview", - "key": "Dn4y8t5SlgY", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-07-13T16:49:30.000Z", - "id": "64b041b1c490480139d0a1ab" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Scene that Started the Road to Revenge", - "key": "xZd6Kxg_MDQ", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-06-23T17:51:17.000Z", - "id": "649a498e0e5aba00ffc351a0" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Every Fast & Furious Film Explained | Movies 1-9 Recap | Watch Before Fast X", - "key": "SP_h-m2vmv0", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-13T14:20:10.000Z", - "id": "648c505342bf010101bd8364" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Time Moves Fast", - "key": "A3GBDEE3zxY", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-26T22:50:56.000Z", - "id": "647c3c25174973013501bf63" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Nathalie Emmanuel", - "key": "qIeXWLwM4s0", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-26T03:33:44.000Z", - "id": "6472aaf4a199a600f9426240" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Bomb Ball Meets Bus", - "key": "kshxFw49kaI", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-18T01:32:37.000Z", - "id": "646671d12bcf6700fe5f1dcc" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Rome Bike Chase", - "key": "wU7x1h2f7mE", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-17T23:09:49.000Z", - "id": "646675592bcf670172b01cc2" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Premiere in Rome", - "key": "d5vE5_w6cVE", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-17T21:49:27.000Z", - "id": "6466719c006b0100e6b338e1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Brie Larson", - "key": "OCzugJMrFb4", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-17T02:12:59.000Z", - "id": "646671cb2bcf6700e3b9793d" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "John Cena", - "key": "K4Gqwv31mGk", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-16T20:10:55.000Z", - "id": "646671c14c1d9a00e59c933c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Battle Royale", - "key": "NacLe5HWXvI", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-15T23:05:08.000Z", - "id": "646671b9d1857201802bb6cb" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Final Trailer", - "key": "eoOaKN4qCKw", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-05-15T16:08:35.000Z", - "id": "64626469a67254012212d915" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "When in Rome", - "key": "TNkbCL_V5DM", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-14T02:07:14.000Z", - "id": "646671f32bcf6700e3b9794a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Shooting in Rome", - "key": "qqe1TKbADco", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-11T16:00:28.000Z", - "id": "645d75dabcf8c900feece981" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "BTS Experience: Charger Vs. Helicopters", - "key": "lIU6Phjlve4", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-11T09:02:08.000Z", - "id": "647a188e0e29a20133c2f706" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Vin & Helen in Rome", - "key": "ruaaUNOX4RE", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-10T20:43:31.000Z", - "id": "645cc14477d23b0119e2b8bc" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Letty v Cipher", - "key": "h221iD_mavU", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-10T19:54:36.000Z", - "id": "645cc136156cc7011e022490" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Father/Son", - "key": "5PtyiUTuSsk", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-05T16:16:19.000Z", - "id": "645cc121fe077a5caae12275" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Soundtrack - \"Won't Back Down\"", - "key": "2g89gd7SxNo", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-04T22:26:28.000Z", - "id": "645cc10c6aa8e000e4bea48a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Open Road", - "key": "vvazj_Ycw_w", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-05-02T18:33:21.000Z", - "id": "645cc0fc77d23b0119e2b881" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Who Is Dante?", - "key": "YrL5EnT9yeE", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-04-28T16:00:34.000Z", - "id": "644c7cb5336e0102fb73bd40" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "A war is coming. Choose your side.", - "key": "p8wBUAP9enQ", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-04-27T07:52:20.000Z", - "id": "649b4b84c392660125bf165f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "FASTEN your seatbelt for the ultimate showdown", - "key": "29fD-VqB0BM", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-04-27T07:50:37.000Z", - "id": "649b4ba1fd4f8000cb30de07" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "One Last Ride", - "key": "_3F5v1DU69U", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-04-27T07:45:24.000Z", - "id": "649b4bb0fd4f8000cb30de0b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer 2", - "key": "aOb15GVFZxU", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-04-19T21:00:53.000Z", - "id": "64405cc504863802fb116479" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Bronny James - \"Family Business\"", - "key": "o_M9xUOJJjA", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-04-15T20:12:53.000Z", - "id": "643b8e2d46aed4049e4f695f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "A Look Inside", - "key": "yyvwReEYUNQ", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-04-07T16:00:44.000Z", - "id": "64348b2be92d830113089dbc" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "For Fans and Family", - "key": "hzO1U2hhZ_o", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-03-31T16:00:09.000Z", - "id": "6427894301b1ca0097fd43e5" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Big Game Spot", - "key": "8oBHRjnQCFE", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-02-12T23:55:04.000Z", - "id": "63e97dc6d388ae007d2a15b6" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Ensemble", - "key": "1w90tQTzJz8", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-02-10T19:15:13.000Z", - "id": "63e6b158a3d02700d333225b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "32RAq6JzY-w", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-02-10T15:44:35.000Z", - "id": "63e6690a9512e1009309fd23" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/4XM8DUTQb3lhLemJC51Jx4a2EuA.jpg", - "vote_average": 5.872, - "vote_count": 25, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/fSd5MjJNcauyEbHuzUdCE1TKttK.jpg", - "vote_average": 5.732, - "vote_count": 20, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/felKdfRqoy7AcmdBvPM3wzwlZi9.jpg", - "vote_average": 5.576, - "vote_count": 13, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/cFaCF8cDUZiqj4O0S3u1jEF5Sj4.jpg", - "vote_average": 5.518, - "vote_count": 10, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/zPmXiPlB9YXT9dtSHzZHQUcpekw.jpg", - "vote_average": 5.406, - "vote_count": 22, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/27u4kBGGOQLqizEudJAOWMkvhip.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "de", - "file_path": "/roVhvqWxGYsAEyCCjtcUglsW7wS.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "fr", - "file_path": "/cpdFHkcM9jORFDH2lv62xQpytbx.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "zh", - "file_path": "/xnITQLSAQ2L4Efvte5NeYqCkmNx.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/cSWkX0fTjrBCU2sbEmyRFd1SxPA.jpg", - "vote_average": 5.292, - "vote_count": 18, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "hi", - "file_path": "/fI5RsaM0NSU6TqztRhA2pal5ezv.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "te", - "file_path": "/hVUPsfrr8v70t9q7ArmihGa7Rvo.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "ta", - "file_path": "/8UkYotdREQ0l2lJpDzzIrmgfaYm.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/iAFO26JzdXNE20xkpl2fJBQr5Jy.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1620, - "iso_639_1": null, - "file_path": "/qYunECmcgtUuh4ka8hIuGZWStxL.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2880 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/42AUEPTqYcZ5Gs1MAAv4mM7jFAY.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/uTSaToa77yLJnYyZ4uR8TDQBUMF.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/nfSrOaiUWTdMsBKG9SDfvFGZ777.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 844, - "iso_639_1": "en", - "file_path": "/ktJfY5nUvwCNr55xsviNCwAk61T.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1500 - }, - { - "aspect_ratio": 1.778, - "height": 1440, - "iso_639_1": "uk", - "file_path": "/tDpsiLhMATNburj3Gi1l6pWAOfA.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2560 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "uk", - "file_path": "/rXXrID2VIhK6ECLnsKvnzLZsCtO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "uk", - "file_path": "/Am1SL5VTKt2sGkFodub5tlnDo0.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1440, - "iso_639_1": null, - "file_path": "/e2Jd0sYMCe6qvMbswGQbM0Mzxt0.jpg", - "vote_average": 4.494, - "vote_count": 26, - "width": 2560 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/4t0oBFrJyweYPt0hocW6RUa0b6H.jpg", - "vote_average": 4.49, - "vote_count": 21, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/2e7fc8eNwLXZ5Uvehvl3xj8wVyv.jpg", - "vote_average": 4.49, - "vote_count": 21, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1215, - "iso_639_1": null, - "file_path": "/rWChG4k7aVhALZrIZ7IVAmXUMzn.jpg", - "vote_average": 4.398, - "vote_count": 18, - "width": 2160 - }, - { - "aspect_ratio": 1.778, - "height": 1215, - "iso_639_1": null, - "file_path": "/6l1SV3CWkbbe0DcAK1lyOG8aZ4K.jpg", - "vote_average": 4.382, - "vote_count": 21, - "width": 2160 - }, - { - "aspect_ratio": 1.778, - "height": 1215, - "iso_639_1": null, - "file_path": "/6aQ0iP9fmA5vI6BCFoO4sgHpFhj.jpg", - "vote_average": 4.356, - "vote_count": 19, - "width": 2160 - }, - { - "aspect_ratio": 1.778, - "height": 1215, - "iso_639_1": null, - "file_path": "/6HyCSojP7mUVpspykGGkj1RQ3pl.jpg", - "vote_average": 4.356, - "vote_count": 19, - "width": 2160 - }, - { - "aspect_ratio": 1.778, - "height": 1215, - "iso_639_1": null, - "file_path": "/hgOvm4Vpa9PzV3hdndhAJzLrVKQ.jpg", - "vote_average": 4.356, - "vote_count": 19, - "width": 2160 - }, - { - "aspect_ratio": 1.778, - "height": 1215, - "iso_639_1": null, - "file_path": "/gAo47pvBbcPGvNjjadA65WImQ6X.jpg", - "vote_average": 4.356, - "vote_count": 19, - "width": 2160 - }, - { - "aspect_ratio": 1.778, - "height": 801, - "iso_639_1": null, - "file_path": "/e2vAT27F8sa7UimZ70a5EuWIHjo.jpg", - "vote_average": 4.342, - "vote_count": 22, - "width": 1424 - }, - { - "aspect_ratio": 1.778, - "height": 901, - "iso_639_1": null, - "file_path": "/5XsuFCL8yK8vz88YlZbcschVvby.jpg", - "vote_average": 4.342, - "vote_count": 22, - "width": 1602 - }, - { - "aspect_ratio": 1.778, - "height": 1215, - "iso_639_1": null, - "file_path": "/xPrwx07hpuPaQ5NGg5doB6RlDIM.jpg", - "vote_average": 4.314, - "vote_count": 20, - "width": 2160 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "de", - "file_path": "/vx8LaqLDur3g7MbbCDaciHJQ3Gu.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/8An7XwzDmiF0lFmKW4p2pVJMuKA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/r3dTtSUW3bHjPUuKcfapikVIMgk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "uk", - "file_path": "/iyv4Aym01AjpWBjs7CvKLfFljGT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "cn", - "file_path": "/cnyrAW73WfW6SkGME7QDVrKQGP0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "zh", - "file_path": "/uKuzuY8M8vNU6Gkl3F35ReTz4zR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/caUwSNizKijnyw2kUh1rVbyEEBb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "cn", - "file_path": "/yGEudHGo6XlHGmdrv6qmgdgADqF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "zh", - "file_path": "/aaEMPaY29SxaZieoRIMpu9JhFjF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "th", - "file_path": "/qnlhkx3Qk9WGcKzc1upKQ2ylPaY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - } - ], - "logos": [ - { - "aspect_ratio": 2.804, - "height": 499, - "iso_639_1": "zh", - "file_path": "/sbbeY3l3jykr8hXX6TP8vufXXTE.png", - "vote_average": 5.522, - "vote_count": 4, - "width": 1399 - }, - { - "aspect_ratio": 1.886, - "height": 1299, - "iso_639_1": "en", - "file_path": "/8IRi8e5CN6e0p4XYkxLHyG390Su.png", - "vote_average": 5.384, - "vote_count": 2, - "width": 2450 - }, - { - "aspect_ratio": 2.099, - "height": 455, - "iso_639_1": "uk", - "file_path": "/qB9ry34n01k5r0tgBNyOBPeLkMQ.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 955 - }, - { - "aspect_ratio": 1.884, - "height": 1299, - "iso_639_1": "en", - "file_path": "/weMV2PLwFCGRBI1pUUka1SOSPt9.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 2447 - }, - { - "aspect_ratio": 1.813, - "height": 662, - "iso_639_1": "zh", - "file_path": "/rAXize5F0Fkkf7evu5bQlsmfs4J.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1200 - }, - { - "aspect_ratio": 2.452, - "height": 84, - "iso_639_1": "pt", - "file_path": "/kApAa4zuKKTeEjXO3dp1h05NOUV.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 206 - }, - { - "aspect_ratio": 1.873, - "height": 197, - "iso_639_1": "zh", - "file_path": "/l8N9YO6hyjzZrTSPGGiU0cg9yPv.png", - "vote_average": 5.252, - "vote_count": 4, - "width": 369 - }, - { - "aspect_ratio": 1.866, - "height": 441, - "iso_639_1": "en", - "file_path": "/6QX2PgiB2ff8Yk9fbp9BQPtDXIo.png", - "vote_average": 5.246, - "vote_count": 2, - "width": 823 - }, - { - "aspect_ratio": 2.593, - "height": 302, - "iso_639_1": "en", - "file_path": "/kUdEJqhFYB9mv71SAnKEGSLd9m0.png", - "vote_average": 5.246, - "vote_count": 2, - "width": 783 - }, - { - "aspect_ratio": 1.938, - "height": 292, - "iso_639_1": "en", - "file_path": "/mQh1w7dnrKMUEFWHuTbHp10pDIp.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 566 - }, - { - "aspect_ratio": 2.47, - "height": 200, - "iso_639_1": "pt", - "file_path": "/hSlUz3bG3bxxjClzPBM4MI6pfyR.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 494 - }, - { - "aspect_ratio": 2.779, - "height": 1770, - "iso_639_1": "zh", - "file_path": "/wgh7AAoVrS7o8ypks594WHd5v5k.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 4918 - }, - { - "aspect_ratio": 1.884, - "height": 164, - "iso_639_1": "zh", - "file_path": "/peRvWR9C2lHOVqv9PN7OszSLm7o.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 309 - }, - { - "aspect_ratio": 1.744, - "height": 1044, - "iso_639_1": "es", - "file_path": "/bO16PKnnMg4C6nlNvPLHBgITd39.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1821 - }, - { - "aspect_ratio": 2.123, - "height": 489, - "iso_639_1": "en", - "file_path": "/42FReZrLutJ2AqRdK5JLpch5SZ7.png", - "vote_average": 0, - "vote_count": 0, - "width": 1038 - }, - { - "aspect_ratio": 5.259, - "height": 580, - "iso_639_1": "en", - "file_path": "/l9NveI1Y6b8B55p2MhvTAMVAF1S.png", - "vote_average": 0, - "vote_count": 0, - "width": 3050 - }, - { - "aspect_ratio": 2.699, - "height": 459, - "iso_639_1": "cn", - "file_path": "/7nDWAtu8CynSKlkDURKIckj020L.png", - "vote_average": 0, - "vote_count": 0, - "width": 1239 - }, - { - "aspect_ratio": 3.408, - "height": 130, - "iso_639_1": "he", - "file_path": "/cOpAHNnWHpLLmbKKSA0tYGZHmPU.png", - "vote_average": 0, - "vote_count": 0, - "width": 443 - }, - { - "aspect_ratio": 2.085, - "height": 330, - "iso_639_1": "uk", - "file_path": "/vt6wu59s6mmMBHsakXksG2svFMH.png", - "vote_average": 0, - "vote_count": 0, - "width": 688 - }, - { - "aspect_ratio": 1.908, - "height": 348, - "iso_639_1": "fr", - "file_path": "/aqCKHRuG9HjtoEtt0cK9S5JkNej.png", - "vote_average": 0, - "vote_count": 0, - "width": 664 - }, - { - "aspect_ratio": 2.123, - "height": 2588, - "iso_639_1": "en", - "file_path": "/orgwboBz1NEA2j0rkjVP5lVRFTq.png", - "vote_average": 0, - "vote_count": 0, - "width": 5494 - }, - { - "aspect_ratio": 2.302, - "height": 149, - "iso_639_1": "pl", - "file_path": "/wQvIb7wakM9sKv5R916e9esB5nR.png", - "vote_average": 0, - "vote_count": 0, - "width": 343 - }, - { - "aspect_ratio": 1.819, - "height": 271, - "iso_639_1": "tr", - "file_path": "/f67jcTnsPR1jucXJRR0vdOlcA5P.png", - "vote_average": 0, - "vote_count": 0, - "width": 493 - }, - { - "aspect_ratio": 1.884, - "height": 1299, - "iso_639_1": "en", - "file_path": "/pXCpu8nFBeBkTH6Farg5TYPZWFx.png", - "vote_average": 0, - "vote_count": 0, - "width": 2447 - }, - { - "aspect_ratio": 5.259, - "height": 580, - "iso_639_1": "en", - "file_path": "/9LSN6oPksCbt72a2no8ygCg4G1.png", - "vote_average": 0, - "vote_count": 0, - "width": 3050 - }, - { - "aspect_ratio": 1.937, - "height": 350, - "iso_639_1": "en", - "file_path": "/mWMjHXH4tkeHoASv0XRFnt2Rpc1.png", - "vote_average": 0, - "vote_count": 0, - "width": 678 - }, - { - "aspect_ratio": 1.885, - "height": 200, - "iso_639_1": "en", - "file_path": "/E8uiJ8vJbJVDXvuY2w2OfRdLt2.png", - "vote_average": 0, - "vote_count": 0, - "width": 377 - }, - { - "aspect_ratio": 2.125, - "height": 1298, - "iso_639_1": "de", - "file_path": "/3mnPion06TMe2T1Cdu4hfzKO38A.png", - "vote_average": 0, - "vote_count": 0, - "width": 2758 - }, - { - "aspect_ratio": 2.11, - "height": 272, - "iso_639_1": "cs", - "file_path": "/9Xpy9nKhCzakFcH554SeBNYSY1k.png", - "vote_average": 0, - "vote_count": 0, - "width": 574 - }, - { - "aspect_ratio": 2.17, - "height": 376, - "iso_639_1": "ja", - "file_path": "/ke3utp3sd1yrIPmK83wSOgaz96y.png", - "vote_average": 0, - "vote_count": 0, - "width": 816 - }, - { - "aspect_ratio": 2.223, - "height": 341, - "iso_639_1": "ja", - "file_path": "/xpxLSIXzWhT6mHejArTH7VpRkKz.png", - "vote_average": 0, - "vote_count": 0, - "width": 758 - }, - { - "aspect_ratio": 2.464, - "height": 276, - "iso_639_1": "lt", - "file_path": "/ujXRlEtoN3hQceWusVLNkZbWC8h.png", - "vote_average": 0, - "vote_count": 0, - "width": 680 - }, - { - "aspect_ratio": 2.224, - "height": 304, - "iso_639_1": "es", - "file_path": "/2t72R8TVcDVhh1OxG8r7rGxuRmo.png", - "vote_average": 0, - "vote_count": 0, - "width": 676 - }, - { - "aspect_ratio": 2.474, - "height": 274, - "iso_639_1": "es", - "file_path": "/bUxkMWeorHO2PjGVDNnmPzvTJ8Y.png", - "vote_average": 0, - "vote_count": 0, - "width": 678 - }, - { - "aspect_ratio": 2.214, - "height": 304, - "iso_639_1": "es", - "file_path": "/4FG5GtvI9g4owL02CfIEOL97dCA.png", - "vote_average": 0, - "vote_count": 0, - "width": 673 - }, - { - "aspect_ratio": 2.605, - "height": 1268, - "iso_639_1": "es", - "file_path": "/aVnGAYreEqBx9So29ergHqCxL54.png", - "vote_average": 0, - "vote_count": 0, - "width": 3303 - }, - { - "aspect_ratio": 2.679, - "height": 1233, - "iso_639_1": "es", - "file_path": "/oxJkpQ1Qoa17MLGIsrGtdPaqnGj.png", - "vote_average": 0, - "vote_count": 0, - "width": 3303 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/fiVW06jE7z9YnO4trhaMEdclSiC.jpg", - "vote_average": 6.676, - "vote_count": 30, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/wDWAA5QApz5L5BKfFaaj8HJCAQM.jpg", - "vote_average": 5.27, - "vote_count": 10, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/jotrmwciqTzDvIi8qeVGwuxX2sG.jpg", - "vote_average": 6.038, - "vote_count": 15, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "kw", - "file_path": "/lpThmdw6ZY339y27MSNeILCGEWQ.jpg", - "vote_average": 5.774, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/fig4qLb0Zujy11RF6l0Kk83Ymn9.jpg", - "vote_average": 5.708, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/3qabJbQhq8SAzBo2OJjOwggVcIc.jpg", - "vote_average": 5.702, - "vote_count": 11, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/aAngiE34BMFDTOXpjc04Lr8zsX1.jpg", - "vote_average": 5.67, - "vote_count": 23, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/cXgMC3IJ6l6mUF1qzgTtNEWyrxa.jpg", - "vote_average": 5.58, - "vote_count": 11, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/j3S6HI4omonneHjZN9xypYVfEt0.jpg", - "vote_average": 5.456, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ro", - "file_path": "/7Br9F8EHrtNT2hFgD5oTfDMRgud.jpg", - "vote_average": 5.454, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/wXNihLltMCGR7XepN39syIlCt5X.jpg", - "vote_average": 5.454, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/1E5baAaEse26fej7uHcjOgEE2t2.jpg", - "vote_average": 5.418, - "vote_count": 40, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1347, - "iso_639_1": "es", - "file_path": "/3P9QvWVN02Etn4kYGC702WVoXEb.jpg", - "vote_average": 5.394, - "vote_count": 10, - "width": 898 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/pAe4mqaHI7wOS7vz4btYAiX4UVN.jpg", - "vote_average": 5.392, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/4CWoalqAsRzXD9AFbByD1KnH40E.jpg", - "vote_average": 5.392, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/wBkJTzX1sHFUanrI523KQTcj3wm.jpg", - "vote_average": 5.39, - "vote_count": 6, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ja", - "file_path": "/3IZ8I193Y3mWMdOfaUAEWX2JibV.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/eSB9684DTVDbNUhDCsnBx3SU5hx.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/3GkuOxbTk9JL2zHCakRM4eX9N9Y.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/dNHTCruUWuK47FtfOYvd1woj6CG.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ja", - "file_path": "/uQ30hRIzo9rcM8HZVC4nm28pQSA.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/hd22RLAKL4qjIPsNQDcUvoEhK95.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/qDRrP4NATGTWH8ORJV6T0BeoIhQ.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/d5ZbYXDphIYqa9t9tokC1Qonoqr.jpg", - "vote_average": 5.348, - "vote_count": 19, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/tSxpZkBCN4xCVM5wIrOtXfn86Nr.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/soRynyMkGw5Q4i5XXHPIWpVLPri.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/7FmST1kvqqo9jA0lxVdWfp1mhlg.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/9vaMNbnOGoHy609Ne0of7hd6NTX.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/j2Z7q87RxIgCDgbQhbfss45YQch.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/tfW94ZOaDTAcrjI3TtLSyX26Tt5.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/di98mdTPBhFCCoJRH564HHV3O3d.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/umNxed58OmtR4GvHfuoahOxM1RR.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/mS9JUVHfhRPmv7JsvpzqeffCuP9.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/nc01e8DqJEr1GLzqoS5vVpZERcL.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/rT63a6CVP8I0htX02ydWw053zgQ.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2998, - "iso_639_1": "kk", - "file_path": "/uhHUpWzxWrzY7Fz6XtmosqQCykp.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1999 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/brZzXXQ8GuzlAdu4TJxjhC8ebBL.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/zGutba8xgknUJsrGpkDLkmjLiqN.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1420, - "iso_639_1": "fr", - "file_path": "/piYNJlLvSlXYnXh6ZoKzhPdrMfV.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 947 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/t1vPsJUBsh3gkgkZlqDNmCPyy49.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2953, - "iso_639_1": "nl", - "file_path": "/mvPfKR92ET6As8gsylmKqkFCJ60.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1968 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/y6dM5udfW0O5XpPVfg2fN6zrXVb.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/spnyWY1ZrQf16TZiSZ6OLc24Vyx.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/cltj9nKLzl0HXtz2qdu55BoIgOn.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/aAbah1LXhItOU9pSPR1ELEacdVN.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/x9WJ4B4NEzAgfog1aGOpJV9qod2.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/yldJm2GI7kcfoSmtRJBQ9oRZKJy.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pl", - "file_path": "/3sFkBUkZtGb7bhVMi5uv1MdKlis.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "tr", - "file_path": "/i2DDZdMndNoQxCte3U7gkGJRl95.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "no", - "file_path": "/ppLCKh7MHB1ioznKwBo16zCjnKI.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hr", - "file_path": "/cTctDhck3tthYEwX46BjNTHP1fq.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1024, - "iso_639_1": "ja", - "file_path": "/fhiKkTG5b8DLnMzid4oVSS6fUVy.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 683 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/cEJzfxB1Da0xhuLsNHYkDrBrleX.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.696, - "height": 862, - "iso_639_1": "bg", - "file_path": "/qjQzWj7ag7NELOkTdU0Xx37Edzo.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/djyuQERE0JFhzadJjb7q5BJ57iu.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.698, - "height": 1500, - "iso_639_1": "el", - "file_path": "/jx9YsketQXqpThnMnWwOl4AqPPZ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1047 - }, - { - "aspect_ratio": 0.665, - "height": 2663, - "iso_639_1": "ar", - "file_path": "/mgBcSHJt8fcRfXn8LcWusrCt0Kw.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1772 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ibP3keZEVub4ZUw6Ay7Duw6EFHB.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/Ap1pv7nJmTxfoAXwYJ26H1bIqvd.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/sNgzw1wNvZwa1SfoPun3v5bf3tu.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.707, - "height": 2245, - "iso_639_1": "en", - "file_path": "/mtODmPdj0QvRGRbA8TbRHwbVDjr.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1587 - }, - { - "aspect_ratio": 0.667, - "height": 1440, - "iso_639_1": "pt", - "file_path": "/wOXyBCjz276B84vSFcqvBMfyWWu.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 960 - }, - { - "aspect_ratio": 0.667, - "height": 1551, - "iso_639_1": "pt", - "file_path": "/q4502qjr4xvzezFsdSuruyeqL5K.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1034 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/hC6mLdlgpFU63FOduX80xaGevGj.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "th", - "file_path": "/diG4W9Ounq7yqbLJOrw7h9grUoi.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/7BOzdJavykpnCZ5oTYvmtTTbK9O.jpg", - "vote_average": 5.286, - "vote_count": 16, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/4HvouZcwdO4DDhb1RPPARcZWZLV.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/x3zlm6VxPvVrYWE3bHkYUQMR798.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "za", - "file_path": "/sojAcZ6Y2OWJp3gcHqdhXvRi477.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "hu", - "file_path": "/owE3aDOOXZdpTrmoM3mkidZyu5n.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/7tbQEN9yEFkuxhsvF0eh7dckLTQ.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "th", - "file_path": "/g0mLydTMY5MFSLrXALvJQprQOF9.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1080, - "iso_639_1": "no", - "file_path": "/tHLcRopzCvGIG4Ia1H7ai6uE4N0.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 720 - }, - { - "aspect_ratio": 0.667, - "height": 1421, - "iso_639_1": "tr", - "file_path": "/iX5gKEV1TuAGHBUWNRHhX28H9JE.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 948 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "hr", - "file_path": "/r5nuTdvcaFsIVQyZ9hnNd9eOOri.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/3JT1oE0JIA6CQJaZDG00y3S0kP3.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1890 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/xdTpK5Wa1z9jK9YEZBVr7ggFctC.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "th", - "file_path": "/z0zpP62nuL4KGFoUEcfyN1vQvNF.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zeJhXyQ6vKyVlKEfNXkUww19SmY.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/mJIeMHYklKvLjA3dSdmbLY2YU42.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/hGfDhCta2BlganQXYzQ0oxduost.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/l31hvzHjfj903hGBgL1v3uGGwU8.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2926, - "iso_639_1": "uk", - "file_path": "/qMcNErmznrcaWxQ5WQESBfvNsA3.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 1951 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/gsIzuN31hIqfg2uO2FXd5bGzTwH.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/nvRk8SNGTDL9C9rnHPCyIXxyKvA.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1420, - "iso_639_1": "uk", - "file_path": "/fBLYzYXE8SZsdAuYcDo89aOsEpu.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 947 - }, - { - "aspect_ratio": 0.667, - "height": 1588, - "iso_639_1": "ko", - "file_path": "/r2KV0wfO276KFQIylYcBsnrKZtD.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1059 - }, - { - "aspect_ratio": 0.666, - "height": 1280, - "iso_639_1": "de", - "file_path": "/45uZLI8ZRDzlVgmNHtXvyn4z0I8.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 853 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/7kZmCSzwpJ1uJ1liwSznUK1go8.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/kaVxdesr6etK4i2YXqAc5goLU1l.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/5nFRXUniyuW8uPH23CEUtBpJHvV.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/y9P1FWKHMfygpRM2NzcpzMhITGg.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/3DD9HZMnOYwnIEWgkB58fdhYNR7.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/tQEYX2dr12Cx0iDqBegtUsCe1df.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/78kg15rbUg63k2iHs8i1FV2pDMR.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/pRE8CbnJV6lr5gk1STyRJSlYMBK.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/A1alo61fhsNLe1EfrSaPPznoyjk.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/55Iy9Kq6A9qV9JM4qkS1eRoiZrR.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/oRctTWSwiBLxJscJaMSEf9tcXMc.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/zdxTu4WOTGhsDTpSjM73XMqnNy7.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.707, - "height": 2245, - "iso_639_1": null, - "file_path": "/r4FrA32roClXwojIwil0tZEUeym.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1587 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/5rXqIrwkfDyGtvfnhw7JMkZXpG8.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/r6xXjyDJrf1BR5pZpMvdSjqxuJs.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/mVhZh0bAzMO6lMtIzw13lacZS8w.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/5wcrcSbP2bmAu0adAwVIxIBNFml.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/rEWgUzd4BbOZPmuNOXKZnYYcObU.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/9isP396pr7SRFPDZhUbJ3EeH6qD.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/uwXJyiH2fbfvlF68zOQqzFCvYvg.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/xQXL4E345NZsD2BDRdTCnnUndZ8.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/kRyZLt4iX8BPsRHxKpGCYXXeCVo.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/3IlQxwKiPvBlehocPmH1fgRS6AJ.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/h4ffPbZeAMXVz6buRNrXz9IEQDE.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1515, - "iso_639_1": "es", - "file_path": "/4A76udAc8XWmLs1T29Kocw5Go3H.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 1010 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "es", - "file_path": "/oJULSxKwGtvN51l2dn71eiXlh8i.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1359, - "iso_639_1": "pt", - "file_path": "/nxrmpkwVdmiVAiRTqSSC2SateN2.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 906 - }, - { - "aspect_ratio": 0.666, - "height": 1236, - "iso_639_1": "en", - "file_path": "/8hE5QQz6lqHdr0P6hpypR1lsoFS.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 823 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/sPvUhbXxPGCpVL9vd9Q1PZaJSoh.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/7aqb4WIM17XXjZtJURg7PxctlID.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/dxcEURrL1hZqR4VTFeH5YQQkXfZ.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/flZ5qSTH7sUIMhyUHulSa3BzL1T.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "es", - "file_path": "/7kLe1D8vycFLkMSJJa2sws6CMm8.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 839 - }, - { - "aspect_ratio": 0.666, - "height": 758, - "iso_639_1": "es", - "file_path": "/hc2ymDMfOCZ0JqrsMUBgL1GZXnz.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 505 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/MSc1kcaHXvvyGgoyjDa60jxdqq.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.674, - "height": 2780, - "iso_639_1": "zh", - "file_path": "/7RZBVldmMJKftejbKUNM2YBm6mZ.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1875 - }, - { - "aspect_ratio": 0.667, - "height": 2841, - "iso_639_1": "zh", - "file_path": "/9Pr0dfOY2aEU6fM09qNwghDV9ZB.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1894 - }, - { - "aspect_ratio": 0.664, - "height": 2764, - "iso_639_1": "zh", - "file_path": "/caGorIvGiJ6wGSyUtLlL1QZEyS4.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1834 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/apBvqyQ7WnjHTPv3XZOtuhSlt55.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/2H8oC0O4VgcjjhWqFz9EtXAYFrV.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/qhpHazAbCx4Gaa3IdceZPvbYyNN.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/4RqPyM4dTKh7jC4udvC4IDs0nRA.jpg", - "vote_average": 5.034, - "vote_count": 12, - "width": 2000 - }, - { - "aspect_ratio": 0.701, - "height": 1426, - "iso_639_1": "en", - "file_path": "/faxj22bQODBwLH5t3XIZuxsNvo4.jpg", - "vote_average": 5.01, - "vote_count": 8, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/u9gfzwLEQkFO2DtvQbWwdtJd6hX.jpg", - "vote_average": 5.01, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.75, - "height": 1350, - "iso_639_1": "en", - "file_path": "/mbPcdLZe4tm1dlDPs8Cn5APewTP.jpg", - "vote_average": 4.996, - "vote_count": 6, - "width": 1012 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "en", - "file_path": "/2h2Ctf9YN3O7HQFC8ZU6SrzDZrl.jpg", - "vote_average": 4.994, - "vote_count": 15, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "en", - "file_path": "/9wlfuanzf2KYpWIZ8aRz5EUzXuS.jpg", - "vote_average": 4.982, - "vote_count": 13, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 1611, - "iso_639_1": "en", - "file_path": "/mdO0ClUWqtmqXXYl9DqkKqkaIkx.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 1074 - }, - { - "aspect_ratio": 0.667, - "height": 1941, - "iso_639_1": "en", - "file_path": "/rZXWim0nscxUO55etqe6F3d6She.jpg", - "vote_average": 4.968, - "vote_count": 11, - "width": 1294 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/nDVxy2OGomBupaVSyhcgzszcvFD.jpg", - "vote_average": 4.956, - "vote_count": 18, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1349, - "iso_639_1": "en", - "file_path": "/nKwrK05LxpjHEDURaEV0DBjdD2o.jpg", - "vote_average": 4.914, - "vote_count": 12, - "width": 899 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gkT72YFmnHBzjKLlMzq4V6BiNH3.jpg", - "vote_average": 4.898, - "vote_count": 10, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/rHfkMVq4BF5AQlqIqwR1XjcWvDl.jpg", - "vote_average": 4.858, - "vote_count": 27, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1687, - "iso_639_1": "en", - "file_path": "/zWJHY9QYzEcXmQ7BUg0qJxSICzd.jpg", - "vote_average": 4.846, - "vote_count": 11, - "width": 1125 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/c7C3owsl09O9kO6XH2UQF89yuLw.jpg", - "vote_average": 4.846, - "vote_count": 11, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/3WidiKLlEjtsuEM5P5TsxtXTg2c.jpg", - "vote_average": 4.846, - "vote_count": 11, - "width": 2000 - }, - { - "aspect_ratio": 0.676, - "height": 888, - "iso_639_1": "en", - "file_path": "/2DyEk84XnbJEdPlGF43crxfdtHH.jpg", - "vote_average": 4.844, - "vote_count": 18, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/jmdi62j5uJV60EtYY8zsE1LRYEf.jpg", - "vote_average": 4.828, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/mE7COyDY1e55YIfvqgtv3gQe9xt.jpg", - "vote_average": 4.774, - "vote_count": 10, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 3000, - "iso_639_1": "en", - "file_path": "/bkk2bajJxs9EIIGmJr4ONcETOMM.jpg", - "vote_average": 4.774, - "vote_count": 10, - "width": 1998 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cbRMR9p0ity5RtaM2jSW0cS2LIX.jpg", - "vote_average": 4.694, - "vote_count": 14, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/2X8ylHj0f303Lsqxl6TN98OXXfS.jpg", - "vote_average": 4.694, - "vote_count": 14, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/9iHphXoopQeq97myliIc7GFeMBR.jpg", - "vote_average": 4.652, - "vote_count": 10, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/y1VKMuof5LPItKtQclX9jzDQjNw.jpg", - "vote_average": 4.552, - "vote_count": 12, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/aV9JXMuaO9zSDOc64utU6bKk07T.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.677, - "height": 1910, - "iso_639_1": "tr", - "file_path": "/yhwvLRgkoUM5hJEpAYUhY73wa6E.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1294 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ar", - "file_path": "/qzyVx4lBkkzVV2RzpTUHl09yelU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "pl", - "file_path": "/v2Pa7FUIkxm5XTzg6utOPnpNR2p.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 1080, - "iso_639_1": "th", - "file_path": "/mIEkfTHA11Ubc8itUUXvtc5tXZO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 720 - }, - { - "aspect_ratio": 0.666, - "height": 947, - "iso_639_1": "th", - "file_path": "/4GskBUWE1SBHDXn1FsyttTVOeAA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 631 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/jixZRAfRfuLqc40B91jTFco8nCm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.66, - "height": 1817, - "iso_639_1": "sk", - "file_path": "/2qZax8AhLklNMuClgmNgLtwNljP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/aHAxvRGLSKEfbaqFJCFqJaKC3Y5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/rkzG99xJCNAZKAaXZ9ShxymTpKU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.708, - "height": 848, - "iso_639_1": "no", - "file_path": "/A7MN4slDFHPcJISYRCYYslqORm5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.701, - "height": 1426, - "iso_639_1": null, - "file_path": "/mwaVQzbpvLCGPcv9xXikhiu3EdH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.7, - "height": 2560, - "iso_639_1": "zu", - "file_path": "/7xlrcerfeU2sA1a6nZnC3nIbgg0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1792 - }, - { - "aspect_ratio": 0.667, - "height": 2914, - "iso_639_1": "ko", - "file_path": "/fnyE1sJm84LZEeEyP8x04GlSA3H.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1943 - }, - { - "aspect_ratio": 0.667, - "height": 2914, - "iso_639_1": "ko", - "file_path": "/z5pT1XEg55Q6IjTqNtXZ4UB2pRq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1943 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/fYIfzs03Pk4XcE2HNIx7AI79JpW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.718, - "height": 787, - "iso_639_1": "ja", - "file_path": "/hf06h57LgjOxDgEoDUiUvL8FH1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 565 - }, - { - "aspect_ratio": 0.667, - "height": 2976, - "iso_639_1": "sv", - "file_path": "/dYhbTNtz9ix8F95YeiG8H6KsDGn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1984 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/xvBVbJs1JJiSqr6qKITg2vBW3lL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/gB6ISbFY0uZbFwhNaF5S03KinyB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/8s7qfcFcA7WvT0rNZlbeTGMIyE0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/eIRvjC0mdsnaQzsvoOT3j3WNoVl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/mPRDpj77pmIwNPsoXeMZCxaxjmV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/lVYxnxDcMiCKQkaNwvl4qbJpxsi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/9qlj3fVcMfqOxo2Ve0oSDulGAf4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/pOeVDC26XSaibLyd3017j7WFIjj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1080, - "iso_639_1": "cn", - "file_path": "/HaLbHUeBtbCR3IQbz85p7KTWOq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 720 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/4TjZBPDXwvLGTATWxHISev3IwBu.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/go4ksAV9MH4hEdXryfFy6jMSRAx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/sMA38BuXyaTqVI2NiTZYbmWgXlD.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/rT2fUr9tIBkKah6OfPxxbJ5gVzg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/3ptxjOTWr3Cy82o9bGysdDdj50F.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/nzVgbrWSmrqLxYmLEXhiOXYkclH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/z8zTn5ijJBAk6EL31nzxYAT9t0v.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/bKbxxIk9ANDFW7to3WVGRIMUNa8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/9zWZseqnqkAJwArp0K6GinCWpNi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/zrvgSFSdnsUvDLnu01Co97W3dr2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/n3gQx8yEdbWuiet9QSPRzhpsUQT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/tunyS7Yo0iEl7LdunC4xXIlM30f.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/4GKxrdRmm5MzoJjgBCpkuXzWSPK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 2841, - "iso_639_1": "cs", - "file_path": "/ghF7kZ0g7WLchbSxCVq6WWetzVr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1894 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/8pkxFu251FzocZe2YCBKhpm9tkY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.707, - "height": 1132, - "iso_639_1": "ja", - "file_path": "/5h1pCos8ysDn6Ai0i8LJOoy4Yiq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 2843, - "iso_639_1": "en", - "file_path": "/baXPd8hwPnFK3ebs20UkilLgrTT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1895 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "en", - "file_path": "/ecdUebOh09UqIy6liWuKgrBRoR9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "en", - "file_path": "/drqKA1xkwr4HCvV7ekntVKw1m45.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/1OuBleSq3Oft7CfWmLaz7Rpo9iI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/y1PqLMCKFOBgc5f6QQpsuG1fbrO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "pl", - "file_path": "/ahwbRxeOCX622OsxBIMQWzb1fPb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "no", - "file_path": "/5SPKvugVK3Eq3WVZOnZjo6TpUqI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/nhHLyaLVHoxtPbpMnjmKT5IJTdx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/n7XNJXH5YvjuLjNRalpFukHUv2P.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/ceEa0RTm10fGfv1I3LoKZPNzmLX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pl", - "file_path": "/vKPiwMXW8qrPpyM6rbFrSCEe5VU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/kUwfhOBdaQisufDeNFq9dZ0Slxz.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/lemEP2CY7qtD0A3xWZjxfDChfsv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/fsCZi3XgQ6XvuQLDIUt6I7NBkYe.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/9Y2XuRUxmspQGTSEGCfmIlSXuRj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/6IXbZOtmjbH0nHskvo7wNn3wVkE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": "en", - "file_path": "/3WCCT16K1GPKGyCLQWdzQetUQ5M.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/8CXvFsbF3ZYIQVGYhanWmHDsKOu.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1241, - "iso_639_1": "en", - "file_path": "/7L8ehosOPTYwSdupyZlUMdyts6X.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 828 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/jWyV2SRITLGpecGFbA5gDkc9YXP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/mXUhSBKxRToCexcMzEFSq1cPA3f.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/xZaRkzOFKNvZjVg7TQI9cjgQiLv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/uV8AKdHT19Pn5OMcRBROYrB6ths.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 945, - "iso_639_1": "it", - "file_path": "/vzasLLPFRgl8Y7gTnMXe1HQ8XTy.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 630 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/eCRfNYw5uvqIn9DoiSRiMR2ZX9e.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "ro", - "file_path": "/ud3pulNRAmLD5d5wo372AbM3skj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/fxIvSNeQvokXmFcK7jDbmyoW3YB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/zVaEBioSbcrIvH888wJ4g07xwrj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/3IqnFOvd5y3ZtxFXQIClqKiRzQD.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/A324Z9ehUAccceb7rK7671jkZs3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/p8ii3mY9srOyHvExdTrl1dlmPE1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/fJqbkt94kSTNtZYYvVZ29UEs4jx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/srv2FFRqUAkNJt89UpNCmW2pDYU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.665, - "height": 2663, - "iso_639_1": "ar", - "file_path": "/hNQK7yPYBdbhEI4Ml5nPisBtOdn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1772 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/7M9fGPBkzgsQxbOtQaFW5o2jcLm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/yBhtf4oN3UdB10Noas5r6M1q2QV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/8rDbjXEIXc1meGf8gd35OR4HHfZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/qztzRGn3IQaeKzc6fWD6904KMbV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/9mxnNXpF0l0bto1O8CFiGcQM3zO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "lo", - "file_path": "/44ThQ2wboCq9am54LVcEuHUyrsZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/lZWLRUShxjeagwSVcwlHFEWXzhf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ja", - "file_path": "/7hoegKGhV4sEqjbMk5GUjpyi5i9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.664, - "height": 2854, - "iso_639_1": "en", - "file_path": "/gfMxmUqjgsqvQ9307ERlp3btOZO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1895 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/rlauVQEHwNE8paTpmcL5pCPMZUY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/12jsJjXbd5TOAPDpzKmHneuFWzd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.658, - "height": 760, - "iso_639_1": "sl", - "file_path": "/xAqu93JmbgmmqKsbY9c6ubm6uaN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/qCcBDPDEuAWDIwByR5P6nq7soyP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/j6aWYiximG3AVXXfh77RtC36h0U.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/vrPETU9xkvDmBqr5I5ADnzUvh5c.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/rJT5bBHWevl3igvv2QdNlOxOspB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/aSRKUkVCUs077o6Q3OxJcd7an5y.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "fr", - "file_path": "/6wF0CWk9v6GEk7umc4Zx4L1a9A.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 667 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/565770.json b/examples/view-transitions/src/content/movies/565770.json deleted file mode 100644 index a5ab58670..000000000 --- a/examples/view-transitions/src/content/movies/565770.json +++ /dev/null @@ -1,4628 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/H6j5smdpRqP9a8UnhWp6zfl0SC.jpg", - "belongs_to_collection": null, - "budget": 104000000, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 878, "name": "Science Fiction" }, - { "id": 12, "name": "Adventure" } - ], - "homepage": "https://www.dc.com/bluebeetle", - "id": 565770, - "imdb_id": "tt9362930", - "original_language": "en", - "original_title": "Blue Beetle", - "overview": "Recent college grad Jaime Reyes returns home full of aspirations for his future, only to find that home is not quite as he left it. As he searches to find his purpose in the world, fate intervenes when Jaime unexpectedly finds himself in possession of an ancient relic of alien biotechnology: the Scarab.", - "popularity": 1007.105, - "poster_path": "/vNfL4DYnonltukBrrgMmw94zMYL.jpg", - "production_companies": [ - { - "id": 174, - "logo_path": "/IuAlhI9eVC9Z8UQWOIDdWRKSEJ.png", - "name": "Warner Bros. Pictures", - "origin_country": "US" - }, - { "id": 11565, "logo_path": null, "name": "The Safran Company", "origin_country": "US" }, - { - "id": 128064, - "logo_path": "/13F3Jf7EFAcREU0xzZqJnVnyGXu.png", - "name": "DC Films", - "origin_country": "US" - } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "2023-08-16", - "revenue": 120418050, - "runtime": 128, - "spoken_languages": [ - { "english_name": "English", "iso_639_1": "en", "name": "English" }, - { "english_name": "Portuguese", "iso_639_1": "pt", "name": "Português" }, - { "english_name": "Spanish", "iso_639_1": "es", "name": "Español" } - ], - "status": "Released", - "tagline": "Jaime Reyes is a superhero whether he likes it or not.", - "title": "Blue Beetle", - "video": false, - "vote_average": 7.157, - "vote_count": 565, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 1185997, - "known_for_department": "Acting", - "name": "Xolo Mariduena", - "original_name": "Xolo Mariduena", - "popularity": 32.234, - "profile_path": "/tJMI7BpjlhHSMpzSz9e1XxygnKd.jpg", - "cast_id": 8, - "character": "Jaime Reyes", - "credit_id": "6108c3452f8d090048e996c9", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 1622590, - "known_for_department": "Acting", - "name": "Bruna Marquezine", - "original_name": "Bruna Marquezine", - "popularity": 35.661, - "profile_path": "/mGDhenXwsFRaaz1PjbJjDkn2snc.jpg", - "cast_id": 11, - "character": "Jenny Kord", - "credit_id": "62277fa42f791500645ca0cd", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 7370, - "known_for_department": "Acting", - "name": "Damián Alcázar", - "original_name": "Damián Alcázar", - "popularity": 11.485, - "profile_path": "/6IAlrZ2yXubmmVaRsF7fdaP3N7C.jpg", - "cast_id": 17, - "character": "Alberto Reyes", - "credit_id": "62353f15db72c000456bf40b", - "order": 2 - }, - { - "adult": false, - "gender": 1, - "id": 270, - "known_for_department": "Acting", - "name": "Adriana Barraza", - "original_name": "Adriana Barraza", - "popularity": 7.231, - "profile_path": "/1aE7wu22bdgVTa0PMKXbAOSLiZn.jpg", - "cast_id": 15, - "character": "Nana Reyes", - "credit_id": "62353ec334e152001cc649e4", - "order": 3 - }, - { - "adult": false, - "gender": 1, - "id": 4038, - "known_for_department": "Acting", - "name": "Susan Sarandon", - "original_name": "Susan Sarandon", - "popularity": 34.461, - "profile_path": "/oHYYL8bNakAREaLUBtMul5uMG0A.jpg", - "cast_id": 19, - "character": "Victoria Kord", - "credit_id": "62587acf09191b0065327af2", - "order": 4 - }, - { - "adult": false, - "gender": 2, - "id": 17688, - "known_for_department": "Acting", - "name": "Raoul Max Trujillo", - "original_name": "Raoul Max Trujillo", - "popularity": 13.709, - "profile_path": "/dIfHIt1pgnYW9oCksc0DdoY5Mt5.jpg", - "cast_id": 20, - "character": "Carapax", - "credit_id": "62587b48dd2589009b845ea3", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 41798, - "known_for_department": "Acting", - "name": "George Lopez", - "original_name": "George Lopez", - "popularity": 13.812, - "profile_path": "/nyVMk9bZJKJEmk3KHS7jJ1672yN.jpg", - "cast_id": 14, - "character": "Rudy Reyes", - "credit_id": "62353eab8d77c4001bdd453d", - "order": 6 - }, - { - "adult": false, - "gender": 1, - "id": 2381442, - "known_for_department": "Acting", - "name": "Belissa Escobedo", - "original_name": "Belissa Escobedo", - "popularity": 29.376, - "profile_path": "/584tOsPVFbzq7GJxET5diOGZ8p0.jpg", - "cast_id": 12, - "character": "Milagros Reyes", - "credit_id": "62277fb3b76cbb0066dfca60", - "order": 7 - }, - { - "adult": false, - "gender": 1, - "id": 1102, - "known_for_department": "Acting", - "name": "Elpidia Carrillo", - "original_name": "Elpidia Carrillo", - "popularity": 17.336, - "profile_path": "/xWlHSiYShbx8Abd1XFUqZw5xZOO.jpg", - "cast_id": 16, - "character": "Rocío Reyes", - "credit_id": "62353f060752880045957c9e", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 210172, - "known_for_department": "Acting", - "name": "Harvey Guillén", - "original_name": "Harvey Guillén", - "popularity": 5.249, - "profile_path": "/yiNBonobPwqMVweB02JWufzp2l9.jpg", - "cast_id": 13, - "character": "Dr. Sanchez", - "credit_id": "62277fbf871b340071c19d2a", - "order": 9 - }, - { - "adult": false, - "gender": 1, - "id": 1529446, - "known_for_department": "Acting", - "name": "Becky G", - "original_name": "Becky G", - "popularity": 9.472, - "profile_path": "/9wT0OYw4e708koAg1Xfbyx6mA62.jpg", - "cast_id": 56, - "character": "Khaji-Da (voice)", - "credit_id": "647e111b0e29a22bdfec9cb7", - "order": 10 - }, - { - "adult": false, - "gender": 2, - "id": 1333199, - "known_for_department": "Acting", - "name": "Jorge Jimenez", - "original_name": "Jorge Jimenez", - "popularity": 1.58, - "profile_path": "/hXg5nLmGbverLE1OR1VTpIr1lTX.jpg", - "cast_id": 168, - "character": "Tío Chema", - "credit_id": "64e15428a3b5e601d59e9ee0", - "order": 11 - }, - { - "adult": false, - "gender": 1, - "id": 1326614, - "known_for_department": "Acting", - "name": "Eyra Agüero Joubert", - "original_name": "Eyra Agüero Joubert", - "popularity": 1.215, - "profile_path": null, - "cast_id": 169, - "character": "Tía Maru", - "credit_id": "64e15465e19de90100e900fd", - "order": 12 - }, - { - "adult": false, - "gender": 1, - "id": 2557495, - "known_for_department": "Acting", - "name": "Gabrielle Ortiz", - "original_name": "Gabrielle Ortiz", - "popularity": 1.788, - "profile_path": "/tDwB2JENDKS2Fr9GmBJbQDZtatk.jpg", - "cast_id": 54, - "character": "Tía Letty", - "credit_id": "6452c358d861af0138f37d8f", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 1618538, - "known_for_department": "Acting", - "name": "Chente Ydrach", - "original_name": "Chente Ydrach", - "popularity": 1.154, - "profile_path": "/swxF5b0t4IibJb0Gtd40zYVTlhk.jpg", - "cast_id": 128, - "character": "Old Man in Airport", - "credit_id": "64de211aa3b5e6013900bb57", - "order": 14 - }, - { - "adult": false, - "gender": 2, - "id": 64326, - "known_for_department": "Acting", - "name": "Modesto Lacen", - "original_name": "Modesto Lacen", - "popularity": 2.448, - "profile_path": "/t6Li2XdnKtTAAec2nlaxbZkGvDZ.jpg", - "cast_id": 118, - "character": "General Crane", - "credit_id": "64de1fb6d100b614b0a519f1", - "order": 15 - }, - { - "adult": false, - "gender": 1, - "id": 4220133, - "known_for_department": "Acting", - "name": "Oshún Ramirez", - "original_name": "Oshún Ramirez", - "popularity": 0.659, - "profile_path": null, - "cast_id": 127, - "character": "Nayeli", - "credit_id": "64de20e459e8a90139d6f6f8", - "order": 16 - }, - { - "adult": false, - "gender": 1, - "id": 4089996, - "known_for_department": "Acting", - "name": "Brianna Quinn Lewis", - "original_name": "Brianna Quinn Lewis", - "popularity": 0.6, - "profile_path": "/qejvhDjAsQ4wcx3yR60aQdwdoED.jpg", - "cast_id": 117, - "character": "Kord Receptionist", - "credit_id": "64dcc35c59e8a900ac07f76c", - "order": 17 - }, - { - "adult": false, - "gender": 2, - "id": 1861836, - "known_for_department": "Acting", - "name": "Tahj Vaughans", - "original_name": "Tahj Vaughans", - "popularity": 2.889, - "profile_path": "/mZkJ4Fbx7Mqxm41o8igKNba3S8K.jpg", - "cast_id": 119, - "character": "Dude #1", - "credit_id": "64de1fc4d100b614b3005249", - "order": 18 - }, - { - "adult": false, - "gender": 2, - "id": 4220124, - "known_for_department": "Acting", - "name": "Dante Gonzalez-Abreu", - "original_name": "Dante Gonzalez-Abreu", - "popularity": 0.6, - "profile_path": null, - "cast_id": 120, - "character": "Dude #2", - "credit_id": "64de1fd259e8a900ffff3267", - "order": 19 - }, - { - "adult": false, - "gender": 2, - "id": 4220125, - "known_for_department": "Acting", - "name": "Jon Z", - "original_name": "Jon Z", - "popularity": 0.728, - "profile_path": null, - "cast_id": 121, - "character": "Dude #3", - "credit_id": "64de1fe2a3b5e600acc29a11", - "order": 20 - }, - { - "adult": false, - "gender": 2, - "id": 62067, - "known_for_department": "Acting", - "name": "Carlos Ponce", - "original_name": "Carlos Ponce", - "popularity": 3.927, - "profile_path": "/elNTDau1yinXHgWht9EInLDftxH.jpg", - "cast_id": 122, - "character": "Bentley Owner", - "credit_id": "64de203aa3b5e600e29c9e08", - "order": 21 - }, - { - "adult": false, - "gender": 2, - "id": 4220130, - "known_for_department": "Acting", - "name": "Ayden Rivera", - "original_name": "Ayden Rivera", - "popularity": 0.6, - "profile_path": null, - "cast_id": 124, - "character": "Kid Carapax", - "credit_id": "64de20795ab81a00ad2011d4", - "order": 22 - }, - { - "adult": false, - "gender": 2, - "id": 4220131, - "known_for_department": "Acting", - "name": "Xol Gonzalez", - "original_name": "Xol Gonzalez", - "popularity": 0.6, - "profile_path": null, - "cast_id": 125, - "character": "Teen Carapax", - "credit_id": "64de209c59e8a900c5a0baac", - "order": 23 - }, - { - "adult": false, - "gender": 2, - "id": 1416333, - "known_for_department": "Acting", - "name": "Franco Castan", - "original_name": "Franco Castan", - "popularity": 1.563, - "profile_path": "/sMhv8CmeWj0MPO9JkKqJokSbiao.jpg", - "cast_id": 170, - "character": "Security Tech #1", - "credit_id": "64e154bb37109700ffba6df2", - "order": 24 - }, - { - "adult": false, - "gender": 2, - "id": 3045119, - "known_for_department": "Acting", - "name": "Perris Drew", - "original_name": "Perris Drew", - "popularity": 0.69, - "profile_path": "/5aB9MOhVcfyRHbGxBbrkAI8LLs3.jpg", - "cast_id": 171, - "character": "Security Tech #2", - "credit_id": "64e154c25ab81a00c5b7ac15", - "order": 25 - }, - { - "adult": false, - "gender": 2, - "id": 131787, - "known_for_department": "Acting", - "name": "Felipe Esparza", - "original_name": "Felipe Esparza", - "popularity": 2.277, - "profile_path": "/5VLaNf2sWM4bhfqR7bRlOTqwvyx.jpg", - "cast_id": 172, - "character": "Security Tech #3", - "credit_id": "64e154cf5ab81a00c5b7ac1a", - "order": 26 - }, - { - "adult": false, - "gender": 2, - "id": 4223963, - "known_for_department": "Acting", - "name": "Walter J. Buck", - "original_name": "Walter J. Buck", - "popularity": 0.6, - "profile_path": null, - "cast_id": 173, - "character": "Security Tech #4", - "credit_id": "64e154dd2495ab0100855ec6", - "order": 27 - }, - { - "adult": false, - "gender": 2, - "id": 1779512, - "known_for_department": "Acting", - "name": "Jackson Spidell", - "original_name": "Jackson Spidell", - "popularity": 2.712, - "profile_path": "/7cozKHcmO4MOOViAMqE4FXd0Bmf.jpg", - "cast_id": 174, - "character": "Black Ops Leader", - "credit_id": "64e154e7a3b5e601d9f00faf", - "order": 28 - }, - { - "adult": false, - "gender": 2, - "id": 1614324, - "known_for_department": "Acting", - "name": "Esteban Ruiz", - "original_name": "Esteban Ruiz", - "popularity": 0.6, - "profile_path": "/4VpSjERX3qZR8yfhykZ1wOULh9F.jpg", - "cast_id": 175, - "character": "Sebastian - Wall Guard #1", - "credit_id": "64e154fba3b5e601d59e9f0d", - "order": 29 - }, - { - "adult": false, - "gender": 2, - "id": 3160209, - "known_for_department": "Acting", - "name": "Marcus Nelson", - "original_name": "Marcus Nelson", - "popularity": 0.6, - "profile_path": null, - "cast_id": 176, - "character": "Giovanni - Wall Guard #2", - "credit_id": "64e155942495ab00c68bedea", - "order": 30 - }, - { - "adult": false, - "gender": 1, - "id": 4220128, - "known_for_department": "Acting", - "name": "Isabella Aparicio", - "original_name": "Isabella Aparicio", - "popularity": 0.656, - "profile_path": null, - "cast_id": 123, - "character": "Young Jenny Kord", - "credit_id": "64de2057b77d4b114019b6e0", - "order": 31 - }, - { - "adult": false, - "gender": 1, - "id": 2723382, - "known_for_department": "Acting", - "name": "Yuli Zorrilla", - "original_name": "Yuli Zorrilla", - "popularity": 3.376, - "profile_path": "/u8KzPYJrD51fbpIe2ytbggpr6gv.jpg", - "cast_id": 126, - "character": "Carapax's Mom", - "credit_id": "64de20beaaec7103fbea3771", - "order": 32 - }, - { - "adult": false, - "gender": 2, - "id": 1089007, - "known_for_department": "Acting", - "name": "Sergio Valente", - "original_name": "Sergio Valente", - "popularity": 0.6, - "profile_path": "/yJ41OAiAVqe7x3KZgoUO2DkVmhz.jpg", - "cast_id": 177, - "character": "Soldier", - "credit_id": "64e155e5da9ef200e5f25a6c", - "order": 33 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 1597, - "known_for_department": "Sound", - "name": "Michael Payne", - "original_name": "Michael Payne", - "popularity": 2.135, - "profile_path": null, - "credit_id": "64e164bc5ab81a01391ab6b3", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 3504, - "known_for_department": "Sound", - "name": "David Farmer", - "original_name": "David Farmer", - "popularity": 2.393, - "profile_path": "/oYNchEjc32GucUPvXAHMXajk3xJ.jpg", - "credit_id": "64e164975ab81a00ad21524f", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 0, - "id": 5545, - "known_for_department": "Production", - "name": "K.C. Hodenfield", - "original_name": "K.C. Hodenfield", - "popularity": 1.386, - "profile_path": null, - "credit_id": "64cfd74f85090f01445bb859", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 0, - "id": 5545, - "known_for_department": "Production", - "name": "K.C. Hodenfield", - "original_name": "K.C. Hodenfield", - "popularity": 1.386, - "profile_path": null, - "credit_id": "63ec2fea813cb60096aa6f23", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 2, - "id": 6742, - "known_for_department": "Editing", - "name": "Craig Alpert", - "original_name": "Craig Alpert", - "popularity": 1.275, - "profile_path": "/bYDRvNYRtQW5H9qEqimbJDudcXt.jpg", - "credit_id": "62c02f6f924ce60059cd3afe", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 7625, - "known_for_department": "Writing", - "name": "Steve Ditko", - "original_name": "Steve Ditko", - "popularity": 2.656, - "profile_path": "/liZhKuugdqrSCYMzggzyhYRbfou.jpg", - "credit_id": "64e16abb2495ab00c68bff8b", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 9440, - "known_for_department": "Sound", - "name": "Christopher Moriana", - "original_name": "Christopher Moriana", - "popularity": 1.218, - "profile_path": null, - "credit_id": "64e03a40a3b5e601d63a475d", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 0, - "id": 9818, - "known_for_department": "Art", - "name": "Julian Ashby", - "original_name": "Julian Ashby", - "popularity": 1.11, - "profile_path": null, - "credit_id": "64e162e8aaec7103fbeb7787", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 9819, - "known_for_department": "Art", - "name": "Jon Billington", - "original_name": "Jon Billington", - "popularity": 2.287, - "profile_path": "/3wMaenFPT4rhJuPKJcE49eH7WGk.jpg", - "credit_id": "62c02fb6325a5100c3a486f1", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 1, - "id": 13173, - "known_for_department": "Sound", - "name": "Tami Treadwell", - "original_name": "Tami Treadwell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e1643fe19de900adfd241e", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 13179, - "known_for_department": "Sound", - "name": "Tony Lamberti", - "original_name": "Tony Lamberti", - "popularity": 1.4, - "profile_path": null, - "credit_id": "64e164aa37109700c51f2272", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 14753, - "known_for_department": "Production", - "name": "David Siegel", - "original_name": "David Siegel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e16ada2495ab013a0897dd", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 17675, - "known_for_department": "Costume & Make-Up", - "name": "Mayes C. Rubeo", - "original_name": "Mayes C. Rubeo", - "popularity": 0.62, - "profile_path": null, - "credit_id": "6482d27ac9dbf9013a05befe", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 2, - "id": 18866, - "known_for_department": "Writing", - "name": "Jack Kirby", - "original_name": "Jack Kirby", - "popularity": 5.306, - "profile_path": "/ihhR019gL1WrXdSQNJITAY6dont.jpg", - "credit_id": "64e16ac2e19de9011d5e928b", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 1, - "id": 33673, - "known_for_department": "Art", - "name": "Jennifer M. Gentile", - "original_name": "Jennifer M. Gentile", - "popularity": 1.45, - "profile_path": null, - "credit_id": "63ec2f92699fb7009e3d18cd", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 2, - "id": 19535, - "known_for_department": "Writing", - "name": "John Rogers", - "original_name": "John Rogers", - "popularity": 3.236, - "profile_path": null, - "credit_id": "64e16a72da9ef200c859446c", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 29206, - "known_for_department": "Production", - "name": "Garrett Grant", - "original_name": "Garrett Grant", - "popularity": 0.931, - "profile_path": null, - "credit_id": "6434752622af3e00d5a7926b", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 47365, - "known_for_department": "Production", - "name": "Walter Hamada", - "original_name": "Walter Hamada", - "popularity": 3.224, - "profile_path": "/cykm5UtrpVYMY6gc5CfFt6eXZXG.jpg", - "credit_id": "6366d57be7c097007aeb708d", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 53254, - "known_for_department": "Crew", - "name": "Geo Corvera", - "original_name": "Geo Corvera", - "popularity": 1.858, - "profile_path": "/6Q3PcNIyKIbaW6EPAGiZttQJCw5.jpg", - "credit_id": "64ceba2985090f00c87ce7e0", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 83875, - "known_for_department": "Acting", - "name": "Will Eisner", - "original_name": "Will Eisner", - "popularity": 1.24, - "profile_path": null, - "credit_id": "64e16a915ab81a00ad2155ae", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 92471, - "known_for_department": "Visual Effects", - "name": "Kelvin McIlwain", - "original_name": "Kelvin McIlwain", - "popularity": 0.6, - "profile_path": null, - "credit_id": "643475a022af3e01139725ce", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 74322, - "known_for_department": "Costume & Make-Up", - "name": "Kimberly Jones", - "original_name": "Kimberly Jones", - "popularity": 1.165, - "profile_path": null, - "credit_id": "64e038f7371097011c53d1ec", - "department": "Costume & Make-Up", - "job": "Makeup Department Head" - }, - { - "adult": false, - "gender": 0, - "id": 123097, - "known_for_department": "Writing", - "name": "Cully Hamner", - "original_name": "Cully Hamner", - "popularity": 0.861, - "profile_path": null, - "credit_id": "64e16a7caaec7103f7e43590", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 1, - "id": 123169, - "known_for_department": "Acting", - "name": "Michelle Rose", - "original_name": "Michelle Rose", - "popularity": 2.776, - "profile_path": "/rrbWOv23N8wI93HSVE1Ml3Qu0cb.jpg", - "credit_id": "64ceb91e303c85013a14d86c", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 131532, - "known_for_department": "Crew", - "name": "J.J. Perry", - "original_name": "J.J. Perry", - "popularity": 2.801, - "profile_path": "/57assDPZceZ4x7YWrkPE5FqVn1f.jpg", - "credit_id": "6462960e532acb01195990bb", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 2, - "id": 173658, - "known_for_department": "Writing", - "name": "Len Wein", - "original_name": "Len Wein", - "popularity": 1.449, - "profile_path": "/jA38DskVXNIryKgPgc9Tc3GyaGH.jpg", - "credit_id": "64e16ac9076ce800e313a940", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 548441, - "known_for_department": "Sound", - "name": "Whit Norris", - "original_name": "Whit Norris", - "popularity": 0.743, - "profile_path": null, - "credit_id": "64e163d9da9ef200e5f265d8", - "department": "Sound", - "job": "Production Sound Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 938688, - "known_for_department": "Acting", - "name": "Dan Didio", - "original_name": "Dan Didio", - "popularity": 1.001, - "profile_path": null, - "credit_id": "64e16aace19de9013a28a6ce", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1031764, - "known_for_department": "Sound", - "name": "Darren Sunny Warkentin", - "original_name": "Darren Sunny Warkentin", - "popularity": 0.94, - "profile_path": null, - "credit_id": "64e03a5a5ab81a01391a4058", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1031811, - "known_for_department": "Sound", - "name": "Andrew DeCristofaro", - "original_name": "Andrew DeCristofaro", - "popularity": 1.199, - "profile_path": null, - "credit_id": "64e03a1b076ce800e3132a43", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1116283, - "known_for_department": "Production", - "name": "John Rickard", - "original_name": "John Rickard", - "popularity": 1.158, - "profile_path": null, - "credit_id": "61bbe67b54a0980042e9660d", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1128684, - "known_for_department": "Production", - "name": "Zev Foreman", - "original_name": "Zev Foreman", - "popularity": 0.78, - "profile_path": null, - "credit_id": "64347503391b9c11e1494667", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1142261, - "known_for_department": "Crew", - "name": "Airon Armstrong", - "original_name": "Airon Armstrong", - "popularity": 3.848, - "profile_path": "/cVOMBcU6qFsT7tpo4QjKrCRJ7oW.jpg", - "credit_id": "64ceba74614c6d00ff3118e0", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1188571, - "known_for_department": "Acting", - "name": "Jeremy Marinas", - "original_name": "Jeremy Marinas", - "popularity": 0.797, - "profile_path": "/9TwJxsHeCp99V1eGXFFwitPcQb6.jpg", - "credit_id": "64ceb9b2303c85011dd3b335", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1190482, - "known_for_department": "Camera", - "name": "Eduardo Mariota", - "original_name": "Eduardo Mariota", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e4dd2f5258ae012ca37906", - "department": "Camera", - "job": "Camera Operator" - }, - { - "adult": false, - "gender": 2, - "id": 1222509, - "known_for_department": "Writing", - "name": "Keith Giffen", - "original_name": "Keith Giffen", - "popularity": 1.757, - "profile_path": null, - "credit_id": "64e16a43e19de900adfd27bd", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1259516, - "known_for_department": "Crew", - "name": "John Dixon", - "original_name": "John Dixon", - "popularity": 2.461, - "profile_path": "/5aHPScnn7icFDPHhBSV1fggmtNZ.jpg", - "credit_id": "64ceba184d6791011c174081", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1272901, - "known_for_department": "Acting", - "name": "Efka Kvaraciejus", - "original_name": "Efka Kvaraciejus", - "popularity": 2.178, - "profile_path": "/xC12DoEHB9h3jJQ5YrJ1WSoLEWs.jpg", - "credit_id": "64e167a34a52f8011e1e5cc6", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1302532, - "known_for_department": "Production", - "name": "Roberto Gómez", - "original_name": "Roberto Gómez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e16b39076ce8011d159435", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 1338484, - "known_for_department": "Sound", - "name": "Chris Terhune", - "original_name": "Chris Terhune", - "popularity": 0.688, - "profile_path": null, - "credit_id": "64e03a4d5ab81a00ffc216b2", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1352973, - "known_for_department": "Visual Effects", - "name": "Sarah Swick", - "original_name": "Sarah Swick", - "popularity": 0.692, - "profile_path": null, - "credit_id": "64e4df851feac100fe5ad09d", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1360098, - "known_for_department": "Sound", - "name": "Luis Galdames", - "original_name": "Luis Galdames", - "popularity": 1.052, - "profile_path": null, - "credit_id": "64e03a29b77d4b1141f9ac3a", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1360099, - "known_for_department": "Sound", - "name": "Lee Gilmore", - "original_name": "Lee Gilmore", - "popularity": 0.937, - "profile_path": null, - "credit_id": "64e164ce4a52f800c7a32d28", - "department": "Sound", - "job": "Supervising Sound Effects Editor" - }, - { - "adult": false, - "gender": 1, - "id": 1370799, - "known_for_department": "Acting", - "name": "Jwaundace Candece", - "original_name": "Jwaundace Candece", - "popularity": 4.192, - "profile_path": null, - "credit_id": "64ceba596d4c97010d508da9", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1378196, - "known_for_department": "Art", - "name": "Kristen McGary", - "original_name": "Kristen McGary", - "popularity": 1.001, - "profile_path": null, - "credit_id": "64e166222495ab00ae835f18", - "department": "Art", - "job": "Set Decoration Buyer" - }, - { - "adult": false, - "gender": 0, - "id": 1379990, - "known_for_department": "Visual Effects", - "name": "Russell Earl", - "original_name": "Russell Earl", - "popularity": 1.4, - "profile_path": null, - "credit_id": "64e4deac594c94011c34eef9", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1386320, - "known_for_department": "Crew", - "name": "Gianni Biasetti Jr.", - "original_name": "Gianni Biasetti Jr.", - "popularity": 1.4, - "profile_path": "/frt102sL0yaSl51pTv3hWj5NQAY.jpg", - "credit_id": "64ceba55d9f4a603b8757e88", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1389133, - "known_for_department": "Sound", - "name": "Will Files", - "original_name": "Will Files", - "popularity": 1.961, - "profile_path": null, - "credit_id": "64e1648fe19de90100e90c43", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1389133, - "known_for_department": "Sound", - "name": "Will Files", - "original_name": "Will Files", - "popularity": 1.961, - "profile_path": null, - "credit_id": "64e164eb37109700c51f2299", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1389138, - "known_for_department": "Directing", - "name": "Jody Blose", - "original_name": "Jody Blose", - "popularity": 0.666, - "profile_path": null, - "credit_id": "63ec3079813cb600dc07154f", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1395709, - "known_for_department": "Sound", - "name": "Mark Paterson", - "original_name": "Mark Paterson", - "popularity": 0.84, - "profile_path": null, - "credit_id": "64e164f537109700ac456d04", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 1, - "id": 1397823, - "known_for_department": "Sound", - "name": "Alyson Dee Moore", - "original_name": "Alyson Dee Moore", - "popularity": 2.827, - "profile_path": null, - "credit_id": "64e16461076ce800c6427334", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1399638, - "known_for_department": "Crew", - "name": "Rob King", - "original_name": "Rob King", - "popularity": 1.548, - "profile_path": null, - "credit_id": "64ceb9d2d9f4a603b6c891bd", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1399865, - "known_for_department": "Visual Effects", - "name": "Chad Wiebe", - "original_name": "Chad Wiebe", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e4dfccc3c89100c681041d", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1400555, - "known_for_department": "Art", - "name": "George Lee", - "original_name": "George Lee", - "popularity": 1.399, - "profile_path": null, - "credit_id": "64e03ade076ce8011d152145", - "department": "Art", - "job": "Set Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1401135, - "known_for_department": "Sound", - "name": "Angelo Palazzo", - "original_name": "Angelo Palazzo", - "popularity": 1.566, - "profile_path": null, - "credit_id": "64e164b3e19de900c68beb2b", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1406389, - "known_for_department": "Sound", - "name": "Bruce Tanis", - "original_name": "Bruce Tanis", - "popularity": 1.4, - "profile_path": null, - "credit_id": "64e165e1076ce8013a29f687", - "department": "Sound", - "job": "Foley Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1427715, - "known_for_department": "Crew", - "name": "Jon Valera", - "original_name": "Jon Valera", - "popularity": 1.608, - "profile_path": "/BLRKYySRdVpbvcDI8qC2laPRQ3.jpg", - "credit_id": "64ceb941d9f4a603b796f576", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 1442097, - "known_for_department": "Costume & Make-Up", - "name": "Jeri Baker", - "original_name": "Jeri Baker", - "popularity": 0.692, - "profile_path": null, - "credit_id": "64e16686b77d4b1143495cd5", - "department": "Costume & Make-Up", - "job": "Hair Department Head" - }, - { - "adult": false, - "gender": 0, - "id": 1451255, - "known_for_department": "Camera", - "name": "Eric Townsend", - "original_name": "Eric Townsend", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649af4de0e5aba00ffc3c805", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 1, - "id": 1456721, - "known_for_department": "Crew", - "name": "Marian Green", - "original_name": "Marian Green", - "popularity": 1.962, - "profile_path": null, - "credit_id": "64ceb9e1fa27f400c50af809", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1463327, - "known_for_department": "Art", - "name": "Ellen Lampl", - "original_name": "Ellen Lampl", - "popularity": 0.62, - "profile_path": null, - "credit_id": "64e163b2b77d4b1141fa1c82", - "department": "Art", - "job": "Graphic Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1463668, - "known_for_department": "Crew", - "name": "Daniel Graham", - "original_name": "Daniel Graham", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceb9f2549dda00c53eeb25", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1493864, - "known_for_department": "Art", - "name": "Jay Pelissier", - "original_name": "Jay Pelissier", - "popularity": 1.4, - "profile_path": null, - "credit_id": "63ec2f54813cb600dc07132a", - "department": "Art", - "job": "Supervising Art Director" - }, - { - "adult": false, - "gender": 2, - "id": 1500758, - "known_for_department": "Directing", - "name": "Ángel Manuel Soto", - "original_name": "Ángel Manuel Soto", - "popularity": 5.288, - "profile_path": "/7lu6zFhXB1Na5ANy2pPTIERaAhi.jpg", - "credit_id": "60353737e786870040d25f6c", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 1, - "id": 1510872, - "known_for_department": "Production", - "name": "Chelsea Ellis Bloch", - "original_name": "Chelsea Ellis Bloch", - "popularity": 3.844, - "profile_path": null, - "credit_id": "63ec2eda1b7294007c49dd47", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 0, - "id": 1517176, - "known_for_department": "Costume & Make-Up", - "name": "Susan Reilly LeHane", - "original_name": "Susan Reilly LeHane", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e0391fe19de9013a28272c", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 1, - "id": 1529990, - "known_for_department": "Sound", - "name": "Season Kent", - "original_name": "Season Kent", - "popularity": 1.004, - "profile_path": "/xJHOwAJVwaBVyQTMSkCm23ZfGeW.jpg", - "credit_id": "64821713e375c000acc41e81", - "department": "Sound", - "job": "Music Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1530712, - "known_for_department": "Visual Effects", - "name": "Mark Hawker", - "original_name": "Mark Hawker", - "popularity": 0.753, - "profile_path": null, - "credit_id": "63ec30a2f92532009d92bebe", - "department": "Visual Effects", - "job": "Special Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1544399, - "known_for_department": "Crew", - "name": "Bobby Jordan", - "original_name": "Bobby Jordan", - "popularity": 2.522, - "profile_path": "/tOFBAfy0LnrRqLscwZPeLYM0VnZ.jpg", - "credit_id": "64ceb9bc4d6791011c17406a", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1544403, - "known_for_department": "Acting", - "name": "Matthew Austin Murray", - "original_name": "Matthew Austin Murray", - "popularity": 0.71, - "profile_path": null, - "credit_id": "64ceb98bfa27f40139163cfa", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1548416, - "known_for_department": "Crew", - "name": "Oliver Schulz", - "original_name": "Oliver Schulz", - "popularity": 0.63, - "profile_path": null, - "credit_id": "64e4df6d63e6fb011d0e487b", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1548530, - "known_for_department": "Costume & Make-Up", - "name": "Robert Wilson", - "original_name": "Robert Wilson", - "popularity": 1.815, - "profile_path": null, - "credit_id": "64e166bfe19de900e34398e4", - "department": "Costume & Make-Up", - "job": "Key Hair Stylist" - }, - { - "adult": false, - "gender": 2, - "id": 1550064, - "known_for_department": "Costume & Make-Up", - "name": "Edward T. Hanley", - "original_name": "Edward T. Hanley", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e039ee076ce8011d1520be", - "department": "Costume & Make-Up", - "job": "Costume Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1562008, - "known_for_department": "Sound", - "name": "Kevin Cerchiai", - "original_name": "Kevin Cerchiai", - "popularity": 0.91, - "profile_path": null, - "credit_id": "63ec30c51b7294008e15f4d7", - "department": "Sound", - "job": "Boom Operator" - }, - { - "adult": false, - "gender": 1, - "id": 1570787, - "known_for_department": "Camera", - "name": "Angel Pastrana", - "original_name": "Angel Pastrana", - "popularity": 0.98, - "profile_path": null, - "credit_id": "64e4dd6263e6fb0100500333", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 1, - "id": 1574097, - "known_for_department": "Visual Effects", - "name": "Katrin Arndt", - "original_name": "Katrin Arndt", - "popularity": 1.38, - "profile_path": null, - "credit_id": "64e4de7bc3c89100e35ea7e4", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1575736, - "known_for_department": "Visual Effects", - "name": "Malcolm Humphreys", - "original_name": "Malcolm Humphreys", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e4ded406f984010c6df85d", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1578121, - "known_for_department": "Writing", - "name": "Gareth Dunnet-Alcocer", - "original_name": "Gareth Dunnet-Alcocer", - "popularity": 3.242, - "profile_path": "/4WdVtBGBaS0hIapSpFbDKLhLFr9.jpg", - "credit_id": "63ec2e681f3e60007fb5aa37", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 2, - "id": 1580941, - "known_for_department": "Sound", - "name": "Bobby Krlic", - "original_name": "Bobby Krlic", - "popularity": 2.072, - "profile_path": "/edyQ97jkTRbWBARUaB31ghl4mMT.jpg", - "credit_id": "642e1e67158c8501031fc8b8", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 1, - "id": 1608766, - "known_for_department": "Production", - "name": "Marisol Roncali", - "original_name": "Marisol Roncali", - "popularity": 2.128, - "profile_path": null, - "credit_id": "63ec2ef2813cb60079425376", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 0, - "id": 1635212, - "known_for_department": "Crew", - "name": "Jared Losano", - "original_name": "Jared Losano", - "popularity": 1.168, - "profile_path": null, - "credit_id": "64e16978b77d4b1142605aec", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1650351, - "known_for_department": "Camera", - "name": "Pawel Pogorzelski", - "original_name": "Pawel Pogorzelski", - "popularity": 2.493, - "profile_path": "/mCUSXTkDMmJaX4FoQ7adjIcJaOu.jpg", - "credit_id": "61f76863e2bca800efdf6e63", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 0, - "id": 1693343, - "known_for_department": "Art", - "name": "Juan Cervantes", - "original_name": "Juan Cervantes", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e03aa2371097011c53d30a", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 1, - "id": 1711856, - "known_for_department": "Crew", - "name": "Maya Santandrea", - "original_name": "Maya Santandrea", - "popularity": 0.652, - "profile_path": "/zPWqVw9Kje3BvqnQb9qpnpeRJeL.jpg", - "credit_id": "64e167782495ab011dd464b1", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1715153, - "known_for_department": "Costume & Make-Up", - "name": "Amanda Bianchi", - "original_name": "Amanda Bianchi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e1670aa3b5e601da48ee88", - "department": "Costume & Make-Up", - "job": "Key Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1717376, - "known_for_department": "Acting", - "name": "Caleb Spillyards", - "original_name": "Caleb Spillyards", - "popularity": 2.347, - "profile_path": "/5r7Q82C3g8CCIR2Eew6gc2oWSK2.jpg", - "credit_id": "64ceb937d9f4a603bafa5996", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1760572, - "known_for_department": "Sound", - "name": "Jason Oliver", - "original_name": "Jason Oliver", - "popularity": 1.307, - "profile_path": null, - "credit_id": "64e16438da9ef200c859409f", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1760573, - "known_for_department": "Sound", - "name": "Darrin Mann", - "original_name": "Darrin Mann", - "popularity": 0.866, - "profile_path": null, - "credit_id": "64e03a36b77d4b1141f9ac40", - "department": "Sound", - "job": "Foley Mixer" - }, - { - "adult": false, - "gender": 1, - "id": 1768007, - "known_for_department": "Crew", - "name": "Renae Moneymaker", - "original_name": "Renae Moneymaker", - "popularity": 2.915, - "profile_path": "/k96lYjDhLJbhIDLjmxcOxCcHumW.jpg", - "credit_id": "64cea61f85090f00c87ce318", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1797602, - "known_for_department": "Acting", - "name": "Richard Marrero", - "original_name": "Richard Marrero", - "popularity": 0.637, - "profile_path": "/dkyrndpFfzJolEmvVKHb6lwQeGC.jpg", - "credit_id": "64e167b5da9ef2011fe47216", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1813752, - "known_for_department": "Acting", - "name": "Bobby Hernandez", - "original_name": "Bobby Hernandez", - "popularity": 1.103, - "profile_path": "/z2QZ5YSHxhHOKYSGuRqanICNkXU.jpg", - "credit_id": "64e167575ab81a00e25c2f47", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1818190, - "known_for_department": "Sound", - "name": "Jeffrey Roy", - "original_name": "Jeffrey Roy", - "popularity": 0.769, - "profile_path": null, - "credit_id": "64e16446a3b5e601d59eac5e", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 1, - "id": 1825134, - "known_for_department": "Crew", - "name": "Danya Bateman", - "original_name": "Danya Bateman", - "popularity": 1.41, - "profile_path": "/zm8g9IYRwh60NGMfPcpwnprZjTc.jpg", - "credit_id": "64ceba66fa27f40139163d27", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1825652, - "known_for_department": "Art", - "name": "Colton Comans", - "original_name": "Colton Comans", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e03aace19de900c68b7218", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 1, - "id": 1830688, - "known_for_department": "Acting", - "name": "Michelle Cortés", - "original_name": "Michelle Cortés", - "popularity": 1.856, - "profile_path": "/uP0qpUWb3oK3Whlx7BjFd59oxQn.jpg", - "credit_id": "64ceba386d4c97010d508d9e", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1870912, - "known_for_department": "Crew", - "name": "Ross Kohnstam", - "original_name": "Ross Kohnstam", - "popularity": 1.4, - "profile_path": "/obU47dDIs42MRoG6SLtYni1dToo.jpg", - "credit_id": "64ceb9a685090f01445b36f6", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1900168, - "known_for_department": "Acting", - "name": "Anis Cheurfa", - "original_name": "Anis Cheurfa", - "popularity": 0.799, - "profile_path": "/sToFORAIVPHffNHKcsIYjEISMv0.jpg", - "credit_id": "64ceba4cd9f4a603b6c891e1", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1957333, - "known_for_department": "Visual Effects", - "name": "Clement Zveguintzoff", - "original_name": "Clement Zveguintzoff", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e4dff463e6fb00c6f20f52", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2021211, - "known_for_department": "Art", - "name": "Ricky Aguirre", - "original_name": "Ricky Aguirre", - "popularity": 0.753, - "profile_path": null, - "credit_id": "63ec2f04813cb60084b2b135", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 2026825, - "known_for_department": "Art", - "name": "Nathan Krochmal", - "original_name": "Nathan Krochmal", - "popularity": 0.615, - "profile_path": null, - "credit_id": "63ec2f298e8702008640ed66", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 1, - "id": 2047762, - "known_for_department": "Crew", - "name": "Monica Lopez Aleman", - "original_name": "Monica Lopez Aleman", - "popularity": 1.779, - "profile_path": "/4TZp3UapzlaHjuwCfLbNQ56XHTC.jpg", - "credit_id": "64ceb8e96d4c9700cb7dccc1", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 1, - "id": 2056252, - "known_for_department": "Costume & Make-Up", - "name": "JT Franchuk", - "original_name": "JT Franchuk", - "popularity": 0.699, - "profile_path": null, - "credit_id": "64e038e6aaec7103f7e3c1ae", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 2, - "id": 2062055, - "known_for_department": "Crew", - "name": "Miguel-Andres Garcia", - "original_name": "Miguel-Andres Garcia", - "popularity": 0.73, - "profile_path": "/efvnUP6UlXiOdZDA6Yod71uP8AU.jpg", - "credit_id": "64ceb9fe6d4c97012e8ade54", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2069486, - "known_for_department": "Production", - "name": "Kristi Lugo", - "original_name": "Kristi Lugo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e4dd99c3c89100c6810318", - "department": "Production", - "job": "Casting Associate" - }, - { - "adult": false, - "gender": 0, - "id": 2092975, - "known_for_department": "Costume & Make-Up", - "name": "Addy Steigerwalt", - "original_name": "Addy Steigerwalt", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e03a06e19de90100e89b69", - "department": "Costume & Make-Up", - "job": "Set Costumer" - }, - { - "adult": false, - "gender": 0, - "id": 2121116, - "known_for_department": "Costume & Make-Up", - "name": "Brittanie Cruz", - "original_name": "Brittanie Cruz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e038cf37109700c51eb8e8", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2138579, - "known_for_department": "Production", - "name": "Alice S. Kim", - "original_name": "Alice S. Kim", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e162c6aaec7103fa48c6f6", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 1, - "id": 2178720, - "known_for_department": "Crew", - "name": "Holly Dowell", - "original_name": "Holly Dowell", - "popularity": 3.185, - "profile_path": "/zwnrOAdqZOHvmcCSOTMJ3rifAjM.jpg", - "credit_id": "64ceba07fa27f400c50af817", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2258647, - "known_for_department": "Art", - "name": "Arielle Ness-Cohn", - "original_name": "Arielle Ness-Cohn", - "popularity": 0.608, - "profile_path": null, - "credit_id": "63ec2f3f1f3e6000a1c548bd", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 2423013, - "known_for_department": "Crew", - "name": "Blanca Rosa Rosario", - "original_name": "Blanca Rosa Rosario", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceb90c303c85013a14d865", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 2434231, - "known_for_department": "Acting", - "name": "Jenin Gonzalez", - "original_name": "Jenin Gonzalez", - "popularity": 1.588, - "profile_path": "/4GQPEUpfKdb5gY47KcVbflHmNjb.jpg", - "credit_id": "64ceb9ed6d4c9700ec578bf0", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2475246, - "known_for_department": "Production", - "name": "Galen Vaisman", - "original_name": "Galen Vaisman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6434751fa1353300d4f669ef", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2492753, - "known_for_department": "Costume & Make-Up", - "name": "Jacqueline Bell", - "original_name": "Jacqueline Bell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e038b9a3b5e601d875212b", - "department": "Costume & Make-Up", - "job": "Key Hair Stylist" - }, - { - "adult": false, - "gender": 0, - "id": 2583980, - "known_for_department": "Art", - "name": "Chris Cortner", - "original_name": "Chris Cortner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e03ab7b77d4b11425ff02e", - "department": "Art", - "job": "Set Designer" - }, - { - "adult": false, - "gender": 0, - "id": 2584002, - "known_for_department": "Art", - "name": "Stephanie L. Allen", - "original_name": "Stephanie L. Allen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e03a89e19de9013a28281c", - "department": "Art", - "job": "Set Decoration Buyer" - }, - { - "adult": false, - "gender": 0, - "id": 2690280, - "known_for_department": "Costume & Make-Up", - "name": "Maegan Robinson", - "original_name": "Maegan Robinson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e039fb5ab81a00ad20e76c", - "department": "Costume & Make-Up", - "job": "Set Costumer" - }, - { - "adult": false, - "gender": 0, - "id": 2722089, - "known_for_department": "Crew", - "name": "Lenny Cruz", - "original_name": "Lenny Cruz", - "popularity": 0.98, - "profile_path": null, - "credit_id": "64ceba24303c8500ade3fc19", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 2735941, - "known_for_department": "Acting", - "name": "Michael D. Jenkins", - "original_name": "Michael D. Jenkins", - "popularity": 0.607, - "profile_path": null, - "credit_id": "64ceb9c14d679100e2403e98", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 1, - "id": 2782661, - "known_for_department": "Art", - "name": "Emma Sparer", - "original_name": "Emma Sparer", - "popularity": 0.703, - "profile_path": null, - "credit_id": "64e1637e5ab81a00e25c2c47", - "department": "Art", - "job": "Set Designer" - }, - { - "adult": false, - "gender": 0, - "id": 2816790, - "known_for_department": "Acting", - "name": "Justin Ortiz", - "original_name": "Justin Ortiz", - "popularity": 0.627, - "profile_path": null, - "credit_id": "64ceb97d6d4c9700afadb69c", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2836764, - "known_for_department": "Camera", - "name": "Christopher M. Bauer", - "original_name": "Christopher M. Bauer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e4dd0606f984014e66c4e1", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 0, - "id": 2860254, - "known_for_department": "Crew", - "name": "Tony Vo", - "original_name": "Tony Vo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceb94e549dda013932927c", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 1, - "id": 2899647, - "known_for_department": "Crew", - "name": "Cara Marie Chooljian", - "original_name": "Cara Marie Chooljian", - "popularity": 0.716, - "profile_path": null, - "credit_id": "64ceba3c303c8500c6137855", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2902440, - "known_for_department": "Crew", - "name": "Emely Cartagena", - "original_name": "Emely Cartagena", - "popularity": 0.652, - "profile_path": null, - "credit_id": "64e16765a3b5e601d63ac7f3", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2909029, - "known_for_department": "Art", - "name": "Diem Ngo", - "original_name": "Diem Ngo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e03af5aaec7103fcfde770", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 2976492, - "known_for_department": "Visual Effects", - "name": "Ryan Wilk", - "original_name": "Ryan Wilk", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e4dfdbe0ca7f013a9850fe", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 2, - "id": 3057436, - "known_for_department": "Acting", - "name": "Alec Back", - "original_name": "Alec Back", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceba62614c6d00e2bcc51d", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 1, - "id": 3062786, - "known_for_department": "Art", - "name": "Margaret Ditre", - "original_name": "Margaret Ditre", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e03ac1b77d4b1141f9ac96", - "department": "Art", - "job": "Set Designer" - }, - { - "adult": false, - "gender": 0, - "id": 3107577, - "known_for_department": "Visual Effects", - "name": "Samuel Tremblay", - "original_name": "Samuel Tremblay", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e4dfa95258ae00eaa259c0", - "department": "Visual Effects", - "job": "Visual Effects" - }, - { - "adult": false, - "gender": 1, - "id": 3119216, - "known_for_department": "Crew", - "name": "Marché Day", - "original_name": "Marché Day", - "popularity": 0.696, - "profile_path": null, - "credit_id": "64ceba14d9f4a603b6c891d2", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3122273, - "known_for_department": "Camera", - "name": "Stephen Grum", - "original_name": "Stephen Grum", - "popularity": 1.03, - "profile_path": null, - "credit_id": "64e4dd1506f984014e66c4eb", - "department": "Lighting", - "job": "Gaffer" - }, - { - "adult": false, - "gender": 0, - "id": 3122273, - "known_for_department": "Camera", - "name": "Stephen Grum", - "original_name": "Stephen Grum", - "popularity": 1.03, - "profile_path": null, - "credit_id": "64e16a02a3b5e601d875a111", - "department": "Lighting", - "job": "Chief Lighting Technician" - }, - { - "adult": false, - "gender": 0, - "id": 3166598, - "known_for_department": "Visual Effects", - "name": "Arian Nikjeh", - "original_name": "Arian Nikjeh", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e152b55ab81a011c2f438a", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3292110, - "known_for_department": "Production", - "name": "Tini Wider", - "original_name": "Tini Wider", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e4dfbfe0ca7f01006fc8a1", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 2, - "id": 3322720, - "known_for_department": "Crew", - "name": "William Tang", - "original_name": "William Tang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceb94785090f00e796c5d4", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 3322723, - "known_for_department": "Crew", - "name": "Kade Pittman", - "original_name": "Kade Pittman", - "popularity": 0.616, - "profile_path": null, - "credit_id": "64e1699de19de900c68beecd", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3322737, - "known_for_department": "Art", - "name": "Artie Contreras", - "original_name": "Artie Contreras", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63ec2f151b7294008e15f17b", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 3340944, - "known_for_department": "Writing", - "name": "Joe Gill", - "original_name": "Joe Gill", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e16ab4076ce8011d1593f8", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 3348333, - "known_for_department": "Writing", - "name": "Paris Cullins", - "original_name": "Paris Cullins", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e16a8b5ab81a00c5b7bc38", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 3546499, - "known_for_department": "Acting", - "name": "Erika Keck", - "original_name": "Erika Keck", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceb9c5d9f4a603b4a0195f", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3616280, - "known_for_department": "Crew", - "name": "Erin Haus", - "original_name": "Erin Haus", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceb9d66d4c97012e8ade46", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 3650884, - "known_for_department": "Visual Effects", - "name": "James Schembri", - "original_name": "James Schembri", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e4df5a06f98400ae4740f6", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3695659, - "known_for_department": "Acting", - "name": "Jaden Ponce", - "original_name": "Jaden Ponce", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e1696c5ab81a00ad215506", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3757536, - "known_for_department": "Camera", - "name": "Natasha I. Nieves", - "original_name": "Natasha I. Nieves", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e4dd46c3c891011d9ccee6", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 0, - "id": 3785729, - "known_for_department": "Art", - "name": "Yolande Thame", - "original_name": "Yolande Thame", - "popularity": 0.652, - "profile_path": null, - "credit_id": "64e03b03b77d4b113e0728a1", - "department": "Art", - "job": "Set Designer" - }, - { - "adult": false, - "gender": 2, - "id": 3790206, - "known_for_department": "Directing", - "name": "Ben White", - "original_name": "Ben White", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63ec30448e8702007a1a476c", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 3921100, - "known_for_department": "Production", - "name": "Anna Elisa Mackowiak", - "original_name": "Anna Elisa Mackowiak", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63ec2fcc1f3e6000a1c549da", - "department": "Production", - "job": "Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 3961339, - "known_for_department": "Crew", - "name": "Michelle Andrea Adams", - "original_name": "Michelle Andrea Adams", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceba6f303c8500e3388ce2", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4090188, - "known_for_department": "Crew", - "name": "Diego Davila-Rivera", - "original_name": "Diego Davila-Rivera", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceba2dfa27f4011c84c764", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4164736, - "known_for_department": "Crew", - "name": "Kyle Murillo", - "original_name": "Kyle Murillo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceb987549dda011c27ce09", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4194255, - "known_for_department": "Production", - "name": "Rusty Grimes II", - "original_name": "Rusty Grimes II", - "popularity": 0.77, - "profile_path": null, - "credit_id": "64e03ace5ab81a00ffc216fb", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 4199440, - "known_for_department": "Crew", - "name": "Nicole Diane Rios", - "original_name": "Nicole Diane Rios", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e1678d5ab81a00c5b7ba8f", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4199450, - "known_for_department": "Crew", - "name": "Jewelianna Ramos-Ortiz", - "original_name": "Jewelianna Ramos-Ortiz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceb96a614c6d00acb19775", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4222746, - "known_for_department": "Costume & Make-Up", - "name": "Mollie Ennis", - "original_name": "Mollie Ennis", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e038db5ab81a00c5b73aca", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 4222760, - "known_for_department": "Art", - "name": "Tina Cianfaro Watson", - "original_name": "Tina Cianfaro Watson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e03b2ae19de9011d5e1ef1", - "department": "Art", - "job": "Set Decoration Buyer" - }, - { - "adult": false, - "gender": 0, - "id": 4224008, - "known_for_department": "Art", - "name": "Aaron Kelly", - "original_name": "Aaron Kelly", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e1632b076ce800e313a3b9", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 4224012, - "known_for_department": "Art", - "name": "Sara Corral", - "original_name": "Sara Corral", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e163aa076ce800adceb0d1", - "department": "Art", - "job": "Graphic Designer" - }, - { - "adult": false, - "gender": 0, - "id": 4224050, - "known_for_department": "Crew", - "name": "Mike Norton", - "original_name": "Mike Norton", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e16aa5b77d4b1143495f28", - "department": "Crew", - "job": "Thanks" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Party Bug", - "key": "vsBwcxu8bAQ", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-17T23:14:17.000Z", - "id": "64e34ed4d7cd06011f38f4c0" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official IMAX® Interview", - "key": "ZO4BlX7oqI8", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-08-15T19:22:25.000Z", - "id": "64dcc18eb77d4b11401909f0" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Final Trailer", - "key": "4wxyy8Rcz4k", - "site": "YouTube", - "size": 2160, - "type": "Trailer", - "official": true, - "published_at": "2023-07-11T20:00:01.000Z", - "id": "64adbf6f66a0d30100db2e48" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Trailer Out Now", - "key": "6UtM-MRfXuo", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-04-03T18:21:29.000Z", - "id": "643491ade635710093af53b7" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "vS3_72Gb-bI", - "site": "YouTube", - "size": 2160, - "type": "Trailer", - "official": true, - "published_at": "2023-04-03T15:39:24.000Z", - "id": "642af85e01b1ca00d5e8e821" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Trailer Tomorrow", - "key": "7xtccqnqMBY", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-04-02T16:02:00.000Z", - "id": "643491f2e6357100b4475dce" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/H6j5smdpRqP9a8UnhWp6zfl0SC.jpg", - "vote_average": 5.394, - "vote_count": 10, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/1syW9SNna38rSl9fnXwc9fP7POW.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/gSba8P2SmfBIVtbjQa2TxREna0X.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/p1xvfoZHkwSQsCAYz5wBbmxVEal.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/A1d0w5Y73pfzhkz93ZUxTicAE6J.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/hfvt0hG926BlottV9yldiJ2HYFM.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/538XjiC3FCUAonW5TCXLtzY9lB1.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/ixZzr4PyM2TPs5fka3IJj058WYo.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/8sk3ojnJRa7OW3pNygwDwGdFZaB.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/3H9NA1KWEQN0ItL3Wl3SFZYP6yV.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/uRk2gZilBhcIMF4Ki8lELmPZspi.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/fhr2eVrFh3Su9MvC2kitSFQkHwz.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/wqlXU5QdiQhZwvhG5YVq8PFZhWE.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/4ulDBdJiV2WGGUBuvwidPJ9WvfF.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/pN3019XAjYeVApwFNkZi5l7kGRc.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/lVC4FZ1nbgzZg7lkPLti0BgNd0q.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1800, - "iso_639_1": null, - "file_path": "/wbxgNVvtFnRyT8uu4OF0qipgigy.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3200 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/igTfOL6fv6FNooGeUiDjT7QodCd.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/YQws02lWsOXJYFAcboLiC2lPYY.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/x0GGS0r4ig4fMMehTRVPyXkxKTI.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1898, - "iso_639_1": null, - "file_path": "/pEDXiMgHC3Mi3EhW0UtGwIeCn6F.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 3374 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/nudmzgatA3Fc3kUh15uwHbzu2KA.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/5DnCxUxZRsmrvKr3rhDyA3pcrzA.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/qoQwraFZQna4bSgkEghGXC9HImz.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/2kNM8V2ozjaobCdeis9EyqkUOzg.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/1SMdoRIWVmhwDOhH6AAp1RmnJNA.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/1CHyZlPYp0RdI3EZ70OgJ5POqTK.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1181, - "iso_639_1": null, - "file_path": "/zbq2bWb63UVh90lNRxbkrJDzrh7.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2100 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/tYGRC6ixeC3r71FqQHYeQGHYTV6.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1843, - "iso_639_1": null, - "file_path": "/eMEMHjhRGqJCkLg0DNB6cLGEudG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3276 - }, - { - "aspect_ratio": 1.778, - "height": 1623, - "iso_639_1": null, - "file_path": "/xBq1xp97qTyX2v3Sa5xbhyL54Tr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2886 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/iM3Be1dm8FFZq68Eq0QDHi41AFt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/xSsQyV9qpdN0wmErN6QBgHSoQQY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "cs", - "file_path": "/qL0UonO9Y7kIGHF44ILyma9OJNt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/ci9f5jOpbgrRZw1NQmhKQOr3bpc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/iMzqsTbfavsSejjmCS1ih1BIqLQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/ja7zdEpuSdap9wxgA3n1OwXXqlQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/386gq1X0GwmNhxycBfuESDQPPXz.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - } - ], - "logos": [ - { - "aspect_ratio": 3.934, - "height": 1098, - "iso_639_1": "en", - "file_path": "/zanKFaGoXMI5p22vj4VB3rvM5Eg.png", - "vote_average": 5.454, - "vote_count": 3, - "width": 4319 - }, - { - "aspect_ratio": 4.349, - "height": 993, - "iso_639_1": "en", - "file_path": "/dlU4GkC1I029iiU7IBE9M74A00u.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 4319 - }, - { - "aspect_ratio": 4.31, - "height": 1002, - "iso_639_1": "en", - "file_path": "/u0Qqi8gPDOHjtNEuPcUMlNdmNCh.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 4319 - }, - { - "aspect_ratio": 3.934, - "height": 1098, - "iso_639_1": "en", - "file_path": "/k8Z507a2MayhwXL29iMInD2rQ5e.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 4319 - }, - { - "aspect_ratio": 3.813, - "height": 422, - "iso_639_1": "en", - "file_path": "/mRWlF9Q9lus5h8szEgqiftLSAEo.png", - "vote_average": 5.252, - "vote_count": 4, - "width": 1609 - }, - { - "aspect_ratio": 1.323, - "height": 756, - "iso_639_1": "en", - "file_path": "/axlYTmd1RdbpMGsXhXiscxMKZiE.png", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 4.36, - "height": 369, - "iso_639_1": "en", - "file_path": "/ciraTOWc154Oke76h6vBYVMRAhX.png", - "vote_average": 5.246, - "vote_count": 2, - "width": 1609 - }, - { - "aspect_ratio": 3.898, - "height": 1108, - "iso_639_1": "en", - "file_path": "/9bVnd7Niij7OYyoAumpfArEIvuR.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 4319 - }, - { - "aspect_ratio": 2.943, - "height": 245, - "iso_639_1": "he", - "file_path": "/yNOhF4IiOzdiE9exmx1VqcioaLg.png", - "vote_average": 0, - "vote_count": 0, - "width": 721 - }, - { - "aspect_ratio": 4.643, - "height": 168, - "iso_639_1": "en", - "file_path": "/zy7c57SQXy9nG2k9hkdraMnKHq8.png", - "vote_average": 0, - "vote_count": 0, - "width": 780 - }, - { - "aspect_ratio": 4.699, - "height": 156, - "iso_639_1": "pt", - "file_path": "/7OaQMxO4xIIPFlKGANrXk8uxm9K.png", - "vote_average": 0, - "vote_count": 0, - "width": 733 - }, - { - "aspect_ratio": 0.879, - "height": 844, - "iso_639_1": "th", - "file_path": "/iEzpmKKF4rLgBN79pArdHPcoewt.png", - "vote_average": 0, - "vote_count": 0, - "width": 742 - }, - { - "aspect_ratio": 1.825, - "height": 326, - "iso_639_1": "zh", - "file_path": "/yO0gCSlYOC25jzgEBKI2vs2NqPS.png", - "vote_average": 0, - "vote_count": 0, - "width": 595 - }, - { - "aspect_ratio": 4.873, - "height": 314, - "iso_639_1": "ru", - "file_path": "/qGPrGjAYvuZeiPlH4z62EoK3xB3.png", - "vote_average": 0, - "vote_count": 0, - "width": 1530 - }, - { - "aspect_ratio": 4.416, - "height": 332, - "iso_639_1": "pt", - "file_path": "/vgXoUURXbTfylGQYYb1YV77m9Lb.png", - "vote_average": 0, - "vote_count": 0, - "width": 1466 - }, - { - "aspect_ratio": 0.98, - "height": 749, - "iso_639_1": "th", - "file_path": "/qz2EUtXgjjc0ojnhZ5gxNL9FbNu.png", - "vote_average": 0, - "vote_count": 0, - "width": 734 - }, - { - "aspect_ratio": 4.713, - "height": 916, - "iso_639_1": "pt", - "file_path": "/7z1SZEbzJd0a60Ux0SK2Gen7xWb.png", - "vote_average": 0, - "vote_count": 0, - "width": 4317 - }, - { - "aspect_ratio": 4.788, - "height": 902, - "iso_639_1": "pt", - "file_path": "/kHjcvXfbi8WjLzMKwKUzNgUc2Wu.png", - "vote_average": 0, - "vote_count": 0, - "width": 4319 - }, - { - "aspect_ratio": 4.643, - "height": 168, - "iso_639_1": "en", - "file_path": "/bzqmSP8AD7xjIWNFouyM4O0ZIhF.png", - "vote_average": 0, - "vote_count": 0, - "width": 780 - }, - { - "aspect_ratio": 1.345, - "height": 293, - "iso_639_1": "en", - "file_path": "/8tibzjAcgseQZ9yEoxY8v46pK8h.png", - "vote_average": 0, - "vote_count": 0, - "width": 394 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/vNfL4DYnonltukBrrgMmw94zMYL.jpg", - "vote_average": 5.46, - "vote_count": 31, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/lZ2sOCMCcGaPppaXj0Wiv0S7A08.jpg", - "vote_average": 5.416, - "vote_count": 36, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/5bz0tNZTToWPuH7n9pDW1eR9RRY.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "en", - "file_path": "/9sYNRlGP73ma8mJfaRhtmIAP9uj.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6OvZRu67nL0QRrMOanA6k60X1cV.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/y5sdkgO4IJMTnkjh9PG7kREPWrP.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": "en", - "file_path": "/m0JDXK5ZsrqfQEqVFw22mbCjTns.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 600 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "no", - "file_path": "/wbrLT37qjp97GHgfXusN3zFCjkN.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "no", - "file_path": "/dWyDHz3kiJODxyCpeUbbM76xyJ0.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/34lVeftC5BSisD4RYRMacpIPCFR.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2000, - "iso_639_1": "th", - "file_path": "/6h5i6v2glDlKwbcsdsFUu5cWhXQ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1350 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/ox6lUfuBmoehxo8ybmSkFAHpTf4.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/aHT0qcPPJGnF5ZhrRAdpfmEnl5Z.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/xSVtl6ZF7fNuZIoXkZbzI2EzoAD.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/v3qaCZ3extC4N14QHgAUy3aj22X.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/ie86mV447tCRGlgxu7WrMweCMw.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/uZTxZXddzqSYoVbH6jZ09xcz7AK.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/1C1fcfwbcdfywMbp7KPqMe7PL6u.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ro", - "file_path": "/cD8mb9nPzXGUjmjpDApMOQqss0X.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/uhNBl6jmfmqTNbXesC1maphFbf4.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/uSmlM9PSnb5Z090IXAGEQ7nF1Lq.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/rhrFsGQlMSlEbYac5xxtMPP6e1u.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/7roEyyMoDiDxt5qwhm01i3nU0Mw.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/xirQxdlqRulAaOGCzWbemeB9n1u.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/mjQaIpA1zH6vCpyMu8w9VJG5nDO.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1884, - "iso_639_1": "en", - "file_path": "/rBy9lo6qOIId6UuDS720SUHK6xg.jpg", - "vote_average": 5.286, - "vote_count": 16, - "width": 1256 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/gA6sEygZlszxZZZTR5jD9rfleZO.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": null, - "file_path": "/3Yd0UEiePNibCvZNwYmxZRCYxvy.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/h4BoV9d1rNIWfjlTwZtNbaCkGwn.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "he", - "file_path": "/3K1pUHns1dzIAfiVtLFjkJsaSNn.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "he", - "file_path": "/bM00Q4UA5S2v9ft1esDqfEYctUt.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1382 - }, - { - "aspect_ratio": 0.677, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/5DR8In3q84FEl28PP6m9xGCIdjh.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 731 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/jlAqIzokpv44VfjRz52u6z2LeJR.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/tZ27BFee4UDeJd5iYQWGu5sKcXm.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/cEvVX27LrcOo9EfUvEPFOQLSmsQ.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/pskcOrsL5y3fUPksTwkj6PwoREu.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/w1hEtKWI9a6zlIfamYCltAQxPo3.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/o3gSSs8fTy0POvrwA7ACjFrJvsa.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": null, - "file_path": "/mDzL6Y71ORikYczwy7GEEU5zjcx.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ru", - "file_path": "/paLAIjZH0SnR6sWDN1tkaOOb6Pr.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/3yJHNWsE7a7Qj2a0S0jbIW0QnlX.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/3V7uP7LsFo34Vm1cPy2cQpjrHE6.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/pIV1yvdtjY0gmLLTIgjUteNY62Q.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "en", - "file_path": "/3V0QIu5TuRovxDP3RwvPOwTIOp9.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1440 - }, - { - "aspect_ratio": 0.675, - "height": 1500, - "iso_639_1": "en", - "file_path": "/v9I1NIynaooDNYuma98u6TwwDDU.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1012 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/yVZVTpbQvU0buMcRGE7G58nyYu7.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/z5mkvXYNRauSzHdZgxAj6MzrLTY.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "es", - "file_path": "/cZfIrJ7m5Vorq7rXLs85Uzo2r7M.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/fRBxEAWotCXih5ZxYLNJOSiaeZs.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "en", - "file_path": "/89I5oCMtNdbBRRbhfvY1Sgji31v.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/iyev5udSI2NecJHpl3EstYeQBJ7.jpg", - "vote_average": 5.18, - "vote_count": 18, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/tf5Mqgoj1fFIeP7Ktfn8KGrYhup.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "es", - "file_path": "/tAXWRVMiJpj19lJKbTv5it6CJzS.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qlUOZvoi2KJ5bPAORfm4qfsieWa.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/a2QIFBp0P8tMsmX1RmOEvL0Zw93.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "de", - "file_path": "/k2n1BxjGT2NwH2ok0EFJM7UAdgz.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/qmWBOQYl0EOTDEwh0evEsMsGBDZ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1936, - "iso_639_1": "tr", - "file_path": "/Au9bxO4TSYx6MarEsevfNZRO3FF.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1291 - }, - { - "aspect_ratio": 0.708, - "height": 848, - "iso_639_1": "no", - "file_path": "/pI2ImSPAfU8DxpYlUVX1i9nxXQ9.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 600 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/vHxvE2xY07pKzPAh4Zzk1H47g66.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 1600, - "iso_639_1": "de", - "file_path": "/iScHswSyuhwswC0txfCNCf97Obm.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1067 - }, - { - "aspect_ratio": 0.712, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/nD0peP0SbmKD5Pm8IkdRo9OKoah.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 769 - }, - { - "aspect_ratio": 0.7, - "height": 1097, - "iso_639_1": "he", - "file_path": "/1I342886DSewBNSAIO8QQx3Nnrb.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 768 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "id", - "file_path": "/3Woi0H9vrNy98NWrtL9bM39zSDw.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "id", - "file_path": "/j4vBzLeaFtiHyLAOWiMR9xFHVaH.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "id", - "file_path": "/xNjEEvq7av2gQWyH0hE7okjNgJo.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "id", - "file_path": "/7grtmsbCMlSjBUV4BsgDwwPSVY1.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 1600, - "iso_639_1": "pt", - "file_path": "/AhmVkXerBVsuI6PejPeqaaW2wwT.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1067 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/fisvE0CSo4jcYXUri9gVhZYqgYc.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/rj8wTeJK92BGYdOYPNfugdtoobg.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1364 - }, - { - "aspect_ratio": 0.7, - "height": 1080, - "iso_639_1": "tr", - "file_path": "/63aWvNI3ezyRWl8CS1I7F4hI6iB.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 756 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/oaduqp6ExNHArukDZ9St11lk2Ak.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/13MlMT5yRroffGk7JixpkJnhCDy.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2046, - "iso_639_1": "en", - "file_path": "/wYwDiw9DZotu19QLqB8gmnoSEs.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/kNa6ZykQrIYVF6yU0PnYxulyMQq.jpg", - "vote_average": 5.146, - "vote_count": 10, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/esYoyv5ZK2iUHRViwpbYNHcK4pp.jpg", - "vote_average": 5.146, - "vote_count": 10, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2149, - "iso_639_1": "en", - "file_path": "/czxZ3KEUf3aHGwul9M0pWIfxXb8.jpg", - "vote_average": 5.146, - "vote_count": 10, - "width": 1433 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "en", - "file_path": "/aP11o5chP0w0DBNBvP7OzWHlEp0.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/wPhtO8xdaJ1sH5IO1wW4QPwi5Jd.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zJHWMrlD2c5rfvSLK9F7VE4EOqc.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/xQoej3bB0ShPJZEkEhlYst5MViI.jpg", - "vote_average": 5.12, - "vote_count": 17, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/nDhb1nCRvOfGPzjfNBW4WQOCp2D.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/fZMC0yybKbgwPAC3jhZ478HhNFu.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1600, - "iso_639_1": "de", - "file_path": "/3CZnRDDDVnKFih4uLvxaTfoF0Zd.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1067 - }, - { - "aspect_ratio": 0.667, - "height": 1884, - "iso_639_1": "en", - "file_path": "/rJ4zo2g6YBfhzW1dLActAPaDzgf.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1256 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/hdp0jBU1lmDe7KASASynbs2M31j.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/1FneYIlyDxj7OxoJCk5d15zU63X.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "en", - "file_path": "/A7v65jbPVg6vw21YMPEKjlZURQB.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1280 - }, - { - "aspect_ratio": 0.68, - "height": 1000, - "iso_639_1": "en", - "file_path": "/qcLQTYXybOQHC9Fgsm9eM6gBB22.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 680 - }, - { - "aspect_ratio": 0.667, - "height": 2149, - "iso_639_1": "en", - "file_path": "/iAXXhSgqzfQLyyxZIYnhEOYjaE5.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1433 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/u2kcJNpaVpK9yS0Wxz1l2iI0s5y.jpg", - "vote_average": 5.08, - "vote_count": 9, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/LbSdA9vPDf1B3op7MihSyawR7B.jpg", - "vote_average": 5.068, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/3zfgSsy4hslFILCQiswVkDQSMEN.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "es", - "file_path": "/m2jDL4NCgEdMDEoMfe6SObyqobz.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ek0sxJba7pEWf3GUEOKuQwtMCOf.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "uk", - "file_path": "/tBs1x0hVV650dN14nUvBmfvPkzq.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/bmS5kcSgjmUs3KxWJUb6RMPnuYe.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/3x0f6SXY0jQ1f5slXL8XlGYPcZb.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/ctQcPmVSZP4GJsJ7n8AvxC4oc2z.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.677, - "height": 1363, - "iso_639_1": null, - "file_path": "/oHKUgmCbqece4VrdBDgxvfkJvw2.jpg", - "vote_average": 4.938, - "vote_count": 7, - "width": 923 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gvtMN1IWBqqPYYlPy2saWaPbmP9.jpg", - "vote_average": 4.828, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/2Dk0mkkgjwCIJ7VMThFQP21g4gJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/bz4ka7Lssz42ONfQrvO4fR3kMg7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/2RsgwIP90Ojks9ERqAmtOYEQHge.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/vg1neJPGKuPdXO1vbveZ5k2Lrn7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/xIs4wAi0yUUCh59oLs7YsOJ9Bjh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "vi", - "file_path": "/cswPVyXwQ13dFHU1KFS8dpFxIyY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/nEvWdHCKJdILLM8qmlW7ENVHVTy.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.756, - "height": 2021, - "iso_639_1": "he", - "file_path": "/o32uJAYiYGRFF7Yp6icHjNaWdxU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1527 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/pwitYbgZjp671xGHmRlUg6R9Ta1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2000, - "iso_639_1": "th", - "file_path": "/3LFAzqQ0M6OA4y62mOtcfXncORG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1350 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ANtP8YVd5EUSUYc81fxsDVyknp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/1eXJqj1yexxOy6iGBpPyVal7zRp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 972 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/hokoqUNkqIALjHyyo7nZGnCWVur.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "nl", - "file_path": "/mIvuor5SxE496jfd3FWOPbK7bHO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.71, - "height": 2048, - "iso_639_1": "cn", - "file_path": "/34LEzx0eFkPaaoxa90aWgdRiwCY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1455 - }, - { - "aspect_ratio": 0.711, - "height": 1368, - "iso_639_1": "cn", - "file_path": "/lb1PSzNGQhQ9Qv0PtgzcVUH1KJ7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 972 - }, - { - "aspect_ratio": 0.665, - "height": 2663, - "iso_639_1": "ar", - "file_path": "/nH29grXgxdia1qrSqZPcwWQNn6g.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1772 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/3Lg78oIccQ7gyOvdM5sPq2UXzXj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/2ouedD64HcydhzaxcBxSo0NWWKQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.75, - "height": 2560, - "iso_639_1": "en", - "file_path": "/41UXsvPpkRV3iORyPVoOHiamai3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/xzXdyFygjKsnWFQviUAM9lAhSU4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/AsPJHyXksywO0LV6roX02gdE3AR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/aUuNJLySLkNc3PcTSIjbWSbfI4w.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/32xnAwCOAtFrj7qBy14BAYMyNrT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/9sIs2A4TZFGDxixtCpWS7pUlcOM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1269, - "iso_639_1": "en", - "file_path": "/t4e6D6ozKqC5vF5VhaHIyDhlWXf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 846 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/24mR8VZzC7uqLR03ayYr3Ugl4IG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/qY1uMA0z2LS3mPkoxVLI2XGsVu4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/q3ovr3TZNOQuIjop2ellWAG1zpR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 2045, - "iso_639_1": "en", - "file_path": "/aGpxMVUCnpwu4YbUU3NVpJRTy9S.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 2047, - "iso_639_1": "pt", - "file_path": "/nKwuNVWYYFX3mOr31wSoZzCxe6K.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.745, - "height": 1278, - "iso_639_1": "it", - "file_path": "/bRWzcHHdRtkWs0wReFHHsGucA7S.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 952 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/xA2GNgVQMvl83C3FugtqBcPGsaO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/y5Ek6QVbbgdxcrmRH6T9EUPaVeN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/dbYLojLYoPKVlxsnAXJQlXdHx2q.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tH3fPwwug59g61feTuBiB6nX5pF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ldOzVWOgbatI9YpCX8B245OiepD.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/mmNmnc022XlJzybgrXNeHzOwXH4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2149, - "iso_639_1": "en", - "file_path": "/pQ8PgklBPse69G8Yhh4PPbR9EmI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1433 - }, - { - "aspect_ratio": 0.666, - "height": 1280, - "iso_639_1": "it", - "file_path": "/tLozeOrfk5RJCCo9GmmYoD6PH9G.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 853 - }, - { - "aspect_ratio": 0.667, - "height": 832, - "iso_639_1": "en", - "file_path": "/zIStZc9gZX3kwWm5PxWbcg51mC7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 555 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/aTeynJFUHOHM6e5mR7ng6DaIEXz.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/7BjndUK1vMOfOKAQI1kYQWAttlY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/mXLOHHc1Zeuwsl4xYKjKh2280oL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/hYB4xWR1mC9RoUU0BYXPq800xDI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/cox6PsDGDijVzbZdWPtps0tFTwZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gbjrr85rOyLLE9LcRMhs5xZOTG4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/c1E3fxp9uwSwu7RGbyEGLYnLxM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/egeTmHXvQhh8J4lCQg2xBS2D2Jt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/supY7sJTETSTrgQ83SKoTIIjGkk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/cADAApE5vxYN4x9hmqR1vrxs8iW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "es", - "file_path": "/wG6VgyvZ8uiFIl34tzUplt5u2sM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "en", - "file_path": "/xWreFzKvkYoHxmoF3jLLqYspp7h.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/n8R8Fd5Zz3vSUpYB2Ew8iGRdkWk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/wZZEIm9MyiX3XN5qHj9hYYUXTxq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "fr", - "file_path": "/qYP807BKA69BUKhxzgrdx54j4D6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 667 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/bNiB2PizVGrqmbztt6MlGnwgk6r.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/569094.json b/examples/view-transitions/src/content/movies/569094.json deleted file mode 100644 index 0dd550911..000000000 --- a/examples/view-transitions/src/content/movies/569094.json +++ /dev/null @@ -1,13946 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/4HodYYKEIsGOdinkGi2Ucz6X9i0.jpg", - "belongs_to_collection": { - "id": 573436, - "name": "Spider-Man: Spider-Verse Collection", - "poster_path": "/eD4bGQNfmqExIAzKdvX5gDHhI2.jpg", - "backdrop_path": "/14F6gMaRjzgsN6EEpiwH87R1I00.jpg" - }, - "budget": 100000000, - "genres": [ - { "id": 16, "name": "Animation" }, - { "id": 28, "name": "Action" }, - { "id": 12, "name": "Adventure" } - ], - "homepage": "https://www.acrossthespiderverse.movie", - "id": 569094, - "imdb_id": "tt9362722", - "original_language": "en", - "original_title": "Spider-Man: Across the Spider-Verse", - "overview": "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.", - "popularity": 842.076, - "poster_path": "/8Vt6mWEReuy4Of61Lnj5Xj704m8.jpg", - "production_companies": [ - { - "id": 5, - "logo_path": "/wrweLpBqRYcAM7kCSaHDJRxKGOP.png", - "name": "Columbia Pictures", - "origin_country": "US" - }, - { - "id": 2251, - "logo_path": "/5ilV5mH3gxTEU7p5wjxptHvXkyr.png", - "name": "Sony Pictures Animation", - "origin_country": "US" - }, - { - "id": 77973, - "logo_path": "/9y5lW86HnxKUZOFencYk3TIIRCM.png", - "name": "Lord Miller", - "origin_country": "US" - }, - { - "id": 84041, - "logo_path": "/nw4kyc29QRpNtFbdsBHkRSFavvt.png", - "name": "Pascal Pictures", - "origin_country": "US" - }, - { "id": 14439, "logo_path": null, "name": "Arad Productions", "origin_country": "US" } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "2023-05-31", - "revenue": 683241751, - "runtime": 140, - "spoken_languages": [ - { "english_name": "English", "iso_639_1": "en", "name": "English" }, - { "english_name": "Hindi", "iso_639_1": "hi", "name": "हिन्दी" }, - { "english_name": "Italian", "iso_639_1": "it", "name": "Italiano" }, - { "english_name": "Spanish", "iso_639_1": "es", "name": "Español" } - ], - "status": "Released", - "tagline": "It's how you wear the mask that matters.", - "title": "Spider-Man: Across the Spider-Verse", - "video": false, - "vote_average": 8.5, - "vote_count": 4262, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 587506, - "known_for_department": "Acting", - "name": "Shameik Moore", - "original_name": "Shameik Moore", - "popularity": 11.475, - "profile_path": "/uJNaSTsfBOvtFWsPP23zNthknsB.jpg", - "cast_id": 705, - "character": "Miles Morales / Spider-Man (voice)", - "credit_id": "6489a4f8e375c000e251ab48", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 130640, - "known_for_department": "Acting", - "name": "Hailee Steinfeld", - "original_name": "Hailee Steinfeld", - "popularity": 26.098, - "profile_path": "/q4UpZMEuvNCN5lL5L6xa3ICpheJ.jpg", - "cast_id": 706, - "character": "Gwen Stacy / Spider-Woman (voice)", - "credit_id": "6489a502d2b209010c1b8eda", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 17881, - "known_for_department": "Acting", - "name": "Jason Schwartzman", - "original_name": "Jason Schwartzman", - "popularity": 17.987, - "profile_path": "/gCjMdmW1DiPAClHVl4zHEIffIsE.jpg", - "cast_id": 710, - "character": "Jonathan Ohnn / Spot (voice)", - "credit_id": "6489a530e2726000e8c320c7", - "order": 2 - }, - { - "adult": false, - "gender": 2, - "id": 25072, - "known_for_department": "Acting", - "name": "Oscar Isaac", - "original_name": "Oscar Isaac", - "popularity": 37.736, - "profile_path": "/dW5U5yrIIPmMjRThR9KT2xH6nTz.jpg", - "cast_id": 709, - "character": "Miguel O'Hara / Spider-Man 2099 (voice)", - "credit_id": "6489a527e2726001287c06d5", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 226366, - "known_for_department": "Acting", - "name": "Brian Tyree Henry", - "original_name": "Brian Tyree Henry", - "popularity": 8.861, - "profile_path": "/1UgDnFt3OteCJQPiUelWzIR5bvT.jpg", - "cast_id": 30, - "character": "Jeff Morales (voice)", - "credit_id": "6271f53b89d97f005085abd7", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 141610, - "known_for_department": "Acting", - "name": "Luna Lauren Velez", - "original_name": "Luna Lauren Velez", - "popularity": 12.112, - "profile_path": "/98BvmTJCZHx0jPv0oNcv04Jkmfb.jpg", - "cast_id": 707, - "character": "Rio Morales (voice)", - "credit_id": "6489a50dbf31f2505708a397", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 543505, - "known_for_department": "Acting", - "name": "Jake Johnson", - "original_name": "Jake Johnson", - "popularity": 13.469, - "profile_path": "/3gASdJlbZYxTDYMaX6ALo4BDEjN.jpg", - "cast_id": 708, - "character": "Peter B. Parker / Spider-Man (voice)", - "credit_id": "6489a51ae375c0011c8201e0", - "order": 6 - }, - { - "adult": false, - "gender": 1, - "id": 1455336, - "known_for_department": "Acting", - "name": "Issa Rae", - "original_name": "Issa Rae", - "popularity": 9.214, - "profile_path": "/1tX1T5ZNCMh2KYP1jMgfg8P26vm.jpg", - "cast_id": 711, - "character": "Jessica Drew / Spider-Woman (voice)", - "credit_id": "6489a538e375c000c52a3cae", - "order": 7 - }, - { - "adult": false, - "gender": 2, - "id": 1109702, - "known_for_department": "Acting", - "name": "Karan Soni", - "original_name": "Karan Soni", - "popularity": 17.895, - "profile_path": "/hkyWd9bcuOqUAUepOJLE47izTWR.jpg", - "cast_id": 713, - "character": "Pavitr Prabhakar / Spider-Man India (voice)", - "credit_id": "6489a549e2726000c932c67d", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 74242, - "known_for_department": "Acting", - "name": "Shea Whigham", - "original_name": "Shea Whigham", - "popularity": 14.14, - "profile_path": "/yHOYG5qKi3b0DhKOrPoBnELjR7z.jpg", - "cast_id": 714, - "character": "George Stacy (voice)", - "credit_id": "6489a55b6f8d95011f2435e3", - "order": 9 - }, - { - "adult": false, - "gender": 1, - "id": 1260481, - "known_for_department": "Acting", - "name": "Greta Lee", - "original_name": "Greta Lee", - "popularity": 12.102, - "profile_path": "/6SydTis4XUcovlwIGskT59JowLX.jpg", - "cast_id": 38, - "character": "LYLA (voice)", - "credit_id": "63695b7d1684f7007a9bf5d7", - "order": 10 - }, - { - "adult": false, - "gender": 3, - "id": 561869, - "known_for_department": "Acting", - "name": "Amandla Stenberg", - "original_name": "Amandla Stenberg", - "popularity": 19.539, - "profile_path": "/an4LrFOKPQxUVqfJ6M8Ck4y0FiP.jpg", - "cast_id": 83, - "character": "Margo Kess: Spider-Byte (voice)", - "credit_id": "64756ba16743fa00df865ea0", - "order": 11 - }, - { - "adult": false, - "gender": 2, - "id": 1664716, - "known_for_department": "Acting", - "name": "Jharrel Jerome", - "original_name": "Jharrel Jerome", - "popularity": 5.443, - "profile_path": "/rh9EcyoIhmWTXBCdgadGQaerfbA.jpg", - "cast_id": 130, - "character": "Miles G. Morales (voice)", - "credit_id": "647a40e8e375c000c1a6aac4", - "order": 12 - }, - { - "adult": false, - "gender": 2, - "id": 62861, - "known_for_department": "Acting", - "name": "Andy Samberg", - "original_name": "Andy Samberg", - "popularity": 40.214, - "profile_path": "/uDHHDEoySchljXtIMxjha0Odyfj.jpg", - "cast_id": 76, - "character": "Ben Reilly / Scarlet Spider (voice)", - "credit_id": "644afc50fba62502fbd5626d", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 1030513, - "known_for_department": "Acting", - "name": "Jack Quaid", - "original_name": "Jack Quaid", - "popularity": 26.439, - "profile_path": "/nI6ULvUIxxajya5DeTxcCdV3cal.jpg", - "cast_id": 86, - "character": "Peter Parker / The Lizard (voice)", - "credit_id": "64779d8fcf4b8b0122742009", - "order": 14 - }, - { - "adult": false, - "gender": 1, - "id": 32905, - "known_for_department": "Acting", - "name": "Rachel Dratch", - "original_name": "Rachel Dratch", - "popularity": 7.474, - "profile_path": "/hXBDjoU53c3B1Ni2htWTc0YA7RB.jpg", - "cast_id": 32, - "character": "Ms. Weber (voice)", - "credit_id": "6271f59aa313b8006527fbbe", - "order": 15 - }, - { - "adult": false, - "gender": 2, - "id": 154857, - "known_for_department": "Acting", - "name": "Ziggy Marley", - "original_name": "Ziggy Marley", - "popularity": 8.355, - "profile_path": "/9WZVDvWi6P8sg5hQ6JUf017d2SQ.jpg", - "cast_id": 110, - "character": "Lenny (voice)", - "credit_id": "647994ece323f3014815cc4e", - "order": 16 - }, - { - "adult": false, - "gender": 2, - "id": 62863, - "known_for_department": "Acting", - "name": "Jorma Taccone", - "original_name": "Jorma Taccone", - "popularity": 10.092, - "profile_path": "/x7x4NvDauuQ7HA6psLZYZ6m3zTd.jpg", - "cast_id": 34, - "character": "Adriano Tumino / '67 (voice)", - "credit_id": "62a735a565e0a200ab233adf", - "order": 17 - }, - { - "adult": false, - "gender": 2, - "id": 206919, - "known_for_department": "Acting", - "name": "Daniel Kaluuya", - "original_name": "Daniel Kaluuya", - "popularity": 19.365, - "profile_path": "/a07Tqzgp0IrW9YkcOQiuKavP4tm.jpg", - "cast_id": 712, - "character": "Hobie Brown / Spider-Punk (voice)", - "credit_id": "6489a53f99259c00accf0de2", - "order": 18 - }, - { - "adult": false, - "gender": 2, - "id": 932967, - "known_for_department": "Acting", - "name": "Mahershala Ali", - "original_name": "Mahershala Ali", - "popularity": 12.841, - "profile_path": "/9ZmSejm5lnUVY5IJ1iNx2QEjnHb.jpg", - "cast_id": 96, - "character": "Uncle Aaron (voice)", - "credit_id": "6478805ee323f30148154bb4", - "order": 19 - }, - { - "adult": false, - "gender": 2, - "id": 18999, - "known_for_department": "Acting", - "name": "J.K. Simmons", - "original_name": "J.K. Simmons", - "popularity": 28.983, - "profile_path": "/ScmKoJ9eiSUOthAt1PDNLi8Fkw.jpg", - "cast_id": 98, - "character": "J. Jonah Jameson (voice)", - "credit_id": "64794809caef2d01362a1503", - "order": 20 - }, - { - "adult": false, - "gender": 2, - "id": 119589, - "known_for_department": "Acting", - "name": "Donald Glover", - "original_name": "Donald Glover", - "popularity": 15.202, - "profile_path": "/jqVkQfeeEmdga1G0jpBwwXXwwSK.jpg", - "cast_id": 92, - "character": "Aaron Davis", - "credit_id": "64787bdf93828e0116231395", - "order": 21 - }, - { - "adult": false, - "gender": 1, - "id": 20, - "known_for_department": "Acting", - "name": "Elizabeth Perkins", - "original_name": "Elizabeth Perkins", - "popularity": 18.63, - "profile_path": "/vTWYllD9V76rgv9XAbtkkjjeunG.jpg", - "cast_id": 111, - "character": "May / Quippy Spider-Person (voice)", - "credit_id": "647995370e29a200a65f86d2", - "order": 22 - }, - { - "adult": false, - "gender": 1, - "id": 17696, - "known_for_department": "Acting", - "name": "Kathryn Hahn", - "original_name": "Kathryn Hahn", - "popularity": 10.509, - "profile_path": "/9sVllAKfEls3SJD3GoPm2JEZoa5.jpg", - "cast_id": 131, - "character": "Doc Ock (voice)", - "credit_id": "647a417717497300c131d600", - "order": 23 - }, - { - "adult": false, - "gender": 1, - "id": 2195140, - "known_for_department": "Acting", - "name": "Ayo Edebiri", - "original_name": "Ayo Edebiri", - "popularity": 12.118, - "profile_path": "/rhI5KCgJTqmHlOYmEXfbo5BzjHK.jpg", - "cast_id": 109, - "character": "Glory (voice)", - "credit_id": "647994e093828e0116239872", - "order": 24 - }, - { - "adult": false, - "gender": 1, - "id": 1814694, - "known_for_department": "Writing", - "name": "Nicole Delaney", - "original_name": "Nicole Delaney", - "popularity": 0.791, - "profile_path": null, - "cast_id": 132, - "character": "MJ (voice)", - "credit_id": "647a41b9e323f300a7d51b34", - "order": 25 - }, - { - "adult": false, - "gender": 1, - "id": 4094163, - "known_for_department": "Editing", - "name": "Antonina Lentini", - "original_name": "Antonina Lentini", - "popularity": 0.6, - "profile_path": null, - "cast_id": 133, - "character": "Betty (voice)", - "credit_id": "647a41e4caef2d00aa420ddf", - "order": 26 - }, - { - "adult": false, - "gender": 1, - "id": 932639, - "known_for_department": "Acting", - "name": "Atsuko Okatsuka", - "original_name": "Atsuko Okatsuka", - "popularity": 2.165, - "profile_path": "/iHMzMqLfiKcyOvXcR4KekkS6vII.jpg", - "cast_id": 107, - "character": "Yuri (voice)", - "credit_id": "647994b80e29a200bf1e0e36", - "order": 27 - }, - { - "adult": false, - "gender": 2, - "id": 21198, - "known_for_department": "Acting", - "name": "Peter Sohn", - "original_name": "Peter Sohn", - "popularity": 14.023, - "profile_path": "/8cQGViF2lXlcsAIvFUMWboXYXIu.jpg", - "cast_id": 82, - "character": "Ganke (voice)", - "credit_id": "6474077dcc277c01338924f1", - "order": 28 - }, - { - "adult": false, - "gender": 1, - "id": 587697, - "known_for_department": "Acting", - "name": "Melissa Sturm", - "original_name": "Melissa Sturm", - "popularity": 4.084, - "profile_path": "/kIOM0WSOAczBIMQE9y6hTrOkDUS.jpg", - "cast_id": 108, - "character": "Mary Jane (voice)", - "credit_id": "647994cce323f3014815cc3b", - "order": 29 - }, - { - "adult": false, - "gender": 1, - "id": 1261105, - "known_for_department": "Acting", - "name": "Lorraine Velez", - "original_name": "Lorraine Velez", - "popularity": 0.766, - "profile_path": null, - "cast_id": 135, - "character": "Maria (voice)", - "credit_id": "647a43cdcf4b8b0122756db2", - "order": 30 - }, - { - "adult": false, - "gender": 2, - "id": 928698, - "known_for_department": "Acting", - "name": "Nic Novicki", - "original_name": "Nic Novicki", - "popularity": 1.882, - "profile_path": "/rBStZ7SkvUBeBFibMV1NV6rNJYe.jpg", - "cast_id": 122, - "character": "Lego Spider-Man (voice)", - "credit_id": "6479a1240e29a200dcba1d1b", - "order": 31 - }, - { - "adult": false, - "gender": 2, - "id": 1213573, - "known_for_department": "Acting", - "name": "Taran Killam", - "original_name": "Taran Killam", - "popularity": 7.619, - "profile_path": "/zE4JnkNgs7Yx6zOzdOcxHB4vA1t.jpg", - "cast_id": 106, - "character": "Web-Slinger (voice)", - "credit_id": "6479945c93828e00f9d678ed", - "order": 32 - }, - { - "adult": false, - "gender": 2, - "id": 2166356, - "known_for_department": "Acting", - "name": "Metro Boomin", - "original_name": "Metro Boomin", - "popularity": 1.04, - "profile_path": "/mS1z3fgaEEbwpGLbWjk8oSJ2XuN.jpg", - "cast_id": 78, - "character": "Metro Spider-Man (voice)", - "credit_id": "646ac810c3514c011dcb8dd9", - "order": 33 - }, - { - "adult": false, - "gender": 2, - "id": 20903, - "known_for_department": "Acting", - "name": "Josh Keaton", - "original_name": "Josh Keaton", - "popularity": 12.381, - "profile_path": "/9ss2EXbN0VarF1tM2Qotwxy6fJs.jpg", - "cast_id": 84, - "character": "Spectacular Spider-Man (voice)", - "credit_id": "647789c9076ce800a821a88e", - "order": 34 - }, - { - "adult": false, - "gender": 1, - "id": 2119084, - "known_for_department": "Acting", - "name": "Sofia Barclay", - "original_name": "Sofia Barclay", - "popularity": 4.861, - "profile_path": "/9cm0R93QKdG3Rhta41ZwSoZhOPe.jpg", - "cast_id": 103, - "character": "Malala Windsor: Spider-UK (voice)", - "credit_id": "647993bdcaef2d00df87b453", - "order": 35 - }, - { - "adult": false, - "gender": 1, - "id": 3208721, - "known_for_department": "Acting", - "name": "Danielle Perez", - "original_name": "Danielle Perez", - "popularity": 2.082, - "profile_path": "/hFCONhnCIigLIgPQzPylLp5iNPu.jpg", - "cast_id": 104, - "character": "Charlotte Webber: Sun-Spider (voice)", - "credit_id": "647993e8cf4b8b01418e48b2", - "order": 36 - }, - { - "adult": false, - "gender": 2, - "id": 127387, - "known_for_department": "Acting", - "name": "Yuri Lowenthal", - "original_name": "Yuri Lowenthal", - "popularity": 11.351, - "profile_path": "/41mC1hbV8XNVsqUmRrBFwHNHVp.jpg", - "cast_id": 102, - "character": "Insomniac Spider-Man (voice)", - "credit_id": "64799340e323f301061451f6", - "order": 37 - }, - { - "adult": false, - "gender": 1, - "id": 2344237, - "known_for_department": "Acting", - "name": "Rita Rani Ahuja", - "original_name": "Rita Rani Ahuja", - "popularity": 0.6, - "profile_path": null, - "cast_id": 136, - "character": "Additional Voices (voice)", - "credit_id": "647a45d8e375c000a8e2085f", - "order": 38 - }, - { - "adult": false, - "gender": 2, - "id": 128154, - "known_for_department": "Acting", - "name": "Ismail Bashey", - "original_name": "Ismail Bashey", - "popularity": 1.423, - "profile_path": "/8siTb4IKjtbPinJvVygWlShdr0A.jpg", - "cast_id": 137, - "character": "Additional Voices (voice)", - "credit_id": "647a45e5caef2d0119bf0c59", - "order": 39 - }, - { - "adult": false, - "gender": 2, - "id": 1036171, - "known_for_department": "Acting", - "name": "Oscar Camacho", - "original_name": "Oscar Camacho", - "popularity": 0.792, - "profile_path": "/ckY22gfNS6bCERRFK0jqU57CqFA.jpg", - "cast_id": 138, - "character": "Additional Voices (voice)", - "credit_id": "647a45ef93828e00dcdc24b7", - "order": 40 - }, - { - "adult": false, - "gender": 2, - "id": 4094194, - "known_for_department": "Editing", - "name": "Freddy Ferrari", - "original_name": "Freddy Ferrari", - "popularity": 0.6, - "profile_path": null, - "cast_id": 139, - "character": "Additional Voices (voice)", - "credit_id": "647a45fee323f301061497c5", - "order": 41 - }, - { - "adult": false, - "gender": 0, - "id": 2784051, - "known_for_department": "Acting", - "name": "Kerry Gutierrez", - "original_name": "Kerry Gutierrez", - "popularity": 0.845, - "profile_path": null, - "cast_id": 140, - "character": "Additional Voices (voice)", - "credit_id": "647a4608caef2d00fce5194f", - "order": 42 - }, - { - "adult": false, - "gender": 2, - "id": 2842817, - "known_for_department": "Acting", - "name": "Kamal Khan", - "original_name": "Kamal Khan", - "popularity": 1.047, - "profile_path": null, - "cast_id": 141, - "character": "Additional Voices (voice)", - "credit_id": "647a4627cf4b8b01031dcac1", - "order": 43 - }, - { - "adult": false, - "gender": 2, - "id": 4094197, - "known_for_department": "Acting", - "name": "Angelo Sekou Kouyate", - "original_name": "Angelo Sekou Kouyate", - "popularity": 0.6, - "profile_path": null, - "cast_id": 142, - "character": "Additional Voices (voice)", - "credit_id": "647a465de375c000de574470", - "order": 44 - }, - { - "adult": false, - "gender": 2, - "id": 2597017, - "known_for_department": "Editing", - "name": "Andrew Leviton", - "original_name": "Andrew Leviton", - "popularity": 0.6, - "profile_path": null, - "cast_id": 143, - "character": "Additional Voices (voice)", - "credit_id": "647a4668e375c000fb0071fe", - "order": 45 - }, - { - "adult": false, - "gender": 2, - "id": 104617, - "known_for_department": "Acting", - "name": "David Michie", - "original_name": "David Michie", - "popularity": 2.292, - "profile_path": "/87z5A1ylR4I3jB8lzrLgfILYdYu.jpg", - "cast_id": 144, - "character": "Additional Voices (voice)", - "credit_id": "647a46750e29a20133c3070c", - "order": 46 - }, - { - "adult": false, - "gender": 0, - "id": 4094198, - "known_for_department": "Acting", - "name": "Sumit Naig", - "original_name": "Sumit Naig", - "popularity": 0.6, - "profile_path": null, - "cast_id": 145, - "character": "Additional Voices (voice)", - "credit_id": "647a4683caef2d0119bf0c8c", - "order": 47 - }, - { - "adult": false, - "gender": 2, - "id": 1363155, - "known_for_department": "Acting", - "name": "Juan Pacheco", - "original_name": "Juan Pacheco", - "popularity": 1.952, - "profile_path": "/ffXpriyG5QbmjCLmQ4boEjxc1ID.jpg", - "cast_id": 146, - "character": "Additional Voices (voice)", - "credit_id": "647a468c0e29a200bf1e57ad", - "order": 48 - }, - { - "adult": false, - "gender": 1, - "id": 87363, - "known_for_department": "Acting", - "name": "Chrystee Pharris", - "original_name": "Chrystee Pharris", - "popularity": 3.668, - "profile_path": "/2EdWOWrlirgaXsLatarQQOrOQkl.jpg", - "cast_id": 147, - "character": "Additional Voices (voice)", - "credit_id": "647a4696e323f300a7d51c7a", - "order": 49 - }, - { - "adult": false, - "gender": 2, - "id": 1243782, - "known_for_department": "Acting", - "name": "Ben Pronsky", - "original_name": "Ben Pronsky", - "popularity": 5.751, - "profile_path": "/d4I1Y8LiELi6mY8A9RLX0ZHfdlL.jpg", - "cast_id": 148, - "character": "Additional Voices (voice)", - "credit_id": "647a469f93828e01337720f6", - "order": 50 - }, - { - "adult": false, - "gender": 2, - "id": 1214171, - "known_for_department": "Acting", - "name": "Al Rodrigo", - "original_name": "Al Rodrigo", - "popularity": 2.964, - "profile_path": "/kyQSlxHVnla3MfXzs2XhKCRHWMw.jpg", - "cast_id": 149, - "character": "Additional Voices (voice)", - "credit_id": "647a46abe323f300a7d51c81", - "order": 51 - }, - { - "adult": false, - "gender": 2, - "id": 2528107, - "known_for_department": "Acting", - "name": "Stan Sellers", - "original_name": "Stan Sellers", - "popularity": 1.63, - "profile_path": "/2va92n2gYR0InEBPkZNSAV8NTuC.jpg", - "cast_id": 198, - "character": "Additional Voices (voice)", - "credit_id": "647a4956caef2d00c299a9f3", - "order": 52 - }, - { - "adult": false, - "gender": 2, - "id": 2068548, - "known_for_department": "Acting", - "name": "Warren Sroka", - "original_name": "Warren Sroka", - "popularity": 3.4, - "profile_path": "/gC6YSW8SLmqMU7rZ5W1xpZ9c0w6.jpg", - "cast_id": 199, - "character": "Additional Voices (voice)", - "credit_id": "647a4961e375c001356cbc62", - "order": 53 - }, - { - "adult": false, - "gender": 2, - "id": 1454441, - "known_for_department": "Acting", - "name": "Jasper Johannes Andrews", - "original_name": "Jasper Johannes Andrews", - "popularity": 0.897, - "profile_path": null, - "cast_id": 153, - "character": "Additional Voices (voice)", - "credit_id": "647a46fce323f300c42976d1", - "order": 54 - }, - { - "adult": false, - "gender": 2, - "id": 2014785, - "known_for_department": "Production", - "name": "Gredel Berrios Calladine", - "original_name": "Gredel Berrios Calladine", - "popularity": 0.6, - "profile_path": null, - "cast_id": 154, - "character": "Additional Voices (voice)", - "credit_id": "647a4708cf4b8b00c3d1ab10", - "order": 55 - }, - { - "adult": false, - "gender": 1, - "id": 1367223, - "known_for_department": "Acting", - "name": "Natalia Castellanos", - "original_name": "Natalia Castellanos", - "popularity": 0.908, - "profile_path": null, - "cast_id": 155, - "character": "Additional Voices (voice)", - "credit_id": "647a471593828e00dcdc24ef", - "order": 56 - }, - { - "adult": false, - "gender": 2, - "id": 4094203, - "known_for_department": "Production", - "name": "Russell Tyre Francis", - "original_name": "Russell Tyre Francis", - "popularity": 0.6, - "profile_path": null, - "cast_id": 156, - "character": "Additional Voices (voice)", - "credit_id": "647a472dcf4b8b0122756eab", - "order": 57 - }, - { - "adult": false, - "gender": 1, - "id": 176829, - "known_for_department": "Acting", - "name": "Deepti Gupta", - "original_name": "Deepti Gupta", - "popularity": 1.054, - "profile_path": "/kMvUaVfUXBbFpoRTwIiaeKlg1vj.jpg", - "cast_id": 157, - "character": "Additional Voices (voice)", - "credit_id": "647a473a17497300fb3a4852", - "order": 58 - }, - { - "adult": false, - "gender": 1, - "id": 1891226, - "known_for_department": "Acting", - "name": "Sohm Kapila", - "original_name": "Sohm Kapila", - "popularity": 1.28, - "profile_path": "/ySLjCzMYmeMKiP0xVO48F2aJLTE.jpg", - "cast_id": 158, - "character": "Additional Voices (voice)", - "credit_id": "647a4744e323f300c42976eb", - "order": 59 - }, - { - "adult": false, - "gender": 0, - "id": 2723084, - "known_for_department": "Acting", - "name": "Pradnya Kuwadekar", - "original_name": "Pradnya Kuwadekar", - "popularity": 0.6, - "profile_path": null, - "cast_id": 159, - "character": "Additional Voices (voice)", - "credit_id": "647a475a93828e00bf9dd27d", - "order": 60 - }, - { - "adult": false, - "gender": 1, - "id": 2581798, - "known_for_department": "Acting", - "name": "Ashley London", - "original_name": "Ashley London", - "popularity": 1.058, - "profile_path": null, - "cast_id": 160, - "character": "Additional Voices (voice)", - "credit_id": "647a4762caef2d0119bf0cbf", - "order": 61 - }, - { - "adult": false, - "gender": 2, - "id": 155267, - "known_for_department": "Production", - "name": "Christopher Miller", - "original_name": "Christopher Miller", - "popularity": 10.188, - "profile_path": "/dr2yCgYtmNmO5vzjk9KNbjTpbzO.jpg", - "cast_id": 161, - "character": "Additional Voices (voice)", - "credit_id": "647a476fcf4b8b00e2d538fb", - "order": 62 - }, - { - "adult": false, - "gender": 1, - "id": 210826, - "known_for_department": "Acting", - "name": "Andrea Navedo", - "original_name": "Andrea Navedo", - "popularity": 4.568, - "profile_path": "/jTEuBC4T3lQiN0Uc8SOxc9rcxvo.jpg", - "cast_id": 162, - "character": "Additional Voices (voice)", - "credit_id": "647a4778e323f300a7d51cb7", - "order": 63 - }, - { - "adult": false, - "gender": 0, - "id": 4094207, - "known_for_department": "Acting", - "name": "Lakshmi Patel", - "original_name": "Lakshmi Patel", - "popularity": 0.6, - "profile_path": null, - "cast_id": 163, - "character": "Additional Voices (voice)", - "credit_id": "647a4787caef2d00aa420f22", - "order": 64 - }, - { - "adult": false, - "gender": 1, - "id": 146392, - "known_for_department": "Acting", - "name": "Jacqueline Pinol", - "original_name": "Jacqueline Pinol", - "popularity": 5.795, - "profile_path": "/cqGFRdObF3UkMc3aTTA8fYSHQez.jpg", - "cast_id": 164, - "character": "Additional Voices (voice)", - "credit_id": "647a4795cf4b8b01031dcb1c", - "order": 65 - }, - { - "adult": false, - "gender": 2, - "id": 1456760, - "known_for_department": "Acting", - "name": "Eliyas Qureshi", - "original_name": "Eliyas Qureshi", - "popularity": 1.695, - "profile_path": "/y2qe3r9HueD3CcYw4uwJk0ae5C6.jpg", - "cast_id": 165, - "character": "Additional Voices (voice)", - "credit_id": "647a47a1e323f30127511f4c", - "order": 66 - }, - { - "adult": false, - "gender": 1, - "id": 2555587, - "known_for_department": "Directing", - "name": "Lashana Rodriguez", - "original_name": "Lashana Rodriguez", - "popularity": 0.6, - "profile_path": null, - "cast_id": 166, - "character": "Additional Voices (voice)", - "credit_id": "647a47ade375c000a8e208bd", - "order": 67 - }, - { - "adult": false, - "gender": 2, - "id": 2173025, - "known_for_department": "Acting", - "name": "Jaswant Dev Shrestha", - "original_name": "Jaswant Dev Shrestha", - "popularity": 1.03, - "profile_path": "/blaiUznOljVlY3Nl9bEYkv7svtI.jpg", - "cast_id": 150, - "character": "Additional Voices (voice)", - "credit_id": "647a46b893828e00bf9dd253", - "order": 68 - }, - { - "adult": false, - "gender": 1, - "id": 2085351, - "known_for_department": "Production", - "name": "Libby Thomas Dickey", - "original_name": "Libby Thomas Dickey", - "popularity": 0.722, - "profile_path": null, - "cast_id": 151, - "character": "Additional Voices (voice)", - "credit_id": "647a46cbe375c000c1a6ac13", - "order": 69 - }, - { - "adult": false, - "gender": 2, - "id": 2597021, - "known_for_department": "Acting", - "name": "Jason Linere-White", - "original_name": "Jason Linere-White", - "popularity": 1.251, - "profile_path": "/pAFtUbLVa2uhnHvosjlW4c0QvQg.jpg", - "cast_id": 200, - "character": "Additional Voices (voice)", - "credit_id": "647a496ae323f300c429777c", - "order": 70 - }, - { - "adult": false, - "gender": 1, - "id": 1585158, - "known_for_department": "Acting", - "name": "Sitara Attaie", - "original_name": "Sitara Attaie", - "popularity": 2.479, - "profile_path": "/iPCRQ4UUh37otbd5cj982zq33rq.jpg", - "cast_id": 169, - "character": "Additional Voices (voice)", - "credit_id": "647a47d1cf4b8b00a87712f1", - "order": 71 - }, - { - "adult": false, - "gender": 1, - "id": 4094217, - "known_for_department": "Acting", - "name": "Mayuri Bhandari", - "original_name": "Mayuri Bhandari", - "popularity": 0.6, - "profile_path": null, - "cast_id": 170, - "character": "Additional Voices (voice)", - "credit_id": "647a47e0caef2d00df87fdac", - "order": 72 - }, - { - "adult": false, - "gender": 1, - "id": 172696, - "known_for_department": "Acting", - "name": "June Christopher", - "original_name": "June Christopher", - "popularity": 4.112, - "profile_path": "/f2JzxHGRfS0TL6kysHfVfaAeruP.jpg", - "cast_id": 171, - "character": "Additional Voices (voice)", - "credit_id": "647a47ebe375c000de5744f4", - "order": 73 - }, - { - "adult": false, - "gender": 1, - "id": 1734564, - "known_for_department": "Acting", - "name": "Michelle Jubilee Gonzalez", - "original_name": "Michelle Jubilee Gonzalez", - "popularity": 4.621, - "profile_path": "/rs6h9fvozdaRa2uCFKtPRQb9bFa.jpg", - "cast_id": 172, - "character": "Additional Voices (voice)", - "credit_id": "647a47f40e29a20116ac3f8c", - "order": 74 - }, - { - "adult": false, - "gender": 1, - "id": 1999048, - "known_for_department": "Acting", - "name": "Marabina Jaimes", - "original_name": "Marabina Jaimes", - "popularity": 1.273, - "profile_path": "/xhp7Hmz2kGjfLD7UUi2nLLypAjt.jpg", - "cast_id": 173, - "character": "Additional Voices (voice)", - "credit_id": "647a4817e375c000c1a6ac4a", - "order": 75 - }, - { - "adult": false, - "gender": 2, - "id": 144311, - "known_for_department": "Acting", - "name": "Rez Kempton", - "original_name": "Rez Kempton", - "popularity": 2.228, - "profile_path": "/d7r7wjKjs3dYiq036oFaGIZRbC9.jpg", - "cast_id": 174, - "character": "Additional Voices (voice)", - "credit_id": "647a4820caef2d00df87fdc0", - "order": 76 - }, - { - "adult": false, - "gender": 2, - "id": 571309, - "known_for_department": "Acting", - "name": "Lex Lang", - "original_name": "Lex Lang", - "popularity": 2.82, - "profile_path": "/hrgjiwtrnI6meAg2Q1eTGpyTrDX.jpg", - "cast_id": 175, - "character": "Additional Voices (voice)", - "credit_id": "647a482a17497300fb3a488c", - "order": 77 - }, - { - "adult": false, - "gender": 2, - "id": 107446, - "known_for_department": "Production", - "name": "Phil Lord", - "original_name": "Phil Lord", - "popularity": 6.892, - "profile_path": "/yGLAUCnWwB0cQM0Ivb5FKzv3tr4.jpg", - "cast_id": 176, - "character": "Additional Voices (voice)", - "credit_id": "647a4833caef2d01362a88d5", - "order": 78 - }, - { - "adult": false, - "gender": 2, - "id": 64448, - "known_for_department": "Acting", - "name": "Richard Miro", - "original_name": "Richard Miro", - "popularity": 1.615, - "profile_path": null, - "cast_id": 177, - "character": "Additional Voices (voice)", - "credit_id": "647a4842cf4b8b0122756efb", - "order": 79 - }, - { - "adult": false, - "gender": 2, - "id": 1370757, - "known_for_department": "Editing", - "name": "Doug Nicholas", - "original_name": "Doug Nicholas", - "popularity": 3.198, - "profile_path": null, - "cast_id": 178, - "character": "Additional Voices (voice)", - "credit_id": "647a4850caef2d0119bf0d19", - "order": 80 - }, - { - "adult": false, - "gender": 1, - "id": 2104889, - "known_for_department": "Acting", - "name": "Shakira Ja'nai Paye", - "original_name": "Shakira Ja'nai Paye", - "popularity": 2.136, - "profile_path": "/lLfE7s8uX0aklFCHeyJEDfgpJOl.jpg", - "cast_id": 179, - "character": "Additional Voices (voice)", - "credit_id": "647a485dcf4b8b0122756f09", - "order": 81 - }, - { - "adult": false, - "gender": 2, - "id": 4094221, - "known_for_department": "Acting", - "name": "James Pirri", - "original_name": "James Pirri", - "popularity": 0.6, - "profile_path": null, - "cast_id": 180, - "character": "Additional Voices (voice)", - "credit_id": "647a4879caef2d01362a88eb", - "order": 82 - }, - { - "adult": false, - "gender": 1, - "id": 4094225, - "known_for_department": "Acting", - "name": "Marley Ralph", - "original_name": "Marley Ralph", - "popularity": 0.6, - "profile_path": null, - "cast_id": 181, - "character": "Additional Voices (voice)", - "credit_id": "647a488793828e011623dc55", - "order": 83 - }, - { - "adult": false, - "gender": 1, - "id": 81380, - "known_for_department": "Acting", - "name": "Michelle Ruff", - "original_name": "Michelle Ruff", - "popularity": 2.228, - "profile_path": "/wO6VvUeVRlVm2N4lutsz6ayBxL5.jpg", - "cast_id": 182, - "character": "Additional Voices (voice)", - "credit_id": "647a48900e29a20133c3078b", - "order": 84 - }, - { - "adult": false, - "gender": 2, - "id": 2204259, - "known_for_department": "Acting", - "name": "Dennis Singletary", - "original_name": "Dennis Singletary", - "popularity": 2.037, - "profile_path": "/rlUQcql7XFfIWBNccKvIW0WnIPW.jpg", - "cast_id": 167, - "character": "Additional Voices (voice)", - "credit_id": "647a47b7174973013500d5f9", - "order": 85 - }, - { - "adult": false, - "gender": 1, - "id": 1354657, - "known_for_department": "Acting", - "name": "Amanda Troop", - "original_name": "Amanda Troop", - "popularity": 3.666, - "profile_path": "/oIiz7YCwDCphqCWNA6zUzl30WQ9.jpg", - "cast_id": 168, - "character": "Additional Voices (voice)", - "credit_id": "647a47c017497300de65cc0d", - "order": 86 - }, - { - "adult": false, - "gender": 2, - "id": 1445768, - "known_for_department": "Acting", - "name": "Ruth Zalduondo", - "original_name": "Ruth Zalduondo", - "popularity": 3.289, - "profile_path": "/sf9FN5qZg07PdRR49N1ijBmcMap.jpg", - "cast_id": 152, - "character": "Additional Voices (voice)", - "credit_id": "647a46d5caef2d00c299a966", - "order": 87 - }, - { - "adult": false, - "gender": 0, - "id": 1542616, - "known_for_department": "Acting", - "name": "Kimberly Bailey", - "original_name": "Kimberly Bailey", - "popularity": 6.958, - "profile_path": "/6es4CpmmlA7j6VCxpVvlSTfvi76.jpg", - "cast_id": 185, - "character": "Additional Voices (voice)", - "credit_id": "647a48b0e323f300e523fbef", - "order": 88 - }, - { - "adult": false, - "gender": 2, - "id": 208833, - "known_for_department": "Acting", - "name": "Sanjay Chandani", - "original_name": "Sanjay Chandani", - "popularity": 1.561, - "profile_path": "/rMNrvpeqAETZqvQivewVYDhK5pS.jpg", - "cast_id": 186, - "character": "Additional Voices (voice)", - "credit_id": "647a48bbe375c0011876919d", - "order": 89 - }, - { - "adult": false, - "gender": 1, - "id": 4039080, - "known_for_department": "Acting", - "name": "Melanie Duke", - "original_name": "Melanie Duke", - "popularity": 0.6, - "profile_path": null, - "cast_id": 187, - "character": "Additional Voices (voice)", - "credit_id": "647a48c593828e00a763ec0e", - "order": 90 - }, - { - "adult": false, - "gender": 2, - "id": 1265056, - "known_for_department": "Directing", - "name": "Jorge R. Gutierrez", - "original_name": "Jorge R. Gutierrez", - "popularity": 6.566, - "profile_path": "/dhL3pHR1WkbONH9dD4Sya9DbrXq.jpg", - "cast_id": 188, - "character": "Additional Voices (voice)", - "credit_id": "647a48cfe375c000de574525", - "order": 91 - }, - { - "adult": false, - "gender": 2, - "id": 1703174, - "known_for_department": "Directing", - "name": "Miguel Jiron", - "original_name": "Miguel Jiron", - "popularity": 1.343, - "profile_path": "/sBEHuSRFK6T9DqBYQX93qSAFAFU.jpg", - "cast_id": 189, - "character": "Additional Voices (voice)", - "credit_id": "647a48db0e29a200dcba6299", - "order": 92 - }, - { - "adult": false, - "gender": 1, - "id": 3565686, - "known_for_department": "Acting", - "name": "Deepti Kingra-Mickelsen", - "original_name": "Deepti Kingra-Mickelsen", - "popularity": 0.63, - "profile_path": null, - "cast_id": 190, - "character": "Additional Voices (voice)", - "credit_id": "647a48e693828e011623dc63", - "order": 93 - }, - { - "adult": false, - "gender": 1, - "id": 106800, - "known_for_department": "Acting", - "name": "Luisa Leschin", - "original_name": "Luisa Leschin", - "popularity": 3.254, - "profile_path": "/gMCsy4g818oR5V5Q6B4TQvYQAOr.jpg", - "cast_id": 191, - "character": "Additional Voices (voice)", - "credit_id": "647a48f2e375c000fb0072b3", - "order": 94 - }, - { - "adult": false, - "gender": 1, - "id": 59055, - "known_for_department": "Production", - "name": "Caitlin McKenna", - "original_name": "Caitlin McKenna", - "popularity": 4.18, - "profile_path": "/cPfk4htR9X7gUnr1jYsKs0Y5qBq.jpg", - "cast_id": 192, - "character": "Additional Voices (voice)", - "credit_id": "647a48fe93828e0133772175", - "order": 95 - }, - { - "adult": false, - "gender": 2, - "id": 80823, - "known_for_department": "Sound", - "name": "Andrew Morgado", - "original_name": "Andrew Morgado", - "popularity": 9.997, - "profile_path": "/rDkWTPcsFtw5MQCi1qxSXXZlXG2.jpg", - "cast_id": 193, - "character": "Additional Voices (voice)", - "credit_id": "647a490e0e29a200a65fd2a9", - "order": 96 - }, - { - "adult": false, - "gender": 2, - "id": 1999054, - "known_for_department": "Acting", - "name": "Arthur Ortiz", - "original_name": "Arthur Ortiz", - "popularity": 1.504, - "profile_path": "/26L5ZNu9uV9onUB04RbEeKwB085.jpg", - "cast_id": 194, - "character": "Additional Voices (voice)", - "credit_id": "647a491e17497300fb3a48e2", - "order": 97 - }, - { - "adult": false, - "gender": 1, - "id": 4094234, - "known_for_department": "Acting", - "name": "Eliana A. Perez", - "original_name": "Eliana A. Perez", - "popularity": 0.6, - "profile_path": null, - "cast_id": 195, - "character": "Additional Voices (voice)", - "credit_id": "647a4934e375c000c1a6ac95", - "order": 98 - }, - { - "adult": false, - "gender": 2, - "id": 1735014, - "known_for_department": "Acting", - "name": "Juan Pope", - "original_name": "Juan Pope", - "popularity": 4.889, - "profile_path": "/ucc4oGk140GBPVTkWNkreV0lxlw.jpg", - "cast_id": 196, - "character": "Additional Voices (voice)", - "credit_id": "647a4941e375c000fb0072ca", - "order": 99 - }, - { - "adult": false, - "gender": 2, - "id": 1647289, - "known_for_department": "Acting", - "name": "Mike Rianda", - "original_name": "Mike Rianda", - "popularity": 3, - "profile_path": "/1MEH4XJ7fSkwA5oCEyx3CckbIva.jpg", - "cast_id": 197, - "character": "Additional Voices (voice)", - "credit_id": "647a494ccf4b8b01031dcb7e", - "order": 100 - }, - { - "adult": false, - "gender": 1, - "id": 2012497, - "known_for_department": "Editing", - "name": "Erika Scopelli", - "original_name": "Erika Scopelli", - "popularity": 0.6, - "profile_path": null, - "cast_id": 755, - "character": "Additional Voices (voice)", - "credit_id": "64d8572737109700c51b16cb", - "order": 101 - }, - { - "adult": false, - "gender": 2, - "id": 4094227, - "known_for_department": "Acting", - "name": "Narender Sood", - "original_name": "Narender Sood", - "popularity": 0.6, - "profile_path": null, - "cast_id": 183, - "character": "Additional Voices (voice)", - "credit_id": "647a489a93828e00dcdc2558", - "order": 102 - }, - { - "adult": false, - "gender": 2, - "id": 1452946, - "known_for_department": "Acting", - "name": "Cedric L. Williams", - "original_name": "Cedric L. Williams", - "popularity": 1.292, - "profile_path": "/sBxfuNnJMHq60KJP1HRYxLSRBR6.jpg", - "cast_id": 184, - "character": "Additional Voices (voice)", - "credit_id": "647a48a6e323f300e523fbeb", - "order": 103 - }, - { - "adult": false, - "gender": 1, - "id": 1443708, - "known_for_department": "Acting", - "name": "Kimiko Glenn", - "original_name": "Kimiko Glenn", - "popularity": 6.207, - "profile_path": "/6QnVIyHKbzx0ZsUr3BmIwnZxujL.jpg", - "cast_id": 100, - "character": "Peni Parker (voice) (uncredited)", - "credit_id": "6479515a93828e013376bfbc", - "order": 104 - }, - { - "adult": false, - "gender": 1, - "id": 2141479, - "known_for_department": "Acting", - "name": "Peggy Lu", - "original_name": "Peggy Lu", - "popularity": 2.67, - "profile_path": "/ng5eaDcOf9kSwIYGNmwF9wEfIHp.jpg", - "cast_id": 79, - "character": "Mrs. Chen (archive footage) (uncredited)", - "credit_id": "646edcf817c443013608747f", - "order": 105 - }, - { - "adult": false, - "gender": 2, - "id": 37625, - "known_for_department": "Acting", - "name": "Andrew Garfield", - "original_name": "Andrew Garfield", - "popularity": 39.386, - "profile_path": "/5ydZ6TluPtxlz5G8nlWMB7SGmow.jpg", - "cast_id": 598, - "character": "Peter Parker / Spider-Man (archive footage) (uncredited)", - "credit_id": "647dc3fd0e29a22be08df4ab", - "order": 106 - }, - { - "adult": false, - "gender": 2, - "id": 5724, - "known_for_department": "Acting", - "name": "Denis Leary", - "original_name": "Denis Leary", - "popularity": 13.219, - "profile_path": "/nAqHuIw8z1QodcXdaJQShKogVFa.jpg", - "cast_id": 599, - "character": "Captain Stacy (archive footage) (uncredited)", - "credit_id": "647dc40ecf4b8b0141902cd0", - "order": 107 - }, - { - "adult": false, - "gender": 2, - "id": 2219, - "known_for_department": "Acting", - "name": "Tobey Maguire", - "original_name": "Tobey Maguire", - "popularity": 30.012, - "profile_path": "/kOJelnLSb89SeivbOCt1l94Hz2d.jpg", - "cast_id": 600, - "character": "Peter Parker / Spider-Man (archive footage) (uncredited)", - "credit_id": "647dc41ecf4b8b0141902cda", - "order": 108 - }, - { - "adult": false, - "gender": 2, - "id": 19153, - "known_for_department": "Acting", - "name": "Cliff Robertson", - "original_name": "Cliff Robertson", - "popularity": 12.039, - "profile_path": "/8pH2RWCPtXKzT9P33MbzgnzPlF0.jpg", - "cast_id": 601, - "character": "Ben Parker (archive footage) (uncredited)", - "credit_id": "647dc42bcaef2d0119c0c05c", - "order": 109 - }, - { - "adult": false, - "gender": 2, - "id": 658, - "known_for_department": "Acting", - "name": "Alfred Molina", - "original_name": "Alfred Molina", - "popularity": 17.212, - "profile_path": "/nJo91Czesn6z0d0pkfbDoVZY3sg.jpg", - "cast_id": 602, - "character": "Doctor Octopus (voice) (archive footage) (uncredited)", - "credit_id": "647dc43d93828e00bf9f6ce3", - "order": 110 - }, - { - "adult": false, - "gender": 2, - "id": 1821863, - "known_for_department": "Acting", - "name": "Post Malone", - "original_name": "Post Malone", - "popularity": 11.19, - "profile_path": "/v25LUebWdx60p6mMy1OzIHc0EVs.jpg", - "cast_id": 603, - "character": "Brooklyn Bystander (voice) (archive footage) (uncredited)", - "credit_id": "647dc47c17497300fb3bf507", - "order": 111 - }, - { - "adult": false, - "gender": 2, - "id": 933558, - "known_for_department": "Acting", - "name": "John Mulaney", - "original_name": "John Mulaney", - "popularity": 8.758, - "profile_path": "/fag9JGgIVSeraG4FQ4WSmq4qCIA.jpg", - "cast_id": 760, - "character": "Peter Porker / Spider-Ham (voice) (archive footage) (uncredited)", - "credit_id": "64f93bdbffc9de0138eafaac", - "order": 112 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 7626, - "known_for_department": "Production", - "name": "Avi Arad", - "original_name": "Avi Arad", - "popularity": 4.319, - "profile_path": "/cxmqw0anGfxC7RwUNQj3EwhX9pP.jpg", - "credit_id": "60835778e8601700294f11de", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 1, - "id": 7903, - "known_for_department": "Production", - "name": "Mary Hidalgo", - "original_name": "Mary Hidalgo", - "popularity": 3.335, - "profile_path": null, - "credit_id": "6093a5193f8ede002a45c5c8", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 0, - "id": 8047, - "known_for_department": "Visual Effects", - "name": "Peter Nash", - "original_name": "Peter Nash", - "popularity": 1.4, - "profile_path": null, - "credit_id": "647bb85217497300de66713c", - "department": "Visual Effects", - "job": "Animation Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 8166, - "known_for_department": "Sound", - "name": "Juan Peralta", - "original_name": "Juan Peralta", - "popularity": 0.706, - "profile_path": "/e89pv3PlTiauZHa1CuC9i8M34Wl.jpg", - "credit_id": "647bc68693828e00a7649275", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 19103, - "known_for_department": "Sound", - "name": "Paul Francis Webster", - "original_name": "Paul Francis Webster", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64884208d2b20900ca213126", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 1, - "id": 35666, - "known_for_department": "Production", - "name": "Christina Steinberg", - "original_name": "Christina Steinberg", - "popularity": 2.235, - "profile_path": "/5o9DnKyNJVVi8TkKDvLmk65JGxQ.jpg", - "credit_id": "608357872da84600297f2281", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 57264, - "known_for_department": "Writing", - "name": "Dave Callaham", - "original_name": "Dave Callaham", - "popularity": 3.361, - "profile_path": "/mbppbv25p2o2W6FAtPbFNSUeGLj.jpg", - "credit_id": "63ec32a78e870200823b1007", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 1, - "id": 59055, - "known_for_department": "Production", - "name": "Caitlin McKenna", - "original_name": "Caitlin McKenna", - "popularity": 4.18, - "profile_path": "/cPfk4htR9X7gUnr1jYsKs0Y5qBq.jpg", - "credit_id": "647bc7bbcf4b8b01031e6b9f", - "department": "Production", - "job": "ADR Voice Casting" - }, - { - "adult": false, - "gender": 2, - "id": 59918, - "known_for_department": "Writing", - "name": "Rodney Rothman", - "original_name": "Rodney Rothman", - "popularity": 6.665, - "profile_path": "/75yKuJr1wL8qesEDYL2IHK67BEx.jpg", - "credit_id": "6399153ce263bb009106bb8a", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 76748, - "known_for_department": "Art", - "name": "Peter Zaslav", - "original_name": "Peter Zaslav", - "popularity": 1.289, - "profile_path": null, - "credit_id": "647be7ef93828e00a764a9d1", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 81634, - "known_for_department": "Writing", - "name": "Chris Mitchell", - "original_name": "Chris Mitchell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb0890e29a20133c3b018", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 107446, - "known_for_department": "Production", - "name": "Phil Lord", - "original_name": "Phil Lord", - "popularity": 6.892, - "profile_path": "/yGLAUCnWwB0cQM0Ivb5FKzv3tr4.jpg", - "credit_id": "5dbcf5e90792e100184c3def", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 107446, - "known_for_department": "Production", - "name": "Phil Lord", - "original_name": "Phil Lord", - "popularity": 6.892, - "profile_path": "/yGLAUCnWwB0cQM0Ivb5FKzv3tr4.jpg", - "credit_id": "63ec32821b729400aab4ec63", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 2, - "id": 89596, - "known_for_department": "Directing", - "name": "Joaquim Dos Santos", - "original_name": "Joaquim Dos Santos", - "popularity": 3.429, - "profile_path": "/w45GPb3cW6TqPw4FxB5Hc6zzAwx.jpg", - "credit_id": "5c17ccfe0e0a26037f3e5aa6", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 95353, - "known_for_department": "Acting", - "name": "Lil Wayne", - "original_name": "Lil Wayne", - "popularity": 1.211, - "profile_path": "/90bC08uoGQ9d9AKNplaumlgnUAm.jpg", - "credit_id": "648841ab99259c00c5b63401", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 2, - "id": 149993, - "known_for_department": "Acting", - "name": "Reggie Yates", - "original_name": "Reggie Yates", - "popularity": 0.641, - "profile_path": "/eO5SQzSRcdfz0bdF8CtVyMnxhrg.jpg", - "credit_id": "647bb34893828e00a7648de1", - "department": "Production", - "job": "Production Consultant" - }, - { - "adult": false, - "gender": 2, - "id": 151007, - "known_for_department": "Directing", - "name": "Peter Ramsey", - "original_name": "Peter Ramsey", - "popularity": 4.081, - "profile_path": "/eAL9QdCEYyxiMP9cl9lQddg8zEa.jpg", - "credit_id": "61ac16ed62e86f008f3b1f93", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 155267, - "known_for_department": "Production", - "name": "Christopher Miller", - "original_name": "Christopher Miller", - "popularity": 10.188, - "profile_path": "/dr2yCgYtmNmO5vzjk9KNbjTpbzO.jpg", - "credit_id": "5dbcf5f9a58902001c6b61cd", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 155267, - "known_for_department": "Production", - "name": "Christopher Miller", - "original_name": "Christopher Miller", - "popularity": 10.188, - "profile_path": "/dr2yCgYtmNmO5vzjk9KNbjTpbzO.jpg", - "credit_id": "63ec32948e870200a9896b34", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 2, - "id": 156223, - "known_for_department": "Writing", - "name": "Peter David", - "original_name": "Peter David", - "popularity": 2.142, - "profile_path": null, - "credit_id": "647be5fb93828e00a764a84a", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 224855, - "known_for_department": "Acting", - "name": "Rakim", - "original_name": "Rakim", - "popularity": 2.12, - "profile_path": "/umq9c1mNZAKRHi3QC2yYhElOEps.jpg", - "credit_id": "64883f2be2726001287b63c6", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 548445, - "known_for_department": "Sound", - "name": "Jeffrey Wilhoit", - "original_name": "Jeffrey Wilhoit", - "popularity": 1.287, - "profile_path": null, - "credit_id": "647bc79717497300a819798c", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 552252, - "known_for_department": "Acting", - "name": "Hasan Minhaj", - "original_name": "Hasan Minhaj", - "popularity": 6.677, - "profile_path": "/6vHHhLnbKBCPmYc90qAV2Cde95F.jpg", - "credit_id": "647be88193828e00a764aa4c", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 582922, - "known_for_department": "Sound", - "name": "Daniel Pemberton", - "original_name": "Daniel Pemberton", - "popularity": 2.494, - "profile_path": "/dPcjpSoCg1nraqCUD4tvRK3QtHQ.jpg", - "credit_id": "6093a50b54508d002aedfe2a", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 2, - "id": 587970, - "known_for_department": "Directing", - "name": "Matthew A. Cherry", - "original_name": "Matthew A. Cherry", - "popularity": 1.887, - "profile_path": "/uCuy3eVgWzl4EoJcxn2GTz1vXQO.jpg", - "credit_id": "647bb0d8e323f3014816b7b9", - "department": "Production", - "job": "Production Consultant" - }, - { - "adult": false, - "gender": 1, - "id": 928346, - "known_for_department": "Costume & Make-Up", - "name": "Trayce Gigi Field", - "original_name": "Trayce Gigi Field", - "popularity": 0.6, - "profile_path": "/lYTLLM21WTtBrqQmedivhlKXBRq.jpg", - "credit_id": "647be6fccaef2d00df88bede", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 928661, - "known_for_department": "Visual Effects", - "name": "Navjit Singh Gill", - "original_name": "Navjit Singh Gill", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839ea2e375c0011c7f5504", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 2, - "id": 936670, - "known_for_department": "Production", - "name": "Bob Persichetti", - "original_name": "Bob Persichetti", - "popularity": 2.182, - "profile_path": "/cNd5VyMI3sNgiHOwLIB7WDiH128.jpg", - "credit_id": "63991532ce9e910087c86f90", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 951362, - "known_for_department": "Visual Effects", - "name": "Pablo Holcer", - "original_name": "Pablo Holcer", - "popularity": 0.775, - "profile_path": null, - "credit_id": "647ba50c8d2f8d00aa5dd96f", - "department": "Crew", - "job": "CG Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 968411, - "known_for_department": "Art", - "name": "Michael Kurinsky", - "original_name": "Michael Kurinsky", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb69be323f300c42a143f", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 1046497, - "known_for_department": "Art", - "name": "Justin K. Thompson", - "original_name": "Justin K. Thompson", - "popularity": 3.593, - "profile_path": "/mRMi8Q2fmlfbDYkE7A63gzFtGsZ.jpg", - "credit_id": "607e088a01b1ca0041e6957a", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 1127833, - "known_for_department": "Editing", - "name": "Arthur D. Noda", - "original_name": "Arthur D. Noda", - "popularity": 0.628, - "profile_path": null, - "credit_id": "64d85228d100b600c5d1a964", - "department": "Editing", - "job": "Other" - }, - { - "adult": false, - "gender": 2, - "id": 1133968, - "known_for_department": "Sound", - "name": "Matt Dunkley", - "original_name": "Matt Dunkley", - "popularity": 0.84, - "profile_path": "/7NE9BflY3sri76hQ6P84NAUs1Dl.jpg", - "credit_id": "647bc7e993828e00a76492c8", - "department": "Sound", - "job": "Orchestrator" - }, - { - "adult": false, - "gender": 2, - "id": 1133968, - "known_for_department": "Sound", - "name": "Matt Dunkley", - "original_name": "Matt Dunkley", - "popularity": 0.84, - "profile_path": "/7NE9BflY3sri76hQ6P84NAUs1Dl.jpg", - "credit_id": "647bc7eecaef2d00df88a9a9", - "department": "Sound", - "job": "Conductor" - }, - { - "adult": false, - "gender": 2, - "id": 1210253, - "known_for_department": "Visual Effects", - "name": "Joe Moshier", - "original_name": "Joe Moshier", - "popularity": 0.6, - "profile_path": "/ijjGmMXeqsPskMcrQVEqgSrahOj.jpg", - "credit_id": "647bb48193828e00dcdcd34c", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1225024, - "known_for_department": "Writing", - "name": "Jeff Loveness", - "original_name": "Jeff Loveness", - "popularity": 4.063, - "profile_path": "/uq3MZhGWq6jvDgrYiHkofUpd5e4.jpg", - "credit_id": "647be71393828e00dcdceff4", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 1236340, - "known_for_department": "Sound", - "name": "Dylan Tuomy-Wilhoit", - "original_name": "Dylan Tuomy-Wilhoit", - "popularity": 0.884, - "profile_path": null, - "credit_id": "647bc79ee323f3014816bd84", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1242714, - "known_for_department": "Acting", - "name": "Bobby Bland", - "original_name": "Bobby Bland", - "popularity": 0.828, - "profile_path": null, - "credit_id": "648841e7e272600147bb719d", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 2, - "id": 1245364, - "known_for_department": "Acting", - "name": "Jeff Koons", - "original_name": "Jeff Koons", - "popularity": 1.268, - "profile_path": "/omhHKQPGdsnZ1clyX4k1x3gfu38.jpg", - "credit_id": "647be70e93828e00bf9e9326", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1260953, - "known_for_department": "Visual Effects", - "name": "Eric R. Huang", - "original_name": "Eric R. Huang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbbde17497300fb3af56e", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 1274309, - "known_for_department": "Sound", - "name": "Randy Singer", - "original_name": "Randy Singer", - "popularity": 1.35, - "profile_path": null, - "credit_id": "647bc76fe323f3014816bd7a", - "department": "Sound", - "job": "Foley Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1320090, - "known_for_department": "Production", - "name": "Aditya Sood", - "original_name": "Aditya Sood", - "popularity": 1.4, - "profile_path": "/jtL8x7tcNJSF1muFcGSF16K7SUw.jpg", - "credit_id": "61ac16fd62e86f0063cd21c8", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1327776, - "known_for_department": "Editing", - "name": "T.J. Young", - "original_name": "T.J. Young", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63ec32ee699fb7008cd5bd82", - "department": "Editing", - "job": "Associate Editor" - }, - { - "adult": false, - "gender": 1, - "id": 1354982, - "known_for_department": "Writing", - "name": "Rachna Fruchbom", - "original_name": "Rachna Fruchbom", - "popularity": 0.696, - "profile_path": null, - "credit_id": "647be70317497300c13293ed", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 1370749, - "known_for_department": "Writing", - "name": "Craig Berry", - "original_name": "Craig Berry", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e6835cf4b8b00e2d6f2fb", - "department": "Visual Effects", - "job": "Animation Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1371064, - "known_for_department": "Sound", - "name": "Gregg Barbanell", - "original_name": "Gregg Barbanell", - "popularity": 0.716, - "profile_path": null, - "credit_id": "647bc786cf4b8b00e2d5da09", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1378828, - "known_for_department": "Sound", - "name": "Michael Semanick", - "original_name": "Michael Semanick", - "popularity": 1.559, - "profile_path": "/poGaVc3vdZmkZCvSLNIkkIsxffj.jpg", - "credit_id": "647bc68193828e013377cced", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1379766, - "known_for_department": "Directing", - "name": "David Ehrlich", - "original_name": "David Ehrlich", - "popularity": 1.697, - "profile_path": null, - "credit_id": "647be64ee323f300e524b36b", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1382000, - "known_for_department": "Writing", - "name": "Brian Michael Bendis", - "original_name": "Brian Michael Bendis", - "popularity": 1.575, - "profile_path": "/zYcyWooAjXFJCU7GVyzvHDqpPP0.jpg", - "credit_id": "6399155ba8b2ca00c3ff5748", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 1388872, - "known_for_department": "Visual Effects", - "name": "Katherine Renee Jones", - "original_name": "Katherine Renee Jones", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba51393828e00dcdccf76", - "department": "Crew", - "job": "CG Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1389592, - "known_for_department": "Production", - "name": "Alonzo Ruvalcaba", - "original_name": "Alonzo Ruvalcaba", - "popularity": 0.6, - "profile_path": null, - "credit_id": "607e4d44160e730040dea4bb", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1393382, - "known_for_department": "Sound", - "name": "David Werntz", - "original_name": "David Werntz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc6d117497300de6674c8", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1393444, - "known_for_department": "Sound", - "name": "Ryan Collins", - "original_name": "Ryan Collins", - "popularity": 0.736, - "profile_path": null, - "credit_id": "647bc76793828e0116248d69", - "department": "Sound", - "job": "Additional Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1395405, - "known_for_department": "Visual Effects", - "name": "Tyler Kakac", - "original_name": "Tyler Kakac", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc4ecf4b8b01031e690a", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 1399327, - "known_for_department": "Sound", - "name": "Barbara McDermott", - "original_name": "Barbara McDermott", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc7e00e29a200f981ef7c", - "department": "Sound", - "job": "Music Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1404364, - "known_for_department": "Sound", - "name": "Robert Getty", - "original_name": "Robert Getty", - "popularity": 0.748, - "profile_path": null, - "credit_id": "647bc710cf4b8b01418f3a4d", - "department": "Sound", - "job": "Dialogue Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1404364, - "known_for_department": "Sound", - "name": "Robert Getty", - "original_name": "Robert Getty", - "popularity": 0.748, - "profile_path": null, - "credit_id": "647bc7260e29a20133c3b5eb", - "department": "Sound", - "job": "ADR Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1406389, - "known_for_department": "Sound", - "name": "Bruce Tanis", - "original_name": "Bruce Tanis", - "popularity": 1.4, - "profile_path": null, - "credit_id": "647bc6d70e29a200dcbb0d6f", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1407812, - "known_for_department": "Sound", - "name": "Geoffrey G. Rubay", - "original_name": "Geoffrey G. Rubay", - "popularity": 0.821, - "profile_path": null, - "credit_id": "647bc690e323f300c42a181b", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1413092, - "known_for_department": "Sound", - "name": "James Morioka", - "original_name": "James Morioka", - "popularity": 1.249, - "profile_path": null, - "credit_id": "647bc6c093828e00bf9e7c7b", - "department": "Sound", - "job": "Supervising ADR Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1413092, - "known_for_department": "Sound", - "name": "James Morioka", - "original_name": "James Morioka", - "popularity": 1.249, - "profile_path": null, - "credit_id": "647bc6b7cf4b8b00e2d5d9c3", - "department": "Sound", - "job": "Supervising Dialogue Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1414145, - "known_for_department": "Sound", - "name": "Alex Ullrich", - "original_name": "Alex Ullrich", - "popularity": 0.736, - "profile_path": null, - "credit_id": "647bc78bcf4b8b0122761e7e", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 1, - "id": 1425616, - "known_for_department": "Production", - "name": "Amy Pascal", - "original_name": "Amy Pascal", - "popularity": 1.85, - "profile_path": "/texxoBV4naFHyuSii6jyxlfuEvK.jpg", - "credit_id": "5c2943ac0e0a26541c36f188", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1425978, - "known_for_department": "Sound", - "name": "Gary Summers", - "original_name": "Gary Summers", - "popularity": 1.774, - "profile_path": null, - "credit_id": "647bc760cf4b8b00c3d25303", - "department": "Sound", - "job": "Additional Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1433721, - "known_for_department": "Sound", - "name": "Greg ten Bosch", - "original_name": "Greg ten Bosch", - "popularity": 1.684, - "profile_path": null, - "credit_id": "647bc6dd0e29a200dcbb0d73", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1440822, - "known_for_department": "Sound", - "name": "John Pospisil", - "original_name": "John Pospisil", - "popularity": 1.006, - "profile_path": null, - "credit_id": "647bc698e323f30106153c11", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1441747, - "known_for_department": "Visual Effects", - "name": "Agustín Ross Beraldi", - "original_name": "Agustín Ross Beraldi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb861cf4b8b00a877abfe", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 2, - "id": 1447395, - "known_for_department": "Art", - "name": "Richard Daskas", - "original_name": "Richard Daskas", - "popularity": 0.638, - "profile_path": "/84L31yTnywKtIpoBkkvAArVjDaD.jpg", - "credit_id": "647be5f0caef2d00fce5cbe9", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1451299, - "known_for_department": "Art", - "name": "Matt Jones", - "original_name": "Matt Jones", - "popularity": 0.713, - "profile_path": null, - "credit_id": "647baf550e29a200bf1efd6e", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1453004, - "known_for_department": "Visual Effects", - "name": "Toby Pedersen", - "original_name": "Toby Pedersen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbe8717497300c1327ccb", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 1453502, - "known_for_department": "Visual Effects", - "name": "David Vandervoort", - "original_name": "David Vandervoort", - "popularity": 0.652, - "profile_path": null, - "credit_id": "647bc545e323f300a7d5c20a", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 1455615, - "known_for_department": "Visual Effects", - "name": "Philip Rudolph", - "original_name": "Philip Rudolph", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba438cf4b8b00a877a78b", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 0, - "id": 1458304, - "known_for_department": "Visual Effects", - "name": "Aurélien Predal", - "original_name": "Aurélien Predal", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb6d6e323f3012751c74a", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 1459751, - "known_for_department": "Visual Effects", - "name": "Dave Mah", - "original_name": "Dave Mah", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbd7093828e00dcdcd5f7", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 1460510, - "known_for_department": "Visual Effects", - "name": "Mario Richard", - "original_name": "Mario Richard", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc16817497300de667384", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 1463586, - "known_for_department": "Crew", - "name": "Conrad Olson", - "original_name": "Conrad Olson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f2dc9dbf90100cae6a4", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 2, - "id": 1464412, - "known_for_department": "Visual Effects", - "name": "Frank E. Abney III", - "original_name": "Frank E. Abney III", - "popularity": 0.6, - "profile_path": "/9UNcxSpcBuEmaDYWx8yWh6ca7Gx.jpg", - "credit_id": "647bb89e17497300de667153", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 1466867, - "known_for_department": "Writing", - "name": "Max Perkins", - "original_name": "Max Perkins", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647baf8fcf4b8b00e2d5d46e", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1473414, - "known_for_department": "Visual Effects", - "name": "Jocelyn Cofer", - "original_name": "Jocelyn Cofer", - "popularity": 0.614, - "profile_path": null, - "credit_id": "647bb9ffcaef2d0119bfbbce", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 1511473, - "known_for_department": "Writing", - "name": "Mark Ackland", - "original_name": "Mark Ackland", - "popularity": 1.4, - "profile_path": null, - "credit_id": "647bb045cf4b8b00c3d24d90", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1521445, - "known_for_department": "Acting", - "name": "A$AP Rocky", - "original_name": "A$AP Rocky", - "popularity": 8.254, - "profile_path": "/gL0NFnIrqLosSbdxAHExOHAMkFH.jpg", - "credit_id": "6488427ce27260010723d607", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 2, - "id": 1528686, - "known_for_department": "Visual Effects", - "name": "Ramón de la Cuesta", - "original_name": "Ramón de la Cuesta", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bba7ecaef2d0119bfbc02", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 1528730, - "known_for_department": "Visual Effects", - "name": "Pedro de la Llave", - "original_name": "Pedro de la Llave", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bba960e29a20133c3b2b1", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 1529446, - "known_for_department": "Acting", - "name": "Becky G", - "original_name": "Becky G", - "popularity": 9.472, - "profile_path": "/9wT0OYw4e708koAg1Xfbyx6mA62.jpg", - "credit_id": "64883fb299259c00e2f6a4f2", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 2, - "id": 1530088, - "known_for_department": "Sound", - "name": "Kier Lehman", - "original_name": "Kier Lehman", - "popularity": 2.324, - "profile_path": null, - "credit_id": "63ec33c1699fb7009e3d20ce", - "department": "Sound", - "job": "Music Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 1534197, - "known_for_department": "Sound", - "name": "Katie Greathouse", - "original_name": "Katie Greathouse", - "popularity": 1.143, - "profile_path": null, - "credit_id": "647bc7d90e29a20116ace8a8", - "department": "Sound", - "job": "Supervising Music Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1545164, - "known_for_department": "Sound", - "name": "Mark Baechle", - "original_name": "Mark Baechle", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6494c50b880551014413fced", - "department": "Sound", - "job": "Orchestrator" - }, - { - "adult": false, - "gender": 2, - "id": 1546437, - "known_for_department": "Editing", - "name": "Michael Andrews", - "original_name": "Michael Andrews", - "popularity": 1.407, - "profile_path": null, - "credit_id": "647234c49408ec00e14c6160", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 1, - "id": 1577480, - "known_for_department": "Art", - "name": "Denise Koyama", - "original_name": "Denise Koyama", - "popularity": 0.73, - "profile_path": null, - "credit_id": "647baf5fcaef2d00c29a4e54", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1595460, - "known_for_department": "Art", - "name": "John Bell", - "original_name": "John Bell", - "popularity": 1.245, - "profile_path": null, - "credit_id": "6483ae61bf31f2505705b85c", - "department": "Art", - "job": "Other" - }, - { - "adult": false, - "gender": 2, - "id": 1597629, - "known_for_department": "Visual Effects", - "name": "Craig Kellman", - "original_name": "Craig Kellman", - "popularity": 1.211, - "profile_path": "/c5LqdP9ouyqaZeOhF9D05PjOSeu.jpg", - "credit_id": "647be709cf4b8b00c3d2683a", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1609692, - "known_for_department": "Acting", - "name": "Halavah Sofsky", - "original_name": "Halavah Sofsky", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647be78517497300c132944f", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1615286, - "known_for_department": "Art", - "name": "Dean Gordon", - "original_name": "Dean Gordon", - "popularity": 0.743, - "profile_path": "/khLOsf9QWyscE5zUZ7XjhGZy5Hs.jpg", - "credit_id": "63ec335b813cb600dc071a13", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 1615799, - "known_for_department": "Camera", - "name": "Rich Turner", - "original_name": "Rich Turner", - "popularity": 0.6, - "profile_path": "/ilIa48mdt1zlg37p7VRiHoyYidA.jpg", - "credit_id": "647ba0710e29a20133c3ac04", - "department": "Camera", - "job": "Head of Layout" - }, - { - "adult": false, - "gender": 1, - "id": 1634460, - "known_for_department": "Editing", - "name": "Natasha Leonnet", - "original_name": "Natasha Leonnet", - "popularity": 1.4, - "profile_path": null, - "credit_id": "647bc8aacf4b8b00c3d2534f", - "department": "Editing", - "job": "Digital Colorist" - }, - { - "adult": false, - "gender": 1, - "id": 1645479, - "known_for_department": "Production", - "name": "Jessica Berri", - "original_name": "Jessica Berri", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647b9fb6e323f301061532d3", - "department": "Production", - "job": "Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 1646562, - "known_for_department": "Visual Effects", - "name": "Emmanuel Gatera", - "original_name": "Emmanuel Gatera", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba0fae323f300e52496a5", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 2, - "id": 1647289, - "known_for_department": "Acting", - "name": "Mike Rianda", - "original_name": "Mike Rianda", - "popularity": 3, - "profile_path": "/1MEH4XJ7fSkwA5oCEyx3CckbIva.jpg", - "credit_id": "647bb155caef2d0119bfb994", - "department": "Production", - "job": "Production Consultant" - }, - { - "adult": false, - "gender": 2, - "id": 1673809, - "known_for_department": "Visual Effects", - "name": "Laide Agunbiade", - "original_name": "Laide Agunbiade", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6486fb8bd2b209014e0a2e4b", - "department": "Lighting", - "job": "Lighting Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1673809, - "known_for_department": "Visual Effects", - "name": "Laide Agunbiade", - "original_name": "Laide Agunbiade", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6486fb9099259c011c414185", - "department": "Visual Effects", - "job": "Compositing Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1677223, - "known_for_department": "Visual Effects", - "name": "Florian Parrot", - "original_name": "Florian Parrot", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbe710e29a200a6607cdc", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 1703174, - "known_for_department": "Directing", - "name": "Miguel Jiron", - "original_name": "Miguel Jiron", - "popularity": 1.343, - "profile_path": "/sBEHuSRFK6T9DqBYQX93qSAFAFU.jpg", - "credit_id": "647ba00d17497301187109ae", - "department": "Writing", - "job": "Head of Story" - }, - { - "adult": false, - "gender": 0, - "id": 1712630, - "known_for_department": "Visual Effects", - "name": "Florent Limouzin", - "original_name": "Florent Limouzin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbcec93828e00bf9e79f6", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 1718384, - "known_for_department": "Writing", - "name": "Octavio E. Rodriguez", - "original_name": "Octavio E. Rodriguez", - "popularity": 0.6, - "profile_path": "/yOJEtXMYMQcEnM1MxOLiSPIQLw.jpg", - "credit_id": "647ba0058d2f8d00c2c0300a", - "department": "Writing", - "job": "Head of Story" - }, - { - "adult": false, - "gender": 1, - "id": 1762345, - "known_for_department": "Visual Effects", - "name": "Cynthia Collins", - "original_name": "Cynthia Collins", - "popularity": 0.98, - "profile_path": null, - "credit_id": "647bba2617497300de6671af", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 1768431, - "known_for_department": "Sound", - "name": "Andy Sisul", - "original_name": "Andy Sisul", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc70793828e013377cd1a", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1783130, - "known_for_department": "Art", - "name": "Aymeric Kevin", - "original_name": "Aymeric Kevin", - "popularity": 0.685, - "profile_path": "/bB6Ie0fObUaDHFgH8HAxKNfE0tZ.jpg", - "credit_id": "647e6bf50e29a22be08e335d", - "department": "Art", - "job": "Other" - }, - { - "adult": false, - "gender": 0, - "id": 1783890, - "known_for_department": "Visual Effects", - "name": "Sam Surplice", - "original_name": "Sam Surplice", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc25ccf4b8b00e2d5d8dc", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 1828305, - "known_for_department": "Visual Effects", - "name": "David Cohan", - "original_name": "David Cohan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e681b17497300de67a593", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 1, - "id": 1840305, - "known_for_department": "Production", - "name": "Theresa Bentz", - "original_name": "Theresa Bentz", - "popularity": 0.6, - "profile_path": "/2iQlxiphvi1YIxY4MV1yA6zHha3.jpg", - "credit_id": "647be5e50e29a200a6609364", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1840315, - "known_for_department": "Sound", - "name": "Will Digby", - "original_name": "Will Digby", - "popularity": 0.91, - "profile_path": null, - "credit_id": "647bc70117497300c1327ef2", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1840320, - "known_for_department": "Visual Effects", - "name": "Lorena García Romero", - "original_name": "Lorena García Romero", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a0585090f00e7980673", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 1840321, - "known_for_department": "Visual Effects", - "name": "Andrea Matamoros", - "original_name": "Andrea Matamoros", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a71945d3600ffcead07", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 1840323, - "known_for_department": "Visual Effects", - "name": "Mike Feil", - "original_name": "Mike Feil", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbad00e29a20133c3b2c5", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 1840331, - "known_for_department": "Visual Effects", - "name": "Hiroya Sonoda", - "original_name": "Hiroya Sonoda", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1d40e29a20116ace71e", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 1840333, - "known_for_department": "Visual Effects", - "name": "Roberto Tifi", - "original_name": "Roberto Tifi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc277cf4b8b00c3d251da", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 1853490, - "known_for_department": "Visual Effects", - "name": "Ami Thompson", - "original_name": "Ami Thompson", - "popularity": 0.694, - "profile_path": null, - "credit_id": "647bb48a0e29a200bf1efebd", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1853494, - "known_for_department": "Visual Effects", - "name": "Spencer Wan", - "original_name": "Spencer Wan", - "popularity": 1.814, - "profile_path": null, - "credit_id": "647bb658e323f3014816b926", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 1855895, - "known_for_department": "Crew", - "name": "Haydn Masuda", - "original_name": "Haydn Masuda", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f16d2b20900ad3bc651", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 1858116, - "known_for_department": "Directing", - "name": "Alfonso de la Cruz", - "original_name": "Alfonso de la Cruz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13b58549dda011c291567", - "department": "Lighting", - "job": "Lighting Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1858116, - "known_for_department": "Directing", - "name": "Alfonso de la Cruz", - "original_name": "Alfonso de la Cruz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13b5d945d3601394e9a0d", - "department": "Visual Effects", - "job": "Compositing Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1869297, - "known_for_department": "Visual Effects", - "name": "Jeffrey M. Thompson", - "original_name": "Jeffrey M. Thompson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647be79e0e29a200dcbb2244", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1915688, - "known_for_department": "Visual Effects", - "name": "Christian Hejnal", - "original_name": "Christian Hejnal", - "popularity": 1.4, - "profile_path": "/rXtNKABdPr0cNPCljWtvRDiEtqc.jpg", - "credit_id": "647b9fb0e323f300a7d5b95c", - "department": "Production", - "job": "Line Producer" - }, - { - "adult": false, - "gender": 1, - "id": 1931443, - "known_for_department": "Directing", - "name": "Violaine Briat", - "original_name": "Violaine Briat", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647baf02caef2d00c29a4e3e", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1938286, - "known_for_department": "Directing", - "name": "Florent Arnould", - "original_name": "Florent Arnould", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb8de174973011871102b", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 1947504, - "known_for_department": "Crew", - "name": "Bret St. Clair", - "original_name": "Bret St. Clair", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d85424001bbd013aee1f12", - "department": "Crew", - "job": "Other" - }, - { - "adult": false, - "gender": 0, - "id": 1965274, - "known_for_department": "Visual Effects", - "name": "Hanung Lee", - "original_name": "Hanung Lee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbcc00e29a200bf1f00e7", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 1994880, - "known_for_department": "Lighting", - "name": "Sarah M. Sweeney", - "original_name": "Sarah M. Sweeney", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f97e375c0011c7f5547", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 1994943, - "known_for_department": "Visual Effects", - "name": "Darrell W. Johnson", - "original_name": "Darrell W. Johnson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647baf3017497300fb3af1e7", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 2001204, - "known_for_department": "Visual Effects", - "name": "Francois F. Laurent", - "original_name": "Francois F. Laurent", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc8c17497300a81976ef", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2002366, - "known_for_department": "Visual Effects", - "name": "Morgan N. Greene", - "original_name": "Morgan N. Greene", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbb51cf4b8b00e2d5d746", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2002528, - "known_for_department": "Visual Effects", - "name": "Jason Baldwin", - "original_name": "Jason Baldwin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb81fe323f3014816b9bc", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 2006129, - "known_for_department": "Visual Effects", - "name": "Joan Marc Fuentes Iglesias", - "original_name": "Joan Marc Fuentes Iglesias", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbb25cf4b8b00a877ac9d", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2006135, - "known_for_department": "Visual Effects", - "name": "Daniel Pozo", - "original_name": "Daniel Pozo", - "popularity": 0.677, - "profile_path": null, - "credit_id": "647ba43293828e00a76489f1", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 2, - "id": 2008268, - "known_for_department": "Visual Effects", - "name": "Nideep Varghese", - "original_name": "Nideep Varghese", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc2c60e29a200dcbb0c71", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2010418, - "known_for_department": "Visual Effects", - "name": "Megan Wong", - "original_name": "Megan Wong", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc3c5cf4b8b01031e6a9d", - "department": "Visual Effects", - "job": "Animation Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 2010992, - "known_for_department": "Lighting", - "name": "Mallory Mahar", - "original_name": "Mallory Mahar", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f06e375c0011c7f5515", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 2011007, - "known_for_department": "Sound", - "name": "Alec Rubay", - "original_name": "Alec Rubay", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc69e0e29a20116ace855", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 0, - "id": 2011792, - "known_for_department": "Visual Effects", - "name": "Eric Stinnissen", - "original_name": "Eric Stinnissen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1e8caef2d00fce5b79b", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 2012497, - "known_for_department": "Editing", - "name": "Erika Scopelli", - "original_name": "Erika Scopelli", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb77393828e01162488e6", - "department": "Editing", - "job": "First Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 2012572, - "known_for_department": "Visual Effects", - "name": "Bhavin Joshi", - "original_name": "Bhavin Joshi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc3be323f300a7d5bff6", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2012688, - "known_for_department": "Visual Effects", - "name": "Yuchung Peter Chan", - "original_name": "Yuchung Peter Chan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb59de323f300e5249b63", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 2013845, - "known_for_department": "Crew", - "name": "Michael Lasker", - "original_name": "Michael Lasker", - "popularity": 1.342, - "profile_path": "/4aGkIMP0EQljzqATYli7wYkyRzi.jpg", - "credit_id": "647b9f7217497300fb3aedf3", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2013847, - "known_for_department": "Crew", - "name": "Darren Lurie", - "original_name": "Darren Lurie", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e67ef1749730118725095", - "department": "Crew", - "job": "Digital Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2013880, - "known_for_department": "Visual Effects", - "name": "Kevin Jackson", - "original_name": "Kevin Jackson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc0e17497300fb3af585", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2013881, - "known_for_department": "Visual Effects", - "name": "Robert Lehman", - "original_name": "Robert Lehman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba424cf4b8b01418f321b", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 0, - "id": 2013883, - "known_for_department": "Visual Effects", - "name": "Ina Marczinczik", - "original_name": "Ina Marczinczik", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbd8b93828e00dcdcd603", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2013909, - "known_for_department": "Visual Effects", - "name": "Zachary Torok", - "original_name": "Zachary Torok", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc28ccf4b8b00a877ae81", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 2013923, - "known_for_department": "Visual Effects", - "name": "Kelsey Wagner", - "original_name": "Kelsey Wagner", - "popularity": 0.765, - "profile_path": null, - "credit_id": "647ba45b0e29a200f981e6c0", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 2, - "id": 2013956, - "known_for_department": "Lighting", - "name": "Brian Adams", - "original_name": "Brian Adams", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6486fc3899259c00c5b5a9be", - "department": "Lighting", - "job": "Lighting Artist" - }, - { - "adult": false, - "gender": 2, - "id": 2013956, - "known_for_department": "Lighting", - "name": "Brian Adams", - "original_name": "Brian Adams", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6486fc41c0348b01027923e4", - "department": "Visual Effects", - "job": "Compositing Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2013962, - "known_for_department": "Lighting", - "name": "Jared Brient", - "original_name": "Jared Brient", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839e66bf31f2505f3dfc93", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 2014013, - "known_for_department": "Lighting", - "name": "Nakia McGlynn", - "original_name": "Nakia McGlynn", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f1de375c000e24ec851", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 2014025, - "known_for_department": "Lighting", - "name": "Rambo Snyder", - "original_name": "Rambo Snyder", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f87e375c00139bf9937", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 2, - "id": 2014043, - "known_for_department": "Crew", - "name": "Benjamin Aguillon", - "original_name": "Benjamin Aguillon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba489caef2d00df88a0e2", - "department": "Crew", - "job": "CG Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2014047, - "known_for_department": "Visual Effects", - "name": "Yohan Bang", - "original_name": "Yohan Bang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb82893828e013377c94a", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 2014054, - "known_for_department": "Visual Effects", - "name": "Taehyun Park", - "original_name": "Taehyun Park", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d139e56d4c9700ec58a940", - "department": "Visual Effects", - "job": "Modelling Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2014082, - "known_for_department": "Visual Effects", - "name": "Alan Hawkins", - "original_name": "Alan Hawkins", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64f8da04e0ca7f00ae3c4766", - "department": "Visual Effects", - "job": "Head of Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2014787, - "known_for_department": "Sound", - "name": "Mike Marino", - "original_name": "Mike Marino", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc77ecaef2d00fce5b8e0", - "department": "Sound", - "job": "Foley Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 2014825, - "known_for_department": "Crew", - "name": "Jeff Panko", - "original_name": "Jeff Panko", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba42e93828e00bf9e73c6", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 2, - "id": 2015434, - "known_for_department": "Acting", - "name": "A Boogie Wit Da Hoodie", - "original_name": "A Boogie Wit Da Hoodie", - "popularity": 1.096, - "profile_path": "/4KgTVzi6sgAElRRyK35VSVcUFd4.jpg", - "credit_id": "648841f499259c011c41d245", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 2015789, - "known_for_department": "Visual Effects", - "name": "Derek Esparza", - "original_name": "Derek Esparza", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbac20e29a200a6607bcf", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2015914, - "known_for_department": "Visual Effects", - "name": "Yashar Kassai", - "original_name": "Yashar Kassai", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb695cf4b8b00e2d5d61f", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 2016254, - "known_for_department": "Visual Effects", - "name": "Brock Boyts", - "original_name": "Brock Boyts", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb942cf4b8b00c3d24fa4", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2016600, - "known_for_department": "Visual Effects", - "name": "Martin Campos Amoros", - "original_name": "Martin Campos Amoros", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb8cc0e29a20133c3b23c", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2017015, - "known_for_department": "Visual Effects", - "name": "Harinarayan Rajeev", - "original_name": "Harinarayan Rajeev", - "popularity": 0.6, - "profile_path": "/vYQxrUbX8DDVlVVzqcHhZokj1YL.jpg", - "credit_id": "647bc14117497301350177f5", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2017356, - "known_for_department": "Lighting", - "name": "Luca Fiorentini", - "original_name": "Luca Fiorentini", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839e8f99259c00e2f45763", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 2017632, - "known_for_department": "Visual Effects", - "name": "Jake Panian", - "original_name": "Jake Panian", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb61e93828e00bf9e7851", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 2017976, - "known_for_department": "Visual Effects", - "name": "Marc Steinberg", - "original_name": "Marc Steinberg", - "popularity": 0.628, - "profile_path": null, - "credit_id": "647bc5f4caef2d0119bfbf2a", - "department": "Visual Effects", - "job": "3D Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2017976, - "known_for_department": "Visual Effects", - "name": "Marc Steinberg", - "original_name": "Marc Steinberg", - "popularity": 0.628, - "profile_path": null, - "credit_id": "647bc5ea0e29a200dcbb0d32", - "department": "Visual Effects", - "job": "2D Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2019030, - "known_for_department": "Crew", - "name": "Sam Okell", - "original_name": "Sam Okell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc80393828e013377cd5f", - "department": "Sound", - "job": "Scoring Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 2030551, - "known_for_department": "Acting", - "name": "Nucleya", - "original_name": "Nucleya", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64884126e2726000c9322467", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 2040936, - "known_for_department": "Visual Effects", - "name": "Gal Roiter", - "original_name": "Gal Roiter", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f7cc9dbf9013a0612c1", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 2, - "id": 2044697, - "known_for_department": "Visual Effects", - "name": "Jun'ya Otake", - "original_name": "Jun'ya Otake", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbe4117497300de6672d0", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2044720, - "known_for_department": "Visual Effects", - "name": "Jamie Vickers", - "original_name": "Jamie Vickers", - "popularity": 1.103, - "profile_path": null, - "credit_id": "647bc58893828e00bf9e7c27", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2059577, - "known_for_department": "Visual Effects", - "name": "Asuha Yasuda", - "original_name": "Asuha Yasuda", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e663a0e29a22be3281471", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 2, - "id": 2072158, - "known_for_department": "Crew", - "name": "Matt Hausman", - "original_name": "Matt Hausman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba5dc0e29a200a66076af", - "department": "Crew", - "job": "Digital Effects Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 2085351, - "known_for_department": "Production", - "name": "Libby Thomas Dickey", - "original_name": "Libby Thomas Dickey", - "popularity": 0.722, - "profile_path": null, - "credit_id": "63ec33021b7294008e15f8f6", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 0, - "id": 2116028, - "known_for_department": "Visual Effects", - "name": "Allan Michaut", - "original_name": "Allan Michaut", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc515174973011871133c", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2133221, - "known_for_department": "Sound", - "name": "Colin Lechner", - "original_name": "Colin Lechner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc74d93828e00f9d77035", - "department": "Sound", - "job": "Foley Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2134438, - "known_for_department": "Directing", - "name": "Diego Porral", - "original_name": "Diego Porral", - "popularity": 0.6, - "profile_path": "/pwfbCtK0WuTXvAFWXw3ENeul10r.jpg", - "credit_id": "647bc4c7cf4b8b01418f39c0", - "department": "Visual Effects", - "job": "Animation Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2135783, - "known_for_department": "Visual Effects", - "name": "Joan Pons", - "original_name": "Joan Pons", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483438ae375c000ff47cbda", - "department": "Lighting", - "job": "Lighting Artist" - }, - { - "adult": false, - "gender": 2, - "id": 2135783, - "known_for_department": "Visual Effects", - "name": "Joan Pons", - "original_name": "Joan Pons", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483436599259c01392a97cb", - "department": "Visual Effects", - "job": "Compositing Artist" - }, - { - "adult": false, - "gender": 2, - "id": 2138144, - "known_for_department": "Acting", - "name": "Offset", - "original_name": "Offset", - "popularity": 2.863, - "profile_path": "/mUo9DkyY9u33aXjfFtzU089WVTA.jpg", - "credit_id": "6488400ce375c000c52982ac", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 2151274, - "known_for_department": "Visual Effects", - "name": "Jiwoon Kim", - "original_name": "Jiwoon Kim", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839ed4d2b209010c188b08", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 2, - "id": 2151945, - "known_for_department": "Visual Effects", - "name": "Zac Overcash", - "original_name": "Zac Overcash", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbe46cf4b8b00c3d250cf", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2152119, - "known_for_department": "Visual Effects", - "name": "Pawel Grochola", - "original_name": "Pawel Grochola", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d85435f14dad013a8c5433", - "department": "Crew", - "job": "Other" - }, - { - "adult": false, - "gender": 2, - "id": 2166356, - "known_for_department": "Acting", - "name": "Metro Boomin", - "original_name": "Metro Boomin", - "popularity": 1.04, - "profile_path": "/mS1z3fgaEEbwpGLbWjk8oSJ2XuN.jpg", - "credit_id": "64831892c9dbf900c570f36c", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 2, - "id": 2166356, - "known_for_department": "Acting", - "name": "Metro Boomin", - "original_name": "Metro Boomin", - "popularity": 1.04, - "profile_path": "/mS1z3fgaEEbwpGLbWjk8oSJ2XuN.jpg", - "credit_id": "6486d7a7d2b209010c1a23be", - "department": "Crew", - "job": "Executive Music Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2186933, - "known_for_department": "Visual Effects", - "name": "Orrie Fung", - "original_name": "Orrie Fung", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a0a4d67910139ef40f1", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 1, - "id": 2186948, - "known_for_department": "Visual Effects", - "name": "Em Guiry", - "original_name": "Em Guiry", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbb5d93828e00a7648fc9", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2195903, - "known_for_department": "Visual Effects", - "name": "Michael Trikosko", - "original_name": "Michael Trikosko", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc29acaef2d00df88a883", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2196774, - "known_for_department": "Art", - "name": "Patrick O'Keefe", - "original_name": "Patrick O'Keefe", - "popularity": 0.6, - "profile_path": "/xxJuqiJkLmEAyYBalWh8Ihj0mox.jpg", - "credit_id": "63ec3337f92532007f1beb1c", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 1, - "id": 2196776, - "known_for_department": "Crew", - "name": "Rebecca Karch Tomlinson", - "original_name": "Rebecca Karch Tomlinson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba6070e29a200dcbb0548", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 2, - "id": 2199276, - "known_for_department": "Visual Effects", - "name": "Nick Kondo", - "original_name": "Nick Kondo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb85c0e29a20133c3b217", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 0, - "id": 2199277, - "known_for_department": "Visual Effects", - "name": "Federico Abib", - "original_name": "Federico Abib", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb89817497300fb3af465", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2199321, - "known_for_department": "Visual Effects", - "name": "Byung Joo Choi", - "original_name": "Byung Joo Choi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb99317497300fb3af4b7", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2199322, - "known_for_department": "Visual Effects", - "name": "Juan Couto", - "original_name": "Juan Couto", - "popularity": 0.759, - "profile_path": null, - "credit_id": "647bba4be323f300c42a152e", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2199325, - "known_for_department": "Crew", - "name": "Chad Ellis", - "original_name": "Chad Ellis", - "popularity": 0.606, - "profile_path": null, - "credit_id": "647ba0de93828e00dcdcce18", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 0, - "id": 2199326, - "known_for_department": "Visual Effects", - "name": "Leon Anthony Enriquez", - "original_name": "Leon Anthony Enriquez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d139ecd9f4a603bafb8174", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 2199327, - "known_for_department": "Visual Effects", - "name": "Bianca Gee", - "original_name": "Bianca Gee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbb4693828e00f9d76d03", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2199329, - "known_for_department": "Visual Effects", - "name": "David Han", - "original_name": "David Han", - "popularity": 0.615, - "profile_path": null, - "credit_id": "647bbb8e17497300a8197689", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2199348, - "known_for_department": "Visual Effects", - "name": "Thanawat Khantrum", - "original_name": "Thanawat Khantrum", - "popularity": 1.01, - "profile_path": "/xPvpweiRkElDZvRBpmfTsJSErTu.jpg", - "credit_id": "647bbc5be323f3014816bad0", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2199362, - "known_for_department": "Visual Effects", - "name": "Nicholas Nøstbakken", - "original_name": "Nicholas Nøstbakken", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba4288d2f8d011934320e", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 0, - "id": 2199363, - "known_for_department": "Visual Effects", - "name": "Ryan O'Reilly", - "original_name": "Ryan O'Reilly", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbe2ccf4b8b01418f384e", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2199370, - "known_for_department": "Visual Effects", - "name": "Samuel Arturo Rico", - "original_name": "Samuel Arturo Rico", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba4428d2f8d00fcc12b43", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 2, - "id": 2199374, - "known_for_department": "Visual Effects", - "name": "Humberto Francisco Rosa", - "original_name": "Humberto Francisco Rosa", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba0cb17497300de666b9f", - "department": "Visual Effects", - "job": "Animation Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2199381, - "known_for_department": "Visual Effects", - "name": "Chris Su", - "original_name": "Chris Su", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc24917497300a819784e", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 2204103, - "known_for_department": "Writing", - "name": "Lauren Sassen", - "original_name": "Lauren Sassen", - "popularity": 0.608, - "profile_path": null, - "credit_id": "647bb013e323f301061536a0", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2221285, - "known_for_department": "Directing", - "name": "Eleonora Bertolucci", - "original_name": "Eleonora Bertolucci", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb931e323f300c42a14e3", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2233196, - "known_for_department": "Visual Effects", - "name": "Thomas Thistlethwaite", - "original_name": "Thomas Thistlethwaite", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc269cf4b8b01418f3938", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 2247431, - "known_for_department": "Crew", - "name": "Keiko Koyama", - "original_name": "Keiko Koyama", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba0a4e323f3014816b3b3", - "department": "Crew", - "job": "Digital Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2282000, - "known_for_department": "Acting", - "name": "Swae Lee", - "original_name": "Swae Lee", - "popularity": 1.048, - "profile_path": null, - "credit_id": "648841b0e375c000c52983b9", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 2285844, - "known_for_department": "Visual Effects", - "name": "Eric Andrusyszyn", - "original_name": "Eric Andrusyszyn", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839e5fc9dbf9011dfb74bd", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 2, - "id": 2356303, - "known_for_department": "Acting", - "name": "James Blake", - "original_name": "James Blake", - "popularity": 0.6, - "profile_path": "/k0dFhjVuqjM9iSxDP3t5FE46Vsy.jpg", - "credit_id": "648840cf6f8d9500e500a753", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 1, - "id": 2380011, - "known_for_department": "Visual Effects", - "name": "Felicia Chen", - "original_name": "Felicia Chen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb67fcaef2d00df88a53d", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 2398798, - "known_for_department": "Acting", - "name": "Don Toliver", - "original_name": "Don Toliver", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6488411799259c01392cec5f", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 2, - "id": 2417952, - "known_for_department": "Visual Effects", - "name": "Rohit Kelkar", - "original_name": "Rohit Kelkar", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc5080e29a200dcbb0cf3", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2451598, - "known_for_department": "Directing", - "name": "Kemp Powers", - "original_name": "Kemp Powers", - "popularity": 3.548, - "profile_path": "/1uBaVuFJX5HJpiSkoB23NvfMhyW.jpg", - "credit_id": "607e08761b1f3c006eb33d8c", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 0, - "id": 2488324, - "known_for_department": "Camera", - "name": "Sheldon Lisoy", - "original_name": "Sheldon Lisoy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839efce2726000c930104b", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 1, - "id": 2526411, - "known_for_department": "Editing", - "name": "Anna Saathoff", - "original_name": "Anna Saathoff", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63ec32d31b7294008e15f8ab", - "department": "Editing", - "job": "Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 2544880, - "known_for_department": "Visual Effects", - "name": "Elard Meneses", - "original_name": "Elard Meneses", - "popularity": 0.652, - "profile_path": null, - "credit_id": "647bbdbfcaef2d00fce5b6d8", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2555580, - "known_for_department": "Production", - "name": "Kasey Fagerquist", - "original_name": "Kasey Fagerquist", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e67e7ccde040118aab7ca", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 2563059, - "known_for_department": "Visual Effects", - "name": "Egbert Reichel", - "original_name": "Egbert Reichel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f5be27260010721a44a", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 2, - "id": 2597017, - "known_for_department": "Editing", - "name": "Andrew Leviton", - "original_name": "Andrew Leviton", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb73ecf4b8b01418f3685", - "department": "Editing", - "job": "Associate Editor" - }, - { - "adult": false, - "gender": 2, - "id": 2597608, - "known_for_department": "Crew", - "name": "Vincent G. Scotti", - "original_name": "Vincent G. Scotti", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc67617497300fb3af81a", - "department": "Crew", - "job": "Post Production Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2597625, - "known_for_department": "Camera", - "name": "Tom Bruno Jr.", - "original_name": "Tom Bruno Jr.", - "popularity": 0.729, - "profile_path": null, - "credit_id": "647ba0698d2f8d00aa5dd84c", - "department": "Camera", - "job": "Head of Layout" - }, - { - "adult": false, - "gender": 2, - "id": 2632636, - "known_for_department": "Visual Effects", - "name": "Daniel Ceballos", - "original_name": "Daniel Ceballos", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb9690e29a200dcbb0a09", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 2639168, - "known_for_department": "Visual Effects", - "name": "Kristin Müller", - "original_name": "Kristin Müller", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbdc4cf4b8b0122761c08", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2645693, - "known_for_department": "Visual Effects", - "name": "Tom Davis", - "original_name": "Tom Davis", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bba6ee323f300e5249c71", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2647893, - "known_for_department": "Crew", - "name": "Dan Slott", - "original_name": "Dan Slott", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb23dcaef2d00fce5b416", - "department": "Production", - "job": "Production Consultant" - }, - { - "adult": false, - "gender": 1, - "id": 2648989, - "known_for_department": "Visual Effects", - "name": "Grace Villaroman", - "original_name": "Grace Villaroman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc2cce323f30106153b1f", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2702748, - "known_for_department": "Visual Effects", - "name": "Matthew McDonald", - "original_name": "Matthew McDonald", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648114d999259c00e2f3044a", - "department": "Lighting", - "job": "Lighting Artist" - }, - { - "adult": false, - "gender": 2, - "id": 2702748, - "known_for_department": "Visual Effects", - "name": "Matthew McDonald", - "original_name": "Matthew McDonald", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648114e1e375c000c525b286", - "department": "Visual Effects", - "job": "Compositing Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2702903, - "known_for_department": "Visual Effects", - "name": "Chelsea Gordon-Ratzlaff", - "original_name": "Chelsea Gordon-Ratzlaff", - "popularity": 0.636, - "profile_path": null, - "credit_id": "647ba100cf4b8b01418f312d", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 2, - "id": 2711299, - "known_for_department": "Acting", - "name": "Dominic Fike", - "original_name": "Dominic Fike", - "popularity": 2.244, - "profile_path": "/vtuRZff8c3QNKiShMo25z5M5guD.jpg", - "credit_id": "6488410c99259c00acce5fb2", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 2779154, - "known_for_department": "Sound", - "name": "Kip Smedley", - "original_name": "Kip Smedley", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc6aecf4b8b00c3d252d3", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 2, - "id": 2814119, - "known_for_department": "Writing", - "name": "R. Chett Hoffman", - "original_name": "R. Chett Hoffman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb734caef2d00fce5b52a", - "department": "Editing", - "job": "Associate Editor" - }, - { - "adult": false, - "gender": 2, - "id": 2912489, - "known_for_department": "Crew", - "name": "Benjamin Hendricks", - "original_name": "Benjamin Hendricks", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba507caef2d00df88a10d", - "department": "Crew", - "job": "CG Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2923782, - "known_for_department": "Visual Effects", - "name": "Ian McQue", - "original_name": "Ian McQue", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483ae7dc9dbf900e3ff1cba", - "department": "Art", - "job": "Other" - }, - { - "adult": false, - "gender": 0, - "id": 2928609, - "known_for_department": "Editing", - "name": "Kelvin Johnson", - "original_name": "Kelvin Johnson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc8c50e29a200dcbb0df9", - "department": "Editing", - "job": "Color Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3006767, - "known_for_department": "Visual Effects", - "name": "Julian Fumagalli", - "original_name": "Julian Fumagalli", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc4f2cf4b8b01418f39cb", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 3061325, - "known_for_department": "Writing", - "name": "Guillermo Martinez", - "original_name": "Guillermo Martinez", - "popularity": 0.6, - "profile_path": "/erDsK4fmVJySShXWkHGI1HHNFPo.jpg", - "credit_id": "647be71c17497300fb3b0e73", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 3145624, - "known_for_department": "Crew", - "name": "Rowan Young", - "original_name": "Rowan Young", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839fa9e272600147b95a78", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 2, - "id": 3174024, - "known_for_department": "Visual Effects", - "name": "Wendell Dalit", - "original_name": "Wendell Dalit", - "popularity": 0.6, - "profile_path": "/vZPG4pZ5GBz8eKZivqdvpDSpddz.jpg", - "credit_id": "647bb5d80e29a200f981eb02", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 3194354, - "known_for_department": "Art", - "name": "Ben Choi", - "original_name": "Ben Choi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647baf0d17497300c1327928", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 3194358, - "known_for_department": "Art", - "name": "Jarelle Dampier", - "original_name": "Jarelle Dampier", - "popularity": 0.733, - "profile_path": null, - "credit_id": "647be5ebcf4b8b012276335a", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 3209802, - "known_for_department": "Visual Effects", - "name": "Omar Smith", - "original_name": "Omar Smith", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb48517497300fb3af34e", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 0, - "id": 3251536, - "known_for_department": "Directing", - "name": "Ezequiel Torres", - "original_name": "Ezequiel Torres", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc523e323f300c42a17ca", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 3256109, - "known_for_department": "Visual Effects", - "name": "Martin Gil", - "original_name": "Martin Gil", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc4ff93828e00dcdcd7c9", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 3290243, - "known_for_department": "Visual Effects", - "name": "Gerard Manresa Ortega", - "original_name": "Gerard Manresa Ortega", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbd76caef2d01362b3386", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 3290245, - "known_for_department": "Visual Effects", - "name": "Mònica Eggert Roig", - "original_name": "Mònica Eggert Roig", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbaafcaef2d00df88a667", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 3322150, - "known_for_department": "Directing", - "name": "Caitlin VanArsdale", - "original_name": "Caitlin VanArsdale", - "popularity": 0.725, - "profile_path": null, - "credit_id": "647bb02493828e013377c74d", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 3324650, - "known_for_department": "Visual Effects", - "name": "Evan Monteiro", - "original_name": "Evan Monteiro", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb46b1749730118710efc", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 2, - "id": 3336000, - "known_for_department": "Visual Effects", - "name": "Kris Anka", - "original_name": "Kris Anka", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ac1566223e20001b2091b1", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 1, - "id": 3343523, - "known_for_department": "Acting", - "name": "Coi Leray", - "original_name": "Coi Leray", - "popularity": 0.795, - "profile_path": "/1yDzHply5OzVCusxgaS6hKKUY8F.jpg", - "credit_id": "64883ef96f8d9501023da717", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 1, - "id": 3350412, - "known_for_department": "Visual Effects", - "name": "Emma Shih", - "original_name": "Emma Shih", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1b4174973011871126a", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 3371135, - "known_for_department": "Visual Effects", - "name": "Christie Tseng", - "original_name": "Christie Tseng", - "popularity": 0.863, - "profile_path": null, - "credit_id": "647bb49193828e00f9d76ad5", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 0, - "id": 3373385, - "known_for_department": "Sound", - "name": "Jason W. Freeman", - "original_name": "Jason W. Freeman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc717cf4b8b01418f3a51", - "department": "Sound", - "job": "Dialogue Editor" - }, - { - "adult": false, - "gender": 0, - "id": 3373385, - "known_for_department": "Sound", - "name": "Jason W. Freeman", - "original_name": "Jason W. Freeman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc72d93828e0116248d51", - "department": "Sound", - "job": "ADR Editor" - }, - { - "adult": false, - "gender": 2, - "id": 3383190, - "known_for_department": "Visual Effects", - "name": "Adam Sarophim", - "original_name": "Adam Sarophim", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba43d93828e00f9d7666d", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 1, - "id": 3383195, - "known_for_department": "Crew", - "name": "Genevieve West", - "original_name": "Genevieve West", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba0ab0e29a200bf1ef9b1", - "department": "Crew", - "job": "Digital Producer" - }, - { - "adult": false, - "gender": 2, - "id": 3419961, - "known_for_department": "Visual Effects", - "name": "Nicolas Gillet", - "original_name": "Nicolas Gillet", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbb4be323f300c42a1563", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 3470748, - "known_for_department": "Directing", - "name": "India Barnardo", - "original_name": "India Barnardo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb92b93828e0116248963", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 3472292, - "known_for_department": "Visual Effects", - "name": "Zac Retz", - "original_name": "Zac Retz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb6240e29a200bf1eff36", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 3472307, - "known_for_department": "Visual Effects", - "name": "Alaa Afifah", - "original_name": "Alaa Afifah", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb8ab0e29a200f981ebc8", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 3472914, - "known_for_department": "Production", - "name": "Sharon Kikinis", - "original_name": "Sharon Kikinis", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc3fe17497300fb3af76d", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 1, - "id": 3530984, - "known_for_department": "Writing", - "name": "Rachel Smith", - "original_name": "Rachel Smith", - "popularity": 0.667, - "profile_path": "/9gJQ4fUhTeTwO09J2jw8pMhD5ob.jpg", - "credit_id": "647be760e323f3012751e1a3", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 3551548, - "known_for_department": "Visual Effects", - "name": "Jesús Alonso Iglesias", - "original_name": "Jesús Alonso Iglesias", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647af32bcf4b8b00c3d20b9a", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 2, - "id": 3551560, - "known_for_department": "Editing", - "name": "Bret Allen", - "original_name": "Bret Allen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d851fa069f0e01018fbe8e", - "department": "Editing", - "job": "Other" - }, - { - "adult": false, - "gender": 2, - "id": 3558904, - "known_for_department": "Visual Effects", - "name": "Anthony Holden", - "original_name": "Anthony Holden", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647baf1317497300fb3af1de", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 1, - "id": 3563691, - "known_for_department": "Acting", - "name": "Thenmozhi Soundararajan", - "original_name": "Thenmozhi Soundararajan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb279e323f300e5249aab", - "department": "Production", - "job": "Production Consultant" - }, - { - "adult": false, - "gender": 0, - "id": 3616142, - "known_for_department": "Visual Effects", - "name": "Alissar Kobeissi", - "original_name": "Alissar Kobeissi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc620e29a200a6607c5d", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 3659440, - "known_for_department": "Visual Effects", - "name": "Ian Parra Patino", - "original_name": "Ian Parra Patino", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f54d2b209010c188b26", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 3751108, - "known_for_department": "Crew", - "name": "Harry A. Gundersen", - "original_name": "Harry A. Gundersen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839ebbd2b20900ad3bc63d", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 3854054, - "known_for_department": "Art", - "name": "Mike McCain", - "original_name": "Mike McCain", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb60a93828e00a7648e9a", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 3861278, - "known_for_department": "Visual Effects", - "name": "Naveen Selvanathan", - "original_name": "Naveen Selvanathan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483aeb2e27260010721a85c", - "department": "Art", - "job": "Other" - }, - { - "adult": false, - "gender": 2, - "id": 3883317, - "known_for_department": "Visual Effects", - "name": "Yuhki Demers", - "original_name": "Yuhki Demers", - "popularity": 0.609, - "profile_path": null, - "credit_id": "647bb68b0e29a20133c3b1a5", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 3883321, - "known_for_department": "Visual Effects", - "name": "Tony Ianiro", - "original_name": "Tony Ianiro", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb5e393828e00f9d76b46", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 3883341, - "known_for_department": "Visual Effects", - "name": "Kellan Jett", - "original_name": "Kellan Jett", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb5e917497300a819750a", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 1, - "id": 3883342, - "known_for_department": "Visual Effects", - "name": "Tiffany Lam", - "original_name": "Tiffany Lam", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb5eee323f30106153810", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 3883343, - "known_for_department": "Visual Effects", - "name": "Chris O'Keefe", - "original_name": "Chris O'Keefe", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb61717497300fb3af3b8", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 3883344, - "known_for_department": "Visual Effects", - "name": "Jay Thakur", - "original_name": "Jay Thakur", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb649e323f3014816b922", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 1, - "id": 3883345, - "known_for_department": "Visual Effects", - "name": "Kat Tsai", - "original_name": "Kat Tsai", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb653174973013501754b", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 3961518, - "known_for_department": "Visual Effects", - "name": "Arran Jay Baker", - "original_name": "Arran Jay Baker", - "popularity": 0.6, - "profile_path": null, - "credit_id": "640f67f8e18e3f07e953540f", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 3998549, - "known_for_department": "Visual Effects", - "name": "Chen Zhang", - "original_name": "Chen Zhang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13ab7945d3600aca0261b", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 2, - "id": 4036656, - "known_for_department": "Visual Effects", - "name": "Joe Darko", - "original_name": "Joe Darko", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bba5acf4b8b00a877ac6a", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 4039080, - "known_for_department": "Acting", - "name": "Melanie Duke", - "original_name": "Melanie Duke", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb38793828e00a7648df4", - "department": "Directing", - "job": "Script Coordinator" - }, - { - "adult": false, - "gender": 1, - "id": 4039080, - "known_for_department": "Acting", - "name": "Melanie Duke", - "original_name": "Melanie Duke", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb382cf4b8b01031e6721", - "department": "Writing", - "job": "Story Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4067322, - "known_for_department": "Visual Effects", - "name": "Quentin Marsollier", - "original_name": "Quentin Marsollier", - "popularity": 0.656, - "profile_path": null, - "credit_id": "647e6603ccde0401355c0c85", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 1, - "id": 4094163, - "known_for_department": "Editing", - "name": "Antonina Lentini", - "original_name": "Antonina Lentini", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb77e93828e00a7648ede", - "department": "Editing", - "job": "Assistant Editor" - }, - { - "adult": false, - "gender": 2, - "id": 4094194, - "known_for_department": "Editing", - "name": "Freddy Ferrari", - "original_name": "Freddy Ferrari", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb77993828e01162488e9", - "department": "Editing", - "job": "Assistant Editor" - }, - { - "adult": false, - "gender": 2, - "id": 4094203, - "known_for_department": "Production", - "name": "Russell Tyre Francis", - "original_name": "Russell Tyre Francis", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc46fe323f300a7d5c1bd", - "department": "Production", - "job": "Production Assistant" - }, - { - "adult": false, - "gender": 1, - "id": 4095782, - "known_for_department": "Crew", - "name": "Rohini Kumar", - "original_name": "Rohini Kumar", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba12ee323f30106153324", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 2, - "id": 4095795, - "known_for_department": "Crew", - "name": "James Carson", - "original_name": "James Carson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba4b093828e00dcdccf55", - "department": "Crew", - "job": "CG Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 4095797, - "known_for_department": "Crew", - "name": "Patrick Cohen", - "original_name": "Patrick Cohen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba4e58d2f8d00aa5dd962", - "department": "Crew", - "job": "CG Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 4095798, - "known_for_department": "Crew", - "name": "James Hyun Park", - "original_name": "James Hyun Park", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba51b0e29a200f981e6fc", - "department": "Crew", - "job": "CG Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 4095804, - "known_for_department": "Production", - "name": "Julie Groll", - "original_name": "Julie Groll", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba60ecaef2d00fce5b15d", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 1, - "id": 4095846, - "known_for_department": "Sound", - "name": "Vinii Khullar", - "original_name": "Vinii Khullar", - "popularity": 0.985, - "profile_path": null, - "credit_id": "647bae2ecaef2d00fce5b311", - "department": "Sound", - "job": "Sound Mixer" - }, - { - "adult": false, - "gender": 1, - "id": 4095853, - "known_for_department": "Writing", - "name": "Sarah Jean Partington", - "original_name": "Sarah Jean Partington", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647baf78cf4b8b00c3d24d57", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 4095855, - "known_for_department": "Writing", - "name": "Wynton Redmond", - "original_name": "Wynton Redmond", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bafa9cf4b8b012276182b", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 1, - "id": 4095858, - "known_for_department": "Writing", - "name": "Stephanie Garcia Rizo", - "original_name": "Stephanie Garcia Rizo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bafdc0e29a200f981e971", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 4095861, - "known_for_department": "Writing", - "name": "Gabriela Carolina Camarillo", - "original_name": "Gabriela Carolina Camarillo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb0590e29a200bf1efdc3", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 4095862, - "known_for_department": "Writing", - "name": "Eugene Lee", - "original_name": "Eugene Lee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb082e323f3014816b7a2", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 4095864, - "known_for_department": "Production", - "name": "Jason Latour", - "original_name": "Jason Latour", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb0e40e29a20116ace2c4", - "department": "Production", - "job": "Production Consultant" - }, - { - "adult": false, - "gender": 1, - "id": 4095865, - "known_for_department": "Production", - "name": "Nilah Magruder", - "original_name": "Nilah Magruder", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb0efe323f300c42a12ed", - "department": "Production", - "job": "Production Consultant" - }, - { - "adult": false, - "gender": 0, - "id": 4095866, - "known_for_department": "Production", - "name": "John Murad", - "original_name": "John Murad", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb0fa93828e00a7648d5a", - "department": "Production", - "job": "Production Consultant" - }, - { - "adult": false, - "gender": 2, - "id": 4095872, - "known_for_department": "Visual Effects", - "name": "Mauro Belfiore", - "original_name": "Mauro Belfiore", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb45793828e00f9d76ac7", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 1, - "id": 4095873, - "known_for_department": "Visual Effects", - "name": "Brie E. Henderson", - "original_name": "Brie E. Henderson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb46093828e011624881b", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 2, - "id": 4095875, - "known_for_department": "Visual Effects", - "name": "William Coyner", - "original_name": "William Coyner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb5ad1749730135017521", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 4095878, - "known_for_department": "Visual Effects", - "name": "Mack Sztaba", - "original_name": "Mack Sztaba", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb62f0e29a200dcbb093a", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 1, - "id": 4095885, - "known_for_department": "Visual Effects", - "name": "Amanda Jolly", - "original_name": "Amanda Jolly", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb691cf4b8b0122761a22", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 4095888, - "known_for_department": "Visual Effects", - "name": "Marco Nelor", - "original_name": "Marco Nelor", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb6d193828e013377c908", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 4095889, - "known_for_department": "Visual Effects", - "name": "Hethe Srodawa", - "original_name": "Hethe Srodawa", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb6e0cf4b8b0122761a3d", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 1, - "id": 4095894, - "known_for_department": "Art", - "name": "Jade Johnson", - "original_name": "Jade Johnson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb71ecaef2d00c29a5011", - "department": "Art", - "job": "Art Department Coordinator" - }, - { - "adult": false, - "gender": 1, - "id": 4095895, - "known_for_department": "Art", - "name": "Chloe Look", - "original_name": "Chloe Look", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb723cf4b8b00a877abbb", - "department": "Art", - "job": "Art Department Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4095906, - "known_for_department": "Editing", - "name": "Joshua E. Perez", - "original_name": "Joshua E. Perez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb7fde323f300e5249bdc", - "department": "Editing", - "job": "Editorial Coordinator" - }, - { - "adult": false, - "gender": 1, - "id": 4095910, - "known_for_department": "Visual Effects", - "name": "Mikaela Pfeifer", - "original_name": "Mikaela Pfeifer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb86e17497301350175e4", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 2, - "id": 4095911, - "known_for_department": "Visual Effects", - "name": "Siggi Orri Þórhannesson", - "original_name": "Siggi Orri Þórhannesson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb87e93828e00f9d76c1c", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 0, - "id": 4095915, - "known_for_department": "Visual Effects", - "name": "Mauro Affronti", - "original_name": "Mauro Affronti", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb8a693828e013377c976", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 4095916, - "known_for_department": "Visual Effects", - "name": "Nataliia Alekseieva", - "original_name": "Nataliia Alekseieva", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb8b61749730118711013", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095918, - "known_for_department": "Visual Effects", - "name": "Jesus Almela", - "original_name": "Jesus Almela", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb8c417497300a81975d2", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095919, - "known_for_department": "Visual Effects", - "name": "Giulia Arnaboldi", - "original_name": "Giulia Arnaboldi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb8d80e29a20133c3b249", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095920, - "known_for_department": "Visual Effects", - "name": "Benoit Aubin", - "original_name": "Benoit Aubin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb8e3e323f301061538bc", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095921, - "known_for_department": "Visual Effects", - "name": "Nir Avital", - "original_name": "Nir Avital", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb8edcf4b8b00e2d5d6ab", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095922, - "known_for_department": "Visual Effects", - "name": "Kyungmin Bae", - "original_name": "Kyungmin Bae", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb8fdcf4b8b01031e6834", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095923, - "known_for_department": "Visual Effects", - "name": "Matteo Bagnoli", - "original_name": "Matteo Bagnoli", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb90717497300fb3af48e", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4095924, - "known_for_department": "Visual Effects", - "name": "Jordan Barg", - "original_name": "Jordan Barg", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb92593828e00f9d76c58", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4095925, - "known_for_department": "Visual Effects", - "name": "Gage Birch", - "original_name": "Gage Birch", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb9380e29a20116ace4f9", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095926, - "known_for_department": "Visual Effects", - "name": "Malick Bordonado", - "original_name": "Malick Bordonado", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb93ecaef2d00aa42abbe", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095927, - "known_for_department": "Visual Effects", - "name": "Anthony Brewster", - "original_name": "Anthony Brewster", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb94a93828e00a7648f52", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095928, - "known_for_department": "Visual Effects", - "name": "Nicolas Burmester", - "original_name": "Nicolas Burmester", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb950cf4b8b00e2d5d6c9", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095929, - "known_for_department": "Visual Effects", - "name": "Emma Cartwright", - "original_name": "Emma Cartwright", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb9570e29a200a6607b81", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095932, - "known_for_department": "Visual Effects", - "name": "Andrea Centeno", - "original_name": "Andrea Centeno", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb97e0e29a20133c3b277", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095933, - "known_for_department": "Visual Effects", - "name": "Max Chappell", - "original_name": "Max Chappell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb984e323f300e5249c39", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095934, - "known_for_department": "Visual Effects", - "name": "Tian Chen", - "original_name": "Tian Chen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb98c17497300a819760a", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095935, - "known_for_department": "Visual Effects", - "name": "Dimitrios Christakis", - "original_name": "Dimitrios Christakis", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb9b5e323f3014816ba17", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 4095936, - "known_for_department": "Visual Effects", - "name": "Katia Cisneros Angulo", - "original_name": "Katia Cisneros Angulo", - "popularity": 0.84, - "profile_path": null, - "credit_id": "647bb9c317497300a819761a", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095937, - "known_for_department": "Visual Effects", - "name": "Jesse Cnockaert", - "original_name": "Jesse Cnockaert", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb9d217497300c1327bb4", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095938, - "known_for_department": "Visual Effects", - "name": "André Coelho", - "original_name": "André Coelho", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb9facf4b8b0122761aec", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095939, - "known_for_department": "Visual Effects", - "name": "Jeanne Coritama", - "original_name": "Jeanne Coritama", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bba3093828e00dcdcd4e4", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095940, - "known_for_department": "Visual Effects", - "name": "Antonio Cortes", - "original_name": "Antonio Cortes", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bba4693828e013377c9e6", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095941, - "known_for_department": "Visual Effects", - "name": "Terry Dankowych", - "original_name": "Terry Dankowych", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bba56cf4b8b0122761b06", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4095943, - "known_for_department": "Visual Effects", - "name": "Eric De Carolis", - "original_name": "Eric De Carolis", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bba78caef2d0119bfbbfc", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095945, - "known_for_department": "Visual Effects", - "name": "Romain Digonnet", - "original_name": "Romain Digonnet", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bba9f93828e00dcdcd503", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095946, - "known_for_department": "Visual Effects", - "name": "Madison Erwin", - "original_name": "Madison Erwin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbab5cf4b8b0122761b27", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095947, - "known_for_department": "Visual Effects", - "name": "Siroj Eshboev", - "original_name": "Siroj Eshboev", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbabdcf4b8b00c3d24fed", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095948, - "known_for_department": "Visual Effects", - "name": "Naomi Fear", - "original_name": "Naomi Fear", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbac7e323f3014816ba54", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095949, - "known_for_department": "Visual Effects", - "name": "Vito Ferber", - "original_name": "Vito Ferber", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbad817497300c1327bee", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095950, - "known_for_department": "Visual Effects", - "name": "Andrea Ferrara", - "original_name": "Andrea Ferrara", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbae993828e00dcdcd524", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095951, - "known_for_department": "Visual Effects", - "name": "Bruno Carias Fogaca", - "original_name": "Bruno Carias Fogaca", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbafa0e29a200f981ec4e", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4095952, - "known_for_department": "Visual Effects", - "name": "Bohdan Frantsishko", - "original_name": "Bohdan Frantsishko", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbb07caef2d00df88a686", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4095953, - "known_for_department": "Visual Effects", - "name": "Ryusuke Furuya", - "original_name": "Ryusuke Furuya", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbb2f17497300de66720d", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095954, - "known_for_department": "Visual Effects", - "name": "Mariana Galvao Duque", - "original_name": "Mariana Galvao Duque", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbb41caef2d00c29a5120", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095955, - "known_for_department": "Visual Effects", - "name": "Lucia Guirado Rubio", - "original_name": "Lucia Guirado Rubio", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbb58174973013501769e", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095956, - "known_for_department": "Visual Effects", - "name": "Bruno Hamzagic", - "original_name": "Bruno Hamzagic", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbb8917497300fb3af546", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095957, - "known_for_department": "Visual Effects", - "name": "Edward Euiyoung Han", - "original_name": "Edward Euiyoung Han", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbb9a0e29a20133c3b318", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095958, - "known_for_department": "Visual Effects", - "name": "Victoria Hauser", - "original_name": "Victoria Hauser", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbbb10e29a20116ace5ab", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095959, - "known_for_department": "Visual Effects", - "name": "Daniel Hernandez Leyva", - "original_name": "Daniel Hernandez Leyva", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbbd80e29a20133c3b332", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095963, - "known_for_department": "Visual Effects", - "name": "Sangyeong Jeong", - "original_name": "Sangyeong Jeong", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc180e29a20116ace5d5", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095964, - "known_for_department": "Visual Effects", - "name": "Soh-I Jeong", - "original_name": "Soh-I Jeong", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc27e323f3012751c8ce", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095965, - "known_for_department": "Visual Effects", - "name": "Scott Johnson", - "original_name": "Scott Johnson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc360e29a20133c3b353", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095966, - "known_for_department": "Visual Effects", - "name": "Chelmin Joung", - "original_name": "Chelmin Joung", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc41caef2d01362b3339", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095967, - "known_for_department": "Visual Effects", - "name": "Xin Ju", - "original_name": "Xin Ju", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc47caef2d00fce5b687", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095968, - "known_for_department": "Visual Effects", - "name": "Tony Kantaphat", - "original_name": "Tony Kantaphat", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc5593828e00dcdcd59f", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095969, - "known_for_department": "Visual Effects", - "name": "Vallen Koscheev", - "original_name": "Vallen Koscheev", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc6b0e29a20133c3b369", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095970, - "known_for_department": "Visual Effects", - "name": "Christine Kwok", - "original_name": "Christine Kwok", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc7d93828e00dcdcd5af", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095971, - "known_for_department": "Visual Effects", - "name": "Saul Latorre Sebastian", - "original_name": "Saul Latorre Sebastian", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc85cf4b8b0122761bc0", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095973, - "known_for_department": "Visual Effects", - "name": "Sejin Lee", - "original_name": "Sejin Lee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbcc9cf4b8b00c3d25080", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 4095974, - "known_for_department": "Visual Effects", - "name": "Sophia Seung Hee Lee", - "original_name": "Sophia Seung Hee Lee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbce1cf4b8b00e2d5d794", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095975, - "known_for_department": "Visual Effects", - "name": "Yishen Li", - "original_name": "Yishen Li", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbce693828e013377caa3", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095976, - "known_for_department": "Visual Effects", - "name": "James Jian-Hua Lin", - "original_name": "James Jian-Hua Lin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbcfccaef2d0119bfbccc", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095977, - "known_for_department": "Visual Effects", - "name": "Joy Liu", - "original_name": "Joy Liu", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbd25cf4b8b01418f380a", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095978, - "known_for_department": "Visual Effects", - "name": "Michael Loeck", - "original_name": "Michael Loeck", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbd2ccf4b8b00a877ad51", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095979, - "known_for_department": "Visual Effects", - "name": "Remus Low", - "original_name": "Remus Low", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbd311749730118711139", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095980, - "known_for_department": "Visual Effects", - "name": "Kleber Macedo", - "original_name": "Kleber Macedo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbd4617497300c1327c84", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095981, - "known_for_department": "Visual Effects", - "name": "David MacKenzie", - "original_name": "David MacKenzie", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbd6bcf4b8b01031e6951", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 4095983, - "known_for_department": "Visual Effects", - "name": "Dan Mao", - "original_name": "Dan Mao", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbd8193828e00f9d76dac", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 4095984, - "known_for_department": "Visual Effects", - "name": "Felicia Rose Martin", - "original_name": "Felicia Rose Martin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbd95e323f3014816bb31", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095985, - "known_for_department": "Visual Effects", - "name": "Domitille Mellac", - "original_name": "Domitille Mellac", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbda6e323f300c42a15e7", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095986, - "known_for_department": "Visual Effects", - "name": "Nico Mendes", - "original_name": "Nico Mendes", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbdafe323f301061539ee", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095987, - "known_for_department": "Visual Effects", - "name": "Alex Olea", - "original_name": "Alex Olea", - "popularity": 0.609, - "profile_path": null, - "credit_id": "647bbe1c93828e0116248ace", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095988, - "known_for_department": "Visual Effects", - "name": "Diego Oliva Monardes", - "original_name": "Diego Oliva Monardes", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbe25caef2d00aa42ace1", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095990, - "known_for_department": "Visual Effects", - "name": "Guilherme Paiva", - "original_name": "Guilherme Paiva", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbe5ee323f300a7d5c089", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095991, - "known_for_department": "Visual Effects", - "name": "Eura Pancaldi", - "original_name": "Eura Pancaldi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbe6793828e013377cb08", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095992, - "known_for_department": "Visual Effects", - "name": "Vinayak Ambalal Pawar", - "original_name": "Vinayak Ambalal Pawar", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbe820e29a20116ace658", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4095993, - "known_for_department": "Visual Effects", - "name": "Ryan Pfeifenroth", - "original_name": "Ryan Pfeifenroth", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc08fe323f300e5249e16", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095994, - "known_for_department": "Visual Effects", - "name": "Tharitchonlathorn Sunny Pimpa", - "original_name": "Tharitchonlathorn Sunny Pimpa", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc0c8cf4b8b00a877ae24", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095995, - "known_for_department": "Visual Effects", - "name": "Rafael Polanczyk", - "original_name": "Rafael Polanczyk", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc0fecaef2d00aa42ad91", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4095996, - "known_for_department": "Visual Effects", - "name": "Fabrizio Prioletta", - "original_name": "Fabrizio Prioletta", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc10dcaef2d0119bfbdd8", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095997, - "known_for_department": "Visual Effects", - "name": "Leonardo Quert", - "original_name": "Leonardo Quert", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc11acf4b8b00a877ae36", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4095998, - "known_for_department": "Visual Effects", - "name": "Sinu Raghavan", - "original_name": "Sinu Raghavan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc122e323f3012751c9ed", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095999, - "known_for_department": "Visual Effects", - "name": "Omid Rajabalipour", - "original_name": "Omid Rajabalipour", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc135caef2d00aa42ada3", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096000, - "known_for_department": "Visual Effects", - "name": "Kirtikumar Rathod", - "original_name": "Kirtikumar Rathod", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc161caef2d00c29a529b", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096002, - "known_for_department": "Visual Effects", - "name": "William Robson", - "original_name": "William Robson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1800e29a200a6607d88", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096003, - "known_for_department": "Visual Effects", - "name": "Ereifeoluwa Santos", - "original_name": "Ereifeoluwa Santos", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1901749730135017814", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096004, - "known_for_department": "Visual Effects", - "name": "Cody Schiebelbein", - "original_name": "Cody Schiebelbein", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc197174973011871125f", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4096005, - "known_for_department": "Visual Effects", - "name": "Stalin Ranjith Selvanayagam", - "original_name": "Stalin Ranjith Selvanayagam", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1a317497300fb3af6d6", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096007, - "known_for_department": "Visual Effects", - "name": "Stone Shi", - "original_name": "Stone Shi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1aa0e29a200bf1f0218", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096008, - "known_for_department": "Visual Effects", - "name": "Rie Shibazaki", - "original_name": "Rie Shibazaki", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1afcaef2d0119bfbe0a", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096009, - "known_for_department": "Visual Effects", - "name": "Woo Youp Shim", - "original_name": "Woo Youp Shim", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1ba0e29a20116ace717", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096010, - "known_for_department": "Visual Effects", - "name": "Jia Loon Sim", - "original_name": "Jia Loon Sim", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1c093828e0116248bb2", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096012, - "known_for_department": "Visual Effects", - "name": "Eulrang Song", - "original_name": "Eulrang Song", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1c90e29a200f981ee01", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096013, - "known_for_department": "Visual Effects", - "name": "Joon Song", - "original_name": "Joon Song", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1cf0e29a200a6607d9f", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096014, - "known_for_department": "Visual Effects", - "name": "Yuka Sonoda", - "original_name": "Yuka Sonoda", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1da17497300de6673a6", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096015, - "known_for_department": "Visual Effects", - "name": "Julia Spurek", - "original_name": "Julia Spurek", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1e00e29a200f981ee12", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096016, - "known_for_department": "Visual Effects", - "name": "Scott Stribling", - "original_name": "Scott Stribling", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1f0e323f300c42a16e6", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096018, - "known_for_department": "Visual Effects", - "name": "Shyam Suresh", - "original_name": "Shyam Suresh", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc256caef2d00df88a869", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096019, - "known_for_department": "Visual Effects", - "name": "Tom Sutton", - "original_name": "Tom Sutton", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc26393828e013377cbf0", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4096021, - "known_for_department": "Visual Effects", - "name": "Li Wen Toh", - "original_name": "Li Wen Toh", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc27e93828e00dcdcd723", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096022, - "known_for_department": "Visual Effects", - "name": "Tad Topping", - "original_name": "Tad Topping", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc28693828e00a7649184", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096025, - "known_for_department": "Visual Effects", - "name": "Xavier Trudeau-Deschênes", - "original_name": "Xavier Trudeau-Deschênes", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc2b693828e00bf9e7b6e", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096026, - "known_for_department": "Visual Effects", - "name": "Joana Ullan Vieira", - "original_name": "Joana Ullan Vieira", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc2c00e29a20116ace76a", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096028, - "known_for_department": "Visual Effects", - "name": "Billy Ward", - "original_name": "Billy Ward", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc2d517497301187112c0", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4096029, - "known_for_department": "Visual Effects", - "name": "JP Welsh", - "original_name": "JP Welsh", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc2f793828e0116248c22", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096030, - "known_for_department": "Visual Effects", - "name": "Mikey Wong", - "original_name": "Mikey Wong", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc31ce323f30106153b3c", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096031, - "known_for_department": "Visual Effects", - "name": "Syuan-Ru Wu", - "original_name": "Syuan-Ru Wu", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc325caef2d0119bfbe7b", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4096032, - "known_for_department": "Visual Effects", - "name": "Joro Zahariev", - "original_name": "Joro Zahariev", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc332caef2d00aa42ae15", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096033, - "known_for_department": "Visual Effects", - "name": "Dylan Zhang", - "original_name": "Dylan Zhang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc33793828e00f9d76f25", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096034, - "known_for_department": "Visual Effects", - "name": "Chalermphol Wattanawongtrakool", - "original_name": "Chalermphol Wattanawongtrakool", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc348e323f300c42a1736", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096035, - "known_for_department": "Visual Effects", - "name": "Matthew Broughton", - "original_name": "Matthew Broughton", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc358cf4b8b01031e6a87", - "department": "Visual Effects", - "job": "Animation Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4096036, - "known_for_department": "Visual Effects", - "name": "Elizabeth Leilani David", - "original_name": "Elizabeth Leilani David", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc36ecf4b8b01418f3975", - "department": "Visual Effects", - "job": "Animation Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4096037, - "known_for_department": "Visual Effects", - "name": "Clayton Goldhawk", - "original_name": "Clayton Goldhawk", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc373e323f3014816bca9", - "department": "Visual Effects", - "job": "Animation Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4096038, - "known_for_department": "Visual Effects", - "name": "Davin Hun", - "original_name": "Davin Hun", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc3830e29a200a6607e0e", - "department": "Visual Effects", - "job": "Animation Coordinator" - }, - { - "adult": false, - "gender": 1, - "id": 4096039, - "known_for_department": "Visual Effects", - "name": "Karen Teoh", - "original_name": "Karen Teoh", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc3a393828e00dcdcd76e", - "department": "Visual Effects", - "job": "Animation Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4096040, - "known_for_department": "Visual Effects", - "name": "Emma Tooth", - "original_name": "Emma Tooth", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc3bacf4b8b00c3d25223", - "department": "Visual Effects", - "job": "Animation Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4096041, - "known_for_department": "Visual Effects", - "name": "Stacey Ward", - "original_name": "Stacey Ward", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc3bfcaef2d01362b351d", - "department": "Visual Effects", - "job": "Animation Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4096042, - "known_for_department": "Production", - "name": "Carli Lynch", - "original_name": "Carli Lynch", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc404cf4b8b01418f399c", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4096043, - "known_for_department": "Production", - "name": "Sofia Hurtado", - "original_name": "Sofia Hurtado", - "popularity": 1.4, - "profile_path": null, - "credit_id": "647bc409cf4b8b00c3d25240", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4096044, - "known_for_department": "Production", - "name": "Andrea Onukwubiri", - "original_name": "Andrea Onukwubiri", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc41517497300fb3af77b", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4096045, - "known_for_department": "Production", - "name": "Robert Jonker", - "original_name": "Robert Jonker", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc43793828e0116248c78", - "department": "Production", - "job": "Production Accountant" - }, - { - "adult": false, - "gender": 0, - "id": 4096046, - "known_for_department": "Production", - "name": "Darius Cornea", - "original_name": "Darius Cornea", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc42b0e29a20116ace7c8", - "department": "Production", - "job": "Production Accountant" - }, - { - "adult": false, - "gender": 0, - "id": 4096047, - "known_for_department": "Production", - "name": "Paige Minana", - "original_name": "Paige Minana", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc440caef2d00c29a5332", - "department": "Production", - "job": "Production Accountant" - }, - { - "adult": false, - "gender": 0, - "id": 4096048, - "known_for_department": "Production", - "name": "Jejo Sleeper", - "original_name": "Jejo Sleeper", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc44c93828e00bf9e7bd7", - "department": "Production", - "job": "Production Accountant" - }, - { - "adult": false, - "gender": 0, - "id": 4096049, - "known_for_department": "Production", - "name": "Camila Demarchi", - "original_name": "Camila Demarchi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc478e323f300c42a17a1", - "department": "Production", - "job": "Production Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 4096050, - "known_for_department": "Production", - "name": "Joere Estremadura", - "original_name": "Joere Estremadura", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc47f0e29a200dcbb0cd9", - "department": "Production", - "job": "Production Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 4096051, - "known_for_department": "Production", - "name": "Angie K. Farella", - "original_name": "Angie K. Farella", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc48717497300de66742c", - "department": "Production", - "job": "Production Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 4096052, - "known_for_department": "Production", - "name": "Kaylee Yibing Hou", - "original_name": "Kaylee Yibing Hou", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc48d0e29a200bf1f02c9", - "department": "Production", - "job": "Production Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 4096053, - "known_for_department": "Production", - "name": "Roohi Kamal", - "original_name": "Roohi Kamal", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc493e323f300a7d5c1ce", - "department": "Production", - "job": "Production Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 4096054, - "known_for_department": "Production", - "name": "Katya Viglione", - "original_name": "Katya Viglione", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc49893828e013377cc7c", - "department": "Production", - "job": "Production Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 4096055, - "known_for_department": "Visual Effects", - "name": "Diego Polieri", - "original_name": "Diego Polieri", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc4c2caef2d01362b3563", - "department": "Visual Effects", - "job": "Animation Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 4096056, - "known_for_department": "Visual Effects", - "name": "Douglas de Azevedo", - "original_name": "Douglas de Azevedo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc4d7e323f300a7d5c1eb", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096057, - "known_for_department": "Visual Effects", - "name": "Daniel Cuervo Arevalo", - "original_name": "Daniel Cuervo Arevalo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc4dfcaef2d01362b3574", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096058, - "known_for_department": "Visual Effects", - "name": "Marcelo Fahd", - "original_name": "Marcelo Fahd", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc4e517497300c1327e68", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4096059, - "known_for_department": "Visual Effects", - "name": "Damian Fernandez Gomez", - "original_name": "Damian Fernandez Gomez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc4ec17497300c1327e74", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096060, - "known_for_department": "Visual Effects", - "name": "José Luis Rosado", - "original_name": "José Luis Rosado", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc51be323f300a7d5c1ff", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096061, - "known_for_department": "Visual Effects", - "name": "Rony Tores", - "original_name": "Rony Tores", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc53f0e29a20133c3b579", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096062, - "known_for_department": "Visual Effects", - "name": "Aaron Smith", - "original_name": "Aaron Smith", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc59017497300fb3af7eb", - "department": "Visual Effects", - "job": "Digital Compositor" - }, - { - "adult": false, - "gender": 0, - "id": 4096063, - "known_for_department": "Visual Effects", - "name": "Nico Piccirilli", - "original_name": "Nico Piccirilli", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc5970e29a200bf1f0311", - "department": "Visual Effects", - "job": "Digital Compositor" - }, - { - "adult": false, - "gender": 0, - "id": 4096064, - "known_for_department": "Visual Effects", - "name": "Fernando Bittar", - "original_name": "Fernando Bittar", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc5bae323f3012751cb12", - "department": "Visual Effects", - "job": "Animation Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 4096065, - "known_for_department": "Visual Effects", - "name": "Jenny Ko", - "original_name": "Jenny Ko", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc5c1e323f300a7d5c229", - "department": "Visual Effects", - "job": "Animation Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 4096066, - "known_for_department": "Art", - "name": "Danilo Rodrigues", - "original_name": "Danilo Rodrigues", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d852b6bf31f201cb6aa9b4", - "department": "Art", - "job": "Other" - }, - { - "adult": false, - "gender": 2, - "id": 4096067, - "known_for_department": "Art", - "name": "Morgan Schweitzer", - "original_name": "Morgan Schweitzer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d85294069f0e013b333d95", - "department": "Art", - "job": "Other" - }, - { - "adult": false, - "gender": 0, - "id": 4096068, - "known_for_department": "Visual Effects", - "name": "Alex Dingfelder", - "original_name": "Alex Dingfelder", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc5e4e323f3012751cb1f", - "department": "Visual Effects", - "job": "3D Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 4096068, - "known_for_department": "Visual Effects", - "name": "Alex Dingfelder", - "original_name": "Alex Dingfelder", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc5dee323f300c42a17fa", - "department": "Visual Effects", - "job": "2D Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 4096069, - "known_for_department": "Visual Effects", - "name": "Anton Thallner", - "original_name": "Anton Thallner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc6001749730135017918", - "department": "Visual Effects", - "job": "3D Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 4096069, - "known_for_department": "Visual Effects", - "name": "Anton Thallner", - "original_name": "Anton Thallner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc5facaef2d00fce5b877", - "department": "Visual Effects", - "job": "2D Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 4096070, - "known_for_department": "Visual Effects", - "name": "Tina Chao", - "original_name": "Tina Chao", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc60a17497300de66748b", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096071, - "known_for_department": "Visual Effects", - "name": "Matt Deans", - "original_name": "Matt Deans", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc60fcaef2d00c29a53a1", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096072, - "known_for_department": "Visual Effects", - "name": "Gilles Desmadrille", - "original_name": "Gilles Desmadrille", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc61693828e00bf9e7c51", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096073, - "known_for_department": "Visual Effects", - "name": "Santiago González", - "original_name": "Santiago González", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc621caef2d00df88a93c", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096073, - "known_for_department": "Visual Effects", - "name": "Santiago González", - "original_name": "Santiago González", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647be85ce323f300e524b51d", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 4096074, - "known_for_department": "Visual Effects", - "name": "Kien Hoang", - "original_name": "Kien Hoang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc62693828e00a764925d", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096075, - "known_for_department": "Visual Effects", - "name": "Wing Sze Lee", - "original_name": "Wing Sze Lee", - "popularity": 0.998, - "profile_path": null, - "credit_id": "647bc62ccf4b8b00e2d5d9a6", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096076, - "known_for_department": "Visual Effects", - "name": "Stephen Loveluck", - "original_name": "Stephen Loveluck", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc632e323f300a7d5c242", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096077, - "known_for_department": "Visual Effects", - "name": "Zac Miller", - "original_name": "Zac Miller", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc639caef2d0119bfbf3f", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096078, - "known_for_department": "Visual Effects", - "name": "Kyle Snider", - "original_name": "Kyle Snider", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc647caef2d00aa42aeba", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096079, - "known_for_department": "Visual Effects", - "name": "Hannah Sun", - "original_name": "Hannah Sun", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc64dcf4b8b00a877af51", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096080, - "known_for_department": "Visual Effects", - "name": "Chloe Tu", - "original_name": "Chloe Tu", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc65317497300de66749c", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096081, - "known_for_department": "Visual Effects", - "name": "Carlos Morán Villanueva", - "original_name": "Carlos Morán Villanueva", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc65acaef2d00df88a953", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096082, - "known_for_department": "Visual Effects", - "name": "Tinghe Yang", - "original_name": "Tinghe Yang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc6600e29a200a6607ed2", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 4096083, - "known_for_department": "Sound", - "name": "Cathryn Wang", - "original_name": "Cathryn Wang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc6cccaef2d0119bfbf69", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 4096084, - "known_for_department": "Sound", - "name": "Daniel McNamara", - "original_name": "Daniel McNamara", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc6fa0e29a200a6607f02", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 0, - "id": 4096085, - "known_for_department": "Sound", - "name": "Kai Scheer", - "original_name": "Kai Scheer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc72017497300de6674e8", - "department": "Sound", - "job": "Dialogue Editor" - }, - { - "adult": false, - "gender": 0, - "id": 4096085, - "known_for_department": "Sound", - "name": "Kai Scheer", - "original_name": "Kai Scheer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc733cf4b8b01418f3a5d", - "department": "Sound", - "job": "ADR Editor" - }, - { - "adult": false, - "gender": 0, - "id": 4096086, - "known_for_department": "Sound", - "name": "Ashley N. Rubay", - "original_name": "Ashley N. Rubay", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc75793828e013377cd3b", - "department": "Sound", - "job": "Assistant Sound Editor" - }, - { - "adult": false, - "gender": 2, - "id": 4096089, - "known_for_department": "Visual Effects", - "name": "Preston Mutanga", - "original_name": "Preston Mutanga", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc87d0e29a20116ace8d9", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 4096097, - "known_for_department": "Production", - "name": "Crystal Vilaikeo", - "original_name": "Crystal Vilaikeo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc8fd17497300fb3af8c9", - "department": "Production", - "job": "Finishing Producer" - }, - { - "adult": false, - "gender": 2, - "id": 4096098, - "known_for_department": "Visual Effects", - "name": "Christopher Perez", - "original_name": "Christopher Perez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc93593828e013377cdad", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 4096187, - "known_for_department": "Crew", - "name": "Laura Price", - "original_name": "Laura Price", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647be73193828e00dcdcf024", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 1, - "id": 4096192, - "known_for_department": "Crew", - "name": "Margaret Harris", - "original_name": "Margaret Harris", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647be8f0cf4b8b00c3d269a2", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 4097955, - "known_for_department": "Visual Effects", - "name": "David Jaraiz Sanchez", - "original_name": "David Jaraiz Sanchez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e661d93828e00f9d8a5b5", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4097957, - "known_for_department": "Visual Effects", - "name": "Alyssa Zarate", - "original_name": "Alyssa Zarate", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e66410e29a22be1f0be1b", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098924, - "known_for_department": "Visual Effects", - "name": "Shinya Ishii", - "original_name": "Shinya Ishii", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a14549dda00ffa4fd6a", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4098925, - "known_for_department": "Visual Effects", - "name": "Guillaume Fuentes", - "original_name": "Guillaume Fuentes", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d139fc945d3600c573985c", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4098926, - "known_for_department": "Visual Effects", - "name": "Yeaji Jessie Lee", - "original_name": "Yeaji Jessie Lee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a4bd9f4a603b6c9ab10", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4098928, - "known_for_department": "Visual Effects", - "name": "David Vidal Pedroza", - "original_name": "David Vidal Pedroza", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13ab0549dda013933c2a7", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4098931, - "known_for_department": "Visual Effects", - "name": "Yu-Cheng Huang", - "original_name": "Yu-Cheng Huang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d139b785090f00c87e18d6", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4098944, - "known_for_department": "Visual Effects", - "name": "Jay Cassidy", - "original_name": "Jay Cassidy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e659593828e00dcde0ddc", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098947, - "known_for_department": "Visual Effects", - "name": "Wiley Collinson", - "original_name": "Wiley Collinson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e659bcf4b8b00c3d36d17", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098948, - "known_for_department": "Visual Effects", - "name": "Wellington Douglas Duarte", - "original_name": "Wellington Douglas Duarte", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e65a20fb39800fb0ccfad", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098949, - "known_for_department": "Visual Effects", - "name": "Mindy Ha", - "original_name": "Mindy Ha", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e65a7cf4b8b00e2d6f268", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098952, - "known_for_department": "Visual Effects", - "name": "Timothy Hoh", - "original_name": "Timothy Hoh", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e65b01749730135029692", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098957, - "known_for_department": "Visual Effects", - "name": "Minkyoung Kim", - "original_name": "Minkyoung Kim", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e65e9cf4b8b00a878c55d", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098958, - "known_for_department": "Visual Effects", - "name": "Laurie Kindiak", - "original_name": "Laurie Kindiak", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e65efccde0401355c0c7e", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098960, - "known_for_department": "Visual Effects", - "name": "Isaac Miranda Rosas", - "original_name": "Isaac Miranda Rosas", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e660b17497300c1339c0a", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098962, - "known_for_department": "Visual Effects", - "name": "Derek Moorhouse", - "original_name": "Derek Moorhouse", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e661193828e00bf9fa5fd", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098963, - "known_for_department": "Visual Effects", - "name": "Tracy Munch", - "original_name": "Tracy Munch", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e6617cf4b8b01031f7f49", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098964, - "known_for_department": "Visual Effects", - "name": "Alixandriya Schafer", - "original_name": "Alixandriya Schafer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e662b0e29a22be1f0be15", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098965, - "known_for_department": "Visual Effects", - "name": "Nina Vazquez", - "original_name": "Nina Vazquez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e66320e29a22be29378f6", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 2, - "id": 4098966, - "known_for_department": "Production", - "name": "Ethan Duffy", - "original_name": "Ethan Duffy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e669f0fb39800fb0ccfe3", - "department": "Production", - "job": "Producer's Assistant" - }, - { - "adult": false, - "gender": 2, - "id": 4098967, - "known_for_department": "Production", - "name": "Griffin Johnston", - "original_name": "Griffin Johnston", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e66d417497300c1339c39", - "department": "Production", - "job": "Producer's Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 4098968, - "known_for_department": "Production", - "name": "J. Wheeler White", - "original_name": "J. Wheeler White", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e66e6ccde0400fbceb2f1", - "department": "Production", - "job": "Producer's Assistant" - }, - { - "adult": false, - "gender": 2, - "id": 4098976, - "known_for_department": "Crew", - "name": "Thomas H. Core", - "original_name": "Thomas H. Core", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e67f6caef2d01362c6812", - "department": "Crew", - "job": "Digital Producer" - }, - { - "adult": false, - "gender": 0, - "id": 4104879, - "known_for_department": "Visual Effects", - "name": "Kelly Christophers", - "original_name": "Kelly Christophers", - "popularity": 0.656, - "profile_path": null, - "credit_id": "64839e6cbf31f25055a046cb", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 4104880, - "known_for_department": "Visual Effects", - "name": "Thomas Cosolito", - "original_name": "Thomas Cosolito", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839e71e272600128795313", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 4104881, - "known_for_department": "Visual Effects", - "name": "Megan Deane", - "original_name": "Megan Deane", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839e78e2726000c9301034", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 4104882, - "known_for_department": "Visual Effects", - "name": "Stefano Di Noia", - "original_name": "Stefano Di Noia", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839e88c9dbf9011dfb74d0", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 4104883, - "known_for_department": "Visual Effects", - "name": "Bumjun Jeremy Kim", - "original_name": "Bumjun Jeremy Kim", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839ecd99259c01392ab6a0", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 4104884, - "known_for_department": "Visual Effects", - "name": "Jason Koh", - "original_name": "Jason Koh", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839ee6bf31f250569af032", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 4104885, - "known_for_department": "Visual Effects", - "name": "Sophie Marfleet", - "original_name": "Sophie Marfleet", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f1099259c00accc2367", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 4104886, - "known_for_department": "Visual Effects", - "name": "Miriam Melzi", - "original_name": "Miriam Melzi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f28e375c000ff47e8ec", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 4104887, - "known_for_department": "Visual Effects", - "name": "Pepe Orozco", - "original_name": "Pepe Orozco", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f38c9dbf9013a0612aa", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 4104889, - "known_for_department": "Visual Effects", - "name": "Anil Verma", - "original_name": "Anil Verma", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839fa4e375c000c5271532", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 4104977, - "known_for_department": "Art", - "name": "Jon Measures", - "original_name": "Jon Measures", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483aea5e375c000ff47ed2e", - "department": "Art", - "job": "Other" - }, - { - "adult": false, - "gender": 0, - "id": 4108154, - "known_for_department": "Lighting", - "name": "Sagar Alodiya", - "original_name": "Sagar Alodiya", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6486fc8599259c00accdcdbf", - "department": "Lighting", - "job": "Lighting Artist" - }, - { - "adult": false, - "gender": 0, - "id": 4108154, - "known_for_department": "Lighting", - "name": "Sagar Alodiya", - "original_name": "Sagar Alodiya", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6486fc8ae375c000acc66a64", - "department": "Visual Effects", - "job": "Compositing Artist" - }, - { - "adult": false, - "gender": 0, - "id": 4109312, - "known_for_department": "Sound", - "name": "Shae Jacobs", - "original_name": "Shae Jacobs", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64883f1a6f8d9500afde6454", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109315, - "known_for_department": "Sound", - "name": "Ayra Starr", - "original_name": "Ayra Starr", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64883fbde375c000ff4a0c5a", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109317, - "known_for_department": "Sound", - "name": "Zozi", - "original_name": "Zozi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64884003d2b209014e0ac6d0", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109318, - "known_for_department": "Sound", - "name": "EI8HT", - "original_name": "EI8HT", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648840136f8d9500c88b2a4d", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109323, - "known_for_department": "Sound", - "name": "Huey Coyote", - "original_name": "Huey Coyote", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648840f7e2726000c932243d", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109324, - "known_for_department": "Sound", - "name": "Big Boss Vette", - "original_name": "Big Boss Vette", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64884101e375c000c5298346", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109325, - "known_for_department": "Sound", - "name": "Omah Lay", - "original_name": "Omah Lay", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64884106e2726000c9322452", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109327, - "known_for_department": "Sound", - "name": "Johnny Goldstein", - "original_name": "Johnny Goldstein", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6488411f6f8d9500e500a782", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109328, - "known_for_department": "Sound", - "name": "Badal", - "original_name": "Badal", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6488412c99259c00e2f6a5b8", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109329, - "known_for_department": "Sound", - "name": "Tech Panda", - "original_name": "Tech Panda", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64884131d2b209014e0ac77f", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109330, - "known_for_department": "Sound", - "name": "Kenzani", - "original_name": "Kenzani", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64884136bf31f25055a28fd1", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109333, - "known_for_department": "Sound", - "name": "Mora", - "original_name": "Mora", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648841a599259c00ff105c65", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109336, - "known_for_department": "Sound", - "name": "NAV", - "original_name": "NAV", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648841ee99259c011c41d241", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109337, - "known_for_department": "Sound", - "name": "Robert Harris", - "original_name": "Robert Harris", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64884239e375c00139c1c66a", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109338, - "known_for_department": "Sound", - "name": "Nija", - "original_name": "Nija", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6488423ed2b20900ad3e0b03", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109340, - "known_for_department": "Sound", - "name": "Roisee", - "original_name": "Roisee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648842766f8d95013c74678e", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4202801, - "known_for_department": "Visual Effects", - "name": "Kellie Bricen", - "original_name": "Kellie Bricen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d139c74d679100e24169b6", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202802, - "known_for_department": "Visual Effects", - "name": "Mikaela Bantog", - "original_name": "Mikaela Bantog", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d139ce6d4c9700cb7ee4ee", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202804, - "known_for_department": "Visual Effects", - "name": "Trey Black", - "original_name": "Trey Black", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d139d44d679100e24169c4", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202805, - "known_for_department": "Visual Effects", - "name": "Luis Paulo Carvalho", - "original_name": "Luis Paulo Carvalho", - "popularity": 1.018, - "profile_path": null, - "credit_id": "64d139db549dda013933c24f", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202807, - "known_for_department": "Visual Effects", - "name": "Cemre Esen", - "original_name": "Cemre Esen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d139f6549dda00ffa4fd60", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202809, - "known_for_department": "Visual Effects", - "name": "Sehyun Jacob Jang", - "original_name": "Sehyun Jacob Jang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a23d9f4a603bafb8189", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202811, - "known_for_department": "Visual Effects", - "name": "Chanhyung Jung", - "original_name": "Chanhyung Jung", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a3a4d6791011c188a12", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202812, - "known_for_department": "Visual Effects", - "name": "Eunjung Lee", - "original_name": "Eunjung Lee", - "popularity": 0.656, - "profile_path": null, - "credit_id": "64d13a446d4c97014f433e12", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202813, - "known_for_department": "Visual Effects", - "name": "Mark Jeong Woong Lee", - "original_name": "Mark Jeong Woong Lee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a5f85090f00c87e191f", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202814, - "known_for_department": "Visual Effects", - "name": "Kevin Liu", - "original_name": "Kevin Liu", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a6a85090f00ae847be7", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202815, - "known_for_department": "Visual Effects", - "name": "Czar Ryan Pellano Ompad", - "original_name": "Czar Ryan Pellano Ompad", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a83d8d329011e74bb64", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202817, - "known_for_department": "Visual Effects", - "name": "Dongick David Sheen", - "original_name": "Dongick David Sheen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a896d4c9700ec58a979", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202818, - "known_for_department": "Visual Effects", - "name": "Ryan Saper", - "original_name": "Ryan Saper", - "popularity": 0.659, - "profile_path": null, - "credit_id": "64d13a904d679100e2416a21", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202819, - "known_for_department": "Visual Effects", - "name": "Insun Ryu", - "original_name": "Insun Ryu", - "popularity": 0.656, - "profile_path": null, - "credit_id": "64d13a97549dda011c29152b", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202821, - "known_for_department": "Visual Effects", - "name": "Spencer Stevens", - "original_name": "Spencer Stevens", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a9e85090f01069282d7", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202822, - "known_for_department": "Visual Effects", - "name": "Laura Tabara-Mardan", - "original_name": "Laura Tabara-Mardan", - "popularity": 0.84, - "profile_path": null, - "credit_id": "64d13aa44d679100c52d439e", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 2, - "id": 4202823, - "known_for_department": "Visual Effects", - "name": "René Völker", - "original_name": "René Völker", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13ac64d679100ff68d95b", - "department": "Visual Effects", - "job": "Modeling" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Behind the Scenes With Oscar Isaac", - "key": "Pm3lA3DKMGE", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-09-19T22:00:11.000Z", - "id": "650b53a8cadb6b01387cfdf5" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Creating Pavitr Prabhakar", - "key": "Sj6iQeV33gs", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-09-04T22:00:22.000Z", - "id": "64fc5f5fdb4ed61033a04455" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Unpacking the Multiverse", - "key": "iPsFD9KPjzA", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-08-29T22:00:32.000Z", - "id": "64f057a64b0c63013801216b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Issa Rae as Jessica Drew", - "key": "khrpOifASZ0", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-08-24T16:00:37.000Z", - "id": "64e811a6c613ce00eaa88750" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Live Your Truth", - "key": "LYtS6yKsOEQ", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-21T22:00:10.000Z", - "id": "64e40ec51feac100c46bec31" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "True Spider-Man Fans ft. Stan Verrett & George Kittle (ESPN)", - "key": "C0vxF1BJ4uw", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-08-14T19:00:06.000Z", - "id": "64dcc13fd100b614b3ffbe0b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Extended Preview", - "key": "of-fPvDLsVE", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-08-08T16:00:41.000Z", - "id": "64d2b50703726400fffc07ae" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Watch Now on Digital", - "key": "xc_j6Hpj0YM", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-08T04:00:34.000Z", - "id": "64d3024ddb4ed600ad2366c0" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Special Features Preview", - "key": "56aoS2EP_Kw", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-08-01T14:00:03.000Z", - "id": "64c996720b74e9014d7fa8ec" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Voice Cast Dubs Trailer", - "key": "46spiINi3o0", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-16T16:00:03.000Z", - "id": "648cb311263462012d49707b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "In Theaters Now", - "key": "WCY2fxj5ll4", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-12T22:00:24.000Z", - "id": "64902fa5c2ff3d011cba91a8" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Clip - Meet Jessica Drew", - "key": "Yxaw1otUuUI", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-06-08T18:00:29.000Z", - "id": "648238dcd2b209014e07bac6" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "IMAX® Interview | Joaquim Dos Santos", - "key": "sG2vTyLpzQo", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-07T00:51:25.000Z", - "id": "64b001f0c4904800c506ea1d" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"Annihilate\" by Metro Boomin x Swae Lee x Lil Wayne x Offset", - "key": "EbHhQfTvMSA", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-06T23:04:27.000Z", - "id": "648248a399259c00e2f3a5a2" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"The best Spider-Man film ever made\" is also the #1 Movie in the World!", - "key": "KVx-SObsNIM", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-05T03:09:57.000Z", - "id": "64810a4f99259c00accad26a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 19", - "key": "DYbqiqTXhbc", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-05T02:30:10.000Z", - "id": "64810a49d2b20900ca1d1539" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 18", - "key": "DocPgQ95IHY", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-05T00:30:07.000Z", - "id": "64810a36e375c00139be5775" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "SECRETS REVEALED! Shameik Moore, Hailee Steinfeld & Daniel Kaluuya", - "key": "as0VuHCf79M", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-03T11:01:03.000Z", - "id": "647daaac17497300c1335d17" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Pushing Past the Limits Vignette", - "key": "Tnb9dUA9pIo", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-02T09:55:34.000Z", - "id": "647c3621caef2d00aa42f0e4" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Cast Unboxing", - "key": "6tYqhRYUu4Y", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-01T21:30:02.000Z", - "id": "647ae74de323f30127517c8b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Point :06", - "key": "r1sob-B7rNQ", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-01T14:45:12.000Z", - "id": "6479b5b4e323f300e523c613" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Join :15", - "key": "-IpM3YOlpJE", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-01T14:45:12.000Z", - "id": "6479b627e323f300e523c645" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Masterpiece :15", - "key": "O4r2fdAWI6Y", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-01T14:45:12.000Z", - "id": "6479b6d30e29a200f980ffd1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Let's Go :15", - "key": "D9ObYKAPlEo", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-01T14:45:12.000Z", - "id": "6479b719e323f300c42940dd" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Spider Zoo :15", - "key": "SEYKogEkO2c", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-01T14:45:11.000Z", - "id": "6479b66993828e011623a73e" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Everything :06", - "key": "NtbkjfvjxV0", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-01T14:45:11.000Z", - "id": "6479b6bee323f3012750e549" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Society :06", - "key": "axQMNL8e8pg", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-01T14:45:11.000Z", - "id": "6479b7440e29a20133c2cd72" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Say It :15", - "key": "tPkjZZ7BsAU", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-01T14:45:11.000Z", - "id": "6479b7731749730135009f07" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Extraordinary :15", - "key": "v4XG6rdT58Y", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-01T14:45:11.000Z", - "id": "6479b7bccaef2d00aa41d8b3" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Greatest :15", - "key": "dMNeoggTZRY", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-01T14:45:11.000Z", - "id": "6479b7dccaef2d00aa41d8bc" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"Calling\" by Metro Boomin x Nav x A Boogie with Swae Lee", - "key": "mh-KncHB6F4", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-31T22:45:02.000Z", - "id": "648248c599259c00ff0d485b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Across the Spider-Verse cast members discuss it all | How It Happened: Across the Spider-Verse", - "key": "XHLrJSqZd48", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-31T15:59:41.000Z", - "id": "6479b39a17497300c1319ec2" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 17", - "key": "m5WgYVNiO1g", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-31T01:00:29.000Z", - "id": "647c002d17497300c132a5a5" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 16", - "key": "NplDtSWMZqs", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-31T00:30:06.000Z", - "id": "647c001c0e29a200f98216a3" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 15", - "key": "ocu84jAOUnQ", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-31T00:00:19.000Z", - "id": "647c001693828e013377f732" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 14", - "key": "PiRQKcD5EJg", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-30T23:30:03.000Z", - "id": "647c0010e323f3010615633a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 13", - "key": "rdyoLs85dO0", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-30T23:00:30.000Z", - "id": "647c00011749730118713e70" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "PlayStation Exclusive Clip", - "key": "vUyC3ohm1pI", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-05-30T16:00:41.000Z", - "id": "64765537255dba014a075f37" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Spider-Center ft. Ashley Brewer & George Kittle (ESPN)", - "key": "fJjTCHqS2TE", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-25T19:53:22.000Z", - "id": "6471f0459408ec00a7fa3ea4" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Spider-Stan ft. Stan Verrett (ESPN)", - "key": "h-TE0A_xDxw", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-25T19:49:24.000Z", - "id": "6471f065a199a60116c6e9ef" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Hanging With Gwen", - "key": "JDr9U-Fyuqo", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-05-23T11:00:18.000Z", - "id": "647c35e8cf4b8b01418f7f07" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Clip - Stop Spider-Man", - "key": "GPitD0-mkYA", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-05-22T21:01:15.000Z", - "id": "646be75733a3760158db026c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Blue Panther", - "key": "RGMKe3Zbo98", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-22T18:29:16.000Z", - "id": "6472c8a195665800debac6ad" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Trailer - \"Stronger\"", - "key": "yFrxzaBLDQM", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-05-19T23:42:01.000Z", - "id": "64682c38c3514c013a5557c8" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Self Love Song Teaser", - "key": "Jb7weNjC2k4", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-19T22:13:59.000Z", - "id": "6468696f33a37600e67a44d1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "New Guy", - "key": "XGayDJEqbQA", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-18T17:16:10.000Z", - "id": "64666ceb006b010189577f76" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Funny Kids", - "key": "_AaUrQKBuhU", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-18T16:49:51.000Z", - "id": "6472b319a199a600a7564708" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Grounded", - "key": "xDwgLEXO6w0", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-18T16:49:20.000Z", - "id": "6472b3129ae61300e5945737" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Different Sides", - "key": "zRBNWipKHb4", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-18T16:48:40.000Z", - "id": "6472b304a199a600dc4c7d1b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Sacrifice My Bad", - "key": "pREAYWiHGyQ", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-18T16:48:02.000Z", - "id": "6472b2fe9408ec00a7fa88cc" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Clip - Gwen & Miles", - "key": "MokxwHbscQ8", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-05-17T17:00:13.000Z", - "id": "64650b5ed05a0300fc2190b5" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Character Reveal: Pavitr Prabhakar", - "key": "nVaAQhSZQpc", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-17T13:44:59.000Z", - "id": "6479b48e17497300de6591d4" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Character Reveal: Jessica Drew", - "key": "wt5HZ7CXCFM", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-17T13:44:09.000Z", - "id": "6479b4a3caef2d00df87c349" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Character Reveal: Spider-Punk", - "key": "qtEjwTAkLl8", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-17T13:43:45.000Z", - "id": "6479b4b7caef2d00c2996ea0" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Clip - \"Missing Class\"", - "key": "QJLg2cS-Zsw", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-05-16T16:00:14.000Z", - "id": "64644d7d9f37b000e2a9eb46" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 12", - "key": "Siq1MNKJDG8", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-15T08:30:06.000Z", - "id": "64668fd42bcf6700e3b98243" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 11", - "key": "P9yp6z_5W9g", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-15T07:30:08.000Z", - "id": "64668fd0d18572010196cb4b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 10", - "key": "rjiyRxTIZHQ", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-15T06:30:14.000Z", - "id": "64668fcb006b01018957881a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 9", - "key": "EI0NTMdUVBE", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-15T05:30:03.000Z", - "id": "64668fc733a3760158d89ea8" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 8", - "key": "WRI9KGrRKLI", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-15T04:30:15.000Z", - "id": "64668fc233a376013b3cf6c2" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 7", - "key": "qcPgdj1sjNg", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-15T03:30:27.000Z", - "id": "64668fbe006b010105891580" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 6", - "key": "CO9eqvuaaG0", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-15T02:30:07.000Z", - "id": "64668fb9a5046e012466c52a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 5", - "key": "JMI28YKqOUo", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-15T01:30:12.000Z", - "id": "64668fb0c3514c015778db0b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 4", - "key": "NhAS_-IRj2s", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-15T00:30:15.000Z", - "id": "64668faba5046e01474be320" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 3", - "key": "pBtymkdElK0", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-14T13:30:30.000Z", - "id": "64668fa72bcf6700fe5f275c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 2", - "key": "ltrOzSBlSuE", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-14T11:30:20.000Z", - "id": "64668fa2d1857200e5a2fcff" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 1", - "key": "bOvIS6ayNvE", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-14T09:30:15.000Z", - "id": "64668f9d2bcf670138938383" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "International Trailer", - "key": "Etv-L2JKCWk", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-05-11T16:28:25.000Z", - "id": "645fd0d28c44b900fc9075a0" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Legacy 30\"", - "key": "XFZJ3pHK5Vk", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-04T11:24:13.000Z", - "id": "6453a99ad8f44e0db071c332" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Welcome 30\"", - "key": "bk0ck-g_rPk", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-04T11:23:06.000Z", - "id": "6453a9d033ad8f01728e1b26" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer #2", - "key": "shW9i6k8cB0", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-04-04T07:01:03.000Z", - "id": "642bcfc18de0ae00978e9220" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Spider-Verse will never be the same. New trailer arrives April 4.", - "key": "cfUpAOknDRI", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-04-02T20:00:08.000Z", - "id": "6434725060c75100f2f0bbff" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "cqGjhVJWtEg", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2022-12-13T13:59:17.000Z", - "id": "639896c579b3d40091288974" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "First Look", - "key": "BbXJ3_AQE_o", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2021-12-05T00:46:56.000Z", - "id": "61ac0d26596a91006103cdce" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/4HodYYKEIsGOdinkGi2Ucz6X9i0.jpg", - "vote_average": 5.694, - "vote_count": 34, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/9xfDWXAUbFXQK585JvByT5pEAhe.jpg", - "vote_average": 5.458, - "vote_count": 19, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/kVd3a9YeLGkoeR50jGEXM6EqseS.jpg", - "vote_average": 5.456, - "vote_count": 5, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/nGxUxi3PfXDRm7Vg95VBNgNM8yc.jpg", - "vote_average": 5.39, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1710, - "iso_639_1": null, - "file_path": "/kGWpZewzInbzTuaIHcy0bFgzXuM.jpg", - "vote_average": 5.358, - "vote_count": 25, - "width": 3040 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/yweju3H52GA1PTZ2yOd3xXP5B3a.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/jS4z8y70ESrZwmFJubqYuceFtnX.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/dpLW2h6uCyLJlENeFNOWYH5UrLk.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/s8hIt7qZOPR1gKtZzfAneEEr8pb.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/rxav3SDsDRzRs4ait1lI6OIrJBH.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/hbAG0I3l9CxmljXsIU8Lyb7hQKJ.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/fmNeiPNzjUbN2FY0d4Q9GnfyHsp.jpg", - "vote_average": 5.206, - "vote_count": 9, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/rsaSxTYH85f7JJmbDv0wz7CIOes.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/xOY2tKrep2ikGJsdRWyzbfLbjsX.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1600, - "iso_639_1": null, - "file_path": "/1V9FWhPSKolSBOO05IInfypX7nQ.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2845 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/gwE7DBdhm565GmXp0WiplxseiLv.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/fkGsStbewBRNIAAZJjDWFHpnU9I.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/7Y8qI6AD15kgMYgu50dpEInojrn.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1890, - "iso_639_1": null, - "file_path": "/2ZSiEMjzermEeGwqlAIrUOU1mxF.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 3360 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/n0ViSXCxEZp8TKHw6MRouu9hNOx.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/1cBpLF7a3M9q0HsUGSS9PuosGnA.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/bn31E14V4OlaQyqZ61CTeKJjryH.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/lV2AwZkm6IuDUkDgiDsBY9rloZY.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/bpvjzk0QXbJPV4wVwrHuYiq1TbP.jpg", - "vote_average": 5.158, - "vote_count": 27, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/e59QkHTueqRelzq0thn5deCEKIG.jpg", - "vote_average": 5.146, - "vote_count": 10, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 1955, - "iso_639_1": null, - "file_path": "/tQ0GkuDFx9uswFlFdwlf6U5UcNx.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 3475 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/n3tyH0YZ2QUHxj0HnwjX1fR1QkF.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/3igTCivZPVaR8SaZYKUf3w3V2U.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1920 - }, - { - "aspect_ratio": 1.779, - "height": 1727, - "iso_639_1": null, - "file_path": "/2I5eBh98Q4aPq8WdQrHdTC8ARhY.jpg", - "vote_average": 5.092, - "vote_count": 35, - "width": 3072 - }, - { - "aspect_ratio": 1.779, - "height": 858, - "iso_639_1": null, - "file_path": "/83LKt8MyNKWr7drBKMi19fOVSdm.jpg", - "vote_average": 5.022, - "vote_count": 10, - "width": 1526 - }, - { - "aspect_ratio": 1.778, - "height": 1715, - "iso_639_1": null, - "file_path": "/dlebyCnmdwXtJfHNicBYhudz5EJ.jpg", - "vote_average": 5.006, - "vote_count": 17, - "width": 3050 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/agdJmmvf4Raxpa93MpgcRyFbQLI.jpg", - "vote_average": 4.996, - "vote_count": 6, - "width": 1920 - }, - { - "aspect_ratio": 1.779, - "height": 1058, - "iso_639_1": "en", - "file_path": "/ppehJ5HlIcqFpH9erwjwFGKdIoe.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 1882 - }, - { - "aspect_ratio": 1.778, - "height": 1152, - "iso_639_1": null, - "file_path": "/fWGU477PmUiR7Od2IEnHuRQaHia.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2048 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/2PBNaTUb7U5rWLtHmrSn1qbjRJT.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/clAVSS8aJZYblELE4GA2tuJXYWT.jpg", - "vote_average": 4.954, - "vote_count": 9, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/1kTSDu4AkudOIWT2RssOyTHj6YU.jpg", - "vote_average": 4.922, - "vote_count": 5, - "width": 1920 - }, - { - "aspect_ratio": 1.777, - "height": 1716, - "iso_639_1": null, - "file_path": "/p4PbmHbGmCVuTSF6Q3auZheXcm9.jpg", - "vote_average": 4.914, - "vote_count": 12, - "width": 3050 - }, - { - "aspect_ratio": 1.777, - "height": 1716, - "iso_639_1": null, - "file_path": "/i3fnrJR5SOLqropUaByIv9fvlMK.jpg", - "vote_average": 4.914, - "vote_count": 12, - "width": 3050 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/7NWErODhjx5paVGRaLCCdromrUo.jpg", - "vote_average": 4.898, - "vote_count": 10, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": null, - "file_path": "/jo4JPyA8dvvnKwBRpi2A5fKK5fs.jpg", - "vote_average": 4.882, - "vote_count": 8, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 856, - "iso_639_1": null, - "file_path": "/6j6HpKRZKw0RP7bRX5Q45qaWsAX.jpg", - "vote_average": 4.882, - "vote_count": 8, - "width": 1522 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/82cxEifGLr7YTNcc0DNV0ya7Osq.jpg", - "vote_average": 4.846, - "vote_count": 11, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 1716, - "iso_639_1": null, - "file_path": "/i3jzXfc198W9bHgZbqY6IBaNS3l.jpg", - "vote_average": 4.828, - "vote_count": 16, - "width": 3050 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "pl", - "file_path": "/1WiMCZ5SkPdPZmS0y48rCLsUmER.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.776, - "height": 1153, - "iso_639_1": "en", - "file_path": "/jQPIFEimFj9n1zOtCif39UeF8E1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2048 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/1xPzrPJlIZZdBsIdwrEhZw2wvgQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 920, - "iso_639_1": "es", - "file_path": "/dqW4XklqnMOopW9MMmT2lmLN3dT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1636 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/8ywMH1NX0Wu2I5Xx70A7HreMctw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 920, - "iso_639_1": "es", - "file_path": "/we79KBJ3vLBI5OfLZewJHqoQxOc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1636 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/1OVBIK3ZdjXddXVgPayVUP1iaa1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 981, - "iso_639_1": "vi", - "file_path": "/6kH12uy9Jb7jFW6vaMGbEqjE1V2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1744 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "vi", - "file_path": "/mnbN6B4UTKPWVIbk9soOsBc4E0g.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/YTjM2M1rWkUlYoR2KELeUXu2WF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/maMOg1HtMIRMlONJAj192kPHsDU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/mUIrbgBvy0ObPQvBydrY2AHTOxs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "uk", - "file_path": "/6tAg0bb9D4KAHymW9dWADmUbJlL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "uk", - "file_path": "/JGmAxG8hXn8AWeE03QxCpzYhak.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/cMoAazlwW8EoLFmpYkjPC9f8SjF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/dUcp6GG3HIkRevZXr1foPkrIJjp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/iBpWPfY2eKgCbtLxF4HyCLbfaoX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "fr", - "file_path": "/58Eg9ckornmiVmRh1kwnTnD7Im9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "hu", - "file_path": "/h1f7x2of5rovx60rTDpiL6qpfAa.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "es", - "file_path": "/hSgOIgAtoyr8kGzyVsaetfuZNHq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/mGwdSEJDJUGC5SXbLin01PgU9PB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/6nzSCXDDQyyb4wnEvDkjN4n52ge.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/wq0dq0XpNR1UWadbYJOyK5EdcrA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/2TqLuqBrhzIBtjE26wDdZW7S7fj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/oxL5sLscckByhA0sHtflzoQekvN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "cs", - "file_path": "/xsab4EqXRecQlBqYXcoZOeN06TO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/1uZg0jfIVmnQVsENQmpuYG3dSJk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - } - ], - "logos": [ - { - "aspect_ratio": 3.018, - "height": 658, - "iso_639_1": "en", - "file_path": "/cmE0j3mQQe6xrzLryxGF9rF2KC8.png", - "vote_average": 5.522, - "vote_count": 4, - "width": 1986 - }, - { - "aspect_ratio": 2.825, - "height": 836, - "iso_639_1": "uk", - "file_path": "/32ixSsVtcs36CsvuFASz7fhb4ET.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 2362 - }, - { - "aspect_ratio": 3.218, - "height": 426, - "iso_639_1": "pt", - "file_path": "/fJOvcMolQUZIcOuSsogP0eBN33d.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1371 - }, - { - "aspect_ratio": 2.684, - "height": 1296, - "iso_639_1": "hu", - "file_path": "/bmckgwkf5wYeKOQZ27MdqUsEqLX.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 3478 - }, - { - "aspect_ratio": 2.927, - "height": 1294, - "iso_639_1": "en", - "file_path": "/4JDOCXMbFv7blqAuDyUMzJEa8d.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 3787 - }, - { - "aspect_ratio": 2.926, - "height": 1294, - "iso_639_1": "en", - "file_path": "/nX9CSkpKbkyARLTOx04UPTBglsP.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 3786 - }, - { - "aspect_ratio": 2.653, - "height": 167, - "iso_639_1": "es", - "file_path": "/bJUykqWBzpE7qYfmPsdMAKNa3Ap.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 443 - }, - { - "aspect_ratio": 2.333, - "height": 1495, - "iso_639_1": "zh", - "file_path": "/pSDm8eSxP2QhEy3fq9rPaEWbqVk.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 3488 - }, - { - "aspect_ratio": 3.202, - "height": 529, - "iso_639_1": "ru", - "file_path": "/n0nFqOAcYQ91g1zGu950QyYGO3c.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1694 - }, - { - "aspect_ratio": 2.764, - "height": 942, - "iso_639_1": "hu", - "file_path": "/7os6dsQW9BJlt1iiV7mXQyTvHt9.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 2604 - }, - { - "aspect_ratio": 2.852, - "height": 724, - "iso_639_1": "es", - "file_path": "/iPVdV2T0uN1MvEgFIwt2GMlX7cJ.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 2065 - }, - { - "aspect_ratio": 1.948, - "height": 572, - "iso_639_1": "ja", - "file_path": "/q9t4IXxrK7UuZfMY88QViqzmZSH.png", - "vote_average": 0, - "vote_count": 0, - "width": 1114 - }, - { - "aspect_ratio": 2.825, - "height": 836, - "iso_639_1": "uk", - "file_path": "/46cFV2XIeeTkhXKnZuhW9Jkg90S.png", - "vote_average": 0, - "vote_count": 0, - "width": 2362 - }, - { - "aspect_ratio": 2.946, - "height": 537, - "iso_639_1": "en", - "file_path": "/mZK6Gt9YUqXC8vUCcdIGFhIjuzr.png", - "vote_average": 0, - "vote_count": 0, - "width": 1582 - }, - { - "aspect_ratio": 2.698, - "height": 1296, - "iso_639_1": "hu", - "file_path": "/rknVLsRrReid950weWtJKMTUPhg.png", - "vote_average": 0, - "vote_count": 0, - "width": 3496 - }, - { - "aspect_ratio": 2.411, - "height": 487, - "iso_639_1": "zh", - "file_path": "/jpBK0O3UQ1R2DDCyXnM78bmLftw.png", - "vote_average": 0, - "vote_count": 0, - "width": 1174 - }, - { - "aspect_ratio": 2.561, - "height": 164, - "iso_639_1": "es", - "file_path": "/f4F83HhdYT6PMeo5a1zq3S6AMw2.png", - "vote_average": 0, - "vote_count": 0, - "width": 420 - }, - { - "aspect_ratio": 2.348, - "height": 155, - "iso_639_1": "zh", - "file_path": "/3ZVlTIbOdjXpSpBjI30oJkkfa10.png", - "vote_average": 0, - "vote_count": 0, - "width": 364 - }, - { - "aspect_ratio": 3.232, - "height": 419, - "iso_639_1": "pt", - "file_path": "/1WdHlP3t3h3K7f5F6Nm48DJFUNR.png", - "vote_average": 0, - "vote_count": 0, - "width": 1354 - }, - { - "aspect_ratio": 2.183, - "height": 191, - "iso_639_1": "zh", - "file_path": "/QuqXKgoaUPy6f9ajZjDAgKkfCo.png", - "vote_average": 0, - "vote_count": 0, - "width": 417 - }, - { - "aspect_ratio": 2.726, - "height": 1300, - "iso_639_1": "ko", - "file_path": "/17uq7Ew2jtLkonGu85hR5MeQ4Hl.png", - "vote_average": 0, - "vote_count": 0, - "width": 3544 - }, - { - "aspect_ratio": 2.436, - "height": 1299, - "iso_639_1": "ko", - "file_path": "/1ASSreQWgDuTbm7UOdQfPZH6wXV.png", - "vote_average": 0, - "vote_count": 0, - "width": 3165 - }, - { - "aspect_ratio": 2.371, - "height": 1299, - "iso_639_1": "zh", - "file_path": "/elFh3cFe3Py4bw5CVEI4FncIvRN.png", - "vote_average": 0, - "vote_count": 0, - "width": 3080 - }, - { - "aspect_ratio": 1.794, - "height": 1299, - "iso_639_1": "zh", - "file_path": "/3RuaQ97TLtKlEDqUqFOmrCvRk4G.png", - "vote_average": 0, - "vote_count": 0, - "width": 2330 - }, - { - "aspect_ratio": 1.84, - "height": 1298, - "iso_639_1": "th", - "file_path": "/mRPLzWyWdzqP52bklWxH75osONK.png", - "vote_average": 0, - "vote_count": 0, - "width": 2388 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/8Vt6mWEReuy4Of61Lnj5Xj704m8.jpg", - "vote_average": 6.26, - "vote_count": 39, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/uc5U4GCZu9Z2Zb3yqk5fZfLwawR.jpg", - "vote_average": 5.714, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zknrogDlwcmaz3yHkA3yEhy005t.jpg", - "vote_average": 5.636, - "vote_count": 41, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/okQzkB2VtM1HZU8oqPL4boeSiGi.jpg", - "vote_average": 5.582, - "vote_count": 9, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zNaOwmI4mJfaXbX9UwoHMQH0fdG.jpg", - "vote_average": 5.582, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/37WcNMgNOMxdhT87MFl7tq7FM1.jpg", - "vote_average": 5.582, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/AjC2OM0B5smL34FoiX5Y9P83o3e.jpg", - "vote_average": 5.51, - "vote_count": 26, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/jN1tz3Z10gUOdb11iPwQd6JBlms.jpg", - "vote_average": 5.506, - "vote_count": 42, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/5EA5u5HtCF32oG5hpHRmDXEqaff.jpg", - "vote_average": 5.456, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/sakUtSDSUlTNuHN9aAR5eDftxnT.jpg", - "vote_average": 5.456, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2450, - "iso_639_1": "pt", - "file_path": "/4CwKj1fw33BXYzxvrpM3GlAhK4L.jpg", - "vote_average": 5.456, - "vote_count": 5, - "width": 1632 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/rilpPMoF4LbKcBPb4omiqm7Zjw0.jpg", - "vote_average": 5.456, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1425, - "iso_639_1": "en", - "file_path": "/7g4J08JRBGsYr7N7OYPMYYMKIbG.jpg", - "vote_average": 5.414, - "vote_count": 34, - "width": 950 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/bYDwKJrIPjgANXNXUkF7ssSESsD.jpg", - "vote_average": 5.41, - "vote_count": 28, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/fWNIrfvDXORrbfSVy3OX7ndgCLw.jpg", - "vote_average": 5.4, - "vote_count": 16, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2961, - "iso_639_1": "en", - "file_path": "/zPoqAu4gxZRmcPzSLFJ9b0VciaL.jpg", - "vote_average": 5.4, - "vote_count": 16, - "width": 1998 - }, - { - "aspect_ratio": 0.667, - "height": 2252, - "iso_639_1": "en", - "file_path": "/g9Vc18b6uDn1hKHPoNha3zbvw1c.jpg", - "vote_average": 5.394, - "vote_count": 10, - "width": 1502 - }, - { - "aspect_ratio": 0.666, - "height": 3000, - "iso_639_1": "en", - "file_path": "/iUhAHV2RTFCbDnwgMLJ473zodTI.jpg", - "vote_average": 5.394, - "vote_count": 10, - "width": 1999 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/iQhDO2IV3tvDWGcFzjaXIGxByqz.jpg", - "vote_average": 5.392, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/rHNFvk0M5svBX1wYhYvvILeYOql.jpg", - "vote_average": 5.392, - "vote_count": 8, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/sEtt7PhN2WIQX0AczDPD2y9hmdl.jpg", - "vote_average": 5.39, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/pf6GF2aqSwdIfkV1TgD3OzM4MX4.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/jx1mhzP0RhKVfXHjXEjoP36sbhl.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/q9KYsGFUr7l2IN8MDrEE7csyQoD.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/tqXL1NXqFUPVT85pBXJhlO4HDas.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ptbFY3MocZTF1sT1JnLbd5MLTBp.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/cuyJr2cqv9slYWciehTGXVeGugv.jpg", - "vote_average": 5.358, - "vote_count": 25, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "es", - "file_path": "/qqXTerrQYwg9pIMhb1GFbxa3WUz.jpg", - "vote_average": 5.342, - "vote_count": 15, - "width": 1400 - }, - { - "aspect_ratio": 0.675, - "height": 2965, - "iso_639_1": "en", - "file_path": "/biFcX9ATT6OCJaU4lhhDzt9Reoz.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.676, - "height": 1777, - "iso_639_1": "en", - "file_path": "/ceRlzcESqqbA5vqmp0ggOye7xbC.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1201 - }, - { - "aspect_ratio": 0.7, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/jBmJZDiJ2h6DimGROpxWlPh1xIo.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 1434 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/40ODF4OUiCdTlvCSRcTDjhVexpx.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/vgiU7r8vinKT10wk590dG1a8zPc.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/ykHpi0AHjmoc5gNlsnYkXboEXLj.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/2DAlwQVzW89uFBtLiW52M5mAGXR.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/bXWPVTzZe5PJaKnxjh7IAOx8IXh.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/xxPXsL8V95dTwL5vHWIIQALkJQS.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1714, - "iso_639_1": "zh", - "file_path": "/yTDh4Q261rOtSI0gYncaHPgJkOu.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 1143 - }, - { - "aspect_ratio": 0.667, - "height": 2046, - "iso_639_1": "zh", - "file_path": "/xkusGef09HlajkCPK8b9vOjnBcC.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 1601, - "iso_639_1": "zh", - "file_path": "/fmSTtdtKF9LRjArQDerftITxKhk.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1067 - }, - { - "aspect_ratio": 0.667, - "height": 2098, - "iso_639_1": "en", - "file_path": "/bmhirsu8lHEu1fsGux5Xc89d4f9.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1399 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/zG9TYiHt0fdaJiWuNEhFrfKzwoi.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1890 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/sqMnGzdNou8ib3zuw6YD5KVyXcw.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/v3G2CEQCHzwotPMUsnBVwxg6MwJ.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/2tZRYYgE63t6W4AvHHS8KMXNnRi.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/mVrrsJXXVBmsgUn6MzeJc2PEUFj.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ba0ddErne0hdb9Gn5H0UulIkUVe.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/m3UmW6Mnl1JgB8x7Wx94TEKZqyz.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/g8hEGtcqD1Xydpn3kT8XplZ3cRv.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "hu", - "file_path": "/5bTWNxlWFsJqgWMsVGZNMM3QQQR.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1400 - }, - { - "aspect_ratio": 0.68, - "height": 1000, - "iso_639_1": "en", - "file_path": "/6p65J3g0NGXdmZMFMPp59hxE63Q.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 680 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/aVvTPzo27HmYP9zmSTvLUq5a6zo.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/5gNK0WF385pCXgOqAzrIGJVD2DQ.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/5He4cPdlvojv9tbO07jjZE03sVb.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/zuXZnzHvXdWyVDVPZcLvPNrKvEq.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1838, - "iso_639_1": "tr", - "file_path": "/2k49onFB4SnbMWgczIhf1JWl6Tr.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1240 - }, - { - "aspect_ratio": 0.674, - "height": 1137, - "iso_639_1": "nl", - "file_path": "/6Keegp1IOXqeZPPJlCub3W1Bogc.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 766 - }, - { - "aspect_ratio": 0.68, - "height": 1000, - "iso_639_1": "pl", - "file_path": "/vNYymrGDM2XZzfTgPlntO7fWu8C.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 680 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/78WGOACqLbhR93YfMLSBSIP2pIF.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/bX547n5W9ZIKCeAE44Vf2nfw4w.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/qLUNJM8AjrxzcJxtLW0uW7HhX5K.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1080, - "iso_639_1": "no", - "file_path": "/Qtj9pBZXiiNs3z1XcHg5wKCcKu.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 720 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": null, - "file_path": "/pqJp8jsuF6tTbWiZeR74fybmGSF.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/y1XiUfer8KrywS7zouu6LcGnLXX.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/cdv5CXemY1W63mmmna43SymugL1.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.682, - "height": 2797, - "iso_639_1": "el", - "file_path": "/apscHT6dOojeEaY7bPo3Op9H3kK.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1907 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/uraVfLtA95VY6vJxA2AO2WqhG65.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/drljBgWIW1fnDTPbGBPsvCLcQu0.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2964, - "iso_639_1": "hu", - "file_path": "/u8tgy1g2pYI5bJbcWPEBkG46Rz.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1976 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/fUwfsPWEEdnSt29jIwJ5eVtySX6.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/hpxdjYWAI1EeO0XNEfwZA56Tjg1.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ja", - "file_path": "/gMDbgY0vYaCrJcbv2gPlffIHUDS.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/xQCFwjUEeJHzLbtdgt9z7VOmapf.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/qyVB9HhnjsPx3UHnIGeEU4UgrQj.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cCuKR2dGcvL996vQTlFKr055Bhz.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 960, - "iso_639_1": "lo", - "file_path": "/2dD3hEvjeOeANlhifqIOQxxy7bp.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 640 - }, - { - "aspect_ratio": 0.675, - "height": 1600, - "iso_639_1": "lo", - "file_path": "/kTa74iH5cYoFiqk4RpVMJqHXYYG.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1080 - }, - { - "aspect_ratio": 0.675, - "height": 2049, - "iso_639_1": "en", - "file_path": "/p6BWX74AyUoh79EobFEPlGypPz2.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1383 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/hvfwCeSTgsExmz9l31dKkfR83DH.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/b0h6oQPbfGIE4xohgl0Y4mAoYVk.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "ru", - "file_path": "/Aa03dYgwt7qXDvRS9RtNMVcWUVs.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/80EHqpAzRKbMQ4HCU3EEnEvHBPQ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/dbnkqs9aNx2YTLR9DpXYmE0FFyS.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.676, - "height": 1110, - "iso_639_1": "fr", - "file_path": "/7ZCaejc7eIYDebyY08vFJwzIe7p.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 750 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/bTYy0U5TxbldVHeZQHYd0PF73TK.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ru", - "file_path": "/rw9eSzOUk1qosJgAH6gKQb84Sov.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ru", - "file_path": "/awIfrUx4f2uEd3yiw805jknKvmP.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "de", - "file_path": "/6jYQM7zldTF0q6Ky1XbIJCNsS2L.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "de", - "file_path": "/nO8wy6iJwnGp1b8bCOzozlqKAEM.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cn", - "file_path": "/1uIenmj94ngtLKqMQMAE9pqwc1.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/lMWTlGr9jVUC18T515hPRKym5QQ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": "en", - "file_path": "/k0JJqFFQWOgFanSfSx6OJAYp7je.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 1482, - "iso_639_1": "uk", - "file_path": "/mad0sMQEfpZU3NQWrkjalsNSRQV.jpg", - "vote_average": 5.296, - "vote_count": 20, - "width": 988 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/w9uVaOBZyX1Vgfu4AYpcMnSQ3Eu.jpg", - "vote_average": 5.276, - "vote_count": 12, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/3Ng6tqu3aaP00uh803vNN3iRXiE.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/aGsHwAQ2exOIIzZr3ANoeepGMM1.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/xfeHFxr32PVA1BFvDOlfeCJ7Jyt.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "en", - "file_path": "/728MzWl0SwEBKSxNyW5rVXEpHD9.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 2096, - "iso_639_1": "en", - "file_path": "/xR0Xj9ce3QbAd3PDDDlE81ZHW3w.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 1398 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/wIOZhUPVIrfxxK10YUqeubSbPbK.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.673, - "height": 1929, - "iso_639_1": "en", - "file_path": "/4yPB7TDVvSgjzDP1QreAdOwH81V.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 1299 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/bNDSuUdWiFDChSNtbMymXVxCMVI.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/yoFvr2fxVxJSWdF9RIN8QYdiEl6.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "en", - "file_path": "/qtJW2MgmCnJgfkD10QMIlf6tsD0.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "en", - "file_path": "/47AfUiBRMR0eQMPGAZfirsxXrsR.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 900 - }, - { - "aspect_ratio": 0.666, - "height": 1844, - "iso_639_1": "en", - "file_path": "/fVw7yBExxJvyDZ4ruhVKFeXzDbg.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 1229 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/iacLPcp2o2pClRToPjNAZjGhxAK.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/muOoZzPs09pX9TQHfl9bJx93jY6.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tNQDtaSBlX0kzPGoVTP6dswST9i.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2964, - "iso_639_1": "ko", - "file_path": "/qIV59mpKFhpzgdZYZTrfQTxuKPp.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1976 - }, - { - "aspect_ratio": 0.674, - "height": 1200, - "iso_639_1": "es", - "file_path": "/A2IVuduRZU2UlKZ7PdmzmpPrglu.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 809 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/fwYgZFx9hNIYq9snLvuaTdRQurE.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "es", - "file_path": "/aCLsuJfYnhJIEcwu2a9yWCsYBvq.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/55wSBtFxwMeIWDnMsWoNWEUYRek.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/mHkwuAI2l9pm2ZCxfItX0RZ9jn8.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/6QjzzhuLN33OqaOeVkabNAYV04S.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 1599, - "iso_639_1": "en", - "file_path": "/zFrbXbbiHX44wmlfC0bhNh8g4NL.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1066 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/s05UTPk0GQjtGB3oKqdvVXSomXv.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/irEj7TqWZXNGg0lCI5DFonEb9Qm.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/8637E90iSwkJG0cgUjvaBhmNkCf.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/95CG73ZCH3ABoQwyf5dEj0SyQMb.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/i3KQdtGjzsLMsEnIxXyD9Ga7D8r.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/lXNYybbiViO9lavi2UpwdrTpvsN.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/cfx6zK3qGz7baIhzZFUxAM2DDwr.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1364 - }, - { - "aspect_ratio": 0.675, - "height": 2880, - "iso_639_1": "en", - "file_path": "/cgcGpnMJZZwaHwhbxaIlw4OOViI.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1944 - }, - { - "aspect_ratio": 0.667, - "height": 2096, - "iso_639_1": "en", - "file_path": "/lG1h8H9T2xYXX3OLDq3YXC65yJc.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1398 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/93riFkqGZ09JLA7giEC6HBkr1r.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 2880, - "iso_639_1": "en", - "file_path": "/ruo63D0YKh50arLQjxTYFLVrj7v.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1920 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/gFH4YYRIXxU7B0SMHp71X6LwkqC.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 2970, - "iso_639_1": "en", - "file_path": "/iNGvxGz4e1HUimSI3kNK7d010wT.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1980 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/q6UjThd6wJqmWNXLeOfPslg3IZo.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.708, - "height": 848, - "iso_639_1": "no", - "file_path": "/d2twzknD9bU1XfuHHDEapHxLkgI.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/7fNjczb3059gNOzyoeYAWoDmYPr.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/898C00xZBitlJllqTrK8b1JP15d.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/oBzlEoi4Km5ih0dAZV1hcv7dI9z.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "es", - "file_path": "/odhjoOFo9VpGSJCulyJYBFJp7Zo.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "hu", - "file_path": "/6WXetBxvY3D7kz0XnwTvu0F2TTY.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1400 - }, - { - "aspect_ratio": 0.715, - "height": 2797, - "iso_639_1": null, - "file_path": "/NYXl9h9MTwotYvhokpJwxkoRDC.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ja", - "file_path": "/8BPldNn9crYPlGdXvh2Aj2L19jt.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1500, - "iso_639_1": "zh", - "file_path": "/ffjc8XtPDdqUE4vkaJBWxy78iho.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1012 - }, - { - "aspect_ratio": 0.667, - "height": 2268, - "iso_639_1": "ko", - "file_path": "/p2l6hOlyx1ZP6jt9wagthliVg9h.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1512 - }, - { - "aspect_ratio": 0.667, - "height": 2560, - "iso_639_1": null, - "file_path": "/6NJyDmUZF54ieZDrJT2QVO4N3hg.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1708 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": null, - "file_path": "/89IS9AByAIlc9JGG6GIwrDHrwx0.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": null, - "file_path": "/iSlW9OOuVBTwAx2jSb2NrpysgqG.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/83v1ZGI0NTqfBSofIx5QoTLuCNA.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/4byUZtVvB8VftUZG6lANc5BZw9X.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2999, - "iso_639_1": "en", - "file_path": "/jHE7WCoHAKM63svepz15JJ1Fkmz.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/eelwCp1zv1OVaNFkg0vrDi5UM8D.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/codYRSiDbmZIFXfvynAKmABKre.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/qYZ22ZgNz9iKVR2DbF4Umnrb6mQ.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1364 - }, - { - "aspect_ratio": 0.764, - "height": 2048, - "iso_639_1": "en", - "file_path": "/325t8oFFaJcCN17Hpf1nKMk1qus.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1564 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zWdmJD6Y8JgO43mibvcfG37X0X4.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/51yTUvUjpRVW57cKAksQvqYm4Nc.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": "en", - "file_path": "/oqJrXxxn0i5FgQfbqRtCKtA2lD7.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ja", - "file_path": "/pZrwlQYTUVsL2e5qJobRb68kyv3.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1772, - "iso_639_1": "ko", - "file_path": "/xUzXHw6MbtrdA7cb8n3tMPpN14Q.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1181 - }, - { - "aspect_ratio": 0.659, - "height": 1425, - "iso_639_1": "zh", - "file_path": "/9UnuKjZzOQJfdpv2yaA4Ax8ccKD.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 939 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/1Jww51q6f7GYIvt8XgtHKrrREnX.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1072, - "iso_639_1": "en", - "file_path": "/zfZuSNGKxIlWQKi4xlIhFoRrlnj.jpg", - "vote_average": 5.22, - "vote_count": 13, - "width": 715 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/3if5KqGat6tpKP0VzQVmpFGvq6J.jpg", - "vote_average": 5.212, - "vote_count": 11, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1482, - "iso_639_1": "uk", - "file_path": "/glyglsYVYqOYLQULKJBksEWsAiY.jpg", - "vote_average": 5.206, - "vote_count": 9, - "width": 988 - }, - { - "aspect_ratio": 0.667, - "height": 1599, - "iso_639_1": "de", - "file_path": "/jKM36CaXU4W57jGichRkpc6S5P3.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1066 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/cyK6liTOcHO4FMGdp0tAtCe1ART.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/wJCApZLMra8rjCpqofDRv8lo7ug.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2096, - "iso_639_1": "en", - "file_path": "/4vPRTFpBTWTpieKIdcrAL3HZBHy.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1398 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/qGxp2cX4OvJmNKYTOKpYvAEzQwi.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1496, - "iso_639_1": "zh", - "file_path": "/zjxqDJDvsFhgTzZJbcf5R3D9kfJ.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 997 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/sU3wMXqELhvkRdpDaCYxE7RUpif.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/7NnNxaMQeD72po0n3DwyGL4WpBJ.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/dDnqFMJJbvI6bDoQhlD3xqPPgLX.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.708, - "height": 2826, - "iso_639_1": null, - "file_path": "/q6Tci6GdrKTpmoLWa79wodoQxBX.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.706, - "height": 1080, - "iso_639_1": "cs", - "file_path": "/sowaQ4N9iM3cssWSUQPp5C6rk3b.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 762 - }, - { - "aspect_ratio": 0.675, - "height": 919, - "iso_639_1": "nl", - "file_path": "/bEGHoicVZmJxF3Zh0O7463rwNSo.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 620 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/bWsvsKwvX7RazmVgqmXgGnAipXn.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 899, - "iso_639_1": "zh", - "file_path": "/mLph4bC3QI3QpX6Tf51UnrTrtb6.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 600 - }, - { - "aspect_ratio": 0.672, - "height": 1141, - "iso_639_1": "nl", - "file_path": "/gFcenFpEnpM5mBEbUA0NQkbpE64.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 767 - }, - { - "aspect_ratio": 0.707, - "height": 842, - "iso_639_1": "no", - "file_path": "/x4L7ZdO93EnPPs1FSO2efjqQ873.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 595 - }, - { - "aspect_ratio": 0.675, - "height": 2961, - "iso_639_1": "km", - "file_path": "/ymp9hnHWN7B6waWgXSpZul3X8nS.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1998 - }, - { - "aspect_ratio": 0.71, - "height": 2818, - "iso_639_1": "he", - "file_path": "/ardsNB9jf9EVzfe04D336cFeUQP.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/s0z3dkBhau6Q3bUpBW5HPSk05zM.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/cS161s0VRRte1kDEsR5k9PeHJCD.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/sBYSQZrIhLjHHBKsGcpYev3Dtju.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/bMkbkv8IWUrP7BcM8RLPBSpxhB4.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/2XBsfWy005VAgFKiuMCJGRzFETG.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "de", - "file_path": "/egEI5fiqBwNu5u5hrzdeSNO95E9.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "de", - "file_path": "/2xg38EeyRPtsu8WfTdeeMCkOiTE.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/eU6xAZrOhUqpud0C97qwGz9KHRd.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gstNh4Ydj5lD8ZKL4jpUoJcQokO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "zh", - "file_path": "/7xRyr4Vn0ChOFbRCW1BbxNAZPoV.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.67, - "height": 2983, - "iso_639_1": "zh", - "file_path": "/y5wv2qepwx2jLfED8fHdFfZHUPj.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.705, - "height": 1999, - "iso_639_1": "zh", - "file_path": "/pb1a0wz3fMQ3P9aeherRLUbX2d.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1409 - }, - { - "aspect_ratio": 0.667, - "height": 2964, - "iso_639_1": "hu", - "file_path": "/rtVKvilIV8NP8xhkmqoYJW8dpvr.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1976 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/tV7w6dRxMEQJCzjpjgWeYHGFpZ5.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": null, - "file_path": "/u1YliMkVurvKlYsb2arjuIfE0vD.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/fEFYnjkM0js92ye5kENK0Hi9djH.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "zh", - "file_path": "/vyW3PaWfZIqf4MnkGpL25DK3gik.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "zh", - "file_path": "/6lbnRMuWL2Ie8oOfEpJvuruWaCP.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "pt", - "file_path": "/14ylZj75Gm4oIli6zNMsezhN4iR.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": "en", - "file_path": "/8ycplQbTU6DRRwiG95lQEpYkOVg.jpg", - "vote_average": 5.156, - "vote_count": 12, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "de", - "file_path": "/lirsdOyw3mvFPxZPhgtkWqqnEAl.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "de", - "file_path": "/65EC4qPXmauerYexU5SyZv9umVo.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1600, - "iso_639_1": "de", - "file_path": "/1NbejLjKtrRNNU6BuGuf7ZW5wWN.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1067 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/uRm4DQIJeAfD4q5euULWFpHPG2D.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/rh1ag4GHIZ3uGQG4jMwjSrdB6s1.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "de", - "file_path": "/84dTBxyos4W076ar8pKjuFMfSdf.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "de", - "file_path": "/9XTvZpKoKPUs7vcRhpxnfXIgPWO.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1923, - "iso_639_1": "zh", - "file_path": "/rGBGgpHmLCI1kEt8TxNK963GdZs.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1282 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/texVmZyotIxfWM32IicF2hcDUSm.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/jtBcL0dGXa6FvXIrWPvAJxUnpuu.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/PpQGTBQYq9M30XBfucDNCyfzKK.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/f9DCF2jyqhSnkLjCzgh7AZdcpFN.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/aeLYAvrnZ1auOdMiEqcTTo00Zzc.jpg", - "vote_average": 4.846, - "vote_count": 11, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/8vFQvUFFOeBOTNcOfRQIJ5nYvkX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pl", - "file_path": "/zrlFO5MzqLX4YmiBR9HJLrHO3ZB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/paM6UdMgXuXyAK0jhGfV07o3lRW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.708, - "height": 2826, - "iso_639_1": "km", - "file_path": "/jjtzIapiuy7QT1Amq2ZWxNb9Rpx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/juhJLWEouqx1QtqjHXpBKx7wgmH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1365, - "iso_639_1": null, - "file_path": "/xYin6wWC1aCy18MdidTl4hlfZZS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 910 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "pl", - "file_path": "/onMsfEwmb37kDQgykmFeatwUr3i.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.707, - "height": 2362, - "iso_639_1": "sk", - "file_path": "/qq5mlnyHQV4hC0t6aDVKXjWnmLb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1669 - }, - { - "aspect_ratio": 0.708, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/9Nmci69EsgPQiUfNdSh5IGkZJtU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 765 - }, - { - "aspect_ratio": 0.714, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/k4AXRLxuJ5FbZ2U9VvmhTvYwjv4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 771 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "es", - "file_path": "/nlYddRqjr2UgpOLXhBcmAv3xFLm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "es", - "file_path": "/tNwj3sIILIgbcolEs5zV6SzIAG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "es", - "file_path": "/pgDWrhaz0rSsD43ocNDX3PRIKJ3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 2384, - "iso_639_1": "cs", - "file_path": "/ryRcoi4y40iYsjvsrCqTBxk06kG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1589 - }, - { - "aspect_ratio": 0.71, - "height": 1080, - "iso_639_1": "cn", - "file_path": "/9x1tlCheApwZIZySKldek67nyA1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 767 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/caTR7PNKGv02TeRJO3O1d5FbxPv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.716, - "height": 2457, - "iso_639_1": "sv", - "file_path": "/u7aegL0DB8OMIeMfYTbEsDMTM7o.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1758 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/5J6IHrKuomrw4ESUK9bHXD3l1J4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/wHbv4Y6MLGJniqrVvNcKglCowLW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": null, - "file_path": "/o3UtDlPOg6t0Ik7ytZDVNMKkscS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": null, - "file_path": "/70khg8IUJdcvHlcfOZERRRQMU4l.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": null, - "file_path": "/q0ZMb3CoVzUIZ4bGEzylZMGvJAS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": null, - "file_path": "/82YCxFMAWidRZmWdZFjhdH8Ux0m.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": null, - "file_path": "/9HAnTvU9U0iF3EbFX57E2hRnwFn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": null, - "file_path": "/h32e9xl52sUDwPfs7r7fV6ZS3T.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": null, - "file_path": "/5VWNolpnCIHUp1nOiLmW8ea6JEj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2167, - "iso_639_1": "bg", - "file_path": "/jhksPDHovDHzLnsQOsE1A88aCJo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1444 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/mZ62eI1zN17lrrGExVFhj05k7lb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/3FQP0woW0IbhGav6uLSusCWlwf3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/f8GttMWcnOSnf6d7hZRZIomW4oS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/mVxwRQnnOaFUwxcXu0vDrTfnQkR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/vVfwqwksGIdpb4BEk0qtYhYTqNS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/zhD9GinPCee99e1G3KoXLCrshGb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/btlt7BaJiDE3nqI6eP4iIQxympi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/xlz914CkZK2M15y3tGfhfXwI0nY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/eNgGpVnbdtEWfNWmkUuWgAp9oWC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/pu9oXURIcgTsdmeVzoQQvQsqmsO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/qd1NQQssFALTTtYWLOzr7Wj5Mtl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/doDPSEmgI8keQ3di4eZAKFqDtag.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/ba9f6apdtbLzjtN1jcXJP2rnwsc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/kHG67VXLjCGgCJ2Y0aM9C34qLEt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/yq0PnTtlwV0ZcV7NkjpKwbSIMRu.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/9YBaLLmqG7En4PDmtKaBIGBQHo9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/drqQKyTEMkFEUyptjRc0eoHEo0q.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/zy2kuYG7RLrJsoZEjer9dvi5W39.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/n261aL2qjyQUsszRykEBlEFQzm9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2480, - "iso_639_1": "sv", - "file_path": "/3MkXHuCblFTNabfn6QcInsCquZF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1653 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/taRJjNDBq6dXijw9LVFVlEXQnBM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/kXcP4aHE0st8QdJtuUCzt4iwiiM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.676, - "height": 2048, - "iso_639_1": "km", - "file_path": "/vrykmql39ge8TGFf6BGIjawR6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1385 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "km", - "file_path": "/boQuMHfOqfXeGezqsOQB7cwHEep.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "km", - "file_path": "/rBd2STdeKUt90ns9KrYAeVLyKwG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "km", - "file_path": "/bhb6xzElFAGSAyMTy9A2RNL6F6e.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "km", - "file_path": "/gJKlAISKtSCBBE0yC1103Yi0t4n.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "km", - "file_path": "/zX1uzbVozBzwSQpxpFbCcHrAY5b.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "km", - "file_path": "/t3S4J0IjkzKALF0Ak8hyG6oqt4y.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "km", - "file_path": "/ysMlT8GWx0Bodqw14jsc6ncZokw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "km", - "file_path": "/xj2JZTnqDM0aMwhRCtuABl6wMpJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "km", - "file_path": "/rlBbqfvN8bX4cNziVfdJtYYXRFk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "km", - "file_path": "/ll846vSX3clh37Zzr9plKz622vr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 800, - "iso_639_1": "hr", - "file_path": "/hTFdZpsAJef47GPFiATVNCkN03c.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 534 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/waszQkcj44R4dK0pDt2RD5WQ3l2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": null, - "file_path": "/A457p6J5EBUs5qCeV2W1KmYKpG0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/A23wPJTx0QlBRlBUCYDXzBG1hcb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.659, - "height": 1080, - "iso_639_1": "cn", - "file_path": "/4wDSW7ty2TzqXEcYzSS9qnSziAO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 712 - }, - { - "aspect_ratio": 0.672, - "height": 1800, - "iso_639_1": "ca", - "file_path": "/rjXar7KpyzuoMaI7ooNux0uIIG5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1210 - }, - { - "aspect_ratio": 0.715, - "height": 2797, - "iso_639_1": "el", - "file_path": "/kvChDd2f8Vevt6KF8MIGStp0kKK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "no", - "file_path": "/2NPWZR1b5Wcn2ipFtgGDqhgvQ2W.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/hUmggcjvl3Nd2Jv5oBNQMBpU6Z1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2819, - "iso_639_1": "en", - "file_path": "/gmJ36yEVQbXUdrPCAhCK8p1fhqy.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1879 - }, - { - "aspect_ratio": 0.667, - "height": 2096, - "iso_639_1": "en", - "file_path": "/9WYsOYcMOvqIWpR9NQ2bvo6IvEE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1398 - }, - { - "aspect_ratio": 0.745, - "height": 2048, - "iso_639_1": "en", - "file_path": "/6sRrwCjbA262VU3Veu0puXDeFoZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1525 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/waMZb8PHhEw8q5YO9SNnzxSfx87.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.715, - "height": 2797, - "iso_639_1": "fa", - "file_path": "/tnJHUwNIDEUZyGT8iEgxxa2nEwG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.715, - "height": 1205, - "iso_639_1": "en", - "file_path": "/pX3pJIiosc8gmDUfrEU1Hg9supl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 861 - }, - { - "aspect_ratio": 0.667, - "height": 2400, - "iso_639_1": "lv", - "file_path": "/ahuJDqdYXlveblbP0DXJQBq0wPm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": "en", - "file_path": "/xACIyVOQALfCQXBMJTQgZuUremS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/qtFbqb8vcjWrZiT2OqyFRR4Wuvs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.684, - "height": 960, - "iso_639_1": "en", - "file_path": "/zFbpOExnxGzz5gHyUNWbShhQ82c.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 657 - }, - { - "aspect_ratio": 0.666, - "height": 1772, - "iso_639_1": "ko", - "file_path": "/fo3IreREwcwlTGuGavPmIrAxFAF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1181 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/x6L94ofj0pXnbnNhkoOUImvAZ7a.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/7qjmu1FLeuj6r0yolijyTBKcozt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6qOguAfzpXtw48kSntTtxH0RYnU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/3K5p7QRpNLuWE4QguYHsr9riCuq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2000, - "iso_639_1": "en", - "file_path": "/u6VTwxoXhyA37mISqJYIdbKuxG5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1334 - }, - { - "aspect_ratio": 0.667, - "height": 2400, - "iso_639_1": "et", - "file_path": "/moYUpb8UPDZJWG6Vbcup0gViL6o.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/z9yEqj5pkcZR8sNXAiGt48oV44f.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "ro", - "file_path": "/xxgHYTS38rvMqUBain8auWvnV6o.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/g6VKMMNeOTDGEVIDdBOt1vPbY9s.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/gdzzS7nydb8UtCfFocNNPQAIx0n.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/xGOZ2gh5esxdwS6MWKuWn2aJOkA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2964, - "iso_639_1": "hu", - "file_path": "/cI5WzCUNi0dfGpoo92cHyLDKgvT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1976 - }, - { - "aspect_ratio": 0.698, - "height": 1280, - "iso_639_1": "ko", - "file_path": "/qTq9O8QV68qsJRapFbdeMQfioHt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 894 - }, - { - "aspect_ratio": 0.698, - "height": 1280, - "iso_639_1": "ko", - "file_path": "/mAzf11qiOtxn5haJDzKs1akhwri.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 894 - }, - { - "aspect_ratio": 0.698, - "height": 1280, - "iso_639_1": "ko", - "file_path": "/cXKREiWI8ASVNIjrjHUONpHl5xv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 894 - }, - { - "aspect_ratio": 0.698, - "height": 1280, - "iso_639_1": "ko", - "file_path": "/7IK7IWTxFUk5vSB2ZbAk5hFacFU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 894 - }, - { - "aspect_ratio": 0.698, - "height": 1280, - "iso_639_1": "ko", - "file_path": "/LoD001eJ6UvlOceVAfMPQvdBnO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 894 - }, - { - "aspect_ratio": 0.698, - "height": 1280, - "iso_639_1": "ko", - "file_path": "/85bi3cOP2MWshzVYWObvrhXFoAQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 894 - }, - { - "aspect_ratio": 0.698, - "height": 1280, - "iso_639_1": "ko", - "file_path": "/kzK9KCHv3UVF64mOHow3j8ewngu.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 894 - }, - { - "aspect_ratio": 0.698, - "height": 1280, - "iso_639_1": "ko", - "file_path": "/1lD1SwdVI4vpGueCePBFpPbqZVd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 894 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/A1pdh62Qe4N5iPPNoJbYYMcH91g.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/mHNVixZUJ2lgc31ol2EEPXWtrzL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1949, - "iso_639_1": "en", - "file_path": "/3D784fmrUY6NDXzuGjeQnDl2KrD.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.675, - "height": 1067, - "iso_639_1": "th", - "file_path": "/gNyeKtQ0pQBThQ4U0CFyKM71lxx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 720 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/iYT58SI2yA1zL8tp4ruMELdbGaR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "pt", - "file_path": "/xUa211ON8qlOuSd2XN43veAF8Jk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/v8wvlS2ixdkevfY5IsLCPxXthbG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": null, - "file_path": "/9tNKpbPF4gkofmnmhqwTVweGkWv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/fM1o5gSBDpl8VojFMyv1U4UurC5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 960, - "iso_639_1": "lo", - "file_path": "/iW2NBmhuITs7Eu7rDk9paPWH7o3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 640 - }, - { - "aspect_ratio": 0.667, - "height": 960, - "iso_639_1": "lo", - "file_path": "/5I69a71GEvXLgdjX3HI5EJUGBRl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 640 - }, - { - "aspect_ratio": 0.667, - "height": 960, - "iso_639_1": "lo", - "file_path": "/1Q2pRBGHfuDP3HWSdNjimucFHTS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 640 - }, - { - "aspect_ratio": 0.667, - "height": 960, - "iso_639_1": "lo", - "file_path": "/kmTswQtSSmh9Hioi9nIIwUJxswW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 640 - }, - { - "aspect_ratio": 0.667, - "height": 960, - "iso_639_1": "lo", - "file_path": "/qX271wZWTUExTn0LYd1mb0h88Xx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 640 - }, - { - "aspect_ratio": 0.667, - "height": 960, - "iso_639_1": "lo", - "file_path": "/dUQFlaeRgKT0o25CF6KiXOdbZJp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 640 - }, - { - "aspect_ratio": 0.667, - "height": 960, - "iso_639_1": "lo", - "file_path": "/nfLoDnIiD3YxkR7MZC3YBWgjzGU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 640 - }, - { - "aspect_ratio": 0.667, - "height": 960, - "iso_639_1": "lo", - "file_path": "/kvhXuTW4f4PkPzpQCuX4YUjnz7p.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 640 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/18U8mAPP6XDNbjy6LzXlQGT1rSw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/5Jo6OYPd29wCAmJ9lkfaO2XGtQz.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/txmR0kPzMbHcMNr8IT4kbnZcORU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1964, - "iso_639_1": "en", - "file_path": "/hNejJyZACKt1u2ihn5JR3SDLQy3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1309 - }, - { - "aspect_ratio": 0.7, - "height": 900, - "iso_639_1": "it", - "file_path": "/XUN2lS6F7hP5Bn4HMv4w3OBzqK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 630 - }, - { - "aspect_ratio": 0.667, - "height": 1425, - "iso_639_1": "en", - "file_path": "/kE2B70YZO1r7NjTRWNVw7duGGLX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 950 - }, - { - "aspect_ratio": 0.667, - "height": 1425, - "iso_639_1": "en", - "file_path": "/pUjvB9FsEu9uZtRIXtKFYBnc4GY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 950 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/lUn9D69JlgjXniVwEDMF4gdDz14.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.659, - "height": 1442, - "iso_639_1": "en", - "file_path": "/aeQDvry3bpBNaNsyAWgkUF5T6s8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 950 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/9fcdbV3BUFx99nlmWEARS1eztE3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/sUy6Vj5HcMTNVj7LZFU4bcSCWcx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1125, - "iso_639_1": "en", - "file_path": "/c45YtSOh3rZFRBqF2Um8HKLOtdf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 750 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/jMQoR5ZInTq5pN5EWODwdfbzKuU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/kFRXzPKyc6AEef8vvmqWUC6qLtX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/5zS61EvoS9oaKxWT8WWPB77VLZX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/sweCid4MDphVYUEyoBNGSPChW9O.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/ljq4sekjWw6IaekHrvbV2dfLg3H.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/rTaAEHwef94aJsKDwFN5popouLI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/4DbWwbV921V0X14vgpNo0F7l4wX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/dvaJQmfm6zFWMpILcMUGhICPtrQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/1jWd2C1WzqIeVORhU2uVIA63nfS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/rjmQiVfqtHplqQFxTelwZZEGVOY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/roGCY0T7vRWdrAbxc2wGBP820IF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/rcaCuxV3prAJstmzub93E7HzQeF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/s10Ub1XMBqjYMz0t2gqaGoPuFLN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/gjYFipZY9JoBnWeFCC67mKxFwOd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/rC0UawMQfROTO7Ixrgfyl3cJu4B.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/AtHBXFOI2fownZ25SlXNJQn6Aoq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.71, - "height": 2048, - "iso_639_1": "cn", - "file_path": "/1W3iojWhi3b8RxYMUFzNbK2qnaF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1455 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "fr", - "file_path": "/ydaJsTyrRimSQ1dTf2xvrmJKz5b.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/7QCz2dRxiDWTCXeQTuQmbbTLrPY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qj6ke9tGRTxGjXNqsmvPYtgv7L4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/1OpsUvuBY5D9kUOTNCbFrRejRo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/1xU1ExSrFKvFhaRvqNZWEb7wZU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1134, - "iso_639_1": null, - "file_path": "/7vLvTsaP2ay7uBKumwStSxZaWSS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 756 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "ar", - "file_path": "/xmZSu0hdbuwb4mJIrocpKfnVjbZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sl", - "file_path": "/oSmB6sn2CxOumnc5xO0xz6IglVM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1000, - "iso_639_1": "sl", - "file_path": "/3oVJngN4DuHaMleNFLMGqLolLlA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 700 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gtngzBAmyHMCV2rMCqE2WHd0KDJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/pxp9dNVt2xjVXtGMnRHraAh74M9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/wgJLvp6a18iSoOVtb5ztuVKkRdW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/9YVS38Acvsh8DvE60vmk62YTSnr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1188, - "iso_639_1": "en", - "file_path": "/4vtQtCsuG5TeTEz3bEBrXe49F5E.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 792 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "th", - "file_path": "/2nSc26eIByawbJi3itrMzHmAkuy.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2304, - "iso_639_1": "en", - "file_path": "/wrhAUbUeKDelGjDe8HNP48BFiuN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1536 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/lpNNGYfOwkDFY3Law6sfetfEV7f.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/606403.json b/examples/view-transitions/src/content/movies/606403.json deleted file mode 100644 index 6d2d1a2f5..000000000 --- a/examples/view-transitions/src/content/movies/606403.json +++ /dev/null @@ -1,1141 +0,0 @@ -{ - "id": 606403, - "data": { - "adult": false, - "backdrop_path": "/3mYCjwll5RG342Dz1f8HcnT8tV.jpg", - "belongs_to_collection": null, - "budget": 0, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 80, "name": "Crime" } - ], - "homepage": "", - "id": 606403, - "imdb_id": "tt16529222", - "original_language": "ko", - "original_title": "특송", - "overview": "Eun-ha, who is a normal junkyard employee, secretly works as a delivery clerk that deals with unusual delivery requests. One day, Eun-ha heads to Seoul to pick up a client who is involved in a gambling crime that wants to flee overseas. However, Eun-ha meets the client's young son at the pick-up point, instead of the client himself. Kyeong-pil, a current police officer who is actually masterminding the whole gambling crime, chases after the missing child who has the security key to the bank account that holds 30 million dollars.", - "popularity": 525.582, - "poster_path": "/fYT7JB4sU1XXeawEXOdQ3TtkFB2.jpg", - "production_companies": [ - { - "id": 20064, - "logo_path": "/2In7Heq6DuXDjOwPmJqHWkpohaL.png", - "name": "Next Entertainment World", - "origin_country": "KR" - }, - { "id": 120829, "logo_path": null, "name": "M Pictures", "origin_country": "KR" } - ], - "production_countries": [{ "iso_3166_1": "KR", "name": "South Korea" }], - "release_date": "2022-01-12", - "revenue": 0, - "runtime": 109, - "spoken_languages": [{ "english_name": "Korean", "iso_639_1": "ko", "name": "한국어/조선말" }], - "status": "Released", - "tagline": "Deliver anything you want.", - "title": "Special Delivery", - "video": false, - "vote_average": 6.9, - "vote_count": 105, - "credits": { - "cast": [ - { - "adult": false, - "gender": 1, - "id": 1442583, - "known_for_department": "Acting", - "name": "Park So-dam", - "original_name": "Park So-dam", - "popularity": 12.261, - "profile_path": "/gaDnEiMD5PClT9ARg1bSFyexbor.jpg", - "cast_id": 2, - "character": "Jang Eun-ha", - "credit_id": "5cf3d4430e0a2624ddcb3214", - "order": 0 - }, - { - "adult": false, - "gender": 2, - "id": 1347175, - "known_for_department": "Acting", - "name": "Kim Eui-sung", - "original_name": "Kim Eui-sung", - "popularity": 4.406, - "profile_path": "/y7T2LJyorTK2NDk10yeTINWKrWR.jpg", - "cast_id": 3, - "character": "CEO Baek", - "credit_id": "5cf3d44ac3a368735b25d491", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 1299516, - "known_for_department": "Acting", - "name": "Song Sae-byuk", - "original_name": "Song Sae-byuk", - "popularity": 4.935, - "profile_path": "/1xi4n5pkh5e2v3dtavPMT0sa55x.jpg", - "cast_id": 4, - "character": "Cho Gyeong-pil", - "credit_id": "5cf5cfdf0e0a2619d3cfbcc8", - "order": 2 - }, - { - "adult": false, - "gender": 1, - "id": 2084416, - "known_for_department": "Acting", - "name": "Yeom Hye-ran", - "original_name": "Yeom Hye-ran", - "popularity": 14.976, - "profile_path": "/xZxVHnbDdNxF6J8UhwBTkJGNKWx.jpg", - "cast_id": 7, - "character": "Han Mi-Young", - "credit_id": "5d2e7467caab6d16409af4a1", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 2306987, - "known_for_department": "Acting", - "name": "Jung Hyeon-jun", - "original_name": "Jung Hyeon-jun", - "popularity": 8.863, - "profile_path": "/vZadA6ip6V2kh0VZW9RwnLcYFgW.jpg", - "cast_id": 5, - "character": "Kim Seo-won", - "credit_id": "5cf5cfe70e0a26169fcbfb13", - "order": 4 - }, - { - "adult": false, - "gender": 2, - "id": 1346848, - "known_for_department": "Acting", - "name": "Yeon Woo-jin", - "original_name": "Yeon Woo-jin", - "popularity": 5.591, - "profile_path": "/oGOpjHfwifYd3hVohVFbxmA7Aoe.jpg", - "cast_id": 6, - "character": "Doo-sik", - "credit_id": "5d2e745827d9cc00137c0477", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 1332468, - "known_for_department": "Acting", - "name": "Heo Dong-won", - "original_name": "Heo Dong-won", - "popularity": 9.069, - "profile_path": "/2ozJdoP76fZvlLo1MhqPunoy6CW.jpg", - "cast_id": 8, - "character": "Sang-hoon", - "credit_id": "5d2e746f6a300b58c5a2621f", - "order": 6 - }, - { - "adult": false, - "gender": 2, - "id": 1970653, - "known_for_department": "Acting", - "name": "Han Hyun-min", - "original_name": "Han Hyun-min", - "popularity": 4.376, - "profile_path": "/ro36V17oO6fHfUUbXRRQQWdJO4l.jpg", - "cast_id": 26, - "character": "Aasif", - "credit_id": "6207e221fab3fa00492aaf3a", - "order": 7 - }, - { - "adult": false, - "gender": 2, - "id": 1199744, - "known_for_department": "Acting", - "name": "Jun Suk-ho", - "original_name": "Jun Suk-ho", - "popularity": 5.482, - "profile_path": "/xMUCuermXrjVNOWDV3gIfpP5yhF.jpg", - "cast_id": 27, - "character": "Man", - "credit_id": "6207e240fab3fa00e7d2be24", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 141857, - "known_for_department": "Acting", - "name": "Choi Deok-moon", - "original_name": "Choi Deok-moon", - "popularity": 5.832, - "profile_path": "/2yNTH3Dm1tmN795ExtNsIE1IaNA.jpg", - "cast_id": 28, - "character": "Lim Gi-bang", - "credit_id": "6207e250848eb90067fc6748", - "order": 9 - }, - { - "adult": false, - "gender": 2, - "id": 110382, - "known_for_department": "Acting", - "name": "Yoo Seung-ho", - "original_name": "Yoo Seung-ho", - "popularity": 10.319, - "profile_path": "/cDkIwmfjChprlO7qaoDQl1Em54P.jpg", - "cast_id": 29, - "character": "Last Man", - "credit_id": "6207e25e1d78f200421f4517", - "order": 10 - }, - { - "adult": false, - "gender": 2, - "id": 509648, - "known_for_department": "Acting", - "name": "Jo Hee-bong", - "original_name": "Jo Hee-bong", - "popularity": 8.6, - "profile_path": "/3Fj9bijDL3A93o7XLM1sGYRcAIf.jpg", - "cast_id": 30, - "character": "Kim", - "credit_id": "6207e27f945d36008a823766", - "order": 11 - }, - { - "adult": false, - "gender": 2, - "id": 3930979, - "known_for_department": "Acting", - "name": "Baek Do-kyeom", - "original_name": "Baek Do-kyeom", - "popularity": 0.608, - "profile_path": "/2v6ry8opDW2z5Iz2Hz3GIB5H0x4.jpg", - "cast_id": 43, - "character": "Young-gil", - "credit_id": "63f36cf7a24c5000c0ba03bc", - "order": 12 - }, - { - "adult": false, - "gender": 2, - "id": 3275193, - "known_for_department": "Acting", - "name": "Han Kyu-won", - "original_name": "Han Kyu-won", - "popularity": 1.1, - "profile_path": "/86QTcqMSH75zqh6T6jL4F0uXAlQ.jpg", - "cast_id": 45, - "character": "Lee Do-young", - "credit_id": "64886e6f99259c011c41e7ac", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 3851351, - "known_for_department": "Acting", - "name": "Kang Joon-kyu", - "original_name": "Kang Joon-kyu", - "popularity": 0.6, - "profile_path": "/6Qeh0pBA5pxooxJ9tQHwTlQEPze.jpg", - "cast_id": 46, - "character": "Motel Part-timer", - "credit_id": "64c7c3e595ce24013b9c9755", - "order": 14 - } - ], - "crew": [ - { - "adult": false, - "gender": 1, - "id": 43570, - "known_for_department": "Costume & Make-Up", - "name": "Cho Sang-kyung", - "original_name": "Cho Sang-kyung", - "popularity": 2.483, - "profile_path": "/aTd5Tq5P6a41Q4kYRn9yxuj8xy8.jpg", - "credit_id": "6207df9338e51011efd525ec", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 2, - "id": 64337, - "known_for_department": "Production", - "name": "Kim Woo-taek", - "original_name": "Kim Woo-taek", - "popularity": 2.225, - "profile_path": null, - "credit_id": "6207db36efd3c200bb939f64", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 69388, - "known_for_department": "Editing", - "name": "Kim Sun-min", - "original_name": "Kim Sun-min", - "popularity": 1.052, - "profile_path": "/7ILTSodPDZTcHtbMdVcJNiOQNgY.jpg", - "credit_id": "6207dd3c93388b00df0f2ba2", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 141167, - "known_for_department": "Lighting", - "name": "Kim Jae-keun", - "original_name": "Kim Jae-keun", - "popularity": 1.027, - "profile_path": null, - "credit_id": "6207dbfbcba36f01098aeded", - "department": "Lighting", - "job": "Lighting Director" - }, - { - "adult": false, - "gender": 2, - "id": 1023610, - "known_for_department": "Directing", - "name": "Park Dae-min", - "original_name": "Park Dae-min", - "popularity": 1.573, - "profile_path": null, - "credit_id": "5cf3d43bc3a36839e41fe6dd", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 1023610, - "known_for_department": "Directing", - "name": "Park Dae-min", - "original_name": "Park Dae-min", - "popularity": 1.573, - "profile_path": null, - "credit_id": "5d2e74826a300b5922a331bc", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 2, - "id": 1294102, - "known_for_department": "Sound", - "name": "Han Myung-hwan", - "original_name": "Han Myung-hwan", - "popularity": 1.019, - "profile_path": null, - "credit_id": "6207dfe21d78f200421f41c3", - "department": "Sound", - "job": "Sound Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1299209, - "known_for_department": "Sound", - "name": "Hwang Sang-jun", - "original_name": "Hwang Sang-jun", - "popularity": 2.474, - "profile_path": null, - "credit_id": "6207dd5301432500b6c4f063", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 0, - "id": 1314075, - "known_for_department": "Camera", - "name": "Hong Jae-sik", - "original_name": "Hong Jae-sik", - "popularity": 1.96, - "profile_path": null, - "credit_id": "6207db49014325008d218e69", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 0, - "id": 2197563, - "known_for_department": "Visual Effects", - "name": "Hong Jang-pyo", - "original_name": "Hong Jang-pyo", - "popularity": 0.732, - "profile_path": null, - "credit_id": "621068c04f9a99006c237db0", - "department": "Visual Effects", - "job": "Special Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2310648, - "known_for_department": "Costume & Make-Up", - "name": "Jang Yoon-jung", - "original_name": "Jang Yoon-jung", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6207dfb2fab3fa00b2e7b962", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 2310885, - "known_for_department": "Editing", - "name": "Hwang Eun-ju", - "original_name": "Hwang Eun-ju", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61e40ebc904f6d008ea71062", - "department": "Editing", - "job": "Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 2363450, - "known_for_department": "Production", - "name": "Kim Bong-seo", - "original_name": "Kim Bong-seo", - "popularity": 1.31, - "profile_path": null, - "credit_id": "5d2e74a2caab6d0b2998c60d", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2363450, - "known_for_department": "Production", - "name": "Kim Bong-seo", - "original_name": "Kim Bong-seo", - "popularity": 1.31, - "profile_path": null, - "credit_id": "6207db14e640d600b44b0089", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 0, - "id": 2363452, - "known_for_department": "Production", - "name": "Ju Seung-hwan", - "original_name": "Ju Seung-hwan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "5d2e759a6a300b58c5a26638", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 2388372, - "known_for_department": "Art", - "name": "Lee Tae-hoon", - "original_name": "Lee Tae-hoon", - "popularity": 0.828, - "profile_path": null, - "credit_id": "6207dd699408ec512adf08a2", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 0, - "id": 2395041, - "known_for_department": "Art", - "name": "Choi Hong-seob", - "original_name": "Choi Hong-seob", - "popularity": 0.98, - "profile_path": null, - "credit_id": "629ba216a284eb005097e5a9", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 0, - "id": 2499559, - "known_for_department": "Editing", - "name": "Park Jin-ho", - "original_name": "Park Jin-ho", - "popularity": 2.084, - "profile_path": null, - "credit_id": "62753f53d64ac20052808337", - "department": "Editing", - "job": "Digital Intermediate" - }, - { - "adult": false, - "gender": 0, - "id": 2500112, - "known_for_department": "Camera", - "name": "Woo Geum-ho", - "original_name": "Woo Geum-ho", - "popularity": 0.917, - "profile_path": null, - "credit_id": "634977b41b1f3c0079e6ed4d", - "department": "Camera", - "job": "Camera Car" - }, - { - "adult": false, - "gender": 0, - "id": 2868495, - "known_for_department": "Art", - "name": "Jeong In-cheol", - "original_name": "Jeong In-cheol", - "popularity": 0.6, - "profile_path": null, - "credit_id": "629ba59bd71fb474e0e12c55", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 0, - "id": 3031815, - "known_for_department": "Crew", - "name": "Choi Seong-kyum", - "original_name": "Choi Seong-kyum", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6274f635a313b82f7311eee9", - "department": "Crew", - "job": "Martial Arts Choreographer" - }, - { - "adult": false, - "gender": 0, - "id": 3118286, - "known_for_department": "Directing", - "name": "Park Dong-hee", - "original_name": "Park Dong-hee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "622f106e98f1f100459e91a3", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 2, - "id": 3174584, - "known_for_department": "Crew", - "name": "Choi Dong-hun", - "original_name": "Choi Dong-hun", - "popularity": 1.094, - "profile_path": null, - "credit_id": "6307809ea27502007eee2192", - "department": "Crew", - "job": "Martial Arts Choreographer" - }, - { - "adult": false, - "gender": 0, - "id": 3200807, - "known_for_department": "Visual Effects", - "name": "Park Ui-dong", - "original_name": "Park Ui-dong", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62522ef4a055ef009ddb8a45", - "department": "Visual Effects", - "job": "Visual Effects" - }, - { - "adult": false, - "gender": 0, - "id": 3384921, - "known_for_department": "Production", - "name": "Kim Sung-hoon", - "original_name": "Kim Sung-hoon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61e40a9bfdc4fa009c69e271", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3423411, - "known_for_department": "Art", - "name": "Jang Seok-ho", - "original_name": "Jang Seok-ho", - "popularity": 0.84, - "profile_path": null, - "credit_id": "6207dd9ed7fbda001c47b9b8", - "department": "Art", - "job": "Props" - }, - { - "adult": false, - "gender": 0, - "id": 3423427, - "known_for_department": "Sound", - "name": "Ahn Sung-il", - "original_name": "Ahn Sung-il", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6207e02c848eb9009cf19015", - "department": "Sound", - "job": "Production Sound Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 3676269, - "known_for_department": "Art", - "name": "Lee Jin-hyung", - "original_name": "Lee Jin-hyung", - "popularity": 0.694, - "profile_path": null, - "credit_id": "63078050a2750200923bf1d8", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 3697990, - "known_for_department": "Visual Effects", - "name": "Bae Sang-min", - "original_name": "Bae Sang-min", - "popularity": 1.259, - "profile_path": null, - "credit_id": "631f392e0bb076007b79c6ec", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 3891529, - "known_for_department": "Crew", - "name": "Kim Tae-kang", - "original_name": "Kim Tae-kang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63d282499f51af00dc260dbd", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4086574, - "known_for_department": "Crew", - "name": "Suh Jeong-woo", - "original_name": "Suh Jeong-woo", - "popularity": 1.4, - "profile_path": null, - "credit_id": "64746d8fbe2d4900dcdb8ed0", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4224511, - "known_for_department": "Crew", - "name": "Lim Hyo-woo", - "original_name": "Lim Hyo-woo", - "popularity": 0.841, - "profile_path": null, - "credit_id": "64e1e582b77d4b1141fa5571", - "department": "Crew", - "job": "Stunts" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "UK Trailer", - "key": "RIuWQPIaDFw", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2022-07-12T10:25:20.000Z", - "id": "62cd701e4a4bfc0055ed56c9" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "[특송] Global Teaser Trailer (Special Delivery)", - "key": "AhVm_0U-Tqc", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": false, - "published_at": "2021-12-07T08:52:59.000Z", - "id": "61bd9018d2f5b5001ca89188" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 1152, - "iso_639_1": null, - "file_path": "/3mYCjwll5RG342Dz1f8HcnT8tV.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2048 - }, - { - "aspect_ratio": 1.777, - "height": 721, - "iso_639_1": null, - "file_path": "/xHVYpeGQgswANURYadqVxz2jsWx.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1281 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/6LmRTynUhi2oE8UyYshJDjYXlW6.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/pAISUx3tmaAg5x4n5pLPAgEdhp6.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 721, - "iso_639_1": null, - "file_path": "/rPeNbfYHwAqWZsTxM2jy4i6JS15.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1281 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/vJtxYjFJGAeZQqcG3I4ZwC8oz8l.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "ru", - "file_path": "/nhpPQxA7rBwsd3hFCIjAJzms15k.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - } - ], - "logos": [ - { - "aspect_ratio": 5.282, - "height": 284, - "iso_639_1": "ru", - "file_path": "/i2DXMSCPoAY49CLWug8lK2on1YC.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1500 - }, - { - "aspect_ratio": 6.032, - "height": 93, - "iso_639_1": "en", - "file_path": "/hpInxOPnUtVcQzgEtumohZVEaFh.png", - "vote_average": 0, - "vote_count": 0, - "width": 561 - }, - { - "aspect_ratio": 2.195, - "height": 292, - "iso_639_1": "ko", - "file_path": "/eUB18TPBsTRFQRVRd3QbzSjsyYt.png", - "vote_average": 0, - "vote_count": 0, - "width": 641 - }, - { - "aspect_ratio": 4.489, - "height": 401, - "iso_639_1": "en", - "file_path": "/eX766qB8E06BfnrDXwh742vMqPG.png", - "vote_average": 0, - "vote_count": 0, - "width": 1800 - }, - { - "aspect_ratio": 5.377, - "height": 106, - "iso_639_1": "ru", - "file_path": "/zKS3KZ7mBqV7wJzMNYb74qk7p5s.png", - "vote_average": 0, - "vote_count": 0, - "width": 570 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ko", - "file_path": "/hDQndBAnyk1MCwszODgb5BgM6go.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/fYT7JB4sU1XXeawEXOdQ3TtkFB2.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1429, - "iso_639_1": "ko", - "file_path": "/2mTwoa29q3xFmPZCDyRmDNufnfh.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 953 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/6v1N2SBhaF8lTBgsjfTAgVmS5q9.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/iFUBAfMDlFOck29BEwS1awH5TB3.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/9onQupQsxZQ4zgQzvRCAZJhobHu.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "uk", - "file_path": "/7Pg2LW6qCNSp1AHybsN6dUsB0F2.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1029, - "iso_639_1": "ko", - "file_path": "/3BUTPMxMIQjRLSUQWGlh3HBBvz0.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 686 - }, - { - "aspect_ratio": 0.667, - "height": 1995, - "iso_639_1": "ko", - "file_path": "/zxxSYbgEyJgmqoNMonWUuyQNT8c.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1330 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/bVNeIjCbOszfmF1C55veZau8Pe2.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/2LNHaoGjrRj4CoaUW2Jl4ycxS4p.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/9Km5vHWS8FuuI41UJ2DLozxOhVD.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/bUsA8GqPd3GBWmkFXW0hc2R4zl4.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/3KyXXqJCNcnZzqXyAFgvcCcwGmE.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 500 - }, - { - "aspect_ratio": 0.708, - "height": 2161, - "iso_639_1": "sl", - "file_path": "/euxUqXKf1tzBqitTzXpLljgra47.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1529 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/jpvDX4pDX5smklDLYbRBBzbcLb1.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.7, - "height": 1542, - "iso_639_1": "zh", - "file_path": "/ocuUuZi9wtPlyTssnOCmBI6uzmG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "vi", - "file_path": "/f0RdBn6zb95ssK7qF5xqG1SgFFP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.71, - "height": 1080, - "iso_639_1": "cn", - "file_path": "/3V8ZzlJpUpoW0MNh6V7t5VXynC8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 767 - }, - { - "aspect_ratio": 0.666, - "height": 2000, - "iso_639_1": "cn", - "file_path": "/vL5XxOnVEViHD7sWmYAOMqVFy50.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1333 - }, - { - "aspect_ratio": 0.75, - "height": 1600, - "iso_639_1": "en", - "file_path": "/5mZABR2jWQ8ONZAV85EXSw1CDLg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.666, - "height": 1763, - "iso_639_1": "en", - "file_path": "/zDV9d15Ma94Z6aH5CJqtaS76JSx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1175 - }, - { - "aspect_ratio": 0.702, - "height": 1026, - "iso_639_1": "th", - "file_path": "/1O7uj01VEimGSmOjXN73T2IkFlR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 720 - }, - { - "aspect_ratio": 0.702, - "height": 1710, - "iso_639_1": "th", - "file_path": "/6w3jXwx3hsk4ufURO720ULs22jz.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 1261, - "iso_639_1": "ko", - "file_path": "/oSS8RkGQQv2ubY3YaPTyEfnJP2Y.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 841 - }, - { - "aspect_ratio": 0.666, - "height": 1262, - "iso_639_1": "ko", - "file_path": "/n1rzu5vQKuePO4DrfM2ai1bRuBH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 841 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ko", - "file_path": "/7smWdFpPQKD0zJjsLcbTZDgbVCi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.702, - "height": 2850, - "iso_639_1": "ar", - "file_path": "/oNOT2hH1eHBcqJTGep7n5sgqwl5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/jqcqUZ4yjM1Gl9DRMfBTjO2Z4fy.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.702, - "height": 2850, - "iso_639_1": "id", - "file_path": "/hkeKMEeSBgA8nEv5SnAK8ogfSyQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "ru", - "file_path": "/tb1z34QYPk6H2TiPKscVt7v1abR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 2700, - "iso_639_1": "es", - "file_path": "/moaVBVdDqcyyTM6UT8enXH3jc3c.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1800 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/2z8ejVuHZD0f6D0ZxUwwUbZzzwR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.71, - "height": 1080, - "iso_639_1": null, - "file_path": "/xyZec8lW8nEk0BpgAwBe7LKBqTi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 767 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/jyS25c7sf6p22jf5dGtrMufrcoF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.71, - "height": 1080, - "iso_639_1": null, - "file_path": "/s9k5BR3Rad1UCO53GkCYW7d4BNT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 767 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/614930.json b/examples/view-transitions/src/content/movies/614930.json deleted file mode 100644 index 6eeaf1446..000000000 --- a/examples/view-transitions/src/content/movies/614930.json +++ /dev/null @@ -1,4687 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/w2nFc2Rsm93PDkvjY4LTn17ePO0.jpg", - "belongs_to_collection": { - "id": 1156855, - "name": "Teenage Mutant Ninja Turtles: Mutant Mayhem Collection", - "poster_path": "/2f3DNUlGW4nlPSdWlhnDTKRnteC.jpg", - "backdrop_path": "/xVWfbv1wqIZshjJqHvmyjLGlV02.jpg" - }, - "budget": 70000000, - "genres": [ - { "id": 16, "name": "Animation" }, - { "id": 35, "name": "Comedy" }, - { "id": 28, "name": "Action" } - ], - "homepage": "https://www.teenagemutantninjaturtlesmovie.com", - "id": 614930, - "imdb_id": "tt8589698", - "original_language": "en", - "original_title": "Teenage Mutant Ninja Turtles: Mutant Mayhem", - "overview": "After years of being sheltered from the human world, the Turtle brothers set out to win the hearts of New Yorkers and be accepted as normal teenagers through heroic acts. Their new friend April O'Neil helps them take on a mysterious crime syndicate, but they soon get in over their heads when an army of mutants is unleashed upon them.", - "popularity": 644.874, - "poster_path": "/ueO9MYIOHO7M1PiMUeX74uf8fB9.jpg", - "production_companies": [ - { - "id": 4, - "logo_path": "/gz66EfNoYPqHTYI4q9UEN4CbHRc.png", - "name": "Paramount", - "origin_country": "US" - }, - { - "id": 2348, - "logo_path": "/oydqrfwRAm6qqdYbxuMmmPsVi87.png", - "name": "Nickelodeon Movies", - "origin_country": "US" - }, - { - "id": 16615, - "logo_path": "/5au3v0r2brGaegO9EQ0nodLkmQ1.png", - "name": "Point Grey Pictures", - "origin_country": "US" - }, - { - "id": 199314, - "logo_path": "/zVfq3R7Ue0Ho0XnfgyK63fMGk2j.png", - "name": "Mikros Animation", - "origin_country": "FR" - }, - { "id": 75234, "logo_path": null, "name": "Cinesite Animation", "origin_country": "CA" } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "2023-07-31", - "revenue": 161000000, - "runtime": 100, - "spoken_languages": [ - { "english_name": "English", "iso_639_1": "en", "name": "English" }, - { "english_name": "Mandarin", "iso_639_1": "zh", "name": "普通话" } - ], - "status": "Released", - "tagline": "Heroes aren't born. They're mutated.", - "title": "Teenage Mutant Ninja Turtles: Mutant Mayhem", - "video": false, - "vote_average": 7.4, - "vote_count": 545, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 2343267, - "known_for_department": "Acting", - "name": "Micah Abbey", - "original_name": "Micah Abbey", - "popularity": 3.245, - "profile_path": "/nfQGd7AblQuHloLY3R4Lr46jQhL.jpg", - "cast_id": 10, - "character": "Donatello (voice)", - "credit_id": "6403f389021cee00810e2bcf", - "order": 0 - }, - { - "adult": false, - "gender": 2, - "id": 3127719, - "known_for_department": "Acting", - "name": "Shamon Brown Jr.", - "original_name": "Shamon Brown Jr.", - "popularity": 4.456, - "profile_path": "/cZLR1muqSubjevOse7xvZWppMBd.jpg", - "cast_id": 9, - "character": "Michelangelo (voice)", - "credit_id": "6403f379e61e6d00c6580da7", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 1696351, - "known_for_department": "Acting", - "name": "Nicolas Cantu", - "original_name": "Nicolas Cantu", - "popularity": 11.29, - "profile_path": "/ySFxLOQ9ejiZddviRVf9bhZvDsf.jpg", - "cast_id": 8, - "character": "Leonardo (voice)", - "credit_id": "6403f35a383df2008694256d", - "order": 2 - }, - { - "adult": false, - "gender": 2, - "id": 2239159, - "known_for_department": "Acting", - "name": "Brady Noon", - "original_name": "Brady Noon", - "popularity": 15.258, - "profile_path": "/qn7dJS2XxKfSoJdK9BVgFiPEeCJ.jpg", - "cast_id": 11, - "character": "Raphael (voice)", - "credit_id": "6403f39867dcc900826e3aa3", - "order": 3 - }, - { - "adult": false, - "gender": 1, - "id": 2195140, - "known_for_department": "Acting", - "name": "Ayo Edebiri", - "original_name": "Ayo Edebiri", - "popularity": 12.118, - "profile_path": "/rhI5KCgJTqmHlOYmEXfbo5BzjHK.jpg", - "cast_id": 13, - "character": "April O'Neil (voice)", - "credit_id": "6403f3b03927120086184411", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 52792, - "known_for_department": "Acting", - "name": "Maya Rudolph", - "original_name": "Maya Rudolph", - "popularity": 14.609, - "profile_path": "/9QTtEfAmQOQcGhD12zzxdouLRh4.jpg", - "cast_id": 21, - "character": "Cynthia Utrom (voice)", - "credit_id": "6403f44c392712008d329492", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 56446, - "known_for_department": "Acting", - "name": "John Cena", - "original_name": "John Cena", - "popularity": 32.459, - "profile_path": "/6EZaBiQHx3Xlz3j0D6ttDxHXaxr.jpg", - "cast_id": 15, - "character": "Rocksteady (voice)", - "credit_id": "6403f3dfe61e6d008e3fd49e", - "order": 6 - }, - { - "adult": false, - "gender": 2, - "id": 19274, - "known_for_department": "Acting", - "name": "Seth Rogen", - "original_name": "Seth Rogen", - "popularity": 11.967, - "profile_path": "/2dPFskUtoiG0xafsSEGl9Oz4teA.jpg", - "cast_id": 6, - "character": "Bebop (voice)", - "credit_id": "62eea4884557a0007d4fcc48", - "order": 7 - }, - { - "adult": false, - "gender": 1, - "id": 9827, - "known_for_department": "Acting", - "name": "Rose Byrne", - "original_name": "Rose Byrne", - "popularity": 36.078, - "profile_path": "/4oQWCLK7gd6RNKF0WJipJo7TyFP.jpg", - "cast_id": 18, - "character": "Leatherhead (voice)", - "credit_id": "6403f413392712008618445c", - "order": 8 - }, - { - "adult": false, - "gender": 1, - "id": 1971031, - "known_for_department": "Acting", - "name": "Natasia Demetriou", - "original_name": "Natasia Demetriou", - "popularity": 8.32, - "profile_path": "/65aNRTM520iUaBUoSyfyXHXY8xH.jpg", - "cast_id": 17, - "character": "Wingnut (voice)", - "credit_id": "6403f408136545009e7b75ce", - "order": 9 - }, - { - "adult": false, - "gender": 2, - "id": 4808, - "known_for_department": "Acting", - "name": "Giancarlo Esposito", - "original_name": "Giancarlo Esposito", - "popularity": 27.076, - "profile_path": "/lBvDQZjxhIGMbH61iHnqerpbqHc.jpg", - "cast_id": 22, - "character": "Baxter Stockman (voice)", - "credit_id": "6403f45b13654500965ce671", - "order": 10 - }, - { - "adult": false, - "gender": 2, - "id": 18897, - "known_for_department": "Acting", - "name": "Jackie Chan", - "original_name": "Jackie Chan", - "popularity": 88.744, - "profile_path": "/nraZoTzwJQPHspAVsKfgl3RXKKa.jpg", - "cast_id": 12, - "character": "Splinter (voice)", - "credit_id": "6403f39f021cee00810e2be4", - "order": 11 - }, - { - "adult": false, - "gender": 2, - "id": 9778, - "known_for_department": "Acting", - "name": "Ice Cube", - "original_name": "Ice Cube", - "popularity": 16.785, - "profile_path": "/ymR7Yll7HjL6i6Z3pt435hYi91T.jpg", - "cast_id": 14, - "character": "Superfly (voice)", - "credit_id": "6403f3ca67dcc900d481882b", - "order": 12 - }, - { - "adult": false, - "gender": 2, - "id": 22226, - "known_for_department": "Acting", - "name": "Paul Rudd", - "original_name": "Paul Rudd", - "popularity": 29.888, - "profile_path": "/9iBLPdj6AVnfBI1B2c0vTnGRR24.jpg", - "cast_id": 16, - "character": "Mondo Gecko (voice)", - "credit_id": "6403f3ea13654500965ce60f", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 1821863, - "known_for_department": "Acting", - "name": "Post Malone", - "original_name": "Post Malone", - "popularity": 11.19, - "profile_path": "/v25LUebWdx60p6mMy1OzIHc0EVs.jpg", - "cast_id": 19, - "character": "Ray Fillet (voice)", - "credit_id": "6403f42be61e6d0086dfe3aa", - "order": 14 - }, - { - "adult": false, - "gender": 2, - "id": 500427, - "known_for_department": "Acting", - "name": "Hannibal Buress", - "original_name": "Hannibal Buress", - "popularity": 12.24, - "profile_path": "/mcw3Orbg4vbALXTVG4hriZjH1sj.jpg", - "cast_id": 20, - "character": "Genghis Frog (voice)", - "credit_id": "6403f43913654500791b9b7d", - "order": 15 - }, - { - "adult": false, - "gender": 2, - "id": 2282154, - "known_for_department": "Acting", - "name": "Jimmy Donaldson", - "original_name": "Jimmy Donaldson", - "popularity": 2.4, - "profile_path": "/dE6VIMrvZsY5a9gIaWoX40tzYkV.jpg", - "cast_id": 59, - "character": "Times Square Guy (voice)", - "credit_id": "64c84d3fb97442010c1d4879", - "order": 16 - }, - { - "adult": false, - "gender": 2, - "id": 1633357, - "known_for_department": "Acting", - "name": "Derek Wilson", - "original_name": "Derek Wilson", - "popularity": 2.618, - "profile_path": "/oOvJLNW7WSuf2ZU9wLN0wK3i78a.jpg", - "cast_id": 60, - "character": "Spider (voice)", - "credit_id": "64c84d69f794ad013959711b", - "order": 17 - }, - { - "adult": false, - "gender": 2, - "id": 4182292, - "known_for_department": "Production", - "name": "Lukas Williams", - "original_name": "Lukas Williams", - "popularity": 0.6, - "profile_path": null, - "cast_id": 61, - "character": "Curious Goon (voice)", - "credit_id": "64c84d7e08cf8700e27743d4", - "order": 18 - }, - { - "adult": false, - "gender": 2, - "id": 1010, - "known_for_department": "Acting", - "name": "Michael Badalucco", - "original_name": "Michael Badalucco", - "popularity": 7.378, - "profile_path": "/ntqAjxrBsyXbRzAaln4ynSBTE1r.jpg", - "cast_id": 62, - "character": "Bad Bernie (voice)", - "credit_id": "64c84d991fa1c80130dc63ea", - "order": 19 - }, - { - "adult": false, - "gender": 2, - "id": 167756, - "known_for_department": "Acting", - "name": "Dempsey Pappion", - "original_name": "Dempsey Pappion", - "popularity": 7.181, - "profile_path": "/IxBp8pmWqXRUKnD6Ue4RxGROxd.jpg", - "cast_id": 63, - "character": "Bald Bronson (voice)", - "credit_id": "64c84dbcf794ad00fff3ecfa", - "order": 20 - }, - { - "adult": false, - "gender": 2, - "id": 31007, - "known_for_department": "Acting", - "name": "John Capodice", - "original_name": "John Capodice", - "popularity": 9.013, - "profile_path": "/lN5VuGKFqfOFH5F8zso34I77sy2.jpg", - "cast_id": 64, - "character": "Cab Driver (voice)", - "credit_id": "64c84ddb1fa1c800eeae39d1", - "order": 21 - }, - { - "adult": false, - "gender": 1, - "id": 3763977, - "known_for_department": "Acting", - "name": "Andia Winslow", - "original_name": "Andia Winslow", - "popularity": 0.704, - "profile_path": null, - "cast_id": 65, - "character": "TV Anchor (voice)", - "credit_id": "64c84df5b9744200eb519cd6", - "order": 22 - }, - { - "adult": false, - "gender": 1, - "id": 3274036, - "known_for_department": "Acting", - "name": "Raechel Wong", - "original_name": "Raechel Wong", - "popularity": 1.659, - "profile_path": "/jPTwAg5vh4HGo58o7yWgkeVD1ZK.jpg", - "cast_id": 66, - "character": "News Anchor (voice)", - "credit_id": "64c84e0dd5191f00ffefdebc", - "order": 23 - }, - { - "adult": false, - "gender": 2, - "id": 18978, - "known_for_department": "Acting", - "name": "David Faustino", - "original_name": "David Faustino", - "popularity": 12.457, - "profile_path": "/dNqoFIPkusGDUjjIAX0jmtQV47v.jpg", - "cast_id": 67, - "character": "Normal Nate (voice)", - "credit_id": "64c84e25b97442014e8cbdec", - "order": 24 - }, - { - "adult": false, - "gender": 2, - "id": 61963, - "known_for_department": "Acting", - "name": "Danny Mastrogiorgio", - "original_name": "Danny Mastrogiorgio", - "popularity": 3.472, - "profile_path": "/aSbYZbk7TMgMN0Ec3LpOmEDzQBa.jpg", - "cast_id": 68, - "character": "Toupee Tom / Police Officer (voice)", - "credit_id": "64c84e531fa1c8010f4d73f0", - "order": 25 - }, - { - "adult": false, - "gender": 0, - "id": 3567854, - "known_for_department": "Acting", - "name": "Noel Gibson", - "original_name": "Noel Gibson", - "popularity": 0.643, - "profile_path": null, - "cast_id": 69, - "character": "Responding Police Officer / Military Advisor (voice)", - "credit_id": "64c9e580001bbd00c9a81e93", - "order": 26 - }, - { - "adult": false, - "gender": 0, - "id": 4193053, - "known_for_department": "Editing", - "name": "Myra Owyang", - "original_name": "Myra Owyang", - "popularity": 0.6, - "profile_path": null, - "cast_id": 70, - "character": "Short Sharon (voice)", - "credit_id": "64c9e59ca5743d014f9f6042", - "order": 27 - }, - { - "adult": false, - "gender": 2, - "id": 19502, - "known_for_department": "Acting", - "name": "Kevin Eastman", - "original_name": "Kevin Eastman", - "popularity": 4.328, - "profile_path": "/tLrVQhk0sXQnWKF86trGUidbYGy.jpg", - "cast_id": 71, - "character": "Good Human (voice)", - "credit_id": "64c9e5b2001bbd0126a775c4", - "order": 28 - }, - { - "adult": false, - "gender": 2, - "id": 1254995, - "known_for_department": "Acting", - "name": "Alex Hirsch", - "original_name": "Alex Hirsch", - "popularity": 8.693, - "profile_path": "/jQwmmz7ujRiKGSOHZoTBGiFI3J3.jpg", - "cast_id": 72, - "character": "Bossy Goon / Scumbug (voice)", - "credit_id": "64c9e5d3a5743d00afb434af", - "order": 29 - }, - { - "adult": false, - "gender": 2, - "id": 1647289, - "known_for_department": "Acting", - "name": "Mike Rianda", - "original_name": "Mike Rianda", - "popularity": 3, - "profile_path": "/1MEH4XJ7fSkwA5oCEyx3CckbIva.jpg", - "cast_id": 73, - "character": "Paycheck Goon / Chop Shop Boss / Ratatouille Guard (voice)", - "credit_id": "64c9e63985b10500ac164ff7", - "order": 30 - }, - { - "adult": false, - "gender": 2, - "id": 1420684, - "known_for_department": "Acting", - "name": "Bobby Wagner", - "original_name": "Bobby Wagner", - "popularity": 0.6, - "profile_path": null, - "cast_id": 74, - "character": "Man Who Thought a Giant Rat was a Big Cat (voice)", - "credit_id": "64c9e68cd371970139787d42", - "order": 31 - }, - { - "adult": false, - "gender": 2, - "id": 1554463, - "known_for_department": "Editing", - "name": "Greg Levitan", - "original_name": "Greg Levitan", - "popularity": 0.766, - "profile_path": "/9bLKpacDeZslEzcbBoetr5qIebi.jpg", - "cast_id": 75, - "character": "Gecko Goon (voice)", - "credit_id": "64c9e6a5001bbd00c9a81f4e", - "order": 32 - }, - { - "adult": false, - "gender": 0, - "id": 4193076, - "known_for_department": "Editing", - "name": "Illya Quinteros", - "original_name": "Illya Quinteros", - "popularity": 0.694, - "profile_path": null, - "cast_id": 76, - "character": "Helpful Construction Worker (voice)", - "credit_id": "64c9e6ea0b74e900ac668cdc", - "order": 33 - }, - { - "adult": false, - "gender": 1, - "id": 3066089, - "known_for_department": "Acting", - "name": "Natalie Canizares", - "original_name": "Natalie Canizares", - "popularity": 0.692, - "profile_path": "/3nFVlaoeRdiJ3aP2jsaj6dnJOcJ.jpg", - "cast_id": 77, - "character": "Sign My Baby Mom (voice)", - "credit_id": "64c9e70bdd83fa0139daa2ce", - "order": 34 - }, - { - "adult": false, - "gender": 2, - "id": 2061712, - "known_for_department": "Directing", - "name": "Kyler Spears", - "original_name": "Kyler Spears", - "popularity": 2.303, - "profile_path": "/ciUmi4uGPXvME6Vh4FptrBM5X8D.jpg", - "cast_id": 78, - "character": "Apologetic Goon (voice)", - "credit_id": "64c9e71e85b10500e25319fb", - "order": 35 - }, - { - "adult": false, - "gender": 2, - "id": 1578590, - "known_for_department": "Writing", - "name": "Jeff Rowe", - "original_name": "Jeff Rowe", - "popularity": 5.318, - "profile_path": "/iXZGSHM9C0cNkxs7dlAUPVOKGvm.jpg", - "cast_id": 79, - "character": "Man Who Loves Being Young and Free to Go Places (voice)", - "credit_id": "64c9e741a5743d00ec204db0", - "order": 36 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 8376, - "known_for_department": "Sound", - "name": "Mark A. Mangini", - "original_name": "Mark A. Mangini", - "popularity": 1.205, - "profile_path": "/q2LCMIFYJZlZtSCIJjwS8zfAnfE.jpg", - "credit_id": "64cfba6b303c8500ade4746a", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 2, - "id": 8376, - "known_for_department": "Sound", - "name": "Mark A. Mangini", - "original_name": "Mark A. Mangini", - "popularity": 1.205, - "profile_path": "/q2LCMIFYJZlZtSCIJjwS8zfAnfE.jpg", - "credit_id": "64d0044585090f010691d3cd", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 2, - "id": 8376, - "known_for_department": "Sound", - "name": "Mark A. Mangini", - "original_name": "Mark A. Mangini", - "popularity": 1.205, - "profile_path": "/q2LCMIFYJZlZtSCIJjwS8zfAnfE.jpg", - "credit_id": "64d0043e945d36011c3c825c", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 3186, - "known_for_department": "Sound", - "name": "Trent Reznor", - "original_name": "Trent Reznor", - "popularity": 1.983, - "profile_path": "/gzvgK9ydCfW5Sh9tsEeYcYCnxrh.jpg", - "credit_id": "64739644be2d4900f9943e8b", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 2, - "id": 19502, - "known_for_department": "Acting", - "name": "Kevin Eastman", - "original_name": "Kevin Eastman", - "popularity": 4.328, - "profile_path": "/tLrVQhk0sXQnWKF86trGUidbYGy.jpg", - "credit_id": "641dea9de0ec5100b85afe9c", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 2, - "id": 19503, - "known_for_department": "Writing", - "name": "Peter Laird", - "original_name": "Peter Laird", - "popularity": 1.843, - "profile_path": "/wYgVe1v32dMySKVRJxercnyRICz.jpg", - "credit_id": "641deaa8c9982600cfba80b5", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 2, - "id": 19274, - "known_for_department": "Acting", - "name": "Seth Rogen", - "original_name": "Seth Rogen", - "popularity": 11.967, - "profile_path": "/2dPFskUtoiG0xafsSEGl9Oz4teA.jpg", - "credit_id": "64c1b82bfdc14600e2863f13", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 19274, - "known_for_department": "Acting", - "name": "Seth Rogen", - "original_name": "Seth Rogen", - "popularity": 11.967, - "profile_path": "/2dPFskUtoiG0xafsSEGl9Oz4teA.jpg", - "credit_id": "5f01da198ec4ab00333f05be", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 19274, - "known_for_department": "Acting", - "name": "Seth Rogen", - "original_name": "Seth Rogen", - "popularity": 11.967, - "profile_path": "/2dPFskUtoiG0xafsSEGl9Oz4teA.jpg", - "credit_id": "64bd102985c0a200c898344e", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 54734, - "known_for_department": "Production", - "name": "Evan Goldberg", - "original_name": "Evan Goldberg", - "popularity": 2.944, - "profile_path": "/uKZFcTB7FS47WvRFcp5wv3f7hJM.jpg", - "credit_id": "64c1b843df86a800e7803f9b", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 54734, - "known_for_department": "Production", - "name": "Evan Goldberg", - "original_name": "Evan Goldberg", - "popularity": 2.944, - "profile_path": "/uKZFcTB7FS47WvRFcp5wv3f7hJM.jpg", - "credit_id": "5f01da1015959f00365851dd", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 54734, - "known_for_department": "Production", - "name": "Evan Goldberg", - "original_name": "Evan Goldberg", - "popularity": 2.944, - "profile_path": "/uKZFcTB7FS47WvRFcp5wv3f7hJM.jpg", - "credit_id": "64bd10410ed2ab00c5e3862c", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 142391, - "known_for_department": "Sound", - "name": "Atticus Ross", - "original_name": "Atticus Ross", - "popularity": 2.58, - "profile_path": "/q9FkywKCRqe3pNnhTApHYfnwMiC.jpg", - "credit_id": "64739650a894d600fc552951", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 0, - "id": 184582, - "known_for_department": "Writing", - "name": "Brendan O'Brien", - "original_name": "Brendan O'Brien", - "popularity": 2.281, - "profile_path": null, - "credit_id": "64bd100885c0a200ad6071e0", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 224530, - "known_for_department": "Editing", - "name": "Eric Kissack", - "original_name": "Eric Kissack", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb790d9f4a603b4a082af", - "department": "Editing", - "job": "Additional Editing" - }, - { - "adult": false, - "gender": 2, - "id": 928272, - "known_for_department": "Production", - "name": "Rich Delia", - "original_name": "Rich Delia", - "popularity": 3.755, - "profile_path": "/UiNvcLDmStXxpEmx6JrGKRI7UF.jpg", - "credit_id": "64cfba76549dda00ffa43d5e", - "department": "Production", - "job": "Original Casting" - }, - { - "adult": false, - "gender": 2, - "id": 928531, - "known_for_department": "Visual Effects", - "name": "Chris Kazmier", - "original_name": "Chris Kazmier", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb599d9f4a603bafac94f", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 928595, - "known_for_department": "Production", - "name": "James Weaver", - "original_name": "James Weaver", - "popularity": 1.464, - "profile_path": "/pyUq99G6KgfX1ueTEueCoe3M5go.jpg", - "credit_id": "5f01da06ebb99d00377e93ff", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 1, - "id": 965333, - "known_for_department": "Production", - "name": "Linda LaMontagne", - "original_name": "Linda LaMontagne", - "popularity": 0.936, - "profile_path": null, - "credit_id": "64cfbe1f6d4c97014f429427", - "department": "Production", - "job": "Additional Casting" - }, - { - "adult": false, - "gender": 0, - "id": 1016326, - "known_for_department": "Editing", - "name": "David Croomes", - "original_name": "David Croomes", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbc6385090f010691bc8d", - "department": "Editing", - "job": "Associate Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1084935, - "known_for_department": "Visual Effects", - "name": "Woodrow White", - "original_name": "Woodrow White", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb6b1d9f4a603b549e9b4", - "department": "Visual Effects", - "job": "Lead Character Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1348934, - "known_for_department": "Directing", - "name": "Jacob Streilein", - "original_name": "Jacob Streilein", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbb9785090f00c87d5d22", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1348938, - "known_for_department": "Writing", - "name": "Charlie Parisi", - "original_name": "Charlie Parisi", - "popularity": 0.879, - "profile_path": null, - "credit_id": "64cfbbfdd9f4a603b549eb3a", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1378828, - "known_for_department": "Sound", - "name": "Michael Semanick", - "original_name": "Michael Semanick", - "popularity": 1.559, - "profile_path": "/poGaVc3vdZmkZCvSLNIkkIsxffj.jpg", - "credit_id": "64d004606d4c97010d5117e5", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1380819, - "known_for_department": "Writing", - "name": "Dan Hernandez", - "original_name": "Dan Hernandez", - "popularity": 1.189, - "profile_path": "/qymuWtigXVSn4QNxdkwArAIYxpH.jpg", - "credit_id": "64c1b85e2f1be000ebd59823", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 0, - "id": 1380820, - "known_for_department": "Writing", - "name": "Benji Samit", - "original_name": "Benji Samit", - "popularity": 1.4, - "profile_path": "/ygxt6qf9mkKdn7m21cKBsIOPjl2.jpg", - "credit_id": "64c1b858097c490100d1ec57", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 0, - "id": 1479521, - "known_for_department": "Visual Effects", - "name": "Nicolas Benoit", - "original_name": "Nicolas Benoit", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbf074d67910139ee8efd", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 2, - "id": 1529999, - "known_for_department": "Sound", - "name": "Gabe Hilfer", - "original_name": "Gabe Hilfer", - "popularity": 2.774, - "profile_path": "/gKGYccyssgojChyinkPOr4MdXDN.jpg", - "credit_id": "64c1b7a1df86a800c8e8a42a", - "department": "Sound", - "job": "Music Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1554463, - "known_for_department": "Editing", - "name": "Greg Levitan", - "original_name": "Greg Levitan", - "popularity": 0.766, - "profile_path": "/9bLKpacDeZslEzcbBoetr5qIebi.jpg", - "credit_id": "64cfb984303c8500c613f22e", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1573211, - "known_for_department": "Creator", - "name": "J.J. Villard", - "original_name": "J.J. Villard", - "popularity": 1.12, - "profile_path": "/jsmuy7JhbKw35MBT1mYrK4o1dV5.jpg", - "credit_id": "64cfbd32549dda01393308e0", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 1578590, - "known_for_department": "Writing", - "name": "Jeff Rowe", - "original_name": "Jeff Rowe", - "popularity": 5.318, - "profile_path": "/iXZGSHM9C0cNkxs7dlAUPVOKGvm.jpg", - "credit_id": "64c1b84bdb4ed60101a9ac3a", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 1578590, - "known_for_department": "Writing", - "name": "Jeff Rowe", - "original_name": "Jeff Rowe", - "popularity": 5.318, - "profile_path": "/iXZGSHM9C0cNkxs7dlAUPVOKGvm.jpg", - "credit_id": "5efb66f6e93e950033bfad1b", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 1578590, - "known_for_department": "Writing", - "name": "Jeff Rowe", - "original_name": "Jeff Rowe", - "popularity": 5.318, - "profile_path": "/iXZGSHM9C0cNkxs7dlAUPVOKGvm.jpg", - "credit_id": "64bd1051e9da69014febef15", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 1586107, - "known_for_department": "Production", - "name": "Adam Richards", - "original_name": "Adam Richards", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbe1585090f010691bd1e", - "department": "Production", - "job": "Casting Associate" - }, - { - "adult": false, - "gender": 1, - "id": 1615784, - "known_for_department": "Visual Effects", - "name": "Lauren Airriess", - "original_name": "Lauren Airriess", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbca2549dda00ffa43e20", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 1652044, - "known_for_department": "Sound", - "name": "Christopher Bonis", - "original_name": "Christopher Bonis", - "popularity": 1.065, - "profile_path": null, - "credit_id": "64d003b94d67910139eea2c5", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 1, - "id": 1662923, - "known_for_department": "Visual Effects", - "name": "Sarah Simon", - "original_name": "Sarah Simon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbf60d9f4a603b4a084fe", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 0, - "id": 1721451, - "known_for_department": "Crew", - "name": "Maxime Sirven", - "original_name": "Maxime Sirven", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbef54d679100acf0dd20", - "department": "Editing", - "job": "Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1804366, - "known_for_department": "Visual Effects", - "name": "Jacques Daigle", - "original_name": "Jacques Daigle", - "popularity": 0.636, - "profile_path": null, - "credit_id": "64cfba43549dda00c53f6534", - "department": "Visual Effects", - "job": "Head of Animation" - }, - { - "adult": false, - "gender": 1, - "id": 1819111, - "known_for_department": "Production", - "name": "Daniela Kriston", - "original_name": "Daniela Kriston", - "popularity": 0.97, - "profile_path": null, - "credit_id": "64064b3fb6cff1007cc1515e", - "department": "Production", - "job": "Researcher" - }, - { - "adult": false, - "gender": 2, - "id": 1869297, - "known_for_department": "Visual Effects", - "name": "Jeffrey M. Thompson", - "original_name": "Jeffrey M. Thompson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbd016d4c9700ec57f970", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 1948032, - "known_for_department": "Sound", - "name": "Jesse Dodd", - "original_name": "Jesse Dodd", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d003d26d4c97010d51179e", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1984634, - "known_for_department": "Visual Effects", - "name": "Nacho Molina", - "original_name": "Nacho Molina", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbcc8d9f4a603b875ed87", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 1995080, - "known_for_department": "Production", - "name": "Derek Manzella", - "original_name": "Derek Manzella", - "popularity": 0.677, - "profile_path": null, - "credit_id": "64cfbd516d4c97010d51025d", - "department": "Production", - "job": "Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2001560, - "known_for_department": "Visual Effects", - "name": "Simon Cuisinier", - "original_name": "Simon Cuisinier", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfba4f4d679100e240b27b", - "department": "Visual Effects", - "job": "Head of Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2002552, - "known_for_department": "Visual Effects", - "name": "Arthur Fong", - "original_name": "Arthur Fong", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb9d26d4c9700cb7e39a3", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 2004215, - "known_for_department": "Visual Effects", - "name": "Scott Carroll", - "original_name": "Scott Carroll", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d0b53f945d36011c3cecdb", - "department": "Visual Effects", - "job": "Head of Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2007887, - "known_for_department": "Visual Effects", - "name": "Victor Hareng", - "original_name": "Victor Hareng", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbf0c549dda00ffa43eeb", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 0, - "id": 2010670, - "known_for_department": "Sound", - "name": "Jacob Flack", - "original_name": "Jacob Flack", - "popularity": 1.597, - "profile_path": null, - "credit_id": "64d003de945d3600e26632a6", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 2013835, - "known_for_department": "Visual Effects", - "name": "David Bleich", - "original_name": "David Bleich", - "popularity": 0.68, - "profile_path": null, - "credit_id": "64cfbc9885090f010691bca8", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 2015909, - "known_for_department": "Visual Effects", - "name": "Dustin D'Arnault", - "original_name": "Dustin D'Arnault", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbcae85090f010691bcb3", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 2015914, - "known_for_department": "Visual Effects", - "name": "Yashar Kassai", - "original_name": "Yashar Kassai", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb9bb6d4c97014f4292a4", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 0, - "id": 2016591, - "known_for_department": "Visual Effects", - "name": "David Carrière", - "original_name": "David Carrière", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbf376d4c9700afae24a5", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 0, - "id": 2017385, - "known_for_department": "Production", - "name": "Marie Balland", - "original_name": "Marie Balland", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb962303c8500e338f87c", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2017422, - "known_for_department": "Visual Effects", - "name": "Maxence Verniers-Diers", - "original_name": "Maxence Verniers-Diers", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbe96549dda00acf0941d", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2017425, - "known_for_department": "Visual Effects", - "name": "Tanguy Gourret", - "original_name": "Tanguy Gourret", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbf73549dda01393309df", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 2, - "id": 2061712, - "known_for_department": "Directing", - "name": "Kyler Spears", - "original_name": "Kyler Spears", - "popularity": 2.303, - "profile_path": "/ciUmi4uGPXvME6Vh4FptrBM5X8D.jpg", - "credit_id": "62eea4ab11c066007c50d8bd", - "department": "Directing", - "job": "Co-Director" - }, - { - "adult": false, - "gender": 0, - "id": 2135760, - "known_for_department": "Visual Effects", - "name": "Denis Tassenoy", - "original_name": "Denis Tassenoy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d0b5604d679100acf16050", - "department": "Lighting", - "job": "Lighting Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2168982, - "known_for_department": "Visual Effects", - "name": "Natan Moura", - "original_name": "Natan Moura", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbd36303c85013a155ba1", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 2176989, - "known_for_department": "Sound", - "name": "Chelsea Body", - "original_name": "Chelsea Body", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d003af945d3600ffce0f1f", - "department": "Sound", - "job": "Foley Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 2263741, - "known_for_department": "Production", - "name": "Josh Fagen", - "original_name": "Josh Fagen", - "popularity": 1.4, - "profile_path": null, - "credit_id": "64c1b7ecdf86a801446c3c44", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 2372845, - "known_for_department": "Art", - "name": "Hanna Cho", - "original_name": "Hanna Cho", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbb8c303c850100b135ae", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 2378662, - "known_for_department": "Art", - "name": "Gabriel Lin", - "original_name": "Gabriel Lin", - "popularity": 0.6, - "profile_path": "/rqjaVW9wwZO17TSpE44Q4YjIl1Z.jpg", - "credit_id": "64cfb9ea6d4c9700ec57f873", - "department": "Writing", - "job": "Head of Story" - }, - { - "adult": false, - "gender": 1, - "id": 2501366, - "known_for_department": "Production", - "name": "Adrianna A.J. Cohen", - "original_name": "Adrianna A.J. Cohen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbe5685090f00ae83c438", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2526015, - "known_for_department": "Sound", - "name": "Alex Gregson", - "original_name": "Alex Gregson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d003fd6d4c97010d5117ac", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 2531194, - "known_for_department": "Directing", - "name": "Chloé Nicolay", - "original_name": "Chloé Nicolay", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbb91549dda00e2dd7a47", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2592551, - "known_for_department": "Art", - "name": "Sean Sevestre", - "original_name": "Sean Sevestre", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbcd2d9f4a603b875ed8d", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 2630671, - "known_for_department": "Visual Effects", - "name": "Kent Seki", - "original_name": "Kent Seki", - "popularity": 0.6, - "profile_path": "/mm7Rsadfwb37JmVizltAuVSEVP5.jpg", - "credit_id": "64cfba0dd9f4a603bafacabe", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 0, - "id": 2671720, - "known_for_department": "Writing", - "name": "Sang Yup Lee", - "original_name": "Sang Yup Lee", - "popularity": 1.708, - "profile_path": null, - "credit_id": "64cfbb69549dda0139330800", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2763059, - "known_for_department": "Directing", - "name": "Isabella Spadone", - "original_name": "Isabella Spadone", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbb776d4c97014f429336", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2819669, - "known_for_department": "Visual Effects", - "name": "Peter Foltz", - "original_name": "Peter Foltz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbbb5d9f4a603b7976a02", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 2828799, - "known_for_department": "Visual Effects", - "name": "Fred Wong", - "original_name": "Fred Wong", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbd0a6d4c97014f4293b5", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 2905491, - "known_for_department": "Art", - "name": "Florent Masurel", - "original_name": "Florent Masurel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d0b5a1d9f4a603bafb4547", - "department": "Visual Effects", - "job": "2D Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2953373, - "known_for_department": "Production", - "name": "Kevin Jung", - "original_name": "Kevin Jung", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d003ec4d679100acf0f321", - "department": "Sound", - "job": "Foley Editor" - }, - { - "adult": false, - "gender": 2, - "id": 3089519, - "known_for_department": "Visual Effects", - "name": "James A. Castillo", - "original_name": "James A. Castillo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb702549dda011c284b92", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 2, - "id": 3107442, - "known_for_department": "Visual Effects", - "name": "Florent Razafimandimby", - "original_name": "Florent Razafimandimby", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbfb66d4c97010d510335", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 0, - "id": 3163004, - "known_for_department": "Art", - "name": "Ray Xu", - "original_name": "Ray Xu", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbc04d9f4a603b875ed42", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 3243817, - "known_for_department": "Visual Effects", - "name": "Adel Sabi", - "original_name": "Adel Sabi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64064a581089ba00ec1e96c9", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 0, - "id": 3328269, - "known_for_department": "Editing", - "name": "Eryn Suchara", - "original_name": "Eryn Suchara", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbc7f6d4c97010d51021c", - "department": "Editing", - "job": "Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 3350189, - "known_for_department": "Visual Effects", - "name": "Etienne Metois", - "original_name": "Etienne Metois", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbf78303c85013a155c99", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 1, - "id": 3471610, - "known_for_department": "Visual Effects", - "name": "Maxime Mary", - "original_name": "Maxime Mary", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb7106d4c9700cb7e38c0", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 0, - "id": 3474548, - "known_for_department": "Visual Effects", - "name": "Nikita Chan", - "original_name": "Nikita Chan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbca94d67910139ee8e2b", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 1, - "id": 3623031, - "known_for_department": "Sound", - "name": "Jennie Shea", - "original_name": "Jennie Shea", - "popularity": 0.84, - "profile_path": null, - "credit_id": "64d003c46d4c9700afae37bf", - "department": "Sound", - "job": "ADR Recordist" - }, - { - "adult": false, - "gender": 2, - "id": 3883341, - "known_for_department": "Visual Effects", - "name": "Kellan Jett", - "original_name": "Kellan Jett", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64064f39ef9d72009957f728", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 1, - "id": 3883342, - "known_for_department": "Visual Effects", - "name": "Tiffany Lam", - "original_name": "Tiffany Lam", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb9d8303c8500c613f250", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 3887248, - "known_for_department": "Writing", - "name": "Andrew James Ross", - "original_name": "Andrew James Ross", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbc2b6d4c9700ec57f927", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 3951848, - "known_for_department": "Visual Effects", - "name": "Yebin Kang", - "original_name": "Yebin Kang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "640645d01089ba0079f5c050", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 3951883, - "known_for_department": "Visual Effects", - "name": "Garrett Lee", - "original_name": "Garrett Lee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648132f264765400e6801818", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 3951885, - "known_for_department": "Visual Effects", - "name": "Lily Nishita", - "original_name": "Lily Nishita", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbcce303c85011dd42839", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 4045446, - "known_for_department": "Production", - "name": "Ramsay McBean", - "original_name": "Ramsay McBean", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c1b7e3fdc14600e2863ebf", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 4045447, - "known_for_department": "Production", - "name": "Julien Meesters", - "original_name": "Julien Meesters", - "popularity": 0.997, - "profile_path": null, - "credit_id": "64cfbe6f303c850100b136c3", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 4182292, - "known_for_department": "Production", - "name": "Lukas Williams", - "original_name": "Lukas Williams", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c1b7cf13a320011c5f6f1f", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 0, - "id": 4193053, - "known_for_department": "Editing", - "name": "Myra Owyang", - "original_name": "Myra Owyang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbc5e4d679100acf0dc15", - "department": "Editing", - "job": "Associate Editor" - }, - { - "adult": false, - "gender": 0, - "id": 4193076, - "known_for_department": "Editing", - "name": "Illya Quinteros", - "original_name": "Illya Quinteros", - "popularity": 0.694, - "profile_path": null, - "credit_id": "64cfbc58303c8500c613f355", - "department": "Editing", - "job": "Associate Editor" - }, - { - "adult": false, - "gender": 2, - "id": 4200673, - "known_for_department": "Directing", - "name": "Andrew Joustra", - "original_name": "Andrew Joustra", - "popularity": 0.6, - "profile_path": "/3nwezdrOtyhsmaB0iuAh6J017UE.jpg", - "credit_id": "64cfb641303c8500ade472fa", - "department": "Directing", - "job": "Script Coordinator" - }, - { - "adult": false, - "gender": 1, - "id": 4200674, - "known_for_department": "Production", - "name": "Cindy Y. Avila", - "original_name": "Cindy Y. Avila", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb676549dda011c284b52", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 4200675, - "known_for_department": "Visual Effects", - "name": "Justin Runfola", - "original_name": "Justin Runfola", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb7376d4c9700cb7e38da", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 0, - "id": 4200676, - "known_for_department": "Visual Effects", - "name": "Jules Itzkoff", - "original_name": "Jules Itzkoff", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb756d9f4a603b549e9e9", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 4200698, - "known_for_department": "Visual Effects", - "name": "Matthieu Rouxel", - "original_name": "Matthieu Rouxel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfba2e85090f010691bba5", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 4200701, - "known_for_department": "Production", - "name": "Anna Jahn", - "original_name": "Anna Jahn", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbaf14d67910139ee8da4", - "department": "Production", - "job": "Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 4200706, - "known_for_department": "Writing", - "name": "Paige Caldwell", - "original_name": "Paige Caldwell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbb65d9f4a603b875ed10", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 4200715, - "known_for_department": "Writing", - "name": "John Jackson", - "original_name": "John Jackson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbc25549dda0139330870", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 4200720, - "known_for_department": "Editing", - "name": "Art Arreola", - "original_name": "Art Arreola", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbc7985090f01445bad47", - "department": "Editing", - "job": "Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 4200725, - "known_for_department": "Visual Effects", - "name": "Tom Eichacker", - "original_name": "Tom Eichacker", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbcbd549dda011c284d7d", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 4200726, - "known_for_department": "Visual Effects", - "name": "Alger Tam", - "original_name": "Alger Tam", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbcdc303c8500e338f996", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 4200727, - "known_for_department": "Production", - "name": "Courtney Madincea", - "original_name": "Courtney Madincea", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbd4a4d6791011c17bf7d", - "department": "Production", - "job": "Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 4200728, - "known_for_department": "Production", - "name": "Yasmine Mzayek", - "original_name": "Yasmine Mzayek", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbd5c6d4c9700cb7e3ad8", - "department": "Production", - "job": "Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 4200729, - "known_for_department": "Production", - "name": "Ketsia A. Védrine", - "original_name": "Ketsia A. Védrine", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbd6585090f0125bce77c", - "department": "Production", - "job": "Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 4200730, - "known_for_department": "Production", - "name": "Daniel Kahn", - "original_name": "Daniel Kahn", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbd72d9f4a603bafacbbd", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4200731, - "known_for_department": "Production", - "name": "Ryan Kuo", - "original_name": "Ryan Kuo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbd8fd9f4a603b875edd8", - "department": "Production", - "job": "Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 4200733, - "known_for_department": "Production", - "name": "Ryan Fragomeni", - "original_name": "Ryan Fragomeni", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbd974d679100e240b3a6", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4200736, - "known_for_department": "Production", - "name": "Leah Koerwer", - "original_name": "Leah Koerwer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbda3549dda00acf093a8", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4200756, - "known_for_department": "Visual Effects", - "name": "Martin Scalzotto", - "original_name": "Martin Scalzotto", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbf31303c8500e338fa76", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 0, - "id": 4200757, - "known_for_department": "Visual Effects", - "name": "David Marquis", - "original_name": "David Marquis", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbf3d4d679100ff682ae7", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 0, - "id": 4200767, - "known_for_department": "Visual Effects", - "name": "Jean-Paul Suau", - "original_name": "Jean-Paul Suau", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbfaf6d4c97012e8b554c", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 0, - "id": 4202077, - "known_for_department": "Visual Effects", - "name": "Anais Basso", - "original_name": "Anais Basso", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d0b5aa85090f0125bd6d84", - "department": "Visual Effects", - "job": "2D Artist" - }, - { - "adult": false, - "gender": 0, - "id": 4202078, - "known_for_department": "Visual Effects", - "name": "Basile Gouttenoire", - "original_name": "Basile Gouttenoire", - "popularity": 0.605, - "profile_path": null, - "credit_id": "64d0b5b3d9f4a603bafb455c", - "department": "Visual Effects", - "job": "2D Artist" - }, - { - "adult": false, - "gender": 0, - "id": 4220274, - "known_for_department": "Production", - "name": "Romain Recher", - "original_name": "Romain Recher", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64de343ba3b5e600e29ca575", - "department": "Production", - "job": "Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 4268874, - "known_for_department": "Production", - "name": "Elisa Guibert", - "original_name": "Elisa Guibert", - "popularity": 1.38, - "profile_path": null, - "credit_id": "65018b7be0ca7f012eb930f6", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4269318, - "known_for_department": "Production", - "name": "Tom Kurcz", - "original_name": "Tom Kurcz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6501bd62e0ca7f00cbeb078c", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 4277166, - "known_for_department": "Crew", - "name": "Dana Gardner", - "original_name": "Dana Gardner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6507508e8a88b200c6acf568", - "department": "Crew", - "job": "Studio Teacher" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Behind The Scenes With Seth Rogen and Cast", - "key": "7HldRxOEokw", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-09-16T16:00:03.000Z", - "id": "65082226109dec00aeb04cc9" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "First Fight Clip", - "key": "bmpH2thY9q0", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-09-08T15:59:53.000Z", - "id": "65082250109dec012d89b442" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"Back To School\" Clip", - "key": "UmGaoq71de8", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-08-24T15:59:01.000Z", - "id": "64e9249190ea4b011e792d18" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Our heroes in a half-shell have arrived", - "key": "yqkCnRXlTp4", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-20T07:30:14.000Z", - "id": "64e337f4544c410138b44403" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Gear up and get tickets", - "key": "P6UkPe1VOx0", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-20T02:00:08.000Z", - "id": "64e337fe65e0a200ffbdfee4" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Get ready for some Turtle-action!", - "key": "KcMFKEOCJds", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-19T02:00:08.000Z", - "id": "64e3383b7ef381209f45176a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Seth Rogen and Ice Cube hang with Real Turtles", - "key": "WLeJaXEydn8", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-08-18T08:33:14.000Z", - "id": "64e372d3d7cd0600c88e89e4" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "It's turtle-y awesome!", - "key": "Sl5prZlEJeM", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-18T02:00:19.000Z", - "id": "64e33842544c4100ac3cf5c1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Cowabunga, dude!!!", - "key": "A6Zfqm2RVSg", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-17T03:24:50.000Z", - "id": "64e33848076ce843b8d4e875" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Fruit ninja IRL", - "key": "1p_TeStcecY", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-09T05:00:00.000Z", - "id": "64d33c0ebf31f201ca89f9e9" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "We're turtles on a mission", - "key": "gLOPGbgG7F8", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-09T00:00:14.000Z", - "id": "64d312d1db4ed600e2b4bc41" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Get ready for Mayhem!", - "key": "xIycJyk-kqs", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-08T07:00:22.000Z", - "id": "64d30384b6c26400adaa79fd" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Adult Swim Commercial", - "key": "mflT9WXHOXs", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": false, - "published_at": "2023-08-07T17:00:20.000Z", - "id": "64d31e32d100b600ff086416" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "It's Turtle time!", - "key": "0UIuGakPxcU", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-07T07:00:00.000Z", - "id": "64d33660d100b600e267604b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "It’s Called Mutant Mayhem", - "key": "6vesBtNRt20", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-08-01T14:02:09.000Z", - "id": "64c93d7f85b10500ff0085dc" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Behind the Inspiration", - "key": "NjDAIydPol4", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-31T16:00:00.000Z", - "id": "64c93c5d0b74e900c997850f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Be brave. Be strong. Be Ninjas.", - "key": "F7ecs8U5zgY", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-30T23:00:07.000Z", - "id": "64c981fedd83fa0139da5097" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Teamwork makes the dream work", - "key": "7bIfezILQkM", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-28T23:00:02.000Z", - "id": "64c981dfa5743d00ec1fffc0" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Seth Rogen and Ice Cube take the Ultimate Gen-Z Quiz", - "key": "_u_0bKONw-0", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-28T17:14:15.000Z", - "id": "64c93c8b85b105011cacfbe3" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Zombie Kid STILL Likes Turtles", - "key": "Hnt1EdUZ1E8", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-27T13:00:10.000Z", - "id": "64c93c9e0cb335013979a7c1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Final Trailer", - "key": "JhXRNRmuYcc", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-07-27T13:00:04.000Z", - "id": "64c276b1ede1b0011f7e1e28" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Ask Seth Rogen Anything", - "key": "RONioDCCMP8", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-26T17:04:05.000Z", - "id": "64c1a0dbdb4ed600e4ca7caa" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"Meeting Superfly\" Clip", - "key": "cTQy7sS_EaI", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-07-24T13:00:02.000Z", - "id": "64be892658efd30139549668" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Get to know the incredible cast", - "key": "ok_-ha1bW0Y", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-22T19:00:29.000Z", - "id": "64c0bc1a514c4a0144128ac6" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"Sneaking In\" Clip", - "key": "SUnHJ7EW93M", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-07-20T19:28:20.000Z", - "id": "64b98e5c06f98400fe41a33e" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Turtle Tots", - "key": "jtHUYbrGcJE", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-18T16:00:01.000Z", - "id": "64b6c11e13654500c731b3f4" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Putting the Teens in TMNT", - "key": "fbvcuCwfNsM", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-17T13:00:04.000Z", - "id": "64b6c188ac416100ad9e451d" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Behind the Design", - "key": "W2u-ZlPI5Rg", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-13T16:00:09.000Z", - "id": "64b0399cd40d4c00ae654623" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "First Clip", - "key": "MvWE4EkzVJs", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-07-13T14:00:02.000Z", - "id": "64b0398dd40d4c013cf4f3bc" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Meet the Cast", - "key": "FIshPcRWUts", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-06-26T15:00:01.000Z", - "id": "649aa547d35dea012c16e9a0" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "International Trailer", - "key": "E4Kz4tZ6RcA", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-05-31T22:29:00.000Z", - "id": "64c9811d001bbd014525e6ad" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "IHvzw4Ibuho", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-05-31T13:00:08.000Z", - "id": "64774e2900508a0116d55c36" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Teaser Trailer", - "key": "ooZdaF2zMlM", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-03-06T14:00:00.000Z", - "id": "6405f2bde61e6d008e40da30" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/w2nFc2Rsm93PDkvjY4LTn17ePO0.jpg", - "vote_average": 5.39, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/8X0NQoaOcqjlxcv36VySPUOyfyO.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/8jWrErAHD0yvwr538xz7dbo3aas.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/tgFtGRjPJRQVTN1CLePMrkfxuoT.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/o6gnE9RYB8sy7WObfF7kZXFXIMX.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/qj3mS8l82jenXKneQxc2vRb0LyM.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 920, - "iso_639_1": null, - "file_path": "/zYdTGqWIup2SMg6A8ZpeLuvCpiy.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 1635 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/2Cpg8hUn60PK9CW9d5SWf605Ah8.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/yARWDQRZRTMkcRsmicAKOgk6Vhf.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/6TFxMeeMTIazbN859GoV7MSbyxG.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.78, - "height": 946, - "iso_639_1": null, - "file_path": "/v4eMMGKJlSkymhSk3CmybGEMhQ0.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1684 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/4YcGCGjOBQ8ZzgkVg7IYOmVfO9k.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/guACZvYS5yoAO1tfWuZTzlB9AG6.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/aomMPaHUPCq5gfk7s1aRciVD3Tm.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/qnzI1tu4teoNfyUTaRDrCZuYCrA.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/5N0zk3ITDpvLQ6h9n1hn2qT95xO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.78, - "height": 1310, - "iso_639_1": null, - "file_path": "/cRTMZVf44N1QABcyi76zaTRLAPN.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 2332 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/2KgnQxh4WmYJZEcokydl3wEZhp0.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/9H8Z7czDlUhb15iAtbUwtjap52D.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/whyMDDsff7lG0OUPgNxC0MycP09.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/exsiJEg4zV5nagyTHOkMvhLr1ZV.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/5vKWCX1iCTe4e7lmF64vuxf9dGG.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/tIW3xKbc65xRkAgb5I1Wy8wbxiV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/ujemBc9KPqvOlgvqyVFwa9Z6NgU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/nxapFqq2lCpAKTe4NXadhYWoSng.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/5XjotDCHUWJvrzI3mdLsfPUop2p.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/oxOZLyqEdda1UbhrqVu3kOXCLLx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/5A89OJoaMygB8cgaOe1i5QrUCL6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/fz0ZZxNVabK21NhK6ZeVeaKmbcq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/AfzSK8Z7kyX5EPHxKtZCKjVcspZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/1IiPkhmxVvbrCpSsrdu3Idyease.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/ciG7yjfvQVWVqpPditgqpsFL7Kh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "tr", - "file_path": "/c4Iv7E80tJbKEt0mZlLe9NUYOZL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/cHefNSmFSm5SnBWXhOcj1EncJ87.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "hu", - "file_path": "/jabJRpYzX3DmfB3Y0jaH9PJs0AH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/asxLspUjQh2zs6Z72NJgtUiF1rw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/cLppJRwwCQdf6gaTy6ZIz8uGRsW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/jM2trFkkLdRVH8rCheH8XkI1DiG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/v3YuECHgaQZaJsHjMKLVGunUv0R.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - } - ], - "logos": [ - { - "aspect_ratio": 1.209, - "height": 575, - "iso_639_1": "he", - "file_path": "/tcZb0I2pn4iAyYL59NeNzRUbtH8.png", - "vote_average": 5.384, - "vote_count": 2, - "width": 695 - }, - { - "aspect_ratio": 1.493, - "height": 670, - "iso_639_1": "en", - "file_path": "/1DfxdgEAdnQylz8DTr3ZGLsaInC.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 1.46, - "height": 1299, - "iso_639_1": "en", - "file_path": "/mEtZXyKRYULfScubUl1vTE0o77p.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1896 - }, - { - "aspect_ratio": 1.286, - "height": 294, - "iso_639_1": "fr", - "file_path": "/en9Q48DjwbW76k5mpeBGl2lnMyz.png", - "vote_average": 5.106, - "vote_count": 2, - "width": 378 - }, - { - "aspect_ratio": 1.653, - "height": 1154, - "iso_639_1": "uk", - "file_path": "/rqgXy2jK48AdNFnQyGjvxyyLDzi.png", - "vote_average": 0, - "vote_count": 0, - "width": 1907 - }, - { - "aspect_ratio": 1.3, - "height": 687, - "iso_639_1": "ja", - "file_path": "/kFFZ4M4MANCwCUyiq3bpU8HRc1n.png", - "vote_average": 0, - "vote_count": 0, - "width": 893 - }, - { - "aspect_ratio": 2.01, - "height": 289, - "iso_639_1": "zh", - "file_path": "/7HpA6A7pNrP4YUnwAicaYnJsXPp.png", - "vote_average": 0, - "vote_count": 0, - "width": 581 - }, - { - "aspect_ratio": 2.028, - "height": 319, - "iso_639_1": "en", - "file_path": "/uLkz7xJPrWezHEOiN44HUxdK7Sp.png", - "vote_average": 0, - "vote_count": 0, - "width": 647 - }, - { - "aspect_ratio": 2.793, - "height": 2669, - "iso_639_1": "bg", - "file_path": "/59e5370d9x8c4gUzKxYG0Alf2nQ.png", - "vote_average": 0, - "vote_count": 0, - "width": 7455 - }, - { - "aspect_ratio": 1.49, - "height": 290, - "iso_639_1": "cs", - "file_path": "/jZCFI1lwMiADuqGqfFT6GobJ3Fb.png", - "vote_average": 0, - "vote_count": 0, - "width": 432 - }, - { - "aspect_ratio": 1.342, - "height": 1621, - "iso_639_1": "cn", - "file_path": "/jL7HvrvZuTyuBGL2WTrAWInUTlD.png", - "vote_average": 0, - "vote_count": 0, - "width": 2176 - }, - { - "aspect_ratio": 1.284, - "height": 684, - "iso_639_1": "zh", - "file_path": "/sfgXyhxR9pAAjcav1yadt4KzHcw.png", - "vote_average": 0, - "vote_count": 0, - "width": 878 - }, - { - "aspect_ratio": 1.187, - "height": 807, - "iso_639_1": "he", - "file_path": "/3amu8d5SJ0af7TxvCG3mbSXKsOm.png", - "vote_average": 0, - "vote_count": 0, - "width": 958 - }, - { - "aspect_ratio": 1.508, - "height": 660, - "iso_639_1": "fa", - "file_path": "/vjCs3r7RehL94ZINuWrJXtjCbui.png", - "vote_average": 0, - "vote_count": 0, - "width": 995 - }, - { - "aspect_ratio": 2.028, - "height": 319, - "iso_639_1": "en", - "file_path": "/u03TqND2fvufmiEvMiPYXBt6bLD.png", - "vote_average": 0, - "vote_count": 0, - "width": 647 - }, - { - "aspect_ratio": 1.866, - "height": 1917, - "iso_639_1": "es", - "file_path": "/VSGH7R6e6lvI4D9BqA4dF6rAMG.png", - "vote_average": 0, - "vote_count": 0, - "width": 3578 - }, - { - "aspect_ratio": 2.112, - "height": 473, - "iso_639_1": "pt", - "file_path": "/fDeW7FP547MMQYGamG5P04PP12i.png", - "vote_average": 0, - "vote_count": 0, - "width": 999 - }, - { - "aspect_ratio": 1.496, - "height": 893, - "iso_639_1": "pl", - "file_path": "/5yQ1igbf09lVB8DE9WBxwtLTF4i.png", - "vote_average": 0, - "vote_count": 0, - "width": 1336 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/oupWWrVuCgNEa5GcjdkpjCYbx2X.jpg", - "vote_average": 5.626, - "vote_count": 18, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/ez3IwZGBuVMVbYFcS9iftoxDjB8.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/nXL01gWnyajYwEyJldSdXcr1Zso.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/n3M5gSOjWYxFakAsGbi6OFFi4LZ.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/pMGAGWxeoAaETNu1UhMYcFGle0D.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/xPifzuh8Z4uUAfaRmFc22DfBbBt.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/dpHA8CJFA9L7dpGHB8aNAASKExv.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2000, - "iso_639_1": "sk", - "file_path": "/v0ozhxCawOkxQLjSgIfSQEzYPlW.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1333 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/yod952W96p8v75PF400vIqFSOSf.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/kZGb23spcQKOGLsRMAVwUx6Ml65.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/zMCvsqiK9fYNmJm5TXKVWg5dSXk.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/eLNxn5R7xngthiRc6HoQC4dqzbF.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "it", - "file_path": "/lb3wLiI25tSL0wMgb0BVah8mqfx.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.675, - "height": 1000, - "iso_639_1": "fr", - "file_path": "/haeJ30YWeAdpHzAnRYTPWIojLh2.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 675 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/6xORIhe6cP3iM5RYTHs7MTOH1qa.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1890 - }, - { - "aspect_ratio": 0.7, - "height": 2286, - "iso_639_1": "el", - "file_path": "/6Q1wIyhCZ7xjrabMpVYoZcbtduy.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/lEp6npX8GZFkwXRcZhW2uwdFwbm.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2520, - "iso_639_1": null, - "file_path": "/442RjQjsFHSymyfHGqNrlLoQDRO.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1680 - }, - { - "aspect_ratio": 0.677, - "height": 2048, - "iso_639_1": "en", - "file_path": "/johq9iRTnVUO6D6hnmnr2clNsBt.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1387 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/de3hbkpJSbxMHZiCoEODvnh4pKW.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/mgBXgA8jHext4KRWg84Cux5Y94L.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/iUU0NTff2E270hGqjRft5GuYaWC.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/je0GPN5R4LrtpA79dV1d6DSrqEg.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tV54RLV0gFZMNrET1ut6c4qKqks.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": null, - "file_path": "/9QEeUjjaeCxShhkuWopqITZu5Sv.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/6nRkGtb0vc4JygMWowhbgicOpQL.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/fE5Mz76DXX5iKVWa97eWlx1vn2M.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/7wTJxIM0xh9fgYFfwoeMjBsn2XH.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/n4VyiasPj9GRos3cE4L5Hl4ovw8.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "", - "file_path": "/aT8R5o65mXoDmXqfuuB0KjOGJ97.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/9XMOpCxF8IaRCgRTgYYrQcwRF4e.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ru", - "file_path": "/o7hgGG18rY68OCzV5D8gMNykFjk.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/hUWxNb1RGK3wIdpuCBgoA2SC6qs.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/gwrFZLMPox82lsPT8MHpAYmFjw9.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gyh0eECE2IqrW8GWl3KoHBfc45j.jpg", - "vote_average": 5.238, - "vote_count": 19, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/kbnhvFPyXKCKLNhg1pkz6rXQ4Le.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.677, - "height": 2048, - "iso_639_1": "en", - "file_path": "/aqxmz3v5UNNrPIV0EshAfs15Svx.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1387 - }, - { - "aspect_ratio": 0.667, - "height": 796, - "iso_639_1": "en", - "file_path": "/bSG2IXtBRBlvG9fbqNuwFZuBr5x.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 531 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "en", - "file_path": "/5C8b3o8FYtNURLCwP2a8NNnkW0w.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 900 - }, - { - "aspect_ratio": 0.665, - "height": 2388, - "iso_639_1": "en", - "file_path": "/2M8Sq8pBL24NWb27Pj2WlUkig5g.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1587 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ueO9MYIOHO7M1PiMUeX74uf8fB9.jpg", - "vote_average": 5.178, - "vote_count": 33, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/tA62jpt3YjunGzmacFJn5RjHWxM.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/x0naXPYoLxzTzRgwKhzAjQPngnw.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/k7l3RzUnlHcrb5rULdfyG4wGmA1.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/htm4SB8VAMjQXA0w7EB3vRiZUfL.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/tS1ogVpl1Ic3nf9iGWiWCuNTw3g.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/bKAJAg9v0DSlXsycvlbuBFYPC8o.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qXkAWMnRdWIllPQBV3LDLFQufEW.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/az4CZ0EiFEMJALdFr1XTlwmLcNv.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/aOci1lSbO79XNO9rnMDAwivZUsM.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/fctEM5WEzuDY7qwSegbeRaL18uS.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/cpchF0VqgCn7DpCwFnggr14l0yU.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/gKjQqOqANE7iLIZZyXewmjDPbo5.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/odrcfQfM1rC3TsSpSZWgn0ZtG0Q.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "it", - "file_path": "/9Fcvmpye4bdFR0WfErdV6ZzdEKR.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1366 - }, - { - "aspect_ratio": 0.707, - "height": 1754, - "iso_639_1": "no", - "file_path": "/lRiJKqZK3c61Oyct5JDAO6pSWQR.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1240 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/A2QvdkzKrwsdGjTgAFrk4OZo9Tr.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1408, - "iso_639_1": "it", - "file_path": "/oEDjjx1w9Fq3H7Jtlvy8bNoYxwq.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 939 - }, - { - "aspect_ratio": 0.665, - "height": 2388, - "iso_639_1": "en", - "file_path": "/sGm09gLVyICQl8lVIHpmHZAgSNq.jpg", - "vote_average": 5.172, - "vote_count": 16, - "width": 1587 - }, - { - "aspect_ratio": 0.675, - "height": 1024, - "iso_639_1": "it", - "file_path": "/9bswDakCEGxrUY03qvnJTaUne8V.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 691 - }, - { - "aspect_ratio": 0.673, - "height": 1292, - "iso_639_1": "zh", - "file_path": "/uqkMhWU1xIjOuWUhNATpNeKxU5S.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 870 - }, - { - "aspect_ratio": 0.674, - "height": 1282, - "iso_639_1": "zh", - "file_path": "/8lxU8ETnq4Mi6ke208Hp1F1gUPP.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 864 - }, - { - "aspect_ratio": 0.667, - "height": 1349, - "iso_639_1": "it", - "file_path": "/cSQr4gq8nyvNjzDfIeI03aoSVRg.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "zh", - "file_path": "/58H1OMOfXurRJyGeqjRjraY5FfZ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 1080, - "iso_639_1": "en", - "file_path": "/2ToSrhtDkGZTlnnZ5Svfx04a4Y3.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 720 - }, - { - "aspect_ratio": 0.667, - "height": 1440, - "iso_639_1": "en", - "file_path": "/6EKCJUgiAE1wonjvYmVHPCu8U0k.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 960 - }, - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": "en", - "file_path": "/7pOafueZIz0G97iIYwXlpFXpZ8O.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 1500 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/mPwPrrYWiEuKMEr7avrvfVBfOlt.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ylXw5GfuwiFVPxbUkgD7GT7tyTj.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1740, - "iso_639_1": "en", - "file_path": "/mFLQy1u2LwyfVAPesNiRtjJFnRF.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1160 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/a6CLofscFB9yRBXxFwB4if9WBUL.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zfoLIXEz6dE6EJFuy1VovAUR2xu.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/f3Qgt4zK8jJUnSAzvfeO5Cp3xx0.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/2FYP1dIM8iJEaNXPHYqv0Ks71hn.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/oOrEEyMPGHeTn0OfkHgJxf1l7k0.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/sQXstRBKFjZtDrFlzRZp4V8AHei.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/pqFtHjFF7AEUdWVz9HsDZy2x4RR.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.677, - "height": 2048, - "iso_639_1": "en", - "file_path": "/j4evBypZdfv8I9qSrdoQIO1Zcs8.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1387 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/1q37OqG7W3ErCFAShuAkmDml4bS.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/sTMGSF3bSrcbfApsClZfrxW6dKo.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/qxnJNJM3dqE4IlQjm4ULBrUmGNF.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "zh", - "file_path": "/dmYcSi9xa5wbFJGEBhwK5RqVG3W.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cFz3o9dDNwS8FX4GSfZXUjnG13T.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/yqM72utx6Ogb9rl7GmbBtzJepzA.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/yaPTZkEMQ9pNnBZ6lqklkSohJxe.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/rODatRCuUztQXNLwJkDgbAOdV8l.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/8IaFOjiqfmNj1hs4ie1BYGx7fwq.jpg", - "vote_average": 5.08, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.677, - "height": 2048, - "iso_639_1": "en", - "file_path": "/jtrrCyEhZ8lK8yCtQoHNUUg7LM.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1387 - }, - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": "en", - "file_path": "/sE1kWKNv0lGFjeVGvOtuzivYkLK.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1500 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/9eHcQV4m9nfnS7gwYgAeffb1yh5.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1024, - "iso_639_1": "en", - "file_path": "/4GBDpwI2dhZXcyiReCOrKkMVMtz.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 683 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6N0eDUohMYdkVnkpqhkSO3BCxLz.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/zT5z66SkONxHlGF1D0wceKqsRdg.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/xty9gCJGG77bJIxM7SjIJBNJe8l.jpg", - "vote_average": 4.938, - "vote_count": 7, - "width": 1000 - }, - { - "aspect_ratio": 0.675, - "height": 1481, - "iso_639_1": "he", - "file_path": "/3QVEbcnYr53OYJzcAEZM12EbZXU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.675, - "height": 1778, - "iso_639_1": "ja", - "file_path": "/9uVzIlUL258BzVJe2AwY5dqoVXn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/jVxAbrAwCC7IDUcmm7gjwtZkz54.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/awdCYp8k9oZy1dILw4Q5zBM0OGv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/smuWsT9G7f2YRHhVgzfRdxmPHT7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/ubc8VRD9A4qPeeMZx6k0FhyzHw7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6Q3qra4jQ0Ad2fouFi3fjY4SziS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/2wefZz5kyZZIa5KIhHmincW0u9U.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/bmKSgJJBszkUBRFQtFuVwwebsvw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zOl5YlIvBQcJqeYm0PCmglLJ9gs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "hu", - "file_path": "/3OWy7mPbSBjic3IIwryew5G3gTX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2288, - "iso_639_1": "cs", - "file_path": "/zItOPvcXLAYkTjtBBQPLblSjHSv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1525 - }, - { - "aspect_ratio": 0.72, - "height": 1500, - "iso_639_1": "en", - "file_path": "/gXHotQYzlNcZVPN9Z6iU6CrFB4U.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 1440, - "iso_639_1": "en", - "file_path": "/vrUC67ds2ZrC4J5bdcfi6FI8gZa.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 960 - }, - { - "aspect_ratio": 0.667, - "height": 1440, - "iso_639_1": "en", - "file_path": "/jWZMIMvYtrFoYqSwKwJQ18ztkn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 960 - }, - { - "aspect_ratio": 0.666, - "height": 3000, - "iso_639_1": "nl", - "file_path": "/xxgt5RoUT6q43CbVkhzKKCIaa7c.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1999 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/fXNzXU7eq5ubB7vaaf2qy8HcWJz.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/At3FwaovrFt3hQtGQz1OmHIr60R.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/zLVqwz0u3quPkGEDgKfDuI2x2sb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/oXE4JxcgGGv8Q8dmkufzEG0p80T.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/jivTMvMrBdUKIx17hBx4QtWXOLB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/vh8UJQCPZPfm86Bwz84ArjowsLz.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/aUjelSp8zgbEqjd6bmQd1PYDIiA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/4ztVUeKqKXFSbOiALb9ewqcd7I4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/h8aJuEeQQGcWw3SDr1pMPFHIhrp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/e96B2faGGLRjIKvHFkKDfYyzmEq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/aGhZ7qE4D8hnrIQSk95iWV2ySdo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/h8R1oxYprhvdU3mDiTQRhxkeFGh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/sV2m0gQ41RV0fINLTedVWSOmPx8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tTC8z7tIyPjdgD9AfGiMmzEkCes.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/kmfB0n0ctxG466InOGOUv8cH3SI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/fQkYtDXKChOrITcZn8bLiV2ujqn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/8kRshyI5rfic9EaZrpX14UZz0kz.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qfrKO1GuepEhOYiE1dm7YmyHN6n.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/eVxCs4YUfJfraBlYRyiYbLWujjM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/fnEmISMiUYs82UdAiHybuUa6Tib.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 1697, - "iso_639_1": "sk", - "file_path": "/gIrGAqLlbgAeAweBFOnhkSymBiS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1131 - }, - { - "aspect_ratio": 0.667, - "height": 2381, - "iso_639_1": "cs", - "file_path": "/57HJgQt6GQVaTStMxWNv1tyJQ9o.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1587 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/iIYheSZ3DlcA6khMXGFBAq3TOdJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1458, - "iso_639_1": "th", - "file_path": "/nN66LLvLbpeWX4uuPZvoFJkTJxo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 972 - }, - { - "aspect_ratio": 0.667, - "height": 2976, - "iso_639_1": "sv", - "file_path": "/9mFRC5BtPIKQvJh7UMeNeZzXdIv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1984 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "cn", - "file_path": "/sx2AEfoGPPnBG9mvwpYFWdITkFV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 2131, - "iso_639_1": "de", - "file_path": "/9YFxjmWV3rGTcZCcOVOPOQjMo4v.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1421 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/zFXmcflIw0JIXvH5wWihTcyOEUW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1034, - "iso_639_1": "fr", - "file_path": "/tlGegIwQCgSqJEm5FVVFTQXQQ3q.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 689 - }, - { - "aspect_ratio": 0.675, - "height": 1778, - "iso_639_1": "es", - "file_path": "/3mTNVlIKVGNXXh4BHnPpysIuPEn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 2690, - "iso_639_1": "fa", - "file_path": "/nsBBABzi9iIifsTM9e6KF5EfFgD.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1794 - }, - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": "fa", - "file_path": "/vM4AEkAt0pmqKMl8UObAxHEXCoe.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1500 - }, - { - "aspect_ratio": 0.667, - "height": 2586, - "iso_639_1": "fa", - "file_path": "/fKyYi3y3SljK8keNhrDzQdYZeI8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1724 - }, - { - "aspect_ratio": 0.667, - "height": 2963, - "iso_639_1": "ko", - "file_path": "/kwLyydGLCKoNiNSvgMEsiq0Fv8o.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1975 - }, - { - "aspect_ratio": 0.675, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/7wh2qJpocF4t67rPZg50KxNiNn6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 972 - }, - { - "aspect_ratio": 0.666, - "height": 1558, - "iso_639_1": "lt", - "file_path": "/npsv7Fm6uDQLJExLS2Jdv5SFN1a.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1038 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/4luV7Af9djB0JLbRIFZAzsiqtHj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 889, - "iso_639_1": "ro", - "file_path": "/4ympvYV3A0MhtDTf56pHmdOQATq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.675, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/nbknhapAeJZ8IQtnfVD7Lsn43tV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 972 - }, - { - "aspect_ratio": 0.667, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/7w9EAb3BjACsJLFSvH4ODHr6Pky.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 960 - }, - { - "aspect_ratio": 0.699, - "height": 751, - "iso_639_1": "pt", - "file_path": "/yOFrxHgR9k9e3dKdkKklfDg6jzE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 525 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/7Ua2EhxbMvljj77UAZxkyxVRXve.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/hXZ4gQQRinikpJTw7kpvPAx1bKe.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gboTbLLqHCRVohbrkD4jFfBACol.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "ru", - "file_path": "/d5UW94Yeqy9M48LfpNPnCdpal5x.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/d9fDQKNSnRaQSTgn2KCLQ9Lx2Fh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/e8ETeIqUpxhqtKJSERwWOe2KxNU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/4PjnNfy6n45Znd4j72y8DG8FUsK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/6ZJLSmytIuUmeA2sxIygroIEzoY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.675, - "height": 1000, - "iso_639_1": "fr", - "file_path": "/sTbRa3OKgNsCdPZdDH6oOSnxBCe.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 675 - }, - { - "aspect_ratio": 0.675, - "height": 2370, - "iso_639_1": "el", - "file_path": "/2rnSybkw4UpJFdA8Lr82GdM3TFj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.675, - "height": 2370, - "iso_639_1": "el", - "file_path": "/cGreSQDJBC6EjNZDH2hVxSva1s2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.675, - "height": 2370, - "iso_639_1": "el", - "file_path": "/68Z1wbPiByvFJdCyd6J4W9XI01Z.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.675, - "height": 2370, - "iso_639_1": "el", - "file_path": "/9pCq8l2QczBS6EHVa65YYVxFZNQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.675, - "height": 2370, - "iso_639_1": "el", - "file_path": "/cTTdHeNBvNnAKfjD9I6SAydMX45.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.675, - "height": 2370, - "iso_639_1": "el", - "file_path": "/6kQUUCg0RDDvSuqm8MOo2AApf4M.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.675, - "height": 2370, - "iso_639_1": "el", - "file_path": "/6NNaGgD62LvqXMI5aIlb0WCJiVC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.675, - "height": 2370, - "iso_639_1": "el", - "file_path": "/uXhqaiYn3IBnnypl1p7oEQRLnR6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.675, - "height": 2370, - "iso_639_1": "el", - "file_path": "/mq0r74pim7mmD6iCNaXRn4jXLVo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/6jVZt2XjIggNasW7Zme4kvlnpgV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/udk3gp8HnjSQqqce9TnZMGC1NOE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/aejNdvJQtX0xT8nQunHx8J0DQ1H.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pl", - "file_path": "/brDyldQOXaqqN44W7VjDWjwSiY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/emTz9m1vYzhPKwVygCQaAhlKReM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/sCizIgD5UdLdDnJJPVPjovlV3uh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/f9qIROU1QyzVRaX4Xb1NCiuzhI7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.695, - "height": 791, - "iso_639_1": "hr", - "file_path": "/2QiThJIewGvRZIXBr9Hb8eSNADa.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 550 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/efqciqATvc15pbPrVEz5JcbVo8c.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/615656.json b/examples/view-transitions/src/content/movies/615656.json deleted file mode 100644 index eb166f2d8..000000000 --- a/examples/view-transitions/src/content/movies/615656.json +++ /dev/null @@ -1,3698 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/5mzr6JZbrqnqD8rCEvPhuCE5Fw2.jpg", - "belongs_to_collection": { - "id": 742536, - "name": "The Meg Collection", - "poster_path": "/rbacYOwij2bEIvO0gKUF2funWKp.jpg", - "backdrop_path": "/rNoyJmjdhgn30bVbvd8n3DJMocB.jpg" - }, - "budget": 129000000, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 878, "name": "Science Fiction" }, - { "id": 27, "name": "Horror" } - ], - "homepage": "https://www.themeg.movie", - "id": 615656, - "imdb_id": "tt9224104", - "original_language": "en", - "original_title": "Meg 2: The Trench", - "overview": "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.", - "popularity": 1804.581, - "poster_path": "/4m1Au3YkjqsxF8iwQy0fPYSxE0h.jpg", - "production_companies": [ - { - "id": 56242, - "logo_path": "/1YORRYmg7hgYIgoJek8jU3cykuQ.png", - "name": "Apelles Entertainment", - "origin_country": "US" - }, - { - "id": 174, - "logo_path": "/IuAlhI9eVC9Z8UQWOIDdWRKSEJ.png", - "name": "Warner Bros. Pictures", - "origin_country": "US" - }, - { - "id": 435, - "logo_path": "/AjzK0s2w1GtLfR4hqCjVSYi0Sr8.png", - "name": "di Bonaventura Pictures", - "origin_country": "US" - }, - { - "id": 92484, - "logo_path": "/dfWwoWRp8snHjzDKO5IFkiCAUe7.png", - "name": "CMC Pictures", - "origin_country": "CN" - }, - { "id": 208093, "logo_path": null, "name": "DF Pictures", "origin_country": "" }, - { "id": 208094, "logo_path": null, "name": "Onaroll Productions", "origin_country": "" } - ], - "production_countries": [ - { "iso_3166_1": "CN", "name": "China" }, - { "iso_3166_1": "US", "name": "United States of America" } - ], - "release_date": "2023-08-02", - "revenue": 384056482, - "runtime": 116, - "spoken_languages": [{ "english_name": "English", "iso_639_1": "en", "name": "English" }], - "status": "Released", - "tagline": "Back for seconds.", - "title": "Meg 2: The Trench", - "video": false, - "vote_average": 6.973, - "vote_count": 1825, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 976, - "known_for_department": "Acting", - "name": "Jason Statham", - "original_name": "Jason Statham", - "popularity": 118.356, - "profile_path": "/lldeQ91GwIVff43JBrpdbAAeYWj.jpg", - "cast_id": 5, - "character": "Jonas Taylor", - "credit_id": "5f93b1997719d751dbe9160c", - "order": 0 - }, - { - "adult": false, - "gender": 2, - "id": 78871, - "known_for_department": "Acting", - "name": "Wu Jing", - "original_name": "Wu Jing", - "popularity": 29.324, - "profile_path": "/pgE2SqqtbT6dNo8waDMTpYuVVCj.jpg", - "cast_id": 22, - "character": "Jiuming Zhang", - "credit_id": "62190394d14443006536aba3", - "order": 1 - }, - { - "adult": false, - "gender": 1, - "id": 1704579, - "known_for_department": "Acting", - "name": "Shuya Sophia Cai", - "original_name": "Shuya Sophia Cai", - "popularity": 92.691, - "profile_path": "/8zzSyNhoFJQ3eRqaqIgiryoONJB.jpg", - "cast_id": 20, - "character": "Meiying", - "credit_id": "621721c367e0f7001ba6a2d6", - "order": 2 - }, - { - "adult": false, - "gender": 2, - "id": 177214, - "known_for_department": "Acting", - "name": "Page Kennedy", - "original_name": "Page Kennedy", - "popularity": 8.453, - "profile_path": "/hM7yB43TFtzKg8W3rW0LOceVnok.jpg", - "cast_id": 21, - "character": "DJ", - "credit_id": "621721da5be00e001b2694a0", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 78994, - "known_for_department": "Acting", - "name": "Sergio Peris-Mencheta", - "original_name": "Sergio Peris-Mencheta", - "popularity": 8.219, - "profile_path": "/uPE1n0JpbicJ5gm2fNarbsx6Nc4.jpg", - "cast_id": 28, - "character": "Montes", - "credit_id": "6300ae8cdfe31d0092042bda", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 7055, - "known_for_department": "Acting", - "name": "Sienna Guillory", - "original_name": "Sienna Guillory", - "popularity": 14.456, - "profile_path": "/rpnWJT1d61GwnG9bQoGSxWbIaL4.jpg", - "cast_id": 16, - "character": "Driscoll", - "credit_id": "6217211ba27502001b6664ca", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 7248, - "known_for_department": "Acting", - "name": "Cliff Curtis", - "original_name": "Cliff Curtis", - "popularity": 13.99, - "profile_path": "/3D6qz8vL6DWHAO3HeXeaSuwxq3s.jpg", - "cast_id": 19, - "character": "Mac", - "credit_id": "6217219326dac10042b60568", - "order": 6 - }, - { - "adult": false, - "gender": 1, - "id": 110930, - "known_for_department": "Acting", - "name": "Skyler Samuels", - "original_name": "Skyler Samuels", - "popularity": 20.064, - "profile_path": "/4HeEvih8dRezHnnS1Ss9L7hKsLx.jpg", - "cast_id": 17, - "character": "Jess", - "credit_id": "6217212a96670e006c2a64ef", - "order": 7 - }, - { - "adult": false, - "gender": 1, - "id": 1977759, - "known_for_department": "Acting", - "name": "Melissanthi Mahut", - "original_name": "Melissanthi Mahut", - "popularity": 7.469, - "profile_path": "/c5Or2xsO8ni2F95RR5ImUmfLGmg.jpg", - "cast_id": 31, - "character": "Rigas", - "credit_id": "63063ac7c39266007f18bc1a", - "order": 8 - }, - { - "adult": false, - "gender": 1, - "id": 1503556, - "known_for_department": "Acting", - "name": "Whoopie van Raam", - "original_name": "Whoopie van Raam", - "popularity": 2.3, - "profile_path": "/hxV4Mwy9uxExVxsrRaYgQau09AW.jpg", - "cast_id": 97, - "character": "Curtis", - "credit_id": "64d1c71585090f00e79850f1", - "order": 9 - }, - { - "adult": false, - "gender": 1, - "id": 1600494, - "known_for_department": "Acting", - "name": "Kiran Sonia Sawar", - "original_name": "Kiran Sonia Sawar", - "popularity": 2.024, - "profile_path": "/sRuFPJIW2yJTvov1cS0T9Baqb8U.jpg", - "cast_id": 91, - "character": "Sal", - "credit_id": "64c7f145cadb6b00c82ac553", - "order": 10 - }, - { - "adult": false, - "gender": 2, - "id": 2583691, - "known_for_department": "Acting", - "name": "Felix Mayr", - "original_name": "Felix Mayr", - "popularity": 3.577, - "profile_path": "/7UGb95MGrUkUeDZhC7M4m3EFBx0.jpg", - "cast_id": 96, - "character": "Lance", - "credit_id": "64d1c6f0549dda0139340730", - "order": 11 - }, - { - "adult": false, - "gender": 2, - "id": 548608, - "known_for_department": "Acting", - "name": "Guo Tao", - "original_name": "Guo Tao", - "popularity": 4.689, - "profile_path": "/s4g5lIlszWb1QxpMLO2YDNDUsMx.jpg", - "cast_id": 98, - "character": "Party Guest", - "credit_id": "64d2aea1dd926a01e731dd5b", - "order": 12 - }, - { - "adult": false, - "gender": 2, - "id": 137469, - "known_for_department": "Editing", - "name": "Robin Hill", - "original_name": "Robin Hill", - "popularity": 2.269, - "profile_path": "/utXs2BpYryzNPjgcZtU6hrf12xA.jpg", - "cast_id": 99, - "character": "Cargo Ship Captain", - "credit_id": "64d2aee5d100b600c5ce93de", - "order": 13 - }, - { - "adult": false, - "gender": 1, - "id": 1844395, - "known_for_department": "Acting", - "name": "Dai Lele", - "original_name": "Dai Lele", - "popularity": 4.653, - "profile_path": "/xaiH4RCXfG71uZHNqy8gHFjC4Tw.jpg", - "cast_id": 100, - "character": "Beautiful Tourist", - "credit_id": "64d2af9e03726400c5726389", - "order": 14 - }, - { - "adult": false, - "gender": 0, - "id": 1828107, - "known_for_department": "Acting", - "name": "Sui Fong Ivy Tsui", - "original_name": "Sui Fong Ivy Tsui", - "popularity": 2.039, - "profile_path": "/p0L9wNrSU0LFZsWVXFiqzB9tUMi.jpg", - "cast_id": 101, - "character": "Coco", - "credit_id": "64d2b076037264013914e0e6", - "order": 15 - }, - { - "adult": false, - "gender": 2, - "id": 165359, - "known_for_department": "Acting", - "name": "Stewart Alexander", - "original_name": "Stewart Alexander", - "popularity": 1.4, - "profile_path": "/najx2f4DAKt7DtQkPEyNXJURyNe.jpg", - "cast_id": 102, - "character": "Tourist Buisinessman", - "credit_id": "64d2b0b4bf31f201cd4cd569", - "order": 16 - }, - { - "adult": false, - "gender": 1, - "id": 97550, - "known_for_department": "Acting", - "name": "Able Wanamakok", - "original_name": "Able Wanamakok", - "popularity": 3.605, - "profile_path": "/sALxV7ZuLxsQcPfHu0mSMdjv78p.jpg", - "cast_id": 111, - "character": "Tourists' Friend", - "credit_id": "64d317ddb6c264011da0068a", - "order": 17 - }, - { - "adult": false, - "gender": 0, - "id": 4259752, - "known_for_department": "Acting", - "name": "Xiong Jinyi", - "original_name": "Xiong Jinyi", - "popularity": 1.018, - "profile_path": null, - "cast_id": 116, - "character": "Tourists' Friend", - "credit_id": "64fa62eadb4ed610363c5b8f", - "order": 18 - }, - { - "adult": false, - "gender": 0, - "id": 4259754, - "known_for_department": "Acting", - "name": "Cai Jingjing", - "original_name": "Cai Jingjing", - "popularity": 0.648, - "profile_path": null, - "cast_id": 117, - "character": "Newlywed Woman", - "credit_id": "64fa63185f2b8d00e12e7319", - "order": 19 - }, - { - "adult": false, - "gender": 0, - "id": 4204604, - "known_for_department": "Acting", - "name": "Li Xin", - "original_name": "Li Xin", - "popularity": 0.648, - "profile_path": null, - "cast_id": 103, - "character": "Guest", - "credit_id": "64d2b12bbf31f201ccbc27a8", - "order": 20 - }, - { - "adult": false, - "gender": 2, - "id": 2522177, - "known_for_department": "Acting", - "name": "Kenneth Won", - "original_name": "Kenneth Won", - "popularity": 2.761, - "profile_path": "/5vhOcyQ0LgBFXHlvhoJ0IyqwGSX.jpg", - "cast_id": 110, - "character": "Club Paradise Guide", - "credit_id": "64d317c0db4ed600ffb6090a", - "order": 21 - }, - { - "adult": false, - "gender": 0, - "id": 4259755, - "known_for_department": "Acting", - "name": "Longxi", - "original_name": "Longxi", - "popularity": 0.6, - "profile_path": null, - "cast_id": 118, - "character": "Cute Girl on Boat", - "credit_id": "64fa634fdb4ed610363c5ba7", - "order": 22 - }, - { - "adult": false, - "gender": 2, - "id": 2494369, - "known_for_department": "Acting", - "name": "Bai Narisu", - "original_name": "Bai Narisu", - "popularity": 3.604, - "profile_path": "/nh5yrlDCJQHMEAsqHHcdhFEk2Qi.jpg", - "cast_id": 109, - "character": "Cute Guy on Boat", - "credit_id": "64d3177cd100b6011c7f25c8", - "order": 23 - }, - { - "adult": false, - "gender": 0, - "id": 40739, - "known_for_department": "Crew", - "name": "Matthew Stirling", - "original_name": "Matthew Stirling", - "popularity": 3.496, - "profile_path": "/eOxhalNnaj7oHof0JIPC6n8KHPK.jpg", - "cast_id": 119, - "character": "Leary Crewman", - "credit_id": "64fa6366a35c8e00e255c35b", - "order": 24 - }, - { - "adult": false, - "gender": 2, - "id": 193020, - "known_for_department": "Acting", - "name": "Richard Glover", - "original_name": "Richard Glover", - "popularity": 2.254, - "profile_path": "/iaGTaqXVZcc1JVvUOjfflL8vvvh.jpg", - "cast_id": 120, - "character": "Mercenary Pilot", - "credit_id": "64fa637effc9de0138eb658a", - "order": 25 - }, - { - "adult": false, - "gender": 0, - "id": 2423284, - "known_for_department": "Crew", - "name": "Billy Clements", - "original_name": "Billy Clements", - "popularity": 0.703, - "profile_path": null, - "cast_id": 104, - "character": "Mercenary", - "credit_id": "64d2b184bf31f201c94bfe3f", - "order": 26 - }, - { - "adult": false, - "gender": 2, - "id": 2752069, - "known_for_department": "Crew", - "name": "Jonny James", - "original_name": "Jonny James", - "popularity": 1.624, - "profile_path": "/yNLcisY7ThsxzIP0Lj54OPB9rw9.jpg", - "cast_id": 108, - "character": "Mercenary", - "credit_id": "64d31703db4ed6013957e0df", - "order": 27 - }, - { - "adult": false, - "gender": 0, - "id": 4259756, - "known_for_department": "Acting", - "name": "Enzo di Bonaventura", - "original_name": "Enzo di Bonaventura", - "popularity": 0.6, - "profile_path": null, - "cast_id": 121, - "character": "Curious Tourist", - "credit_id": "64fa63aedc1cb4013d0df17b", - "order": 28 - }, - { - "adult": false, - "gender": 1, - "id": 28483, - "known_for_department": "Acting", - "name": "Sara Dee", - "original_name": "Sara Dee", - "popularity": 2.669, - "profile_path": "/b5YW2CBc4dvdKmVmJPCI0zYX1V2.jpg", - "cast_id": 107, - "character": "Parrot / Suit Voice (voice)", - "credit_id": "64d316dadd926a01e626e867", - "order": 29 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 976, - "known_for_department": "Acting", - "name": "Jason Statham", - "original_name": "Jason Statham", - "popularity": 118.356, - "profile_path": "/lldeQ91GwIVff43JBrpdbAAeYWj.jpg", - "credit_id": "64598c7d1b70ae01260c9b54", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 2211, - "known_for_department": "Production", - "name": "Gerald R. Molen", - "original_name": "Gerald R. Molen", - "popularity": 4.65, - "profile_path": "/m1C2E9MWClm3ITzxQzUxmE1qphL.jpg", - "credit_id": "64598d7077d23b00e2f5a8e1", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 5553, - "known_for_department": "Sound", - "name": "Harry Gregson-Williams", - "original_name": "Harry Gregson-Williams", - "popularity": 6.418, - "profile_path": "/xLuIAM22zCffnzPyKOSRQQYh03C.jpg", - "credit_id": "6459913c156cc700ffa78a80", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 2, - "id": 10952, - "known_for_department": "Production", - "name": "Lorenzo di Bonaventura", - "original_name": "Lorenzo di Bonaventura", - "popularity": 1.355, - "profile_path": "/skMUk4eVV6e08mv31A48jdYpEPp.jpg", - "credit_id": "60ca91ab665408003fd1a4fe", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 20516, - "known_for_department": "Writing", - "name": "Dean Georgaris", - "original_name": "Dean Georgaris", - "popularity": 4.844, - "profile_path": "/z5fxTbK7ekUO1ibwKUKlsxq0kaE.jpg", - "credit_id": "60ca917466ae4d0059c6c7fb", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 20516, - "known_for_department": "Writing", - "name": "Dean Georgaris", - "original_name": "Dean Georgaris", - "popularity": 4.844, - "profile_path": "/z5fxTbK7ekUO1ibwKUKlsxq0kaE.jpg", - "credit_id": "64fa607c5f2b8d00e12e729d", - "department": "Writing", - "job": "Screenstory" - }, - { - "adult": false, - "gender": 0, - "id": 23425, - "known_for_department": "Art", - "name": "Chris Lowe", - "original_name": "Chris Lowe", - "popularity": 0.932, - "profile_path": null, - "credit_id": "62eaaafd1bf266005da4d1d2", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 2, - "id": 24217, - "known_for_department": "Camera", - "name": "Haris Zambarloukos", - "original_name": "Haris Zambarloukos", - "popularity": 2.435, - "profile_path": "/buBq3MDhGydmOBQvodoNA5lk0PE.jpg", - "credit_id": "6459907d3fe16000e32873cc", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 1, - "id": 53471, - "known_for_department": "Writing", - "name": "Belle Avery", - "original_name": "Belle Avery", - "popularity": 3.151, - "profile_path": "/s5RVco8H90NxipRHoHccqDJRxNM.jpg", - "credit_id": "5d2c09c7a294f042db2f5954", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 54252, - "known_for_department": "Production", - "name": "E. Bennett Walsh", - "original_name": "E. Bennett Walsh", - "popularity": 2.771, - "profile_path": null, - "credit_id": "64598d60fe077a5caadf6ade", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 59533, - "known_for_department": "Costume & Make-Up", - "name": "Lindsay Pugh", - "original_name": "Lindsay Pugh", - "popularity": 0.996, - "profile_path": null, - "credit_id": "62eaab56f1b571005e2c7f39", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 2, - "id": 72075, - "known_for_department": "Production", - "name": "Kenneth Atchity", - "original_name": "Kenneth Atchity", - "popularity": 1.174, - "profile_path": null, - "credit_id": "60ca91c6c390c500413628bb", - "department": "Production", - "job": "Associate Producer" - }, - { - "adult": false, - "gender": 0, - "id": 72076, - "known_for_department": "Production", - "name": "Chi-Li Wong", - "original_name": "Chi-Li Wong", - "popularity": 0.907, - "profile_path": null, - "credit_id": "60ca91b942d8a5003f7af848", - "department": "Production", - "job": "Associate Producer" - }, - { - "adult": false, - "gender": 2, - "id": 78871, - "known_for_department": "Acting", - "name": "Wu Jing", - "original_name": "Wu Jing", - "popularity": 29.324, - "profile_path": "/pgE2SqqtbT6dNo8waDMTpYuVVCj.jpg", - "credit_id": "64598d58ae384301386ac077", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 75109, - "known_for_department": "Lighting", - "name": "Dan Lowe", - "original_name": "Dan Lowe", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a5fa172d7f0092dac9b2", - "department": "Lighting", - "job": "Gaffer" - }, - { - "adult": false, - "gender": 0, - "id": 75113, - "known_for_department": "Camera", - "name": "Luke Redgrave", - "original_name": "Luke Redgrave", - "popularity": 1.778, - "profile_path": null, - "credit_id": "6370a72221621b009ba288d8", - "department": "Camera", - "job": "Camera Operator" - }, - { - "adult": false, - "gender": 2, - "id": 112947, - "known_for_department": "Writing", - "name": "Erich Hoeber", - "original_name": "Erich Hoeber", - "popularity": 2.262, - "profile_path": "/iIV4kJKeaOth7n7iYVMOl2DQ3lw.jpg", - "credit_id": "60ca917f7739410040bb4494", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 112947, - "known_for_department": "Writing", - "name": "Erich Hoeber", - "original_name": "Erich Hoeber", - "popularity": 2.262, - "profile_path": "/iIV4kJKeaOth7n7iYVMOl2DQ3lw.jpg", - "credit_id": "64fa606d5f2b8d00fef66b4a", - "department": "Writing", - "job": "Screenstory" - }, - { - "adult": false, - "gender": 2, - "id": 112948, - "known_for_department": "Writing", - "name": "Jon Hoeber", - "original_name": "Jon Hoeber", - "popularity": 2.708, - "profile_path": null, - "credit_id": "60ca918b18864b006e2eba86", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 112948, - "known_for_department": "Writing", - "name": "Jon Hoeber", - "original_name": "Jon Hoeber", - "popularity": 2.708, - "profile_path": null, - "credit_id": "64fa607743494f013b993f2e", - "department": "Writing", - "job": "Screenstory" - }, - { - "adult": false, - "gender": 2, - "id": 137467, - "known_for_department": "Directing", - "name": "Ben Wheatley", - "original_name": "Ben Wheatley", - "popularity": 7.78, - "profile_path": "/d9MEfHUzizFSB5IdrsGxG8vYBLK.jpg", - "credit_id": "5f93805c84448e00439a82d7", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 969704, - "known_for_department": "Editing", - "name": "Jonathan Amos", - "original_name": "Jonathan Amos", - "popularity": 1.867, - "profile_path": "/p8UQ1bxUrio1xsmHR9n2zFp7Y5Y.jpg", - "credit_id": "62eaab2448333a0061eb2719", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1180713, - "known_for_department": "Production", - "name": "Randy Greenberg", - "original_name": "Randy Greenberg", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a35d21621b00777dbf26", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1188916, - "known_for_department": "Production", - "name": "Erik Howsam", - "original_name": "Erik Howsam", - "popularity": 2.12, - "profile_path": null, - "credit_id": "64598d683fe16001557155b6", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1189807, - "known_for_department": "Camera", - "name": "Tim Wooster", - "original_name": "Tim Wooster", - "popularity": 1.148, - "profile_path": null, - "credit_id": "6370a65802842000dcab2001", - "department": "Camera", - "job": "Second Unit Director of Photography" - }, - { - "adult": false, - "gender": 0, - "id": 1243035, - "known_for_department": "Writing", - "name": "Steve Alten", - "original_name": "Steve Alten", - "popularity": 1.073, - "profile_path": null, - "credit_id": "60ca9152c390c5002a021968", - "department": "Writing", - "job": "Novel" - }, - { - "adult": false, - "gender": 0, - "id": 1338262, - "known_for_department": "Directing", - "name": "Saithip Boonyasomphop", - "original_name": "Saithip Boonyasomphop", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a7721684f70083dcb307", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1408347, - "known_for_department": "Visual Effects", - "name": "Peter Bebb", - "original_name": "Peter Bebb", - "popularity": 1.987, - "profile_path": null, - "credit_id": "6459915fae384300fef53670", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 1411064, - "known_for_department": "Costume & Make-Up", - "name": "Joe Hopker", - "original_name": "Joe Hopker", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a3e721621b007dd9f9c0", - "department": "Costume & Make-Up", - "job": "Makeup Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1434639, - "known_for_department": "Costume & Make-Up", - "name": "Catherine Heys", - "original_name": "Catherine Heys", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a3c98138310080857144", - "department": "Costume & Make-Up", - "job": "Makeup Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1434643, - "known_for_department": "Crew", - "name": "Waldo Mason", - "original_name": "Waldo Mason", - "popularity": 0.895, - "profile_path": null, - "credit_id": "6370a400ca4f6700c68dd3a8", - "department": "Costume & Make-Up", - "job": "Prosthetics" - }, - { - "adult": false, - "gender": 0, - "id": 1439752, - "known_for_department": "Production", - "name": "Peter Bardsley", - "original_name": "Peter Bardsley", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a75f798e0600914f0b41", - "department": "Production", - "job": "Location Manager" - }, - { - "adult": false, - "gender": 0, - "id": 1541577, - "known_for_department": "Directing", - "name": "Mark Layton", - "original_name": "Mark Layton", - "popularity": 0.642, - "profile_path": null, - "credit_id": "6370a4610284200082797bd6", - "department": "Production", - "job": "Production Manager" - }, - { - "adult": false, - "gender": 2, - "id": 1631516, - "known_for_department": "Production", - "name": "Cliff Lanning", - "original_name": "Cliff Lanning", - "popularity": 2.262, - "profile_path": "/fMbBthNyuTtB2bayJHSrmrWIR0G.jpg", - "credit_id": "6370a36721621b00b49f007b", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1631516, - "known_for_department": "Production", - "name": "Cliff Lanning", - "original_name": "Cliff Lanning", - "popularity": 2.262, - "profile_path": "/fMbBthNyuTtB2bayJHSrmrWIR0G.jpg", - "credit_id": "6370a49281383100dd36e1d5", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 1635063, - "known_for_department": "Production", - "name": "Jami Chan", - "original_name": "Jami Chan", - "popularity": 1.96, - "profile_path": null, - "credit_id": "6370a42d81383100b5120771", - "department": "Production", - "job": "Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 1647906, - "known_for_department": "Costume & Make-Up", - "name": "Atchariya Pinitsanpirom", - "original_name": "Atchariya Pinitsanpirom", - "popularity": 0.997, - "profile_path": null, - "credit_id": "6370a376ca4f6700bbbfd42a", - "department": "Production", - "job": "Line Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1706702, - "known_for_department": "Camera", - "name": "Stamos Triantafyllos", - "original_name": "Stamos Triantafyllos", - "popularity": 1.054, - "profile_path": null, - "credit_id": "6370a68621621b007dd9fabc", - "department": "Camera", - "job": "Camera Operator" - }, - { - "adult": false, - "gender": 0, - "id": 1712970, - "known_for_department": "Camera", - "name": "Ben Saffer", - "original_name": "Ben Saffer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a631813831007730b06e", - "department": "Camera", - "job": "Digital Imaging Technician" - }, - { - "adult": false, - "gender": 1, - "id": 1737667, - "known_for_department": "Production", - "name": "Cate Adams", - "original_name": "Cate Adams", - "popularity": 1.002, - "profile_path": null, - "credit_id": "64598c91ae38430155ed491a", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1762191, - "known_for_department": "Directing", - "name": "Anita Christy", - "original_name": "Anita Christy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a77e1684f7007736c3ed", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1775681, - "known_for_department": "Directing", - "name": "Ben Dixon", - "original_name": "Ben Dixon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a44e02842000dcab1f44", - "department": "Production", - "job": "Unit Production Manager" - }, - { - "adult": false, - "gender": 1, - "id": 1796987, - "known_for_department": "Crew", - "name": "Rachael Evelyn", - "original_name": "Rachael Evelyn", - "popularity": 4.261, - "profile_path": null, - "credit_id": "64cfc7ca85090f00e7974593", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1819553, - "known_for_department": "Crew", - "name": "Peter Ayriss", - "original_name": "Peter Ayriss", - "popularity": 0.818, - "profile_path": null, - "credit_id": "6370a58e21621b007dd9fa6e", - "department": "Camera", - "job": "Drone Pilot" - }, - { - "adult": false, - "gender": 2, - "id": 1824249, - "known_for_department": "Crew", - "name": "Theo Morton", - "original_name": "Theo Morton", - "popularity": 2.081, - "profile_path": "/4Tb0c4se7k6dXieFTx38kY86aB4.jpg", - "credit_id": "64cfc7b4549dda00e2dd7f87", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 1966279, - "known_for_department": "Camera", - "name": "Alex Mott", - "original_name": "Alex Mott", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a61aca4f6700bbbfd539", - "department": "Camera", - "job": "Key Grip" - }, - { - "adult": false, - "gender": 0, - "id": 1985337, - "known_for_department": "Camera", - "name": "Iain Thomson", - "original_name": "Iain Thomson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a69a798e0600914f0ad3", - "department": "Camera", - "job": "Digital Imaging Technician" - }, - { - "adult": false, - "gender": 0, - "id": 2010328, - "known_for_department": "Directing", - "name": "Teresa Orlando", - "original_name": "Teresa Orlando", - "popularity": 0.608, - "profile_path": null, - "credit_id": "6370a4abca4f67009b54f29f", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 2060688, - "known_for_department": "Costume & Make-Up", - "name": "Alice Hollingum", - "original_name": "Alice Hollingum", - "popularity": 0.996, - "profile_path": null, - "credit_id": "6370a3da028420007d729df6", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2094299, - "known_for_department": "Directing", - "name": "Mac Montero", - "original_name": "Mac Montero", - "popularity": 0.694, - "profile_path": null, - "credit_id": "6370a49d81383100b51207a0", - "department": "Directing", - "job": "Third Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 2358479, - "known_for_department": "Costume & Make-Up", - "name": "Roseanna Larner", - "original_name": "Roseanna Larner", - "popularity": 0.98, - "profile_path": null, - "credit_id": "6370a3f00284200082797b9d", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2362143, - "known_for_department": "Production", - "name": "Catherine Xujun Ying", - "original_name": "Catherine Xujun Ying", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61fd4b26b7abb500e890618b", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2383714, - "known_for_department": "Directing", - "name": "Charlie Reed", - "original_name": "Charlie Reed", - "popularity": 1.143, - "profile_path": null, - "credit_id": "6370a483ca4f6700bbbfd497", - "department": "Production", - "job": "Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2425421, - "known_for_department": "Camera", - "name": "Dean Thompson", - "original_name": "Dean Thompson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a6b581383100abf66d9c", - "department": "Camera", - "job": "First Assistant \"A\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 2650621, - "known_for_department": "Costume & Make-Up", - "name": "Sylvia Atkins", - "original_name": "Sylvia Atkins", - "popularity": 1.4, - "profile_path": null, - "credit_id": "6370a3b921621b00777dbf4c", - "department": "Costume & Make-Up", - "job": "Makeup Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2825744, - "known_for_department": "Camera", - "name": "Dominique Cheung", - "original_name": "Dominique Cheung", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a5b502842000b44cc2c9", - "department": "Camera", - "job": "First Assistant \"B\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3144882, - "known_for_department": "Crew", - "name": "Adam Kiani", - "original_name": "Adam Kiani", - "popularity": 0.98, - "profile_path": "/nQpcPSc9MSM1KCrhM4xdglk8vIl.jpg", - "credit_id": "64cfc7da4d679100acf0e0fd", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 3240958, - "known_for_department": "Lighting", - "name": "Ella Robinson", - "original_name": "Ella Robinson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a625798e0600dc3663cf", - "department": "Lighting", - "job": "Electrician" - }, - { - "adult": false, - "gender": 0, - "id": 3336546, - "known_for_department": "Camera", - "name": "Oliver Squire", - "original_name": "Oliver Squire", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a6f91684f70083dcb2c6", - "department": "Camera", - "job": "Second Assistant \"A\" Camera" - }, - { - "adult": false, - "gender": 1, - "id": 3528061, - "known_for_department": "Crew", - "name": "Emma Ennis", - "original_name": "Emma Ennis", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfc7c5303c850100b13b06", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3783637, - "known_for_department": "Production", - "name": "Ariel Murray-Simmons", - "original_name": "Ariel Murray-Simmons", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a47621621b007dd9fa0a", - "department": "Production", - "job": "Unit Manager" - }, - { - "adult": false, - "gender": 0, - "id": 3783639, - "known_for_department": "Camera", - "name": "Jack Ainsworth", - "original_name": "Jack Ainsworth", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a570ca4f6700c68dd43a", - "department": "Camera", - "job": "Camera Trainee" - }, - { - "adult": false, - "gender": 0, - "id": 3783640, - "known_for_department": "Lighting", - "name": "Lester Ambrose", - "original_name": "Lester Ambrose", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a57a02842000b44cc2ad", - "department": "Lighting", - "job": "Electrician" - }, - { - "adult": false, - "gender": 0, - "id": 3783641, - "known_for_department": "Lighting", - "name": "Paul Helm", - "original_name": "Paul Helm", - "popularity": 0.98, - "profile_path": null, - "credit_id": "6370a5c6172d7f00b5fdb00b", - "department": "Lighting", - "job": "Electrician" - }, - { - "adult": false, - "gender": 0, - "id": 3783642, - "known_for_department": "Crew", - "name": "John Koukouzis", - "original_name": "John Koukouzis", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a5da798e0600b4d08248", - "department": "Crew", - "job": "Drone Operator" - }, - { - "adult": false, - "gender": 0, - "id": 3783643, - "known_for_department": "Crew", - "name": "John Koutsoulas", - "original_name": "John Koutsoulas", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a5e821621b009ba28871", - "department": "Crew", - "job": "Drone Operator" - }, - { - "adult": false, - "gender": 0, - "id": 3783644, - "known_for_department": "Lighting", - "name": "Sacha Kovacevic", - "original_name": "Sacha Kovacevic", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a5f1813831008b7c952f", - "department": "Lighting", - "job": "Electrician" - }, - { - "adult": false, - "gender": 0, - "id": 3783645, - "known_for_department": "Camera", - "name": "Piran John Miller", - "original_name": "Piran John Miller", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a60a21621b009112ed0c", - "department": "Camera", - "job": "Second Assistant Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3783647, - "known_for_department": "Camera", - "name": "Aphisit 'Pep' Wansri", - "original_name": "Aphisit 'Pep' Wansri", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a640ca4f67008211dbb8", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 0, - "id": 3783648, - "known_for_department": "Camera", - "name": "Beth Trinder", - "original_name": "Beth Trinder", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a675798e0600aa9fdabb", - "department": "Camera", - "job": "Assistant Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3783651, - "known_for_department": "Camera", - "name": "Nisa Rizvi", - "original_name": "Nisa Rizvi", - "popularity": 0.98, - "profile_path": null, - "credit_id": "6370a70c798e0600914f0b16", - "department": "Camera", - "job": "Camera Trainee" - }, - { - "adult": false, - "gender": 0, - "id": 3783652, - "known_for_department": "Costume & Make-Up", - "name": "Zachary Winnington", - "original_name": "Zachary Winnington", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a74e1684f7008072eff1", - "department": "Costume & Make-Up", - "job": "Costume Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3783653, - "known_for_department": "Production", - "name": "Tom Beltrandi", - "original_name": "Tom Beltrandi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a767ca4f67007fc316bd", - "department": "Production", - "job": "Location Manager" - }, - { - "adult": false, - "gender": 0, - "id": 4052337, - "known_for_department": "Production", - "name": "Ruigang Li", - "original_name": "Ruigang Li", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64598d36ae38430155ed4987", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 4239323, - "known_for_department": "Production", - "name": "Kelly Lee", - "original_name": "Kelly Lee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecb63006f984012d740281", - "department": "Production", - "job": "Production Manager" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Make a Stand", - "key": "94NhiwjR6fw", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-09-20T15:00:13.000Z", - "id": "650b4f05d6c30000edeffe4d" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Up from the Depths: Even More Beasts", - "key": "YrFdtxb0CGI", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-09-14T15:00:33.000Z", - "id": "650b4f3cd6c300010e05c6af" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Get the Fuel", - "key": "1ay8gcgEtEg", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-09-04T15:00:01.000Z", - "id": "650b4f2e501cf200e3c0f6b1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Octopus Attack", - "key": "gkgxWJwY6Xw", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-09-02T15:00:25.000Z", - "id": "650b4f18aede591aae7a8769" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Extended Preview", - "key": "NMSilJCThnc", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-08-25T14:00:16.000Z", - "id": "64e91ebe06f98400ca55792a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Good Luck", - "key": "A_EOMsqb4gM", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-08-24T15:00:07.000Z", - "id": "64e81330e894a6013bb019ca" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Do you suffer from the following?", - "key": "Xh8lOrObhHs", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-04T20:53:00.000Z", - "id": "64e3a2f465e0a20139ffacea" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Big-A$$ Sharks", - "key": "ujp_0ws6nk0", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-04T20:31:29.000Z", - "id": "64d34a0adb4ed600e2b4dd5b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "BTS from the Depths", - "key": "BU3e8cTsojc", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-08-03T21:00:06.000Z", - "id": "64cc85e7706e5600c9a0fc47" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Just a few of my fav local spots", - "key": "cPFlnJRp9N8", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-02T21:07:21.000Z", - "id": "64e3a2c4d7cd06013cbde8a9" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Meg on the Thames", - "key": "9h9QnLuucPY", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-08-01T14:50:58.000Z", - "id": "64ca6a990b74e900ea8bc35a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Exist", - "key": "xxyJRvI41k0", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-07T11:11:35.000Z", - "id": "64afd0eee24b935b32b045f2" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Fun Island", - "key": "27_JHKTmdZE", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-07T11:07:37.000Z", - "id": "64afd0bae24b935b30a2d706" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Transmission", - "key": "LptU9LtDSLA", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-07T11:01:04.000Z", - "id": "64afd1376a3448012ce803c4" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Magic", - "key": "sWWeN8iEO88", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-19T14:26:20.000Z", - "id": "646826782bcf6700fe5ff377" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "dG91B3hHyY4", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-05-08T22:00:15.000Z", - "id": "64597c0d156cc7013ff1b9d8" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/8pjWz2lt29KyVGoq1mXYu6Br7dE.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/5mzr6JZbrqnqD8rCEvPhuCE5Fw2.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/zI8JZ05S9Lm1D2TuZcovlUD0ptk.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "tr", - "file_path": "/gD7UURPGoxm2eGFC0MnUPIe8Ncv.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/qlxy8yo5bcgUw2KAmmojUKp4rHd.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/2Icjry0xdRSNxrtsBR1F47b9r3u.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/na442LUrWkQMxSmrQUPtaw3T3nn.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/2iNUodSKykQ4VtvtG280ntNy7hB.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/zN41DPmPhwmgJjHwezALdrdvD0h.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1000, - "iso_639_1": null, - "file_path": "/Aukfa8dk6B5OxuelbaPBOJYXaBI.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1778 - }, - { - "aspect_ratio": 1.777, - "height": 1002, - "iso_639_1": "en", - "file_path": "/nmei2VyCb7RYWPgH9ayvwMGXYww.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1781 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/bFtAauBTA5HDOHShO2IMKbfXl1p.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/8Ki2QD1mXL3o5ZxHtvzik3vagZ6.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "zh", - "file_path": "/tyjAXIGkvm9sJPWfqXiNTrLqZUW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "it", - "file_path": "/z0BfLSi2Jg1wPeDk9h12epcjptY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "it", - "file_path": "/ewD0nCanirwfSFqkXJufCSwlX0m.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "cs", - "file_path": "/vfPlTtNuhGamTdAHHlgS87MLHis.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/pYFNA112h90QtMDN5MGouTioL8M.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/5qAFgeWIuSb1VrZlGdSuHb5xe2T.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1152, - "iso_639_1": "en", - "file_path": "/wMHPWMjR4UcGDU054NIhP74lbHt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2048 - }, - { - "aspect_ratio": 1.778, - "height": 1152, - "iso_639_1": "en", - "file_path": "/oEJl2d0OdI9uURU3maAQHqj7P1h.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2048 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "de", - "file_path": "/q8uQiOcv2qxLMIeN4wXUD3Zlt1Q.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "fr", - "file_path": "/r72aBhg84kKmZa7JFuPGHMcwvOs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/zr5mHLqTRleb3SAdYMnGovtsnaa.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/bcSJyVoPSy99CTSnJA42o0tDsWx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/tLiHIPv9VD37T5YzIzRXG7zNAZm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/l9SvYXAehH0d5KfnyucwwjsPiGv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/1o3Ehk8ai9eF1cKrk2O4XWhU2vW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/ufGo2PFAImwUBJ4UXZxo0aEJnAO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/1QDFJNTNBNNDNHaiLiVI2APO2py.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/tw67OlJ4tesaAw8R9i0Dq196KM3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - } - ], - "logos": [ - { - "aspect_ratio": 3.237, - "height": 1297, - "iso_639_1": "en", - "file_path": "/xjzbSDGtnxnr2E1eXWTEcmVbuZR.png", - "vote_average": 5.384, - "vote_count": 2, - "width": 4198 - }, - { - "aspect_ratio": 3.237, - "height": 1297, - "iso_639_1": "en", - "file_path": "/xfu52018OAqF3J6Oc7HQBYbOot6.png", - "vote_average": 5.384, - "vote_count": 2, - "width": 4198 - }, - { - "aspect_ratio": 2.374, - "height": 262, - "iso_639_1": "zh", - "file_path": "/8McBYDpHUe1VeTnGkuFLIuCUOQh.png", - "vote_average": 5.384, - "vote_count": 2, - "width": 622 - }, - { - "aspect_ratio": 3.233, - "height": 993, - "iso_639_1": "en", - "file_path": "/wpv8lP3C5WEqov4niCwUInx8Crw.png", - "vote_average": 5.246, - "vote_count": 2, - "width": 3210 - }, - { - "aspect_ratio": 5.948, - "height": 231, - "iso_639_1": "es", - "file_path": "/kcq8o2YAHpBCpUBxJfNlTSTAQXC.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1374 - }, - { - "aspect_ratio": 1.66, - "height": 482, - "iso_639_1": "en", - "file_path": "/pmG7DR97uoEUSSimCp7QKkwlaUM.png", - "vote_average": 5.106, - "vote_count": 2, - "width": 800 - }, - { - "aspect_ratio": 3.281, - "height": 278, - "iso_639_1": "zh", - "file_path": "/sH4CoECml3AkpIoaT47Zt5Hatea.png", - "vote_average": 5.106, - "vote_count": 2, - "width": 912 - }, - { - "aspect_ratio": 6.199, - "height": 1324, - "iso_639_1": "fr", - "file_path": "/cPvgXX7TSqE28UOMrxr3n2Af1Gj.png", - "vote_average": 0, - "vote_count": 0, - "width": 8207 - }, - { - "aspect_ratio": 2.941, - "height": 358, - "iso_639_1": "ja", - "file_path": "/pd3vvTXjpcBm8H67XIEKNxHl06W.png", - "vote_average": 0, - "vote_count": 0, - "width": 1053 - }, - { - "aspect_ratio": 7.841, - "height": 145, - "iso_639_1": "ja", - "file_path": "/r2HkEQ5InHi4bHsZB2DJEAQ1SmJ.png", - "vote_average": 0, - "vote_count": 0, - "width": 1137 - }, - { - "aspect_ratio": 2.949, - "height": 335, - "iso_639_1": "uk", - "file_path": "/aYx8P1U2Bw4us61UjxJ1sj1eB3L.png", - "vote_average": 0, - "vote_count": 0, - "width": 988 - }, - { - "aspect_ratio": 9.405, - "height": 84, - "iso_639_1": "pt", - "file_path": "/q2AoGpTGKHojsWWVKRLRueQ3bSz.png", - "vote_average": 0, - "vote_count": 0, - "width": 790 - }, - { - "aspect_ratio": 2.271, - "height": 266, - "iso_639_1": "th", - "file_path": "/eb8JUYztUnoJIyu4vRyScVqFXjd.png", - "vote_average": 0, - "vote_count": 0, - "width": 604 - }, - { - "aspect_ratio": 9.17, - "height": 165, - "iso_639_1": "pt", - "file_path": "/xIuXZ3xf2tMLZO6rOIAL2v08O2Q.png", - "vote_average": 0, - "vote_count": 0, - "width": 1513 - }, - { - "aspect_ratio": 2.357, - "height": 384, - "iso_639_1": "fr", - "file_path": "/3AH57JjgfckxqOtPBnFegEFDU9O.png", - "vote_average": 0, - "vote_count": 0, - "width": 905 - }, - { - "aspect_ratio": 2.465, - "height": 482, - "iso_639_1": "cn", - "file_path": "/yokqfy88mWhrQIAWCWAzn1RWOTq.png", - "vote_average": 0, - "vote_count": 0, - "width": 1188 - }, - { - "aspect_ratio": 4.537, - "height": 175, - "iso_639_1": "it", - "file_path": "/g2YU8gjujXVjcCYSX6gHl6AdP6n.png", - "vote_average": 0, - "vote_count": 0, - "width": 794 - }, - { - "aspect_ratio": 3.242, - "height": 289, - "iso_639_1": "da", - "file_path": "/aTVTbBKJr4G0sxyOGbG4OJsMCGD.png", - "vote_average": 0, - "vote_count": 0, - "width": 937 - }, - { - "aspect_ratio": 3.329, - "height": 1261, - "iso_639_1": "de", - "file_path": "/eQZ8X7IrhssokUmRAdm2hcrTBp7.png", - "vote_average": 0, - "vote_count": 0, - "width": 4198 - }, - { - "aspect_ratio": 3.158, - "height": 247, - "iso_639_1": "cs", - "file_path": "/PBMXlcA3VGSAHneSxjulgLTFiS.png", - "vote_average": 0, - "vote_count": 0, - "width": 780 - }, - { - "aspect_ratio": 6.078, - "height": 129, - "iso_639_1": "es", - "file_path": "/bGAFzl73lUxkEEiQqNxkYFt3VH8.png", - "vote_average": 0, - "vote_count": 0, - "width": 784 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/vbvcvIxXywM6rP1ayoz3AxE83oe.jpg", - "vote_average": 5.834, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/ww0197yqAzP0ih3Er0n18A7D5Zt.jpg", - "vote_average": 5.834, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/qGMp7R7FsUoKrdqIEOcbkA7HFPC.jpg", - "vote_average": 5.586, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/xJUZhfB5tRuSn6Ml0kUf5yB1HZh.jpg", - "vote_average": 5.58, - "vote_count": 11, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/4m1Au3YkjqsxF8iwQy0fPYSxE0h.jpg", - "vote_average": 5.576, - "vote_count": 13, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/mBgynPDplmo5JTY9VfGqY35OjDu.jpg", - "vote_average": 5.52, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/FQHtuf2zc8suMFE28RyvFt3FJN.jpg", - "vote_average": 5.518, - "vote_count": 12, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/f5JwC0zhq0nnPQfOeS8CvdRCIHR.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/drCySAAAvegq1vQRGRqPKN9f00w.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/ijhxSWwgRwXRFVErL0hEkhxNffL.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/6x2CNod5RB3NkXSBJ81Y8KNy4g3.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/vizye6NJMLFgpI8Wmq4HOebGr9z.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "sk", - "file_path": "/esyIcTl8VtbO9M8GxUAWfTlhlcK.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/jsRUTry6NZYJBqMsHE4qbTPjRJe.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.675, - "height": 1482, - "iso_639_1": "no", - "file_path": "/5GIedinx4ZpD0jA3mOOCjLEjbud.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "hu", - "file_path": "/eE8jl6frI7B5PU9WlrnUl9kzfhU.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "ko", - "file_path": "/cbAHK6Vrt0GClMRUxH8TsgC2JqL.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ja", - "file_path": "/kVIhaNn8zTDVcMFiwthvjLjCJMt.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/tPnya8bGupPR7dYxlh5w4z3P6pW.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/asZc9KUBzy3qv8b9d342TwsOt01.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/8eNRxRW6tMKrZkl43uc8gAymwZl.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/lE3H5u1EBf8xi8piZMlMGE9zrvW.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": "tr", - "file_path": "/kgtWaWkERAZfSjIc5KsOHMDuJAV.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1500 - }, - { - "aspect_ratio": 0.672, - "height": 2197, - "iso_639_1": "ro", - "file_path": "/rzei3gGmHheQJwSZTLmHLtmyIXn.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1476 - }, - { - "aspect_ratio": 0.672, - "height": 2197, - "iso_639_1": "ro", - "file_path": "/pIMtEFU5yvkB6CEAaf00I1cX0dv.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1476 - }, - { - "aspect_ratio": 0.672, - "height": 2197, - "iso_639_1": "ro", - "file_path": "/fcpv5neSUmsfMRbXpJbIxOYn3J6.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1476 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "it", - "file_path": "/aXLb2YWXEammySGBh0m6aELmaNq.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": null, - "file_path": "/tGH4MBvmlDyvIvARIYVseRvsZba.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": null, - "file_path": "/h8ppMBasVqCsiUzceOCZkMnaqRa.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/wajeIrwoZPUOIGiCe5WzapNAOO9.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/klGKGITBYYyTiHrph1VDSgGULOR.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2373, - "iso_639_1": "ru", - "file_path": "/nAS7A7ZdUDQLHXsvg2XAX3IUkml.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1582 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/g9AomE2SCzrKCV52qxK1XAWS6Pe.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.685, - "height": 1460, - "iso_639_1": "it", - "file_path": "/hirlrqHvpgCqyDu3hWtewLmgyXX.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/uvYbo4eF3q6W06kpx5iDwC4jt6N.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/nJPlTkgnWUWTzGfDm3DH0yWZoM5.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/iNweHQSpBqiV4oTueFUGzhBqzO9.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/j9IXzr6XI9rfOwElXj44yxyOBJb.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/akOVih5TGPjk84o1hGGXZ0P2tT0.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/32Ha4NQCZw4BVvEXtWIlbL2IDt9.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/vHe1KoxALidSMGHX5xeQI63ygYB.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.75, - "height": 2048, - "iso_639_1": "fr", - "file_path": "/bCSjyOEAJyGflreEANuvEqdkz4.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1536 - }, - { - "aspect_ratio": 0.666, - "height": 2362, - "iso_639_1": "fr", - "file_path": "/yFZWkuNqKZwGwbT3VR1r03Lv2dj.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1574 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "pt", - "file_path": "/wWtASrfOnfrxr3HAV5IfSNSLikQ.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "de", - "file_path": "/sd0PhLR56F9MuxWtXOdZ4nVKOIB.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/b3pYeNq5URt7IADL9xlOadyMv73.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": "de", - "file_path": "/1L67OvSOMLmAsbwm9dlBZV7aICK.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/5eIseU5VC9WgBQ9yZ22cZZYibzq.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1599, - "iso_639_1": "da", - "file_path": "/jTxs5dFRjiBpVgle4bInDNpRCEW.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 1066 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "da", - "file_path": "/9JD7LylO0NzZgPh7ED2mOK8PIst.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/zDZcHcKOv1RVfmjVAgRHPv4bmkJ.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 1389, - "iso_639_1": "zh", - "file_path": "/nSzjqEGupvtQPb2fwccrhKFwioy.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 926 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "es", - "file_path": "/dus1hCux82PoctaeQRAEadeps6S.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/mkMRoepr0sNMksQBlc4HSbye7fR.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1481, - "iso_639_1": "en", - "file_path": "/kGMe8oqY2m8tWRFp3jjglmL7jnY.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/tsQKdg5BXEKEJEheXnl6wi76VAr.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/ptzU9YUSNBPobBThWsHBsDHWM5H.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1080, - "iso_639_1": "no", - "file_path": "/lHDSrLqoNSzaOEbyfD6bBBJyzSE.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 720 - }, - { - "aspect_ratio": 0.658, - "height": 3000, - "iso_639_1": null, - "file_path": "/xUOirVrtDM7BBvxT0dKwxMCiC6P.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1973 - }, - { - "aspect_ratio": 0.675, - "height": 2961, - "iso_639_1": "zh", - "file_path": "/hKuJiyf98MraXRqU6T0mHpZ0WY1.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.664, - "height": 1507, - "iso_639_1": "en", - "file_path": "/3VEBy0YOa9LRfTXJTedltsc2CrY.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.666, - "height": 1229, - "iso_639_1": "en", - "file_path": "/jhknTb0IgkNO5iXGAjOqU5aZ4Vq.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 819 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/gebDN3WqUlZq4edFWS5duYa0A0i.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/wx2phyq7O4PuuPqoajCvXV2ojMd.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/A3AK4IuLXQbqiif3Wrt28qNvkee.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/rwObGayWm7T5e8pXwu2tKDub9xa.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/7B3TyfBDQaspsniueJrP4LCIe3S.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/xcQLbyGO1rkVkBL8jD786xuG0C.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.704, - "height": 800, - "iso_639_1": "zh", - "file_path": "/chPfFYeUvef4FEr8K8VTl9XQ7uO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 563 - }, - { - "aspect_ratio": 0.705, - "height": 2200, - "iso_639_1": "zh", - "file_path": "/2W0WMKNQmWez1gMq4933jx5aAWQ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1551 - }, - { - "aspect_ratio": 0.714, - "height": 2800, - "iso_639_1": "zh", - "file_path": "/gyaO3lkeDjMMLgiw8dlRss4rbPo.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.715, - "height": 1791, - "iso_639_1": "zh", - "file_path": "/stO4vPTDUGDBseMeP8s25Qsvg1T.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1280 - }, - { - "aspect_ratio": 0.714, - "height": 2803, - "iso_639_1": "zh", - "file_path": "/21Bdu846xUqUXuS3WztIpILMOCv.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1599, - "iso_639_1": "zh", - "file_path": "/1kr1xPaeqh5SmgEffHlIZUBbLo6.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1080 - }, - { - "aspect_ratio": 0.675, - "height": 1896, - "iso_639_1": "zh", - "file_path": "/iSfC5G3PllG0AAwFR3Ou7kfWmN1.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/4iMP9bYlsleqP5zhffi8eu1AI2w.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.698, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/meuqVoP2hVT6UH80EWdk622pgRl.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1978 - }, - { - "aspect_ratio": 0.675, - "height": 1494, - "iso_639_1": "zh", - "file_path": "/gwZb5AQEDUaKnlC7gQASlNT0OZB.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1008 - }, - { - "aspect_ratio": 0.673, - "height": 1548, - "iso_639_1": "zh", - "file_path": "/4SfwR59uGgfu1CCyBhCgxcj4kSX.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1042 - }, - { - "aspect_ratio": 0.666, - "height": 1400, - "iso_639_1": "de", - "file_path": "/Am5TE1HPdIFAGBv4CDISxHooHoX.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 933 - }, - { - "aspect_ratio": 0.667, - "height": 1425, - "iso_639_1": "en", - "file_path": "/gn1NYCe3LBGFaeWJv2uFlUSFrdZ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 950 - }, - { - "aspect_ratio": 0.667, - "height": 1425, - "iso_639_1": "en", - "file_path": "/yIRyyC7EXqOHAJjM29wAIbH1nQY.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 950 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/akddLfWDirkkvYrAHHof7YfT54P.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/yphyMQn6KEUa4LoCYIuYZjv2M3O.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/7ZtGxAzYsEZZTUSfRtdDA4JCdi6.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": "es", - "file_path": "/v3nbEzUG85BftyF4RMuEM57qz2W.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/b4nrJALNRBbhOVKnEpjEl8t2DGG.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/p7DU8UIiHorYmlOp0n93gL239Id.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.665, - "height": 907, - "iso_639_1": "en", - "file_path": "/cft9sAu8HMqDd6zCnjXkypLFyCB.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 603 - }, - { - "aspect_ratio": 0.667, - "height": 1542, - "iso_639_1": "zh", - "file_path": "/j79Gw6KuRH8ccRynKC0bxdrurya.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1028 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/hImi8ZPWU1WCZ3IyPA6E9hP6rQp.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/30MUcuI6p4toyfCV349wZleqG5d.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1542, - "iso_639_1": "zh", - "file_path": "/aeIxFfOU5REwtlScG07OE63zTsn.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1028 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/58qcnS8anwKGO3EivX0ibwrDIg2.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/qmOzB9kbWuBNdwlaXRklI3MJNs6.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6K7P4RtBZmNKkituNdDuarFMh9R.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.658, - "height": 3000, - "iso_639_1": "en", - "file_path": "/AkTPs7pjonA2CPUcWNfWeQQ5mO9.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1973 - }, - { - "aspect_ratio": 0.714, - "height": 2800, - "iso_639_1": "zh", - "file_path": "/aF780NvbKO2RlcwIIOJyLy7nhWW.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/hB49j2oRWXyXsyojS0KbWIXmgRR.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1280, - "iso_639_1": "es", - "file_path": "/zKDz6a5M8ZpR2N2eipvBiZ5kjNz.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 864 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/5SJmaEinrSLHMlT6lzmO58oek5a.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/vk6QMiHuk7ZWnougpsvR6w0in8A.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/nLlWgbXRoP26kLw4rzSvxH9XQVq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1750, - "iso_639_1": "it", - "file_path": "/55gBDwzQ2RVGfxJWfPJbSxZbB4B.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1167 - }, - { - "aspect_ratio": 0.75, - "height": 1936, - "iso_639_1": "fr", - "file_path": "/mlSq344dvpCiHuPlBKiiueoVh3K.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1452 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/VXKh9BpS7DvHJxs52zq8TQvlvA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/qaPMIlHoBaVjonMiCEkfgMZCM4d.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/tQDC98AU2FujN3P46EQBu8Aljdd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/7zr4bHsNyAJT7O4QZvfEpNX13pP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/q4DpwvNpvJwmBdnzRnfeyKZwJSV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/fvwrE0PYgDNdp2kiF1VyEMQ003J.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/cvNmnBwo2xm469ob7g2qs9lbGHF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "hu", - "file_path": "/lIGRFRsLHpth2krhBHZqQbTryX6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "nl", - "file_path": "/sP18xI8dgyHFNuT3nW1emgORiDq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "hr", - "file_path": "/2NDvjbgCtWS9w6wvvvcsUrhjljO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.675, - "height": 779, - "iso_639_1": "lo", - "file_path": "/hjoGcUw0xZ0dZnBvpsCvXCuHNIf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 526 - }, - { - "aspect_ratio": 0.675, - "height": 779, - "iso_639_1": "lo", - "file_path": "/6gEdl9HKAnZKIs4DzAanNS1O5p2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 526 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/9IpdtKypexds5DiHi5X2LRu3jkF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.707, - "height": 1500, - "iso_639_1": "ja", - "file_path": "/2B0KdfQkZpbBUB7218MLTOVJsrY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1061 - }, - { - "aspect_ratio": 0.658, - "height": 3000, - "iso_639_1": "ja", - "file_path": "/2ZbOsuUT8Tx0XNEFpSaXRgoKyjm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1973 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ja", - "file_path": "/zsCvHakRgDxyLoKTiv0k7PGWn0C.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/3D5PjyHgWKwknbxfs3cdcGGK8Rt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/7b2CXmMMg1gRrkhuh6dJkPp3ZbS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/zmIxjB8mFyTM3giCSzb5Avz2e8Y.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/rDd4vRnzUe5dIqktjZPfDSY1Nz6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/vETHi47k8Mezeh5CeRWPswhTGG7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/5PTGfi3AJE8ZyhFPrW0jctNmJJx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/90tguiPKVGUhoH6x0VoG7d0OXG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.714, - "height": 1512, - "iso_639_1": "zh", - "file_path": "/jo4oWN549ItW9QBGgQcrapZalR2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/ndXK3L29oqXDJr3VLFfiyl0JyJx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.708, - "height": 1808, - "iso_639_1": "zh", - "file_path": "/pGGAUUtccOKDHh8uM0oQdFRpNRu.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.708, - "height": 1808, - "iso_639_1": "zh", - "file_path": "/pxFFKi7KrgvWJhUqUptdsieK6ee.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/iNvNBWO9i6U1F8NvUywTbVW1ylg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.711, - "height": 1351, - "iso_639_1": "cn", - "file_path": "/pISUQ0dO99b9bzaaeSg27ehF2MR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 960 - }, - { - "aspect_ratio": 0.71, - "height": 2048, - "iso_639_1": "cn", - "file_path": "/UiHfPg7y2IM9fhW7jj4zLXajnp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1455 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "el", - "file_path": "/4U0YTs4W94hMkZU1jrnHKFcyVtK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "el", - "file_path": "/ttKRMDn0tZDotaQkXrhlIqWQY5b.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/a871BYZZM61nyhFvA0kZmqWfp0L.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1383 - }, - { - "aspect_ratio": 0.715, - "height": 1500, - "iso_639_1": "zh", - "file_path": "/7scnBCgd0hDYEAnHfqC7I0tQ39l.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1072 - }, - { - "aspect_ratio": 0.675, - "height": 1500, - "iso_639_1": "zh", - "file_path": "/mmkGWBD1Mv6xu5nrV029NQLBV8C.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1013 - }, - { - "aspect_ratio": 0.675, - "height": 1600, - "iso_639_1": "da", - "file_path": "/a7xxpHZw1U5KZMsDFADnP0iH8Yk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.665, - "height": 2663, - "iso_639_1": "ar", - "file_path": "/uzqfE6NIkQHxv28HipFgiBQ4M3K.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1772 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "pt", - "file_path": "/sTEPkhEZVKP6Aptr4Mh6EEIU1Zb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/93sxESg8clryX5uSJlTwr8b2TN8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "it", - "file_path": "/w6p9mHnkYOuptesKqp8uUeMS5X7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.678, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/kRkwN8ZKnaJG8SxHgJEhE8F7FKT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 976 - }, - { - "aspect_ratio": 0.676, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/rCFfSeFXundeOPWPYFa30QSqROK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 974 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/6RosqzuWdmxRfzHgzPGRA2cVBJk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/kFKkSUutiKaOWxo9fC2f6YkytDi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.675, - "height": 2560, - "iso_639_1": "pt", - "file_path": "/o982XhfTlDmo1wNDPets6k7iOmb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1728 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "de", - "file_path": "/riNGm71Ep5bJjREtNj0HP97vN60.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/7FkqcvUlH6MO366lULlFRkw8Sfr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.698, - "height": 1200, - "iso_639_1": "tr", - "file_path": "/555EoTkCaaaoO4W53UlfkDvF8Zq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 838 - }, - { - "aspect_ratio": 0.699, - "height": 1200, - "iso_639_1": "tr", - "file_path": "/fuLS6g3p8IhXoZrDYSJi7pRbcCl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/6h3LZcgIyFgyLd7N2MDQhKIqDKZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/nd2iDzOYXiITdAgG6w7x9WQ6nWG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/dARsjcAJfqtXP37iOPUS6b3XgP3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/p7ga9sFSBbADHIF1tVBbP7XG28o.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/seHvZ6MgkmuVgwYywIGL1OnUjsU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/6IVwcMLWNPjrW6HxOH7I18Yckrw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/fVUWFCkolrAEDI2zLIpFN5a1X9U.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/cseSZhP9yQbFpKLJFW6mWE4P8cF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/kEsyJehbFzyhijbEFCg5LIN3s4O.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/ogQixCaGN8G8qh0neZPK6miic75.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/s8cZdLneQOzx73Lvx4wVtcpZV1h.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "pt", - "file_path": "/cIyiqeaA5feQMBb2U0YDorEwky3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.685, - "height": 1460, - "iso_639_1": "it", - "file_path": "/t0OqTD9KuKH62LEzNRqK8Vlzy9Q.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.685, - "height": 1460, - "iso_639_1": "it", - "file_path": "/8Wxj1NmjjxhjIoFXf30VdsVsikL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.685, - "height": 2920, - "iso_639_1": "it", - "file_path": "/czQu3oW94oj9QsVjsgZAEifjIoY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.685, - "height": 2920, - "iso_639_1": "it", - "file_path": "/wJY3xxU3J0ScBXNV9HY5TqAZqyi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.685, - "height": 1460, - "iso_639_1": "it", - "file_path": "/crAoiYpoL24WmWoz5EuYwnmStQh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "fr", - "file_path": "/dhOYsGWs4L8jB4b0Uz0V1VnqNcq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 667 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "fr", - "file_path": "/72nA1qxZNTf3Wqg66TeIKIOIN4X.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 667 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/667538.json b/examples/view-transitions/src/content/movies/667538.json deleted file mode 100644 index dd5ee3402..000000000 --- a/examples/view-transitions/src/content/movies/667538.json +++ /dev/null @@ -1,4848 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/2vFuG6bWGyQUzYS9d69E5l85nIz.jpg", - "belongs_to_collection": { - "id": 939352, - "name": "Transformers: Rise of the Beasts Collection", - "poster_path": "/6sAdtwp5LV0jlNVhefTMEsjP7py.jpg", - "backdrop_path": null - }, - "budget": 195000000, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 12, "name": "Adventure" }, - { "id": 878, "name": "Science Fiction" } - ], - "homepage": "https://www.transformersmovie.com", - "id": 667538, - "imdb_id": "tt5090568", - "original_language": "en", - "original_title": "Transformers: Rise of the Beasts", - "overview": "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.", - "popularity": 650.789, - "poster_path": "/gPbM0MK8CP8A174rmUwGsADNYKD.jpg", - "production_companies": [ - { - "id": 82819, - "logo_path": "/gXfFl9pRPaoaq14jybEn1pHeldr.png", - "name": "Skydance", - "origin_country": "US" - }, - { - "id": 4, - "logo_path": "/gz66EfNoYPqHTYI4q9UEN4CbHRc.png", - "name": "Paramount", - "origin_country": "US" - }, - { - "id": 435, - "logo_path": "/AjzK0s2w1GtLfR4hqCjVSYi0Sr8.png", - "name": "di Bonaventura Pictures", - "origin_country": "US" - }, - { "id": 6734, "logo_path": null, "name": "Bay Films", "origin_country": "US" }, - { - "id": 114732, - "logo_path": "/tNCbisMxO5mX2X2bOQxHHQZVYnT.png", - "name": "New Republic Pictures", - "origin_country": "US" - }, - { - "id": 38831, - "logo_path": null, - "name": "Tom DeSanto/Don Murphy Production", - "origin_country": "" - }, - { - "id": 2598, - "logo_path": "/i42C5gRq7XqlG4S9vkchuJZfrBn.png", - "name": "Hasbro", - "origin_country": "US" - } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "2023-06-06", - "revenue": 429800000, - "runtime": 127, - "spoken_languages": [ - { "english_name": "Quechua", "iso_639_1": "qu", "name": "" }, - { "english_name": "Spanish", "iso_639_1": "es", "name": "Español" }, - { "english_name": "English", "iso_639_1": "en", "name": "English" } - ], - "status": "Released", - "tagline": "Unite or fall.", - "title": "Transformers: Rise of the Beasts", - "video": false, - "vote_average": 7.5, - "vote_count": 3191, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 1560244, - "known_for_department": "Acting", - "name": "Anthony Ramos", - "original_name": "Anthony Ramos", - "popularity": 14.962, - "profile_path": "/2Stnm8PQI7xHkVwINb4MhS7LOuR.jpg", - "cast_id": 6, - "character": "Noah Diaz", - "credit_id": "60662146e1ad790029066453", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 1676520, - "known_for_department": "Acting", - "name": "Dominique Fishback", - "original_name": "Dominique Fishback", - "popularity": 6.947, - "profile_path": "/zduC0PM7xKzFX4F7DH8CCt5gt6O.jpg", - "cast_id": 7, - "character": "Elena Wallace", - "credit_id": "608b0e363852020040ff410d", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 19540, - "known_for_department": "Acting", - "name": "Peter Cullen", - "original_name": "Peter Cullen", - "popularity": 9.887, - "profile_path": "/9Snf4fBUkk5MrAjqtNtgZRJYJbj.jpg", - "cast_id": 10, - "character": "Optimus Prime (voice)", - "credit_id": "60d25b2b07165000738d3a34", - "order": 2 - }, - { - "adult": false, - "gender": 2, - "id": 2372, - "known_for_department": "Acting", - "name": "Ron Perlman", - "original_name": "Ron Perlman", - "popularity": 35.184, - "profile_path": "/9riPBfsWpzEzh2y9ucxTW22iakI.jpg", - "cast_id": 11, - "character": "Optimus Primal (voice)", - "credit_id": "60d9fd440b731600456062e0", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 22970, - "known_for_department": "Acting", - "name": "Peter Dinklage", - "original_name": "Peter Dinklage", - "popularity": 18.048, - "profile_path": "/9CAd7wr8QZyIN0E7nm8v1B6WkGn.jpg", - "cast_id": 59, - "character": "Scourge (voice)", - "credit_id": "6388e6840398ab007f8be4f4", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 1620, - "known_for_department": "Acting", - "name": "Michelle Yeoh", - "original_name": "Michelle Yeoh", - "popularity": 35.837, - "profile_path": "/6oxvfyrrM3YmhgFZSqc8ESqPZoC.jpg", - "cast_id": 40, - "character": "Airazor (voice)", - "credit_id": "6345fb88d6c300007f5f9653", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 1427948, - "known_for_department": "Acting", - "name": "Pete Davidson", - "original_name": "Pete Davidson", - "popularity": 18.103, - "profile_path": "/mSlLMk45CUgMGT1o7Pkh9zYaLxK.jpg", - "cast_id": 41, - "character": "Mirage (voice)", - "credit_id": "6345fb9407e2810082f15336", - "order": 6 - }, - { - "adult": false, - "gender": 1, - "id": 1700631, - "known_for_department": "Acting", - "name": "Liza Koshy", - "original_name": "Liza Koshy", - "popularity": 5.287, - "profile_path": "/67PtOsPiLTvyFtRtJ1pK23oJICc.jpg", - "cast_id": 60, - "character": "Arcee (voice)", - "credit_id": "6388e6941b157d00b7888461", - "order": 7 - }, - { - "adult": false, - "gender": 2, - "id": 2627590, - "known_for_department": "Acting", - "name": "Cristo Fernández", - "original_name": "Cristo Fernández", - "popularity": 3.805, - "profile_path": "/pRuCGBvmLgtALcEUcFemzTDYad1.jpg", - "cast_id": 63, - "character": "Wheeljack (voice)", - "credit_id": "6388e790a410c800c887a6a1", - "order": 8 - }, - { - "adult": false, - "gender": 1, - "id": 141610, - "known_for_department": "Acting", - "name": "Luna Lauren Velez", - "original_name": "Luna Lauren Velez", - "popularity": 12.112, - "profile_path": "/98BvmTJCZHx0jPv0oNcv04Jkmfb.jpg", - "cast_id": 17, - "character": "Breanna Diaz", - "credit_id": "612ee010eb79c200446713ee", - "order": 9 - }, - { - "adult": false, - "gender": 2, - "id": 2940842, - "known_for_department": "Acting", - "name": "Dean Scott Vazquez", - "original_name": "Dean Scott Vazquez", - "popularity": 28.224, - "profile_path": "/bo4Cmv8rXIYSskIbMFbrcIedFnG.jpg", - "cast_id": 68, - "character": "Kris Diaz", - "credit_id": "644b9867336e01054173538e", - "order": 10 - }, - { - "adult": false, - "gender": 2, - "id": 3002060, - "known_for_department": "Acting", - "name": "Tobe Nwigwe", - "original_name": "Tobe Nwigwe", - "popularity": 0.998, - "profile_path": "/52Zu83S7T9tkzQeQuLyLJgUoXVa.jpg", - "cast_id": 14, - "character": "Reek", - "credit_id": "60ecdb57706e560045c05a3b", - "order": 11 - }, - { - "adult": false, - "gender": 1, - "id": 1890500, - "known_for_department": "Acting", - "name": "Sarah Stiles", - "original_name": "Sarah Stiles", - "popularity": 3.245, - "profile_path": "/t1OuHZmz9GlbFu7bfOUg3nzIki6.jpg", - "cast_id": 109, - "character": "Jillian", - "credit_id": "64826db5e272600107210afc", - "order": 12 - }, - { - "adult": false, - "gender": 1, - "id": 90461, - "known_for_department": "Acting", - "name": "Leni Parker", - "original_name": "Leni Parker", - "popularity": 2.886, - "profile_path": "/rmOCAuZxYO50EmRxNDdrS3JB6f1.jpg", - "cast_id": 113, - "character": "Ms. Greene", - "credit_id": "64826e6cc9dbf9011dfad449", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 2069637, - "known_for_department": "Acting", - "name": "Frank Marrs", - "original_name": "Frank Marrs", - "popularity": 1.008, - "profile_path": "/6uEP6rv08fuX0vgyEot9FAuY60L.jpg", - "cast_id": 112, - "character": "Receptionist", - "credit_id": "64826e4ec9dbf900e3fe7b3b", - "order": 14 - }, - { - "adult": false, - "gender": 2, - "id": 237, - "known_for_department": "Acting", - "name": "Aidan Devine", - "original_name": "Aidan Devine", - "popularity": 3.858, - "profile_path": "/3qrUCw73cAN0923x5jCxAiiSaJE.jpg", - "cast_id": 110, - "character": "Bishop", - "credit_id": "64826dcec9dbf900c5708b9b", - "order": 15 - }, - { - "adult": false, - "gender": 0, - "id": 2567003, - "known_for_department": "Acting", - "name": "Kerwin Jackson", - "original_name": "Kerwin Jackson", - "popularity": 0.6, - "profile_path": null, - "cast_id": 114, - "character": "Hotel Security Guard", - "credit_id": "6486a4fac0348b00aed510b6", - "order": 16 - }, - { - "adult": false, - "gender": 2, - "id": 59613, - "known_for_department": "Crew", - "name": "Mike Chute", - "original_name": "Mike Chute", - "popularity": 5.436, - "profile_path": "/i1zw8nmh7pWHj3KbrVb2GI5ZY2F.jpg", - "cast_id": 115, - "character": "NYC Police Officer", - "credit_id": "6486a50be272600147baadcd", - "order": 17 - }, - { - "adult": false, - "gender": 2, - "id": 1890932, - "known_for_department": "Crew", - "name": "Tyler Hall", - "original_name": "Tyler Hall", - "popularity": 1.202, - "profile_path": "/lN0FFCcqLTAKMv9uyWYR2o1OPRl.jpg", - "cast_id": 116, - "character": "NYC Police Officer", - "credit_id": "6486a51d028f14013b867899", - "order": 18 - }, - { - "adult": false, - "gender": 2, - "id": 937792, - "known_for_department": "Acting", - "name": "Sean Tucker", - "original_name": "Sean Tucker", - "popularity": 2.274, - "profile_path": "/45OP1d88I1Gsr57kRv7Q1u3HbW8.jpg", - "cast_id": 117, - "character": "Bridge Security Guard", - "credit_id": "6486a52899259c00ff0f83d6", - "order": 19 - }, - { - "adult": false, - "gender": 0, - "id": 1199754, - "known_for_department": "Acting", - "name": "Jay Farrar", - "original_name": "Jay Farrar", - "popularity": 1.4, - "profile_path": null, - "cast_id": 118, - "character": "Museum Guard", - "credit_id": "6486a539bf31f25054b6b1c4", - "order": 20 - }, - { - "adult": false, - "gender": 2, - "id": 4103472, - "known_for_department": "Acting", - "name": "Lucas Huarancca", - "original_name": "Lucas Huarancca", - "popularity": 0.6, - "profile_path": null, - "cast_id": 111, - "character": "Amaru", - "credit_id": "64826e1ce375c000e24e293b", - "order": 21 - }, - { - "adult": false, - "gender": 2, - "id": 2131852, - "known_for_department": "Acting", - "name": "Amiel Cayo", - "original_name": "Amiel Cayo", - "popularity": 0.6, - "profile_path": "/AbkBl3JoWlSbWtpsFqQI7ypTpAe.jpg", - "cast_id": 119, - "character": "Amaru's Son", - "credit_id": "6486a579bf31f250569c5e7f", - "order": 22 - }, - { - "adult": false, - "gender": 0, - "id": 4107906, - "known_for_department": "Acting", - "name": "Santusa Cutipa", - "original_name": "Santusa Cutipa", - "popularity": 0.6, - "profile_path": null, - "cast_id": 120, - "character": "Amaru's Wife", - "credit_id": "6486a58cbf31f2505f3f5eb2", - "order": 23 - }, - { - "adult": false, - "gender": 0, - "id": 4107907, - "known_for_department": "Acting", - "name": "Yesenia Inquillay", - "original_name": "Yesenia Inquillay", - "popularity": 0.6, - "profile_path": null, - "cast_id": 121, - "character": "Amaru's Granddaughter", - "credit_id": "6486a5a2bf31f25055a1c086", - "order": 24 - }, - { - "adult": false, - "gender": 0, - "id": 4107908, - "known_for_department": "Acting", - "name": "Sumac T'Ika", - "original_name": "Sumac T'Ika", - "popularity": 0.6, - "profile_path": null, - "cast_id": 122, - "character": "Amaru's Granddaughter", - "credit_id": "6486a5aee375c000c528aafe", - "order": 25 - }, - { - "adult": false, - "gender": 0, - "id": 4107909, - "known_for_department": "Acting", - "name": "Josue Sallo", - "original_name": "Josue Sallo", - "popularity": 0.6, - "profile_path": null, - "cast_id": 123, - "character": "Amaru's Grandson", - "credit_id": "6486a5bae375c000ff494d5f", - "order": 26 - }, - { - "adult": false, - "gender": 0, - "id": 4107910, - "known_for_department": "Acting", - "name": "Mellissa Alvarez", - "original_name": "Mellissa Alvarez", - "popularity": 0.6, - "profile_path": null, - "cast_id": 124, - "character": "Amaru's Daughter-In-Law", - "credit_id": "6486a5ca99259c00accd948a", - "order": 27 - }, - { - "adult": false, - "gender": 0, - "id": 4107911, - "known_for_department": "Acting", - "name": "Gloria Cusi", - "original_name": "Gloria Cusi", - "popularity": 0.6, - "profile_path": null, - "cast_id": 125, - "character": "Amaru's Relative", - "credit_id": "6486a5d2e375c00139c1041e", - "order": 28 - }, - { - "adult": false, - "gender": 2, - "id": 50217, - "known_for_department": "Acting", - "name": "Michael Kelly", - "original_name": "Michael Kelly", - "popularity": 14.82, - "profile_path": "/8V6RKWbbx8lyt3Xxz9B1OAPvHRt.jpg", - "cast_id": 71, - "character": "Agent Burke", - "credit_id": "6472c80195665800a8d821c5", - "order": 29 - }, - { - "adult": false, - "gender": 0, - "id": 1070318, - "known_for_department": "Acting", - "name": "Jason D. Avalos", - "original_name": "Jason D. Avalos", - "popularity": 0.762, - "profile_path": null, - "cast_id": 126, - "character": "Security Guard", - "credit_id": "6486a5eae375c00139c1043d", - "order": 30 - }, - { - "adult": false, - "gender": 1, - "id": 197819, - "known_for_department": "Acting", - "name": "Lesley Stahl", - "original_name": "Lesley Stahl", - "popularity": 1.95, - "profile_path": "/m0vTn5aGk0bw3BNm29wpJHvPpAA.jpg", - "cast_id": 127, - "character": "Lesley Stahl", - "credit_id": "6486a600e375c000ff494d87", - "order": 31 - }, - { - "adult": false, - "gender": 2, - "id": 31531, - "known_for_department": "Acting", - "name": "John DiMaggio", - "original_name": "John DiMaggio", - "popularity": 11.864, - "profile_path": "/awmyFwU6ErFJbGFFzhBYZ9AQn8m.jpg", - "cast_id": 61, - "character": "Transit / Stratosphere (voice)", - "credit_id": "6388e7530398ab007c887aff", - "order": 32 - }, - { - "adult": false, - "gender": 2, - "id": 164614, - "known_for_department": "Acting", - "name": "David Sobolov", - "original_name": "David Sobolov", - "popularity": 5.897, - "profile_path": "/eOBHvvlfQQ4b4120YJ2c2C7anKR.jpg", - "cast_id": 62, - "character": "Rhinox / Battletrap / Apelinq (voice)", - "credit_id": "6388e7800398ab007c887b08", - "order": 33 - }, - { - "adult": false, - "gender": 1, - "id": 1518933, - "known_for_department": "Acting", - "name": "Michaela Jaé Rodriguez", - "original_name": "Michaela Jaé Rodriguez", - "popularity": 5.317, - "profile_path": "/ow7NJkG2ClrHdg13cN8uVvXmESf.jpg", - "cast_id": 64, - "character": "Nightbird (voice)", - "credit_id": "6388e7b3229ae2158118b5e8", - "order": 34 - }, - { - "adult": false, - "gender": 2, - "id": 91671, - "known_for_department": "Acting", - "name": "Colman Domingo", - "original_name": "Colman Domingo", - "popularity": 7.57, - "profile_path": "/2tu6T9ugnf82qIMGVKWSb0dvvq5.jpg", - "cast_id": 69, - "character": "Unicron (voice)", - "credit_id": "644c7ff4596a91054d583299", - "order": 35 - }, - { - "adult": false, - "gender": 2, - "id": 105875, - "known_for_department": "Acting", - "name": "Tongayi Chirisa", - "original_name": "Tongayi Chirisa", - "popularity": 5.488, - "profile_path": "/iNUnPz0fcz2kGYZ5lhkXo042iAl.jpg", - "cast_id": 67, - "character": "Cheetor (voice)", - "credit_id": "644b9829726fb1054a06107d", - "order": 36 - }, - { - "adult": false, - "gender": 2, - "id": 1517706, - "known_for_department": "Acting", - "name": "Luke Jones", - "original_name": "Luke Jones", - "popularity": 2.46, - "profile_path": "/cwwKbw74j5W2MQse64keCl7eGIi.jpg", - "cast_id": 128, - "character": "Additional Voice (voice)", - "credit_id": "6486a766028f1400e4b22021", - "order": 37 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 488, - "known_for_department": "Directing", - "name": "Steven Spielberg", - "original_name": "Steven Spielberg", - "popularity": 26.915, - "profile_path": "/tZxcg19YQ3e8fJ0pOs7hjlnmmr6.jpg", - "credit_id": "6154561967dcc90043e3757a", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 15841, - "known_for_department": "Editing", - "name": "William Goldenberg", - "original_name": "William Goldenberg", - "popularity": 5.496, - "profile_path": "/eOgoea8HbZt2TfLn0tDNI1TepSN.jpg", - "credit_id": "647ea96eccde0400de90496b", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 865, - "known_for_department": "Production", - "name": "Michael Bay", - "original_name": "Michael Bay", - "popularity": 18.657, - "profile_path": "/8I9H9IKROECFEn7usvyChbRMhbI.jpg", - "credit_id": "6346230c699fb70081dc5b31", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 3183, - "known_for_department": "Production", - "name": "Don Murphy", - "original_name": "Don Murphy", - "popularity": 1.602, - "profile_path": "/xX9mLKLbsnYhdRMrdpK2ULJIe0s.jpg", - "credit_id": "6388e9fb1b157d009718bc43", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 3964, - "known_for_department": "Art", - "name": "Patrick Tatopoulos", - "original_name": "Patrick Tatopoulos", - "popularity": 1.552, - "profile_path": "/6tkcPHANqVx7sXTXKR8knw87h06.jpg", - "credit_id": "615456ade8a3e10043033ca6", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 2, - "id": 6870, - "known_for_department": "Production", - "name": "Duncan Henderson", - "original_name": "Duncan Henderson", - "popularity": 1.967, - "profile_path": null, - "credit_id": "634622eb07e2810082f16f35", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 10952, - "known_for_department": "Production", - "name": "Lorenzo di Bonaventura", - "original_name": "Lorenzo di Bonaventura", - "popularity": 1.355, - "profile_path": "/skMUk4eVV6e08mv31A48jdYpEPp.jpg", - "credit_id": "5fb33b71ec4552003efa9198", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 1, - "id": 9271, - "known_for_department": "Art", - "name": "Michele Laliberte", - "original_name": "Michele Laliberte", - "popularity": 0.796, - "profile_path": null, - "credit_id": "647ea9ebcf4b8b01419092b4", - "department": "Art", - "job": "Supervising Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 9776, - "known_for_department": "Production", - "name": "Chantal Feghali", - "original_name": "Chantal Feghali", - "popularity": 2.201, - "profile_path": null, - "credit_id": "6154580fe8a3e10043033e91", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 2, - "id": 13245, - "known_for_department": "Editing", - "name": "Joel Negron", - "original_name": "Joel Negron", - "popularity": 0.928, - "profile_path": null, - "credit_id": "647ea977caef2d00df8a04e9", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 17598, - "known_for_department": "Camera", - "name": "Enrique Chediak", - "original_name": "Enrique Chediak", - "popularity": 1.226, - "profile_path": null, - "credit_id": "612edf01fac5020026fce2e2", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 2, - "id": 10994, - "known_for_department": "Production", - "name": "Tom DeSanto", - "original_name": "Tom DeSanto", - "popularity": 4.872, - "profile_path": null, - "credit_id": "6388e9f1d388ae007f5821ff", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 24308, - "known_for_department": "Production", - "name": "Brian Goldner", - "original_name": "Brian Goldner", - "popularity": 0.931, - "profile_path": null, - "credit_id": "61545674e18b97008c9759e4", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 24309, - "known_for_department": "Production", - "name": "Mark Vahradian", - "original_name": "Mark Vahradian", - "popularity": 2.94, - "profile_path": "/soKYRPi4hYTnVABGkAGCRGnU87J.jpg", - "credit_id": "6154560ddd731b0042a5fcca", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 20208, - "known_for_department": "Production", - "name": "Brad Fischer", - "original_name": "Brad Fischer", - "popularity": 1.768, - "profile_path": "/xJbGB0pDWKc4tniAQpFxhL7xLyT.jpg", - "credit_id": "6154568afe6c18008b4680a2", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 20227, - "known_for_department": "Sound", - "name": "Felix Andrew", - "original_name": "Felix Andrew", - "popularity": 0.979, - "profile_path": null, - "credit_id": "647eaba893828e00a765dea2", - "department": "Sound", - "job": "Sound Mixer" - }, - { - "adult": false, - "gender": 1, - "id": 29018, - "known_for_department": "Production", - "name": "Dana Goldberg", - "original_name": "Dana Goldberg", - "popularity": 2.745, - "profile_path": null, - "credit_id": "6154567ffe6c180062a9705a", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 56737, - "known_for_department": "Production", - "name": "Don Granger", - "original_name": "Don Granger", - "popularity": 2.25, - "profile_path": "/ilhrUzybaDqaZOiaw1M8dzkZ0ZF.jpg", - "credit_id": "61545668fe6c1800428e0a94", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 57049, - "known_for_department": "Production", - "name": "Brian Oliver", - "original_name": "Brian Oliver", - "popularity": 0.926, - "profile_path": "/jjRoepjAT6nDzNEglANnM9ppPxa.jpg", - "credit_id": "6154564ddd731b008b8bf77b", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 58433, - "known_for_department": "Production", - "name": "David Ellison", - "original_name": "David Ellison", - "popularity": 3.597, - "profile_path": "/jOhjFZWW2KqsOzm4IiE71FHmcIf.jpg", - "credit_id": "6154569743d9b100294b088f", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 74569, - "known_for_department": "Writing", - "name": "Joby Harold", - "original_name": "Joby Harold", - "popularity": 2.237, - "profile_path": "/q3jMKt9f93fZwJHVQoov0hFAFwJ.jpg", - "credit_id": "5e2f8fdcac8e6b0015bd5c86", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 74569, - "known_for_department": "Writing", - "name": "Joby Harold", - "original_name": "Joby Harold", - "popularity": 2.237, - "profile_path": "/q3jMKt9f93fZwJHVQoov0hFAFwJ.jpg", - "credit_id": "634623bfcf62cd007eae2392", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 112947, - "known_for_department": "Writing", - "name": "Erich Hoeber", - "original_name": "Erich Hoeber", - "popularity": 2.262, - "profile_path": "/iIV4kJKeaOth7n7iYVMOl2DQ3lw.jpg", - "credit_id": "634623a7f3b49a007c955918", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 112948, - "known_for_department": "Writing", - "name": "Jon Hoeber", - "original_name": "Jon Hoeber", - "popularity": 2.708, - "profile_path": null, - "credit_id": "634623acd55c3d007a1acb8a", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 1, - "id": 1097215, - "known_for_department": "Crew", - "name": "Vaia Zaganas", - "original_name": "Vaia Zaganas", - "popularity": 1.174, - "profile_path": "/hrILpV8bSEe1BYPNkN4mRai8mJW.jpg", - "credit_id": "636df3a981383100dd361001", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1193446, - "known_for_department": "Art", - "name": "Anthony Leonardi III", - "original_name": "Anthony Leonardi III", - "popularity": 0.818, - "profile_path": null, - "credit_id": "647eaab393828e0133791e3f", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 1, - "id": 1269034, - "known_for_department": "Crew", - "name": "Jen Weissenberg", - "original_name": "Jen Weissenberg", - "popularity": 1.81, - "profile_path": "/eldqpfXTxspQmIr7LQ2qqnWwPYs.jpg", - "credit_id": "636df3c8d7fbda00e7b750be", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 1326399, - "known_for_department": "Art", - "name": "Louis Dandonneau", - "original_name": "Louis Dandonneau", - "popularity": 0.668, - "profile_path": null, - "credit_id": "647eaa19ccde0400c13aad03", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 2, - "id": 1327222, - "known_for_department": "Art", - "name": "Philippe Lord", - "original_name": "Philippe Lord", - "popularity": 1.4, - "profile_path": null, - "credit_id": "6154571ed1ca2a0042646d04", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 1378695, - "known_for_department": "Sound", - "name": "Erik Aadahl", - "original_name": "Erik Aadahl", - "popularity": 1.4, - "profile_path": "/Ny1Ru6rlJFGmIB1vhbP9ENZsqo.jpg", - "credit_id": "647eab9a0fb39800fb0d017b", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1378695, - "known_for_department": "Sound", - "name": "Erik Aadahl", - "original_name": "Erik Aadahl", - "popularity": 1.4, - "profile_path": "/Ny1Ru6rlJFGmIB1vhbP9ENZsqo.jpg", - "credit_id": "647eab94ccde0400fbcee21b", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1384359, - "known_for_department": "Art", - "name": "Félix Larivière-Charron", - "original_name": "Félix Larivière-Charron", - "popularity": 1.208, - "profile_path": null, - "credit_id": "647ea9fdcf4b8b01419092be", - "department": "Art", - "job": "Supervising Art Director" - }, - { - "adult": false, - "gender": 1, - "id": 1384360, - "known_for_department": "Art", - "name": "Ann Smart", - "original_name": "Ann Smart", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6154572add731b006201d390", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 2, - "id": 1398122, - "known_for_department": "Acting", - "name": "Gui DaSilva-Greene", - "original_name": "Gui DaSilva-Greene", - "popularity": 1.637, - "profile_path": "/8scb1cYtbaGsrlVJ7szgIBjiuXE.jpg", - "credit_id": "64cfb6d4d9f4a603bafac9bb", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 1, - "id": 1402019, - "known_for_department": "Costume & Make-Up", - "name": "Colleen Quinton", - "original_name": "Colleen Quinton", - "popularity": 0.84, - "profile_path": null, - "credit_id": "6154574643d9b10043997e54", - "department": "Costume & Make-Up", - "job": "Makeup Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1425353, - "known_for_department": "Art", - "name": "Mathieu Giguère", - "original_name": "Mathieu Giguère", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6154570de18b9700628ef275", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1445475, - "known_for_department": "Art", - "name": "Arthur Jongewaard", - "original_name": "Arthur Jongewaard", - "popularity": 1, - "profile_path": null, - "credit_id": "647ea9e193828e011625f13f", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 1510496, - "known_for_department": "Acting", - "name": "Rodney Alexandre", - "original_name": "Rodney Alexandre", - "popularity": 1.645, - "profile_path": "/2yWvyUvq4dNEamZPjpTCWNYR9jo.jpg", - "credit_id": "636df34021621b00b49e1e8d", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 1, - "id": 1538204, - "known_for_department": "Production", - "name": "Wittney Horton", - "original_name": "Wittney Horton", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ea9810fb39800a7a0106d", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 2, - "id": 1551545, - "known_for_department": "Directing", - "name": "Steven Caple Jr.", - "original_name": "Steven Caple Jr.", - "popularity": 2.757, - "profile_path": "/aU8p958QyhfV2jurc3L5pn7sN6L.jpg", - "credit_id": "5fb33ac6d55e4d003cd58727", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 1631516, - "known_for_department": "Production", - "name": "Cliff Lanning", - "original_name": "Cliff Lanning", - "popularity": 2.262, - "profile_path": "/fMbBthNyuTtB2bayJHSrmrWIR0G.jpg", - "credit_id": "647eaaa80fb39800de68a44b", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 1635225, - "known_for_department": "Crew", - "name": "Alvin Zalamea", - "original_name": "Alvin Zalamea", - "popularity": 1.164, - "profile_path": null, - "credit_id": "636df392d7fbda00bb8f8259", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 1640991, - "known_for_department": "Art", - "name": "Brent David Mannon", - "original_name": "Brent David Mannon", - "popularity": 1.38, - "profile_path": null, - "credit_id": "647eaa22ccde0401355c3995", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 0, - "id": 1663700, - "known_for_department": "Sound", - "name": "Jongnic Bontemps", - "original_name": "Jongnic Bontemps", - "popularity": 0.884, - "profile_path": null, - "credit_id": "646d29ae9661fc0157366504", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 0, - "id": 1731667, - "known_for_department": "Costume & Make-Up", - "name": "Ciara Whaley", - "original_name": "Ciara Whaley", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61545735af58cb0044e29991", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 1, - "id": 1810161, - "known_for_department": "Art", - "name": "Marie-Soleil Dénommé", - "original_name": "Marie-Soleil Dénommé", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ea9d6caef2d00df8a0514", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1867396, - "known_for_department": "Art", - "name": "Georges Samuel", - "original_name": "Georges Samuel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eab3b93828e00f9d8d398", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 2, - "id": 1890965, - "known_for_department": "Art", - "name": "Frédéric Berthiaume", - "original_name": "Frédéric Berthiaume", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ea9a30e29a22be293a8e6", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1929030, - "known_for_department": "Art", - "name": "Radia Slaimi", - "original_name": "Radia Slaimi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eab7bcaef2d00fce6ffb2", - "department": "Art", - "job": "Set Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1938584, - "known_for_department": "Crew", - "name": "Nathalie Legault", - "original_name": "Nathalie Legault", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ea93e0e29a22be3284621", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1981111, - "known_for_department": "Art", - "name": "Dennis Ogle", - "original_name": "Dennis Ogle", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eab2c0fb39801355a903d", - "department": "Art", - "job": "Set Decoration Buyer" - }, - { - "adult": false, - "gender": 0, - "id": 2121799, - "known_for_department": "Art", - "name": "Manuel Charbonneau", - "original_name": "Manuel Charbonneau", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eaaf993828e0133791e5a", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 1, - "id": 2224819, - "known_for_department": "Crew", - "name": "Nitasha Bhambree", - "original_name": "Nitasha Bhambree", - "popularity": 0.682, - "profile_path": null, - "credit_id": "636df3511684f700c4ea414a", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 2252524, - "known_for_department": "Directing", - "name": "Geneviéve Duguay", - "original_name": "Geneviéve Duguay", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eaa720fb39800de68a42d", - "department": "Directing", - "job": "Third Assistant Director" - }, - { - "adult": false, - "gender": 2, - "id": 2295472, - "known_for_department": "Crew", - "name": "Adam Winlove-Smith", - "original_name": "Adam Winlove-Smith", - "popularity": 0.6, - "profile_path": "/5zdDvfKOBiCP0i4kurhz4wvfgym.jpg", - "credit_id": "636df3b61684f70083dbcf63", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 1, - "id": 2300589, - "known_for_department": "Crew", - "name": "Stephannie Hawkins", - "original_name": "Stephannie Hawkins", - "popularity": 9.934, - "profile_path": "/tXsJfDknfeB4lt1LbVw0hAqxHHb.jpg", - "credit_id": "636df311d7fbda00ca8ba8df", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 1, - "id": 2300590, - "known_for_department": "Crew", - "name": "E. Nova Zatzman", - "original_name": "E. Nova Zatzman", - "popularity": 1.041, - "profile_path": "/4wNYheN7WXrp1nR4ugwr5vwZwt3.jpg", - "credit_id": "636df36d1684f700ab805ddf", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 2, - "id": 2389963, - "known_for_department": "Art", - "name": "Simon Théberge", - "original_name": "Simon Théberge", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eab850e29a22be08e643f", - "department": "Art", - "job": "Set Designer" - }, - { - "adult": false, - "gender": 1, - "id": 2431754, - "known_for_department": "Art", - "name": "Ève Boulonne", - "original_name": "Ève Boulonne", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ea9bbccde0400c13aacd5", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 2435602, - "known_for_department": "Art", - "name": "Travis Nunnally", - "original_name": "Travis Nunnally", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eab210e29a22bdfece642", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 1, - "id": 2560300, - "known_for_department": "Crew", - "name": "Vanessa Zamarripa", - "original_name": "Vanessa Zamarripa", - "popularity": 2.538, - "profile_path": "/wxGSsJ53bQPVOG3JRjlCSVrxHPs.jpg", - "credit_id": "636df37cd7fbda0088757c04", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2561259, - "known_for_department": "Costume & Make-Up", - "name": "Eli Girard", - "original_name": "Eli Girard", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ea933caef2d00df8a04c6", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 0, - "id": 2615718, - "known_for_department": "Art", - "name": "Michael Nallan", - "original_name": "Michael Nallan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eaa2dcf4b8b00a878f11c", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 0, - "id": 2806442, - "known_for_department": "Art", - "name": "Shoko Kambara", - "original_name": "Shoko Kambara", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eab100e29a22bdfece636", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 2998872, - "known_for_department": "Production", - "name": "Valerii An", - "original_name": "Valerii An", - "popularity": 1.4, - "profile_path": null, - "credit_id": "615455eae8a3e10062205c5a", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3005590, - "known_for_department": "Art", - "name": "Eduardo Santibanez", - "original_name": "Eduardo Santibanez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eab47ccde0400de904a35", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 3072850, - "known_for_department": "Writing", - "name": "Darnell Metayer", - "original_name": "Darnell Metayer", - "popularity": 0.711, - "profile_path": null, - "credit_id": "63462393cdf2e6007ad2a2c0", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 0, - "id": 3072852, - "known_for_department": "Writing", - "name": "Josh Peters", - "original_name": "Josh Peters", - "popularity": 0.98, - "profile_path": null, - "credit_id": "634623a0f621b20079f98b95", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 3128690, - "known_for_department": "Costume & Make-Up", - "name": "Frédéric Bélanger", - "original_name": "Frédéric Bélanger", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ea905ccde0400c13aac83", - "department": "Costume & Make-Up", - "job": "Hair Department Head" - }, - { - "adult": false, - "gender": 1, - "id": 3158816, - "known_for_department": "Art", - "name": "Caroline Davignon", - "original_name": "Caroline Davignon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ea9c6caef2d00fce6ff02", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 3231077, - "known_for_department": "Art", - "name": "Clothilde Caillé-Levesque", - "original_name": "Clothilde Caillé-Levesque", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eaaefccde040118aae629", - "department": "Art", - "job": "Set Designer" - }, - { - "adult": false, - "gender": 0, - "id": 3527987, - "known_for_department": "Crew", - "name": "Kye Walstrom", - "original_name": "Kye Walstrom", - "popularity": 0.6, - "profile_path": null, - "credit_id": "636df3d721621b007dd9348c", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 3743667, - "known_for_department": "Directing", - "name": "Esteban Sánchez", - "original_name": "Esteban Sánchez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eaadccf4b8b00c3d3996f", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 3987675, - "known_for_department": "Directing", - "name": "James Madigan", - "original_name": "James Madigan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eaac6caef2d00c29bb41b", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 0, - "id": 4099165, - "known_for_department": "Costume & Make-Up", - "name": "Melissa Puch", - "original_name": "Melissa Puch", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ea94993828e00dcde3a42", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 4099166, - "known_for_department": "Costume & Make-Up", - "name": "Soraya Qadi", - "original_name": "Soraya Qadi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ea9550e29a22be1f0ec91", - "department": "Costume & Make-Up", - "job": "Key Hair Stylist" - }, - { - "adult": false, - "gender": 0, - "id": 4099171, - "known_for_department": "Directing", - "name": "Clara Haddad", - "original_name": "Clara Haddad", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eaa9793828e00a765de39", - "department": "Directing", - "job": "Third Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 4099175, - "known_for_department": "Art", - "name": "Dale Byrns", - "original_name": "Dale Byrns", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eaae7caef2d01362c99b2", - "department": "Art", - "job": "Set Designer" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Behind The Scenes With Anthony Ramos & Peter Dinklage", - "key": "2-u1H4DEoNI", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-18T15:00:01.000Z", - "id": "64c0d134097c49011d828dc5" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Meeting Mirage Clip", - "key": "OW1mU4vBBEU", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-07-11T16:41:43.000Z", - "id": "64ad87a5e24b9300e32874d4" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "VIVID Sydney Drone Show", - "key": "tnXIcwd221g", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-19T12:27:36.000Z", - "id": "6491546642bf01011e75368e" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Don't miss \"the best Transformers movie yet.\"", - "key": "DMTufSkyx6E", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-16T01:00:05.000Z", - "id": "648d83f62f8d090100a9e1b1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "'Mirage Makes A Promise' Clip", - "key": "ghNLISP-ke8", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-06-15T23:15:02.000Z", - "id": "6490164c2f8d0900ad35d000" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Experience the brand new Transformers Movie", - "key": "zJyF9r09Gu4", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-14T04:42:59.000Z", - "id": "64897eb6e375c000acc7845a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Hilarious Interview with Anthony Ramos, Dominique Fishback, and Toby Nwigwe", - "key": "qRFewQKMlZM", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-13T10:11:13.000Z", - "id": "648c564826346200ca194810" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Transformers x Boston Dynamics | Spot Becomes an Honorary Autobot", - "key": "sWxdei61tR8", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-09T23:30:02.000Z", - "id": "648973bce2726001072469bd" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Legends On Legends", - "key": "aTPKdtSwvpQ", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-09T16:40:46.000Z", - "id": "648d831542bf0100c7fb209a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "A new era has begun", - "key": "cAopdJX4H-o", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-09T02:06:15.000Z", - "id": "64896fe6e375c00139c25450" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"Beast Mode\" Promo", - "key": "BPAOEtUvtFA", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-07T19:15:01.000Z", - "id": "6480fe31bf31f20100331f36" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Voices of Transformers Featurette", - "key": "s1K4Qy-UKRA", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-07T19:00:24.000Z", - "id": "6480fe82e2726000afc0c213" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Final Trailer", - "key": "ZtuFgnxQMrA", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-06-06T16:08:29.000Z", - "id": "648050e8e375c0011c7de2dc" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Meet the Maximals Featurette", - "key": "orqLnSmC0V4", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-05T15:07:27.000Z", - "id": "6480510b6476540143331bec" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Autobots and Maximals join forces", - "key": "TnrlEf7e25g", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-02T01:00:18.000Z", - "id": "647ad67ce323f301275171d1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Legacy of Optimus Prime Featurette", - "key": "9hGW2aLE1ZU", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-01T19:11:30.000Z", - "id": "647c39220e29a200a660c259" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Fresh New Sound Featurette", - "key": "Yz8rZ8gmFRM", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-06-01T14:16:27.000Z", - "id": "647c39f7e323f300e524e1da" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Transformers is back and better than ever", - "key": "EAs8AmQUwrA", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-01T01:00:04.000Z", - "id": "647ad675e323f30148166609" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Prepare to face the Terrorcons", - "key": "srjEfwIjlKM", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-31T01:00:23.000Z", - "id": "647ad66e0e29a20116ac91d1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Caple's New Vision Featurette", - "key": "ISfvlDlPR_Y", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-30T16:00:17.000Z", - "id": "64774e6f00508a00bfcbf738" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "A new era begins", - "key": "PgP1SNzQdpU", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-30T04:23:10.000Z", - "id": "647ad65a93828e0116242f80" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"Meet the Autobots\" Clip", - "key": "nr3RRWPXbhM", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-05-25T23:35:07.000Z", - "id": "6472aa3f5cd16e00f9af00ec" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Filming in Peru", - "key": "rRe_gQYoRTs", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-25T13:00:21.000Z", - "id": "6472aa36a199a60116c7341f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Let the battle begin. Get tickets now.", - "key": "yonWH8gJdFY", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-25T02:00:21.000Z", - "id": "6472dd51a199a600f9427e6e" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Car Talk - Who's Your Favorite Transformer?", - "key": "mTS1VrqEFiY", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-24T17:29:49.000Z", - "id": "6472aa195cd16e0133e19837" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Car Talk with Anthony Ramos", - "key": "lJBWqWKIeLc", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-23T17:44:51.000Z", - "id": "6472aa125cd16e00dc3da2ea" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Join the team. Get tickets now.", - "key": "NH-lpPldGwc", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-23T03:00:16.000Z", - "id": "6472cb0f9408ec0100257b26" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Is Your Car a Transformer?", - "key": "pJN-XBzpwlE", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-23T00:30:11.000Z", - "id": "6472aa069408ec011f2bb16a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"Car Chase\" Clip", - "key": "5CNQEutg-bQ", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-05-22T18:13:52.000Z", - "id": "646bc0bed18572016192d34c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Not Alone TV Spot", - "key": "aiWG3KK1Gck", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-22T17:52:35.000Z", - "id": "646bc0b77b7b4d00e4adfcad" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Heroes come in all forms", - "key": "SjeOfHy6Qbg", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-20T01:00:19.000Z", - "id": "64683456006b01010589d431" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Maximals and Autobots, roll out!", - "key": "t3-2jFXSQBI", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-19T01:00:18.000Z", - "id": "646827ba006b010126f590c5" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Get ready to join the fight", - "key": "pYPcCSxprcs", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-16T08:00:20.000Z", - "id": "64668461006b010126f4d653" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Heroes come in all forms", - "key": "1qKDowzluGo", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-15T09:01:57.000Z", - "id": "64668467c3514c013a549576" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Meet the New Characters", - "key": "2evSQ-HhSj8", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-10T15:01:00.000Z", - "id": "645cccd8156cc7013ff38824" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Unicron is coming", - "key": "OANHe5GJ_AI", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-10T01:00:14.000Z", - "id": "645cc89177d23b00fcccc0fd" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Unite or fall", - "key": "5_ORHOcPiWE", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-08T02:35:27.000Z", - "id": "6458ab3d156cc700e39db4e3" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"Prime Meets Primal\" Clip", - "key": "Zxore0Gxwpc", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-05-08T01:25:25.000Z", - "id": "6458ab0dfe077a01398c9271" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "itnqEauWQZM", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-04-27T13:00:05.000Z", - "id": "644a7695a76ac50449b3c3e3" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "TOMORROW", - "key": "dL2aboBfiSY", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-04-27T05:07:27.000Z", - "id": "644b5dca336e0104ed7339b6" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Something has awakened", - "key": "vd3sX2VPhXg", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-04-19T11:00:49.000Z", - "id": "644b7bbd596a91057957be36" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Prepare for worlds to collide", - "key": "3SzLeDdQxDo", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-04-14T09:30:01.000Z", - "id": "6439a839955c6505a9026d04" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Global Statue Tour", - "key": "Ki-9EZ6lAyY", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-04-01T16:00:13.000Z", - "id": "6434925206f98400f1f272c5" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Big Game Spot", - "key": "QqwK4ZGqI8M", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-02-12T23:32:08.000Z", - "id": "63e97a026c8492008dc43369" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Teaser Trailer", - "key": "WWWDskI46Js", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2022-12-01T17:15:08.000Z", - "id": "6388e1f9d388ae007f58202c" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/2vFuG6bWGyQUzYS9d69E5l85nIz.jpg", - "vote_average": 5.708, - "vote_count": 9, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/qWQSnedj0LCUjWNp9fLcMtfgadp.jpg", - "vote_average": 5.522, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1440, - "iso_639_1": null, - "file_path": "/woJbg7ZqidhpvqFGGMRhWQNoxwa.jpg", - "vote_average": 5.396, - "vote_count": 12, - "width": 2560 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/9NgtktUFLm9cnFDFaekx2ROh84f.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/pUQ03oxdKCEJK36nE8cEugqlMAO.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "uk", - "file_path": "/9mn4JEBAJted8Jh2ykBO9wKgIUg.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1406, - "iso_639_1": null, - "file_path": "/p8djosrgWSKh6jQkrWJXzzZRABl.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2500 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/au2JALdGTbucQQKKEY2K2D7ivVH.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "es", - "file_path": "/iCBbVU4Lzd3p74vFKEit76Dy5Je.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/bVhhmoo2w9HKMmjV3gPehWjDTcO.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/oSNFLkwT7RFf8e5XCUZVH5xsuO0.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/A3uMobzyLpvquw1oYbaP9BNMgaS.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/nPQmjaNX9whrYZh8vx5Xo9ywynD.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 990, - "iso_639_1": null, - "file_path": "/rH3jY9JN9krUyE0Q3WLNtujMs8.jpg", - "vote_average": 5.08, - "vote_count": 9, - "width": 1760 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "uk", - "file_path": "/enBk1WhakLtc7uyBGCNSvZiFtJG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "cn", - "file_path": "/99vJK1Zs5ppLFkowoPEfDNLTKby.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/xzKRj1szWDa3b1uMemWZZNjMUXw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/bfXBR3qRhAP40cuaMwJcI6IkHD5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/yhQ1oWtcKZOze8ZDee0jPDjG68i.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "de", - "file_path": "/xmprhUqhsjzaWmgjpVzAueflqtw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "cs", - "file_path": "/ws3bmkHm8JyawBjHZe0tGopmpT0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "sk", - "file_path": "/2tfr87lvBf7B7uqTI4ttLErobtM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "cn", - "file_path": "/hhoRBrX5sShZB45VOYazTVBdbgP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/rkOE88JKK1lHSXFkDNd2zZW81LU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - } - ], - "logos": [ - { - "aspect_ratio": 5.91, - "height": 935, - "iso_639_1": "en", - "file_path": "/zX2iimO7CMwyw0qPfmYyEcmVfMD.png", - "vote_average": 5.318, - "vote_count": 3, - "width": 5526 - }, - { - "aspect_ratio": 6.006, - "height": 160, - "iso_639_1": "en", - "file_path": "/w0mXeEplcMkjqsYml9Z4zsnLQ3p.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 961 - }, - { - "aspect_ratio": 6.046, - "height": 453, - "iso_639_1": "pt", - "file_path": "/d4j4h55SpCvstleYTKAMdGsvLqx.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 2739 - }, - { - "aspect_ratio": 2.971, - "height": 662, - "iso_639_1": "zh", - "file_path": "/v95surdtYdDzsCQn5eIdzW9lbvR.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1967 - }, - { - "aspect_ratio": 8.075, - "height": 387, - "iso_639_1": "en", - "file_path": "/4ijkVgACdM9MajPJfi39SQKY02G.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 3125 - }, - { - "aspect_ratio": 2.94, - "height": 266, - "iso_639_1": "zh", - "file_path": "/m0HSdBfZGclM5oFCwd8DiJY3xRs.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 782 - }, - { - "aspect_ratio": 6.188, - "height": 442, - "iso_639_1": "en", - "file_path": "/8Z9e3UtUojzQRBDns9hCLxWyZhX.png", - "vote_average": 0, - "vote_count": 0, - "width": 2735 - }, - { - "aspect_ratio": 6.091, - "height": 309, - "iso_639_1": "uk", - "file_path": "/hoFWHAz4mPsU7wswVim6zhAqlX4.png", - "vote_average": 0, - "vote_count": 0, - "width": 1882 - }, - { - "aspect_ratio": 6.156, - "height": 270, - "iso_639_1": "uk", - "file_path": "/cuNlnJNezWAue3OCaCCe60iJpKQ.png", - "vote_average": 0, - "vote_count": 0, - "width": 1662 - }, - { - "aspect_ratio": 3.54, - "height": 880, - "iso_639_1": "ja", - "file_path": "/kSjLp8h8NGplhao2WH3dqOu0Ylh.png", - "vote_average": 0, - "vote_count": 0, - "width": 3115 - }, - { - "aspect_ratio": 4.1, - "height": 170, - "iso_639_1": "ja", - "file_path": "/4ys9LashkQ6g5jvYJUCskU0ifuP.png", - "vote_average": 0, - "vote_count": 0, - "width": 697 - }, - { - "aspect_ratio": 3.971, - "height": 488, - "iso_639_1": "ja", - "file_path": "/j26JZ06P0xpvLqJHYwGwLt20CKB.png", - "vote_average": 0, - "vote_count": 0, - "width": 1938 - }, - { - "aspect_ratio": 6.127, - "height": 252, - "iso_639_1": "ru", - "file_path": "/uvua9PTxppbBSE4zCqzTj7G2bl6.png", - "vote_average": 0, - "vote_count": 0, - "width": 1544 - }, - { - "aspect_ratio": 8.075, - "height": 387, - "iso_639_1": "en", - "file_path": "/aVF3xxeqozR8VsJBOGIehwdtKMm.png", - "vote_average": 0, - "vote_count": 0, - "width": 3125 - }, - { - "aspect_ratio": 6.228, - "height": 439, - "iso_639_1": "es", - "file_path": "/mO8h0VyrFhk8tjjQHLdughlMLku.png", - "vote_average": 0, - "vote_count": 0, - "width": 2734 - }, - { - "aspect_ratio": 6.006, - "height": 160, - "iso_639_1": "en", - "file_path": "/aYP1sKqdNrLau0rVqMnPzZC2hW4.png", - "vote_average": 0, - "vote_count": 0, - "width": 961 - }, - { - "aspect_ratio": 3.167, - "height": 864, - "iso_639_1": "zh", - "file_path": "/ckN7kvvIx5jswzY9lwRh4LE8YBs.png", - "vote_average": 0, - "vote_count": 0, - "width": 2736 - }, - { - "aspect_ratio": 6.008, - "height": 130, - "iso_639_1": "cs", - "file_path": "/hKhczTXOULnqC6ZuErhQiTIkH8C.png", - "vote_average": 0, - "vote_count": 0, - "width": 781 - }, - { - "aspect_ratio": 5.875, - "height": 305, - "iso_639_1": "th", - "file_path": "/4NRUEMME2RonNOiyExKQ6UF3neX.png", - "vote_average": 0, - "vote_count": 0, - "width": 1792 - }, - { - "aspect_ratio": 2.024, - "height": 335, - "iso_639_1": "en", - "file_path": "/irSf6D3RnrFdlga9BzUlHTJ03qt.png", - "vote_average": 0, - "vote_count": 0, - "width": 678 - }, - { - "aspect_ratio": 6.048, - "height": 692, - "iso_639_1": "en", - "file_path": "/lwZdGhz26x78xWYIwY59vLUElYd.png", - "vote_average": 0, - "vote_count": 0, - "width": 4185 - }, - { - "aspect_ratio": 5.886, - "height": 711, - "iso_639_1": "en", - "file_path": "/k2WizmXPzNU9UR1t0epNIMGUcNM.png", - "vote_average": 0, - "vote_count": 0, - "width": 4185 - }, - { - "aspect_ratio": 6.074, - "height": 310, - "iso_639_1": "de", - "file_path": "/dyEkxR6jVQWKRancFV5jYZ6PaRF.png", - "vote_average": 0, - "vote_count": 0, - "width": 1883 - }, - { - "aspect_ratio": 2.959, - "height": 469, - "iso_639_1": "cn", - "file_path": "/hkRJXuN7yw7s9KiyXljV3gewwsx.png", - "vote_average": 0, - "vote_count": 0, - "width": 1388 - }, - { - "aspect_ratio": 6.818, - "height": 220, - "iso_639_1": "pt", - "file_path": "/j8LyxBycN7eSJQXETXe3RnDIZXB.png", - "vote_average": 0, - "vote_count": 0, - "width": 1500 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/zEqwfO5R2LrrLgV61xm8M9TmNTG.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gPbM0MK8CP8A174rmUwGsADNYKD.jpg", - "vote_average": 5.928, - "vote_count": 24, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2047, - "iso_639_1": "en", - "file_path": "/k5mQ2G1jS47fuxCjmkzFDeaNYvj.jpg", - "vote_average": 5.456, - "vote_count": 11, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/z5XC46TJoHOV2g5Fwbh5fbuknco.jpg", - "vote_average": 5.456, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/eKERyBrJ8zWtNYJXXlxRCT6s6J6.jpg", - "vote_average": 5.454, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/aY2hzOLuHTxKev5bWnC05ZjxtrB.jpg", - "vote_average": 5.4, - "vote_count": 16, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/73tyKUtXZCgyUdHM5cAaoY4f0nM.jpg", - "vote_average": 5.392, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/kq6AYN96FjWSZQVRYpAPmBAVq2s.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/uRx4iLAXpv8z6cCu6uxabSNPWib.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1200, - "iso_639_1": "ja", - "file_path": "/hzTCFPV1IsJdJxPxquA1AzbYB0M.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 810 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/vBP5xZYGI88dOilwZdxVCn2EjqJ.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/8GN5toSNH8HNZXZ8P0uNz2kdNHz.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/8HBYMQkF6cFpupgRDhsrrKskXOE.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/lMSKjvaDb47Z0OzwVwg5CSDYTen.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/ssL9oxbuyyBjOhlN0yEEKLg7DFY.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qBcIUgJmDGrcAKbhRwCd6AmO0ZW.jpg", - "vote_average": 5.342, - "vote_count": 15, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "zh", - "file_path": "/4fK63NtPWgZs8irIzuuVxqNHIsw.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1752, - "iso_639_1": "zh", - "file_path": "/uty9jd88buxZd5ZhpuXKaANFhr9.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1168 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/k1zmtALC7V8xcbVgpdxpORKmAK9.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/dMIfRXSzxrsXdO0n6O8lMN79KKD.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/3EhiKCgQSjjX3nNyrSK4rokz9Ma.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.707, - "height": 2829, - "iso_639_1": "no", - "file_path": "/n9a0yEXoi6Uy300DQZGUOacVgyt.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/nc0QxZqwaNX9ytyYZmA5Zh8E3Y.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/yvU1pWsqJXOpC08R4jAkh4DCM9S.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/chUZNPNd7EiETSB4xBGykXhuXRr.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1890 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/wx5Pe69YpuiDxCWfL7GKnArdfLv.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2290, - "iso_639_1": "cs", - "file_path": "/sHgvdFI20YGCXsLAtRTd2Kqg0C0.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1527 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/d6szddOi2ZlMtB1gvJzFDJgbtBo.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2047, - "iso_639_1": "ru", - "file_path": "/e0p6MFlZedrQVbpigRZ7dFtrZDS.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1382 - }, - { - "aspect_ratio": 0.714, - "height": 1350, - "iso_639_1": "hr", - "file_path": "/woNCjzliS54e23E3QRuYRRBIzm3.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 964 - }, - { - "aspect_ratio": 0.666, - "height": 2875, - "iso_639_1": "bg", - "file_path": "/6tdWtOkySG9mdmhNKRUG9Xlz26Q.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1916 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/7ijvFQUlGlok8eW3MfDnQrR6Puo.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/yu24fXpro7jx4XFlgEWwElW1kgW.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "th", - "file_path": "/5aN6J0l2dUokxOOJZrQBKlsUHu3.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "el", - "file_path": "/6Qpg485zIcxWiX1yzM1NnpezGTu.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/9PSKoY98olv7Sru1PWnLpFDqat9.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/t87CjXc2GGWG5b3VEUKaKBWwjps.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/7VLWQa5h1eyJ3xX7KWwQdjxogHg.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "vi", - "file_path": "/8fjDDRRmJqkw5T9tYrnOntxt7SH.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/7M5ffeGzyIQWZh76uLtz8sL3PXs.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/yqXbE4epcDgxJd89hhqNXiNYjMc.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/9ndmXcQibvOPYz58wqOou4t1XoE.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/imzUKQbSanWDJcCsY9QKmk9qmDp.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/eOHDeAiJcTrS0RJElENcbFjY5yr.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/rkDaMJXYl3ULrTNpetTojBe8Vl8.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/pnUjGWvhfPRo7j395HFAUtuFEpL.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/hXRJiybJaX6SjelCCR1h9LkwMy5.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/l3WMRxwkQ8yQ2iPxon2jwdIvkDW.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/lzqps4nH34Bryc8DKsWVQwyofgB.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/thQzOulFF5q27OysxSmhk05PoI1.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/2TtCHblu9nNrsISN8NGX2UCESuI.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cDboyw31PuIeO3te8Aapa0SZVzi.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/mbXk2bJfhpPPHITd5r3kw5vBhvt.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6NpMzc5br1aiLIHJrM4A44fytNU.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/2uV5UX4lFibpV183zLuw7qMtkMf.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/sasmRMNUzeAenTyhhBKlNisWgIv.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1200, - "iso_639_1": "tr", - "file_path": "/aQFfiLBbjyuIynbQKlr7M4KLTRJ.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 810 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/3oypSaTizrfBbpIeRs8tTOF2EqV.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/7y0eBIw5MWsrOBgJZWPWwwLXIfy.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "sk", - "file_path": "/1oBtQAld9o2zIScrXgkUFSwYRYn.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/tf7l8ZL6UfD5to7t9y8pC4KmLnK.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.676, - "height": 1184, - "iso_639_1": "en", - "file_path": "/cU0qBkwfl9smKhBSZcrEg2gM071.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/bwyOIBzO9oHrxvsbSajsyGSIRdA.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/bWc3bWtsqtdw6bptZe48TEvOulX.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "fr", - "file_path": "/j2smiewL3w7s0KMAfqizscn4bBR.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1366 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/dXHBCxki7W16pE9MP6EC0VVbJoP.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 1440, - "iso_639_1": "th", - "file_path": "/hwaHhr8hmIP2jNl9EwT5YZ2Hsmy.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 972 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/AhwolAZAsAy82mmDxsYFMQx0yy5.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "el", - "file_path": "/17wVv7l8OZ8Cs1wKB7BT4VXpI3l.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.677, - "height": 2953, - "iso_639_1": "en", - "file_path": "/byNWRiY7Wtv8XhqpK95GxqX8ZYk.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/vi6PP4Ak39kPisPuduspHZy1p18.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "de", - "file_path": "/b8aRdduiUopWlvO2fEUUm9BZsQ5.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.7, - "height": 1350, - "iso_639_1": "zh", - "file_path": "/2isgEleNBOgonfhlybOlV0RrGEQ.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 945 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/p2X0DLb8prHFYdlNGvp2stbH0YB.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.698, - "height": 859, - "iso_639_1": "ko", - "file_path": "/vEgBqPDgvbKbhq8A19OszoX6CKR.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/qSd4ajMHKwk6cFXYdSEbImAzyZC.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/78o7t4tbBNFBYtrKSE7gXjmcy8x.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/fNWpvKi2Rf6JyhR2ZupPIVyhGdJ.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/t4YDjrsZSng0f7OBfIKGLBECml3.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/6kYJACZjjQUOYmg6XblEM5qqTOM.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/npI9RXqhsBCCV95oKstdsWgnaO6.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2368, - "iso_639_1": "de", - "file_path": "/vBMbLkug9mz7vw9J5jUl1i0VbeZ.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1579 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/r5ht7Dxx1pPSpEBTAcMTXZHpyR4.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/4mC9oVVN0SNKitT49HXgJ4EJJSs.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/me6xOi9cwFkfkFKps6PxWW2ngDy.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/gBGRGaZ95qXmqx7XwlkxptNZLoU.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/bGnd0VhwZEdLmOf4sra2Ci7g4ip.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/aux09eXXhzpKyBAvZ5DIDAtQ0QH.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/iTU8mTXkEitBJ7VWeerhF78OoS4.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/isiwtLmKOh3yXxY0wi8nuv1FwKC.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/4Ylkt4z7bGxNlMRS8vlJ22OFAtN.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.666, - "height": 1778, - "iso_639_1": "it", - "file_path": "/aAX8vIdN76RHj6IFlN9j0N8QH45.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1185 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/18FdEzq2KSXqUAHeW5qdqlnzCpp.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/n9UmD868d1sG05BP7m0aMJ32tPx.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/je1FZ3VzHFVTNKC6sqBXVZG0Q50.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/tmFgL4XnpimIP6nsRpahxHgD05x.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/uidZY7akgQRNGj0DNm5MT8xxiqV.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/t0S1ym1kp9PIxIo2vvbCV5VAEKR.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/oU90atKsgN3W88Ue2cZw35i1n5P.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/tLfMLSLuxqGrC2XoHDn7uQfepEG.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/jrifTIhhtGvO1WIq2bUBFuicWHh.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/45k14FqW6HU9QoYrarn8k6tWMDE.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/eEMGw9Za5XR0OjDuY3m3XbXhwBn.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/eUEMLwyzn8rDsIVTZLCTvHKLlGi.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/3lYtRDM7OjIOuGMasK8QB6pBSOT.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/8lq1Lxa9DbfOXeQmet0mRPvxTtn.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.707, - "height": 2290, - "iso_639_1": "cs", - "file_path": "/r0tvVU54cyP2b1fjJkBgpG1pzVa.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1619 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "el", - "file_path": "/ilNaBfolPpXDLQS2JFNftdUnGbz.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "el", - "file_path": "/jXjq4W0dJTrqlYx5izPsnDAgpVV.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "el", - "file_path": "/jGlY03Ym2dgQvg5dCcR3H4mWxti.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "el", - "file_path": "/s9ZBvtVLQNLb4jppXWJz5LaQwDC.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "el", - "file_path": "/sLs8CWeUdlt9d5Y2OzH5RfE6jLM.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "el", - "file_path": "/7aJoiCR8AhMi0akuUBh9IKuwkft.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "el", - "file_path": "/2ldASC7oxLig1djmIaozJCekmDO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "el", - "file_path": "/9sZdMG1Snetlj7RBxNKNJFmQFKy.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "el", - "file_path": "/tTTo2S9ywvytH5zXALNLx1FFNlq.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.745, - "height": 1450, - "iso_639_1": "el", - "file_path": "/ovGzIJYfgWuDnstzUxELZ1H0z3P.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/xtQ9a1seTb823ntc89LovoPnZRf.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/4EWu19ZW9lfTEqNTUeYrgckxKfp.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 960, - "iso_639_1": "de", - "file_path": "/dQmgIoC2T3FxaZzOe6nw6fCrbG8.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 640 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "it", - "file_path": "/lHsLdOnzmndRekk8Z5WbpQgdk6P.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/srMDcc1spa1TJI8UPWFyY0VJwkC.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/nQCfRBHG7aP1vh0VQUBw9aW9HtH.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/tL74X2WKjiS06wqPWhveXfgmxMN.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.7, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/d2NNe1UUD1XU2rnrUXojziKOOBL.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1050 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/ciqf6p2BCrqpdbK6HzQCyiWRWmU.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/5L8WUe5F8OOudXxZnewHFww5nGl.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/mnS2gxodxAFpOXGHj7q2jrn17yx.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/dl1vYU4JiCSAvE4LDYuXriSVK5p.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/p5bHII4iU0s5DsW31bqV6k5amRu.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/pxSq3l90rup7KqqMsPQnfghAHXU.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/aXRvhdVeUx5Ped6Avbb9VlZb6aP.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/rAkUu6eFgtAuzZsbj5khAzauhju.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/pSeIYzJSIwBSiDRDe2HYR2wApIl.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/ezlDZZGIIbsCLYKs8qZJKpIS40V.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/lYnv9fOrZxE8HoJhxZias6Xs9JF.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.671, - "height": 1610, - "iso_639_1": "zh", - "file_path": "/ry5nGeqpgoWJSizGWwVrmThYMhg.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1080 - }, - { - "aspect_ratio": 0.67, - "height": 2983, - "iso_639_1": "zh", - "file_path": "/zsitfwOCLbujOeOzMHJoy7CVR1F.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.712, - "height": 1517, - "iso_639_1": "zh", - "file_path": "/90nbpc6fsE7zcS01TF2FxPzeOO1.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "zh", - "file_path": "/rPaZIVVhy52v5YWTrbsaEKRHvSF.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.714, - "height": 2522, - "iso_639_1": "zh", - "file_path": "/rqZe5tgVrM0yRfnXNKpMj57VcxP.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1800 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/auQ2OZlFne3jBwwlQLCWBgWXRe.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/3qBMAFwv88yHMquElfKNU3zj3p8.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/1ASTDDjKK01u1g6C3RixP6mHgLU.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/g1HcrEiN0UiSpjQMJ3Klzw8KOZS.jpg", - "vote_average": 4.928, - "vote_count": 14, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "tr", - "file_path": "/50N9uUOEUZDpziinwxXXtKagaLW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/8LFGygAXc4b3ktcLVqFf4i5fXcW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/peIB7KBBrqW0JsCLQBt9ChEtZ7m.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/jAxJimwdCHbdNRPnR6ciwhj6bXP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/fQcg1JNCMOcwNKlQlOSZfqag6E0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1080, - "iso_639_1": "no", - "file_path": "/bfiNNXYKEDW7PiSM7H6daeUMMhw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 720 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/9T1i9UrJntm4By4W4pwSEBxhffo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/kmk8vdGE218I7w9gTHLHbXF64YF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/sGwU0MQ4pnJx7QkM4nQUCCz11v4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/hfCYq5ibZ71wBnUFFHHdPWU9dW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/gbhi8Becy7TXOfUwzs3XeMgZkD2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/eZO8q1ZUTNuFz6FZfB00y3oIXcW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/ftheuCH4kO0rtRy9KIpp7oFjIAP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/taR4xc0TxBgpXaPAGvfOXPV4FKr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1383 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/mhpqRJtGNOrU9oyv5fcpVoj024B.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1383 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/PMSY9JQloJnS9WuAIT5CdDh9Zn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/7jOi0Ywj72SDmEbMePoQrQqUhvo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/kh0mqWOLoKN9ZI8VejFmu0MiTxM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/kdY1Ryr92rQtHqCczjrh8vuQx9d.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/s7VjcqsQyi34nrt0oh2X9WcoHkW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/7ZNsF4vGPilD91YF2QDf3MBmjsc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": null, - "file_path": "/7cVFmOuQxrj5qkxhATxl4QX2FJR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/zIgMUCMAJaliAS1xyP1MsLVNKdp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/fClwabMHGZp5qBHSZOtnfMBErhQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2718, - "iso_639_1": "sk", - "file_path": "/tXa7fo1sckOrvpAdCTbYLJ0jWqc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1812 - }, - { - "aspect_ratio": 0.675, - "height": 1500, - "iso_639_1": "en", - "file_path": "/WrBS2zS4pHKyTy8SS3byC99duU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1013 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/llABsPecLybfhZdrHdOpXrdy7fv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/aa4amMOJzd7H4NJteT6w276WxOk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/8z2dupG3SFXZ7R0S2kr8DY2RanM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.71, - "height": 2048, - "iso_639_1": "cn", - "file_path": "/fsvpks5mDKsu2hcPvCyHq70vEDo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1455 - }, - { - "aspect_ratio": 0.71, - "height": 2048, - "iso_639_1": "cn", - "file_path": "/g7dPc7LXpc2VnVtkdK2BegeESuG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1455 - }, - { - "aspect_ratio": 0.71, - "height": 2048, - "iso_639_1": "cn", - "file_path": "/7U1ZXF20JyltqPSn0kB28ZVB3xO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1455 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/5KZwFWPY7a0bZFRXgA8t8fY6bcL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/41tE8QVRaOUMipMddqwsrSnFngS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/d2SVY6NOQRnPuzsaP85brkWJGF9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/fkYBA2s38nKxBAZBVIqeUNmi6QO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/kQb5n8Le9RHSRinqIxgMT5Tt0qP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1440 - }, - { - "aspect_ratio": 0.675, - "height": 1500, - "iso_639_1": "ja", - "file_path": "/arLi3Eeo9bs1KqQ4peG2BHDTQhd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1012 - }, - { - "aspect_ratio": 0.707, - "height": 1500, - "iso_639_1": "ja", - "file_path": "/wsLn9xeBnhBTPqcSLxEU6C62iHr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1060 - }, - { - "aspect_ratio": 0.707, - "height": 2048, - "iso_639_1": "ja", - "file_path": "/9dg6EtqfZZoLfKLyZgJKce1rC1B.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1448 - }, - { - "aspect_ratio": 0.667, - "height": 1275, - "iso_639_1": "hr", - "file_path": "/mZDNSyDUdu7jT4IdCsMSMiIuWfI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 850 - }, - { - "aspect_ratio": 0.667, - "height": 2976, - "iso_639_1": "sv", - "file_path": "/knKkQZZK4iVVfEo8TqHjCH1vaH3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1984 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/i0DDWW7xV9BfOIZHaaveyvQr4cF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/qD3W5jzyPiL3IMF3w5RPSraoFyA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/uux0adgeWy4OsNObw87Gq8kqyxg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/1wdG2xEuHHLxhdr9lehZnkFJfPP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/3amtQqe0jlR7Gc9DjVK0zkDGPQL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/6VzjwukpimgM26qiUgquQim2fw2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/duYI9761sZWu37cXWZBX5yiLcsB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/61YW0L1S8d2AL2SEQ9g69GMZQxj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/x7rRyzjniye6ZgMb7E7GFLPCkOe.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/gdl3A2WfHPYJ7Mam1AuZn4qJyYh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.696, - "height": 2875, - "iso_639_1": "bg", - "file_path": "/XyhSEf48zAEI6Ny869sAVa0YjM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/69yfPOqY9oWE3bwpXbexGtW9iWX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.676, - "height": 888, - "iso_639_1": "fi", - "file_path": "/4pBpVp5ExWkxrWisQC1mxWMzmE0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/erFPC2FNYczzAliYWFybJdhpCRF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.721, - "height": 1920, - "iso_639_1": "en", - "file_path": "/zDPktf4WPRgnUrT98PsXbo7N1cP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1385 - }, - { - "aspect_ratio": 0.675, - "height": 1481, - "iso_639_1": "en", - "file_path": "/tLYWKD2TxNtsH7Djw0K3haFxM9W.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/1Cw4shSWAgseofZYPUnjVezh3PG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cn", - "file_path": "/xhH092qQbfgt8ue7OxrrekvKsoT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/jkgQY1Bn3Mv3S2rEda1ARpX2W14.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1500, - "iso_639_1": "en", - "file_path": "/yBRoPjERughnUNl1ZZ2e7lluzWI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1013 - }, - { - "aspect_ratio": 0.666, - "height": 1200, - "iso_639_1": "ro", - "file_path": "/6Hcr4wYetGH25JacwHRlpUA5Vkq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 799 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/hNnjMoiZh2947yjpcZtvILF547s.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pl", - "file_path": "/aAoRVlCqV35rVqBDT3NgMfEC6bZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/aVs9VEL7jFamcvPoHJ62gtCjkan.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.75, - "height": 1600, - "iso_639_1": "en", - "file_path": "/AtugHg2I6SIo3Ij77Q8YgTXUyBE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.674, - "height": 1024, - "iso_639_1": "pl", - "file_path": "/bqIgGekLf5MYepA6kR7raT0TgIx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 690 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/zvWl7d7q0lSZViIvS5fdoIvOLHU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "da", - "file_path": "/9UheIinZAnRaQ9BjBBSjfy43Fmh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/8zZHxhzv9K05BmunfVcfNWtt6UK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/vLZzhPl2NQOejiMTfOOkHvHHTdQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/nv9B3hcOTcsccMmt8BzCl8dxdiN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/z3siSyzcbztwfPYaA29oxzOfRNI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/ouC5oZYtphz36CJ4s0P4sJBqpX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/gwlwkMlCRpgpyCnBDj0PsAujAu3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cGzg6EFavxogw8I7rKLLd7Zicj7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/p2lZ8KCyoXvFc5wD0c7CdacrvcZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 648 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/lzOYfcstqz2ucvsiVjXefjnsWR3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 648 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/pm4trNl2wSPL4GvnNg2EgkqBI3k.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 648 - }, - { - "aspect_ratio": 0.676, - "height": 2048, - "iso_639_1": "lo", - "file_path": "/sIRRDRzpI0yLagFkDd6mJEKaHDs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1384 - }, - { - "aspect_ratio": 0.675, - "height": 1600, - "iso_639_1": "lo", - "file_path": "/nz5H7Vdq6TSEU6bwq87xuyFYSXB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/28R0ksoyidEKAVej0OMMSsNDROy.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 648 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/ioEKu92CsH7hZTT65CTZl6nEG7t.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 648 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/hUqYSEHGh2Nod7k1o9GV4g1mcaA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 648 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/qx2SOr4qeTlrZYkBz9iNMunOjOD.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/8lxrtJLjEJzafW7XA0VEM3R8O1W.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/o9pFGlfxZL7xURTwJuaInpUxlU1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zDWM4CdEQq7fRjfHpifz0o8atZv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/v7SaW7cl7Dqt9HwiYZa4QreLVY9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "es", - "file_path": "/csnU3TX58uEOzEpZR8BxrYWLvwv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.701, - "height": 1426, - "iso_639_1": "de", - "file_path": "/opOgU5F2o17IUqZR640YbVZdoDP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.67, - "height": 1394, - "iso_639_1": "zh", - "file_path": "/tEg8p966Ppf9CJL4SE8E5rZzowR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 934 - }, - { - "aspect_ratio": 0.675, - "height": 1600, - "iso_639_1": "zh", - "file_path": "/qgsjBfTZWcNlCfLNJ8hctACmGrr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "ru", - "file_path": "/vtGEXE1sT5MK0H085ricx3r1Jce.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "ru", - "file_path": "/tWYa5ckV5RZps3gtLqBfjWtgNRr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.724, - "height": 1444, - "iso_639_1": null, - "file_path": "/qPa1ioCM4XZG5YvGfGA9dfPBFMA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1045 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sl", - "file_path": "/ydT8dE2jf5y9cbalsARhnWtYWbn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": null, - "file_path": "/rXjNCKZqRHXn3eMIswx5P2gMcVO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.701, - "height": 1426, - "iso_639_1": "ru", - "file_path": "/uHwFQEcp7840opJ8BVfsEvtPAuM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/316B5mYGcKpYVDPrE2x2MLMKkpY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/3vqfHwRdSM8nDJ4epiSIeMOS6IY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/678512.json b/examples/view-transitions/src/content/movies/678512.json deleted file mode 100644 index 22d3d4a83..000000000 --- a/examples/view-transitions/src/content/movies/678512.json +++ /dev/null @@ -1,1226 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/eMPxmNvJjxVZIQWI2t1VmNC5IuR.jpg", - "belongs_to_collection": null, - "budget": 14500000, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 18, "name": "Drama" } - ], - "homepage": "https://www.soundoffreedommovie.com/", - "id": 678512, - "imdb_id": "tt7599146", - "original_language": "en", - "original_title": "Sound of Freedom", - "overview": "The story of Tim Ballard, a former US government agent, who quits his job in order to devote his life to rescuing children from global sex traffickers.", - "popularity": 668.456, - "poster_path": "/kSf9svfL2WrKeuK8W08xeR5lTn8.jpg", - "production_companies": [ - { "id": 90508, "logo_path": null, "name": "Santa Fe Films", "origin_country": "US" } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "2023-07-03", - "revenue": 183405443, - "runtime": 131, - "spoken_languages": [ - { "english_name": "Spanish", "iso_639_1": "es", "name": "Español" }, - { "english_name": "English", "iso_639_1": "en", "name": "English" } - ], - "status": "Released", - "tagline": "Fight for the light. Silence the darkness.", - "title": "Sound of Freedom", - "video": false, - "vote_average": 8.011, - "vote_count": 459, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 8767, - "known_for_department": "Acting", - "name": "Jim Caviezel", - "original_name": "Jim Caviezel", - "popularity": 19.203, - "profile_path": "/wDf6ukCaGMEnH94GzLP2NGjKeNL.jpg", - "cast_id": 3, - "character": "Tim Ballard", - "credit_id": "5f2b29df79a1c3003732e78f", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 23931, - "known_for_department": "Acting", - "name": "Mira Sorvino", - "original_name": "Mira Sorvino", - "popularity": 20.381, - "profile_path": "/11raFiNo7QfisH44v3NIfpVvIz5.jpg", - "cast_id": 4, - "character": "Katherine Ballard", - "credit_id": "5f2b29f12b531d00390175bc", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 121718, - "known_for_department": "Acting", - "name": "Bill Camp", - "original_name": "Bill Camp", - "popularity": 12.571, - "profile_path": "/yZFata0EVr7TbIAz8vZFyiDKDts.jpg", - "cast_id": 5, - "character": "Vampiro", - "credit_id": "5f2b2a002b531d0038018eb1", - "order": 2 - }, - { - "adult": false, - "gender": 2, - "id": 29685, - "known_for_department": "Acting", - "name": "Kurt Fuller", - "original_name": "Kurt Fuller", - "popularity": 7.292, - "profile_path": "/kV02XLACLFd1YYQdSOgqy6lFmQ3.jpg", - "cast_id": 6, - "character": "John Bryant", - "credit_id": "5f2b2a10a698cf0031560719", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 17689, - "known_for_department": "Acting", - "name": "Gerardo Taracena", - "original_name": "Gerardo Taracena", - "popularity": 9.812, - "profile_path": "/wvqDQf71ezlA36ZzhWe1D7cKLLS.jpg", - "cast_id": 7, - "character": "El Alacrán", - "credit_id": "5f2b2a1cfab3fa0035fd60fd", - "order": 4 - }, - { - "adult": false, - "gender": 2, - "id": 10963, - "known_for_department": "Acting", - "name": "José Zúñiga", - "original_name": "José Zúñiga", - "popularity": 6.759, - "profile_path": "/r6nFkJkMHP9tFDohwfav9Bf2rCR.jpg", - "cast_id": 8, - "character": "Roberto", - "credit_id": "5f2b2a4cf1759c0035886c03", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 87954, - "known_for_department": "Acting", - "name": "Scott Haze", - "original_name": "Scott Haze", - "popularity": 4.677, - "profile_path": "/6cd3Jt8Vo52j8cRKbNf1j7cERhs.jpg", - "cast_id": 9, - "character": "Chris", - "credit_id": "5f2b2a6079a1c30038322a22", - "order": 6 - }, - { - "adult": false, - "gender": 2, - "id": 96228, - "known_for_department": "Acting", - "name": "Gary Basaraba", - "original_name": "Gary Basaraba", - "popularity": 3.072, - "profile_path": "/dH6zocqD5heDerhCANUtfy00gHm.jpg", - "cast_id": 10, - "character": "Earl Buchanan", - "credit_id": "5f2b2a742d8ef30038e93dda", - "order": 7 - }, - { - "adult": false, - "gender": 2, - "id": 72968, - "known_for_department": "Acting", - "name": "Eduardo Verástegui", - "original_name": "Eduardo Verástegui", - "popularity": 17.233, - "profile_path": "/jUPrzJbA4ksTR0DYK10PKpq1yJG.jpg", - "cast_id": 11, - "character": "Pablo", - "credit_id": "5f2b2a8679a1c3003732e82d", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 72983, - "known_for_department": "Acting", - "name": "Manny Pérez", - "original_name": "Manny Pérez", - "popularity": 3.69, - "profile_path": "/auDXIA7COAJkgPFYlZWAvCuezRG.jpg", - "cast_id": 12, - "character": "Fuego", - "credit_id": "5f2b2a992b531d0037016ace", - "order": 9 - }, - { - "adult": false, - "gender": 2, - "id": 18468, - "known_for_department": "Acting", - "name": "Gustavo Sánchez Parra", - "original_name": "Gustavo Sánchez Parra", - "popularity": 2.896, - "profile_path": "/ymg31PTbKfOxE7jV4QSgtCZKPbg.jpg", - "cast_id": 13, - "character": "El Calacas", - "credit_id": "5f2b2aab3e09f3003720454d", - "order": 10 - }, - { - "adult": false, - "gender": 2, - "id": 93649, - "known_for_department": "Acting", - "name": "Javier Godino", - "original_name": "Javier Godino", - "popularity": 4.744, - "profile_path": "/qwXxX6gKIphuCXJ2wgeROPjIdic.jpg", - "cast_id": 14, - "character": "Jorge", - "credit_id": "5f2b2abf458199003457e246", - "order": 11 - }, - { - "adult": false, - "gender": 2, - "id": 51656, - "known_for_department": "Acting", - "name": "James Quattrochi", - "original_name": "James Quattrochi", - "popularity": 3.09, - "profile_path": "/fy7pSTUy6JfZRdaYhsTWNZ84IHw.jpg", - "cast_id": 15, - "character": "Border Patrol Captain", - "credit_id": "5f2b2ad179a1c300363192f1", - "order": 12 - }, - { - "adult": false, - "gender": 2, - "id": 3348914, - "known_for_department": "Acting", - "name": "Eduardo Gomez Monteverde", - "original_name": "Eduardo Gomez Monteverde", - "popularity": 0.608, - "profile_path": "/t7lMxKM9I6rIRabNlFjlSxJ17Dd.jpg", - "cast_id": 17, - "character": "Bouncer", - "credit_id": "61ba5b69894ed6005e9aacd7", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 2261058, - "known_for_department": "Acting", - "name": "Gustavo Angarita Jr.", - "original_name": "Gustavo Angarita Jr.", - "popularity": 2.936, - "profile_path": "/cZnxZ3hXa5fi6EWbUqViR3ozFr3.jpg", - "cast_id": 18, - "character": "Jail Guard", - "credit_id": "61ba5b7b1c63290041136ff6", - "order": 14 - }, - { - "adult": false, - "gender": 2, - "id": 1532438, - "known_for_department": "Acting", - "name": "Ariel Sierra", - "original_name": "Ariel Sierra", - "popularity": 4.561, - "profile_path": "/gjRtYRm1fIuHot3Wn1PXoFhcBHp.jpg", - "cast_id": 19, - "character": "Checho", - "credit_id": "61ba5b8d894ed6008edde469", - "order": 15 - }, - { - "adult": false, - "gender": 2, - "id": 1572118, - "known_for_department": "Writing", - "name": "Kris Avedisian", - "original_name": "Kris Avedisian", - "popularity": 2.795, - "profile_path": "/zfFERw74t4WdPDKtl7MFbPpAAV6.jpg", - "cast_id": 21, - "character": "Oshinsky", - "credit_id": "61ba5beca44d090042867f52", - "order": 16 - }, - { - "adult": false, - "gender": 0, - "id": 3230349, - "known_for_department": "Acting", - "name": "Alejandro Muela", - "original_name": "Alejandro Muela", - "popularity": 0.6, - "profile_path": null, - "cast_id": 22, - "character": "CTI Agent", - "credit_id": "61ba5bf9c616ac009a15615c", - "order": 17 - }, - { - "adult": false, - "gender": 0, - "id": 1681399, - "known_for_department": "Acting", - "name": "Jaime Newball", - "original_name": "Jaime Newball", - "popularity": 0.6, - "profile_path": null, - "cast_id": 23, - "character": "Bam Bam", - "credit_id": "61ba5c0444a424006224574f", - "order": 18 - }, - { - "adult": false, - "gender": 0, - "id": 3452313, - "known_for_department": "Acting", - "name": "Yessica Borroto Perryman", - "original_name": "Yessica Borroto Perryman", - "popularity": 1.373, - "profile_path": null, - "cast_id": 56, - "character": "Giselle / Katy", - "credit_id": "64d2b65fdd926a01e731e126", - "order": 19 - }, - { - "adult": false, - "gender": 0, - "id": 4204656, - "known_for_department": "Acting", - "name": "Cristal Aparicio", - "original_name": "Cristal Aparicio", - "popularity": 0.994, - "profile_path": null, - "cast_id": 57, - "character": "Rocio", - "credit_id": "64d2b71db6c264011d9fbb96", - "order": 20 - }, - { - "adult": false, - "gender": 0, - "id": 2579300, - "known_for_department": "Acting", - "name": "Lucas Ávila", - "original_name": "Lucas Ávila", - "popularity": 0.749, - "profile_path": null, - "cast_id": 58, - "character": "Miguel", - "credit_id": "64d2b74203726400fffc08e5", - "order": 21 - }, - { - "adult": false, - "gender": 0, - "id": 4204668, - "known_for_department": "Acting", - "name": "Samuel Livingston", - "original_name": "Samuel Livingston", - "popularity": 0.618, - "profile_path": null, - "cast_id": 59, - "character": "Simba", - "credit_id": "64d2b7b97e403d013c6ef90d", - "order": 22 - }, - { - "adult": false, - "gender": 0, - "id": 1432386, - "known_for_department": "Acting", - "name": "Valerie Domínguez", - "original_name": "Valerie Domínguez", - "popularity": 1.27, - "profile_path": "/mtnZHZDybG4aaZQVjPiAaHlFefJ.jpg", - "cast_id": 60, - "character": "Tanya", - "credit_id": "64d2b837bf31f201ccbc2b2b", - "order": 23 - }, - { - "adult": false, - "gender": 2, - "id": 2551480, - "known_for_department": "Acting", - "name": "Jairo Ordóñez", - "original_name": "Jairo Ordóñez", - "popularity": 3.006, - "profile_path": "/fozkafjHkHO9bm0IIwp6g0E9qRq.jpg", - "cast_id": 61, - "character": "Pirana", - "credit_id": "64d2b876db4ed600ffb5bd05", - "order": 24 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 17004, - "known_for_department": "Sound", - "name": "Javier Navarrete", - "original_name": "Javier Navarrete", - "popularity": 2.8, - "profile_path": "/1SBbpUhTj7KPsJKAySMN4Kt1Sx.jpg", - "credit_id": "61ba5d6b0143250065d4d18d", - "department": "Sound", - "job": "Music" - }, - { - "adult": false, - "gender": 2, - "id": 18212, - "known_for_department": "Acting", - "name": "Mathieu Schiffman", - "original_name": "Mathieu Schiffman", - "popularity": 1.177, - "profile_path": "/wsDoXC9eqb4VHVMAeDIF0xlt9lL.jpg", - "credit_id": "64cea1bc303c8500c61371e4", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 2, - "id": 67159, - "known_for_department": "Production", - "name": "Christopher Tuffin", - "original_name": "Christopher Tuffin", - "popularity": 1.435, - "profile_path": null, - "credit_id": "61ba5d44439be100411bdc05", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 92332, - "known_for_department": "Costume & Make-Up", - "name": "Waldo Sanchez", - "original_name": "Waldo Sanchez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5e70945d36001d2723e6", - "department": "Costume & Make-Up", - "job": "Hair Department Head" - }, - { - "adult": false, - "gender": 2, - "id": 72960, - "known_for_department": "Directing", - "name": "Alejandro Gómez Monteverde", - "original_name": "Alejandro Gómez Monteverde", - "popularity": 3.303, - "profile_path": "/hComfoqIuLYwomU8oQ3QhvZZHR0.jpg", - "credit_id": "5f2b2984f1759c00368928c3", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 72960, - "known_for_department": "Directing", - "name": "Alejandro Gómez Monteverde", - "original_name": "Alejandro Gómez Monteverde", - "popularity": 3.303, - "profile_path": "/hComfoqIuLYwomU8oQ3QhvZZHR0.jpg", - "credit_id": "5f2b29ae2d8ef3791fd7821f", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 2, - "id": 72967, - "known_for_department": "Production", - "name": "Leo Severino", - "original_name": "Leo Severino", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5d2a28d7fe001d5d5ade", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 72968, - "known_for_department": "Acting", - "name": "Eduardo Verástegui", - "original_name": "Eduardo Verástegui", - "popularity": 17.233, - "profile_path": "/jUPrzJbA4ksTR0DYK10PKpq1yJG.jpg", - "credit_id": "61ba5d5213af5f0042feb87e", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 75707, - "known_for_department": "Directing", - "name": "Stephen E. Hagen", - "original_name": "Stephen E. Hagen", - "popularity": 1.036, - "profile_path": null, - "credit_id": "64cea182549dda00acf013ec", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 1, - "id": 989750, - "known_for_department": "Production", - "name": "Deanna Brigidi", - "original_name": "Deanna Brigidi", - "popularity": 2.188, - "profile_path": null, - "credit_id": "61ba5db9c616ac009a1564db", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 1, - "id": 1016150, - "known_for_department": "Production", - "name": "Renee Tab", - "original_name": "Renee Tab", - "popularity": 0.753, - "profile_path": null, - "credit_id": "61ba5d34c15f89001c93fe88", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1075764, - "known_for_department": "Production", - "name": "Warren Ostergard", - "original_name": "Warren Ostergard", - "popularity": 0.65, - "profile_path": "/5u25SwlLuc7eNMfvcLpTwC3vg0x.jpg", - "credit_id": "61ba5d1d014325009a0813ca", - "department": "Production", - "job": "Line Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1165379, - "known_for_department": "Camera", - "name": "Gorka Gómez Andreu", - "original_name": "Gorka Gómez Andreu", - "popularity": 0.95, - "profile_path": "/xXCY9arkK2JzoetYFLGkt6tN7dX.jpg", - "credit_id": "61ba5d97894ed6004061149b", - "department": "Crew", - "job": "Cinematography" - }, - { - "adult": false, - "gender": 2, - "id": 1288829, - "known_for_department": "Acting", - "name": "John Paul DeJoria", - "original_name": "John Paul DeJoria", - "popularity": 1.306, - "profile_path": null, - "credit_id": "61ba5ccefa404600870e3606", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1333076, - "known_for_department": "Costume & Make-Up", - "name": "Isabel Mandujano", - "original_name": "Isabel Mandujano", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5e434da3d40043534ca4", - "department": "Costume & Make-Up", - "job": "Costume Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1337636, - "known_for_department": "Art", - "name": "Carlos Lagunas", - "original_name": "Carlos Lagunas", - "popularity": 0.84, - "profile_path": null, - "credit_id": "61ba5dc8894ed6008edde909", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 2, - "id": 1412478, - "known_for_department": "Art", - "name": "Sandro Valdez", - "original_name": "Sandro Valdez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5dfac616ac00668c89b2", - "department": "Art", - "job": "Supervising Art Director" - }, - { - "adult": false, - "gender": 2, - "id": 1551062, - "known_for_department": "Directing", - "name": "Alonso Alvarez", - "original_name": "Alonso Alvarez", - "popularity": 1.218, - "profile_path": "/tzIXmmKY3PXmoTGqYfjglCl7iyl.jpg", - "credit_id": "64cea152303c85013a14d1b3", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 0, - "id": 1582746, - "known_for_department": "Costume & Make-Up", - "name": "Olga Turrini Bernardoni", - "original_name": "Olga Turrini Bernardoni", - "popularity": 1.38, - "profile_path": null, - "credit_id": "61ba5eae223e200042ae6782", - "department": "Costume & Make-Up", - "job": "Key Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1605770, - "known_for_department": "Editing", - "name": "Brian Scofield", - "original_name": "Brian Scofield", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5dab28723c001c09a4f4", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1609113, - "known_for_department": "Production", - "name": "Camilo Buendia", - "original_name": "Camilo Buendia", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5cb76a3448001cddaaac", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 2327195, - "known_for_department": "Art", - "name": "Eugenio Garcia", - "original_name": "Eugenio Garcia", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5de27d5f4b0062529adf", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 1, - "id": 2327198, - "known_for_department": "Costume & Make-Up", - "name": "Alejandra Basabe", - "original_name": "Alejandra Basabe", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5e659d8939004045fc17", - "department": "Costume & Make-Up", - "job": "Assistant Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2555225, - "known_for_department": "Costume & Make-Up", - "name": "Amanda Nicole Stockham", - "original_name": "Amanda Nicole Stockham", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5e9fa44d0900428685d4", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 0, - "id": 2874819, - "known_for_department": "Costume & Make-Up", - "name": "Juliana Poveda", - "original_name": "Juliana Poveda", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5e4fc616ac009a1565f3", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 0, - "id": 2970672, - "known_for_department": "Acting", - "name": "Jaime Hernández", - "original_name": "Jaime Hernández", - "popularity": 0.84, - "profile_path": null, - "credit_id": "61ba5cf15ad76b00640fb81a", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3348915, - "known_for_department": "Writing", - "name": "Rod Barr", - "original_name": "Rod Barr", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5bb6a44d09001d120000", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 0, - "id": 3348926, - "known_for_department": "Production", - "name": "Lukas Behnken", - "original_name": "Lukas Behnken", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5c8b13af5f006309d0b0", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3348929, - "known_for_department": "Production", - "name": "Patricio Slim Domit", - "original_name": "Patricio Slim Domit", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5cdfcb75d1001c0aa6f1", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3348931, - "known_for_department": "Production", - "name": "Carlos Martinez", - "original_name": "Carlos Martinez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5d10e72fe800615e148f", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3348934, - "known_for_department": "Art", - "name": "Andrew Rodriquez", - "original_name": "Andrew Rodriquez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5dee44a424008941a5ac", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 3348938, - "known_for_department": "Art", - "name": "Rafa Mtz Withingham", - "original_name": "Rafa Mtz Withingham", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5e334cd91200983e98c6", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 0, - "id": 3752956, - "known_for_department": "Directing", - "name": "David Pombo", - "original_name": "David Pombo", - "popularity": 0.614, - "profile_path": null, - "credit_id": "64cea19385090f0125bc6348", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 4199308, - "known_for_department": "Directing", - "name": "Harold Ariza Cortes", - "original_name": "Harold Ariza Cortes", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cea1736d4c9700afadb147", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 4199309, - "known_for_department": "Directing", - "name": "Collin Reisenauer", - "original_name": "Collin Reisenauer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cea1a5303c85011dd3ad60", - "department": "Directing", - "job": "Assistant Director" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Theatrical Trailer for July 4", - "key": "hyyyKcfJRGQ", - "site": "YouTube", - "size": 2160, - "type": "Trailer", - "official": true, - "published_at": "2023-05-12T02:03:12.000Z", - "id": "645e47e288b1480158f2e037" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "UwSBQWI-bek", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-04-02T00:38:32.000Z", - "id": "645046a1e942ee012100f35b" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 1215, - "iso_639_1": "en", - "file_path": "/waBWlJlMpyFb7STkFHfFvJKgwww.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2160 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/eMPxmNvJjxVZIQWI2t1VmNC5IuR.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1215, - "iso_639_1": "en", - "file_path": "/iR0OHKW2Fng8yyuKhmQCd5j2Vom.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2160 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/84cS9oEm33jD05T0p39TbwADY8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/e8uGiKR2XhV4Zcm0U5JKCxPy8xS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/6KuNIGKXPi1nmGxSXPnHYfgehz4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/cluzwi8vqVtTMeD2vHG8dFM9nol.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/pknzyhP1Bnnlmn94VC8UlcoqfNn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1215, - "iso_639_1": "en", - "file_path": "/yG3bd7ZFz9gK6T3VYKic2jgXrT3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2160 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/rfUVMI6devjhmM0lN8iVqgkwYwL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.776, - "height": 1081, - "iso_639_1": "en", - "file_path": "/kwqVGjmpZbrAR8ycxULibvO9pEE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/uScRrwovhJNGlC3LbpNusvmvLCD.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/7QgNUbBbpKyUeh11zbX8CniL9gC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1260, - "iso_639_1": null, - "file_path": "/o4SBV32WdZZOd9mV9ng7zUUWG70.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2240 - } - ], - "logos": [ - { - "aspect_ratio": 2.977, - "height": 596, - "iso_639_1": "en", - "file_path": "/esz2VF2MCl4NnUpOPq3XzIUfm8X.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1774 - }, - { - "aspect_ratio": 2.977, - "height": 596, - "iso_639_1": "en", - "file_path": "/uZ5pSOdhForMQPUaf4zFu2u8h57.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1774 - }, - { - "aspect_ratio": 2.977, - "height": 596, - "iso_639_1": "en", - "file_path": "/tG729221xBkECL7HGK5MlF4X8CE.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1774 - }, - { - "aspect_ratio": 2.977, - "height": 596, - "iso_639_1": "en", - "file_path": "/x05IYi2CCD3K6RxJ5Cd7fAUuWTu.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1774 - }, - { - "aspect_ratio": 2.977, - "height": 596, - "iso_639_1": "en", - "file_path": "/r6qFgL5ZtOJQRl8fv7GLe1W4Xk5.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1774 - }, - { - "aspect_ratio": 2.977, - "height": 596, - "iso_639_1": "en", - "file_path": "/lyFS2aNN0MPazHsGwqbqmSaXfEl.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1774 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": "uk", - "file_path": "/sDJm6zhD7nXkNo8MBdymJXWizBT.jpg", - "vote_average": 5.574, - "vote_count": 15, - "width": 1500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ks", - "file_path": "/joai0d9CwvOcO5xFVUuePpeyHfu.jpg", - "vote_average": 5.456, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1678, - "iso_639_1": "en", - "file_path": "/kSf9svfL2WrKeuK8W08xeR5lTn8.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 1119 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qA5kPYZA7FkVvqcEfJRoOy4kpHg.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.672, - "height": 2197, - "iso_639_1": "ro", - "file_path": "/itZK7TiZ9QhDULQBKLOPmGmLVSM.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1476 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "es", - "file_path": "/apxaWDCqjPrVc1v5HiKW2r10yiL.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 648 - }, - { - "aspect_ratio": 0.667, - "height": 1678, - "iso_639_1": "en", - "file_path": "/mx4O9OEvIB265VM3UATLslsSW5t.jpg", - "vote_average": 5.27, - "vote_count": 10, - "width": 1119 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "es", - "file_path": "/zKs57cx0vjIYSWUZq0oOMrqWSlN.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 648 - }, - { - "aspect_ratio": 0.675, - "height": 1600, - "iso_639_1": "en", - "file_path": "/3rM3iBbDVkpxdh8adTn5uGvcDD2.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/awOlndX2n5hQZ9Scoy9MjqCnzgz.jpg", - "vote_average": 5.18, - "vote_count": 18, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1678, - "iso_639_1": "sc", - "file_path": "/r5VQb0LDEZ0r5OHmAQirhOsWrru.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1119 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/lmR7QCgQNyUzvmlJk4pB4N7ksAv.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 1678, - "iso_639_1": null, - "file_path": "/aoowU4JMr7ddUxfrHkwyQM5fAFE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1119 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "ru", - "file_path": "/5qC9ztUIX15mnZtcaU088M2gX9p.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/ydKr0gwH1J69fcxa8JvX3BtDGkK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "pt", - "file_path": "/2BWhcrlPr6UvSJy5D044Ikq2QxH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.672, - "height": 1547, - "iso_639_1": null, - "file_path": "/o8nOQQoMB5fSzxW6wnHQvo8a2FF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1039 - }, - { - "aspect_ratio": 0.672, - "height": 2000, - "iso_639_1": null, - "file_path": "/tK4tigHq7qjyxRRsGhROu9PxaEO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1344 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/717930.json b/examples/view-transitions/src/content/movies/717930.json deleted file mode 100644 index c6cc02822..000000000 --- a/examples/view-transitions/src/content/movies/717930.json +++ /dev/null @@ -1,2546 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/c6Splshb8lb2Q9OvUfhpqXl7uP0.jpg", - "belongs_to_collection": null, - "budget": 0, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 53, "name": "Thriller" } - ], - "homepage": "https://www.openroadfilms.com/movies/kandahar", - "id": 717930, - "imdb_id": "tt5761544", - "original_language": "en", - "original_title": "Kandahar", - "overview": "After his mission is exposed, an undercover CIA operative stuck deep in hostile territory in Afghanistan must fight his way out, alongside his Afghan translator, to an extraction point in Kandahar, all whilst avoiding elite enemy forces and foreign spies tasked with hunting them down.", - "popularity": 1206.966, - "poster_path": "/lCanGgsqF4xD2WA5NF8PWeT3IXd.jpg", - "production_companies": [ - { - "id": 3528, - "logo_path": "/cCzCClIzIh81Fa79hpW5nXoUsHK.png", - "name": "Thunder Road", - "origin_country": "US" - }, - { - "id": 103331, - "logo_path": "/nxkmGpo1Ym74DkBzNtoMz5cl6DJ.png", - "name": "G-BASE", - "origin_country": "US" - }, - { - "id": 145428, - "logo_path": "/dgUV94AxFEumfIICKEg5UdCCU3k.png", - "name": "MBC Studios", - "origin_country": "AE" - }, - { "id": 154063, "logo_path": null, "name": "Capstone Pictures", "origin_country": "US" } - ], - "production_countries": [ - { "iso_3166_1": "AE", "name": "United Arab Emirates" }, - { "iso_3166_1": "US", "name": "United States of America" } - ], - "release_date": "2023-05-25", - "revenue": 3000000, - "runtime": 119, - "spoken_languages": [{ "english_name": "English", "iso_639_1": "en", "name": "English" }], - "status": "Released", - "tagline": "The only thing more dangerous than the mission is the escape.", - "title": "Kandahar", - "video": false, - "vote_average": 6.8, - "vote_count": 509, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 17276, - "known_for_department": "Acting", - "name": "Gerard Butler", - "original_name": "Gerard Butler", - "popularity": 77.589, - "profile_path": "/hAKPWWvUyvcfqPcoBG45c8NRr6e.jpg", - "cast_id": 1, - "character": "Tom Harris", - "credit_id": "5ef08dfc6e3deb0036a417ff", - "order": 0 - }, - { - "adult": false, - "gender": 2, - "id": 103330, - "known_for_department": "Acting", - "name": "Navid Negahban", - "original_name": "Navid Negahban", - "popularity": 10.944, - "profile_path": "/cPsYncbHK7J76Sm4bc1rtgRh5qf.jpg", - "cast_id": 16, - "character": "Mohammad 'Mo' Doud", - "credit_id": "620297f8ac6c79001bda27c6", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 77700, - "known_for_department": "Acting", - "name": "Travis Fimmel", - "original_name": "Travis Fimmel", - "popularity": 49.407, - "profile_path": "/kuTSw3I2hqb5N1QqYrXPX8zd8EA.jpg", - "cast_id": 117, - "character": "Roman Chalmers", - "credit_id": "648b63f1559d220139bc0f7f", - "order": 2 - }, - { - "adult": false, - "gender": 2, - "id": 492791, - "known_for_department": "Acting", - "name": "Ali Fazal", - "original_name": "Ali Fazal", - "popularity": 4.129, - "profile_path": "/zNCDN1L2WftXVGW9EJcjvtmEsll.jpg", - "cast_id": 15, - "character": "Kahil Nasir", - "credit_id": "620297eecb6db5006d6b2339", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 1437659, - "known_for_department": "Acting", - "name": "Bahador Foladi", - "original_name": "Bahador Foladi", - "popularity": 2.196, - "profile_path": "/iciyiV1tj2osd3JTOInoc24e4r3.jpg", - "cast_id": 22, - "character": "Farzad Asadi", - "credit_id": "623b71bb211ce50088bda0de", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 1227646, - "known_for_department": "Acting", - "name": "Nina Toussaint-White", - "original_name": "Nina Toussaint-White", - "popularity": 4.655, - "profile_path": "/pnuX4VjMKvIrddthUPKq5xebEmM.jpg", - "cast_id": 18, - "character": "Luna Cujai", - "credit_id": "62029826f706de010d42dd6e", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 119893, - "known_for_department": "Acting", - "name": "Mark Arnold", - "original_name": "Mark Arnold", - "popularity": 6.444, - "profile_path": "/dTfoxBUC6jpZry0ijlS8g4Y5cuS.jpg", - "cast_id": 119, - "character": "Mark Lowe", - "credit_id": "64c9101bb9744200eb520ef3", - "order": 6 - }, - { - "adult": false, - "gender": 2, - "id": 17199, - "known_for_department": "Acting", - "name": "Corey Johnson", - "original_name": "Corey Johnson", - "popularity": 4.007, - "profile_path": "/mhNbf4vGzixPL5mTIOBUPguqvpB.jpg", - "cast_id": 33, - "character": "Chris Hoyt", - "credit_id": "63fcd3ec84f24900ccd28623", - "order": 7 - }, - { - "adult": false, - "gender": 2, - "id": 3708802, - "known_for_department": "Acting", - "name": "Hakeem Jomah", - "original_name": "Hakeem Jomah", - "popularity": 0.7, - "profile_path": "/aSg7doju4pfjfxAzN6miWW8dhLM.jpg", - "cast_id": 28, - "character": "Rasoul", - "credit_id": "63fcd3706aa8e000f0b7854a", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 1327945, - "known_for_department": "Acting", - "name": "Tom Rhys Harries", - "original_name": "Tom Rhys Harries", - "popularity": 4.994, - "profile_path": "/inO5x5hL08SxTM7F9p3MGGVFJqQ.jpg", - "cast_id": 20, - "character": "Oliver Altman", - "credit_id": "623b7160211ce5004786c0a2", - "order": 9 - }, - { - "adult": false, - "gender": 2, - "id": 965673, - "known_for_department": "Acting", - "name": "Ray Haratian", - "original_name": "Ray Haratian", - "popularity": 2.196, - "profile_path": "/1DcOx50pdS1xgybHBiDNBpkRFkz.jpg", - "cast_id": 29, - "character": "Ismail Rabbani", - "credit_id": "63fcd3906aa8e000c62d4e7f", - "order": 10 - }, - { - "adult": false, - "gender": 1, - "id": 2114526, - "known_for_department": "Acting", - "name": "Elnaaz Norouzi", - "original_name": "Elnaaz Norouzi", - "popularity": 13.996, - "profile_path": "/vClWBDxwNfajDopECzqmn0HSwjN.jpg", - "cast_id": 120, - "character": "Shina Asadi", - "credit_id": "64c9103408cf8700ff55e8e5", - "order": 11 - }, - { - "adult": false, - "gender": 1, - "id": 2723390, - "known_for_department": "Acting", - "name": "Olivia-Mai Barrett", - "original_name": "Olivia-Mai Barrett", - "popularity": 7.035, - "profile_path": "/gWZRzvOnUxZmvdzHuxBvIS0BEJP.jpg", - "cast_id": 21, - "character": "Ida Harris", - "credit_id": "623b7186719aeb00486c0028", - "order": 12 - }, - { - "adult": false, - "gender": 1, - "id": 1355139, - "known_for_department": "Acting", - "name": "Rebecca Calder", - "original_name": "Rebecca Calder", - "popularity": 3.314, - "profile_path": "/ifz75sAvBE4552GZNmdxRrdygkK.jpg", - "cast_id": 116, - "character": "Corrine Harris", - "credit_id": "6444cbd805822402fb331c22", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 1905531, - "known_for_department": "Acting", - "name": "Vassilis Koukalani", - "original_name": "Vassilis Koukalani", - "popularity": 4.182, - "profile_path": "/ysb6jYjtb5AkDpWhl09Xfgy9xUO.jpg", - "cast_id": 27, - "character": "Bashar", - "credit_id": "63fcd361344a8e007cbac9f2", - "order": 14 - }, - { - "adult": false, - "gender": 0, - "id": 2546937, - "known_for_department": "Acting", - "name": "Farzad Bagheri", - "original_name": "Farzad Bagheri", - "popularity": 0.6, - "profile_path": null, - "cast_id": 30, - "character": "Parshand", - "credit_id": "63fcd39ce4b576007c76b534", - "order": 15 - }, - { - "adult": false, - "gender": 0, - "id": 3108658, - "known_for_department": "Acting", - "name": "Ross Berkeley Simpson", - "original_name": "Ross Berkeley Simpson", - "popularity": 0.98, - "profile_path": null, - "cast_id": 121, - "character": "English Newscaster 1", - "credit_id": "64c91074d5191f01396f9da9", - "order": 16 - }, - { - "adult": false, - "gender": 2, - "id": 2113546, - "known_for_department": "Acting", - "name": "Lee Comley", - "original_name": "Lee Comley", - "popularity": 1.104, - "profile_path": "/tVSWNED3nAaHHXHRHBnbvM69gsT.jpg", - "cast_id": 32, - "character": "English Newscaster 2", - "credit_id": "63fcd3b857176f00bcc0b37b", - "order": 17 - }, - { - "adult": false, - "gender": 0, - "id": 2086134, - "known_for_department": "Directing", - "name": "Najia Khaan", - "original_name": "Najia Khaan", - "popularity": 0.6, - "profile_path": null, - "cast_id": 34, - "character": "Nahal Hosseini", - "credit_id": "63fcd40a72d85500792107e0", - "order": 18 - }, - { - "adult": false, - "gender": 1, - "id": 2742945, - "known_for_department": "Acting", - "name": "Reem AlHabib", - "original_name": "Reem AlHabib", - "popularity": 0.6, - "profile_path": "/twGZr9rOisLJpGKtFkkbulhxF4w.jpg", - "cast_id": 122, - "character": "Adela Doud", - "credit_id": "64c9111308cf8700ff55e965", - "order": 19 - }, - { - "adult": false, - "gender": 2, - "id": 109669, - "known_for_department": "Acting", - "name": "Fahim Fazli", - "original_name": "Fahim Fazli", - "popularity": 2.671, - "profile_path": "/hNjSzr3quACIMwotRaRM2yKi9fU.jpg", - "cast_id": 31, - "character": "Taliban commander", - "credit_id": "63fcd3ac344a8e00aa1c5f7a", - "order": 20 - }, - { - "adult": false, - "gender": 0, - "id": 3941529, - "known_for_department": "Acting", - "name": "Darius Radac", - "original_name": "Darius Radac", - "popularity": 0.6, - "profile_path": null, - "cast_id": 35, - "character": "Stuart Sutherland", - "credit_id": "63fcd41396e30b0083271b72", - "order": 21 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 3501, - "known_for_department": "Production", - "name": "Daniel Hubbard", - "original_name": "Daniel Hubbard", - "popularity": 1.873, - "profile_path": "/1lu2KM4WgcT2W950iYnzLTizJP7.jpg", - "credit_id": "63fcd46d72d85500d4c6ae62", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 2, - "id": 17276, - "known_for_department": "Acting", - "name": "Gerard Butler", - "original_name": "Gerard Butler", - "popularity": 77.589, - "profile_path": "/hAKPWWvUyvcfqPcoBG45c8NRr6e.jpg", - "credit_id": "620296f9e004a6001cd58db4", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 18617, - "known_for_department": "Editing", - "name": "Colby Parker Jr.", - "original_name": "Colby Parker Jr.", - "popularity": 1.077, - "profile_path": null, - "credit_id": "63fcd456e4b57600bd396fbd", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 22233, - "known_for_department": "Camera", - "name": "Jack Serino", - "original_name": "Jack Serino", - "popularity": 0.94, - "profile_path": "/3IC5fFjESgjbEqE7umwMYapQI7t.jpg", - "credit_id": "63fcd87d96e30b0087f8dd24", - "department": "Lighting", - "job": "Key Rigging Grip" - }, - { - "adult": false, - "gender": 2, - "id": 43095, - "known_for_department": "Production", - "name": "Tom Ortenberg", - "original_name": "Tom Ortenberg", - "popularity": 1.589, - "profile_path": null, - "credit_id": "632b43a839b6c3007e0cd230", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 50988, - "known_for_department": "Production", - "name": "Scott LaStaiti", - "original_name": "Scott LaStaiti", - "popularity": 1.025, - "profile_path": null, - "credit_id": "62029728439be100aacc32a3", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 67759, - "known_for_department": "Production", - "name": "Basil Iwanyk", - "original_name": "Basil Iwanyk", - "popularity": 5.139, - "profile_path": "/7ULVJcHinmbUkjGrjseCgAztcx4.jpg", - "credit_id": "620296c42b932000675fbc69", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 76422, - "known_for_department": "Directing", - "name": "Ric Roman Waugh", - "original_name": "Ric Roman Waugh", - "popularity": 3.543, - "profile_path": "/cu0MJd4exIgSLgaE0uwMDTFQcpA.jpg", - "credit_id": "5ef08e2910dad60032c05f57", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 225635, - "known_for_department": "Sound", - "name": "David Buckley", - "original_name": "David Buckley", - "popularity": 1.66, - "profile_path": "/q1yKKLlYetpFUhR9mrn8gw1SoxE.jpg", - "credit_id": "63fcd44872d8550085a3413b", - "department": "Sound", - "job": "Music" - }, - { - "adult": false, - "gender": 2, - "id": 575735, - "known_for_department": "Acting", - "name": "Danko Jordanov", - "original_name": "Danko Jordanov", - "popularity": 1.285, - "profile_path": "/6fD2hP2eDfuwgpGx5zJOO4AX9mY.jpg", - "credit_id": "63fcd6fae4b576009d1bb345", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 2, - "id": 582624, - "known_for_department": "Production", - "name": "Alan Siegel", - "original_name": "Alan Siegel", - "popularity": 1.4, - "profile_path": null, - "credit_id": "620296ef4df2910108772950", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 1, - "id": 587803, - "known_for_department": "Costume & Make-Up", - "name": "Kimberly Adams", - "original_name": "Kimberly Adams", - "popularity": 0.649, - "profile_path": "/hf94FYY3ggQiCi1gDuxOlx3zlA4.jpg", - "credit_id": "63fcd4c5344a8e00aa1c6022", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 2, - "id": 1027579, - "known_for_department": "Art", - "name": "Vincent Reynaud", - "original_name": "Vincent Reynaud", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd47d6aa8e0007c047dba", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 2, - "id": 1080636, - "known_for_department": "Acting", - "name": "Ivailo Dimitrov", - "original_name": "Ivailo Dimitrov", - "popularity": 1.363, - "profile_path": "/vfxpj3C7CfRYXa401jG3R9Y58JT.jpg", - "credit_id": "64a89b1db686b9012f85dac5", - "department": "Crew", - "job": "Utility Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1284037, - "known_for_department": "Camera", - "name": "MacGregor", - "original_name": "MacGregor", - "popularity": 0.98, - "profile_path": null, - "credit_id": "63017d115f4b73007af0eb88", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 0, - "id": 1335559, - "known_for_department": "Sound", - "name": "Dominic Gibbs", - "original_name": "Dominic Gibbs", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd63ee4b5760081578252", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1337412, - "known_for_department": "Sound", - "name": "Jason Swanscott", - "original_name": "Jason Swanscott", - "popularity": 0.874, - "profile_path": null, - "credit_id": "63fcd6a5344a8e00e6cecb6c", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1350254, - "known_for_department": "Crew", - "name": "Dian Hristov", - "original_name": "Dian Hristov", - "popularity": 2.456, - "profile_path": "/92Dscadv00Q6p9SUKxEOXAERqST.jpg", - "credit_id": "63fcd6ef72d85500d4c6afc6", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 1383073, - "known_for_department": "Sound", - "name": "Tom Hambleton", - "original_name": "Tom Hambleton", - "popularity": 1.22, - "profile_path": null, - "credit_id": "63fcd64896e30b009fcab687", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1399863, - "known_for_department": "Crew", - "name": "Joe Pancake", - "original_name": "Joe Pancake", - "popularity": 1.024, - "profile_path": null, - "credit_id": "63fcd6c696e30b0083271cd8", - "department": "Visual Effects", - "job": "Special Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1402926, - "known_for_department": "Sound", - "name": "Andrew Neil", - "original_name": "Andrew Neil", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd67e96e30b0083271cb4", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1408393, - "known_for_department": "Camera", - "name": "Hopper Stone", - "original_name": "Hopper Stone", - "popularity": 0.947, - "profile_path": null, - "credit_id": "63fcd88796e30b009fcab79d", - "department": "Camera", - "job": "Still Photographer" - }, - { - "adult": false, - "gender": 2, - "id": 1410216, - "known_for_department": "Camera", - "name": "Dave Isern", - "original_name": "Dave Isern", - "popularity": 0.6, - "profile_path": "/6upiKn0TBAH1TyARY0GbvEyQeBq.jpg", - "credit_id": "63fcd7ef344a8e00aa1c61e8", - "department": "Camera", - "job": "Steadicam Operator" - }, - { - "adult": false, - "gender": 1, - "id": 1412733, - "known_for_department": "Costume & Make-Up", - "name": "Anita Lowe", - "original_name": "Anita Lowe", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd50772d85500bc84cdc8", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1426745, - "known_for_department": "Crew", - "name": "Jason Paradis", - "original_name": "Jason Paradis", - "popularity": 1.4, - "profile_path": null, - "credit_id": "63fcd6bce4b57600bd3970d5", - "department": "Crew", - "job": "Special Effects Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 1428252, - "known_for_department": "Production", - "name": "Christian Mercuri", - "original_name": "Christian Mercuri", - "popularity": 0.98, - "profile_path": null, - "credit_id": "620297072b531d2b8d8300a3", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1429626, - "known_for_department": "Production", - "name": "Miranda Davidson", - "original_name": "Miranda Davidson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd462e4b576009d1bb1dd", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 0, - "id": 1452224, - "known_for_department": "Crew", - "name": "Anas Balawi", - "original_name": "Anas Balawi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd48be4b57600a8810067", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1452224, - "known_for_department": "Crew", - "name": "Anas Balawi", - "original_name": "Anas Balawi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd4b196e30b007bd1db6b", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 0, - "id": 1475893, - "known_for_department": "Directing", - "name": "Jennifer Josephson", - "original_name": "Jennifer Josephson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd8ca344a8e008ec667bf", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1555183, - "known_for_department": "Camera", - "name": "Vishal Jain", - "original_name": "Vishal Jain", - "popularity": 0.98, - "profile_path": null, - "credit_id": "63fcd7fd344a8e00867dc638", - "department": "Camera", - "job": "First Assistant \"C\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 1559439, - "known_for_department": "Sound", - "name": "Michael Botha", - "original_name": "Michael Botha", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd61e57176f00db8042fe", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1568535, - "known_for_department": "Editing", - "name": "Cheryl Goodbody", - "original_name": "Cheryl Goodbody", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd5626aa8e000c62d4f98", - "department": "Crew", - "job": "Post Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1638554, - "known_for_department": "Camera", - "name": "Andrea Quaglio", - "original_name": "Andrea Quaglio", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd86872d85500bc84cf97", - "department": "Camera", - "job": "First Assistant Camera" - }, - { - "adult": false, - "gender": 0, - "id": 1643667, - "known_for_department": "Directing", - "name": "Ali Cherkaoui", - "original_name": "Ali Cherkaoui", - "popularity": 0.6, - "profile_path": "/rr7jWQVSmjr2zW1LL0e19MMCscF.jpg", - "credit_id": "63fcd58096e30b00dd714417", - "department": "Directing", - "job": "First Assistant Director (Prep)" - }, - { - "adult": false, - "gender": 0, - "id": 1653508, - "known_for_department": "Sound", - "name": "Ben Chick", - "original_name": "Ben Chick", - "popularity": 0.997, - "profile_path": null, - "credit_id": "63fcd62972d85500d4c6af64", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1701648, - "known_for_department": "Crew", - "name": "Stilyan Mavrov", - "original_name": "Stilyan Mavrov", - "popularity": 0.682, - "profile_path": "/LlitrtRpvpDcSkTPjAVTjcS7fD.jpg", - "credit_id": "63fcd70457176f00db804372", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 1, - "id": 1701654, - "known_for_department": "Crew", - "name": "Elitsa Razheva", - "original_name": "Elitsa Razheva", - "popularity": 1.7, - "profile_path": null, - "credit_id": "63fcd7196aa8e0008e848aa6", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1715566, - "known_for_department": "Lighting", - "name": "Ian Hotujac", - "original_name": "Ian Hotujac", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd7e3344a8e00e6cecbf5", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 2, - "id": 1784629, - "known_for_department": "Sound", - "name": "Mike Tehrani", - "original_name": "Mike Tehrani", - "popularity": 0.601, - "profile_path": null, - "credit_id": "63fcd69ae4b576007c76b6f3", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1892944, - "known_for_department": "Production", - "name": "Raghav Khanna", - "original_name": "Raghav Khanna", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd80972d855009d60ea30", - "department": "Camera", - "job": "Camera Trainee" - }, - { - "adult": false, - "gender": 2, - "id": 1932090, - "known_for_department": "Production", - "name": "Jonathan Fuhrman", - "original_name": "Jonathan Fuhrman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6202975ca61de100e13c1199", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 1932093, - "known_for_department": "Production", - "name": "Erica Lee", - "original_name": "Erica Lee", - "popularity": 0.75, - "profile_path": null, - "credit_id": "620296d196670e008f84d4c7", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1968660, - "known_for_department": "Production", - "name": "Patel Cyrus", - "original_name": "Patel Cyrus", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd56c6aa8e000c62d4fa2", - "department": "Production", - "job": "Unit Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 1973268, - "known_for_department": "Sound", - "name": "Stuart Bagshaw", - "original_name": "Stuart Bagshaw", - "popularity": 0.98, - "profile_path": null, - "credit_id": "63fcd61296e30b0087f8dbf4", - "department": "Sound", - "job": "Foley Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1983857, - "known_for_department": "Sound", - "name": "Mark Taylor", - "original_name": "Mark Taylor", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd68f57176f0081d6e3e7", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 2024663, - "known_for_department": "Camera", - "name": "Beatriz Delgado", - "original_name": "Beatriz Delgado", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd791e4b57600bd39714d", - "department": "Camera", - "job": "Second Assistant \"B\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 2072506, - "known_for_department": "Art", - "name": "Keith Weir", - "original_name": "Keith Weir", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd5e296e30b00dd714443", - "department": "Art", - "job": "Storyboard Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2120857, - "known_for_department": "Costume & Make-Up", - "name": "Hilary Hughes", - "original_name": "Hilary Hughes", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd8b272d8550085a343a4", - "department": "Costume & Make-Up", - "job": "Costume Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 2154907, - "known_for_department": "Acting", - "name": "Reni Sirmina", - "original_name": "Reni Sirmina", - "popularity": 2.119, - "profile_path": "/k5x3OuN7DfUTyLjOKUWMmDJiMT4.jpg", - "credit_id": "63fcd72b57176f0081d6e428", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2157714, - "known_for_department": "Camera", - "name": "Hassan Hajhouj", - "original_name": "Hassan Hajhouj", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd7d86aa8e00096903688", - "department": "Lighting", - "job": "Rigging Grip" - }, - { - "adult": false, - "gender": 2, - "id": 2264266, - "known_for_department": "Production", - "name": "James Masciello", - "original_name": "James Masciello", - "popularity": 0.6, - "profile_path": null, - "credit_id": "632b43e6ef9d72007e3496b7", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2389445, - "known_for_department": "Production", - "name": "David Haring", - "original_name": "David Haring", - "popularity": 1.942, - "profile_path": null, - "credit_id": "62029718e004a6006773f824", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 2500622, - "known_for_department": "Crew", - "name": "Zarene Dallas", - "original_name": "Zarene Dallas", - "popularity": 2.673, - "profile_path": "/pCpRhGfErWK0jkagdmGQGpy0hLl.jpg", - "credit_id": "63fcd6e4344a8e00aa1c616c", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 2511819, - "known_for_department": "Art", - "name": "Pateel Kishmishian", - "original_name": "Pateel Kishmishian", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd5fb344a8e00e6cecb00", - "department": "Art", - "job": "Graphic Designer" - }, - { - "adult": false, - "gender": 0, - "id": 2534011, - "known_for_department": "Production", - "name": "Rob Moran", - "original_name": "Rob Moran", - "popularity": 0.6, - "profile_path": null, - "credit_id": "5f2ac9ad4b6d9d0036837512", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2580099, - "known_for_department": "Sound", - "name": "Alan MacFeely", - "original_name": "Alan MacFeely", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd66672d85500818932c9", - "department": "Sound", - "job": "Production Sound Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 2661311, - "known_for_department": "Acting", - "name": "Wesley Green", - "original_name": "Wesley Green", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd7c884f24900a9425b6c", - "department": "Camera", - "job": "Drone Pilot" - }, - { - "adult": false, - "gender": 0, - "id": 2668082, - "known_for_department": "Editing", - "name": "Simon Adegbenro", - "original_name": "Simon Adegbenro", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd57684f249008615c9a8", - "department": "Directing", - "job": "Second Second Assistant Director" - }, - { - "adult": false, - "gender": 2, - "id": 2762067, - "known_for_department": "Crew", - "name": "Jason Tubbs", - "original_name": "Jason Tubbs", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd735e4b57600bd397115", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 2784705, - "known_for_department": "Directing", - "name": "Michael Saunders", - "original_name": "Michael Saunders", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd59d6aa8e00096903563", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 2789861, - "known_for_department": "Acting", - "name": "César Villalba", - "original_name": "César Villalba", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd89e96e30b0087f8dd30", - "department": "Camera", - "job": "Assistant Camera" - }, - { - "adult": false, - "gender": 0, - "id": 2851968, - "known_for_department": "Sound", - "name": "Alex Stylianou", - "original_name": "Alex Stylianou", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd6ae57176f007cfdfacc", - "department": "Sound", - "job": "ADR Recordist" - }, - { - "adult": false, - "gender": 0, - "id": 2858140, - "known_for_department": "Production", - "name": "Brendon Boyea", - "original_name": "Brendon Boyea", - "popularity": 0.6, - "profile_path": null, - "credit_id": "620296da2f3b1700432650b3", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2872100, - "known_for_department": "Sound", - "name": "Alayn Crespo", - "original_name": "Alayn Crespo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd63396e30b00dd714485", - "department": "Sound", - "job": "Boom Operator" - }, - { - "adult": false, - "gender": 0, - "id": 2878740, - "known_for_department": "Camera", - "name": "Yakoubi Nordine", - "original_name": "Yakoubi Nordine", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd84696e30b0083271d82", - "department": "Camera", - "job": "Dolly Grip" - }, - { - "adult": false, - "gender": 0, - "id": 2899431, - "known_for_department": "Production", - "name": "Rory Okey", - "original_name": "Rory Okey", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd8a896e30b00dd7145b2", - "department": "Production", - "job": "Casting Associate" - }, - { - "adult": false, - "gender": 0, - "id": 2988214, - "known_for_department": "Costume & Make-Up", - "name": "Zainab Jaye", - "original_name": "Zainab Jaye", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd4de6aa8e00096903505", - "department": "Costume & Make-Up", - "job": "Makeup Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 3001599, - "known_for_department": "Camera", - "name": "Naoufal Lamkealal", - "original_name": "Naoufal Lamkealal", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd81b57176f007cfdfb52", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 0, - "id": 3077581, - "known_for_department": "Crew", - "name": "Athba AlKhudairy", - "original_name": "Athba AlKhudairy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd5326aa8e000f0b78620", - "department": "Production", - "job": "Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 3418212, - "known_for_department": "Production", - "name": "Ruzanna Kegeyan", - "original_name": "Ruzanna Kegeyan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62029738a61de100e13c1151", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3418213, - "known_for_department": "Production", - "name": "Andrea Dimity", - "original_name": "Andrea Dimity", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6202975235c30a006afa445f", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3418216, - "known_for_department": "Writing", - "name": "Mitchell LaFortune", - "original_name": "Mitchell LaFortune", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6202981035c30a001d5e76e8", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 0, - "id": 3455596, - "known_for_department": "Costume & Make-Up", - "name": "Jules Chapman", - "original_name": "Jules Chapman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd4d16aa8e000c62d4f3e", - "department": "Costume & Make-Up", - "job": "Hair Department Head" - }, - { - "adult": false, - "gender": 0, - "id": 3521476, - "known_for_department": "Art", - "name": "Razanah Silawi", - "original_name": "Razanah Silawi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd4bae4b5760085599e6b", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 0, - "id": 3584954, - "known_for_department": "Art", - "name": "Christian Zollenkopf", - "original_name": "Christian Zollenkopf", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd4a6e4b576009d1bb1fe", - "department": "Art", - "job": "Supervising Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 3622444, - "known_for_department": "Costume & Make-Up", - "name": "Pati Martí Donoghue", - "original_name": "Pati Martí Donoghue", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd4fc96e30b00be5aaeea", - "department": "Costume & Make-Up", - "job": "Makeup Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 3654455, - "known_for_department": "Acting", - "name": "Anna Albiach", - "original_name": "Anna Albiach", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd743e4b57600bd39711a", - "department": "Camera", - "job": "Second Assistant \"A\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3671476, - "known_for_department": "Production", - "name": "Patricia Wheeler", - "original_name": "Patricia Wheeler", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd5a86aa8e000f0b7866b", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 3710002, - "known_for_department": "Production", - "name": "Matthew Sidari", - "original_name": "Matthew Sidari", - "popularity": 0.6, - "profile_path": null, - "credit_id": "632b43d66ca9a0007d7f74c1", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3736597, - "known_for_department": "Camera", - "name": "James France", - "original_name": "James France", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd7b072d85500d4c6b03b", - "department": "Crew", - "job": "Drone Operator" - }, - { - "adult": false, - "gender": 0, - "id": 3871339, - "known_for_department": "Art", - "name": "Michael Coja", - "original_name": "Michael Coja", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd5c884f249008615c9db", - "department": "Art", - "job": "Standby Property Master" - }, - { - "adult": false, - "gender": 0, - "id": 3924147, - "known_for_department": "Camera", - "name": "Raul Vasquez", - "original_name": "Raul Vasquez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd89472d8550079210a52", - "department": "Camera", - "job": "Key Grip" - }, - { - "adult": false, - "gender": 0, - "id": 3941535, - "known_for_department": "Art", - "name": "Vatsal Mistry", - "original_name": "Vatsal Mistry", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd49b72d8550079210823", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 3941543, - "known_for_department": "Crew", - "name": "Mouthanna Al-Sayegh", - "original_name": "Mouthanna Al-Sayegh", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd5116aa8e0008e848983", - "department": "Crew", - "job": "Post-Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 3941544, - "known_for_department": "Production", - "name": "Rayan Aljowair", - "original_name": "Rayan Aljowair", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd52584f249008615c979", - "department": "Production", - "job": "Assistant Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3941547, - "known_for_department": "Production", - "name": "Maxine De Vere", - "original_name": "Maxine De Vere", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd541344a8e00867dc4a6", - "department": "Production", - "job": "Unit Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 3941552, - "known_for_department": "Art", - "name": "Mahdi Jahangir", - "original_name": "Mahdi Jahangir", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd607e4b5760081578230", - "department": "Art", - "job": "Graphic Designer" - }, - { - "adult": false, - "gender": 0, - "id": 3941555, - "known_for_department": "Sound", - "name": "Louisa Kearns", - "original_name": "Louisa Kearns", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd65372d85500d4c6af82", - "department": "Sound", - "job": "ADR Editor" - }, - { - "adult": false, - "gender": 0, - "id": 3941556, - "known_for_department": "Sound", - "name": "Oliver Miszti", - "original_name": "Oliver Miszti", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd672e4b5760085599f74", - "department": "Sound", - "job": "Sound Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3941557, - "known_for_department": "Crew", - "name": "Ben Menzies", - "original_name": "Ben Menzies", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd70c72d85500d4c6afd8", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 3941559, - "known_for_department": "Camera", - "name": "Adrian Alescio", - "original_name": "Adrian Alescio", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd76296e30b009fcab722", - "department": "Camera", - "job": "Digital Imaging Technician" - }, - { - "adult": false, - "gender": 0, - "id": 3941560, - "known_for_department": "Camera", - "name": "Mathiew Chambers", - "original_name": "Mathiew Chambers", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd781e4b57600a8810205", - "department": "Camera", - "job": "Second Assistant Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3941561, - "known_for_department": "Camera", - "name": "Nico Di Masso", - "original_name": "Nico Di Masso", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd79e84f249008615cab5", - "department": "Camera", - "job": "Digital Imaging Technician" - }, - { - "adult": false, - "gender": 0, - "id": 3941562, - "known_for_department": "Camera", - "name": "Manish Ghadge", - "original_name": "Manish Ghadge", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd7bc72d85500792109d4", - "department": "Camera", - "job": "Second Assistant \"C\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3941566, - "known_for_department": "Camera", - "name": "Arkaitz Latorre", - "original_name": "Arkaitz Latorre", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd82957176f00db8043fc", - "department": "Camera", - "job": "Second Assistant \"B\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3941568, - "known_for_department": "Camera", - "name": "Arslan Muhammad", - "original_name": "Arslan Muhammad", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd83884f24900ef623614", - "department": "Camera", - "job": "Assistant Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3941570, - "known_for_department": "Camera", - "name": "Jonathan Pears", - "original_name": "Jonathan Pears", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd85372d855009d60ea5d", - "department": "Camera", - "job": "Camera Operator" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "“I Should’ve Told You the Truth Earlier!” Extended Preview", - "key": "VlJ-uGKbnuE", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-07-19T16:00:33.000Z", - "id": "64b858891d5386011eac751a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Yours to Own Promo", - "key": "WrAnd6AMfH0", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-11T13:00:32.000Z", - "id": "64ad8e4c66a0d3011d7cfd2b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Watch at Home Now", - "key": "Xe57KV2OyM4", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-15T13:00:15.000Z", - "id": "648c4fffc3c89100cad96b23" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "WHs6z9RPGtA", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-04-04T14:36:26.000Z", - "id": "642c5dbdc044290236cccc67" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Canadian Trailer", - "key": "IBh9c2WFFz0", - "site": "YouTube", - "size": 2160, - "type": "Trailer", - "official": true, - "published_at": "2023-04-04T13:47:14.000Z", - "id": "646581ec006b010126f45cd0" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Teaser Trailer", - "key": "bRPxeMUqAKc", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-02-15T19:23:45.000Z", - "id": "63ee3e391b7294008e171cc3" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/c6Splshb8lb2Q9OvUfhpqXl7uP0.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/9VF4NfEvhcQs3GiL3vCS8uZv3O8.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/nIYyCGhCq0synnWJg7P4sJoQNLj.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/6pqjrhQ1SIEYOJKDhHrQen2TU3G.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "hi", - "file_path": "/4qyCXX3iN0IeRF0hxp5vDmYxct5.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/r7rQ7LZvi1u0vxMnrj4GvyPFYss.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/4wYt0YigWl1gHDDCmlv9bzjzTBn.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/igXrblWrU1uaC09VKyquHHSebr.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1152, - "iso_639_1": null, - "file_path": "/rqCnwXaCN6Hau5GzSXRJ4Nvl5Mh.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 2048 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/sINmOXAeFZutLprGyELychwPKKz.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/viYcuT12gUMhgAkNuDTMcpdDkib.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/omlbKt6XxKKGVlfHd3AZcdunBBR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/7P2YuVYYr4jaI5bNVe5uD0gxcxh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/J7mGPuxLSkrwXxPaZu1NWcJIyN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "fr", - "file_path": "/A9wfX0PHNYURZiCtM0MUWP0lMkt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/8XKaQAkVeb4mb4N7yUqOSzqxlIp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/2KbJWD52GzffiVCvvBbVmVGtRfo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/yah62W4No3XvV9WIAAJqZYqq3On.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/al3nQvsUrhGkNKW4cVwj6pazeBP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "it", - "file_path": "/mahX40mxfEe7duFTbcbRh9DhbPa.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "it", - "file_path": "/4mQ4ILsLLrDXqa7pb5i5774aYCz.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/8TLkiYAUwEXInVCJ3cQVyZXChyZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/d4v607nG3w5DLMYoj525ygXJk4K.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - } - ], - "logos": [ - { - "aspect_ratio": 9.074, - "height": 476, - "iso_639_1": "en", - "file_path": "/91We7JCqlfWVEv7z908E1wd8h7b.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 4319 - }, - { - "aspect_ratio": 8.711, - "height": 90, - "iso_639_1": "en", - "file_path": "/k2fGMHP3I1GwEAODLAFU7MRj8ps.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 784 - }, - { - "aspect_ratio": 3.972, - "height": 217, - "iso_639_1": "uk", - "file_path": "/e0Yxzbc30fa4kLphBG5SoIMFmnU.png", - "vote_average": 0, - "vote_count": 0, - "width": 862 - }, - { - "aspect_ratio": 9.326, - "height": 86, - "iso_639_1": "es", - "file_path": "/e2a7E0o9OXesjfP2nwUJrVtUpF5.png", - "vote_average": 0, - "vote_count": 0, - "width": 802 - }, - { - "aspect_ratio": 9.074, - "height": 476, - "iso_639_1": "en", - "file_path": "/cixOBgr5AMtMu0PN5ii1nrWAgFP.png", - "vote_average": 0, - "vote_count": 0, - "width": 4319 - }, - { - "aspect_ratio": 6.043, - "height": 693, - "iso_639_1": "en", - "file_path": "/6VAsUnhCjW7lqbT2VU4mxlB8k5x.png", - "vote_average": 0, - "vote_count": 0, - "width": 4188 - }, - { - "aspect_ratio": 4.527, - "height": 226, - "iso_639_1": "pt", - "file_path": "/3Yxx2nFC2ISBJVahu9q1FClWtDX.png", - "vote_average": 0, - "vote_count": 0, - "width": 1023 - }, - { - "aspect_ratio": 5.458, - "height": 107, - "iso_639_1": "it", - "file_path": "/g840BTZ3q48Annp2ZXb6Aj7Z2Eg.png", - "vote_average": 0, - "vote_count": 0, - "width": 584 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/lCanGgsqF4xD2WA5NF8PWeT3IXd.jpg", - "vote_average": 5.522, - "vote_count": 4, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/bedv18cZEfVQGWIztCE8dNaJB4s.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/jekoGDQ6draaeroQ9lm3euvOB03.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/9Y948q83aoHXsKeKat6oPDK8t9c.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/keT57nO3QcgrxzTKXH9v4hopI8g.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/ezNxCR9fju6gnTnJ4W6KgcZhD4.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.725, - "height": 1770, - "iso_639_1": "es", - "file_path": "/qE2EsMv37IjXLjc6ixOU3LeRtZl.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1283 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/4XTsoBLl303HE5bLttERQpyDvZt.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "th", - "file_path": "/5kE30zmcRe3bTcl7JHYfkszm0cN.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/3YyDSvFWg2RezQlshNenpz90UvP.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/y8vgFrFzezLtDMS7Q9OUyaO18pK.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/mkzXrx1cAeCsVWLpWx0ZZeBHuTq.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/zPMGGNMLP0JhxVG3yeL0qWs6nHd.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/xsmNNU5UbnurOnCOdUHbpv2XyFI.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1950, - "iso_639_1": "uk", - "file_path": "/yCZ1GJMOmnkmi4Cf586Pru9alr9.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1300 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/LgNt3WLrOt17G6ln4Y9EqacZBF.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/aQYselwVs2RbmV2BRG1l3AqDbPT.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/1cnr1M6n78FhfZIKjF9sAX8Rt3p.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/8CE1Hv6NSaAzL1LdrjUYu9UW0fK.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/kMGuYyt25Ik9ovhf2gxeSWoLhF7.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1600, - "iso_639_1": "de", - "file_path": "/ykyjIaxqQG5w8wmkWtTHpahLzi1.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 1067 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "en", - "file_path": "/gVh7d9n9WtUS6VSEaRXpGSTyhHW.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/A0GxQDOxckVGCqwJsWw2O6cY1ZW.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 750, - "iso_639_1": "he", - "file_path": "/5R1QcZygMf6yKck0x1DENeQeNLu.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 525 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/ejJP2WZqtpASlewLx9D94K3ed2m.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/wM0G5ECbY69S8isZAwRAyKlboMK.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/gcJucpXF8N3pHzb42oxsAjhNqLO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/i5HRQUpliHKj4ZYGv2bZd6UhGRq.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/jLGYJn7ygP7TBxvLImAbTrvbae1.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2500, - "iso_639_1": "en", - "file_path": "/4KMTsGvW9JtVzd5NyNldfv7uKvg.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1667 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/pXYaU0iFrljaMZL4NSjBX7yXSW5.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/9KR32LVElXE6lJuilwt8Ncic1Xk.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.7, - "height": 2000, - "iso_639_1": "es", - "file_path": "/rnAtTLfO4HiOXXxkqj4sPctXyWq.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/vhTPo0ODElsM7Ow5Euu1bEY6vPi.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/f5I5mk0nZzVBRJmeG6kl8aHdAgm.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/lrZyrYCWiQO8ljwhH9sX5RlZN5l.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/pDkpD4fl3Ug59GGMkaWxfNbmO2b.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1762, - "iso_639_1": "pt", - "file_path": "/ArDXxgsELJanwYDXd60MLTZDiSj.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1175 - }, - { - "aspect_ratio": 0.666, - "height": 1763, - "iso_639_1": "en", - "file_path": "/9RRFYhHYLLbwMM2aflh6l5J3JM3.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1175 - }, - { - "aspect_ratio": 0.667, - "height": 2018, - "iso_639_1": "en", - "file_path": "/oafmtPoumiUO1BaxgNNiVLeVXio.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1345 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/ntD9oKZ544C7cawUzWrBkrXqgbh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/AdNDXFzuClhkD3wULLTvL992L8Y.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1926, - "iso_639_1": "el", - "file_path": "/7O57HLkDHlHY0SpHHZXr6SR0Kdf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1300 - }, - { - "aspect_ratio": 0.675, - "height": 1926, - "iso_639_1": "el", - "file_path": "/drPNB8ID0uZKw994Sfxb7YPiIA5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1300 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/rVq4EYHVc4ZkGIcF81PcnMlWkSf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "ro", - "file_path": "/wCGiASRZ692kdwnCtzt7td58XLa.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cR2fVSun4yvYRzYGJHQU0RpSsmC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1440, - "iso_639_1": "th", - "file_path": "/r9EfndyPcLeAbGVHru9VQ3au6xv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 960 - }, - { - "aspect_ratio": 0.666, - "height": 2863, - "iso_639_1": "fr", - "file_path": "/r8Cwc41H0VIm121i7IILbGkirJp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1908 - }, - { - "aspect_ratio": 0.667, - "height": 2154, - "iso_639_1": "fr", - "file_path": "/hqLzZSBM4HdhAFryhZiJuuXgtkb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1436 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/oVGLRgoLujeNkVZkj5pqqPU8t4m.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/lxtt48VB2DddM1qAwHcGHctNOq8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/qLAgPsNxoiUZ6VeVEUdhSz7bMHR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/M2w3Hl3Xnjwjm06A14PuuRVOWe.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1890 - }, - { - "aspect_ratio": 0.71, - "height": 1352, - "iso_639_1": "cn", - "file_path": "/yS8YNS4dJJIK9AiEImS1JR6PhJs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 960 - }, - { - "aspect_ratio": 0.667, - "height": 960, - "iso_639_1": "de", - "file_path": "/jE93yuNBqGGQ9zvgQsZPiUsPmhE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 640 - }, - { - "aspect_ratio": 0.667, - "height": 1440, - "iso_639_1": "pt", - "file_path": "/ciIu5NReKFlVFrwDBgTOPiN9yot.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 960 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "pt", - "file_path": "/jLDX3Dut9FTH4XjtPZDRaALHNRn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1440, - "iso_639_1": null, - "file_path": "/25plYYaf1qB4yBiNH3Dy5Y1M0Yk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 960 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/8NQhrJo9bUdFnBnb3IrSYyDxKeu.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/762430.json b/examples/view-transitions/src/content/movies/762430.json deleted file mode 100644 index 79826fe66..000000000 --- a/examples/view-transitions/src/content/movies/762430.json +++ /dev/null @@ -1,2181 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/iiXliCeykkzmJ0Eg9RYJ7F2CWSz.jpg", - "belongs_to_collection": null, - "budget": 20000000, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 9648, "name": "Mystery" }, - { "id": 53, "name": "Thriller" }, - { "id": 80, "name": "Crime" } - ], - "homepage": "https://www.lionsgate.com/movies/retribution", - "id": 762430, - "imdb_id": "tt6906292", - "original_language": "en", - "original_title": "Retribution", - "overview": "When a mysterious caller puts a bomb under his car seat, Matt Turner begins a high-speed chase across the city to complete a specific series of tasks. With his kids trapped in the back seat and a bomb that will explode if they get out of the car, a normal commute becomes a twisted game of life or death as Matt follows the stranger's increasingly dangerous instructions in a race against time to save his family.", - "popularity": 702.724, - "poster_path": "/oUmmY7QWWn7OhKlcPOnirHJpP1F.jpg", - "production_companies": [ - { - "id": 694, - "logo_path": "/5LEHONGkZBIoWvp1ygHOF8iyi1M.png", - "name": "StudioCanal", - "origin_country": "FR" - }, - { "id": 99132, "logo_path": null, "name": "The Picture Company", "origin_country": "US" }, - { "id": 23513, "logo_path": null, "name": "Ombra Films", "origin_country": "US" } - ], - "production_countries": [ - { "iso_3166_1": "FR", "name": "France" }, - { "iso_3166_1": "US", "name": "United States of America" } - ], - "release_date": "2023-08-23", - "revenue": 12905464, - "runtime": 91, - "spoken_languages": [ - { "english_name": "German", "iso_639_1": "de", "name": "Deutsch" }, - { "english_name": "English", "iso_639_1": "en", "name": "English" } - ], - "status": "Released", - "tagline": "All roads lead to the truth.", - "title": "Retribution", - "video": false, - "vote_average": 6.581, - "vote_count": 136, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 3896, - "known_for_department": "Acting", - "name": "Liam Neeson", - "original_name": "Liam Neeson", - "popularity": 65.164, - "profile_path": "/bboldwqSC6tdw2iL6631c98l2Mn.jpg", - "cast_id": 1, - "character": "Matt Turner", - "credit_id": "5fa991e6c68b690040a4c7c3", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 517103, - "known_for_department": "Acting", - "name": "Noma Dumezweni", - "original_name": "Noma Dumezweni", - "popularity": 13.67, - "profile_path": "/abEWaYTugwH967V8LfptQIMioKQ.jpg", - "cast_id": 14, - "character": "Angela Brickmann", - "credit_id": "6240d5a15f2b8d005da966a8", - "order": 1 - }, - { - "adult": false, - "gender": 1, - "id": 1829985, - "known_for_department": "Acting", - "name": "Lilly Aspell", - "original_name": "Lilly Aspell", - "popularity": 16.413, - "profile_path": "/phfygRDYezltJge7s7UD4M6IMdI.jpg", - "cast_id": 13, - "character": "Emily Turner", - "credit_id": "6240d596c740d90089e80128", - "order": 2 - }, - { - "adult": false, - "gender": 2, - "id": 1895760, - "known_for_department": "Acting", - "name": "Jack Champion", - "original_name": "Jack Champion", - "popularity": 13.867, - "profile_path": "/aYY3C75ZwbQxGSSan9Uft4mGE9w.jpg", - "cast_id": 16, - "character": "Zach Turner", - "credit_id": "6240d5ba0f3655005ff4681c", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 457386, - "known_for_department": "Acting", - "name": "Arian Moayed", - "original_name": "Arian Moayed", - "popularity": 6.513, - "profile_path": "/ApY4Ql2xGnzy8LeWqcntAbEQHiB.jpg", - "cast_id": 10, - "character": "Sylvain", - "credit_id": "6240d5764cbe120048ad8c5b", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 6368, - "known_for_department": "Acting", - "name": "Embeth Davidtz", - "original_name": "Embeth Davidtz", - "popularity": 22.33, - "profile_path": "/nwsdu9lOsKJ5v9RwOCc7kAiuxSO.jpg", - "cast_id": 11, - "character": "Heather Turner", - "credit_id": "6240d580519bbb005b0686e7", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 8654, - "known_for_department": "Acting", - "name": "Matthew Modine", - "original_name": "Matthew Modine", - "popularity": 17.65, - "profile_path": "/z974QEHL12qUvLyk6hlWGAmDgom.jpg", - "cast_id": 12, - "character": "Anders Muller", - "credit_id": "6240d58ac50ad2005cd26d48", - "order": 6 - }, - { - "adult": false, - "gender": 1, - "id": 1270320, - "known_for_department": "Acting", - "name": "Emily Kusche", - "original_name": "Emily Kusche", - "popularity": 22.327, - "profile_path": "/2XNP9PWe11LlI1hmHN42SAOdaGU.jpg", - "cast_id": 15, - "character": "Mila", - "credit_id": "6240d5b00f3655005ff467f9", - "order": 7 - }, - { - "adult": false, - "gender": 1, - "id": 3499962, - "known_for_department": "Acting", - "name": "Luca Márkus", - "original_name": "Luca Márkus", - "popularity": 2.846, - "profile_path": "/cD3LDnwUCQiyVE2TKcIPAwNL8Jf.jpg", - "cast_id": 39, - "character": "Kat", - "credit_id": "64eae8c3c613ce00c9f28bff", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 234776, - "known_for_department": "Acting", - "name": "Bernhard Piesk", - "original_name": "Bernhard Piesk", - "popularity": 0.745, - "profile_path": null, - "cast_id": 40, - "character": "Captain Dregger", - "credit_id": "64eae8ffc613ce012cc5f123", - "order": 9 - }, - { - "adult": false, - "gender": 2, - "id": 84071, - "known_for_department": "Acting", - "name": "Michael S. Ruscheinsky", - "original_name": "Michael S. Ruscheinsky", - "popularity": 0.766, - "profile_path": "/oOceZaoaAYTL9e2MNK3ArtjonY.jpg", - "cast_id": 41, - "character": "Man in the Blue Suit", - "credit_id": "64eae9184581990100992685", - "order": 10 - }, - { - "adult": false, - "gender": 0, - "id": 3482769, - "known_for_department": "Acting", - "name": "Antonije Stankovic", - "original_name": "Antonije Stankovic", - "popularity": 1.4, - "profile_path": null, - "cast_id": 21, - "character": "Young Protestor", - "credit_id": "6240d63f81a7fc008ca3b826", - "order": 11 - }, - { - "adult": false, - "gender": 2, - "id": 145469, - "known_for_department": "Acting", - "name": "Christian Koerner", - "original_name": "Christian Koerner", - "popularity": 1.7, - "profile_path": "/x3QzBFvFIFQNrIu6Pti0DdLkOLE.jpg", - "cast_id": 18, - "character": "BPol Police Officer", - "credit_id": "6240d5d3223a8b005fa26a83", - "order": 12 - }, - { - "adult": false, - "gender": 0, - "id": 4236664, - "known_for_department": "Acting", - "name": "Gerhard Elfers", - "original_name": "Gerhard Elfers", - "popularity": 0.6, - "profile_path": null, - "cast_id": 42, - "character": "Male News Anchor", - "credit_id": "64eae950c3c89100c6837c2a", - "order": 13 - }, - { - "adult": false, - "gender": 0, - "id": 4236665, - "known_for_department": "Acting", - "name": "Tine Gerhäeusser", - "original_name": "Tine Gerhäeusser", - "popularity": 0.6, - "profile_path": null, - "cast_id": 43, - "character": "Female News Anchor", - "credit_id": "64eae96f1feac1011b2e2e62", - "order": 14 - }, - { - "adult": false, - "gender": 2, - "id": 1998990, - "known_for_department": "Acting", - "name": "Peter Miklusz", - "original_name": "Peter Miklusz", - "popularity": 1.4, - "profile_path": "/4mthNIYvN34kqVqKaYlVJWNFbv1.jpg", - "cast_id": 44, - "character": "Press Conference Reporter", - "credit_id": "64eae98a458199013a7eaa69", - "order": 15 - }, - { - "adult": false, - "gender": 2, - "id": 19081, - "known_for_department": "Production", - "name": "Luc Etienne", - "original_name": "Luc Etienne", - "popularity": 2.138, - "profile_path": null, - "cast_id": 45, - "character": "Pils Groger", - "credit_id": "64eae9b65258ae010bda1bfd", - "order": 16 - }, - { - "adult": false, - "gender": 0, - "id": 1104694, - "known_for_department": "Sound", - "name": "Nedy John Cross", - "original_name": "Nedy John Cross", - "popularity": 0.6, - "profile_path": null, - "cast_id": 20, - "character": "Passerby (uncredited)", - "credit_id": "6240d62f81a7fc00472ef0e8", - "order": 17 - }, - { - "adult": false, - "gender": 0, - "id": 3482768, - "known_for_department": "Acting", - "name": "Daniel Grave", - "original_name": "Daniel Grave", - "popularity": 0.6, - "profile_path": null, - "cast_id": 19, - "character": "Male Phone Voice (voice) (uncredited)", - "credit_id": "6240d6179451e7008c901367", - "order": 18 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 3708, - "known_for_department": "Crew", - "name": "Volkhart Buff", - "original_name": "Volkhart Buff", - "popularity": 0.881, - "profile_path": "/42DIfmkfF40PAzVxoV8wj1w3x0l.jpg", - "credit_id": "65043e4263aad2011b2331f8", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 5553, - "known_for_department": "Sound", - "name": "Harry Gregson-Williams", - "original_name": "Harry Gregson-Williams", - "popularity": 6.418, - "profile_path": "/xLuIAM22zCffnzPyKOSRQQYh03C.jpg", - "credit_id": "65043a6cea37e0013a4f137a", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 2, - "id": 6745, - "known_for_department": "Sound", - "name": "Richard Henderson", - "original_name": "Richard Henderson", - "popularity": 0.652, - "profile_path": null, - "credit_id": "650448d1d7dcd200e2feebc6", - "department": "Sound", - "job": "Music Editor" - }, - { - "adult": false, - "gender": 2, - "id": 9349, - "known_for_department": "Sound", - "name": "Dane A. Davis", - "original_name": "Dane A. Davis", - "popularity": 1.234, - "profile_path": "/16RaENd5PxeXs6XE4yrnCPjg4Gz.jpg", - "credit_id": "65044529db4ed6103441487b", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 2, - "id": 9349, - "known_for_department": "Sound", - "name": "Dane A. Davis", - "original_name": "Dane A. Davis", - "popularity": 1.234, - "profile_path": "/16RaENd5PxeXs6XE4yrnCPjg4Gz.jpg", - "credit_id": "6504455de0ca7f00ec8e9d8f", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 2, - "id": 8751, - "known_for_department": "Editing", - "name": "Steve Mirkovich", - "original_name": "Steve Mirkovich", - "popularity": 1.614, - "profile_path": null, - "credit_id": "6240d6af706e56008bd4a122", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 0, - "id": 9440, - "known_for_department": "Sound", - "name": "Christopher Moriana", - "original_name": "Christopher Moriana", - "popularity": 1.218, - "profile_path": null, - "credit_id": "650446aa6a222701372ef145", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 10903, - "known_for_department": "Production", - "name": "Henning Molfenter", - "original_name": "Henning Molfenter", - "popularity": 2.933, - "profile_path": "/ehadQnjTvjsUh3CSd8OQFdEm4iV.jpg", - "credit_id": "65043b8ce0ca7f00ec8e9a4e", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 2, - "id": 10905, - "known_for_department": "Production", - "name": "Charlie Woebcken", - "original_name": "Charlie Woebcken", - "popularity": 1.74, - "profile_path": null, - "credit_id": "65043ba7ea37e000c6393c99", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 2, - "id": 19081, - "known_for_department": "Production", - "name": "Luc Etienne", - "original_name": "Luc Etienne", - "popularity": 2.138, - "profile_path": null, - "credit_id": "65043cd5ffc9de0edf629623", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 19081, - "known_for_department": "Production", - "name": "Luc Etienne", - "original_name": "Luc Etienne", - "popularity": 2.138, - "profile_path": null, - "credit_id": "65043d6adb4ed61032a92964", - "department": "Production", - "job": "Unit Production Manager" - }, - { - "adult": false, - "gender": 1, - "id": 42909, - "known_for_department": "Costume & Make-Up", - "name": "Mona May", - "original_name": "Mona May", - "popularity": 2.024, - "profile_path": "/tvGFgAsywjg11roGj3YW1Ukv0mE.jpg", - "credit_id": "64edd95ce2bca800ff0ff7cf", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 2, - "id": 41671, - "known_for_department": "Directing", - "name": "Nimród Antal", - "original_name": "Nimród Antal", - "popularity": 3.445, - "profile_path": "/x0fSNFKlhcAbbuvFPHPuTSUvOBY.jpg", - "credit_id": "5fa991f141465c0040c3e948", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 0, - "id": 55294, - "known_for_department": "Costume & Make-Up", - "name": "Sandra Leutert", - "original_name": "Sandra Leutert", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65043fe4ea37e0010052846e", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 54528, - "known_for_department": "Writing", - "name": "Alberto Marini", - "original_name": "Alberto Marini", - "popularity": 3.644, - "profile_path": "/f5HQElD4y1YYE9Oblwib2DIh1sm.jpg", - "credit_id": "5fa992a634e152003f7c61ba", - "department": "Writing", - "job": "Original Film Writer" - }, - { - "adult": false, - "gender": 2, - "id": 59521, - "known_for_department": "Directing", - "name": "Jaume Collet-Serra", - "original_name": "Jaume Collet-Serra", - "popularity": 3.637, - "profile_path": "/s1MdlS2wnzfKevPfXK63V1qkwfI.jpg", - "credit_id": "5fa992e481383100419ebe69", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 59528, - "known_for_department": "Camera", - "name": "Flavio Martínez Labiano", - "original_name": "Flavio Martínez Labiano", - "popularity": 1.554, - "profile_path": null, - "credit_id": "65043b1dffc9de0ee00f0c06", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 2, - "id": 62011, - "known_for_department": "Production", - "name": "Andrew Rona", - "original_name": "Andrew Rona", - "popularity": 0.914, - "profile_path": null, - "credit_id": "5fa992c9abf8e20040440e49", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 166235, - "known_for_department": "Sound", - "name": "Andy Hay", - "original_name": "Andy Hay", - "popularity": 0.753, - "profile_path": null, - "credit_id": "650445d16a222700c3b801c0", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 223202, - "known_for_department": "Sound", - "name": "Nick Angel", - "original_name": "Nick Angel", - "popularity": 1.231, - "profile_path": null, - "credit_id": "6240d9b6dd83fa005e0a1428", - "department": "Sound", - "job": "Music Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 223247, - "known_for_department": "Sound", - "name": "Julian Slater", - "original_name": "Julian Slater", - "popularity": 0.864, - "profile_path": null, - "credit_id": "650445b3d7dcd200acb251c5", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 587802, - "known_for_department": "Production", - "name": "Alex Heineman", - "original_name": "Alex Heineman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "5fa992d61b7294003d9536fb", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 967137, - "known_for_department": "Art", - "name": "David Scheunemann", - "original_name": "David Scheunemann", - "popularity": 1.223, - "profile_path": null, - "credit_id": "64edd9455258ae00eaa5d748", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 2, - "id": 967137, - "known_for_department": "Art", - "name": "David Scheunemann", - "original_name": "David Scheunemann", - "popularity": 1.223, - "profile_path": null, - "credit_id": "65043e8fea37e001005283d1", - "department": "Production", - "job": "Associate Producer" - }, - { - "adult": false, - "gender": 0, - "id": 968298, - "known_for_department": "Production", - "name": "Mercedes Gamero", - "original_name": "Mercedes Gamero", - "popularity": 1.213, - "profile_path": null, - "credit_id": "65043c02ea37e0013a4f1405", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 969757, - "known_for_department": "Production", - "name": "Ron Halpern", - "original_name": "Ron Halpern", - "popularity": 5.054, - "profile_path": "/vTDgDF35XMn8eLMpc0XE47eLzuT.jpg", - "credit_id": "65043c4a63aad2011b23311b", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 1034171, - "known_for_department": "Production", - "name": "Emma Lustres", - "original_name": "Emma Lustres", - "popularity": 1.4, - "profile_path": null, - "credit_id": "65043bdfea37e0013a4f13f9", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1089142, - "known_for_department": "Production", - "name": "Christoph Fisser", - "original_name": "Christoph Fisser", - "popularity": 0.778, - "profile_path": "/7URHtynBXlFSJph8a3ZxqPmrL2k.jpg", - "credit_id": "65043b7363aad2013800abf3", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1153031, - "known_for_department": "Camera", - "name": "Adrian Cranage", - "original_name": "Adrian Cranage", - "popularity": 1.008, - "profile_path": null, - "credit_id": "65043ef663aad200e12d26c1", - "department": "Camera", - "job": "\"B\" Camera Operator" - }, - { - "adult": false, - "gender": 2, - "id": 1227175, - "known_for_department": "Sound", - "name": "John Joseph Thomas", - "original_name": "John Joseph Thomas", - "popularity": 2.169, - "profile_path": null, - "credit_id": "650445f2ffc9de0ee00f0ff3", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1320499, - "known_for_department": "Production", - "name": "Juan Solá", - "original_name": "Juan Solá", - "popularity": 0.6, - "profile_path": null, - "credit_id": "5fa992f1e6d3cc00411eeae9", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1324460, - "known_for_department": "Art", - "name": "Ralf Schreck", - "original_name": "Ralf Schreck", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6240d76b99c96400482b65da", - "department": "Art", - "job": "Art Department Manager" - }, - { - "adult": false, - "gender": 2, - "id": 1324460, - "known_for_department": "Art", - "name": "Ralf Schreck", - "original_name": "Ralf Schreck", - "popularity": 0.6, - "profile_path": null, - "credit_id": "650441e1ea37e000e3a533eb", - "department": "Art", - "job": "Supervising Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 1335857, - "known_for_department": "Art", - "name": "Patrick Herzberg", - "original_name": "Patrick Herzberg", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6240d713a097dc005d7d60a9", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 1, - "id": 1338159, - "known_for_department": "Costume & Make-Up", - "name": "Anette Czagany", - "original_name": "Anette Czagany", - "popularity": 1.439, - "profile_path": "/AhszXvG4EH2i9rXi4406QoaFUgD.jpg", - "credit_id": "6240d89481a7fc00472efa6a", - "department": "Costume & Make-Up", - "job": "Costume Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1338239, - "known_for_department": "Sound", - "name": "Nick Roberts", - "original_name": "Nick Roberts", - "popularity": 1.306, - "profile_path": null, - "credit_id": "6504484adb4ed6103857825e", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1377503, - "known_for_department": "Camera", - "name": "Sebastian Meuschel", - "original_name": "Sebastian Meuschel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65043ecc63aad200ab16568f", - "department": "Camera", - "job": "\"A\" Camera Operator" - }, - { - "adult": false, - "gender": 2, - "id": 1391086, - "known_for_department": "Sound", - "name": "André König", - "original_name": "André König", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65044781ffc9de0ee20ae870", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 1, - "id": 1397823, - "known_for_department": "Sound", - "name": "Alyson Dee Moore", - "original_name": "Alyson Dee Moore", - "popularity": 2.827, - "profile_path": null, - "credit_id": "65044688ea37e000ad38c9dd", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1404214, - "known_for_department": "Sound", - "name": "Stephanie Flack", - "original_name": "Stephanie Flack", - "popularity": 1.158, - "profile_path": null, - "credit_id": "6504458cd7dcd20139ccda41", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1407354, - "known_for_department": "Sound", - "name": "Terry Rodman", - "original_name": "Terry Rodman", - "popularity": 1.48, - "profile_path": null, - "credit_id": "6504464ee0ca7f00cbec20b5", - "department": "Sound", - "job": "Foley Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1414517, - "known_for_department": "Editing", - "name": "Ron South", - "original_name": "Ron South", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6240d871c740d90089e80c82", - "department": "Crew", - "job": "Visual Effects Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1446559, - "known_for_department": "Sound", - "name": "Tor McAfee Kingdon", - "original_name": "Tor McAfee Kingdon", - "popularity": 0.828, - "profile_path": null, - "credit_id": "650448a2d7dcd200ffedb6a3", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1448262, - "known_for_department": "Camera", - "name": "Stephan Rabold", - "original_name": "Stephan Rabold", - "popularity": 0.98, - "profile_path": null, - "credit_id": "650443bcffc9de0eded5cfca", - "department": "Camera", - "job": "Still Photographer" - }, - { - "adult": false, - "gender": 0, - "id": 1449988, - "known_for_department": "Visual Effects", - "name": "Roxane Fechner", - "original_name": "Roxane Fechner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6240d823c616ac0091146446", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1449988, - "known_for_department": "Visual Effects", - "name": "Roxane Fechner", - "original_name": "Roxane Fechner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65044959d7dcd200acb25339", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1580667, - "known_for_department": "Visual Effects", - "name": "Uli Nefzer", - "original_name": "Uli Nefzer", - "popularity": 1.735, - "profile_path": null, - "credit_id": "650444026a222700fd223437", - "department": "Visual Effects", - "job": "Special Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1718056, - "known_for_department": "Sound", - "name": "Andrew Rice", - "original_name": "Andrew Rice", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65044888ffc9de0ee3c79eb6", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1760572, - "known_for_department": "Sound", - "name": "Jason Oliver", - "original_name": "Jason Oliver", - "popularity": 1.307, - "profile_path": null, - "credit_id": "65044703ea37e00100528723", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1760573, - "known_for_department": "Sound", - "name": "Darrin Mann", - "original_name": "Darrin Mann", - "popularity": 0.866, - "profile_path": null, - "credit_id": "650446c4d7dcd200c538b4d1", - "department": "Sound", - "job": "Foley Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1761422, - "known_for_department": "Sound", - "name": "Aaron Southerland", - "original_name": "Aaron Southerland", - "popularity": 1.171, - "profile_path": null, - "credit_id": "65044813db4ed6103857824a", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1796072, - "known_for_department": "Directing", - "name": "Scott Kirby", - "original_name": "Scott Kirby", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65043de06a2227011a7ca12c", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 1824830, - "known_for_department": "Production", - "name": "Rori Bergman", - "original_name": "Rori Bergman", - "popularity": 0.786, - "profile_path": null, - "credit_id": "6240d6c1c50ad200883cd7d7", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 0, - "id": 2028784, - "known_for_department": "Directing", - "name": "Silke Engelhardt", - "original_name": "Silke Engelhardt", - "popularity": 0.6, - "profile_path": null, - "credit_id": "650443a0ffc9de0ee178a3ae", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2041319, - "known_for_department": "Editing", - "name": "Mitch Paulson", - "original_name": "Mitch Paulson", - "popularity": 1.506, - "profile_path": null, - "credit_id": "65044921ea37e0013a4f18e5", - "department": "Editing", - "job": "Digital Colorist" - }, - { - "adult": false, - "gender": 0, - "id": 2057969, - "known_for_department": "Production", - "name": "Matteo Canalis Wandel", - "original_name": "Matteo Canalis Wandel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65043dbe63aad200fe2b6715", - "department": "Production", - "job": "Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 2202204, - "known_for_department": "Directing", - "name": "Dennis Becker", - "original_name": "Dennis Becker", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65043dfde0ca7f00cbec1de9", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 2212041, - "known_for_department": "Sound", - "name": "Manuel Vogt", - "original_name": "Manuel Vogt", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65044115ffc9de0ee178a2de", - "department": "Sound", - "job": "Production Sound Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 2225335, - "known_for_department": "Sound", - "name": "David H. Price", - "original_name": "David H. Price", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6504461ee0ca7f014f720cc1", - "department": "Sound", - "job": "Dialogue Editor" - }, - { - "adult": false, - "gender": 0, - "id": 2225335, - "known_for_department": "Sound", - "name": "David H. Price", - "original_name": "David H. Price", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6504462ae0ca7f00ae40ed6a", - "department": "Sound", - "job": "ADR Editor" - }, - { - "adult": false, - "gender": 0, - "id": 2263409, - "known_for_department": "Camera", - "name": "Suza Kohlstedt", - "original_name": "Suza Kohlstedt", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6240d8e24cbe120091ff87b4", - "department": "Costume & Make-Up", - "job": "Costume Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 2575689, - "known_for_department": "Sound", - "name": "Don Hoffman", - "original_name": "Don Hoffman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65044827ea37e000e3a53649", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 2598906, - "known_for_department": "Sound", - "name": "Jackson Milliken", - "original_name": "Jackson Milliken", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6240d7e4a097dc0048d8b258", - "department": "Sound", - "job": "Boom Operator" - }, - { - "adult": false, - "gender": 0, - "id": 2673880, - "known_for_department": "Sound", - "name": "Chris Basta", - "original_name": "Chris Basta", - "popularity": 0.6, - "profile_path": null, - "credit_id": "650447ccea37e0011d091ea4", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 2763378, - "known_for_department": "Costume & Make-Up", - "name": "Anett Weber", - "original_name": "Anett Weber", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65043f91e0ca7f010debb972", - "department": "Costume & Make-Up", - "job": "Key Hair Stylist" - }, - { - "adult": false, - "gender": 0, - "id": 2763378, - "known_for_department": "Costume & Make-Up", - "name": "Anett Weber", - "original_name": "Anett Weber", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65043fa16a222700c3b7ff32", - "department": "Costume & Make-Up", - "job": "Key Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 2849974, - "known_for_department": "Writing", - "name": "Chris Salmanpour", - "original_name": "Chris Salmanpour", - "popularity": 0.63, - "profile_path": null, - "credit_id": "5fa9921a9ac535003fbafaef", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 0, - "id": 2998988, - "known_for_department": "Camera", - "name": "Christopher Ulrich", - "original_name": "Christopher Ulrich", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6504420aea37e000c6393ed6", - "department": "Art", - "job": "Storyboard Artist" - }, - { - "adult": false, - "gender": 0, - "id": 3244749, - "known_for_department": "Crew", - "name": "Shawn Montgomery", - "original_name": "Shawn Montgomery", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65044484db4ed61032a92c0a", - "department": "Crew", - "job": "Post Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 3345289, - "known_for_department": "Art", - "name": "Adorjan Portik", - "original_name": "Adorjan Portik", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6240d72197a4e60047a0e1b9", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 1, - "id": 3401679, - "known_for_department": "Production", - "name": "Anna Marsh", - "original_name": "Anna Marsh", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65043c2eea37e000c6393cc1", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3482772, - "known_for_department": "Production", - "name": "Shanna Eddy", - "original_name": "Shanna Eddy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65043c74e0ca7f012eba6fb8", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3482777, - "known_for_department": "Art", - "name": "Hanna Bowe", - "original_name": "Hanna Bowe", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6240d79f99c964008d096ca5", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 0, - "id": 3482779, - "known_for_department": "Costume & Make-Up", - "name": "Veronica Santos Ruiz", - "original_name": "Veronica Santos Ruiz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6240d8a81cfe3a005cee2789", - "department": "Costume & Make-Up", - "job": "Costumer" - }, - { - "adult": false, - "gender": 0, - "id": 3571875, - "known_for_department": "Sound", - "name": "Lisa Strohbehn", - "original_name": "Lisa Strohbehn", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65044178ffc9de0eded5cef5", - "department": "Sound", - "job": "Boom Operator" - }, - { - "adult": false, - "gender": 2, - "id": 3571885, - "known_for_department": "Lighting", - "name": "Björn L. Hübscher", - "original_name": "Björn L. Hübscher", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65044017d7dcd20139ccd7c5", - "department": "Lighting", - "job": "Gaffer" - }, - { - "adult": false, - "gender": 0, - "id": 4273148, - "known_for_department": "Sound", - "name": "Gero Renner", - "original_name": "Gero Renner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6504419ddb4ed61038578035", - "department": "Sound", - "job": "Boom Operator" - }, - { - "adult": false, - "gender": 0, - "id": 4273155, - "known_for_department": "Production", - "name": "Julia Tiziana Dege", - "original_name": "Julia Tiziana Dege", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6504435cd7dcd200acb250a6", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4273170, - "known_for_department": "Editing", - "name": "Steven Korechoff", - "original_name": "Steven Korechoff", - "popularity": 0.6, - "profile_path": null, - "credit_id": "650444d1ffc9de0ee20ae779", - "department": "Editing", - "job": "Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 4273191, - "known_for_department": "Sound", - "name": "Adrian Guogov", - "original_name": "Adrian Guogov", - "popularity": 0.6, - "profile_path": null, - "credit_id": "650447fae0ca7f010debbc33", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 4273193, - "known_for_department": "Sound", - "name": "Tom Kontor", - "original_name": "Tom Kontor", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6504486f63aad200ab165a7e", - "department": "Sound", - "job": "ADR Mixer" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official UK Trailer", - "key": "Sxyzdo-RBKc", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-06-30T16:43:07.000Z", - "id": "64b002223e2ec800cbd11ace" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official UK Trailer", - "key": "93BklqWfv_I", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-06-28T15:16:49.000Z", - "id": "649cbc70c9dbf900acb9a7e0" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official International Trailer", - "key": "k-9gcV26_eE", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-06-28T15:00:37.000Z", - "id": "649c5979af58cb013969db34" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "jzQn0-WH4WM", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-06-28T15:00:18.000Z", - "id": "649c4b88c3926600c888faf6" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/iiXliCeykkzmJ0Eg9RYJ7F2CWSz.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/rqO1wOmgIxUnK0tkfWPpDD47RsD.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/qVzLQUs4tVuh4mz0KcFL5ufwqRZ.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/q7mYzk6BnPOZKhiEJBKmeHjOwiz.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/tUlUdP04nDWsy372myIHuA2qdNv.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/3JSDgOWEMlBGLLUpqOUtPFkuPjS.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/6Ts85VcmNYJSHuGPA71AsLlD2G5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "pt", - "file_path": "/zDDJkX80evEkuj3qKg6rJHmLRYq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/le4gk0wXt7ufQsrel3gkT0cULrX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "es", - "file_path": "/a98qqec9FM5WkgqFbb2uYdh3FWH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/nholFQ2ljuX4ActryqML8zENAWX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/bsmIhGgTp3I0TQgkhb5T0uSU4Iq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/p532XFlhNa4kA6DojszluzmHaHo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/2Zuqh9gPbgFnM2ZCQTQREOWtr8u.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - } - ], - "logos": [ - { - "aspect_ratio": 10.004, - "height": 492, - "iso_639_1": "en", - "file_path": "/jF5NGickP6QQC40Nu2XJCxECs6C.png", - "vote_average": 0, - "vote_count": 0, - "width": 4922 - }, - { - "aspect_ratio": 10.004, - "height": 492, - "iso_639_1": "en", - "file_path": "/bWVgdbPohBWwi9WQqhzKvVGXBNX.png", - "vote_average": 0, - "vote_count": 0, - "width": 4922 - }, - { - "aspect_ratio": 4.004, - "height": 229, - "iso_639_1": "he", - "file_path": "/qDXq1y9RNuDYMMIbNIZlb4geLu2.png", - "vote_average": 0, - "vote_count": 0, - "width": 917 - }, - { - "aspect_ratio": 3.01, - "height": 1299, - "iso_639_1": "en", - "file_path": "/11bOo2UhQnmbLjTEScMZOpzUJU.png", - "vote_average": 0, - "vote_count": 0, - "width": 3910 - }, - { - "aspect_ratio": 8.454, - "height": 119, - "iso_639_1": "cs", - "file_path": "/8yg3zqI3gWnjgkrawmjDSytKPTS.png", - "vote_average": 0, - "vote_count": 0, - "width": 1006 - }, - { - "aspect_ratio": 13.878, - "height": 90, - "iso_639_1": "es", - "file_path": "/vWiD2q5vPtCbc30TqWmfrCcGlyX.png", - "vote_average": 0, - "vote_count": 0, - "width": 1249 - }, - { - "aspect_ratio": 6.537, - "height": 147, - "iso_639_1": "pt", - "file_path": "/6XGazGSCcUrLQthzlGR6G1SKMwG.png", - "vote_average": 0, - "vote_count": 0, - "width": 961 - }, - { - "aspect_ratio": 9.88, - "height": 267, - "iso_639_1": "pl", - "file_path": "/5zfNJbxvqsnl1gk0oV3u3cDVauM.png", - "vote_average": 0, - "vote_count": 0, - "width": 2638 - }, - { - "aspect_ratio": 8.401, - "height": 279, - "iso_639_1": "lt", - "file_path": "/w1rQqMoLdbvykMt2jaI7hdQxxiW.png", - "vote_average": 0, - "vote_count": 0, - "width": 2344 - }, - { - "aspect_ratio": 11.729, - "height": 218, - "iso_639_1": "sk", - "file_path": "/1H1EyrhGbyWv2n5k0TuGjp7uDgZ.png", - "vote_average": 0, - "vote_count": 0, - "width": 2557 - }, - { - "aspect_ratio": 6.205, - "height": 195, - "iso_639_1": "ja", - "file_path": "/t1BO24q2ZQu6qt9KeH0HyER6RD6.png", - "vote_average": 0, - "vote_count": 0, - "width": 1210 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/oUmmY7QWWn7OhKlcPOnirHJpP1F.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/3K9UR3FMuvJjSKgFsGbOb61MZvc.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ljl70pjLIX1hx3bPyCCbxGj6WPr.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gPpn5nNBHK6P6Hg6WuWNBQAdPoZ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.707, - "height": 2245, - "iso_639_1": "pt", - "file_path": "/yd0iEtqAXseXQgKf9RjmMaPjUPG.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1587 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/2qr6Qvungbtmaj43T5lQ9NNfr2e.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.707, - "height": 1754, - "iso_639_1": "no", - "file_path": "/6rbhUd8g0vcLf9sAwbjLn6lVDl2.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1240 - }, - { - "aspect_ratio": 0.667, - "height": 1527, - "iso_639_1": "sk", - "file_path": "/7aLJPDqp3ssk4cL0K1EMvPRzphz.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1018 - }, - { - "aspect_ratio": 0.696, - "height": 2792, - "iso_639_1": "he", - "file_path": "/iCrw3w9OJuDb6dvn400rlFB5IBr.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1942 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/3aJvYn7PBMBOYkZdD2Rc0gn1Lxd.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ro", - "file_path": "/jrQySypolHkBXhMJf9AZpmLaY4B.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/hAZO3hvLQVjIDW32lxSKmOOl987.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/exDamYewvWdaV1UwY190mDzwnYL.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.668, - "height": 1903, - "iso_639_1": "he", - "file_path": "/6jaN2qGzo72WKzcuye8KWeaWERf.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1272 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/eDnVUyITDPYtfFeviYsVoizviLh.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1600, - "iso_639_1": "de", - "file_path": "/e0HpnKxi6vS0k5qVcwZtkoDBYri.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1067 - }, - { - "aspect_ratio": 0.667, - "height": 1241, - "iso_639_1": "en", - "file_path": "/zhpSG1eyAypRDOZj5VUaG0YLqRE.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 828 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/qWIcqaeIXpToOPf0tS7CDM68eE4.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 500 - }, - { - "aspect_ratio": 0.675, - "height": 2962, - "iso_639_1": "en", - "file_path": "/8otwupYz9ZNzLvhu0xoXSAltPzk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1999 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/hvTOLFVxkV1vymuqYhzOpIjmiqh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/uUcyhxstrwBUT8GkJRtD5qOnvc5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/fKlE4sf3OZOYWdrVgeJxPQiRCgb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/2npBqRxxqRGM5UF6qjjR6Qk6upt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.708, - "height": 848, - "iso_639_1": "no", - "file_path": "/5L7x0RsXXYh9j9iRNT22Xo3DPYS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "hu", - "file_path": "/cPnzcS4k31iS7dwZhjtE7AdwszA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 1360, - "iso_639_1": "sk", - "file_path": "/3cM8fWcpjlGDEia9Fe0tCICBgjF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 907 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/5I6HZQZNovkrf7fxoCDT1FHx1e5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "vi", - "file_path": "/yExuLr9BTOmW6zSC5awsPs4vpSk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "th", - "file_path": "/z0NPyjdx0OLqxc2Do9fxicQVkc3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 889, - "iso_639_1": "ro", - "file_path": "/vN4LGEEZuHitgRIiDgDOnaN4G8y.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 2227, - "iso_639_1": "en", - "file_path": "/znW20OCpk19pyxmans84qAfhP9N.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1485 - }, - { - "aspect_ratio": 0.675, - "height": 2100, - "iso_639_1": "ru", - "file_path": "/eicNwP6U1BLjlyA89qC7X9XQxSi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1418 - }, - { - "aspect_ratio": 0.7, - "height": 1969, - "iso_639_1": "el", - "file_path": "/kn02iPt8ou78YQ6qoHtRswUsGXC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1378 - }, - { - "aspect_ratio": 0.7, - "height": 1969, - "iso_639_1": "el", - "file_path": "/f0aWuUpIT4XIFd2wpM2ESQ6QPii.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1378 - }, - { - "aspect_ratio": 0.7, - "height": 1920, - "iso_639_1": "es", - "file_path": "/vBl0qexSJrQiUTvcXgQpGFUmP7a.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1344 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/2pXX4fandv4Bl8EcIeJHeiMyK6b.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "nl", - "file_path": "/5ET7goLjbXpH7zrnZbnMJKatwCR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1890 - }, - { - "aspect_ratio": 0.7, - "height": 1280, - "iso_639_1": "th", - "file_path": "/aRsxFJMXtcsD6rj6c1caztZ0xTH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 896 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "pl", - "file_path": "/z6SKM8IuP5GIrc2fBLBeCU8zTpg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/mO54jLkgK6XI2U2ZY65EJwHFtna.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/7GCyXXW4ChbmWfft1yZ60sGqcKD.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/omB11SvnMGuYjw7zHfFlToA6DMQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/vpVMMdy8ATscVpu5x71Sy3vZve.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/1QSN6NoEeo0gAZ7Or4wTP8BbILF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/phABA8WgEatcs6qqLZMs9iY6RdD.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/aQVi3XnOZzQ5shiP9OR2ilfjb6j.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/cvWrqNrCeoaqBm2ST5hAP2igngA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.717, - "height": 1350, - "iso_639_1": "pt", - "file_path": "/2WgGG0wCxXzYg5orvge6vfpyYZw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 968 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/sf8bmlofyWyRaaaWC9gR79It8qO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zfB050VdnRjoHDXK8o6sZXotpTq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "tr", - "file_path": "/fmEFVnU7HTDSDqoEpf6Z0yQRz8L.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.695, - "height": 800, - "iso_639_1": "hr", - "file_path": "/7LEp2CwC7GPua7lKaHknKPqhrNJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 556 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/sX1yv40ksEi2LvAOAbgp7iSBtjL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "da", - "file_path": "/ArbKw3DPMicUztCU478CagcbaZ5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/8LB4Aa7aEMiaQ42GGhr7SYQNfyY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6AuktQBFp1nLGMtQCr3BGazmEJE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "fr", - "file_path": "/7zp6fGyfSMrcUFkMookBVvrY8hY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 667 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ja", - "file_path": "/w3CEN9I7eNfs0fcaL6fxzbFLtdI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/820525.json b/examples/view-transitions/src/content/movies/820525.json deleted file mode 100644 index 1d779e980..000000000 --- a/examples/view-transitions/src/content/movies/820525.json +++ /dev/null @@ -1,856 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/jkKVLzLWjSvTnc84VzeljhSy6j8.jpg", - "belongs_to_collection": { - "id": 702624, - "name": "After Collection", - "poster_path": "/250ewaLutOJXqBBqMKxCHD1KpCL.jpg", - "backdrop_path": "/zZTy8G3sEVZNv0yGssgc7DvPUQJ.jpg" - }, - "budget": 14000000, - "genres": [ - { "id": 10749, "name": "Romance" }, - { "id": 18, "name": "Drama" } - ], - "homepage": "", - "id": 820525, - "imdb_id": "tt15334488", - "original_language": "en", - "original_title": "After Everything", - "overview": "Besieged by writer’s block and the crushing breakup with Tessa, Hardin travels to Portugal in search of a woman he wronged in the past – and to find himself. Hoping to win back Tessa, he realizes he needs to change his ways before he can make the ultimate commitment.", - "popularity": 650.272, - "poster_path": "/gZLGCibvFY4zmt8sWUZcbBTHRtk.jpg", - "production_companies": [ - { - "id": 6626, - "logo_path": "/A1BnMoWjzjOrjzpWimyBQkf84mS.png", - "name": "Voltage Pictures", - "origin_country": "US" - }, - { - "id": 107108, - "logo_path": "/5mxc7uNtFOZm2ly0BxixxGPvPlb.png", - "name": "Wattpad", - "origin_country": "US" - } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "2023-09-13", - "revenue": 962741, - "runtime": 93, - "spoken_languages": [ - { "english_name": "English", "iso_639_1": "en", "name": "English" }, - { "english_name": "Portuguese", "iso_639_1": "pt", "name": "Português" } - ], - "status": "Released", - "tagline": "", - "title": "After Everything", - "video": false, - "vote_average": 6.407, - "vote_count": 27, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 1114487, - "known_for_department": "Acting", - "name": "Hero Fiennes Tiffin", - "original_name": "Hero Fiennes Tiffin", - "popularity": 15.891, - "profile_path": "/6zMrrZvOMH6uGwEFoK0Uo8sZvxL.jpg", - "cast_id": 5, - "character": "Hardin Scott", - "credit_id": "60d374f40e64af0046370008", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 1694711, - "known_for_department": "Acting", - "name": "Mimi Keene", - "original_name": "Mimi Keene", - "popularity": 7.403, - "profile_path": "/7bUgfaycm0f6PgEn3eLo8oANByO.jpg", - "cast_id": 24, - "character": "Nathalie", - "credit_id": "6441b4e7651fcf02fb9c2851", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 2849483, - "known_for_department": "Acting", - "name": "Benjamin Mascolo", - "original_name": "Benjamin Mascolo", - "popularity": 4.235, - "profile_path": "/zkKiB05KRFCIQdMVnseQlatMLRq.jpg", - "cast_id": 23, - "character": "Sebastian", - "credit_id": "6441b4cab3f6f5055a9d8f4a", - "order": 2 - }, - { - "adult": false, - "gender": 1, - "id": 20805, - "known_for_department": "Acting", - "name": "Louise Lombard", - "original_name": "Louise Lombard", - "popularity": 17.846, - "profile_path": "/6znYbOI2Z8PfzZ6p9jHG5QdAeb2.jpg", - "cast_id": 22, - "character": "Trish Daniels", - "credit_id": "63a8788e0f21c6007871434e", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 32203, - "known_for_department": "Acting", - "name": "Stephen Moyer", - "original_name": "Stephen Moyer", - "popularity": 12.55, - "profile_path": "/xprwOCXa2cNkjhrGtcJp0VfJMlZ.jpg", - "cast_id": 7, - "character": "Christian Vance", - "credit_id": "63a638291f748b008a0a1614", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 20373, - "known_for_department": "Acting", - "name": "Arielle Kebbel", - "original_name": "Arielle Kebbel", - "popularity": 23.827, - "profile_path": "/dmYiAeWoeVsRdT4UBBGuW9gBfjQ.jpg", - "cast_id": 6, - "character": "Kim Vance", - "credit_id": "63a638191f748b007cc00f2f", - "order": 5 - }, - { - "adult": false, - "gender": 1, - "id": 3009693, - "known_for_department": "Acting", - "name": "Jessica Webber", - "original_name": "Jessica Webber", - "popularity": 1.15, - "profile_path": null, - "cast_id": 20, - "character": "Maddy", - "credit_id": "63a64fa98a84d200b4ce9858", - "order": 6 - }, - { - "adult": false, - "gender": 1, - "id": 3069742, - "known_for_department": "Acting", - "name": "Cora Kirk", - "original_name": "Cora Kirk", - "popularity": 1.404, - "profile_path": "/4av80vVFZSBuKJyzXqEXLE8Vftc.jpg", - "cast_id": 21, - "character": "Freya", - "credit_id": "63a64fb1eb093200a0c1594c", - "order": 7 - }, - { - "adult": false, - "gender": 1, - "id": 2173697, - "known_for_department": "Acting", - "name": "Rosa Escoda", - "original_name": "Rosa Escoda", - "popularity": 4.382, - "profile_path": "/bnGlICypCtpuiKe5mHCnijESI3W.jpg", - "cast_id": 27, - "character": "Kat", - "credit_id": "6503cbc1efea7a00e036e0f1", - "order": 8 - }, - { - "adult": false, - "gender": 1, - "id": 2677100, - "known_for_department": "Acting", - "name": "Ella Martine", - "original_name": "Ella Martine", - "popularity": 0.6, - "profile_path": "/d9uZ2tqibHTno0ZKPUc9FZNXhTn.jpg", - "cast_id": 28, - "character": "Naomi", - "credit_id": "6503cbd7e0ca7f010deb819c", - "order": 9 - }, - { - "adult": false, - "gender": 1, - "id": 2026999, - "known_for_department": "Acting", - "name": "Laura Dutra", - "original_name": "Laura Dutra", - "popularity": 1.8, - "profile_path": "/ipSilYFln0N3UdiL3eboTv8XWS1.jpg", - "cast_id": 29, - "character": "Paloma", - "credit_id": "6503cbedefea7a00aad915a0", - "order": 10 - }, - { - "adult": false, - "gender": 2, - "id": 2035329, - "known_for_department": "Acting", - "name": "Chance Perdomo", - "original_name": "Chance Perdomo", - "popularity": 9.723, - "profile_path": "/xRRDtdHhTewrKMj5cpcmEkPNmuP.jpg", - "cast_id": 30, - "character": "Landon Scott", - "credit_id": "6503cbfed7dcd20139cc9553", - "order": 11 - }, - { - "adult": false, - "gender": 1, - "id": 142115, - "known_for_department": "Acting", - "name": "Kiana Madeira", - "original_name": "Kiana Madeira", - "popularity": 19.805, - "profile_path": "/HgCI95xnSZJaE18d15n7PykOU7.jpg", - "cast_id": 31, - "character": "Nora", - "credit_id": "6503cc206a2227011a7c6353", - "order": 12 - }, - { - "adult": false, - "gender": 2, - "id": 20960, - "known_for_department": "Acting", - "name": "Rob Estes", - "original_name": "Rob Estes", - "popularity": 9.434, - "profile_path": "/b24y5Tv4A8DUjkfYpJ1l1qpkhyv.jpg", - "cast_id": 32, - "character": "Ken Scott", - "credit_id": "6503cc31efea7a0137d3de3b", - "order": 13 - }, - { - "adult": false, - "gender": 1, - "id": 20373, - "known_for_department": "Acting", - "name": "Arielle Kebbel", - "original_name": "Arielle Kebbel", - "popularity": 23.827, - "profile_path": "/dmYiAeWoeVsRdT4UBBGuW9gBfjQ.jpg", - "cast_id": 33, - "character": "Kimberley", - "credit_id": "6503cc596a222700abaa07d9", - "order": 14 - }, - { - "adult": false, - "gender": 2, - "id": 86653, - "known_for_department": "Acting", - "name": "Carter Jenkins", - "original_name": "Carter Jenkins", - "popularity": 5.084, - "profile_path": "/fGVndWC3hgwK1uVrhiyzTUyIaxW.jpg", - "cast_id": 34, - "character": "Robert Freeman", - "credit_id": "6503cc65ffc9de0edf625db1", - "order": 15 - }, - { - "adult": false, - "gender": 0, - "id": 1910292, - "known_for_department": "Acting", - "name": "Ana Ivanova", - "original_name": "Ana Ivanova", - "popularity": 1.307, - "profile_path": "/kT9AL9N1zwi4gksDPdLXGAThbpx.jpg", - "cast_id": 35, - "character": "Emery", - "credit_id": "6503cc95efea7a00c3986356", - "order": 16 - }, - { - "adult": false, - "gender": 2, - "id": 2916706, - "known_for_department": "Acting", - "name": "Anton Kottas", - "original_name": "Anton Kottas", - "popularity": 3.44, - "profile_path": "/trj5wj5Y6Tvj649tbn1a4IG6YfG.jpg", - "cast_id": 36, - "character": "Smith", - "credit_id": "6503cca5ffc9de0ee20aaf80", - "order": 17 - }, - { - "adult": false, - "gender": 1, - "id": 1753914, - "known_for_department": "Acting", - "name": "Josephine Langford", - "original_name": "Josephine Langford", - "popularity": 27.865, - "profile_path": "/8Fj1UIFRJA0B5Zo22KwML5d3Mr3.jpg", - "cast_id": 39, - "character": "Tessa Young", - "credit_id": "650a7334cadb6b00e11f6961", - "order": 18 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 20739, - "known_for_department": "Directing", - "name": "Adam Shankman", - "original_name": "Adam Shankman", - "popularity": 8.011, - "profile_path": "/zZmZgVp5OTU2eSMCDuOXGlQ4fBR.jpg", - "credit_id": "65072f3b42d8a5011bd6f839", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 1, - "id": 20742, - "known_for_department": "Production", - "name": "Jennifer Gibgot", - "original_name": "Jennifer Gibgot", - "popularity": 1.159, - "profile_path": null, - "credit_id": "63a64f171108a800bab73fcd", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 46088, - "known_for_department": "Production", - "name": "Mark Canton", - "original_name": "Mark Canton", - "popularity": 2.299, - "profile_path": "/7OiY4eak3DztX0lSj4cbmKLQuaj.jpg", - "credit_id": "63a64f03907f2600aa7262a1", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 61921, - "known_for_department": "Production", - "name": "Courtney Solomon", - "original_name": "Courtney Solomon", - "popularity": 2.006, - "profile_path": "/xujLAPgpM1JXLqE0X4mWVrPTmqd.jpg", - "credit_id": "63a64f35907f2600da9a63bf", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1031200, - "known_for_department": "Production", - "name": "Nicolas Chartier", - "original_name": "Nicolas Chartier", - "popularity": 1.901, - "profile_path": "/59ptYCph60CtAtLmWuC9dASHhsp.jpg", - "credit_id": "63a64f0d1f748b007cc01cfd", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1179667, - "known_for_department": "Lighting", - "name": "Diego Moyano", - "original_name": "Diego Moyano", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63a64f908a84d200d9c3b03a", - "department": "Lighting", - "job": "Gaffer" - }, - { - "adult": false, - "gender": 1, - "id": 1193192, - "known_for_department": "Production", - "name": "Carolyn McLeod", - "original_name": "Carolyn McLeod", - "popularity": 0.612, - "profile_path": null, - "credit_id": "63a64f7404b596007d427d31", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 1, - "id": 1448492, - "known_for_department": "Directing", - "name": "Castille Landon", - "original_name": "Castille Landon", - "popularity": 5.18, - "profile_path": "/s1oXtmqyG9X0uDfiU5HidPB6BJx.jpg", - "credit_id": "645009ff52dc7f02dddb5ed5", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 0, - "id": 1540619, - "known_for_department": "Camera", - "name": "Joshua Reis", - "original_name": "Joshua Reis", - "popularity": 0.984, - "profile_path": null, - "credit_id": "63a64f681108a800c60a4d19", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 2, - "id": 1551998, - "known_for_department": "Production", - "name": "Brian Pitt", - "original_name": "Brian Pitt", - "popularity": 2.997, - "profile_path": null, - "credit_id": "63a64f2a04b59600918423ea", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1552003, - "known_for_department": "Production", - "name": "David Shojai", - "original_name": "David Shojai", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63a64f592b8a43007dddfc26", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 1, - "id": 1664826, - "known_for_department": "Writing", - "name": "Anna Todd", - "original_name": "Anna Todd", - "popularity": 2.633, - "profile_path": "/b0L0Hicos8ZeEXt96Jf9wDed8FS.jpg", - "credit_id": "6450089f2fccee02e4cebc26", - "department": "Writing", - "job": "Novel" - }, - { - "adult": false, - "gender": 0, - "id": 3032242, - "known_for_department": "Art", - "name": "Alexandra Tibbe", - "original_name": "Alexandra Tibbe", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63a64f812b8a4300b60617fd", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 2, - "id": 3055946, - "known_for_department": "Production", - "name": "Aron Levitz", - "original_name": "Aron Levitz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63a64f211f748b00826608cc", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3216486, - "known_for_department": "Acting", - "name": "Taylor Conrod", - "original_name": "Taylor Conrod", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63a64f4c04b596007d427cfc", - "department": "Production", - "job": "Co-Producer" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "NsmopvKNSE4", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-05-01T12:00:05.000Z", - "id": "64bd958d0ed2ab00c5e3af6a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Hessa (Official Clip)", - "key": "iVg7CDtG3MQ", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-02-14T13:00:28.000Z", - "id": "63ebc244813cb60096aa356a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Teaser", - "key": "zmgbPv7lGrk", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2022-12-23T17:34:00.000Z", - "id": "63c169ee23be4600d960ae6d" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": null, - "file_path": "/jkKVLzLWjSvTnc84VzeljhSy6j8.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/x6y6AHY3UoCeOP6kwZain7WNLPN.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/ol32sTlLzayf7y3KbJrfuQkLmT8.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/jL9pvfEep0houuNFMSEjinBm6Jh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/xZuhDaKDpWDG0sE3Dx6CIR8DeaN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/zg5rp4R3RkGApxWM03jUWJQzXGg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - } - ], - "logos": [ - { - "aspect_ratio": 1.81, - "height": 749, - "iso_639_1": "en", - "file_path": "/r7eYlJVm3OSVBA78Wg3kSUmCKQ7.png", - "vote_average": 0, - "vote_count": 0, - "width": 1356 - }, - { - "aspect_ratio": 1.81, - "height": 749, - "iso_639_1": "en", - "file_path": "/t3wmFD8ghWeP1EEjahgD0MtcPM9.png", - "vote_average": 0, - "vote_count": 0, - "width": 1356 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gZLGCibvFY4zmt8sWUZcbBTHRtk.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/qMPcBNHcgclpl4IUiriSVcyt2Xr.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/jO3VGQi5sHIj2BGS963g1F74yCq.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1020, - "iso_639_1": "sk", - "file_path": "/7q9Q3OFu4E2UwTUnwGTZx79fqgj.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 680 - }, - { - "aspect_ratio": 0.671, - "height": 1176, - "iso_639_1": "ar", - "file_path": "/d0qw9hiNwhRmfw4yAc44pep6vhz.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 789 - }, - { - "aspect_ratio": 0.667, - "height": 2466, - "iso_639_1": "en", - "file_path": "/aJbrGWjOMwguiCSAGBcpoWGgpXf.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1644 - }, - { - "aspect_ratio": 0.667, - "height": 2466, - "iso_639_1": "en", - "file_path": "/uQxjZGU6rxSPSMeAJPJQlmfV3ys.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1644 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/8oibiRBkwSHFDamazdrEB5fWvXN.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/3PqW0elNnj5tk4XD9o82djTknGd.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/zXDnVeyWwvhLYbaQjnei0A6vohx.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6bPnDIGG8RBncFPIUNxM6GAW0Ox.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/v9qWcfkC3nJOASotuFdJ5huqg6l.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1714, - "iso_639_1": "es", - "file_path": "/nm7rgAYCdATbHgm6CjtoSNvON9k.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1143 - }, - { - "aspect_ratio": 0.666, - "height": 2000, - "iso_639_1": "fr", - "file_path": "/brIDXQSf02a09i13xvMDTkRlO7z.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1333 - }, - { - "aspect_ratio": 0.665, - "height": 1351, - "iso_639_1": "pt", - "file_path": "/tRjzdNiFHda6lrXySOQPyY3OtCA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 899 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/mhjf22NsRXY4HKRbaUlfZAt7Swb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gh7JdLfrjewoA00xeMr0ju0PMwd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/moIOvJIdvvwriBiaKTehcmIeOf9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/ao0uyI21djx9uLv6voAjoaetX9O.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "nl", - "file_path": "/z7Yq7vkVts9yeHCTFqIOEJkhJbi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "hr", - "file_path": "/fZog1nBWjNPQtPtoR1AFrmdbuG5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/naMHX4mvqEAM4UbMox0MYYoFaPd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/afPrxdEVh9uoSSIc0RVKMXPRHWm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/stF5ysfzd1X5xMuvOiv5k8rRiX3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/968051.json b/examples/view-transitions/src/content/movies/968051.json deleted file mode 100644 index ec902a7a3..000000000 --- a/examples/view-transitions/src/content/movies/968051.json +++ /dev/null @@ -1,3200 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/53z2fXEKfnNg2uSOPss2unPBGX1.jpg", - "belongs_to_collection": { - "id": 968052, - "name": "The Nun Collection", - "poster_path": "/2RLAPEbafIFG7J8FV9h1lKWNYBU.jpg", - "backdrop_path": "/bKpqH9y3SjovMM3VqzezBbJtuf7.jpg" - }, - "budget": 38500000, - "genres": [ - { "id": 27, "name": "Horror" }, - { "id": 9648, "name": "Mystery" }, - { "id": 53, "name": "Thriller" } - ], - "homepage": "https://www.warnerbros.com/movies/nun2", - "id": 968051, - "imdb_id": "tt10160976", - "original_language": "en", - "original_title": "The Nun II", - "overview": "In 1956 France, a priest is violently murdered, and Sister Irene begins to investigate. She once again comes face-to-face with a powerful evil.", - "popularity": 1296.77, - "poster_path": "/5gzzkR7y3hnY8AD1wXjCnVlHba5.jpg", - "production_companies": [ - { - "id": 12, - "logo_path": "/mevhneWSqbjU22D1MXNd4H9x0r0.png", - "name": "New Line Cinema", - "origin_country": "US" - }, - { - "id": 76907, - "logo_path": "/ygMQtjsKX7BZkCQhQZY82lgnCUO.png", - "name": "Atomic Monster", - "origin_country": "US" - }, - { "id": 11565, "logo_path": null, "name": "The Safran Company", "origin_country": "US" } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "2023-09-06", - "revenue": 162241907, - "runtime": 110, - "spoken_languages": [ - { "english_name": "English", "iso_639_1": "en", "name": "English" }, - { "english_name": "French", "iso_639_1": "fr", "name": "Français" } - ], - "status": "Released", - "tagline": "The greatest evil in the Conjuring universe.", - "title": "The Nun II", - "video": false, - "vote_average": 6.6, - "vote_count": 235, - "credits": { - "cast": [ - { - "adult": false, - "gender": 1, - "id": 527313, - "known_for_department": "Acting", - "name": "Taissa Farmiga", - "original_name": "Taissa Farmiga", - "popularity": 36.679, - "profile_path": "/kC2Movbs6uEF8DdDhvyHizQHuru.jpg", - "cast_id": 12, - "character": "Sister Irene", - "credit_id": "6332c252e329430092ab88b2", - "order": 0 - }, - { - "adult": false, - "gender": 2, - "id": 566080, - "known_for_department": "Acting", - "name": "Jonas Bloquet", - "original_name": "Jonas Bloquet", - "popularity": 20.566, - "profile_path": "/pzQAv6ghx5hc4gSpxHII0oUzqkL.jpg", - "cast_id": 18, - "character": "Maurice Theriault", - "credit_id": "634c350e68b1ea008232a95b", - "order": 1 - }, - { - "adult": false, - "gender": 1, - "id": 1344344, - "known_for_department": "Acting", - "name": "Storm Reid", - "original_name": "Storm Reid", - "popularity": 27.853, - "profile_path": "/wA8cntFil1AuwusEZXLH9o898m1.jpg", - "cast_id": 7, - "character": "Debra", - "credit_id": "632e136b4c1bb0007f3278bb", - "order": 2 - }, - { - "adult": false, - "gender": 1, - "id": 5529, - "known_for_department": "Acting", - "name": "Anna Popplewell", - "original_name": "Anna Popplewell", - "popularity": 26.667, - "profile_path": "/ooYeKc28Ayqo9KW8gOacDXDghVL.jpg", - "cast_id": 19, - "character": "Kate", - "credit_id": "635832fc5ca704007c4b666a", - "order": 3 - }, - { - "adult": false, - "gender": 1, - "id": 87287, - "known_for_department": "Acting", - "name": "Bonnie Aarons", - "original_name": "Bonnie Aarons", - "popularity": 25.357, - "profile_path": "/iEtWuoXKx4ZKbIWwJp1V76Heavy.jpg", - "cast_id": 4, - "character": "The Nun / Valak", - "credit_id": "626952974ccc50004ff8ed87", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 3607815, - "known_for_department": "Acting", - "name": "Katelyn Rose Downey", - "original_name": "Katelyn Rose Downey", - "popularity": 2.697, - "profile_path": "/50mZMR1gxqFNahFA8nahFnvsWQy.jpg", - "cast_id": 20, - "character": "Sophie", - "credit_id": "63583305665408007e0b82ff", - "order": 5 - }, - { - "adult": false, - "gender": 1, - "id": 162413, - "known_for_department": "Acting", - "name": "Suzanne Bertish", - "original_name": "Suzanne Bertish", - "popularity": 5.699, - "profile_path": "/6UEvYDr97XooqCBSXafsRy1KEWw.jpg", - "cast_id": 142, - "character": "Madame Laurent", - "credit_id": "64fc6bc2f85958013a8db0be", - "order": 6 - }, - { - "adult": false, - "gender": 1, - "id": 2490509, - "known_for_department": "Acting", - "name": "Léontine d'Oncieu", - "original_name": "Léontine d'Oncieu", - "popularity": 1.055, - "profile_path": "/cuH7fCQtG2VaDOA7DLl3cVjB9G4.jpg", - "cast_id": 143, - "character": "Simone", - "credit_id": "64fc6bcfdc1cb4011fc47e72", - "order": 7 - }, - { - "adult": false, - "gender": 1, - "id": 4033927, - "known_for_department": "Acting", - "name": "Anouk Darwin Homewood", - "original_name": "Anouk Darwin Homewood", - "popularity": 0.767, - "profile_path": "/uaCycUZotvP8sNIRNLB2tyfJPRs.jpg", - "cast_id": 144, - "character": "Céleste", - "credit_id": "64fc6bdde0ca7f014f6ec838", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 1277975, - "known_for_department": "Acting", - "name": "Peter Hudson", - "original_name": "Peter Hudson", - "popularity": 3.238, - "profile_path": "/gTiHdNw4siCuQlEhfnserILryOz.jpg", - "cast_id": 145, - "character": "Father Ridley", - "credit_id": "64fc6beaf8595800adc97960", - "order": 9 - }, - { - "adult": false, - "gender": 1, - "id": 1068693, - "known_for_department": "Acting", - "name": "Tamar Baruch", - "original_name": "Tamar Baruch", - "popularity": 2.039, - "profile_path": "/uuxxbrknK7LDw93pMRqMRs9Ie2Q.jpg", - "cast_id": 146, - "character": "Sister Amara", - "credit_id": "64fc6bf6dc1cb400b0bb386d", - "order": 10 - }, - { - "adult": false, - "gender": 1, - "id": 20755, - "known_for_department": "Acting", - "name": "Natalia Safran", - "original_name": "Natalia Safran", - "popularity": 5.566, - "profile_path": "/3luVtifpeQvF54jEf6NbK2Oz0dE.jpg", - "cast_id": 147, - "character": "Sister Chloe", - "credit_id": "64fc6c02efea7a0137d09104", - "order": 11 - }, - { - "adult": false, - "gender": 2, - "id": 3405036, - "known_for_department": "Acting", - "name": "Maxime Elias-Menet", - "original_name": "Maxime Elias-Menet", - "popularity": 3.887, - "profile_path": "/acd2QkdeFVQEWDHwgz7JRGE86CW.jpg", - "cast_id": 148, - "character": "Jacques", - "credit_id": "64fc6c0ef8595800adc97973", - "order": 12 - }, - { - "adult": false, - "gender": 2, - "id": 231254, - "known_for_department": "Acting", - "name": "Pascal Aubert", - "original_name": "Pascal Aubert", - "popularity": 1.198, - "profile_path": "/pcJJNgQafPr1rY12o8i9qbg4jVR.jpg", - "cast_id": 149, - "character": "Father Noiret", - "credit_id": "64fc6c19db4ed61032a58792", - "order": 13 - }, - { - "adult": false, - "gender": 1, - "id": 21657, - "known_for_department": "Acting", - "name": "Vera Farmiga", - "original_name": "Vera Farmiga", - "popularity": 25.741, - "profile_path": "/5Vs7huBmTKftwlsc2BPAntyaQYj.jpg", - "cast_id": 171, - "character": "Lorraine Warren", - "credit_id": "64fc6d5fdb4ed61033a049f4", - "order": 14 - }, - { - "adult": false, - "gender": 2, - "id": 17178, - "known_for_department": "Acting", - "name": "Patrick Wilson", - "original_name": "Patrick Wilson", - "popularity": 21.588, - "profile_path": "/tc1ezEfIY8BhCy85svOUDtpBFPt.jpg", - "cast_id": 170, - "character": "Ed Warren", - "credit_id": "64fc6d53e0ca7f014f6ec8c6", - "order": 15 - }, - { - "adult": false, - "gender": 1, - "id": 129167, - "known_for_department": "Acting", - "name": "Alexandra Gentil", - "original_name": "Alexandra Gentil", - "popularity": 0.706, - "profile_path": "/590rfUeccr0q8d5RaZkQebvFkE.jpg", - "cast_id": 150, - "character": "Sister Astrid", - "credit_id": "64fc6c26dc1cb4011fc47e92", - "order": 16 - }, - { - "adult": false, - "gender": 1, - "id": 2049947, - "known_for_department": "Acting", - "name": "Florence Mestais", - "original_name": "Florence Mestais", - "popularity": 0.6, - "profile_path": "/uXi1nfRTHAXbX54norvJc4eQWKq.jpg", - "cast_id": 151, - "character": "Double Demon Nun", - "credit_id": "64fc6c45ffc9de0ee2075f65", - "order": 17 - }, - { - "adult": false, - "gender": 0, - "id": 4262427, - "known_for_department": "Acting", - "name": "Margaux Borel", - "original_name": "Margaux Borel", - "popularity": 0.648, - "profile_path": null, - "cast_id": 152, - "character": "Double Demon Nun", - "credit_id": "64fc6c57ffc9de0edf5eeb18", - "order": 18 - }, - { - "adult": false, - "gender": 0, - "id": 2141215, - "known_for_department": "Acting", - "name": "Viviana Moin", - "original_name": "Viviana Moin", - "popularity": 0.6, - "profile_path": null, - "cast_id": 153, - "character": "Sister Maria", - "credit_id": "64fc6c63efea7a00c394bc71", - "order": 19 - }, - { - "adult": false, - "gender": 0, - "id": 3088850, - "known_for_department": "Acting", - "name": "Renata Palminiello", - "original_name": "Renata Palminiello", - "popularity": 0.6, - "profile_path": null, - "cast_id": 154, - "character": "Sister Pia", - "credit_id": "64fc6c6eefea7a00aad585a1", - "order": 20 - }, - { - "adult": false, - "gender": 0, - "id": 2465638, - "known_for_department": "Acting", - "name": "Fulvia Patrizia Olivieri", - "original_name": "Fulvia Patrizia Olivieri", - "popularity": 1.029, - "profile_path": null, - "cast_id": 155, - "character": "Abbess", - "credit_id": "64fc6c7be0ca7f014f6ec883", - "order": 21 - }, - { - "adult": false, - "gender": 0, - "id": 4262430, - "known_for_department": "Acting", - "name": "Camille Amiel", - "original_name": "Camille Amiel", - "popularity": 0.6, - "profile_path": null, - "cast_id": 156, - "character": "Julie", - "credit_id": "64fc6c87efea7a0137d09145", - "order": 22 - }, - { - "adult": false, - "gender": 0, - "id": 4262432, - "known_for_department": "Acting", - "name": "Margot Morris", - "original_name": "Margot Morris", - "popularity": 0.98, - "profile_path": null, - "cast_id": 157, - "character": "Aurélie", - "credit_id": "64fc6c97f85958013a8db121", - "order": 23 - }, - { - "adult": false, - "gender": 2, - "id": 2436021, - "known_for_department": "Acting", - "name": "Gaël Raës", - "original_name": "Gaël Raës", - "popularity": 0.6, - "profile_path": "/wVn7MmrfqIycdHwFxQlcBGN4Diq.jpg", - "cast_id": 158, - "character": "Cedric the Altar Boy", - "credit_id": "64fc6ca5f8595800adc979ae", - "order": 24 - }, - { - "adult": false, - "gender": 1, - "id": 3589497, - "known_for_department": "Acting", - "name": "Sarah Pachoud", - "original_name": "Sarah Pachoud", - "popularity": 1.4, - "profile_path": null, - "cast_id": 159, - "character": "Emily", - "credit_id": "64fc6caff8595800ff50f8c1", - "order": 25 - }, - { - "adult": false, - "gender": 1, - "id": 2661399, - "known_for_department": "Acting", - "name": "Lieve Carchon", - "original_name": "Lieve Carchon", - "popularity": 0.6, - "profile_path": null, - "cast_id": 160, - "character": "Sister Concetta", - "credit_id": "64fc6cbbdb4ed61038543798", - "order": 26 - }, - { - "adult": false, - "gender": 2, - "id": 133032, - "known_for_department": "Acting", - "name": "David Horovitch", - "original_name": "David Horovitch", - "popularity": 2.368, - "profile_path": "/fehBI7B9QaAq9QlwVmvQqCr9C50.jpg", - "cast_id": 161, - "character": "Cardinal Conroy", - "credit_id": "64fc6cc8f8595800e2b0318c", - "order": 27 - }, - { - "adult": false, - "gender": 2, - "id": 1157588, - "known_for_department": "Acting", - "name": "Paul Spera", - "original_name": "Paul Spera", - "popularity": 4.244, - "profile_path": "/4qlCzGHJ0b0Kh4bTFx9Ofuy8RbT.jpg", - "cast_id": 162, - "character": "Deacon Scott", - "credit_id": "64fc6cd5f8595800adc979ca", - "order": 28 - }, - { - "adult": false, - "gender": 0, - "id": 1912235, - "known_for_department": "Acting", - "name": "Kate Colebrook", - "original_name": "Kate Colebrook", - "popularity": 0.6, - "profile_path": "/pGdoKphw7w3OXX6ojxwK26vukC8.jpg", - "cast_id": 163, - "character": "Irene's Mother / St. Lucy", - "credit_id": "64fc6ce3dc1cb400c8bfd37c", - "order": 29 - }, - { - "adult": false, - "gender": 0, - "id": 4262438, - "known_for_department": "Acting", - "name": "Margot Bernazzi", - "original_name": "Margot Bernazzi", - "popularity": 0.6, - "profile_path": null, - "cast_id": 164, - "character": "Young Irene", - "credit_id": "64fc6cf1dc1cb401028d72a2", - "order": 30 - }, - { - "adult": false, - "gender": 2, - "id": 2312343, - "known_for_department": "Acting", - "name": "Grégory Di Meglio", - "original_name": "Grégory Di Meglio", - "popularity": 1.029, - "profile_path": "/w8lVto9BpK12wRbqyLkIiZduA5a.jpg", - "cast_id": 165, - "character": "Hotel Clerk", - "credit_id": "64fc6cfedb4ed61033a049db", - "order": 31 - }, - { - "adult": false, - "gender": 0, - "id": 3764338, - "known_for_department": "Acting", - "name": "Delcho Koprivshki", - "original_name": "Delcho Koprivshki", - "popularity": 0.6, - "profile_path": "/hCj6OmDOTScO2IAgnqqfK5Lcf3U.jpg", - "cast_id": 166, - "character": "Ethan Rome", - "credit_id": "64fc6d0bdc1cb401028d72b1", - "order": 32 - }, - { - "adult": false, - "gender": 0, - "id": 1768828, - "known_for_department": "Acting", - "name": "Philippe Josserand", - "original_name": "Philippe Josserand", - "popularity": 0.6, - "profile_path": null, - "cast_id": 167, - "character": "Doctor", - "credit_id": "64fc6d16efea7a00e0336274", - "order": 33 - }, - { - "adult": false, - "gender": 0, - "id": 4262442, - "known_for_department": "Acting", - "name": "Aaron-Jon North", - "original_name": "Aaron-Jon North", - "popularity": 0.6, - "profile_path": null, - "cast_id": 168, - "character": "Demon Goat", - "credit_id": "64fc6d24ffc9de0ee00b8c32", - "order": 34 - }, - { - "adult": false, - "gender": 2, - "id": 80823, - "known_for_department": "Sound", - "name": "Andrew Morgado", - "original_name": "Andrew Morgado", - "popularity": 9.997, - "profile_path": "/rDkWTPcsFtw5MQCi1qxSXXZlXG2.jpg", - "cast_id": 169, - "character": "Demonic Voice (voice)", - "credit_id": "64fc6d30ffc9de0ee1750dad", - "order": 35 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 2127, - "known_for_department": "Production", - "name": "James Wan", - "original_name": "James Wan", - "popularity": 16.527, - "profile_path": "/bNJccMIKzCtYnndcOKniSKCzo5Y.jpg", - "credit_id": "6269514912aabc00a6e686e9", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 2127, - "known_for_department": "Production", - "name": "James Wan", - "original_name": "James Wan", - "popularity": 16.527, - "profile_path": "/bNJccMIKzCtYnndcOKniSKCzo5Y.jpg", - "credit_id": "64a6eb240398ab010c549a82", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 2, - "id": 7229, - "known_for_department": "Sound", - "name": "Marco Beltrami", - "original_name": "Marco Beltrami", - "popularity": 3.958, - "profile_path": "/fb3TfFITlOC0BN3kNpUXj1FL0LN.jpg", - "credit_id": "64a6ebe5cae63200af74d2c8", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 2, - "id": 5626, - "known_for_department": "Production", - "name": "Michael Polaire", - "original_name": "Michael Polaire", - "popularity": 1.151, - "profile_path": "/dtx230O5IRXQV1F6BvcijTDlBcm.jpg", - "credit_id": "64a6eb852b531d014584a2ed", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 16370, - "known_for_department": "Crew", - "name": "Jean-Christophe Magnaud", - "original_name": "Jean-Christophe Magnaud", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8900d5d85007b695050", - "department": "Visual Effects", - "job": "Special Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 47790, - "known_for_department": "Art", - "name": "Laurent Usse", - "original_name": "Laurent Usse", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aaf96a2227010c4cf637", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 2, - "id": 52259, - "known_for_department": "Production", - "name": "Peter Safran", - "original_name": "Peter Safran", - "popularity": 4.858, - "profile_path": "/fi7kdDDUdNrn5K6vmLkLrLarQQs.jpg", - "credit_id": "626952cb4ccc5000651df410", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 57430, - "known_for_department": "Production", - "name": "Richard Brener", - "original_name": "Richard Brener", - "popularity": 1.959, - "profile_path": "/i1nFbAKpbtjxBr2vkY5WeYRs250.jpg", - "credit_id": "63462d179bcd0f007d31d9e8", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 967606, - "known_for_department": "Art", - "name": "Stéphane Cressend", - "original_name": "Stéphane Cressend", - "popularity": 1.796, - "profile_path": "/cU2fx2PlRqcQtAWnoFpdoQa1YfA.jpg", - "credit_id": "6419a683e741460086735319", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 2, - "id": 969283, - "known_for_department": "Production", - "name": "Dave Neustadter", - "original_name": "Dave Neustadter", - "popularity": 1.084, - "profile_path": null, - "credit_id": "63462d227a97ab007d571f5f", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 995462, - "known_for_department": "Editing", - "name": "Gregory Plotkin", - "original_name": "Gregory Plotkin", - "popularity": 3.013, - "profile_path": "/sUGMMdWoLobZE4DuaXhLTOPVkby.jpg", - "credit_id": "64a6ebab724de10139c267a5", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1016768, - "known_for_department": "Art", - "name": "Philip Thomas", - "original_name": "Philip Thomas", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab78310325008efe3717", - "department": "Production", - "job": "Assistant Location Manager" - }, - { - "adult": false, - "gender": 0, - "id": 1045531, - "known_for_department": "Costume & Make-Up", - "name": "Véronique Boslé", - "original_name": "Véronique Boslé", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a6c7e74146007c8373d6", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 2, - "id": 1247264, - "known_for_department": "Writing", - "name": "Ian B. Goldberg", - "original_name": "Ian B. Goldberg", - "popularity": 3.896, - "profile_path": "/2NvX1Behd2C8qkhqaJrtAOou5XX.jpg", - "credit_id": "6419a5fe6a2227007d74545c", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 1313064, - "known_for_department": "Art", - "name": "Alexis McKenzie Main", - "original_name": "Alexis McKenzie Main", - "popularity": 0.673, - "profile_path": null, - "credit_id": "6419a68c5690b5007a56090d", - "department": "Art", - "job": "Supervising Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 1324816, - "known_for_department": "Production", - "name": "Rose Wicksteed", - "original_name": "Rose Wicksteed", - "popularity": 0.6, - "profile_path": "/R5ZzAvFzgEtdJkRZLfApOlRvg5.jpg", - "credit_id": "6419a678e7414600b96c7bf7", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 1, - "id": 1327476, - "known_for_department": "Writing", - "name": "Akela Cooper", - "original_name": "Akela Cooper", - "popularity": 5.275, - "profile_path": "/wmcLZ4DV6L1RZ5Jq67w9sbpZtt8.jpg", - "credit_id": "63462ccd9bcd0f008aaf7c51", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 1, - "id": 1327476, - "known_for_department": "Writing", - "name": "Akela Cooper", - "original_name": "Akela Cooper", - "popularity": 5.275, - "profile_path": "/wmcLZ4DV6L1RZ5Jq67w9sbpZtt8.jpg", - "credit_id": "64a6eb1807faa2013b414ee4", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 1338249, - "known_for_department": "Writing", - "name": "Gary Dauberman", - "original_name": "Gary Dauberman", - "popularity": 3.169, - "profile_path": "/utWxbobxeJBRAaohiNIsIQBvuxe.jpg", - "credit_id": "6419a658e74146007c8373b2", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1338249, - "known_for_department": "Writing", - "name": "Gary Dauberman", - "original_name": "Gary Dauberman", - "popularity": 3.169, - "profile_path": "/utWxbobxeJBRAaohiNIsIQBvuxe.jpg", - "credit_id": "64a6eb2b0398ab014edf6b67", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 0, - "id": 1345594, - "known_for_department": "Sound", - "name": "John Marquis", - "original_name": "John Marquis", - "popularity": 0.802, - "profile_path": null, - "credit_id": "64fb7b9bf85958013a8d44cb", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1367797, - "known_for_department": "Art", - "name": "Dominique Moisan", - "original_name": "Dominique Moisan", - "popularity": 0.616, - "profile_path": null, - "credit_id": "6419a6956a222700c6b54830", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1377300, - "known_for_department": "Production", - "name": "Arnaud Kaiser", - "original_name": "Arnaud Kaiser", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7290d5d850083883293", - "department": "Production", - "job": "Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 1377300, - "known_for_department": "Production", - "name": "Arnaud Kaiser", - "original_name": "Arnaud Kaiser", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7395690b5007a560963", - "department": "Production", - "job": "Unit Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 1401569, - "known_for_department": "Visual Effects", - "name": "Sophie Leclerc", - "original_name": "Sophie Leclerc", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a6ebc00398ab014edf6ba6", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1406313, - "known_for_department": "Camera", - "name": "Tristan Nyby", - "original_name": "Tristan Nyby", - "popularity": 0.6, - "profile_path": null, - "credit_id": "634c34691089ba0082f00950", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 0, - "id": 1408301, - "known_for_department": "Sound", - "name": "Jason W. Jennings", - "original_name": "Jason W. Jennings", - "popularity": 1.193, - "profile_path": null, - "credit_id": "64fb7bbcf8595800ff508a22", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1408301, - "known_for_department": "Sound", - "name": "Jason W. Jennings", - "original_name": "Jason W. Jennings", - "popularity": 1.193, - "profile_path": null, - "credit_id": "64fb7bb6f8595800c59aa8ac", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1577908, - "known_for_department": "Camera", - "name": "Sarah Boutin", - "original_name": "Sarah Boutin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9200d5d8500f2d82ff5", - "department": "Directing", - "job": "Second Unit First Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 1586129, - "known_for_department": "Production", - "name": "Anne Fremiot", - "original_name": "Anne Fremiot", - "popularity": 1.314, - "profile_path": null, - "credit_id": "6419a66e3103250086f9ab7a", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 2, - "id": 1607672, - "known_for_department": "Directing", - "name": "Michael Chaves", - "original_name": "Michael Chaves", - "popularity": 4.568, - "profile_path": "/uS8waIEPA4N2llVZO1su1cIo0sW.jpg", - "credit_id": "6269513cfea0d70a2dfc3e16", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 0, - "id": 1616041, - "known_for_department": "Camera", - "name": "Hugues Espinasse", - "original_name": "Hugues Espinasse", - "popularity": 1.007, - "profile_path": null, - "credit_id": "6419a9556a222700e976db48", - "department": "Camera", - "job": "Second Unit Director of Photography" - }, - { - "adult": false, - "gender": 2, - "id": 1630948, - "known_for_department": "Art", - "name": "Emmanuel Delis", - "original_name": "Emmanuel Delis", - "popularity": 1.4, - "profile_path": null, - "credit_id": "6419a6a9e7414600b96c7c08", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 2, - "id": 1661846, - "known_for_department": "Writing", - "name": "Richard Naing", - "original_name": "Richard Naing", - "popularity": 2.068, - "profile_path": null, - "credit_id": "6419a605e004a600a025af26", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 0, - "id": 1677130, - "known_for_department": "Production", - "name": "Xio Farias", - "original_name": "Xio Farias", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a72131032500c5ab2f78", - "department": "Production", - "job": "Production Secretary" - }, - { - "adult": false, - "gender": 2, - "id": 1738865, - "known_for_department": "Sound", - "name": "Erwan Kerzanet", - "original_name": "Erwan Kerzanet", - "popularity": 1.4, - "profile_path": null, - "credit_id": "6419a8806a2227010c4cf574", - "department": "Sound", - "job": "Sound Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1752736, - "known_for_department": "Camera", - "name": "Rémi Quilichini", - "original_name": "Rémi Quilichini", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aa765690b500bb02dee0", - "department": "Camera", - "job": "Steadicam Operator" - }, - { - "adult": false, - "gender": 1, - "id": 1765230, - "known_for_department": "Costume & Make-Up", - "name": "Agnès Beziers", - "original_name": "Agnès Beziers", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a6b35690b500d4026c9d", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 2, - "id": 1800923, - "known_for_department": "Production", - "name": "Michael Clear", - "original_name": "Michael Clear", - "popularity": 1.314, - "profile_path": "/vQGYqmDLHscSp14BKNwUWu3x26l.jpg", - "credit_id": "632ea75add4716008e41999f", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1848723, - "known_for_department": "Production", - "name": "Eric Larsen", - "original_name": "Eric Larsen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9970d5d850083883364", - "department": "Camera", - "job": "Dolly Grip" - }, - { - "adult": false, - "gender": 0, - "id": 1849150, - "known_for_department": "Camera", - "name": "Laurent Schepman", - "original_name": "Laurent Schepman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aad55690b5007a560aa3", - "department": "Camera", - "job": "Best Boy Grip" - }, - { - "adult": false, - "gender": 0, - "id": 1904113, - "known_for_department": "Crew", - "name": "Sébastien Fouassier", - "original_name": "Sébastien Fouassier", - "popularity": 0.6, - "profile_path": "/eYvfuPIrPpJwGH18C4u5QUbcU9Y.jpg", - "credit_id": "6419a8cde004a6007be04871", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 1, - "id": 1940834, - "known_for_department": "Costume & Make-Up", - "name": "Suzel Jouguet", - "original_name": "Suzel Jouguet", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a6cf0d5d85007b694fc8", - "department": "Costume & Make-Up", - "job": "Key Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1959149, - "known_for_department": "Lighting", - "name": "Mathieu Poudevigne", - "original_name": "Mathieu Poudevigne", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aa6c6a222700c6b54961", - "department": "Lighting", - "job": "Electrician" - }, - { - "adult": false, - "gender": 0, - "id": 1993880, - "known_for_department": "Directing", - "name": "Guilhem Malgoire", - "original_name": "Guilhem Malgoire", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a79f310325007c0b4bcd", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 0, - "id": 2004529, - "known_for_department": "Lighting", - "name": "Nicolas Amedeo", - "original_name": "Nicolas Amedeo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8e3e004a600b8a66e39", - "department": "Lighting", - "job": "Rigging Gaffer" - }, - { - "adult": false, - "gender": 0, - "id": 2013658, - "known_for_department": "Camera", - "name": "Matthieu Lornat", - "original_name": "Matthieu Lornat", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9a5e004a600e29fe513", - "department": "Camera", - "job": "Camera Operator" - }, - { - "adult": false, - "gender": 0, - "id": 2013658, - "known_for_department": "Camera", - "name": "Matthieu Lornat", - "original_name": "Matthieu Lornat", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9ae31032500e8a352e8", - "department": "Camera", - "job": "Steadicam Operator" - }, - { - "adult": false, - "gender": 0, - "id": 2025863, - "known_for_department": "Camera", - "name": "Michel Strasser", - "original_name": "Michel Strasser", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aae76a2227010c4cf62d", - "department": "Camera", - "job": "Key Grip" - }, - { - "adult": false, - "gender": 0, - "id": 2069364, - "known_for_department": "Crew", - "name": "Yannick Heuveline", - "original_name": "Yannick Heuveline", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8170d5d8500e0e7c347", - "department": "Crew", - "job": "Carpenter" - }, - { - "adult": false, - "gender": 2, - "id": 2069370, - "known_for_department": "Art", - "name": "Mathias Canard", - "original_name": "Mathias Canard", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a69f6a2227008de93cab", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 2069376, - "known_for_department": "Lighting", - "name": "Pietro Rosso", - "original_name": "Pietro Rosso", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aabf31032500c5ab30c4", - "department": "Lighting", - "job": "Electrician" - }, - { - "adult": false, - "gender": 0, - "id": 2069390, - "known_for_department": "Costume & Make-Up", - "name": "Kay Philips", - "original_name": "Kay Philips", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a6d931032500c5ab2f5a", - "department": "Costume & Make-Up", - "job": "Key Hair Stylist" - }, - { - "adult": false, - "gender": 0, - "id": 2070804, - "known_for_department": "Art", - "name": "Thomas Laporte", - "original_name": "Thomas Laporte", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a856310325010152288e", - "department": "Art", - "job": "Painter" - }, - { - "adult": false, - "gender": 0, - "id": 2083198, - "known_for_department": "Camera", - "name": "Sylvain Bardoux", - "original_name": "Sylvain Bardoux", - "popularity": 1.38, - "profile_path": null, - "credit_id": "6419a8fce7414600821837fd", - "department": "Camera", - "job": "Key Grip" - }, - { - "adult": false, - "gender": 0, - "id": 2128501, - "known_for_department": "Production", - "name": "Sophie Kingston-Smith", - "original_name": "Sophie Kingston-Smith", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab20e7414600821838c8", - "department": "Production", - "job": "Casting Associate" - }, - { - "adult": false, - "gender": 0, - "id": 2132016, - "known_for_department": "Creator", - "name": "Julien Rizzo", - "original_name": "Julien Rizzo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aaabe004a6007be048db", - "department": "Lighting", - "job": "Electrician" - }, - { - "adult": false, - "gender": 0, - "id": 2167752, - "known_for_department": "Art", - "name": "Alexis Imbert", - "original_name": "Alexis Imbert", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8245690b5007a5609b4", - "department": "Art", - "job": "Standby Property Master" - }, - { - "adult": false, - "gender": 2, - "id": 2167758, - "known_for_department": "Lighting", - "name": "Michel Bouquerel", - "original_name": "Michel Bouquerel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a90e6a222700c6b548fb", - "department": "Lighting", - "job": "Gaffer" - }, - { - "adult": false, - "gender": 1, - "id": 2302447, - "known_for_department": "Production", - "name": "Victoria Palmeri", - "original_name": "Victoria Palmeri", - "popularity": 1.036, - "profile_path": null, - "credit_id": "6419a6610d5d85007b694fa3", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2302448, - "known_for_department": "Production", - "name": "Judson Scott", - "original_name": "Judson Scott", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a6eb7207faa200e40bd0a0", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 2413967, - "known_for_department": "Directing", - "name": "Dylan Talleux", - "original_name": "Dylan Talleux", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7cb6a2227008de93d1d", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 2416825, - "known_for_department": "Production", - "name": "Aurélie Avram", - "original_name": "Aurélie Avram", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab0c5690b5010163a4f3", - "department": "Production", - "job": "Casting Associate" - }, - { - "adult": false, - "gender": 2, - "id": 2501018, - "known_for_department": "Art", - "name": "Simon Witte", - "original_name": "Simon Witte", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a86fe004a600b8a66e12", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 2533647, - "known_for_department": "Acting", - "name": "Dimitri Besicovitch", - "original_name": "Dimitri Besicovitch", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8b45690b5010163a46b", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 2624622, - "known_for_department": "Production", - "name": "Frederic Dagmey", - "original_name": "Frederic Dagmey", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7426a222700e976da8a", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 2721718, - "known_for_department": "Camera", - "name": "Sepehr Azadi", - "original_name": "Sepehr Azadi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8f0e7414600821837f7", - "department": "Camera", - "job": "First Assistant \"A\" Camera" - }, - { - "adult": false, - "gender": 2, - "id": 2781650, - "known_for_department": "Directing", - "name": "Melvin Nkosi", - "original_name": "Melvin Nkosi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7ba31032500c5ab2fbe", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 1, - "id": 2797182, - "known_for_department": "Acting", - "name": "Lainey Lipson", - "original_name": "Lainey Lipson", - "popularity": 0.673, - "profile_path": "/kGghpPQp88b8VehiqCLTwam93ay.jpg", - "credit_id": "63462cedcf62cd007b4c4938", - "department": "Production", - "job": "Casting Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 2843772, - "known_for_department": "Sound", - "name": "Marco Peron", - "original_name": "Marco Peron", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8890d5d8500f2d82fc6", - "department": "Sound", - "job": "Boom Operator" - }, - { - "adult": false, - "gender": 0, - "id": 2909410, - "known_for_department": "Lighting", - "name": "Strasser Matteo", - "original_name": "Strasser Matteo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9c65690b50084e1612b", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 2, - "id": 2935827, - "known_for_department": "Camera", - "name": "Antoine Charveriat", - "original_name": "Antoine Charveriat", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a940e7414600b96c7d28", - "department": "Camera", - "job": "First Assistant Camera" - }, - { - "adult": false, - "gender": 0, - "id": 2986307, - "known_for_department": "Acting", - "name": "Félix Armand", - "original_name": "Félix Armand", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a710e004a600a025af8f", - "department": "Production", - "job": "Production Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3026422, - "known_for_department": "Directing", - "name": "Jérémy Debord", - "original_name": "Jérémy Debord", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a74d31032500c5ab2f8c", - "department": "Directing", - "job": "Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 3026422, - "known_for_department": "Directing", - "name": "Jérémy Debord", - "original_name": "Jérémy Debord", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7565690b500a218c453", - "department": "Directing", - "job": "Second Second Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 3032826, - "known_for_department": "Art", - "name": "Roberto DiCamillo", - "original_name": "Roberto DiCamillo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7ece004a600a025afd5", - "department": "Art", - "job": "Construction Buyer" - }, - { - "adult": false, - "gender": 0, - "id": 3041142, - "known_for_department": "Camera", - "name": "Brayan Cadoret", - "original_name": "Brayan Cadoret", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9286a222700c6b54902", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 2, - "id": 3065806, - "known_for_department": "Production", - "name": "Etienne Beck", - "original_name": "Etienne Beck", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab160d5d8500838833db", - "department": "Production", - "job": "Casting Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3078338, - "known_for_department": "Camera", - "name": "Alexandre Monteau", - "original_name": "Alexandre Monteau", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9df0d5d8500ba10d4d8", - "department": "Camera", - "job": "Steadicam Operator" - }, - { - "adult": false, - "gender": 0, - "id": 3078338, - "known_for_department": "Camera", - "name": "Alexandre Monteau", - "original_name": "Alexandre Monteau", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9e7e004a600b8a66e7e", - "department": "Camera", - "job": "\"B\" Camera Operator" - }, - { - "adult": false, - "gender": 0, - "id": 3202772, - "known_for_department": "Camera", - "name": "Quentin Roddier", - "original_name": "Quentin Roddier", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aab55690b500bb02def2", - "department": "Production", - "job": "Data Management Technician" - }, - { - "adult": false, - "gender": 0, - "id": 3206682, - "known_for_department": "Camera", - "name": "Margaux Escourolle", - "original_name": "Margaux Escourolle", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9490d5d850083883346", - "department": "Camera", - "job": "Second Assistant \"B\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3272208, - "known_for_department": "Directing", - "name": "Frank Quatrone", - "original_name": "Frank Quatrone", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab6a0d5d8500838833fd", - "department": "Editing", - "job": "Dailies Operator" - }, - { - "adult": false, - "gender": 0, - "id": 3327442, - "known_for_department": "Camera", - "name": "Andres Gomez Orellana", - "original_name": "Andres Gomez Orellana", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a970310325008efe3674", - "department": "Camera", - "job": "First Assistant \"B\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3409973, - "known_for_department": "Directing", - "name": "Tanya Larcinese", - "original_name": "Tanya Larcinese", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7680d5d8500ba10d413", - "department": "Directing", - "job": "Third Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 3441577, - "known_for_department": "Editing", - "name": "Darren Hallihan", - "original_name": "Darren Hallihan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab4be7414600f7efdee7", - "department": "Editing", - "job": "Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 3492841, - "known_for_department": "Lighting", - "name": "Jean-Charles Etien", - "original_name": "Jean-Charles Etien", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a95d5690b500bb02de99", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 0, - "id": 3492851, - "known_for_department": "Camera", - "name": "Matteo Nira Mancini", - "original_name": "Matteo Nira Mancini", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9f00d5d85007b6950c5", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 0, - "id": 3498414, - "known_for_department": "Art", - "name": "Clément Jolivet", - "original_name": "Clément Jolivet", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a82c5690b500a218c4b2", - "department": "Art", - "job": "Graphic Designer" - }, - { - "adult": false, - "gender": 0, - "id": 3508346, - "known_for_department": "Lighting", - "name": "Yohann Ramsawmy", - "original_name": "Yohann Ramsawmy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aa88e741460086735472", - "department": "Lighting", - "job": "Electrician" - }, - { - "adult": false, - "gender": 0, - "id": 3537644, - "known_for_department": "Art", - "name": "Mark Schons", - "original_name": "Mark Schons", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8660d5d8500e0e7c364", - "department": "Art", - "job": "Concept Artist" - }, - { - "adult": false, - "gender": 0, - "id": 3549147, - "known_for_department": "Production", - "name": "Axel Sorensen", - "original_name": "Axel Sorensen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab8131032500e8a353a3", - "department": "Production", - "job": "Assistant Location Manager" - }, - { - "adult": false, - "gender": 0, - "id": 3549152, - "known_for_department": "Art", - "name": "Chouchane Bakirel", - "original_name": "Chouchane Bakirel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7d66a22270085f15c97", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 3549186, - "known_for_department": "Camera", - "name": "Guillaume Mondin", - "original_name": "Guillaume Mondin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9d0e741460082183832", - "department": "Camera", - "job": "Best Boy Grip" - }, - { - "adult": false, - "gender": 0, - "id": 3609727, - "known_for_department": "Lighting", - "name": "Clément Valette", - "original_name": "Clément Valette", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab02e004a60081abbb02", - "department": "Lighting", - "job": "Best Boy Electric" - }, - { - "adult": false, - "gender": 0, - "id": 3722074, - "known_for_department": "Directing", - "name": "Stephanie Le Jamtel", - "original_name": "Stephanie Le Jamtel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab9f6a2227008de93e5e", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 3771950, - "known_for_department": "Camera", - "name": "Baptiste Marnière", - "original_name": "Baptiste Marnière", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9bde004a600e29fe51d", - "department": "Camera", - "job": "Digital Imaging Technician" - }, - { - "adult": false, - "gender": 0, - "id": 3808993, - "known_for_department": "Sound", - "name": "Lou Jullien", - "original_name": "Lou Jullien", - "popularity": 1.4, - "profile_path": null, - "credit_id": "6419a8785690b5007a5609d2", - "department": "Sound", - "job": "Sound Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3818679, - "known_for_department": "Art", - "name": "Clémence Hamel", - "original_name": "Clémence Hamel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a809e004a60081abba01", - "department": "Art", - "job": "Set Decoration Buyer" - }, - { - "adult": false, - "gender": 0, - "id": 3818687, - "known_for_department": "Crew", - "name": "Andy Deschamps", - "original_name": "Andy Deschamps", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8c4e004a600e29fe4e6", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3834411, - "known_for_department": "Camera", - "name": "Pauline Rey", - "original_name": "Pauline Rey", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aa950d5d8500e0e7c41c", - "department": "Camera", - "job": "Second Assistant \"A\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3932173, - "known_for_department": "Production", - "name": "Wesley Barker", - "original_name": "Wesley Barker", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8a3e004a60081abba46", - "department": "Visual Effects", - "job": "Visual Effects Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 3944287, - "known_for_department": "Crew", - "name": "Josue Daniel Acuña", - "original_name": "Josue Daniel Acuña", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8da6a222700c6b548ec", - "department": "Crew", - "job": "Video Assist Operator" - }, - { - "adult": false, - "gender": 0, - "id": 3971928, - "known_for_department": "Costume & Make-Up", - "name": "Tavares Audrey", - "original_name": "Tavares Audrey", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a6be5690b500d4026cb0", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 0, - "id": 3971929, - "known_for_department": "Costume & Make-Up", - "name": "Audrey Tavares", - "original_name": "Audrey Tavares", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a6f3310325008efe35a8", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 0, - "id": 3971930, - "known_for_department": "Costume & Make-Up", - "name": "Corinne Texier", - "original_name": "Corinne Texier", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a6fbe004a600e29fe443", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 0, - "id": 3971932, - "known_for_department": "Production", - "name": "Nicolas Avrand", - "original_name": "Nicolas Avrand", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7195690b500d4026cdb", - "department": "Production", - "job": "Assistant Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3971934, - "known_for_department": "Directing", - "name": "Manon Grach", - "original_name": "Manon Grach", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7605690b500bb02de16", - "department": "Directing", - "job": "Third Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 3971937, - "known_for_department": "Crew", - "name": "Frechon Marine", - "original_name": "Frechon Marine", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7b1e004a600e29fe485", - "department": "Crew", - "job": "Set Production Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3971938, - "known_for_department": "Crew", - "name": "Jérémie Stachow", - "original_name": "Jérémie Stachow", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7c2e7414600f7efdd8c", - "department": "Crew", - "job": "Set Production Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3971940, - "known_for_department": "Art", - "name": "Sue Elliott", - "original_name": "Sue Elliott", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7ff5690b500a218c4a6", - "department": "Art", - "job": "Art Department Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3971942, - "known_for_department": "Crew", - "name": "Clément Langelin", - "original_name": "Clément Langelin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a834e7414600f7efddc4", - "department": "Crew", - "job": "Carpenter" - }, - { - "adult": false, - "gender": 0, - "id": 3971948, - "known_for_department": "Crew", - "name": "Benjamin Colussi", - "original_name": "Benjamin Colussi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8bd0d5d85008388331e", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3971950, - "known_for_department": "Crew", - "name": "Tau Barut", - "original_name": "Tau Barut", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9060d5d8500f2d82fe8", - "department": "Crew", - "job": "Video Assist Operator" - }, - { - "adult": false, - "gender": 0, - "id": 3971952, - "known_for_department": "Camera", - "name": "Florine Jacquemot", - "original_name": "Florine Jacquemot", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a97b31032500c5ab303c", - "department": "Camera", - "job": "Additional Second Assistant Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3971953, - "known_for_department": "Camera", - "name": "Kevin Kaiser", - "original_name": "Kevin Kaiser", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9836a222700c6b5491d", - "department": "Camera", - "job": "Camera Trainee" - }, - { - "adult": false, - "gender": 0, - "id": 3971956, - "known_for_department": "Directing", - "name": "Sarah Okendo", - "original_name": "Sarah Okendo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aa5d5690b5007a560a79", - "department": "Camera", - "job": "Second Assistant Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3971962, - "known_for_department": "Lighting", - "name": "Benjamin Rigot", - "original_name": "Benjamin Rigot", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aaa1e004a600e29fe55d", - "department": "Lighting", - "job": "Electrician" - }, - { - "adult": false, - "gender": 0, - "id": 3971964, - "known_for_department": "Lighting", - "name": "Dweezil Rotily", - "original_name": "Dweezil Rotily", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aac8e74146008673548c", - "department": "Lighting", - "job": "Electrician" - }, - { - "adult": false, - "gender": 0, - "id": 3971966, - "known_for_department": "Lighting", - "name": "Bastien Semeriva", - "original_name": "Bastien Semeriva", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aadee74146008673549b", - "department": "Lighting", - "job": "Electrician" - }, - { - "adult": false, - "gender": 0, - "id": 3971968, - "known_for_department": "Camera", - "name": "Jérôme Tanguy", - "original_name": "Jérôme Tanguy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aaf05690b5007a560abd", - "department": "Camera", - "job": "Digital Imaging Technician" - }, - { - "adult": false, - "gender": 0, - "id": 3971972, - "known_for_department": "Production", - "name": "Peggy Quetglas", - "original_name": "Peggy Quetglas", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab36e004a600e29fe58f", - "department": "Production", - "job": "Extras Casting Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3971973, - "known_for_department": "Costume & Make-Up", - "name": "Michèle Pezzin", - "original_name": "Michèle Pezzin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab3fe7414600b96c7df2", - "department": "Costume & Make-Up", - "job": "Assistant Costume Designer" - }, - { - "adult": false, - "gender": 0, - "id": 3971975, - "known_for_department": "Editing", - "name": "Jackie Mata", - "original_name": "Jackie Mata", - "popularity": 0.616, - "profile_path": null, - "credit_id": "6419ab610d5d85007b69512c", - "department": "Editing", - "job": "Dailies Manager" - }, - { - "adult": false, - "gender": 0, - "id": 3971976, - "known_for_department": "Crew", - "name": "Serop Cheikhoyan", - "original_name": "Serop Cheikhoyan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab955690b5010163a535", - "department": "Crew", - "job": "Assistant Script" - }, - { - "adult": false, - "gender": 0, - "id": 3971977, - "known_for_department": "Crew", - "name": "Laura Gaubert", - "original_name": "Laura Gaubert", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419abac0d5d8500ba10d559", - "department": "Crew", - "job": "Driver" - }, - { - "adult": false, - "gender": 0, - "id": 4261334, - "known_for_department": "Sound", - "name": "Zach Pino", - "original_name": "Zach Pino", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64fb7baadc1cb401028d03c6", - "department": "Sound", - "job": "Sound Effects Editor" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Film", - "key": "3h8p976zg4E", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-09-05T16:33:00.000Z", - "id": "64f763a04ccc5000fe7da275" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Relic", - "key": "8H1sm8jiXPs", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-28T17:00:04.000Z", - "id": "64ed6319839018013cdbe6ab" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Origins", - "key": "A8qo7QXZr3E", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-15T11:26:35.000Z", - "id": "64e35737076ce843b74de235" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Discover", - "key": "PUHFbO3UMIM", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-15T11:23:03.000Z", - "id": "64e3572f65e0a200e2eff497" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Protect", - "key": "cs4dG8dnc1o", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-15T11:18:54.000Z", - "id": "64e357267ef381209daa3a8c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "QF-oyCwaArU", - "site": "YouTube", - "size": 2160, - "type": "Trailer", - "official": true, - "published_at": "2023-07-06T16:00:29.000Z", - "id": "64a6e83707faa200aea637c1" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/53z2fXEKfnNg2uSOPss2unPBGX1.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/pLm9j7o5InoWaG2tlaQABYR2cAx.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/8Ahp89AbwLu8rmWhR6yhpTt6uTj.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "es", - "file_path": "/rr93BAp18QlukGy3FVt2bGRHPdB.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "es", - "file_path": "/f7VY9NsWGPCg7KihZzKvSLnf5y1.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "es", - "file_path": "/t8x4dQaljECoJg3mWC9pRq9yrCX.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/tzqegi5m05VEFGmUX4Uk9xsSE1P.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 777, - "iso_639_1": null, - "file_path": "/2yjrmdQwYIVWlhCSWD5ZeI7F6zK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1381 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/gRTH1LAj0Uadq9SWaJyOzuvVDta.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1716, - "iso_639_1": null, - "file_path": "/aX3Od8NVLgM7pMYgRpTPkwSrbSC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3051 - }, - { - "aspect_ratio": 1.778, - "height": 1645, - "iso_639_1": null, - "file_path": "/nJBgoHYnxebQRzB5NfejPFDT0xH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2924 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "fr", - "file_path": "/esZIA8xoHv4Qd6RisNCN2fqRqMT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - } - ], - "logos": [ - { - "aspect_ratio": 1.1, - "height": 1500, - "iso_639_1": "en", - "file_path": "/k8RauXaOjYiO7UNTFpAWgkTV4tD.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1650 - }, - { - "aspect_ratio": 1.099, - "height": 1891, - "iso_639_1": "en", - "file_path": "/ocIyH3eMVU1BBajc0YHENjYzqCL.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 2079 - }, - { - "aspect_ratio": 2.664, - "height": 1284, - "iso_639_1": "en", - "file_path": "/flNxNS2Z7kFdjKnrBfQEbazKIJQ.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 3421 - }, - { - "aspect_ratio": 4.123, - "height": 415, - "iso_639_1": "ja", - "file_path": "/xCTgBAH6BPt85VsDU3PHyjiaDXW.png", - "vote_average": 0, - "vote_count": 0, - "width": 1711 - }, - { - "aspect_ratio": 1.789, - "height": 317, - "iso_639_1": "pt", - "file_path": "/vr5vB0xAFlZszGQfSwnDIWMB2hX.png", - "vote_average": 0, - "vote_count": 0, - "width": 567 - }, - { - "aspect_ratio": 1.097, - "height": 371, - "iso_639_1": "en", - "file_path": "/kAZq5gs6fu3gXgJY3kEQm2lEpKz.png", - "vote_average": 0, - "vote_count": 0, - "width": 407 - }, - { - "aspect_ratio": 2.132, - "height": 794, - "iso_639_1": "uk", - "file_path": "/1KB5BxzY8ZzSzZw18e050gzzuXq.png", - "vote_average": 0, - "vote_count": 0, - "width": 1693 - }, - { - "aspect_ratio": 2.132, - "height": 794, - "iso_639_1": "uk", - "file_path": "/gKEpj65Hxm5SlBa3lCPCoKXvxNX.png", - "vote_average": 0, - "vote_count": 0, - "width": 1693 - }, - { - "aspect_ratio": 0.806, - "height": 504, - "iso_639_1": "th", - "file_path": "/5aGYNiniRz3a0ZQChXFgIQ23Evb.png", - "vote_average": 0, - "vote_count": 0, - "width": 406 - }, - { - "aspect_ratio": 4.24, - "height": 416, - "iso_639_1": "fr", - "file_path": "/dYjUCqeTVfsBT9PGXbn3nZrmR9V.png", - "vote_average": 0, - "vote_count": 0, - "width": 1764 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/5gzzkR7y3hnY8AD1wXjCnVlHba5.jpg", - "vote_average": 5.52, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/c9kVD7W8CT5xe4O3hQ7bFWwk68U.jpg", - "vote_average": 5.392, - "vote_count": 8, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/nt5U1MgFcyxCYA6cssNKtnn2FsF.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/mYD7rtnL2s8zkZ9Vuc2HvHrlFsQ.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/dVamZDGzxxItYSJY4W2vp8AwSIk.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/x0ryPlzZjpOojEAuGrre2lFuBv6.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/jv7lyPfBC1heRWtQUd1gX7Q0wSo.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/kR4tDVZpm9kTJnk0kiVr3OJ47nD.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/rhB3QB2dOG11LyeFXV2WtVBJFPz.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/7I5ZXOY7PXF1jdcsuyY4YI1Zq6C.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2046, - "iso_639_1": "en", - "file_path": "/92iJKrkS6rtE07EmUdrISAURbkK.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/2dqmsR7nrEhS6ugIuoxjLoZVR2f.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/ryYhCFdh0gIRoavn0OnihmrMgEx.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/wfsG1HRTgEwJr0GuluPHpIAVzhv.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2000, - "iso_639_1": "es", - "file_path": "/um6pKc6lFQ9uKxv3jTMSr3pa4rN.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1332 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "en", - "file_path": "/xmRtHg6hqMzYCZJPwbY1Kycgi9O.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/lCd2x0g4LgjRayo7XVjavKdeGD3.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cn6kjfbE8jhiBuhanIc2pwuzhG5.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/m2CKUfX9oLX17xnPuastUEElCRf.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/uTgU9N455q4mhrQ8bqVvUS6Hgz.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/vAP6JAQPVW7uzLOLN6n39tzl9oy.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "en", - "file_path": "/kUaAqdmju7AtdOKwyhWNui0LDtp.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/4myk77iGGtSkJmMquc6PtPzFPvD.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/giQpLqhQgDyi48GgBaw9XMmzC7m.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1408, - "iso_639_1": "en", - "file_path": "/uUcfMUoN7SZZxOWhirGazlqu2a.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 939 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/7INzZlAonSpHbeW5ac0tVrObgPQ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/6z1UR6IF5tGG38NhD71kFaSEyWZ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1829, - "iso_639_1": "pt", - "file_path": "/jy7vAOgCWKGteroUmq4XUoUdh78.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/eCoy4u0TiICTJna83n4AXPGdBVo.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/s1yNJwUDK2M2G5mDIKWCkz2IJgO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/wvRQzUPavqVMzkUMfuyI7vO8mve.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/jml5BzRIEfxK7BJxUgEJJvmppM9.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/l3IMa87TprVqIcHJRwCli7Inolc.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/mhlhpyPVeJ4FCoJudrAM4ok0T3e.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/AaeS9cBrMYtlr8IcQHhaUOkP35n.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/5YzDQku9jM4Fd5wuRoVzx8Cmcor.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "hu", - "file_path": "/3WBajxKBrkNhq4FUMAT5f9Ku85W.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "th", - "file_path": "/75w9bfuMPGUum6ZwBZPJLu5jw1j.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ta", - "file_path": "/zlkCnON1ICXD5btmA3vSNELsh0a.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "te", - "file_path": "/lKpHNLYbUs8nvZgQq8MFJCZlVEZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/5WJviL21tA7MBS1S1ugcQLfkyJl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hi", - "file_path": "/m4THNR3OBqLzRWYiJ9JG964CIEB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/uvO8bWeEldYVdzYMjfnqv4glO4t.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "en", - "file_path": "/7dcJ1ekuByoy7w2SPVM2L98BwO1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/7TFcvVvgcJiGAilMmKrdv491pm2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/1HZsMnVOETbr5Di2NylcrlbsV1x.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/wUqeXf2TCeHhJcrZRwFlMThIOWH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2850, - "iso_639_1": "ko", - "file_path": "/hx4R7GqhiUP2LHJZJNrzCIqadd3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ja", - "file_path": "/zITEUNN0p6AO9LlQbbSIaAEJ1nC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "fr", - "file_path": "/hW2dfws0DbGH4tV4k1NM73zlVXY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "ko", - "file_path": "/uw0jRY53ofMThleFnPjs6jQtK0v.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1442, - "iso_639_1": "he", - "file_path": "/1m3c79EvXz0NBbDIf6sRRFDbiHi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1010 - }, - { - "aspect_ratio": 0.676, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/lM6X8CH7ToUcrECDQgeZAO4nOl7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 974 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "en", - "file_path": "/lCmIM8NC5svkoeV88IMHs1tdBjE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.666, - "height": 781, - "iso_639_1": "hr", - "file_path": "/jzmJiysK0G56DDXSyKRtKgBSMgv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 520 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/tPynKTxF9fJrY6cdLS243Cv6TxB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "nl", - "file_path": "/2GjVxzSvnbiSJfa3ia5ZBaJpEea.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/cK4sUhHFPBEOgQIKHSBEiVlTfAP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": null, - "file_path": "/wAEKo6qCBMpMNLaD0mEubrWCMO9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/9n50S0LK2eYL5inv4QeIOazKVzN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.71, - "height": 1080, - "iso_639_1": "cn", - "file_path": "/z7t3QbIVgYsDuAbjFxAeSHeTcYi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 767 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/4VlM5oZkXRGCjB02N5k6vPFVKiV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/5m5bNsISwivv0OeJKmrFc9TmPIR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "pl", - "file_path": "/qaexcKkyyZiYrNXOGPlIE8BuYkm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.666, - "height": 1727, - "iso_639_1": "en", - "file_path": "/adnVir650H1fvhUDY0MUDXG8Poa.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1151 - }, - { - "aspect_ratio": 0.675, - "height": 891, - "iso_639_1": "en", - "file_path": "/3tm3vY5bVNCOa6CSFtsoypby4U0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 601 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/zyQnr5VJGeunI3kzfIryEAieEM3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "en", - "file_path": "/smAIH9YWk6R5oZU8yJZcmjdHoKv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 667 - }, - { - "aspect_ratio": 0.667, - "height": 2360, - "iso_639_1": "en", - "file_path": "/wqbWgrZzCmbFFjQJr7r2iQTBDAc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1573 - }, - { - "aspect_ratio": 0.666, - "height": 2360, - "iso_639_1": "en", - "file_path": "/cSW80G1ov98uwvFzON38vluuMJ1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1572 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "el", - "file_path": "/gSDhPT5wZVhYR2xJdf8kAac9ymj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 2857, - "iso_639_1": "el", - "file_path": "/1GW5pAfLEHgar7EpZ9ybEIY8Xr3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/eFQ5ParCSFfTPWOXmKMpSz9eDrd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/kuViaoEt8kc92zI0XfklGHBVFiS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.711, - "height": 2736, - "iso_639_1": "cn", - "file_path": "/u003Ln4EkGPxvXD75eX5gcycHWr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1944 - }, - { - "aspect_ratio": 0.67, - "height": 2048, - "iso_639_1": "th", - "file_path": "/1SjlohPIj68A5qIbGWaw6kkhfOc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1373 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/weHldBTt0faPhXmfQ0FOVaDoZA2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/zjLawAhdX8z1Yx3Qy8Qn0bHv956.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/976573.json b/examples/view-transitions/src/content/movies/976573.json deleted file mode 100644 index 5044dfc2e..000000000 --- a/examples/view-transitions/src/content/movies/976573.json +++ /dev/null @@ -1,5005 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/4fLZUr1e65hKPPVw0R3PmKFKxj1.jpg", - "belongs_to_collection": null, - "budget": 200000000, - "genres": [ - { "id": 16, "name": "Animation" }, - { "id": 35, "name": "Comedy" }, - { "id": 10751, "name": "Family" }, - { "id": 14, "name": "Fantasy" }, - { "id": 10749, "name": "Romance" } - ], - "homepage": "https://movies.disney.com/elemental", - "id": 976573, - "imdb_id": "tt15789038", - "original_language": "en", - "original_title": "Elemental", - "overview": "In a city where fire, water, land and air residents live together, a fiery young woman and a go-with-the-flow guy will discover something elemental: how much they have in common.", - "popularity": 953.333, - "poster_path": "/4Y1WNkd88JXmGfhtWR7dmDAo1T2.jpg", - "production_companies": [ - { - "id": 2, - "logo_path": "/wdrCwmRnLFJhEoH8GSfymY85KHT.png", - "name": "Walt Disney Pictures", - "origin_country": "US" - }, - { - "id": 3, - "logo_path": "/1TjvGVDMYsj6JBxOAkUHpPEwLf7.png", - "name": "Pixar", - "origin_country": "US" - } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "2023-06-14", - "revenue": 484822015, - "runtime": 102, - "spoken_languages": [{ "english_name": "English", "iso_639_1": "en", "name": "English" }], - "status": "Released", - "tagline": "Opposites react.", - "title": "Elemental", - "video": false, - "vote_average": 7.784, - "vote_count": 2195, - "credits": { - "cast": [ - { - "adult": false, - "gender": 1, - "id": 1087262, - "known_for_department": "Acting", - "name": "Leah Lewis", - "original_name": "Leah Lewis", - "popularity": 14.34, - "profile_path": "/liV9OXUeo7T19hhjFlqTELtETnW.jpg", - "cast_id": 5, - "character": "Ember Lumen (voice)", - "credit_id": "631bd27f65e0a200893de33e", - "order": 0 - }, - { - "adult": false, - "gender": 2, - "id": 1639848, - "known_for_department": "Acting", - "name": "Mamoudou Athie", - "original_name": "Mamoudou Athie", - "popularity": 12.726, - "profile_path": "/iPx1s7EuBEmty7MXdKSBpEBsGYT.jpg", - "cast_id": 4, - "character": "Wade Ripple (voice)", - "credit_id": "631bd276c4f55200917b06c8", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 1236458, - "known_for_department": "Art", - "name": "Ronnie del Carmen", - "original_name": "Ronnie del Carmen", - "popularity": 2.327, - "profile_path": "/lPCmkQK76DOgkmcRjg9394QPyAu.jpg", - "cast_id": 8, - "character": "Bernie Lumen (voice)", - "credit_id": "6422e2c208cf8700fd8803ad", - "order": 2 - }, - { - "adult": false, - "gender": 1, - "id": 2073564, - "known_for_department": "Acting", - "name": "Shila Ommi", - "original_name": "Shila Ommi", - "popularity": 3.791, - "profile_path": "/i9m2RGrANNxidj0bVKlSs0zHPNX.jpg", - "cast_id": 9, - "character": "Cinder Lumen (voice)", - "credit_id": "6422e2cc2dc9dc00fd1c88f9", - "order": 3 - }, - { - "adult": false, - "gender": 1, - "id": 63234, - "known_for_department": "Acting", - "name": "Wendi McLendon-Covey", - "original_name": "Wendi McLendon-Covey", - "popularity": 12.283, - "profile_path": "/bXDG1QhUwnWa9621rOf1dO3OKoC.jpg", - "cast_id": 10, - "character": "Gale (voice)", - "credit_id": "6422e2db8d22fc00a9df0a59", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 11514, - "known_for_department": "Acting", - "name": "Catherine O'Hara", - "original_name": "Catherine O'Hara", - "popularity": 15.077, - "profile_path": "/cMBxHeztNVc8YXKcj084Mdd3f3U.jpg", - "cast_id": 11, - "character": "Brook Ripple (voice)", - "credit_id": "6422e2e78d22fc007c009b88", - "order": 5 - }, - { - "adult": false, - "gender": 0, - "id": 3983226, - "known_for_department": "Acting", - "name": "Mason Wertheimer", - "original_name": "Mason Wertheimer", - "popularity": 3.306, - "profile_path": "/rhXmrh7dWkCAj23MhGfI79jcbjN.jpg", - "cast_id": 12, - "character": "Clod (voice)", - "credit_id": "6422e3062dc9dc007f0e3b33", - "order": 6 - }, - { - "adult": false, - "gender": 2, - "id": 1217619, - "known_for_department": "Acting", - "name": "Ronobir Lahiri", - "original_name": "Ronobir Lahiri", - "popularity": 2.719, - "profile_path": "/uZQu5zBGxE62uGP7qaGhjQ79bn3.jpg", - "cast_id": 42, - "character": "Harold (voice)", - "credit_id": "646e200051e6ab011db530ee", - "order": 7 - }, - { - "adult": false, - "gender": 1, - "id": 1576334, - "known_for_department": "Acting", - "name": "Wilma Bonet", - "original_name": "Wilma Bonet", - "popularity": 1.4, - "profile_path": null, - "cast_id": 43, - "character": "Flarrietta (voice)", - "credit_id": "646e200b51e6ab013ab9f0ae", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 1663974, - "known_for_department": "Acting", - "name": "Joe Pera", - "original_name": "Joe Pera", - "popularity": 2.467, - "profile_path": "/lzf1mnclmHo4y53ZpvtlkWgFunZ.jpg", - "cast_id": 13, - "character": "Fern (voice)", - "credit_id": "6422e31c6a3448007bb6b578", - "order": 9 - }, - { - "adult": false, - "gender": 2, - "id": 157067, - "known_for_department": "Acting", - "name": "Matthew Yang King", - "original_name": "Matthew Yang King", - "popularity": 4.618, - "profile_path": "/jcLJIw0s2uP4PSnH5E8oM3pUyiV.jpg", - "cast_id": 44, - "character": "Alan / Lutz / Earth Pruner (voice)", - "credit_id": "646e201ea5046e01894367ac", - "order": 10 - }, - { - "adult": false, - "gender": 0, - "id": 4078463, - "known_for_department": "Acting", - "name": "Clara Lin Ding", - "original_name": "Clara Lin Ding", - "popularity": 0.656, - "profile_path": null, - "cast_id": 45, - "character": "Little Kid Ember (voice)", - "credit_id": "646e2033d185720120831482", - "order": 11 - }, - { - "adult": false, - "gender": 0, - "id": 1937823, - "known_for_department": "Acting", - "name": "Reagan To", - "original_name": "Reagan To", - "popularity": 0.6, - "profile_path": null, - "cast_id": 46, - "character": "Big Kid Ember (voice)", - "credit_id": "646e20459661fc013a27f748", - "order": 12 - }, - { - "adult": false, - "gender": 0, - "id": 4078465, - "known_for_department": "Acting", - "name": "Jeff Lapensee", - "original_name": "Jeff Lapensee", - "popularity": 0.6, - "profile_path": null, - "cast_id": 47, - "character": "Sparkler Customer (voice)", - "credit_id": "646e205fa5046e01058d8c73", - "order": 13 - }, - { - "adult": false, - "gender": 0, - "id": 1997753, - "known_for_department": "Editing", - "name": "Ben Morris", - "original_name": "Ben Morris", - "popularity": 0.6, - "profile_path": null, - "cast_id": 48, - "character": "Wood Immigration Official (voice)", - "credit_id": "646e2079c3514c2b0a34790f", - "order": 14 - }, - { - "adult": false, - "gender": 1, - "id": 1211955, - "known_for_department": "Acting", - "name": "Alex Kapp", - "original_name": "Alex Kapp", - "popularity": 3.454, - "profile_path": "/qpVxC6GgYaTg6iyPWV93u0i4JKK.jpg", - "cast_id": 50, - "character": "Customer / Delivery Person / Earth Landlord (voice)", - "credit_id": "646e20ab54a0980138664c86", - "order": 15 - }, - { - "adult": false, - "gender": 2, - "id": 1906860, - "known_for_department": "Acting", - "name": "P.L. Brown", - "original_name": "P.L. Brown", - "popularity": 3.662, - "profile_path": "/6sH4laBWYn3rPg6BQSe5mDYJBSe.jpg", - "cast_id": 51, - "character": "Doorman (voice)", - "credit_id": "646e20bad1857200e5a64f16", - "order": 16 - }, - { - "adult": false, - "gender": 2, - "id": 13477, - "known_for_department": "Acting", - "name": "Jonathan Adams", - "original_name": "Jonathan Adams", - "popularity": 10.731, - "profile_path": "/mkgyl2MciZ14wsYi6zedyj6hnR8.jpg", - "cast_id": 111, - "character": "Flarry (voice)", - "credit_id": "64f4248677d23b00cb877cab", - "order": 17 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 153, - "known_for_department": "Sound", - "name": "Thomas Newman", - "original_name": "Thomas Newman", - "popularity": 2.063, - "profile_path": "/j8rIiOSdBjtDL5vji8m5BtChZou.jpg", - "credit_id": "63e2cbf6af85de0081c88304", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 2, - "id": 153, - "known_for_department": "Sound", - "name": "Thomas Newman", - "original_name": "Thomas Newman", - "popularity": 2.063, - "profile_path": "/j8rIiOSdBjtDL5vji8m5BtChZou.jpg", - "credit_id": "646e1f4a54a09800e4118be8", - "department": "Sound", - "job": "Conductor" - }, - { - "adult": false, - "gender": 2, - "id": 7763, - "known_for_department": "Sound", - "name": "Ren Klyce", - "original_name": "Ren Klyce", - "popularity": 3.325, - "profile_path": "/tMDHEVa05pe3od1NMpfplPVPnxD.jpg", - "credit_id": "646e1f8451e6ab0157da103d", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 2, - "id": 7763, - "known_for_department": "Sound", - "name": "Ren Klyce", - "original_name": "Ren Klyce", - "popularity": 3.325, - "profile_path": "/tMDHEVa05pe3od1NMpfplPVPnxD.jpg", - "credit_id": "6497e84a62f33500e912a0df", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 2, - "id": 7883, - "known_for_department": "Art", - "name": "Ralph Eggleston", - "original_name": "Ralph Eggleston", - "popularity": 3.289, - "profile_path": "/28ZxW5tHMuWYK8T3I0xLfVAF9yw.jpg", - "credit_id": "64330bfd4539d000777db36e", - "department": "Crew", - "job": "In Memory Of" - }, - { - "adult": false, - "gender": 0, - "id": 7894, - "known_for_department": "Lighting", - "name": "Jean-Claude Kalache", - "original_name": "Jean-Claude Kalache", - "popularity": 1.163, - "profile_path": null, - "credit_id": "64528d4ad8f44e0dadf42523", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 0, - "id": 8053, - "known_for_department": "Visual Effects", - "name": "Michael Venturini", - "original_name": "Michael Venturini", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6452a147d48cee0136d8c791", - "department": "Visual Effects", - "job": "Animation Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 8056, - "known_for_department": "Visual Effects", - "name": "Kureha Yokoo", - "original_name": "Kureha Yokoo", - "popularity": 1.4, - "profile_path": "/iVAzdPsvxhMNM6ISWOBAcLqiHlE.jpg", - "credit_id": "6452a15287a27a01723c2c29", - "department": "Visual Effects", - "job": "Animation Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 12890, - "known_for_department": "Writing", - "name": "Pete Docter", - "original_name": "Pete Docter", - "popularity": 9.002, - "profile_path": "/xz46mHzo8apkVMxmrkMQvqakOL0.jpg", - "credit_id": "628271dff5c82400a5677988", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 21198, - "known_for_department": "Acting", - "name": "Peter Sohn", - "original_name": "Peter Sohn", - "popularity": 14.023, - "profile_path": "/8cQGViF2lXlcsAIvFUMWboXYXIu.jpg", - "credit_id": "62825bad8d77c40066cc3365", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 21198, - "known_for_department": "Acting", - "name": "Peter Sohn", - "original_name": "Peter Sohn", - "popularity": 14.023, - "profile_path": "/8cQGViF2lXlcsAIvFUMWboXYXIu.jpg", - "credit_id": "6422e3b42dc9dc00bf5a2100", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 57673, - "known_for_department": "Production", - "name": "Kevin Reher", - "original_name": "Kevin Reher", - "popularity": 3.556, - "profile_path": null, - "credit_id": "6486164e028f140101622e9c", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 2, - "id": 59363, - "known_for_department": "Editing", - "name": "Stephen Schaffer", - "original_name": "Stephen Schaffer", - "popularity": 1.373, - "profile_path": "/mGfsTkl4JziyG8Qohv3l0ThzKkM.jpg", - "credit_id": "64528cebc0442900e2f0e14a", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 60279, - "known_for_department": "Acting", - "name": "Fred Tatasciore", - "original_name": "Fred Tatasciore", - "popularity": 12.065, - "profile_path": "/busoEz4khUJ0hOoKHexjXwGrsit.jpg", - "credit_id": "648da9acc2ff3d00c599c222", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 2, - "id": 113916, - "known_for_department": "Acting", - "name": "Scott Menville", - "original_name": "Scott Menville", - "popularity": 8.078, - "profile_path": "/eI5OhQUfeTgcrikz1cfFhVNhs5u.jpg", - "credit_id": "648da99bc3c891014ebd76ad", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 1, - "id": 94820, - "known_for_department": "Acting", - "name": "Jessica DiCicco", - "original_name": "Jessica DiCicco", - "popularity": 5.301, - "profile_path": "/7I9Ma8iV7KyiH7enKWquu7tGgah.jpg", - "credit_id": "648da91726346200ca19ec9c", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 1, - "id": 116315, - "known_for_department": "Acting", - "name": "Kari Wahlgren", - "original_name": "Kari Wahlgren", - "popularity": 6.414, - "profile_path": "/olk68V9rMrJPdXLQvvLRIGRS7tU.jpg", - "credit_id": "648da9ce42bf01013bbcb647", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 2, - "id": 117824, - "known_for_department": "Acting", - "name": "Assaf Cohen", - "original_name": "Assaf Cohen", - "popularity": 3.932, - "profile_path": "/aoYndszi7wKCWNJr2R8j6Elw55A.jpg", - "credit_id": "648da90f42bf0100ae312335", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 1, - "id": 186605, - "known_for_department": "Production", - "name": "Terri Douglas", - "original_name": "Terri Douglas", - "popularity": 3.775, - "profile_path": "/6yRCc5oKalchZuRvVJJbEDNmLEd.jpg", - "credit_id": "648da91d42bf01013bbcb61d", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 0, - "id": 225985, - "known_for_department": "Writing", - "name": "Raymond Wong", - "original_name": "Raymond Wong", - "popularity": 0.727, - "profile_path": null, - "credit_id": "6497e6d4b3440900ad52ba21", - "department": "Visual Effects", - "job": "Modelling Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 958055, - "known_for_department": "Writing", - "name": "Jason Katz", - "original_name": "Jason Katz", - "popularity": 0.811, - "profile_path": null, - "credit_id": "64528d67c044290185712f6c", - "department": "Writing", - "job": "Story Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 963497, - "known_for_department": "Production", - "name": "Natalie Lyon", - "original_name": "Natalie Lyon", - "popularity": 3.175, - "profile_path": null, - "credit_id": "64914b33559d220139bf76a9", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 1, - "id": 970529, - "known_for_department": "Visual Effects", - "name": "Denise Ream", - "original_name": "Denise Ream", - "popularity": 3.821, - "profile_path": null, - "credit_id": "62825bbb031a1d14ad4e18a3", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 1, - "id": 1103533, - "known_for_department": "Acting", - "name": "Alisha Mullally", - "original_name": "Alisha Mullally", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648da9a4559d2200ff109be4", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 0, - "id": 1212954, - "known_for_department": "Writing", - "name": "Kat Likkel", - "original_name": "Kat Likkel", - "popularity": 1.097, - "profile_path": null, - "credit_id": "6422e3548d22fc00a9df0a86", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 0, - "id": 1212954, - "known_for_department": "Writing", - "name": "Kat Likkel", - "original_name": "Kat Likkel", - "popularity": 1.097, - "profile_path": null, - "credit_id": "6422e3696a34480086269425", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 1217803, - "known_for_department": "Acting", - "name": "Arif S. Kinchen", - "original_name": "Arif S. Kinchen", - "popularity": 1.274, - "profile_path": "/rY16iqdy5lJIyEMoL941NdzUlEr.jpg", - "credit_id": "648da978559d2200ff109bd7", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 2, - "id": 1218983, - "known_for_department": "Writing", - "name": "Don Shank", - "original_name": "Don Shank", - "popularity": 2.343, - "profile_path": null, - "credit_id": "642314106a3448008626aaa8", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 0, - "id": 1219225, - "known_for_department": "Writing", - "name": "John Hoberg", - "original_name": "John Hoberg", - "popularity": 1.046, - "profile_path": null, - "credit_id": "6422e3496a344800ef311f22", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 0, - "id": 1219225, - "known_for_department": "Writing", - "name": "John Hoberg", - "original_name": "John Hoberg", - "popularity": 1.046, - "profile_path": null, - "credit_id": "6422e3638d22fc007c009bac", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 0, - "id": 1222181, - "known_for_department": "Writing", - "name": "Brenda Hsueh", - "original_name": "Brenda Hsueh", - "popularity": 1.654, - "profile_path": null, - "credit_id": "6422e35b2dc9dc007c07857f", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 0, - "id": 1222181, - "known_for_department": "Writing", - "name": "Brenda Hsueh", - "original_name": "Brenda Hsueh", - "popularity": 1.654, - "profile_path": null, - "credit_id": "6422e37008cf8700a015e9b2", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 1, - "id": 1451088, - "known_for_department": "Acting", - "name": "Karen Huie", - "original_name": "Karen Huie", - "popularity": 4.101, - "profile_path": "/aJfKOnA80bfgLEh9oacjdGIq6Or.jpg", - "credit_id": "648da96f2f8d09011d23c2aa", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 2, - "id": 1512665, - "known_for_department": "Sound", - "name": "Heikki Kossi", - "original_name": "Heikki Kossi", - "popularity": 2.855, - "profile_path": "/6VipnMFz9whg3WKRGld7KJDGTlo.jpg", - "credit_id": "64a850a866a0d300c66d5b42", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1645150, - "known_for_department": "Crew", - "name": "Matt Walker", - "original_name": "Matt Walker", - "popularity": 0.638, - "profile_path": null, - "credit_id": "6497e8c16f43ec00ac3b426c", - "department": "Crew", - "job": "Executive Music Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1694608, - "known_for_department": "Lighting", - "name": "Luke Martorelli", - "original_name": "Luke Martorelli", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e76a62f33500e912a07e", - "department": "Lighting", - "job": "Lighting Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1742712, - "known_for_department": "Editing", - "name": "Thomas Gonzales", - "original_name": "Thomas Gonzales", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646e1efea5046e00e5b86c21", - "department": "Crew", - "job": "In Memory Of" - }, - { - "adult": false, - "gender": 0, - "id": 1806625, - "known_for_department": "Visual Effects", - "name": "Austin Madison", - "original_name": "Austin Madison", - "popularity": 1.506, - "profile_path": null, - "credit_id": "648da9852f8d09011d23c2b0", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 0, - "id": 1976191, - "known_for_department": "Sound", - "name": "Coya Elliott", - "original_name": "Coya Elliott", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e841bbd0b001066eda66", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1993267, - "known_for_department": "Visual Effects", - "name": "Stephen Marshall", - "original_name": "Stephen Marshall", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6423147d53466100aa0159c5", - "department": "Visual Effects", - "job": "Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1993271, - "known_for_department": "Visual Effects", - "name": "Jon Reisch", - "original_name": "Jon Reisch", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646e1fb933a3760175d4e6b4", - "department": "Visual Effects", - "job": "Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1993327, - "known_for_department": "Crew", - "name": "Sanjay Bakshi", - "original_name": "Sanjay Bakshi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6423145c2dc9dc00fd1c9d32", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1993343, - "known_for_department": "Visual Effects", - "name": "Jacob Brooks", - "original_name": "Jacob Brooks", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e8e9b3440900c54f4623", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 1993360, - "known_for_department": "Visual Effects", - "name": "Cathleen Carmean", - "original_name": "Cathleen Carmean", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e576955c6500ac8943e2", - "department": "Visual Effects", - "job": "Animation Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 1993614, - "known_for_department": "Visual Effects", - "name": "Amber Rudolph", - "original_name": "Amber Rudolph", - "popularity": 0.802, - "profile_path": null, - "credit_id": "646e1f0aa5046e012469e818", - "department": "Crew", - "job": "In Memory Of" - }, - { - "adult": false, - "gender": 0, - "id": 1993615, - "known_for_department": "Visual Effects", - "name": "Allison Rutland", - "original_name": "Allison Rutland", - "popularity": 0.652, - "profile_path": null, - "credit_id": "6423149323be4600c0f6f062", - "department": "Visual Effects", - "job": "Animation Director" - }, - { - "adult": false, - "gender": 0, - "id": 1995030, - "known_for_department": "Directing", - "name": "Jahkeeli Garnett", - "original_name": "Jahkeeli Garnett", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e62d6f43ec00ffa2a98a", - "department": "Visual Effects", - "job": "Layout Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1997753, - "known_for_department": "Editing", - "name": "Ben Morris", - "original_name": "Ben Morris", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e61b62f3350127468483", - "department": "Editing", - "job": "First Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1998989, - "known_for_department": "Visual Effects", - "name": "Dave Strick", - "original_name": "Dave Strick", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e682bbd0b000c8a327a9", - "department": "Visual Effects", - "job": "Character Modelling Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 2001859, - "known_for_department": "Lighting", - "name": "Amy Rae Jones", - "original_name": "Amy Rae Jones", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e7606f6a9900e5d2f31e", - "department": "Lighting", - "job": "Lighting Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2008327, - "known_for_department": "Production", - "name": "David Juan Bianchi", - "original_name": "David Juan Bianchi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64528d3a87a27a00e38efbee", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 0, - "id": 2134663, - "known_for_department": "Visual Effects", - "name": "Cari Reiche", - "original_name": "Cari Reiche", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e55562f335014628e1fc", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2147612, - "known_for_department": "Sound", - "name": "Shinnosuke Miyazawa", - "original_name": "Shinnosuke Miyazawa", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e87a62f3350108188037", - "department": "Sound", - "job": "Music Editor" - }, - { - "adult": false, - "gender": 2, - "id": 2172384, - "known_for_department": "Acting", - "name": "Cole Massie", - "original_name": "Cole Massie", - "popularity": 0.674, - "profile_path": null, - "credit_id": "648da98f559d2200ff109bdc", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 0, - "id": 2492290, - "known_for_department": "Acting", - "name": "Secunda Wood", - "original_name": "Secunda Wood", - "popularity": 2.063, - "profile_path": "/kQ8PehWzNbD6J6emTvl6gl8IXAB.jpg", - "credit_id": "648da9d4c2ff3d011cb92f05", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 0, - "id": 2648999, - "known_for_department": "Directing", - "name": "Cara Brody", - "original_name": "Cara Brody", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e5646f6a990102fbb226", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2754590, - "known_for_department": "Acting", - "name": "Innocent Ekakitie", - "original_name": "Innocent Ekakitie", - "popularity": 2.193, - "profile_path": "/8jm0JECrAwXHHj7lpIs8kLGE5hQ.jpg", - "credit_id": "648da9462f8d0900c6658622", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 2, - "id": 2827641, - "known_for_department": "Writing", - "name": "Le Tang", - "original_name": "Le Tang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e5f762f3350108187f16", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 1, - "id": 2998024, - "known_for_department": "Acting", - "name": "Maya Tuttle", - "original_name": "Maya Tuttle", - "popularity": 0.805, - "profile_path": "/5hoy9xjZftmC9Q3Jzl5QCglGs29.jpg", - "credit_id": "648da9c42f8d090100a9f20e", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 1, - "id": 3106557, - "known_for_department": "Visual Effects", - "name": "Rebecca Euphrat", - "original_name": "Rebecca Euphrat", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e7e7eb79c200c56dc96b", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 3222733, - "known_for_department": "Acting", - "name": "Heather Eisner", - "original_name": "Heather Eisner", - "popularity": 0.687, - "profile_path": null, - "credit_id": "6497e810b3440900e2721562", - "department": "Crew", - "job": "Post Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 3242711, - "known_for_department": "Directing", - "name": "McKenna Jean Harris", - "original_name": "McKenna Jean Harris", - "popularity": 0.605, - "profile_path": null, - "credit_id": "6497e5d6eb79c200ad71b58e", - "department": "Production", - "job": "Associate Producer" - }, - { - "adult": false, - "gender": 1, - "id": 3463962, - "known_for_department": "Production", - "name": "Lexi Diamond", - "original_name": "Lexi Diamond", - "popularity": 1.4, - "profile_path": null, - "credit_id": "648da9ecc2ff3d00e2e00072", - "department": "Sound", - "job": "ADR Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4078461, - "known_for_department": "Crew", - "name": "J. Garett Sheldrew", - "original_name": "J. Garett Sheldrew", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646e1f2133a37600e67cb11e", - "department": "Crew", - "job": "In Memory Of" - }, - { - "adult": false, - "gender": 0, - "id": 4107452, - "known_for_department": "Acting", - "name": "Dylan Buccieri", - "original_name": "Dylan Buccieri", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648da90642bf01013bbcb613", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 3, - "id": 4107463, - "known_for_department": "Sound", - "name": "Kai Ava Hauser", - "original_name": "Kai Ava Hauser", - "popularity": 0.65, - "profile_path": null, - "credit_id": "648da9612f8d09013af9b2bb", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 0, - "id": 4107470, - "known_for_department": "Acting", - "name": "Krysta Gonzales", - "original_name": "Krysta Gonzales", - "popularity": 0.98, - "profile_path": null, - "credit_id": "648da95342bf0100e49e4842", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 0, - "id": 4129966, - "known_for_department": "Visual Effects", - "name": "John Legrande", - "original_name": "John Legrande", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e65eeb79c200ad71b5cf", - "department": "Visual Effects", - "job": "Animation Technical Director" - }, - { - "adult": false, - "gender": 0, - "id": 4129973, - "known_for_department": "Visual Effects", - "name": "Arnold Moon", - "original_name": "Arnold Moon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e73e6f43ec00e27de13d", - "department": "Visual Effects", - "job": "Animation Technical Director" - }, - { - "adult": false, - "gender": 0, - "id": 4129974, - "known_for_department": "Crew", - "name": "Kevin Chun", - "original_name": "Kevin Chun", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e92abbd0b000c8a328d2", - "department": "Crew", - "job": "Thanks" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"Steal the Show” Lofi", - "key": "_JUxMulBL38", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-09-15T16:30:12.000Z", - "id": "65048719c92c5d00e1f35f9d" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Date Announce", - "key": "UQeTCD-VD2Y", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-09-06T13:00:20.000Z", - "id": "64f87a955f2b8d011b50229e" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "We Love You Lutz", - "key": "PeWnAFeqMUA", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-07-10T17:00:13.000Z", - "id": "64ac3c4fb686b9012f87f9a2" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"Can You Handle The Fire?\" Taste Testing with the Cast", - "key": "XYZ_IK0u3CA", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-16T23:51:55.000Z", - "id": "648d1873263462012d499ee7" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Our Blue Flame", - "key": "Ei4wseRRJhc", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-06-15T20:00:06.000Z", - "id": "648b6e69c2ff3d00ffb9c40b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Audiences Love Elemental", - "key": "oQXWstFunY8", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-15T17:12:54.000Z", - "id": "648b4f9b559d2200ad80c8ac" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Booth To Screen", - "key": "fo0zlG-JTeA", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-14T16:17:48.000Z", - "id": "6489f1e8e375c00139c28ab6" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "You’re So Hot", - "key": "FScosIMfGsc", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-06-13T19:00:06.000Z", - "id": "6488c6acbf31f2505f404a9b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "An Act Of Clod", - "key": "wK3sO7CXdbI", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-06-08T19:00:20.000Z", - "id": "64823602e375c000c5265497" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Welcome to Element City", - "key": "rOsIzCzquV8", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-01T16:00:37.000Z", - "id": "6478c907e323f300e52357d4" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Inspect This", - "key": "9ERyopFh-dw", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-05-31T17:00:09.000Z", - "id": "647793ea93828e013375f599" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Living The Dream", - "key": "1r6tLt_O03s", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-05-30T19:00:02.000Z", - "id": "64764fe289d97f00f8fd7d01" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Iconic Pixar Moments", - "key": "Xpi8S0T2Arc", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-30T16:00:31.000Z", - "id": "6476568c12c60400e1dc2428" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Check This Out", - "key": "dyVDYAm_j68", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-05-26T22:51:37.000Z", - "id": "6471463d8813e401452c8b7f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Tickets on Sale!", - "key": "hwugg2r7k08", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-16T16:00:24.000Z", - "id": "6463ad9cef8b3201388829bf" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "hXzcyx9V0xw", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-03-28T12:44:23.000Z", - "id": "6422e1562dc9dc00fd1c8872" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Teaser Trailer", - "key": "-cT495xKvvs", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2022-11-17T17:00:00.000Z", - "id": "63766cb511c066008e9a2fa6" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/4fLZUr1e65hKPPVw0R3PmKFKxj1.jpg", - "vote_average": 5.454, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "fr", - "file_path": "/kzU4HuQ1yKGYdZbpGHdpjwo10G5.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "cs", - "file_path": "/hj4Xi0tFhbN54Npd1yOsXHyUoy4.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/8HZT9JXCprrXjf77Yjh6VTIiEor.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/pA4sNvcohTNPx3AhEEeIu8gSt7h.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/jZIYaISP3GBSrVOPfrp98AMa8Ng.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/5luaIi1lLzLfgl8oywifeUtPN6W.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/6YInbRTk39ckuLYFmUgBCKcKNjb.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/uahy4sZXrrYNrQBU7FZEWJAXiZm.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/o5T8u07SuztDpWwpgU35VysAqlG.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/cSYLX73WskxCgvpN3MtRkYUSj1T.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/it7yPSgca2VEJyXAqgjfaccgvJm.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/2celgjkPY0ycr7HxtheQTTwdLW0.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/f2ral8b5FoWsXyFbQ7928ZPjUm3.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1079, - "iso_639_1": null, - "file_path": "/7Yuf6j6N76SfqRWqT0I0ZUjICc2.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 1918 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/pLNUaEOQNstCfgxBNaN7fu4z04U.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/wVfnJX7FfUis4Yl6eIgTnYycrGb.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/yOgzoRxMqyUfxMThZ5NXDBH9Obb.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/mT34XU2nNf2gstoSmJFB7WI93iQ.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/4ItNuKoX11wcY67U3JRiIwX0u9W.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/95213P17xY5GOSpsnKJmFkv89Bh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/rKSqsDXrgXpi1S9XjMRvIOLiJxd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1620, - "iso_639_1": null, - "file_path": "/3ITCZ2ABMg1Q4P9mtVAf6TsWoT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2880 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/ng3uBX60zLPpllBNLHpDTqMPYb8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/5kBlfIHfhOgsacNQI7RaB08RW1E.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/cXaMNKDkm7IrW7YArS8zcdQqcHc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/g4sqdrKghWRWjioW6XysNg6AG6C.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/hRzt4DmGkJadpIS8rzqoZWR070Y.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/tO64XG1UfjkqmGlMojH2z4t8t6D.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/vOAnS1i8TkADVhIIVnx6uarjcX4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/5IhdBpPx0e4baiLvBlHsx3uw8qn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/2zmV7pgmmfAwh9SMS1c4DzCBsdc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": null, - "file_path": "/eftHAcvhovhhvNoApJGPwiLK0zT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/8WtPVt4q5q2k0O9lGS6LzKoLEEK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/kWwY3zdFCopkAE64bHasTq2OtU6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "no", - "file_path": "/p0TdSWDUURD4GQQZZDoT4WNB3zC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/fopU1jsb9ybkm7FGTED8j9Zox9d.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/5iXL4zpLXIF5V3nS1EZCoXQn6OV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/vnrsBGzc5CBdWRsdLz0dVMVgxL2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/d7zh6MbwQlDVL3IoxD3qln6hbcO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/yvZ0kQpnpu9XNuSGDWxEu7BvRXo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "fr", - "file_path": "/c8UvZzpp01cYo0AcMAtutVG9YsI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "cs", - "file_path": "/tFUljdm67wN0i3z8FbADQWjszg8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "fr", - "file_path": "/t8KNSD2xsAn2PfBW744mRKy6kKs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/9L4z42qd6WKVCBVNZ7Q1Q54be4o.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/sY4HUzutXLnkwUoQ0z8Xq5o4bBG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/p6tWKKOvXoIF8A1NZHxmXi6yfTb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/bFa4AxkPhLyXhmU3A7ZlXAxOWbj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/1QOlBdM1CkaRGSJuBTCBaxoC08f.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "uk", - "file_path": "/hXzi7zBoxoS7ZV9PCPZXxAKNJxC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/uvFYUfBpCDS505jYllR6kA9ju49.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/b6jydzjHwK29UUlSVuPrpgU7VMw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/fKWLcnVCHOKR4g52vYiJpbsV6In.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/6TTPe30gxh4nPW8RSVHnqLgw6qa.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/a3XKvRQHGOojh6v4gQieRsNAhT1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "sv", - "file_path": "/9g5Tb3rX9pkn3GWRWKFpueABfJs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/67kvbJTMhqneAfRHbukdjAKuS76.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "he", - "file_path": "/oucDPLfA0IxU6r0Lk1EwS1EExqP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1511, - "iso_639_1": null, - "file_path": "/zjuvu5WsGfSvHxMxb9yagDQV6zg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2686 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/qSwnjm4HGLbh7KCexCnCt6MsHu.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/h1uIbuF6BKQ0GDOwYNHxR19nxCW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - } - ], - "logos": [ - { - "aspect_ratio": 3.175, - "height": 604, - "iso_639_1": "cs", - "file_path": "/od69jdlhmXkLoi3SweiPJY5DV2J.png", - "vote_average": 5.384, - "vote_count": 2, - "width": 1918 - }, - { - "aspect_ratio": 3.396, - "height": 583, - "iso_639_1": "zh", - "file_path": "/h5t5PkUyhqDzQ7MLta6N5U8M2jr.png", - "vote_average": 5.318, - "vote_count": 3, - "width": 1980 - }, - { - "aspect_ratio": 3.182, - "height": 1293, - "iso_639_1": "en", - "file_path": "/aYT1V9U0LjgCosicUA3oLnFF53x.png", - "vote_average": 5.318, - "vote_count": 3, - "width": 4114 - }, - { - "aspect_ratio": 2.035, - "height": 825, - "iso_639_1": "hu", - "file_path": "/zjZvAJVZYHr3sZCMKd8WhcGlCDP.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1679 - }, - { - "aspect_ratio": 4.374, - "height": 438, - "iso_639_1": "sv", - "file_path": "/3vJD8PkVqmZ6IW64pl6CwKP2uB7.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1916 - }, - { - "aspect_ratio": 3.421, - "height": 363, - "iso_639_1": "fr", - "file_path": "/tVwqWGE16eqPkHEwCnJsOoeZRZR.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1242 - }, - { - "aspect_ratio": 2.527, - "height": 759, - "iso_639_1": "ko", - "file_path": "/6obzRPBy3N0ABigvyY38k0lmaI3.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1918 - }, - { - "aspect_ratio": 2.553, - "height": 751, - "iso_639_1": "he", - "file_path": "/npSZUI8kfCgi09GzOCCYiniGYQP.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1917 - }, - { - "aspect_ratio": 3.193, - "height": 1299, - "iso_639_1": "ar", - "file_path": "/qrsSB3NsWi2dI7HeEAyxndXvl7e.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 4148 - }, - { - "aspect_ratio": 1.826, - "height": 1299, - "iso_639_1": "uk", - "file_path": "/dEIaLNmEo9pfx3Qfl0DW8YxjZvZ.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 2372 - }, - { - "aspect_ratio": 3.207, - "height": 598, - "iso_639_1": "en", - "file_path": "/vDXknbhhOheny2clNUWxQm5vCmN.png", - "vote_average": 5.252, - "vote_count": 4, - "width": 1918 - }, - { - "aspect_ratio": 1.594, - "height": 1360, - "iso_639_1": "hu", - "file_path": "/AuwqAoDdzhyn3pR1TBSfaCf7Z1K.png", - "vote_average": 5.246, - "vote_count": 2, - "width": 2168 - }, - { - "aspect_ratio": 3.19, - "height": 621, - "iso_639_1": "zh", - "file_path": "/cMBLxetK20Dl5k5i8Xivh3HTV7G.png", - "vote_average": 5.246, - "vote_count": 2, - "width": 1981 - }, - { - "aspect_ratio": 3.204, - "height": 2497, - "iso_639_1": "en", - "file_path": "/AbD1RP742UYVGG1qpEM5jjgcQ9F.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 8000 - }, - { - "aspect_ratio": 2.386, - "height": 70, - "iso_639_1": "uk", - "file_path": "/7X0dIVpPpOWBCJdn2aNCBAU3MTn.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 167 - }, - { - "aspect_ratio": 2.385, - "height": 838, - "iso_639_1": "uk", - "file_path": "/cBrS89dZrDW1zN9wc3iqYHi5ovc.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1999 - }, - { - "aspect_ratio": 2.382, - "height": 280, - "iso_639_1": "uk", - "file_path": "/nOPMxjReqenUU5S9taAZooCMvFN.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 667 - }, - { - "aspect_ratio": 2.804, - "height": 393, - "iso_639_1": "zh", - "file_path": "/hKrFFQtmCqBGPVkSBFnDZ9OW6JB.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1102 - }, - { - "aspect_ratio": 3.421, - "height": 363, - "iso_639_1": "fr", - "file_path": "/m8IKHb6faPT9SrT8D2KU7fXaWVL.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1242 - }, - { - "aspect_ratio": 3.182, - "height": 1293, - "iso_639_1": "en", - "file_path": "/60q7W37nnnUPTNBEnKdsMiLrvxA.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 4114 - }, - { - "aspect_ratio": 3.844, - "height": 473, - "iso_639_1": "ru", - "file_path": "/smXoa38j7ZHFNCLFkBDdJgMrf39.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1818 - }, - { - "aspect_ratio": 2.395, - "height": 527, - "iso_639_1": "uk", - "file_path": "/qsZvtTYUdIDOP46R8RCHDbxEooe.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1262 - }, - { - "aspect_ratio": 3.204, - "height": 2497, - "iso_639_1": "en", - "file_path": "/1fXpDJdWr6RG0nIccYJkoB1DIfL.png", - "vote_average": 0, - "vote_count": 0, - "width": 8000 - }, - { - "aspect_ratio": 3.207, - "height": 598, - "iso_639_1": "en", - "file_path": "/bgTqhZVf5MW4wwOrHA82GUdN0JM.png", - "vote_average": 0, - "vote_count": 0, - "width": 1918 - }, - { - "aspect_ratio": 2.382, - "height": 280, - "iso_639_1": "uk", - "file_path": "/hG34FFXsaCgAL1zTuvOvSixjWDI.png", - "vote_average": 0, - "vote_count": 0, - "width": 667 - }, - { - "aspect_ratio": 2.382, - "height": 280, - "iso_639_1": "uk", - "file_path": "/4NndJI7Sae5Gl4Koz7yrRxp3xvx.png", - "vote_average": 0, - "vote_count": 0, - "width": 667 - }, - { - "aspect_ratio": 3.207, - "height": 598, - "iso_639_1": "en", - "file_path": "/bVXH9cfIcxTOnkaSyasA8BhYr8G.png", - "vote_average": 0, - "vote_count": 0, - "width": 1918 - }, - { - "aspect_ratio": 2.548, - "height": 157, - "iso_639_1": "he", - "file_path": "/x8PWRrt2U5SKNSMFYzhqGErjvBp.png", - "vote_average": 0, - "vote_count": 0, - "width": 400 - }, - { - "aspect_ratio": 3.461, - "height": 180, - "iso_639_1": "he", - "file_path": "/2bc5xxxofGkywvaNCQTe7whw2Fj.png", - "vote_average": 0, - "vote_count": 0, - "width": 623 - }, - { - "aspect_ratio": 3.309, - "height": 907, - "iso_639_1": "es", - "file_path": "/glC1AWkQFUwCRQVIQY8hCAV9vkM.png", - "vote_average": 0, - "vote_count": 0, - "width": 3001 - }, - { - "aspect_ratio": 1.565, - "height": 170, - "iso_639_1": "hu", - "file_path": "/sn8813X6gebuhizR0dc4xXI3OgL.png", - "vote_average": 0, - "vote_count": 0, - "width": 266 - }, - { - "aspect_ratio": 2.68, - "height": 147, - "iso_639_1": "ja", - "file_path": "/cRW8hTnBzBZrz82qaNipbCFaEI5.png", - "vote_average": 0, - "vote_count": 0, - "width": 394 - }, - { - "aspect_ratio": 5.195, - "height": 77, - "iso_639_1": "el", - "file_path": "/3stCOkg2HvHF9ZnabCd3nPMVWwn.png", - "vote_average": 0, - "vote_count": 0, - "width": 400 - }, - { - "aspect_ratio": 3.161, - "height": 316, - "iso_639_1": "en", - "file_path": "/uCc0mOBWVeSVOOWivfcyqaX2ypl.png", - "vote_average": 0, - "vote_count": 0, - "width": 999 - }, - { - "aspect_ratio": 3.133, - "height": 611, - "iso_639_1": "pt", - "file_path": "/lTlXNElq7YRtxhbE6IfkHRnC7TO.png", - "vote_average": 0, - "vote_count": 0, - "width": 1914 - }, - { - "aspect_ratio": 3.175, - "height": 126, - "iso_639_1": "cs", - "file_path": "/pDe09f0YIwLeuHTwchnq86nyuy.png", - "vote_average": 0, - "vote_count": 0, - "width": 400 - }, - { - "aspect_ratio": 3.622, - "height": 529, - "iso_639_1": "sv", - "file_path": "/cCpNdrvtJYhSrTHtty1UNDWsiZf.png", - "vote_average": 0, - "vote_count": 0, - "width": 1916 - }, - { - "aspect_ratio": 3.752, - "height": 580, - "iso_639_1": "da", - "file_path": "/4jHrbZ6dmGHeQMsVJNcpJzELN4k.png", - "vote_average": 0, - "vote_count": 0, - "width": 2176 - }, - { - "aspect_ratio": 4.279, - "height": 598, - "iso_639_1": "ru", - "file_path": "/a6RWYyq0dI4t7Y5j6dEIFe1NLCP.png", - "vote_average": 0, - "vote_count": 0, - "width": 2559 - }, - { - "aspect_ratio": 4.279, - "height": 598, - "iso_639_1": "ru", - "file_path": "/iOPLTdrCCskS4UtXbOCu9A5CMBQ.png", - "vote_average": 0, - "vote_count": 0, - "width": 2559 - }, - { - "aspect_ratio": 4.229, - "height": 607, - "iso_639_1": "ru", - "file_path": "/89vYJstNL5ViW08530t3MqbRYib.png", - "vote_average": 0, - "vote_count": 0, - "width": 2567 - }, - { - "aspect_ratio": 4.035, - "height": 621, - "iso_639_1": "de", - "file_path": "/yfnE5lDb81TSsMu9Ahkf89bzI2n.png", - "vote_average": 0, - "vote_count": 0, - "width": 2506 - }, - { - "aspect_ratio": 2.527, - "height": 1300, - "iso_639_1": "ko", - "file_path": "/uX24kAXZU2yKtnZXlAcliEbthfI.png", - "vote_average": 0, - "vote_count": 0, - "width": 3285 - }, - { - "aspect_ratio": 3.13, - "height": 1296, - "iso_639_1": "pt", - "file_path": "/1kEWHmaCp2VrvModNEtrNOcQOdw.png", - "vote_average": 0, - "vote_count": 0, - "width": 4057 - }, - { - "aspect_ratio": 3.13, - "height": 1296, - "iso_639_1": "pt", - "file_path": "/7OcvI1gsZJUaxZ01RsbcJgjBquM.png", - "vote_average": 0, - "vote_count": 0, - "width": 4057 - }, - { - "aspect_ratio": 3.629, - "height": 1190, - "iso_639_1": "sv", - "file_path": "/qmtXc67371XdXixQ9fG6Q86kxk5.png", - "vote_average": 0, - "vote_count": 0, - "width": 4319 - }, - { - "aspect_ratio": 3.629, - "height": 1190, - "iso_639_1": "sv", - "file_path": "/u1KQSD1Dhx7b4SZNUVIjHaH6Fqq.png", - "vote_average": 0, - "vote_count": 0, - "width": 4319 - }, - { - "aspect_ratio": 2.096, - "height": 915, - "iso_639_1": "ko", - "file_path": "/gZehjz7CzDIxUljJRyYlW8HyzHF.png", - "vote_average": 0, - "vote_count": 0, - "width": 1918 - }, - { - "aspect_ratio": 2.076, - "height": 170, - "iso_639_1": "tr", - "file_path": "/smrwdfqFMvb3qj1iljIQUvBOqeQ.png", - "vote_average": 0, - "vote_count": 0, - "width": 353 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/4Y1WNkd88JXmGfhtWR7dmDAo1T2.jpg", - "vote_average": 5.766, - "vote_count": 10, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6oH378KUfCEitzJkm07r97L0RsZ.jpg", - "vote_average": 5.738, - "vote_count": 18, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/79gxsO7gjAgxS217mhXa1vh1hs5.jpg", - "vote_average": 5.648, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": "es", - "file_path": "/d79DeKDCgFOM23O8Dr6MELZVooY.jpg", - "vote_average": 5.522, - "vote_count": 4, - "width": 1500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/mCAHMuoTuPaedcX3oBkLbZMoeVl.jpg", - "vote_average": 5.458, - "vote_count": 13, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/6BA5IbAH3O86wMmHHidoyEWtNYi.jpg", - "vote_average": 5.456, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/7GaeF6xeUbfXFZCtOCWs503CJUl.jpg", - "vote_average": 5.454, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/gzuZ1ZOJHZuCOfbn5yv7StX0cjs.jpg", - "vote_average": 5.454, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/rzY5kUJJ1zGfingV2oHyyxtlGNa.jpg", - "vote_average": 5.454, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/haKaoR9bfFJLoZSYyk2lLApNbcp.jpg", - "vote_average": 5.454, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/rvSzdzwfRjAeESh1BPIxjf4eklN.jpg", - "vote_average": 5.39, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/cQMrVhtVmRBwl3YWCUoOCBBwlQu.jpg", - "vote_average": 5.39, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/ge7qII4oOlrLOmDj6f9gdkY7NC7.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/guIXg8sZGwCdpTrHPPRVbI4VRdL.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/2tYo2F53t2kRYgmsNhkC2TVpL3i.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "cs", - "file_path": "/fmBIpKoJMEPSrQnOCvGMTo0L3ev.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 770 - }, - { - "aspect_ratio": 0.706, - "height": 2832, - "iso_639_1": "cs", - "file_path": "/6Stw0zKFN8jXSj2b9ITFJvAcXep.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/bt0vgv9mkxVIg75x3zuYswrb1v6.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/qzqqeHLl4NxpXKXxJjg9MnuVlR9.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/4E8I9spuq2XDe1Lo6jOtW0LzL66.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ru", - "file_path": "/88xo5uF03kEgFWXRQJerXRdONBE.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/7QsY7Jo3ZgL3pa1kdo28TA7Z6qo.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/4Xl7aPQb1bICo5RatcthkRljl2m.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 3000, - "iso_639_1": "en", - "file_path": "/hIf8BUYEozn8Ox7iFm7AjUgfNgK.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 1998 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/lV7SIaIdV1ezj92fFsZe4nMMJxc.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/qvHIwjaRVC4sMSboV618uh7Hoyf.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/rddEQ0MogoidcmrSCWs65wvcQoW.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/wFsmwZd38VNnljeqXFWTINBnNPy.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/cfXO8gMTz484ItS0AANhGS4v4b5.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/dEunKGnqyXlTGb7QpLvmld2RSvt.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.702, - "height": 2157, - "iso_639_1": "ko", - "file_path": "/1YYL1OcgjPLjAGi6n0iZe1gdl9i.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1514 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "es", - "file_path": "/nMb9vqh57xWafxuzrUPiHLphpBR.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 667 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/o3h0rhCiej6aTVfxOKr6kWf3og6.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1155, - "iso_639_1": "zh", - "file_path": "/tZiXmdJGOAYN27C0JnGgfPHZHy.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/kiIQYhnFopO6crVfKKY5VmzcFJS.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/t4gSQcg4gspnGAE4O0VjMk3YrRK.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/cnEYjbWGGYWeeEfsFF7xGMwiql.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/5RljCwwVySmrjwOcD0QFyf2QBIv.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.682, - "height": 1760, - "iso_639_1": "sk", - "file_path": "/wOy8PzFe0UynyzxQ7x9U74LhWaR.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1200 - }, - { - "aspect_ratio": 0.724, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/j9YT6lO62umTD0Q3zF4lo1ipaCf.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 782 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/8ota9zB9Ss9DG5zibIRb7nzXvIy.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/qynf5k1VBgT3aow3Pah2S3u7ys6.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "th", - "file_path": "/qShmhP4K9eXbhLFSIBpsV7Bl9iw.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "th", - "file_path": "/8Dn2yaCg6EXccaPXZ2YSGKsK3RJ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/qV2EHZsqoeCxI8h2vb0Uua7Eqy3.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 648 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/n9JzjRfuTSVQ2WosD9aeOPAsJbp.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/8rb4cP6PDJZopCH65eStfnrJ3wa.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ro", - "file_path": "/zEIdfI4TWMILyMclKvlkntNNjdP.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/5Aw2CXIBVQHaim807wOXAxz3TkJ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "da", - "file_path": "/qV6pt8Dft1KW1F5BvMVabREigRj.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "da", - "file_path": "/b1JeCS69nUh7wmN14HZPMlqbYDc.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sl", - "file_path": "/4Cm2tvtj8tU5J3yGT1JNbUYgCr2.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1000, - "iso_639_1": "sl", - "file_path": "/wteZMgtHF2jwKWxfRfljVv4dLhS.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 666 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/w7eApyAshbepBnDyYRjSeGyRHi2.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.718, - "height": 1000, - "iso_639_1": "sk", - "file_path": "/AlOSAIpTcfc5fjXfxwZ0DbAZTD4.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 718 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/3AEUQRuZKMlkNivC5VGYHEM4Kz6.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/wUBOTu0deEQmLoPXDgEvW2tIaY6.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2818, - "iso_639_1": null, - "file_path": "/tTcrCaJznjF45HjQvUn5BfOnEIE.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1878 - }, - { - "aspect_ratio": 0.666, - "height": 2818, - "iso_639_1": "pt", - "file_path": "/chQrVPr6Q0jksITWay1u3bPnwA8.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1878 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ko", - "file_path": "/5DeIFIGdDVWkb4TVGFJDRCeqXp.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/gaDdUce6KXPT2qwrV3ekWgdicbJ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/8riWcADI1ekEiBguVB9vkilhiQm.jpg", - "vote_average": 5.296, - "vote_count": 20, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qM5W4Q78hxuPwpD4FtbsbLilSF9.jpg", - "vote_average": 5.276, - "vote_count": 12, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/kFxbEXDrvdbdv5g1a1hWlHEUonw.jpg", - "vote_average": 5.27, - "vote_count": 10, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/a2nDPXaCHd1pDW5qfQ8VPkOM7v9.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "zh", - "file_path": "/xkcV2lq00uomOHfNQYDKO6lBUIC.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/opRQF8oT5xxN7Qm2fGqZenJ3Vwu.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/d2W9sA2l18bmpE7w74mlxQ6kMp.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": null, - "file_path": "/agb6LeqB8XpZQloNGWueGdTS2S3.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 800 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "cs", - "file_path": "/C7na5XgAxQarjnbuN30l0vzDXt.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 733 - }, - { - "aspect_ratio": 0.666, - "height": 893, - "iso_639_1": "es", - "file_path": "/3RuphN7wadSCoIhD7u1gkLkx634.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 595 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/va2nMPqHvEFuVTYz3ch3JgkWn78.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/oC6pJoUChtmK0FeyWDZgvK13iRt.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/88OGFOcFI04CL4uucb6I7ZzUqD6.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2694, - "iso_639_1": "en", - "file_path": "/nVXAXwx71NVWDIuqOSHvYzRmKP3.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1796 - }, - { - "aspect_ratio": 0.667, - "height": 1155, - "iso_639_1": "zh", - "file_path": "/mH3JHQ1UshLwTexnURtXlvFcWER.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 1100, - "iso_639_1": "uk", - "file_path": "/uEWaHrc2ML9iU5K9D6Mc3A9InUQ.jpg", - "vote_average": 5.25, - "vote_count": 23, - "width": 734 - }, - { - "aspect_ratio": 0.666, - "height": 1000, - "iso_639_1": "it", - "file_path": "/v9dZ3MnuSOU5C0ma21HP30zVGI.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 666 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "vi", - "file_path": "/dbtd7QlhUlTQA2Krtl3qYqXhvVW.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 800 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "sk", - "file_path": "/hG8V147aFmzO0eTm0z2jXat2ki3.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 770 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "es", - "file_path": "/IPgNjYQhe4cfRaXEwv5z0EsuPF.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 733 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "es", - "file_path": "/f3NRV5TmslXhy998ONvdQg3bNjX.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 667 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "es", - "file_path": "/oEgPohjBSTgHCh0HLjkGqyPQTfU.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 667 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "es", - "file_path": "/zeSKkMSNXgBHy9UupdMrF6AEIx8.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 733 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "no", - "file_path": "/oCfWslbOrTcOblrT9GSaF98SHR5.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "ko", - "file_path": "/eJHCK1ipv006MuWrgloTEJfHcfW.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/8jUDgV4tgsSpowaBDGQ9hoyxzqP.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "es", - "file_path": "/zfIScorhoHLhFmxGuJ8FMeHv0jf.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1890 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "es", - "file_path": "/i9WcYdAwquMFvejJKfVcE18uMpq.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1890 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "es", - "file_path": "/9KpHaM0gUkYMiWVsE3L3hueSZM6.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1890 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "es", - "file_path": "/6VaAioDXVAUxebiBIBvn5KH9KT1.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1890 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/3PvKGySWWL79iDLmGfWPJVPRoM4.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/3kx1seVMr5Tu4bKEpU7V4gUxbw1.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "zh", - "file_path": "/AcYHzqRuyo9HqOvmYFzhQiFVpHc.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 770 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "zh", - "file_path": "/ryyOmCa0G8gUHsRP26wFq4jUtN7.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 770 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "zh", - "file_path": "/5dYQaxEjvcPDYAj8D90hJGx5A3f.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 2500, - "iso_639_1": null, - "file_path": "/4Apj2R7s1GnIgoTkG2QlFezIXod.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 1667 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "da", - "file_path": "/psedcGkS7Oa8oT7DHD26JdHMOEC.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "da", - "file_path": "/wXfsZBkbm3X4kRchIv3vyNybooc.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "uk", - "file_path": "/sesTdQyr45yeyFeiqc0YbMm4VyU.jpg", - "vote_average": 5.206, - "vote_count": 9, - "width": 733 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/zvgsu4D1JNZVuGDeMDt49b64AkJ.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1609, - "iso_639_1": "en", - "file_path": "/gm0cEim7L2rSQoZTU4PKdKsYadD.jpg", - "vote_average": 5.18, - "vote_count": 18, - "width": 1072 - }, - { - "aspect_ratio": 0.667, - "height": 999, - "iso_639_1": "pt", - "file_path": "/cveXFCRCrxdARM3Gel0pRCKsssJ.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 666 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "cs", - "file_path": "/iOsT1b85TG6SFzZmfNV1L34w0Ka.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/5BdO9mogSS2VLL2Gl9Zkz78jgMR.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1100, - "iso_639_1": "pt", - "file_path": "/mNcyMK7KQEYkcBJAXRP0WYFkm60.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 734 - }, - { - "aspect_ratio": 0.667, - "height": 1100, - "iso_639_1": "pt", - "file_path": "/9Zs7Y1irtPuFE4H80IdVgNCcsgm.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 734 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "it", - "file_path": "/z681xu8CoIEf7ncUCA89HJzlbfT.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 667 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/yalkPOQQ5IFm5KxzkPX0IujfiJz.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 900 - }, - { - "aspect_ratio": 0.666, - "height": 1754, - "iso_639_1": "de", - "file_path": "/fM6AFC1oSqBBk3oIDAKNlS84P8Q.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1169 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/g36eJ7ggOTosgk64GUEDCjjg7p8.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1609, - "iso_639_1": "en", - "file_path": "/qMcmZ4bsobOCv210dMUUFnSOD3m.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1072 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/zRaDfw3e4YOQIqHWN4qXsXyLi1P.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "fr", - "file_path": "/ckg5P3Fxuapu6V6RduW9AQd9apO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/2LMVcIElqqUkjJVzcGu379x7zvW.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/gaTHXS8R8Nd9d8xU5TliB2WjQ66.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/ddo9O1LpDfbrcoAjio3tA3gLoNO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "cs", - "file_path": "/tH0IUiX0BrDQUKIkiJWiEDKlWzt.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 770 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "cs", - "file_path": "/txWaxJJY5h00YnKkzzdqyX1upHR.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "es", - "file_path": "/7w8hxQqSQ1O9PlLIiTFFiOx4zaz.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 667 - }, - { - "aspect_ratio": 0.762, - "height": 1000, - "iso_639_1": "sk", - "file_path": "/bmvhVtpVXpX8xX7GeD0DA4ZGSaQ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 762 - }, - { - "aspect_ratio": 0.675, - "height": 1609, - "iso_639_1": "en", - "file_path": "/xLSTaiVWAZvLRq9vMPGAAdDkfnF.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1086 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/uzfSGB7RKxI4gVPLBmlQdLnsWcN.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1349, - "iso_639_1": "it", - "file_path": "/jpb0XQZL8Pl2Pb39FA4YvcWDFiT.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "es", - "file_path": "/3JbaXwlTm6sGEORavmoso2B3pAT.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "de", - "file_path": "/uo4QZNsnEmo5ov8gtNHAfrYm3Nb.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 733 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/59lUTyCyJ2vbEQlNcWZ1zNLBw3T.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/zdh6FhF3vlyGUzLS8XPJex3FeEo.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/dyzDg63on7Xon0vY67htnV9lHix.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.666, - "height": 893, - "iso_639_1": "es", - "file_path": "/c7Lzl2Nt8Ej1LIAnAq1VEk80Gbw.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 595 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "nl", - "file_path": "/sKNZ7vPHvHfLEvjM9qJMqgLslTh.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.676, - "height": 1035, - "iso_639_1": "en", - "file_path": "/it8mhwz8iuxpoW9o8TTzMTRxzRn.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 700 - }, - { - "aspect_ratio": 0.667, - "height": 810, - "iso_639_1": "da", - "file_path": "/3lOYBhqp1Z9nVp9FjfFoqUqcLHC.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 540 - }, - { - "aspect_ratio": 0.667, - "height": 2818, - "iso_639_1": "sv", - "file_path": "/8RI96HzqvvNw3pYWPHzX4UhmBZ9.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1879 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ru", - "file_path": "/aI4OjSzf91Efa3bXEGhERGlZ6Bo.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/2C7q7mjdj2pGvKZ8DXw97A97Duy.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.75, - "height": 2048, - "iso_639_1": "ko", - "file_path": "/u5rXXbopbwOAQaZLvd6yH8yMUa9.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1536 - }, - { - "aspect_ratio": 0.667, - "height": 1100, - "iso_639_1": "uk", - "file_path": "/e4Tdz311j53OhyMcnr4r0gDVX15.jpg", - "vote_average": 5.146, - "vote_count": 10, - "width": 734 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "uk", - "file_path": "/z8PjyU21lFCNMnavOqPQRDUslPf.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 733 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "en", - "file_path": "/7eYTaY65oqJlK08e52eZ2VufPRB.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 900 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "es", - "file_path": "/2j8ahN0ociOuUtduErwh0XY4Lkt.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 733 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/3G5FRPWalbKKrgMfapMejY481MT.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "uk", - "file_path": "/dnUeW3a4A4qpYuPQCDW0HunAPfT.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 810, - "iso_639_1": "pt", - "file_path": "/tYaiixeY48HD4ODumyEGotB9Oax.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 540 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "fr", - "file_path": "/wMHBuxpzx2J19qNoZh7hAH5ANMm.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 770 - }, - { - "aspect_ratio": 0.708, - "height": 848, - "iso_639_1": "no", - "file_path": "/An7UL2tIhiTvyXCf2EL9oPJKssy.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 600 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "es", - "file_path": "/9rmnJEgGrTBWDqlbYEab12XVlzF.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 1100, - "iso_639_1": "pt", - "file_path": "/wMk70SIgeuvDosF1kqCyLplf5CE.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 734 - }, - { - "aspect_ratio": 0.667, - "height": 1100, - "iso_639_1": "pt", - "file_path": "/3rs4kcg9kl9FdNU6IZTYHCaX1tO.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 734 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/csCb75tHzTM3nlAWz4NWmgBcVmH.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/wDQS3migdTYZY1w0JTxgwSLKMhg.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/xMpNgmaClUz4AyAXh0VqO8iscbl.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/AlkKoXubU2uqkvseT1QMRwEpUoh.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "pt", - "file_path": "/iB54Rv1P3yvoVApASUqJeHZyNwm.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 733 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "zh", - "file_path": "/cMNgwyb7GYcTSIQqa7N9uYiTDQp.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1890 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qrbsXKLYWe1ljLfHWPKjiSwkwzq.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1307, - "iso_639_1": "pt", - "file_path": "/Px14XcqrtE1h0EirImIi2t0ZRF.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 870 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "sv", - "file_path": "/b0aTqG3XfUWPipqBJCdTOeRugBW.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "ru", - "file_path": "/1Vm7oeEaxDWB84kwAIzbSDx9dKm.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 800 - }, - { - "aspect_ratio": 0.707, - "height": 1280, - "iso_639_1": "zh", - "file_path": "/aKY1cCDKvdsI9kwFEqB2A9TILJr.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 905 - }, - { - "aspect_ratio": 0.675, - "height": 2962, - "iso_639_1": "zh", - "file_path": "/a55uHjO7KyOlahjPHb999KMaS7Q.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.673, - "height": 1390, - "iso_639_1": "zh", - "file_path": "/rz9e6SC9qOTw9Ujxp8dsLRBtfA8.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 936 - }, - { - "aspect_ratio": 0.673, - "height": 1388, - "iso_639_1": "zh", - "file_path": "/1wE5DxmkYkxo5X86iJ3PBFYx60L.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 934 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/31MRbTvZ8xPRcwAFlfJH9OkLpTi.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "uk", - "file_path": "/hlJfCS8wyTLuDLNe1Su2NSX5fwb.jpg", - "vote_average": 5.068, - "vote_count": 7, - "width": 733 - }, - { - "aspect_ratio": 0.675, - "height": 1609, - "iso_639_1": "en", - "file_path": "/bWUtuCetP6cbcNLemsef12a9sbE.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1086 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/wzAQ0XRa8WRrGgJbPZxlUU3yf0j.jpg", - "vote_average": 4.996, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/b2Gj6NhXMNxS2yn6Jnm3FMN7kI1.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/pJIo1rfw9ZnYqq8UcRZawWtSUcA.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tiM0OZfL7Seq3oo5Qc2c3Aun1CZ.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/9YHFcoZ5ZDHP0UPmIABF0NR7WBe.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/wybjTNlAx05ILYda1denVUbp3Hs.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/1TfPzyvUHhfPVqf0XCksPP4SWCQ.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1609, - "iso_639_1": "en", - "file_path": "/2gRK6vszeATwhEOpdP1rF9UK9Jo.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 1086 - }, - { - "aspect_ratio": 0.675, - "height": 1609, - "iso_639_1": "en", - "file_path": "/lXsfem8cF4VebywlvMkmpn60HhO.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 1086 - }, - { - "aspect_ratio": 0.675, - "height": 1609, - "iso_639_1": "en", - "file_path": "/8HOnw4EfEWcUY3aBbHsjXPSCqJg.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 1086 - }, - { - "aspect_ratio": 0.675, - "height": 1609, - "iso_639_1": "en", - "file_path": "/9UCwwVy4wDboeAOd64IXgCJDjZP.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 1086 - }, - { - "aspect_ratio": 0.667, - "height": 1609, - "iso_639_1": "en", - "file_path": "/4aMsGxs3GnYvfys7qDrnXLdgIND.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 1073 - }, - { - "aspect_ratio": 0.672, - "height": 1606, - "iso_639_1": "en", - "file_path": "/qyinBemwwXqSoCMQ6uoy9WBCDUe.jpg", - "vote_average": 4.882, - "vote_count": 8, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6xnkCIxRDF3ZhjmjQAYH1kjBjVc.jpg", - "vote_average": 4.846, - "vote_count": 11, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1100, - "iso_639_1": "uk", - "file_path": "/qCHZRCy2etZ3REfLz36WflPLvc4.jpg", - "vote_average": 4.844, - "vote_count": 18, - "width": 734 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/trtRutJvcyIfZz26Bs33UIFW2fS.jpg", - "vote_average": 4.81, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.702, - "height": 2157, - "iso_639_1": "ko", - "file_path": "/78krZIgB2bVznCPaZhqSfk9mryN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1514 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "sk", - "file_path": "/9IbWQPFHgI1PeNgt6NPxyi1Bblb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "el", - "file_path": "/5mUc9uaTaEUrSEmgyfoIvA2VJrr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "bg", - "file_path": "/aBNnDnWJaiH4fBvXoANGPxY6eut.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/8ZA0M4OXPWfL3PV3EHAPGGSRzJ2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "th", - "file_path": "/whWZkvUmAx0uD8ZB8bJXmqDAsZ3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/xiehsJRUF57ocw5KrgGJl0CH3Dl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.675, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/rxPgqSZhtpdQRVjotHI4nisOKOh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 972 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "cs", - "file_path": "/8dMUYDTQWzEYaUfDeH4HtzhS0jG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 770 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "cs", - "file_path": "/A8JAGlBy7hj0Fxv2zQqRhmrxvdB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/5zF8oiK3DOp60lnJ1GLO0Im5BwI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.761, - "height": 1000, - "iso_639_1": "sk", - "file_path": "/5nyyXc9bsCGQDlZ0PUmSv8gjX5V.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 761 - }, - { - "aspect_ratio": 0.761, - "height": 1000, - "iso_639_1": "sk", - "file_path": "/mrP6PJia0XhqFhDU8BVcXQ3k42T.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 761 - }, - { - "aspect_ratio": 0.761, - "height": 1000, - "iso_639_1": "sk", - "file_path": "/kZxDXSe1CHdu2pHUC4SPKSaWV2N.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 761 - }, - { - "aspect_ratio": 0.761, - "height": 1000, - "iso_639_1": "sk", - "file_path": "/bKfz3SQWGnkv0nCWk7nBXE2jFJU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 761 - }, - { - "aspect_ratio": 0.75, - "height": 2560, - "iso_639_1": null, - "file_path": "/aHhKTDM7S98K5DIk18fGVgSYmoB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1919 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/syUsKGRIc1Py7j6ds8TEYNrmDfB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.711, - "height": 1369, - "iso_639_1": "cn", - "file_path": "/bi6daY7kv9A7Al9r6KW709fCwlA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 973 - }, - { - "aspect_ratio": 0.667, - "height": 2850, - "iso_639_1": "ko", - "file_path": "/2iYsmasI7G5LDJbBC2qrXI37o9C.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/fjeIPlkQLAC6FFP7IMxwKZMIz2l.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/gMviEmpyolVyX18FS3MKvbZ8XeE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "ko", - "file_path": "/ofVOR0Wec81fy2hs6y9DtxWMjzl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "ko", - "file_path": "/sR21WmbAOyAp1xxQJb85NyfNQWR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/ePTLxDEk1JanQJWFPBfkeM7ufDb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "ko", - "file_path": "/4Ge1iRrPMtzOZprVqJEf5Ls3KAc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "ko", - "file_path": "/3SiD8SRX0QHRkLTK7DH1xf3a2gv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/6cqkV2dE29StIkczDWtNfDz0zIF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "de", - "file_path": "/aZDUSXPCs6EVWiFL5Qfe85YBYxa.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 733 - }, - { - "aspect_ratio": 0.667, - "height": 800, - "iso_639_1": "hr", - "file_path": "/6TVsnvLkRZ90aK01Qj9jUNKlCDY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 534 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/19Sd0T4H83Vf5G42MeStNi6nGoC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.753, - "height": 750, - "iso_639_1": "sk", - "file_path": "/9fzyh2AriSgARxqdBUcFhbZ3nOP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 565 - }, - { - "aspect_ratio": 0.753, - "height": 750, - "iso_639_1": "sk", - "file_path": "/pbiisEqMx6YU733ZvZzSmSvlCaV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 565 - }, - { - "aspect_ratio": 0.753, - "height": 750, - "iso_639_1": "sk", - "file_path": "/kAX3FxBHw1Ppn4fwGTSN63aEgL4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 565 - }, - { - "aspect_ratio": 0.753, - "height": 750, - "iso_639_1": "sk", - "file_path": "/sdDp0GVIFQ0nBVOjQHYniLj6OWI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 565 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/pRFNErGv6PcnwWGECOpPlyBcdJr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tYS6hzPFrqhLDYXQTXphAP27Vaf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2400, - "iso_639_1": "et", - "file_path": "/1QDZeWTMoDqu69pPoUzLHshomAc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.707, - "height": 1500, - "iso_639_1": "ja", - "file_path": "/5sZqAg7Yluwv4pFuIVHfMXYWAgG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1061 - }, - { - "aspect_ratio": 0.707, - "height": 1132, - "iso_639_1": "ja", - "file_path": "/zME66UdXTZ9e5Dq17VbmpA1AGdH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.707, - "height": 1132, - "iso_639_1": "ja", - "file_path": "/a6rLVR663RZoiAupGAUe35LFRKE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "el", - "file_path": "/YjyIztikKrGDnYxIJrrNAr2gkG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 770 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "el", - "file_path": "/blk5btXcsbsVnO7ylUVSiHhgrJ0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ca", - "file_path": "/fAht6mr7yFoHKcBJTXa5J2rGrkl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1191, - "iso_639_1": "ro", - "file_path": "/kpOWi1Bu9KLcETKhRhwKT54rUyd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 794 - }, - { - "aspect_ratio": 0.709, - "height": 1080, - "iso_639_1": "cn", - "file_path": "/3PyJwB06Jgwjj6SdZh9PzHFXU6G.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 766 - }, - { - "aspect_ratio": 0.7, - "height": 1143, - "iso_639_1": "el", - "file_path": "/bHJVxz06MqeRFI1fsyOBUYTT7gb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/6yVAEo70fWX4lHAIslwdQdUtibI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/u4l1p05uIrY0OT6N7O2cLpKqMfm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/7I8ntZNLaoRHlM8KjTG7f8NWbpU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.696, - "height": 1437, - "iso_639_1": "pl", - "file_path": "/fv3idA7yYUP1jt6TYy6l6AlUdQR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/s13nPIPhMEB46gjSN4xhLbk08HU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/e5Tsx1BqnaTpAcjRNbTZPeWjnXd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 648 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/mF1hyMYMz6l2NC0aijcGd2ThXY1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 648 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/x42wYSeqkG0LrgS1Eaijvm450aW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 648 - }, - { - "aspect_ratio": 0.699, - "height": 960, - "iso_639_1": "lo", - "file_path": "/dyUYLWXjwHCeaxCT4LA5TEzHKHC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 671 - }, - { - "aspect_ratio": 0.666, - "height": 1609, - "iso_639_1": "en", - "file_path": "/4ZDWfJRVARCqtHpdqs7v87U8EB8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1072 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/dPYh4CPhF6HtrcvmG1p9T5ZbFBr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/6xvAv2WhYbO1PwVUBW495MgTt5B.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/fKd7ybFLZ3DtuXtAva84XfE7cpj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2500, - "iso_639_1": "en", - "file_path": "/bcBI3H67f34aU7w8IdIMKmFIENB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1667 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/3JiRn3gEwkC8SmfgC1IuqA4DG2r.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/6F8fvqc83TMwf28zctamFrWDPSw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/xgNvW3ncVoe3vdbrkQ885d99Wa2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/7BbV2YWBUl1TsPLy0x7GOxVJOmO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/acyPtiV1KBLsiXZO18JYv9MvRWN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "es", - "file_path": "/zU9JxCcIKy3UWBVfHqLR7mBpd7D.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ru", - "file_path": "/1TN3RGHQQKWctvxwmnEIiqxRlRf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ru", - "file_path": "/htvw3mVdQVIXcWmLtEaqVCFGAvO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ru", - "file_path": "/isfyDvf0PF41OppD9pNZH52EmZy.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ru", - "file_path": "/xyxOqiWfCFZyKuX6D3QUFWkv5GK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/q8iRUec3c7gk5Wq1UIvGu1vrkyC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2500, - "iso_639_1": "ru", - "file_path": "/bML32j4v3xEkm6VQeX3riM7GcXg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1667 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/xpVP0oajb0NQpzCA1EmP8cKXx3I.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "kk", - "file_path": "/xVgrtsvxowy2PCnKV1KSucAe8vW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "kk", - "file_path": "/mG0o3ekFlbxUCRWb6YtBmFSnLJk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "kk", - "file_path": "/hDaUbozZtAqfu6uCYVDtPPvC7ns.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/kUB1Ypd0Fzw8zJJQzgJuiMidaa8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "sl", - "file_path": "/zt6R4mOrBaVpMHnIavtjg6Wjm3u.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 770 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "sl", - "file_path": "/7NBvBWmyjywmU3MRh7JKHtdD8Ip.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sl", - "file_path": "/vdSQXPsgcWPE8UTO8nkuljYtOg0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/vwFIqNGfpvzbyI16ZSfpOiQDjZN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "pl", - "file_path": "/7mzABR3uefBwd9jBuqDFVAiuOrY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.696, - "height": 1000, - "iso_639_1": "sl", - "file_path": "/o6uOKSVlKuhHaREocvLaUI3DTOY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 696 - }, - { - "aspect_ratio": 0.71, - "height": 2818, - "iso_639_1": "cs", - "file_path": "/jF2rPtRKV9Pu5T3EPuk8xZApY9Z.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1080, - "iso_639_1": "cs", - "file_path": "/bWW46RTVm0tZfrqdJvsv4jUzjLl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 756 - }, - { - "aspect_ratio": 0.7, - "height": 1080, - "iso_639_1": "cs", - "file_path": "/tpnzUki92R9Y8WQgXhpWlhMGLHm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 756 - }, - { - "aspect_ratio": 0.7, - "height": 1080, - "iso_639_1": "cs", - "file_path": "/6QPHT1WGH9aAF6vJ87ESZnVpDyN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 756 - }, - { - "aspect_ratio": 0.7, - "height": 1080, - "iso_639_1": "cs", - "file_path": "/1eIPtElGppB0VBwJctJhFDi5mqc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 756 - }, - { - "aspect_ratio": 0.666, - "height": 1454, - "iso_639_1": "en", - "file_path": "/29FnUWvsmFiRVcjfuLB2JjOCJKJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 969 - }, - { - "aspect_ratio": 0.666, - "height": 1609, - "iso_639_1": "sk", - "file_path": "/4Q4am4CatAWEqd5hdzncKir0gko.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1072 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/d0s8yxw0NbVSzDfYWrj4hKwhkE1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.75, - "height": 2560, - "iso_639_1": "sk", - "file_path": "/tuBF7pWnNoH3PYW6SzhMYEBURzM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1919 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/4t4M8vbUM52XqnaVsr9FIMHp3Ey.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/g8VbE8rXOx7nNLD76QeioERha5X.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "sk", - "file_path": "/x9B9zCYKhgVj2p6U1TG4ho9xwif.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.76, - "height": 1000, - "iso_639_1": "cs", - "file_path": "/2kzoSoTJ7RpnBjS4oVVAU5HjPdJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 760 - }, - { - "aspect_ratio": 0.75, - "height": 800, - "iso_639_1": "ab", - "file_path": "/nq8HN4VUNYMvOhsNC6rpBOBoj4D.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "ar", - "file_path": "/11zqtySC5uPAfl35vv5iz7hYKdl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 667 - }, - { - "aspect_ratio": 0.666, - "height": 1000, - "iso_639_1": "he", - "file_path": "/r5eG7cagdtTCkNjoSKaLnHQly1o.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 666 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/iSHW6IVoII6jwv3rZYPvsO6SCFJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "tr", - "file_path": "/62jCS6MVvjftoARviXW0TTtpTFE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/osV8FDF2ie5IBYZLbsc8xtpLm9C.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/9Ugw4mXvA3iHCrKVFHasn1W05zX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1080, - "iso_639_1": "sv", - "file_path": "/sCw3hZOlZdkfho3CfpieRw5Ng2H.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 720 - }, - { - "aspect_ratio": 0.667, - "height": 2817, - "iso_639_1": "en", - "file_path": "/oVDXb2ZxpyKtwPshb8zK01iHubm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1878 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/990140.json b/examples/view-transitions/src/content/movies/990140.json deleted file mode 100644 index 642265689..000000000 --- a/examples/view-transitions/src/content/movies/990140.json +++ /dev/null @@ -1,927 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/rV56FkcHkzHJcBOOqoCeSDnoBff.jpg", - "belongs_to_collection": null, - "budget": 0, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 18, "name": "Drama" } - ], - "homepage": "", - "id": 990140, - "imdb_id": "tt22488024", - "original_language": "cn", - "original_title": "天龍八部之喬峰傳", - "overview": "Qiao Feng is the respected leader of a roving band of martial artists. After he is wrongfully accused of murder and subsequently exiled, Qiao Feng goes on the run in search of answers about his own mysterious origin story—and the unknown enemies working to destroy him from the shadows.", - "popularity": 522.83, - "poster_path": "/jGKCpt3zzbGZbgoza6HCvecqElM.jpg", - "production_companies": [ - { "id": 155372, "logo_path": null, "name": "Wishart Media Co., Ltd.", "origin_country": "" }, - { "id": 160005, "logo_path": null, "name": "Super Bullet Pictures", "origin_country": "HK" } - ], - "production_countries": [ - { "iso_3166_1": "CN", "name": "China" }, - { "iso_3166_1": "HK", "name": "Hong Kong" } - ], - "release_date": "2023-01-16", - "revenue": 159959, - "runtime": 130, - "spoken_languages": [ - { "english_name": "Cantonese", "iso_639_1": "cn", "name": "广州话 / 廣州話" }, - { "english_name": "Mandarin", "iso_639_1": "zh", "name": "普通话" } - ], - "status": "Released", - "tagline": "When a warrior belongs nowhere, the enemy is everywhere.", - "title": "Sakra", - "video": false, - "vote_average": 6.552, - "vote_count": 87, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 1341, - "known_for_department": "Acting", - "name": "Donnie Yen", - "original_name": "Donnie Yen", - "popularity": 32.998, - "profile_path": "/hTlhrrZMj8hZVvD17j4KyAFWBHc.jpg", - "cast_id": 1, - "character": "Qiao Feng / Xiao Feng", - "credit_id": "62b0cf55ecc7e800f0fe0311", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 2085448, - "known_for_department": "Acting", - "name": "Yukee Chen", - "original_name": "Yukee Chen", - "popularity": 7.917, - "profile_path": "/3E8eXz1CJsE34LZsmQt1V3jH2Y5.jpg", - "cast_id": 4, - "character": "A Zhu", - "credit_id": "639572ec2cefc2007c1eb3c0", - "order": 1 - }, - { - "adult": false, - "gender": 1, - "id": 1397017, - "known_for_department": "Acting", - "name": "Liu Yase", - "original_name": "Liu Yase", - "popularity": 3.823, - "profile_path": "/2UBsASN6G37pjZtjl0Zse6S74y9.jpg", - "cast_id": 8, - "character": "A Zi", - "credit_id": "63980c59f5c8240083a9e015", - "order": 2 - }, - { - "adult": false, - "gender": 1, - "id": 84205, - "known_for_department": "Acting", - "name": "Kara Hui Ying-Hung", - "original_name": "Kara Hui Ying-Hung", - "popularity": 17.533, - "profile_path": "/6OV9kM62Y7M7EswtkpCThs0QAxg.jpg", - "cast_id": 9, - "character": "Ruan Xingzhu", - "credit_id": "63980c70f5c824007b890cd2", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 1800792, - "known_for_department": "Acting", - "name": "Wu Yue", - "original_name": "Wu Yue", - "popularity": 8.983, - "profile_path": "/hRePA3mh9mfAqX7SJ4rGxrNrxT7.jpg", - "cast_id": 7, - "character": "Murong Fu", - "credit_id": "63957308a0f1a200c880a34b", - "order": 4 - }, - { - "adult": false, - "gender": 2, - "id": 72732, - "known_for_department": "Acting", - "name": "Eddie Cheung", - "original_name": "Eddie Cheung", - "popularity": 5.704, - "profile_path": "/jTrBt3y43LsO8XYsQnWg8bdwsP2.jpg", - "cast_id": 14, - "character": "Duan Zhengchun", - "credit_id": "63980e36d05a0300cf2afd10", - "order": 5 - }, - { - "adult": false, - "gender": 1, - "id": 1255467, - "known_for_department": "Acting", - "name": "Grace Wong", - "original_name": "Grace Wong", - "popularity": 2.312, - "profile_path": "/Ab9GO6Awb183qaSP9VxlVNWZpFg.jpg", - "cast_id": 12, - "character": "Mrs. Ma", - "credit_id": "63980cd8d05a030094f1d7d3", - "order": 6 - }, - { - "adult": false, - "gender": 2, - "id": 1571926, - "known_for_department": "Acting", - "name": "Do Yuming", - "original_name": "Do Yuming", - "popularity": 3.349, - "profile_path": "/aqxa9aRrGOIiIcia0Vb3ErvXz4e.jpg", - "cast_id": 17, - "character": "Bai Shijing", - "credit_id": "63980fd28a88b20091ab7208", - "order": 7 - }, - { - "adult": false, - "gender": 2, - "id": 78877, - "known_for_department": "Acting", - "name": "Ray Lui", - "original_name": "Ray Lui", - "popularity": 5.367, - "profile_path": "/v6KV1Ib7ck9noPdwL6L2lAozeak.jpg", - "cast_id": 16, - "character": "Murong Bo", - "credit_id": "63980e6df5c824008bc95f42", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 1145614, - "known_for_department": "Directing", - "name": "Tsui Siu-Ming", - "original_name": "Tsui Siu-Ming", - "popularity": 1.31, - "profile_path": "/aY9b2ucIGylE3d7a1GNALk8qwH.jpg", - "cast_id": 15, - "character": "Jiu Mozhi", - "credit_id": "63980e5da1a9ba00a0003400", - "order": 9 - }, - { - "adult": false, - "gender": 1, - "id": 2961684, - "known_for_department": "Acting", - "name": "Cai Xiangyu", - "original_name": "Cai Xiangyu", - "popularity": 1.631, - "profile_path": "/9P9916rJ9SkiYBqrAckRsuO48FA.jpg", - "cast_id": 21, - "character": "A Bi", - "credit_id": "63cb7e60ea394900c827848a", - "order": 10 - }, - { - "adult": false, - "gender": 1, - "id": 1209782, - "known_for_department": "Acting", - "name": "Michelle Hu", - "original_name": "Michelle Hu", - "popularity": 8.5, - "profile_path": "/oNwNoLJg707G0HSIDnNU4mpaoIu.jpg", - "cast_id": 22, - "character": "Mrs. Xiao", - "credit_id": "63cb7e739a6435008def2fc7", - "order": 11 - }, - { - "adult": false, - "gender": 0, - "id": 3260046, - "known_for_department": "Acting", - "name": "Zhao Huawei", - "original_name": "Zhao Huawei", - "popularity": 0.6, - "profile_path": null, - "cast_id": 23, - "character": "Duan Yu", - "credit_id": "63cb7ea46d97e6007c9d47f2", - "order": 12 - }, - { - "adult": false, - "gender": 2, - "id": 1089434, - "known_for_department": "Acting", - "name": "Yu Kang", - "original_name": "Yu Kang", - "popularity": 4.673, - "profile_path": "/aga0SZgIsntO4ZNsOF28HBLMx3i.jpg", - "cast_id": 24, - "character": "You Ju", - "credit_id": "63cb7eba9a643500872aa4a4", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 1174692, - "known_for_department": "Acting", - "name": "Xu Xiangdong", - "original_name": "Xu Xiangdong", - "popularity": 2.684, - "profile_path": null, - "cast_id": 25, - "character": "Xuannan", - "credit_id": "63cb7ed0d363e500ba783604", - "order": 14 - }, - { - "adult": false, - "gender": 2, - "id": 65975, - "known_for_department": "Acting", - "name": "Yuen Cheung-Yan", - "original_name": "Yuen Cheung-Yan", - "popularity": 3.233, - "profile_path": "/oI1Q07u74Yod4t8K06aSvfEJIbH.jpg", - "cast_id": 26, - "character": "Xue Muhua", - "credit_id": "63cf408c0d2f5301d1ef7d31", - "order": 15 - }, - { - "adult": false, - "gender": 0, - "id": 3998591, - "known_for_department": "Acting", - "name": "Cheung Siu Fai", - "original_name": "Cheung Siu Fai", - "popularity": 0.6, - "profile_path": null, - "cast_id": 34, - "character": "", - "credit_id": "642fe90e9a643506f1afb11f", - "order": 16 - }, - { - "adult": false, - "gender": 0, - "id": 3998593, - "known_for_department": "Acting", - "name": "Cya Liu", - "original_name": "Cya Liu", - "popularity": 0.6, - "profile_path": null, - "cast_id": 35, - "character": "", - "credit_id": "642fe92531032500bd55bed7", - "order": 17 - }, - { - "adult": false, - "gender": 2, - "id": 1113443, - "known_for_department": "Acting", - "name": "Kenji Tanigaki", - "original_name": "Kenji Tanigaki", - "popularity": 3.134, - "profile_path": "/4WKEFXTK233yvrRvjA6TLIQiCn0.jpg", - "cast_id": 37, - "character": "", - "credit_id": "642fe970e92d83011306e9c7", - "order": 18 - }, - { - "adult": false, - "gender": 0, - "id": 3183831, - "known_for_department": "Acting", - "name": "Hua Yan", - "original_name": "Hua Yan", - "popularity": 0.6, - "profile_path": null, - "cast_id": 38, - "character": "Bandit", - "credit_id": "642fe9bae92d8300b6e41abd", - "order": 19 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 1341, - "known_for_department": "Acting", - "name": "Donnie Yen", - "original_name": "Donnie Yen", - "popularity": 32.998, - "profile_path": "/hTlhrrZMj8hZVvD17j4KyAFWBHc.jpg", - "credit_id": "639572d2a1a9ba00a0fef209", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 1341, - "known_for_department": "Acting", - "name": "Donnie Yen", - "original_name": "Donnie Yen", - "popularity": 32.998, - "profile_path": "/hTlhrrZMj8hZVvD17j4KyAFWBHc.jpg", - "credit_id": "63980c9679b3d400a0bc13f1", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 64430, - "known_for_department": "Camera", - "name": "Chi Ying Chan", - "original_name": "Chi Ying Chan", - "popularity": 1.204, - "profile_path": "/yDChYg2NSVBYAmGdoyTDznaIfSv.jpg", - "credit_id": "63981028f5c82400b783039a", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 2, - "id": 548474, - "known_for_department": "Writing", - "name": "Wong Jing", - "original_name": "Wong Jing", - "popularity": 4.649, - "profile_path": "/gMmaDRst3OwnY1wClKt541AmslD.jpg", - "credit_id": "63980c892cefc20084b6093a", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 551565, - "known_for_department": "Art", - "name": "Lau Sai-Wan", - "original_name": "Lau Sai-Wan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "639810a5a1a9ba009430b5f2", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 1, - "id": 1006504, - "known_for_department": "Writing", - "name": "Chen Li", - "original_name": "Chen Li", - "popularity": 1.183, - "profile_path": "/uIkAFpDNsAL5sYmlartPNoV2BWn.jpg", - "credit_id": "64288650c5840d00d58e3c34", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 2, - "id": 1113443, - "known_for_department": "Acting", - "name": "Kenji Tanigaki", - "original_name": "Kenji Tanigaki", - "popularity": 3.134, - "profile_path": "/4WKEFXTK233yvrRvjA6TLIQiCn0.jpg", - "credit_id": "62b0cfb19c24fc0061b28020", - "department": "Directing", - "job": "Action Director" - }, - { - "adult": false, - "gender": 2, - "id": 1415282, - "known_for_department": "Directing", - "name": "Kam Ka-Wai", - "original_name": "Kam Ka-Wai", - "popularity": 1.821, - "profile_path": "/gsPOd7NYzugZJwnEI5DokM6plQC.jpg", - "credit_id": "64288624c0442901f0024683", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 2095747, - "known_for_department": "Acting", - "name": "Andrew Yan Hua", - "original_name": "Andrew Yan Hua", - "popularity": 1.052, - "profile_path": null, - "credit_id": "6398107bd05a0300ae5105b3", - "department": "Directing", - "job": "Action Director" - }, - { - "adult": false, - "gender": 2, - "id": 2195223, - "known_for_department": "Directing", - "name": "Leping Shen", - "original_name": "Leping Shen", - "popularity": 0.6, - "profile_path": "/ocdkTboTAdk6BkJKO2Wrq4yLoto.jpg", - "credit_id": "6428866a960cde0103a4b5be", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 0, - "id": 2552279, - "known_for_department": "Directing", - "name": "Wei Zhu", - "original_name": "Wei Zhu", - "popularity": 0.98, - "profile_path": "/1hcEJ4rXam8i74RjTjfn6JKcSIo.jpg", - "credit_id": "642886880f3655011078cc3e", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 0, - "id": 3113929, - "known_for_department": "Production", - "name": "Zhu Weijie", - "original_name": "Zhu Weijie", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63980d8ed05a0300ae5103a0", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3391253, - "known_for_department": "Directing", - "name": "Sheng Lingzhi", - "original_name": "Sheng Lingzhi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6428865e01b1ca0097fd97c6", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 0, - "id": 3989726, - "known_for_department": "Writing", - "name": "He Ben", - "original_name": "He Ben", - "popularity": 0.668, - "profile_path": null, - "credit_id": "64288644c04429026b13431a", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 0, - "id": 3989729, - "known_for_department": "Writing", - "name": "Xu Yifan", - "original_name": "Xu Yifan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6428867a960cde00e0bcdb7d", - "department": "Writing", - "job": "Writer" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official US Trailer", - "key": "aHP_pyGtFIk", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-03-23T17:09:04.000Z", - "id": "641e49dcc613ce01031f8b85" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Main Trailer", - "key": "es5NAYPdcdI", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-01-12T10:00:30.000Z", - "id": "640a298154f6eb00993d3ebf" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/rV56FkcHkzHJcBOOqoCeSDnoBff.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/skY1yDFcLF4h6CYDxndr5jHJNof.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/zS3ngMx0IJGzSUlAJ5u40utdCFK.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/oREkJ5uPIryJz0zWMASkGVLzeIc.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/qAL0fwjZCQ41TwybgERAAUp4kWA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/bBERGgCqgUPzriFxsVrXccINprn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "fr", - "file_path": "/v4E3Gb7QikastXcvKzvn519bM1m.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - } - ], - "logos": [ - { - "aspect_ratio": 4.046, - "height": 194, - "iso_639_1": "en", - "file_path": "/pqu3S5zlYRt9oPXmC4OI1r4dml5.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 785 - }, - { - "aspect_ratio": 1.733, - "height": 288, - "iso_639_1": "en", - "file_path": "/jWexdriLJE0kFXG4Nct7C0tSnfJ.png", - "vote_average": 5.106, - "vote_count": 2, - "width": 499 - }, - { - "aspect_ratio": 1.691, - "height": 615, - "iso_639_1": "zh", - "file_path": "/slL3b5hNslfrjdM4qlXn3XhJcak.png", - "vote_average": 0, - "vote_count": 0, - "width": 1040 - }, - { - "aspect_ratio": 1.878, - "height": 147, - "iso_639_1": "zh", - "file_path": "/cd24lYjAb7dQRS7l4UrIs9D81go.png", - "vote_average": 0, - "vote_count": 0, - "width": 276 - }, - { - "aspect_ratio": 2.555, - "height": 1286, - "iso_639_1": "fr", - "file_path": "/4heIx9YFADRbnfkSzlFS6LVGTfT.png", - "vote_average": 0, - "vote_count": 0, - "width": 3286 - }, - { - "aspect_ratio": 2.497, - "height": 1273, - "iso_639_1": "fr", - "file_path": "/fn2o38gQPPqqmlH2qLyk4wP9GJT.png", - "vote_average": 0, - "vote_count": 0, - "width": 3179 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cn", - "file_path": "/vvWyOCmBAND2p9UwaXZdALIDd2W.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.672, - "height": 2048, - "iso_639_1": "en", - "file_path": "/jGKCpt3zzbGZbgoza6HCvecqElM.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1376 - }, - { - "aspect_ratio": 0.71, - "height": 1600, - "iso_639_1": "cn", - "file_path": "/vksLBSmHahKD9F30vIrm0S7JsSO.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1136 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/zr28ZaTpZeB7ACFVIoa4YuxFHgh.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2340, - "iso_639_1": "zh", - "file_path": "/k20PICIsiYMkD425UASSXs12M3.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1560 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cn", - "file_path": "/rafCyitNRMQUHDIVh3abWZRWofO.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "de", - "file_path": "/b4A9L61eJfLL2eWPjsfwhDuzDsP.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/lEWeNdbPuJIUON6qUwwvRcYNgSU.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/qGhdGdocth1csUlEnPEmYDfEmwY.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1600, - "iso_639_1": "de", - "file_path": "/zFRCKPsJxuQqdtysUD7UaySnxKC.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1067 - }, - { - "aspect_ratio": 0.705, - "height": 1064, - "iso_639_1": "cn", - "file_path": "/vPRZUtW2tQZ0JzwqUcS739qDfOv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 750 - }, - { - "aspect_ratio": 0.667, - "height": 2815, - "iso_639_1": "ko", - "file_path": "/rl6lMKv6XRPPOgMTcTmZWSsEsLH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1877 - }, - { - "aspect_ratio": 0.666, - "height": 2067, - "iso_639_1": "zh", - "file_path": "/dvlaQWBoZYmgHrG9r4V5DWn7e4N.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1377 - }, - { - "aspect_ratio": 0.705, - "height": 1532, - "iso_639_1": "zh", - "file_path": "/vNpAREC0oLWUx1F7NWSdGO89Qaf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 1711, - "iso_639_1": "ko", - "file_path": "/fmcRd957yQnlyEFltODkScqldKr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1141 - }, - { - "aspect_ratio": 0.672, - "height": 2048, - "iso_639_1": "fr", - "file_path": "/1d4Iru6pLYESE1DsE8BVxK5OwRm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1376 - }, - { - "aspect_ratio": 0.667, - "height": 2400, - "iso_639_1": "zh", - "file_path": "/lI3gD04BXUnB9ZhPmceeAVmnwHp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.667, - "height": 1600, - "iso_639_1": "en", - "file_path": "/2vA3CqwZ01LUsEaYRz2ZY6Om9xi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1067 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/uSmqyGyrjP1FF5UpxryUsSdQ4w0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/7JzNqNnisJnKH69mYuXNedznAAH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/o6229QNb9FHwWBCemZxM8mCBDgV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/7UyeEpMQXp5zlzSVHif8ZWDE2tA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.666, - "height": 1367, - "iso_639_1": "en", - "file_path": "/xoznyg9SNXjHPwT9kMMrPr6vW34.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 911 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/aS3mnTkt6cnPcndb0l3F0J7GTDK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "tr", - "file_path": "/zP9mNbn55fNGdbHOAqzMt07aN4s.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/tObrbSUlTGurumll1SaIeVf14TT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/rvy5WHZMY8YEaCmJjNvD9DW73AR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/hCsXU4l8NdhmQTaLknzg9em73tF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/layouts/Layout.astro b/examples/view-transitions/src/layouts/Layout.astro deleted file mode 100644 index 39a73bca0..000000000 --- a/examples/view-transitions/src/layouts/Layout.astro +++ /dev/null @@ -1,36 +0,0 @@ ---- -import '../styles/styles.css'; -import { ViewTransitions } from 'astro:transitions'; -import Footer from '../components/Footer.astro'; -import Nav from '../components/Nav.astro'; - -export interface Props { - title: string; -} - -const { title } = Astro.props as Props; ---- - -<!doctype html> -<html lang="en"> - <head> - <meta charset="UTF-8" /> - <meta name="viewport" content="width=device-width" /> - <link rel="icon" type="image/x-icon" href="/favicon.ico" /> - <meta name="generator" content={Astro.generator} /> - <meta name="view-transition" content="same-origin" /> - <title>{title}</title> - <ViewTransitions /> - </head> - <body class="font-sans bg-gray-900 text-white"> - <div class="h-screen overflow-hidden flex flex-col"> - <Nav /> - <div id="container" class="h-full flex-1 overflow-y-auto"> - <div id="content"> - <slot /> - </div> - <Footer /> - </div> - </div> - </body> -</html> diff --git a/examples/view-transitions/src/pages/index.astro b/examples/view-transitions/src/pages/index.astro deleted file mode 100644 index 3d2485948..000000000 --- a/examples/view-transitions/src/pages/index.astro +++ /dev/null @@ -1,8 +0,0 @@ ---- -import Layout from '../layouts/Layout.astro'; -import MovieList from '../components/MovieList.astro'; ---- - -<Layout title="Movies List"> - <MovieList /> -</Layout> diff --git a/examples/view-transitions/src/pages/movies/[id].astro b/examples/view-transitions/src/pages/movies/[id].astro deleted file mode 100644 index 9b7326f4e..000000000 --- a/examples/view-transitions/src/pages/movies/[id].astro +++ /dev/null @@ -1,12 +0,0 @@ ---- -import Layout from '../../layouts/Layout.astro'; -import MovieDetails from '../../components/MovieDetails.astro'; -import { getDataEntryById } from 'astro:content'; - -const result = await getDataEntryById('movies', Astro.params.id as any); -const data = result.data.data; ---- - -<Layout title={`${data.title} on Movies List`}> - <MovieDetails data={data} /> -</Layout> diff --git a/examples/view-transitions/src/popular-movies.json b/examples/view-transitions/src/popular-movies.json deleted file mode 100644 index 32378a17f..000000000 --- a/examples/view-transitions/src/popular-movies.json +++ /dev/null @@ -1,327 +0,0 @@ -{ - "page": 1, - "results": [ - { - "adult": false, - "backdrop_path": "/iIvQnZyzgx9TkbrOgcXx0p7aLiq.jpg", - "genre_ids": [27, 53], - "id": 1008042, - "original_language": "en", - "original_title": "Talk to Me", - "overview": "When a group of friends discover how to conjure spirits using an embalmed hand, they become hooked on the new thrill, until one of them goes too far and unleashes terrifying supernatural forces.", - "popularity": 2292.177, - "poster_path": "/kdPMUMJzyYAc4roD52qavX0nLIC.jpg", - "release_date": "2023-07-26", - "title": "Talk to Me", - "video": false, - "vote_average": 7.3, - "vote_count": 686 - }, - { - "adult": false, - "backdrop_path": "/ctMserH8g2SeOAnCw5gFjdQF8mo.jpg", - "genre_ids": [35, 12, 14], - "id": 346698, - "original_language": "en", - "original_title": "Barbie", - "overview": "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.", - "popularity": 1899.184, - "poster_path": "/iuFNMS8U5cb6xfzi51Dbkovj7vM.jpg", - "release_date": "2023-07-19", - "title": "Barbie", - "video": false, - "vote_average": 7.3, - "vote_count": 4757 - }, - { - "adult": false, - "backdrop_path": "/4XM8DUTQb3lhLemJC51Jx4a2EuA.jpg", - "genre_ids": [28, 80, 53], - "id": 385687, - "original_language": "en", - "original_title": "Fast X", - "overview": "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.", - "popularity": 1973.052, - "poster_path": "/fiVW06jE7z9YnO4trhaMEdclSiC.jpg", - "release_date": "2023-05-17", - "title": "Fast X", - "video": false, - "vote_average": 7.3, - "vote_count": 3749 - }, - { - "adult": false, - "backdrop_path": "/8pjWz2lt29KyVGoq1mXYu6Br7dE.jpg", - "genre_ids": [28, 878, 27], - "id": 615656, - "original_language": "en", - "original_title": "Meg 2: The Trench", - "overview": "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.", - "popularity": 1804.581, - "poster_path": "/4m1Au3YkjqsxF8iwQy0fPYSxE0h.jpg", - "release_date": "2023-08-02", - "title": "Meg 2: The Trench", - "video": false, - "vote_average": 7, - "vote_count": 1823 - }, - { - "adult": false, - "backdrop_path": "/c6Splshb8lb2Q9OvUfhpqXl7uP0.jpg", - "genre_ids": [28, 53], - "id": 717930, - "original_language": "en", - "original_title": "Kandahar", - "overview": "After his mission is exposed, an undercover CIA operative stuck deep in hostile territory in Afghanistan must fight his way out, alongside his Afghan translator, to an extraction point in Kandahar, all whilst avoiding elite enemy forces and foreign spies tasked with hunting them down.", - "popularity": 1206.966, - "poster_path": "/lCanGgsqF4xD2WA5NF8PWeT3IXd.jpg", - "release_date": "2023-05-25", - "title": "Kandahar", - "video": false, - "vote_average": 6.8, - "vote_count": 507 - }, - { - "adult": false, - "backdrop_path": "/53z2fXEKfnNg2uSOPss2unPBGX1.jpg", - "genre_ids": [27, 9648, 53], - "id": 968051, - "original_language": "en", - "original_title": "The Nun II", - "overview": "In 1956 France, a priest is violently murdered, and Sister Irene begins to investigate. She once again comes face-to-face with a powerful evil.", - "popularity": 1296.77, - "poster_path": "/5gzzkR7y3hnY8AD1wXjCnVlHba5.jpg", - "release_date": "2023-09-06", - "title": "The Nun II", - "video": false, - "vote_average": 6.7, - "vote_count": 229 - }, - { - "adult": false, - "backdrop_path": "/4fLZUr1e65hKPPVw0R3PmKFKxj1.jpg", - "genre_ids": [16, 35, 10751, 14, 10749], - "id": 976573, - "original_language": "en", - "original_title": "Elemental", - "overview": "In a city where fire, water, land and air residents live together, a fiery young woman and a go-with-the-flow guy will discover something elemental: how much they have in common.", - "popularity": 953.333, - "poster_path": "/4Y1WNkd88JXmGfhtWR7dmDAo1T2.jpg", - "release_date": "2023-06-14", - "title": "Elemental", - "video": false, - "vote_average": 7.8, - "vote_count": 2182 - }, - { - "adult": false, - "backdrop_path": "/H6j5smdpRqP9a8UnhWp6zfl0SC.jpg", - "genre_ids": [28, 878, 12], - "id": 565770, - "original_language": "en", - "original_title": "Blue Beetle", - "overview": "Recent college grad Jaime Reyes returns home full of aspirations for his future, only to find that home is not quite as he left it. As he searches to find his purpose in the world, fate intervenes when Jaime unexpectedly finds himself in possession of an ancient relic of alien biotechnology: the Scarab.", - "popularity": 1007.105, - "poster_path": "/vNfL4DYnonltukBrrgMmw94zMYL.jpg", - "release_date": "2023-08-16", - "title": "Blue Beetle", - "video": false, - "vote_average": 7.2, - "vote_count": 541 - }, - { - "adult": false, - "backdrop_path": "/9m161GawbY3cWxe6txd1NOHTjd0.jpg", - "genre_ids": [878, 12, 28, 14], - "id": 335977, - "original_language": "en", - "original_title": "Indiana Jones and the Dial of Destiny", - "overview": "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.", - "popularity": 804.982, - "poster_path": "/Af4bXE63pVsb2FtbW8uYIyPBadD.jpg", - "release_date": "2023-06-28", - "title": "Indiana Jones and the Dial of Destiny", - "video": false, - "vote_average": 6.7, - "vote_count": 1650 - }, - { - "adult": false, - "backdrop_path": "/jkKVLzLWjSvTnc84VzeljhSy6j8.jpg", - "genre_ids": [10749, 18], - "id": 820525, - "original_language": "en", - "original_title": "After Everything", - "overview": "Besieged by writer’s block and the crushing breakup with Tessa, Hardin travels to Portugal in search of a woman he wronged in the past – and to find himself. Hoping to win back Tessa, he realizes he needs to change his ways before he can make the ultimate commitment.", - "popularity": 650.272, - "poster_path": "/gZLGCibvFY4zmt8sWUZcbBTHRtk.jpg", - "release_date": "2023-09-13", - "title": "After Everything", - "video": false, - "vote_average": 6.4, - "vote_count": 27 - }, - { - "adult": false, - "backdrop_path": "/waBWlJlMpyFb7STkFHfFvJKgwww.jpg", - "genre_ids": [28, 18], - "id": 678512, - "original_language": "en", - "original_title": "Sound of Freedom", - "overview": "The story of Tim Ballard, a former US government agent, who quits his job in order to devote his life to rescuing children from global sex traffickers.", - "popularity": 668.456, - "poster_path": "/kSf9svfL2WrKeuK8W08xeR5lTn8.jpg", - "release_date": "2023-07-03", - "title": "Sound of Freedom", - "video": false, - "vote_average": 8, - "vote_count": 458 - }, - { - "adult": false, - "backdrop_path": "/iiXliCeykkzmJ0Eg9RYJ7F2CWSz.jpg", - "genre_ids": [28, 9648, 53, 80], - "id": 762430, - "original_language": "en", - "original_title": "Retribution", - "overview": "When a mysterious caller puts a bomb under his car seat, Matt Turner begins a high-speed chase across the city to complete a specific series of tasks. With his kids trapped in the back seat and a bomb that will explode if they get out of the car, a normal commute becomes a twisted game of life or death as Matt follows the stranger's increasingly dangerous instructions in a race against time to save his family.", - "popularity": 702.724, - "poster_path": "/oUmmY7QWWn7OhKlcPOnirHJpP1F.jpg", - "release_date": "2023-08-23", - "title": "Retribution", - "video": false, - "vote_average": 6.6, - "vote_count": 130 - }, - { - "adult": false, - "backdrop_path": "/2vFuG6bWGyQUzYS9d69E5l85nIz.jpg", - "genre_ids": [28, 12, 878], - "id": 667538, - "original_language": "en", - "original_title": "Transformers: Rise of the Beasts", - "overview": "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.", - "popularity": 650.789, - "poster_path": "/gPbM0MK8CP8A174rmUwGsADNYKD.jpg", - "release_date": "2023-06-06", - "title": "Transformers: Rise of the Beasts", - "video": false, - "vote_average": 7.5, - "vote_count": 3189 - }, - { - "adult": false, - "backdrop_path": "/w2nFc2Rsm93PDkvjY4LTn17ePO0.jpg", - "genre_ids": [16, 35, 28], - "id": 614930, - "original_language": "en", - "original_title": "Teenage Mutant Ninja Turtles: Mutant Mayhem", - "overview": "After years of being sheltered from the human world, the Turtle brothers set out to win the hearts of New Yorkers and be accepted as normal teenagers through heroic acts. Their new friend April O'Neil helps them take on a mysterious crime syndicate, but they soon get in over their heads when an army of mutants is unleashed upon them.", - "popularity": 644.874, - "poster_path": "/oupWWrVuCgNEa5GcjdkpjCYbx2X.jpg", - "release_date": "2023-07-31", - "title": "Teenage Mutant Ninja Turtles: Mutant Mayhem", - "video": false, - "vote_average": 7.3, - "vote_count": 541 - }, - { - "adult": false, - "backdrop_path": "/yF1eOkaYvwiORauRCPWznV9xVvi.jpg", - "genre_ids": [28, 12, 878], - "id": 298618, - "original_language": "en", - "original_title": "The Flash", - "overview": "When his attempt to save his family inadvertently alters the future, Barry Allen becomes trapped in a reality in which General Zod has returned and there are no Super Heroes to turn to. In order to save the world that he is in and return to the future that he knows, Barry's only hope is to race for his life. But will making the ultimate sacrifice be enough to reset the universe?", - "popularity": 561.181, - "poster_path": "/rktDFPbfHfUbArZ6OOOKsXcv0Bm.jpg", - "release_date": "2023-06-13", - "title": "The Flash", - "video": false, - "vote_average": 6.9, - "vote_count": 2873 - }, - { - "adult": false, - "backdrop_path": "/4HodYYKEIsGOdinkGi2Ucz6X9i0.jpg", - "genre_ids": [16, 28, 12], - "id": 569094, - "original_language": "en", - "original_title": "Spider-Man: Across the Spider-Verse", - "overview": "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.", - "popularity": 842.076, - "poster_path": "/8Vt6mWEReuy4Of61Lnj5Xj704m8.jpg", - "release_date": "2023-05-31", - "title": "Spider-Man: Across the Spider-Verse", - "video": false, - "vote_average": 8.5, - "vote_count": 4261 - }, - { - "adult": false, - "backdrop_path": "/9fOfsVHZHig6MHPHczv0zMY6cKc.jpg", - "genre_ids": [28, 53, 10752, 18], - "id": 1880, - "original_language": "en", - "original_title": "Red Dawn", - "overview": "It is the dawn of World War III. In mid-western America, a group of teenagers band together to defend their town—and their country—from invading Soviet forces.", - "popularity": 579.024, - "poster_path": "/a2GkHcioc2QEFJbQk1NTB85u3vD.jpg", - "release_date": "1984-08-10", - "title": "Red Dawn", - "video": false, - "vote_average": 6.3, - "vote_count": 670 - }, - { - "adult": false, - "backdrop_path": "/3mYCjwll5RG342Dz1f8HcnT8tV.jpg", - "genre_ids": [28, 80], - "id": 606403, - "original_language": "ko", - "original_title": "특송", - "overview": "Eun-ha, who is a normal junkyard employee, secretly works as a delivery clerk that deals with unusual delivery requests. One day, Eun-ha heads to Seoul to pick up a client who is involved in a gambling crime that wants to flee overseas. However, Eun-ha meets the client's young son at the pick-up point, instead of the client himself. Kyeong-pil, a current police officer who is actually masterminding the whole gambling crime, chases after the missing child who has the security key to the bank account that holds 30 million dollars.", - "popularity": 525.582, - "poster_path": "/fYT7JB4sU1XXeawEXOdQ3TtkFB2.jpg", - "release_date": "2022-01-12", - "title": "Special Delivery", - "video": false, - "vote_average": 6.9, - "vote_count": 105 - }, - { - "adult": false, - "backdrop_path": "/rV56FkcHkzHJcBOOqoCeSDnoBff.jpg", - "genre_ids": [28, 18], - "id": 990140, - "original_language": "cn", - "original_title": "天龍八部之喬峰傳", - "overview": "Qiao Feng is the respected leader of a roving band of martial artists. After he is wrongfully accused of murder and subsequently exiled, Qiao Feng goes on the run in search of answers about his own mysterious origin story—and the unknown enemies working to destroy him from the shadows.", - "popularity": 522.83, - "poster_path": "/jGKCpt3zzbGZbgoza6HCvecqElM.jpg", - "release_date": "2023-01-16", - "title": "Sakra", - "video": false, - "vote_average": 6.6, - "vote_count": 86 - }, - { - "adult": false, - "backdrop_path": "/4wVFtesa5YEWuAUHRcxoCN1Y1uN.jpg", - "genre_ids": [28, 53], - "id": 1085218, - "original_language": "da", - "original_title": "Underverden 2", - "overview": "Seven years ago, Zaid went to war against the Copenhagen underworld to avenge his dead brother. His identity as a respected doctor of cardiology and life as a family man is but a fading dream, and in prison Zaid suffers the loss of his son Noah, whom he barely knows. When a police agent approaches Zaid and offers him a deal to be released in exchange for infiltrating the Copenhagen underworld, he sees his chance to reclaim the remnants of the family life he left behind. But everything has a price, and Zaid realizes that he has now seriously endangered his son's life. After all, once you become part of the underworld, is there any way out?", - "popularity": 524.476, - "poster_path": "/c8B4DsVcFVDLVmbpHMHU3RjLNAV.jpg", - "release_date": "2023-04-13", - "title": "Darkland: The Return", - "video": false, - "vote_average": 6.2, - "vote_count": 59 - } - ], - "total_pages": 40154, - "total_results": 803062 -} diff --git a/examples/view-transitions/src/scripts/spa-navigation.js b/examples/view-transitions/src/scripts/spa-navigation.js deleted file mode 100644 index bb96bce7b..000000000 --- a/examples/view-transitions/src/scripts/spa-navigation.js +++ /dev/null @@ -1,254 +0,0 @@ -import { - getNavigationType, - getPathId, - isBackNavigation, - shouldNotIntercept, - updateTheDOMSomehow, - useTvFragment, -} from './utils'; - -// View Transitions support cross-document navigations. -// Should compare performance. -// https://github.com/WICG/view-transitions/blob/main/explainer.md#cross-document-same-origin-transitions -// https://github.com/WICG/view-transitions/blob/main/explainer.md#script-events -function shouldDisableSpa() { - return false; -} - -navigation.addEventListener('navigate', (navigateEvent) => { - if (shouldDisableSpa()) return; - if (shouldNotIntercept(navigateEvent)) return; - - const toUrl = new URL(navigateEvent.destination.url); - const toPath = toUrl.pathname; - const fromPath = location.pathname; - const navigationType = getNavigationType(fromPath, toPath); - - if (location.origin !== toUrl.origin) return; - - switch (navigationType) { - case 'home-to-movie': - case 'tv-to-show': - handleHomeToMovieTransition(navigateEvent, getPathId(toPath)); - break; - case 'movie-to-home': - case 'show-to-tv': - handleMovieToHomeTransition(navigateEvent, getPathId(fromPath)); - break; - case 'movie-to-person': - handleMovieToPersonTransition(navigateEvent, getPathId(fromPath), getPathId(toPath)); - break; - case 'person-to-movie': - case 'person-to-show': - handlePersonToMovieTransition(navigateEvent, getPathId(fromPath), getPathId(toPath)); - break; - default: - return; - } -}); - -// TODO: https://developer.chrome.com/docs/web-platform/view-transitions/#transitions-as-an-enhancement -function handleHomeToMovieTransition(navigateEvent, movieId) { - navigateEvent.intercept({ - async handler() { - const fragmentUrl = useTvFragment(navigateEvent) - ? '/fragments/TvDetails' - : '/fragments/MovieDetails'; - const response = await fetch(`${fragmentUrl}/${movieId}`); - const data = await response.text(); - - if (!document.startViewTransition) { - updateTheDOMSomehow(data); - return; - } - - const thumbnail = document.getElementById(`movie-poster-${movieId}`); - if (thumbnail) { - thumbnail.style.viewTransitionName = 'movie-poster'; - } - - const transition = document.startViewTransition(() => { - if (thumbnail) { - thumbnail.style.viewTransitionName = ''; - } - document.getElementById('container').scrollTop = 0; - updateTheDOMSomehow(data); - }); - - await transition.finished; - }, - }); -} - -function handleMovieToHomeTransition(navigateEvent, movieId) { - navigateEvent.intercept({ - scroll: 'manual', - async handler() { - const fragmentUrl = useTvFragment(navigateEvent) - ? '/fragments/TvList' - : '/fragments/MovieList'; - const response = await fetch(fragmentUrl); - const data = await response.text(); - - if (!document.startViewTransition) { - updateTheDOMSomehow(data); - return; - } - - const tempHomePage = document.createElement('div'); - const moviePoster = document.getElementById(`movie-poster`); - let thumbnail; - - // If the movie poster is not in the home page, removes the transition style so that - // the poster doesn't stay on the page while transitioning - tempHomePage.innerHTML = data; - if (!tempHomePage.querySelector(`#movie-poster-${movieId}`)) { - moviePoster?.classList.remove('movie-poster'); - } - - const transition = document.startViewTransition(() => { - updateTheDOMSomehow(data); - - thumbnail = document.getElementById(`movie-poster-${movieId}`); - if (thumbnail) { - thumbnail.scrollIntoViewIfNeeded(); - thumbnail.style.viewTransitionName = 'movie-poster'; - } - }); - - await transition.finished; - - if (thumbnail) { - thumbnail.style.viewTransitionName = ''; - } - }, - }); -} - -function handleMovieToPersonTransition(navigateEvent, movieId, personId) { - // TODO: https://developer.chrome.com/docs/web-platform/view-transitions/#not-a-polyfill - // ...has example of `back-transition` class applied to document - const isBack = isBackNavigation(navigateEvent); - - navigateEvent.intercept({ - async handler() { - const response = await fetch('/fragments/PersonDetails/' + personId); - const data = await response.text(); - - if (!document.startViewTransition) { - updateTheDOMSomehow(data); - return; - } - - let personThumbnail; - let moviePoster; - let movieThumbnail; - - if (!isBack) { - // We're transitioning the person photo; we need to remove the transition of the poster - // so that it doesn't stay on the page while transitioning - moviePoster = document.getElementById(`movie-poster`); - if (moviePoster) { - moviePoster.classList.remove('movie-poster'); - } - - personThumbnail = document.getElementById(`person-photo-${personId}`); - if (personThumbnail) { - personThumbnail.style.viewTransitionName = 'person-photo'; - } - } - - const transition = document.startViewTransition(() => { - updateTheDOMSomehow(data); - - if (personThumbnail) { - personThumbnail.style.viewTransitionName = ''; - } - - if (isBack) { - // If we're coming back to the person page, we're transitioning - // into the movie poster thumbnail, so we need to add the tag to it - movieThumbnail = document.getElementById(`movie-poster-${movieId}`); - if (movieThumbnail) { - movieThumbnail.scrollIntoViewIfNeeded(); - movieThumbnail.style.viewTransitionName = 'movie-poster'; - } - } - - document.getElementById('container').scrollTop = 0; - }); - - await transition.finished; - - if (movieThumbnail) { - movieThumbnail.style.viewTransitionName = ''; - } - }, - }); -} - -function handlePersonToMovieTransition(navigateEvent, personId, movieId) { - const isBack = isBackNavigation(navigateEvent); - - navigateEvent.intercept({ - scroll: 'manual', - async handler() { - const fragmentUrl = useTvFragment(navigateEvent) - ? '/fragments/TvDetails' - : '/fragments/MovieDetails'; - const response = await fetch(`${fragmentUrl}/${movieId}`); - const data = await response.text(); - - if (!document.startViewTransition) { - updateTheDOMSomehow(data); - return; - } - - let thumbnail; - let moviePoster; - let movieThumbnail; - - if (!isBack) { - movieThumbnail = document.getElementById(`movie-poster-${movieId}`); - if (movieThumbnail) { - movieThumbnail.style.viewTransitionName = 'movie-poster'; - } - } - - const transition = document.startViewTransition(() => { - updateTheDOMSomehow(data); - - if (isBack) { - moviePoster = document.getElementById(`movie-poster`); - if (moviePoster) { - moviePoster.classList.remove('movie-poster'); - } - - if (personId) { - thumbnail = document.getElementById(`person-photo-${personId}`); - if (thumbnail) { - thumbnail.scrollIntoViewIfNeeded(); - thumbnail.style.viewTransitionName = 'person-photo'; - } - } - } else { - document.getElementById('container').scrollTop = 0; - - if (movieThumbnail) { - movieThumbnail.style.viewTransitionName = ''; - } - } - }); - - await transition.finished; - - if (thumbnail) { - thumbnail.style.viewTransitionName = ''; - } - - if (moviePoster) { - moviePoster.classList.add('movie-poster'); - } - }, - }); -} diff --git a/examples/view-transitions/src/scripts/utils.js b/examples/view-transitions/src/scripts/utils.js deleted file mode 100644 index 5b7f78535..000000000 --- a/examples/view-transitions/src/scripts/utils.js +++ /dev/null @@ -1,76 +0,0 @@ -export function getNavigationType(fromPath, toPath) { - if (fromPath.startsWith('/movies') && toPath === '/') { - return 'movie-to-home'; - } - - if (fromPath === '/tv' && toPath.startsWith('/tv/')) { - return 'tv-to-show'; - } - - if (fromPath === '/' && toPath.startsWith('/movies')) { - return 'home-to-movie'; - } - - if (fromPath.startsWith('/tv/') && toPath === '/tv') { - return 'show-to-tv'; - } - - if ( - (fromPath.startsWith('/movies') || fromPath.startsWith('/tv')) && - toPath.startsWith('/people') - ) { - return 'movie-to-person'; - } - - if ( - fromPath.startsWith('/people') && - (toPath.startsWith('/movies') || toPath.startsWith('/tv/')) - ) { - return 'person-to-movie'; - } - - return 'other'; -} - -export function isBackNavigation(navigateEvent) { - if (navigateEvent.navigationType === 'push' || navigateEvent.navigationType === 'replace') { - return false; - } - if ( - navigateEvent.destination.index !== -1 && - navigateEvent.destination.index < navigation.currentEntry.index - ) { - return true; - } - return false; -} - -export function shouldNotIntercept(navigationEvent) { - return ( - navigationEvent.canIntercept === false || - // If this is just a hashChange, - // just let the browser handle scrolling to the content. - navigationEvent.hashChange || - // If this is a download, - // let the browser perform the download. - navigationEvent.downloadRequest || - // If this is a form submission, - // let that go to the server. - navigationEvent.formData - ); -} - -export function useTvFragment(navigateEvent) { - const toUrl = new URL(navigateEvent.destination.url); - const toPath = toUrl.pathname; - - return toPath.startsWith('/tv'); -} - -export function getPathId(path) { - return path.split('/')[2]; -} - -export function updateTheDOMSomehow(data) { - document.getElementById('content').innerHTML = data; -} diff --git a/examples/view-transitions/src/styles/styles.css b/examples/view-transitions/src/styles/styles.css deleted file mode 100644 index aab69ac14..000000000 --- a/examples/view-transitions/src/styles/styles.css +++ /dev/null @@ -1,63 +0,0 @@ -@keyframes fade-in { - from { - opacity: 0; - } -} - -@keyframes fade-out { - to { - opacity: 0; - } -} - -@keyframes slide-from-right { - from { - transform: translateX(30px); - } -} - -@keyframes slide-to-left { - to { - transform: translateX(-30px); - } -} - -::view-transition-old(root) { - animation: - 90ms cubic-bezier(0.4, 0, 1, 1) both fade-out, - 300ms cubic-bezier(0.4, 0, 0.2, 1) both slide-to-left; -} - -::view-transition-new(root) { - animation: - 210ms cubic-bezier(0, 0, 0.2, 1) 90ms both fade-in, - 300ms cubic-bezier(0.4, 0, 0.2, 1) both slide-from-right; -} - -::view-transition-old(movie-poster), -::view-transition-new(movie-poster) { - animation: none; - mix-blend-mode: normal; -} - -::view-transition-image-pair(movie-poster) { - isolation: none; -} - -.nav { - view-transition-name: main-header; - contain: paint; -} - -.movie-poster { - contain: paint; -} - -.person-photo { - view-transition-name: person-photo; - contain: paint; -} - -.thumbnail { - contain: paint; -} diff --git a/examples/view-transitions/tailwind.config.cjs b/examples/view-transitions/tailwind.config.cjs deleted file mode 100644 index 13e340af8..000000000 --- a/examples/view-transitions/tailwind.config.cjs +++ /dev/null @@ -1,12 +0,0 @@ -/** @type {import('tailwindcss').Config} */ -module.exports = { - content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'], - theme: { - extend: { - width: { - 96: '24rem', - }, - }, - }, - plugins: [], -}; diff --git a/examples/view-transitions/tsconfig.json b/examples/view-transitions/tsconfig.json deleted file mode 100644 index d9bbfacf8..000000000 --- a/examples/view-transitions/tsconfig.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "astro/tsconfigs/base", - "compilerOptions": { - "resolveJsonModule": true - } -} diff --git a/examples/with-markdown-plugins/.codesandbox/Dockerfile b/examples/with-markdown-plugins/.codesandbox/Dockerfile deleted file mode 100644 index c3b5c81a1..000000000 --- a/examples/with-markdown-plugins/.codesandbox/Dockerfile +++ /dev/null @@ -1 +0,0 @@ -FROM node:18-bullseye diff --git a/examples/with-markdown-plugins/.gitignore b/examples/with-markdown-plugins/.gitignore deleted file mode 100644 index 16d54bb13..000000000 --- a/examples/with-markdown-plugins/.gitignore +++ /dev/null @@ -1,24 +0,0 @@ -# build output -dist/ -# generated types -.astro/ - -# dependencies -node_modules/ - -# logs -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* - - -# environment variables -.env -.env.production - -# macOS-specific files -.DS_Store - -# jetbrains setting folder -.idea/ diff --git a/examples/with-markdown-plugins/README.md b/examples/with-markdown-plugins/README.md deleted file mode 100644 index 91811541a..000000000 --- a/examples/with-markdown-plugins/README.md +++ /dev/null @@ -1,11 +0,0 @@ -# Astro Example: Markdown with Plugins - -```sh -npm create astro@latest -- --template with-markdown-plugins -``` - -[](https://stackblitz.com/github/withastro/astro/tree/latest/examples/with-markdown-plugins) -[](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/with-markdown-plugins) -[](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/with-markdown-plugins/devcontainer.json) - -This example showcases Astro's [built-in Markdown support](https://docs.astro.build/en/guides/markdown-content/) with additional, user-provided plugins. diff --git a/examples/with-markdown-plugins/add-classes.mjs b/examples/with-markdown-plugins/add-classes.mjs deleted file mode 100644 index 39acabd52..000000000 --- a/examples/with-markdown-plugins/add-classes.mjs +++ /dev/null @@ -1,18 +0,0 @@ -import { selectAll } from 'hast-util-select'; - -export default (additions) => { - const adders = Object.entries(additions).map(adder); - return (node) => adders.forEach((a) => a(node)); -}; - -const adder = ([selector, className]) => { - const writer = write(className); - return (node) => selectAll(selector, node).forEach(writer); -}; - -const write = - (className) => - ({ properties }) => { - if (!properties.className) properties.className = className; - else properties.className += ` ${className}`; - }; diff --git a/examples/with-markdown-plugins/astro.config.mjs b/examples/with-markdown-plugins/astro.config.mjs deleted file mode 100644 index af2d96e75..000000000 --- a/examples/with-markdown-plugins/astro.config.mjs +++ /dev/null @@ -1,16 +0,0 @@ -import { defineConfig } from 'astro/config'; -import addClasses from './add-classes.mjs'; - -// https://astro.build/config -export default defineConfig({ - // Enable Custom Markdown options, plugins, etc. - markdown: { - remarkPlugins: ['remark-code-titles'], - rehypePlugins: [ - 'rehype-slug', - ['rehype-autolink-headings', { behavior: 'prepend' }], - ['rehype-toc', { headings: ['h2', 'h3'] }], - [addClasses, { 'h1,h2,h3': 'title' }], - ], - }, -}); diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json deleted file mode 100644 index 8870481b3..000000000 --- a/examples/with-markdown-plugins/package.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name": "@example/with-markdown-plugins", - "type": "module", - "version": "0.0.2", - "private": true, - "scripts": { - "dev": "astro dev", - "start": "astro dev", - "build": "astro build", - "preview": "astro preview", - "astro": "astro" - }, - "dependencies": { - "@astrojs/markdown-remark": "^5.3.0", - "astro": "^4.16.0", - "hast-util-select": "^6.0.2", - "rehype-autolink-headings": "^7.1.0", - "rehype-slug": "^6.0.0", - "rehype-toc": "^3.0.2", - "remark-code-titles": "^0.1.2" - } -} diff --git a/examples/with-markdown-plugins/public/favicon.svg b/examples/with-markdown-plugins/public/favicon.svg deleted file mode 100644 index f157bd1c5..000000000 --- a/examples/with-markdown-plugins/public/favicon.svg +++ /dev/null @@ -1,9 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 128 128"> - <path d="M50.4 78.5a75.1 75.1 0 0 0-28.5 6.9l24.2-65.7c.7-2 1.9-3.2 3.4-3.2h29c1.5 0 2.7 1.2 3.4 3.2l24.2 65.7s-11.6-7-28.5-7L67 45.5c-.4-1.7-1.6-2.8-2.9-2.8-1.3 0-2.5 1.1-2.9 2.7L50.4 78.5Zm-1.1 28.2Zm-4.2-20.2c-2 6.6-.6 15.8 4.2 20.2a17.5 17.5 0 0 1 .2-.7 5.5 5.5 0 0 1 5.7-4.5c2.8.1 4.3 1.5 4.7 4.7.2 1.1.2 2.3.2 3.5v.4c0 2.7.7 5.2 2.2 7.4a13 13 0 0 0 5.7 4.9v-.3l-.2-.3c-1.8-5.6-.5-9.5 4.4-12.8l1.5-1a73 73 0 0 0 3.2-2.2 16 16 0 0 0 6.8-11.4c.3-2 .1-4-.6-6l-.8.6-1.6 1a37 37 0 0 1-22.4 2.7c-5-.7-9.7-2-13.2-6.2Z" /> - <style> - path { fill: #000; } - @media (prefers-color-scheme: dark) { - path { fill: #FFF; } - } - </style> -</svg> diff --git a/examples/with-markdown-plugins/src/env.d.ts b/examples/with-markdown-plugins/src/env.d.ts deleted file mode 100644 index e16c13c69..000000000 --- a/examples/with-markdown-plugins/src/env.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// <reference path="../.astro/types.d.ts" /> diff --git a/examples/with-markdown-plugins/src/layouts/main.astro b/examples/with-markdown-plugins/src/layouts/main.astro deleted file mode 100644 index 80e81fb42..000000000 --- a/examples/with-markdown-plugins/src/layouts/main.astro +++ /dev/null @@ -1,34 +0,0 @@ ---- -import '../styles/global.css'; - -const { content } = Astro.props; ---- - -<html lang={content.lang || 'en'}> - <head> - <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width" /> - <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> - <title>{content.title}</title> - <style> - .nav { - border-bottom: 1px solid #ccc; - margin-bottom: 40px; - padding-bottom: 20px; - } - .nav > * + * { - margin-left: 10px; - } - </style> - </head> - <body> - <main class="content"> - <header> - <nav class="nav"> - <a href="/">Home</a> - </nav> - </header> - <slot /> - </main> - </body> -</html> diff --git a/examples/with-markdown-plugins/src/pages/index.md b/examples/with-markdown-plugins/src/pages/index.md deleted file mode 100644 index 75e184153..000000000 --- a/examples/with-markdown-plugins/src/pages/index.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -layout: ../layouts/main.astro -title: Astro with Remark Plugins ---- - -# Heading 1 - -Sint ullamco sint ut irure laborum occaecat anim minim tempor enim dolore reprehenderit Lorem. Sit qui nisi in quis ut consequat minim. Ad commodo officia nisi culpa proident duis culpa eu reprehenderit incididunt do fugiat proident tempor. Et velit dolor aliqua dolor ipsum. Sunt eiusmod amet enim ut. - -## Heading 2 - -Sint ullamco sint ut irure laborum occaecat anim minim tempor enim dolore reprehenderit Lorem. Sit qui nisi in quis ut consequat minim. Ad commodo officia nisi culpa proident duis culpa eu reprehenderit incididunt do fugiat proident tempor. Et velit dolor aliqua dolor ipsum. Sunt eiusmod amet enim ut. - -### Heading 3 - -Sint ullamco sint ut irure laborum occaecat anim minim tempor enim dolore reprehenderit Lorem. Sit qui nisi in quis ut consequat minim. Ad commodo officia nisi culpa proident duis culpa eu reprehenderit incididunt do fugiat proident tempor. Et velit dolor aliqua dolor ipsum. Sunt eiusmod amet enim ut. - -### Heading 3 - -Sint ullamco sint ut irure laborum occaecat anim minim tempor enim dolore reprehenderit Lorem. Sit qui nisi in quis ut consequat minim. Ad commodo officia nisi culpa proident duis culpa eu reprehenderit incididunt do fugiat proident tempor. Et velit dolor aliqua dolor ipsum. Sunt eiusmod amet enim ut. - -```jsx:file.jsx -import Router from 'next/router' - -function MyComponent() { - const [show, setShow] = useState(false) - - useEffect(() => { - console.log(2) - }, []) - - return <>...</> -} -``` diff --git a/examples/with-markdown-plugins/src/styles/global.css b/examples/with-markdown-plugins/src/styles/global.css deleted file mode 100644 index ced30f0a2..000000000 --- a/examples/with-markdown-plugins/src/styles/global.css +++ /dev/null @@ -1,53 +0,0 @@ -body { - font-family: system-ui; -} - -.content { - max-width: 640px; - margin: 40px auto; - padding: 0 20px; -} - -.title { - position: relative; -} -.title a { - position: absolute; - display: block; - height: 100%; - width: 100%; - color: inherit; -} - -.title a:before { - position: absolute; - right: 100%; - display: block; - content: '#'; - margin-right: 0.2em; - visibility: hidden; - opacity: 0.5; -} - -.title:hover a:before { - visibility: visible; -} - -.remark-code-title, -pre[class^='language-'] { - padding: 10px; - margin: 0; -} - -.remark-code-title { - border-bottom: 1px solid rgba(0, 0, 0, 0.05); - border-radius: 4px 4px 0 0; - background: rgba(0, 0, 0, 0.08); - font-family: monospace; - font-weight: bold; -} - -pre[class^='language-'] { - background: rgba(0, 0, 0, 0.05); - border-radius: 0 0 4px 4px; -} diff --git a/examples/with-markdown-plugins/tsconfig.json b/examples/with-markdown-plugins/tsconfig.json deleted file mode 100644 index d78f81ec4..000000000 --- a/examples/with-markdown-plugins/tsconfig.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "astro/tsconfigs/base" -} diff --git a/examples/with-markdown-shiki/.codesandbox/Dockerfile b/examples/with-markdown-shiki/.codesandbox/Dockerfile deleted file mode 100644 index c3b5c81a1..000000000 --- a/examples/with-markdown-shiki/.codesandbox/Dockerfile +++ /dev/null @@ -1 +0,0 @@ -FROM node:18-bullseye diff --git a/examples/with-markdown-shiki/.gitignore b/examples/with-markdown-shiki/.gitignore deleted file mode 100644 index 16d54bb13..000000000 --- a/examples/with-markdown-shiki/.gitignore +++ /dev/null @@ -1,24 +0,0 @@ -# build output -dist/ -# generated types -.astro/ - -# dependencies -node_modules/ - -# logs -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* - - -# environment variables -.env -.env.production - -# macOS-specific files -.DS_Store - -# jetbrains setting folder -.idea/ diff --git a/examples/with-markdown-shiki/README.md b/examples/with-markdown-shiki/README.md deleted file mode 100644 index 72251f6ba..000000000 --- a/examples/with-markdown-shiki/README.md +++ /dev/null @@ -1,13 +0,0 @@ -# Astro Example: Markdown with Shiki - -```sh -npm create astro@latest -- --template with-markdown-shiki -``` - -[](https://stackblitz.com/github/withastro/astro/tree/latest/examples/with-markdown-shiki) -[](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/with-markdown-shiki) -[](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/with-markdown-shiki/devcontainer.json) - -This example showcases Astro's [built-in Markdown support](https://docs.astro.build/en/guides/markdown-content/). - -- `src/pages/index.md` is a treated as a page entrypoint and uses a `layout`. diff --git a/examples/with-markdown-shiki/astro.config.mjs b/examples/with-markdown-shiki/astro.config.mjs deleted file mode 100644 index a091e103c..000000000 --- a/examples/with-markdown-shiki/astro.config.mjs +++ /dev/null @@ -1,14 +0,0 @@ -import { defineConfig } from 'astro/config'; - -// https://astro.build/config -export default defineConfig({ - // Enable Custom Markdown options, plugins, etc. - markdown: { - syntaxHighlight: 'shiki', - shikiConfig: { - theme: 'dracula', - // Learn more about this configuration here: - // https://docs.astro.build/en/guides/markdown-content/#syntax-highlighting - }, - }, -}); diff --git a/examples/with-markdown-shiki/package.json b/examples/with-markdown-shiki/package.json deleted file mode 100644 index 323a9ef22..000000000 --- a/examples/with-markdown-shiki/package.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "name": "@example/with-markdown-shiki", - "type": "module", - "version": "0.0.1", - "private": true, - "scripts": { - "dev": "astro dev", - "start": "astro dev", - "build": "astro build", - "preview": "astro preview", - "astro": "astro" - }, - "dependencies": { - "astro": "^4.16.0" - } -} diff --git a/examples/with-markdown-shiki/public/favicon.svg b/examples/with-markdown-shiki/public/favicon.svg deleted file mode 100644 index f157bd1c5..000000000 --- a/examples/with-markdown-shiki/public/favicon.svg +++ /dev/null @@ -1,9 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 128 128"> - <path d="M50.4 78.5a75.1 75.1 0 0 0-28.5 6.9l24.2-65.7c.7-2 1.9-3.2 3.4-3.2h29c1.5 0 2.7 1.2 3.4 3.2l24.2 65.7s-11.6-7-28.5-7L67 45.5c-.4-1.7-1.6-2.8-2.9-2.8-1.3 0-2.5 1.1-2.9 2.7L50.4 78.5Zm-1.1 28.2Zm-4.2-20.2c-2 6.6-.6 15.8 4.2 20.2a17.5 17.5 0 0 1 .2-.7 5.5 5.5 0 0 1 5.7-4.5c2.8.1 4.3 1.5 4.7 4.7.2 1.1.2 2.3.2 3.5v.4c0 2.7.7 5.2 2.2 7.4a13 13 0 0 0 5.7 4.9v-.3l-.2-.3c-1.8-5.6-.5-9.5 4.4-12.8l1.5-1a73 73 0 0 0 3.2-2.2 16 16 0 0 0 6.8-11.4c.3-2 .1-4-.6-6l-.8.6-1.6 1a37 37 0 0 1-22.4 2.7c-5-.7-9.7-2-13.2-6.2Z" /> - <style> - path { fill: #000; } - @media (prefers-color-scheme: dark) { - path { fill: #FFF; } - } - </style> -</svg> diff --git a/examples/with-markdown-shiki/src/env.d.ts b/examples/with-markdown-shiki/src/env.d.ts deleted file mode 100644 index e16c13c69..000000000 --- a/examples/with-markdown-shiki/src/env.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// <reference path="../.astro/types.d.ts" /> diff --git a/examples/with-markdown-shiki/src/layouts/main.astro b/examples/with-markdown-shiki/src/layouts/main.astro deleted file mode 100644 index 7f5bc2ac2..000000000 --- a/examples/with-markdown-shiki/src/layouts/main.astro +++ /dev/null @@ -1,17 +0,0 @@ ---- -import '../styles/global.css'; - -const { content } = Astro.props; ---- - -<html lang={content.lang || 'en'}> - <head> - <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width" /> - <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> - <title>{content.title}</title> - </head> - <body> - <slot /> - </body> -</html> diff --git a/examples/with-markdown-shiki/src/pages/index.md b/examples/with-markdown-shiki/src/pages/index.md deleted file mode 100644 index 89e58184f..000000000 --- a/examples/with-markdown-shiki/src/pages/index.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: Shiki demo -layout: ../layouts/main.astro ---- - -# Shiki demo - -```js -var foo = 'bar'; - -function doSomething() { - return foo; -} -``` diff --git a/examples/with-markdown-shiki/src/styles/global.css b/examples/with-markdown-shiki/src/styles/global.css deleted file mode 100644 index e8b9d0314..000000000 --- a/examples/with-markdown-shiki/src/styles/global.css +++ /dev/null @@ -1,54 +0,0 @@ -pre, -code { - color: #d4d4d4; - font-size: 14px; - font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; - line-height: 1.5; - direction: ltr; - white-space: pre; - text-align: left; - text-shadow: none; - word-break: normal; - word-spacing: normal; - -moz-tab-size: 4; - -o-tab-size: 4; - tab-size: 4; - -webkit-hyphens: none; - -moz-hyphens: none; - -ms-hyphens: none; - hyphens: none; -} - -pre::selection, -code::selection { - text-shadow: none; - background: #b3d4fc; -} - -@media print { - pre, - code { - text-shadow: none; - } -} - -pre { - margin: 0.5rem 0 16px; - padding: 0.8rem 1rem 0.9rem; - overflow: auto; - background: #282a36; - border-radius: 4px; -} - -:not(pre) > code { - padding: 0.1em 0.3em; - color: #db4c69; - background: #f9f2f4; - border-radius: 0.3em; - white-space: pre-wrap; -} - -body { - max-width: 900px; - margin: auto; -} diff --git a/examples/with-markdown-shiki/tsconfig.json b/examples/with-markdown-shiki/tsconfig.json deleted file mode 100644 index d78f81ec4..000000000 --- a/examples/with-markdown-shiki/tsconfig.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "astro/tsconfigs/base" -} |