Repository: sdelquin/aprendepython Branch: main Commit: 8e7c4af4ee78 Files: 140 Total size: 4.8 MB Directory structure: gitextract_sauf215x/ ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .prettierignore ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── docs/ │ ├── assets/ │ │ ├── css/ │ │ │ └── custom.css │ │ └── js/ │ │ ├── clipboard.js │ │ └── mathjax.js │ ├── core/ │ │ ├── controlflow/ │ │ │ ├── conditionals.md │ │ │ ├── index.md │ │ │ └── loops.md │ │ ├── datastructures/ │ │ │ ├── dicts.md │ │ │ ├── files.md │ │ │ ├── index.md │ │ │ ├── lists.md │ │ │ ├── sets.md │ │ │ └── tuples.md │ │ ├── datatypes/ │ │ │ ├── data.md │ │ │ ├── index.md │ │ │ ├── numbers.md │ │ │ └── strings.md │ │ ├── devenv/ │ │ │ ├── index.md │ │ │ ├── real-context.md │ │ │ ├── thonny.md │ │ │ └── vscode.md │ │ ├── index.md │ │ ├── introduction/ │ │ │ ├── history.md │ │ │ ├── index.md │ │ │ ├── machine.md │ │ │ └── python.md │ │ └── modularity/ │ │ ├── exceptions.md │ │ ├── functions.md │ │ ├── index.md │ │ ├── modules.md │ │ └── oop.md │ ├── index.md │ ├── stdlib/ │ │ ├── data-access/ │ │ │ ├── index.md │ │ │ └── sqlite.md │ │ ├── index.md │ │ └── text-processing/ │ │ ├── index.md │ │ ├── re.md │ │ └── string.md │ └── third-party/ │ ├── config/ │ │ ├── index.md │ │ └── prettyconf.md │ ├── data-science/ │ │ ├── files/ │ │ │ ├── jupyter/ │ │ │ │ ├── equations.tex │ │ │ │ └── timeit.py │ │ │ ├── matplotlib/ │ │ │ │ ├── avengers.csv │ │ │ │ ├── bmw-clean.csv │ │ │ │ ├── bmw_plot.py │ │ │ │ ├── eth-usd.csv │ │ │ │ ├── euro-dollar-clean.csv │ │ │ │ ├── euro_dollar.py │ │ │ │ ├── global-temperatures.csv │ │ │ │ ├── imdb-top-1000.csv │ │ │ │ ├── medals.xlsx │ │ │ │ ├── mwh-spain-2021-clean.csv │ │ │ │ ├── mwh_spain.py │ │ │ │ ├── nba-data.csv │ │ │ │ ├── pokemon.csv │ │ │ │ ├── pokemon_speed.py │ │ │ │ ├── soften_wave.py │ │ │ │ ├── tiobe-2020-clean.csv │ │ │ │ └── tiobe_2020.py │ │ │ ├── numpy/ │ │ │ │ ├── diag.py │ │ │ │ ├── diag_transform.py │ │ │ │ ├── euler_product.py │ │ │ │ ├── flip_powers.py │ │ │ │ ├── identity_equation.py │ │ │ │ ├── lineq.py │ │ │ │ ├── np_matrix.py │ │ │ │ ├── np_odds.py │ │ │ │ ├── np_random.py │ │ │ │ ├── np_transform.py │ │ │ │ ├── transpose.py │ │ │ │ └── vectorize.py │ │ │ └── pandas/ │ │ │ ├── above_mean.py │ │ │ ├── comunidades.py │ │ │ ├── create_dataframe.py │ │ │ ├── create_series.py │ │ │ ├── democan.csv │ │ │ ├── df_access.py │ │ │ ├── df_oasis.py │ │ │ ├── grants.py │ │ │ ├── index_dataframe.py │ │ │ ├── load_dataframe.py │ │ │ ├── oasis.csv │ │ │ ├── pop_density.py │ │ │ ├── pop_percentage.py │ │ │ ├── recoding.py │ │ │ ├── smallest_density.py │ │ │ └── tech.csv │ │ ├── index.md │ │ ├── jupyter.md │ │ ├── matplotlib.md │ │ ├── numpy.md │ │ └── pandas/ │ │ ├── dataframes.md │ │ ├── index.md │ │ └── series.md │ ├── index.md │ ├── learning/ │ │ ├── index.md │ │ └── pypas.md │ ├── networking/ │ │ ├── files/ │ │ │ └── requests/ │ │ │ └── req.py │ │ ├── index.md │ │ └── requests.md │ ├── pdf/ │ │ ├── index.md │ │ └── weasyprint.md │ ├── scraping/ │ │ ├── beautifulsoup.md │ │ ├── files/ │ │ │ ├── beautifulsoup/ │ │ │ │ └── pypi-trend.py │ │ │ └── selenium/ │ │ │ ├── mercadona.py │ │ │ ├── wordle_play.py │ │ │ └── wordle_try.py │ │ ├── index.md │ │ └── selenium.md │ └── webdev/ │ ├── django/ │ │ ├── admin.md │ │ ├── api.md │ │ ├── apps.md │ │ ├── auth.md │ │ ├── extras.md │ │ ├── files/ │ │ │ └── api/ │ │ │ ├── categories.json │ │ │ ├── posts.json │ │ │ └── users.json │ │ ├── forms.md │ │ ├── i18n.md │ │ ├── index.md │ │ ├── justfile.md │ │ ├── middleware.md │ │ ├── models.md │ │ ├── production.md │ │ ├── setup.md │ │ ├── static.md │ │ ├── templates.md │ │ ├── urls.md │ │ ├── views.md │ │ └── webdev.md │ └── index.md ├── includes/ │ └── abbreviations.md ├── justfile ├── pyproject.toml └── zensical.toml ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/workflows/ci.yml ================================================ name: CI on: push: branches: - main workflow_dispatch: jobs: deploy-documentation: name: Deploy documentation runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - name: Build docker image run: docker build . -t aprendepython - name: Build documentation run: docker run -v ${PWD}:/docs zensical/zensical build - name: Sync files with production server uses: burnett01/rsync-deployments@4.1 with: switches: -avzr --delete path: site/ remote_host: aprendepython.es remote_path: ${{ secrets.REMOTE_BUILD_PATH }} remote_user: ${{ secrets.REMOTE_USER }} remote_key: ${{ secrets.REMOTE_KEY }} ================================================ FILE: .gitignore ================================================ .venv .artwork *.pyc TODO site .DS_Store __pycache__ .mypy_cache .pytest_cache *.egg-info *.egg .cache ================================================ FILE: .prettierignore ================================================ *.md pyproject.toml ================================================ FILE: CHANGELOG.md ================================================ # Changelog Las versiones siguen [versionado semántico](https://semver.org/) (`..`). ## Version X.X.X Publicada el DD-MM-YYYY ## Version 3.2.5 Publicada el 10-04-2026 - Estructuras de datos: Tuplas - Se traslada ejercicio `dec2bin` desde listas. - Django: Puesta en marcha - Añade diagrama sobre contenido de carpeta `.venv` - Django: Modelos - Añade nota final al revertir migraciones. ## Version 3.2.4 Publicada el 08-04-2026 - Actualiza la versión de Zensical a [0.0.32](https://github.com/zensical/zensical/releases/tag/v0.0.32). - Corrige render de fórmulas matemáticas en anotaciones de código: [zensical/ui](https://github.com/zensical/ui/issues/93) - Django: Interfaz administrativa - Corrige typo en registro de modelo. - Django: Producción - Añade documentación sobre seguridad. - Acceso a datos: sqlite - Mejora documentación sobre tipos de datos en SQLite. - Modularidad: Objetos y clases - Aclara uso de anotaciones dentro de clase. - Tipos de datos: Cadenas de texto - Añade funciones para identificar espacios. - Modularidad: Excepciones - Mejora documentación. - Django: Justfile - Corrige algunas recetas para Django. - Entornos de desarrollo: Contexto real - Añade notas sobre instalación de uv. ## Version 3.2.3 Publicada el 22-03-2026 - Actualiza la versión de Zensical a [0.0.28](https://github.com/zensical/zensical/releases/tag/v0.0.28). - Modularidad: Programación orientada a objetos - Cambia su nombre a "Objetos y clases". - Django: API - Arregla acceso por `pk` en vez de `id` (donde aplique). - Mejora apuntes en toda la sección. - Django: Plantillas - Añade pequeña sobre sobre localización de plantillas. - Django: Puesta en marcha - Añade diagrama de flujo de procesos. - Django: Desarrollo web - Actualiza tabla de versiones de Django. ## Version 3.2.2 Publicada el 16-03-2026 - Configuración Zensical - Eliminar el resaltado de búsqueda. - Django: API - Corrige errores menores. - Añade documentación sobre error 409. - Modularidad: Funciones - Corrige errores menores. - Tipos de datos: Cadenas de texto. - Añade opciones de `count()` - Django: Justfile - Añade instrucciones de instalación. - Añade receta para `dbcmd`. - Django: Aplicaciones - Añade configuración de app `shared`. - Django: Modelos - Añade notas sobre instalación de cliente SQLite. - Añade receta `just` para lanzar comando de base de datos. - Añade documentación sobre revertir migraciones. - Modularidad: Programación orientada a objetos. - Corrige ejemplos de métodos mágicos en operadores. - Corrige ejemplos de gestores de contexto. - Django: URLs - Corrige error ortográfico. - Django: Formularios - Mejora ejemplos de formularios. - Añade nota sobre campos opcionales. - Estructuras de datos: Ficheros - Añade notas sobre los modos de apertura extendidos. - Django: Puesta en marcha - Mejora contenido del `.gitignore` para proyectos Django. ## Version 3.2.1 Publicada el 15-03-2026 - Actualiza la versión de Zensical a [0.0.27](https://github.com/zensical/zensical/releases/tag/v0.0.27). ## Version 3.2.0 Publicada el 11-03-2026 - Django: API - Migración de apuntes a [Django Ninja](https://django-ninja.dev/). ## Version 3.1.6 Publicada el 03-03-2026 - Introducción: Python - Actualiza rankings. - Añade fondo de pantalla personalizado sobre Zen de Python. - Entornos de desarrollo: Contexto real - Corrige errores menores. - Entornos de desarrollo: Visual Studio Code - Añade configuraciones vscode, ruff y ty. - Tipos de datos: Datos - Añade documentación sobre precarga de datos. - Tipos de datos: Números - Corrige notas sobre precedencia de operadores. ## Version 3.1.5 Publicada el 01-03-2026 Corrige ruta de _assets_ JavaScript para MathJax. ## Version 3.1.4 Publicada el 26-02-2026 - Modularidad: Funciones - Arregla código de algunas funciones. - Actualiza la versión de Zensical a [0.0.24](https://github.com/zensical/zensical/releases/tag/v0.0.24). ## Version 3.1.3 Publicada el 04-02-2026 - Estructuras de datos: Ficheros - Añade documentación sobre `writelines()`. - Añade documentación sobre apertura de múltiples ficheros con contextos. - Añade nuevo ejercicio de ficheros `split-file`. ## Version 3.1.2 Publicada el 02-02-2026 - Actualiza la versión de Zensical a [0.0.20](https://github.com/zensical/zensical/releases/tag/v0.0.20). - Django: Modelos - Añade documentación sobre `editable` - Añade forma correcta de comprobar la pertenencia de un valor enumerado. - Django: API - Añade aclaración sobre serialización de campos `Decimal`. ## Version 3.1.1 Publicada el 26-01-2026 - Django: Modelos - Añade notas sobre _fixtures_. ## Version 3.1.0 Publicada el 26-01-2026 - Desechar el viejo fichero de configuración `mkdocs.yml`. - Django: Producción - Añade notas sobre Django en producción. ## Version 3.0.7 Publicada el 23-01-2026 - Estructuras de datos: Diccionarios - Añade función `setdefault()` - Django: Extras - Añade gestión de miniaturas en Sorl Thumbnail. - Django: Estáticos - Añade creación de modales con Bootstrap. - Django: Formularios - Nota informativa sobre accesos a campos desde constructor. - Django: Modelos - Añade validación cruzada de campos de modelo. ## Version 3.0.6 Publicada el 22-01-2026 - Django: API - Mejora implementación de comprobación de métodos HTTP. ## Version 3.0.5 Publicada el 19-01-2026 Actualiza la versión de Zensical a [0.0.17](https://github.com/zensical/zensical/releases/tag/v0.0.17). ## Version 3.0.4 Publicada el 15-01-2026 Actualiza la versión de Zensical a [0.0.16](https://github.com/zensical/zensical/releases/tag/v0.0.16). ## Version 3.0.3 Publicada el 14-01-2026 - Django: Modelos - Añade otra manera de añadir objetos en muchos a muchos. - Django: API - Mejora de documentación con más código y explicaciones. ## Version 3.0.2 Publicada el 12-01-2026 - Estructuras de datos: Listas - Añade ejercicios al principio del capítulo. - Django: API - Añade nuevo contenido y corrige errores. ## Version 3.0.1 Publicada el 08-01-2026 - pypas - Añade documentación de nuevos comandos. ## Version 3.0.0 Publicada el 06-01-2026 - Migración de todo el sitio web a Zensical. ## Version 2.2.4 Publicada el 03-12-2025 - Django: Extras - Corrige configuración de Brevo. - Configuraciones: Pretty Conf - Añade documentación sobre valores por defecto. - PDF: WeasyPrint - Añade documentación sobre CSS. - Django: Middleware - Corrige errores menores. ## Version 2.2.3 Publicada el 02-12-2025 - Django: Internacionalización - Añade documentación de poedit. - Añade receta justfile para poedit. - Django: Extras - Completa documentación y corrige errores menores. - Django: Middleware - Cambia ejemplo de middleware personalizado. ## Version 2.2.2 Publicada el 01-12-2025 Completa documentación de: - Django: Estáticos - Corrige errores menores. - Django: Plantillas - Corrige errores menores. - Django: Internacionalización - Traducción en URLs. - Etiqueta personalizada para selección de idioma. ## Version 2.2.1 Publicada el 27-11-2025 Completa documentación de: - Django: Modelos - Corrige typos. - Django: Extras - Corrige pequeños detalles en documentación. - Elimina indicación recurrente de activación de entorno virtual. - Django: Justfile - Añade receta para Django-RQ. - Estructuras de datos: Listas - Corrige typos. - Django: Interfaz administrativa - Corrige typos. - Django: Plantillas - Corrige typos. - Django: URLs - Corrige typos. - Configuraciones: Pretty Conf - Corrige pequeños errores. - PDF: Weasyprint - Corrige errores. - Mejora documentación. ## Version 2.2.0 Publicada el 25-11-2025 Completa documentación de: - Modularidad: Programación orientada a objetos - Corrige typos. - Modularidad: Excepciones - Corrige excepciones predefinidas. - Estructuras de datos: Listas - Corrige ubicación de sección de extender listas. - Django: Modelos - Corrige relaciones muchos a muchos. - Django: Interfaz administrativa - Amplía claves ajenas para admin. - Django: URLs - Completa URLs con expresiones regulares. - Django: Plantillas - Corrige etiquetas y filtros personalizados. - Django: Formularios - Corrigue validación. - Django: Estáticos - Corrige fallos menores en Bootstrap. - Django: Internacionalización - Amplía y corrige ficheros de idioma. ## Version 2.1.3 Publicada el 13-11-2025 Completa documentación de: - Entornos de desarrollo: Contexto real - Corrección sobre uv. - Estructuras de datos: Tuplas - Aclaración sobre funciones. - Django: Plantillas - Etiquetas personalizadas. - Filtros personalizados. - Django: Justfile - Receta para generar "secret key". ## Version 2.1.2 Publicada el 31-10-2025 Crea documentación de: - Estructuras de datos: Listas - splitlines() - Django: Vistas - Vistas de error personalizadas. - Decorando vistas. - Django: Índice de contenidos - Django: Interfaz administrativa - Campos de búsqueda. - Filtros de lista. - Campos autocompletados. - Acciones de administración. Completa documentación de: - Estructuras de datos: Conjuntos - Teoría de conjuntos. - Django: URLs - Aclaración de conversores personalizados. - Django: Autenticación - Atributos del modelo User. ## Version 2.1.1 Publicada el 29-10-2025 Completa documentación de: - Fundamentos del lenguaje: Bucles. - Django: Autenticación. - Django: Modelos. - Django: Plantillas. - Django: Formularios. - Django: URLs. - Django: Middleware. - Django: Justfile. ## Version 2.1.0 Publicada el 24-10-2025 Crea documentación de: - API: Middleware. Completa documentación de: - Fundamentos del lenguaje: Cadenas de texto. - Django: API. - Django: Autenticación. - Django: Estáticos. - Django: Extras. - Django: Formularios. - Django: Justfile. - Django: Modelos. - Django: Plantillas. - Django: Puesta en marcha. - Django: URLs. ## Version 2.0.10 Publicada el 08-10-2025 - Añade documentación específica de `justfile` para Django. - Completa documentación de: - Fundamentos del lenguaje: Algo de historia. - Fundamentos del lenguaje: Números. - Fundamentos del lenguaje: Cadenas de texto. - Django: Aplicaciones. - Django: Formularios. - Django: Modelos. - Django: Puesta en marcha. - Django: Estáticos. ## Version 2.0.9 Publicada el 07-10-2025 - Completa documentación de: - Django: Modelos. - Django: URLs. - Django: Plantillas. - Django: Formularios. - Django: Estáticos. ## Version 2.0.8 Publicada el 06-10-2025 - Completa documentación de: - Django: Formularios. - Django: Plantillas. ## Version 2.0.7 Publicada el 03-10-2025 - Completa documentación de: - Django: Formularios. - Django: Plantillas. - Django: URLs. - Django: Vistas. - Añade abreviaturas. ## Version 2.0.6 Publicada el 01-10-2025 - Completa documentación de: - Django: Puesta en marcha. - Django: Aplicaciones. - Django: Modelos. - Django: URLs. - Django: Vistas. ## Version 2.0.5 Publicada el 30-09-2025 - Completa documentación de: - Django: Puesta en marcha. - Django: Aplicaciones. - Django: Modelos. ## Version 2.0.4 Publicada el 29-09-2025 - Completa documentación de: - Django: Puesta en marcha. - Django: Aplicaciones. - Django: Modelos. ## Version 2.0.3 Publicada el 26-09-2025 - Completa documentación de: - Historia de la computación. - Hablando con la máquina. - Introducción a Python. - Puesta en marcha. ## Version 2.0.2 Publicada el 22-09-2025 - Completa documentación de: - Fundamentos del lenguaje. - Expresiones regulares. - sqlite. - Desarrollo web. ## Version 2.0.1 Publicada el 19-05-2025 - Añade bloques de contenido en la página principal. - Añade `README.md` en el repositorio de código. ================================================ FILE: Dockerfile ================================================ FROM debian RUN apt-get update && \ apt-get install -y curl && \ curl -LsSf https://astral.sh/uv/install.sh | sh ENV UV_LINK_MODE=copy \ PATH="/root/.local/bin:$PATH" WORKDIR /docs COPY . /docs CMD ["uv", "run", "mkdocs", "build"] ================================================ FILE: README.md ================================================ # Aprende Python Aprende el lenguaje de programación Python con este manual que cubre los fundamentos del lenguaje, módulos de la librería estándar y paquetes de terceros. Contiene multitud de ejercicios a través de pypas.es y está ajustado a distintos niveles de aprendizaje. Todos los recursos están disponibles vía web utilizando un diseño moderno y completamente gratuito. ![Promo](./promo.jpg) **La guía definitiva en español para aprender tu lenguaje de programación favorito.** © Sergio Delgado Quintero. ================================================ FILE: docs/assets/css/custom.css ================================================ /* INSPIRATION: https://github.com/astral-sh/uv/blob/main/mkdocs.template.yml MATERIAL COLORS: https://github.com/squidfunk/mkdocs-material/blob/master/src/templates/assets/stylesheets/main/_colors.scss DARK & LIGHT STYLES: https://uxplanet.org/create-an-easily-switchable-light-dark-styles-in-figma-ffee3cd542a7 PATTERNS BASED ON PRIMARY COLOR: https://mycolor.space/?hex=%23009485&sub=1 */ /* LIGHT MODE */ [data-md-color-scheme="default"] { /* Modification of theme colors */ /* --md-code-hl-comment-color: var(--md-primary-fg-color); */ /* Custom colors */ --blue-color: rgb(23, 143, 255); --green-color: rgb(29, 187, 53); --orange-color: rgb(254, 160, 47); --red-color: rgb(248, 65, 65); --yellow-color: rgb(216, 210, 25); --pink-color: rgb(177, 36, 137); /* Transparent custom colors */ --blue-transparent-color: rgba(23, 143, 255, 0.5); --green-transparent-color: rgba(29, 187, 53, 0.5); --orange-transparent-color: rgba(254, 160, 47, 0.5); --red-transparent-color: rgba(248, 65, 65, 0.5); --yellow-transparent-color: rgba(216, 210, 25, 0.5); --pink-transparent-color: rgba(177, 36, 137, 0.5); .blue { color: var(--blue-color); } .green { color: var(--green-color); } .orange { color: var(--orange-color); } .red { color: var(--red-color); } .yellow { color: var(--yellow-color); } .pink { color: var(--pink-color); } } /* DARK MODE */ [data-md-color-scheme="slate"] { /* Modification of theme colors */ /* --md-code-hl-comment-color: var(--md-accent-fg-color); */ /* Custom colors */ --blue-color: rgb(0, 133, 255); --green-color: rgb(32, 203, 73); --orange-color: rgb(249, 135, 0); --red-color: rgb(233, 44, 44); --yellow-color: rgb(231, 231, 21); --pink-color: rgb(196, 44, 153); /* Transparent custom colors */ --blue-transparent-color: rgba(0, 133, 255, 0.5); --green-transparent-color: rgba(32, 203, 73, 0.5); --orange-transparent-color: rgba(249, 135, 0, 0.5); --red-transparent-color: rgba(233, 44, 44, 0.5); --yellow-transparent-color: rgba(231, 231, 21, 0.5); --pink-transparent-color: rgba(196, 44, 153, 0.5); .blue { color: var(--blue-color); } .green { color: var(--green-color); } .orange { color: var(--orange-color); } .red { color: var(--red-color); } .yellow { color: var(--yellow-color); } .pink { color: var(--pink-color); } } .hl { color: var(--md-primary-fg-color); } .acc { color: var(--md-accent-fg-color); } .mono { font-family: monospace; } .bold { font-weight: bold; } .md-nav__link--active { font-weight: bold; } @keyframes beat { 0%, 40%, 80%, 100% { transform: scale(1); } 20%, 60% { transform: scale(1.15); } } .beat { animation: beat 1000ms infinite; } @keyframes flip { /* https://animista.net/play/basic/flip */ 50% { transform: rotateY(-180deg); } } .flip { animation: flip 1500ms infinite both; } @keyframes slide { /* https://animista.net/play/basic/slide */ 0% { transform: translateX(-1px); } 50% { transform: translateX(1px); } 100% { transform: translateX(-1px); } } .slide { animation: slide 1000ms infinite both; } /* Custom exercise admonition */ :root { --md-admonition-icon--brain: url('data:image/svg+xml;charset=utf-8,'); } .md-typeset .admonition.exercise, .md-typeset details.exercise { border-color: rgb(156, 18, 158); } .md-typeset .admonition.exercise, .md-typeset details.exercise { background-color: rgba(156, 18, 158, 0.15); } .md-typeset .exercise > .admonition-title::before, .md-typeset .exercise > summary::before { background-color: rgb(156, 18, 158); -webkit-mask-image: var(--md-admonition-icon--brain); mask-image: var(--md-admonition-icon--brain); } span.example { font-style: italic; font-weight: bold; color: var(--orange-color); span.twemoji { margin-left: -0.15rem; margin-right: -0.2rem; margin-top: 0.1rem; } } span.pyversion { span.version { font-size: smaller; } span.twemoji { margin-right: -0.1rem; } } span.dj-level { width: fit-content; display: block; font-size: smaller; color: rgb(230, 230, 230); padding: 0.03rem 0.3rem 0.03rem 0.3rem; border-radius: 0.2rem; background: gray; } /* https://github.com/squidfunk/mkdocs-material/issues/3453#issuecomment-2407192662 */ .md-tooltip { top: inherit; left: inherit; margin-left: 12px; margin-top: 7px; } /* https://mkdocstrings.github.io/recipes/#prevent-selection-of-prompts-and-output-in-python-code-blocks */ .highlight .gp, .highlight .gt, .highlight .gr, .highlight .go { /* Generic.Prompt, Generic.Output */ user-select: none; } .white { background-color: white; display: inline-block; } .uv { color: #de5fe9; } /* Fix icon alignment inside links */ a span.twemoji { vertical-align: middle !important; } ================================================ FILE: docs/assets/js/clipboard.js ================================================ document.addEventListener("DOMContentLoaded", function () { document.body.addEventListener("click", function (event) { // Verifica si se hizo clic en un botón de copiar const copyButton = event.target.closest("button.md-code__button"); if (!copyButton) return; // Encuentra el bloque de código asociado const preBlock = copyButton.closest("pre"); const codeBlock = preBlock ? preBlock.querySelector("code") : null; if (!codeBlock) return; // Obtiene el texto del bloque de código const selectedLines = codeBlock.querySelectorAll("span.hll"); if (selectedLines.length > 0) { // Si hay líneas resaltadas, copia solo esas líneas var codeText = Array.from(selectedLines) .map((line) => line.textContent || line.innerText) .join("\n"); } else { // Si no hay líneas resaltadas, copia todo el bloque de código var codeText = codeBlock.textContent || codeBlock.innerText; } // Filtra y elimina los prompts ">>>", "...", y "$" al inicio de las líneas codeText = codeText .split("\n") .filter( (line) => line.startsWith(">") || // Contempla ">>>" y ">" line.startsWith("...") || line.startsWith("$"), ) // Solo instrucciones .map((line) => line.replace(/^(>+|\.\.\.|\$)\s?/, "")) // Elimina ">", ">>>", "..." o "$" .join("\n"); // Si el bloque no es de sesión interactiva o Bash, copia todo el contenido if (codeText.trim() === "") { // Limpia las líneas resaltadas (hl_lines) codeText = codeBlock.textContent || codeBlock.innerText; // Usamos textContent para evitar problemas de espaciado } // Copia el código limpio al portapapeles navigator.clipboard.writeText(codeText).then(() => { // Opcional: Mostrar feedback visual en el botón copyButton.classList.add("copied"); setTimeout(() => copyButton.classList.remove("copied"), 1000); }); // Evita que el evento siga propagándose y se copie el código original event.stopPropagation(); event.preventDefault(); }); }); ================================================ FILE: docs/assets/js/mathjax.js ================================================ window.MathJax = { tex: { inlineMath: [["\\(", "\\)"]], displayMath: [["\\[", "\\]"]], processEscapes: true, processEnvironments: true, }, options: { ignoreHtmlClass: ".*|", processHtmlClass: "arithmatex", }, }; document$.subscribe(() => { MathJax.startup.output.clearCache(); MathJax.typesetClear(); MathJax.texReset(); MathJax.typesetPromise(); }); component$.subscribe(({ ref }) => { if (ref.classList.contains("md-annotation")) MathJax.typesetPromise([ref]); }); ================================================ FILE: docs/core/controlflow/conditionals.md ================================================ --- icon: material/call-split tags: - Fundamentos del lenguaje - Control de flujo - Condicionales --- # Condicionales { #conditionals } ![Banner](images/conditionals/banner.jpg) /// caption Imagen generada con Inteligencia Artificial /// En esta sección estudiaremos las sentencias `if` y `match-case` de _Python_ junto a las distintas variantes que pueden asumir, pero antes de eso introduciremos algunas cuestiones generales de _escritura de código_. ## Definición de bloques { #blocks } A diferencia de otros lenguajes que utilizan _llaves_ para definir los bloques de código (véase C o Java), cuando Guido Van Rossum [diseñó Python](../introduction/python.md#python) quiso evitar estos caracteres por considerarlos innecesarios. Es por ello que en Python los bloques de código se definen a través de **espacios en blanco**, preferiblemente :four: espacios en blanco.[^1] ![Dark image](images/conditionals/four-spaces-dark.svg#only-dark) ![Light image](images/conditionals/four-spaces-light.svg#only-light) !!! tip "Adaptación" Esto puede resultar extraño e (incluso) incómodo a personas que vienen de otros lenguajes de programación pero desaparece rápido y se siente natural a medida que se escribe código. ## Comentarios { #comments } Los comentarios son anotaciones que podemos incluir en nuestro programa y que nos permiten aclarar ciertos aspectos del código. Estas indicaciones son ignoradas por el intérprete de Python. Los comentarios se incluyen usando el símbolo almohadilla `#!python #` y comprenden desde ahí hasta el final de la línea. ```python # Universe age expressed in days universe_age = 13800 * (10 ** 6) * 365 ``` Los comentarios también pueden aparecer en la misma línea de código, aunque la [guía de estilo de Python](https://www.python.org/dev/peps/pep-0008/#inline-comments) no aconseja usarlos en demasía: ```python stock = 0 # Release additional articles ``` Reglas para escribir buenos comentarios[^2]: 1. Los comentarios no deberían duplicar el código. 2. Los buenos comentarios no arreglan un código poco claro. 3. Si no puedes escribir un comentario claro, puede haber un problema en el código. 4. Los comentarios deberían evitar la confusión, no crearla. 5. Usa comentarios para explicar código no idiomático. 6. Proporciona enlaces a la fuente original del código copiado. 7. Incluye enlaces a referencias externas que sean de ayuda. 8. Añade comentarios cuando arregles errores. 9. Usa comentarios para destacar implementaciones incompletas. ## Ancho del código { #code-width } Los programas suelen ser más legibles cuando las líneas no son excesivamente largas. La longitud máxima de línea recomendada por la [guía de estilo de Python](https://www.python.org/dev/peps/pep-0008/#maximum-line-length) es de **80 caracteres**. Sin embargo, esto genera una [cierta controversia](https://richarddingwall.name/2008/05/31/is-the-80-character-line-limit-still-relevant/) hoy en día, ya que los tamaños de pantalla han aumentado y las resoluciones son mucho mayores que hace años. Así las líneas de más de 80 caracteres se siguen visualizando correctamente. Hay personas que son más estrictas con este límite y otras más flexibles. En caso de que queramos **romper una línea de código** demasiado larga, tenemos dos opciones: === "Usar la _barra invertida_ " ```pycon >>> factorial = factorial(n) * factorial(n - 1) * factorial(n - 2) * factorial(n -3) * factorial(n - 4) * factorial(n - 5) >>> factorial = factorial(n) * \ ... factorial(n - 1) * \ ... factorial(n - 2) * \ ... factorial(n - 3) * \ ... factorial(n - 4) * \ ... factorial(n - 5) ``` === "Usar los _paréntesis_" ```pycon >>> factorial = factorial(n) * factorial(n - 1) * factorial(n - 2) * factorial(n -3) * factorial(n - 4) * factorial(n - 5) >>> factorial = (factorial(n - 1) * ... factorial(n - 2) * ... factorial(n - 3) * ... factorial(n - 4) * ... factorial(n - 5)) ``` ## La sentencia `if` { #if } La sentencia condicional en Python (al igual que en muchos otros lenguajes de programación) es `if`. En su escritura debemos añadir una **expresión de comparación** terminando con **dos puntos** al final de la línea. Veamos un ejemplo:material-flash:: ```pycon >>> temperature = 40 >>> if temperature > 35: ... print('Aviso por alta temperatura') ... Aviso por alta temperatura ``` !!! note "Paréntesis" Nótese que en Python no es necesario incluir paréntesis `(` y `)` al escribir condiciones. Hay ocasiones que es recomendable por claridad o por establecer prioridades. En el caso anterior se puede ver claramente que la condición se cumple y por tanto se ejecuta la instrucción que tenemos dentro del cuerpo de la condición. Pero podría no ser así. Para controlar ese caso existe la sentencia `else`. Veamos el mismo ejemplo:material-flash: anterior pero añadiendo esta variante: ```pycon >>> temperature = 20 >>> if temperature > 35: ... print('Aviso por alta temperatura') ... else: ... print('Parámetros normales') ... Parámetros normales ``` Podríamos tener incluso condiciones dentro de condiciones, lo que se viene a llamar técnicamente **condiciones anidadas**[^3]. Veamos un ejemplo:material-flash: ampliando el caso anterior: ```pycon >>> temperature = 28 >>> if temperature < 20: ... if temperature < 10: ... print('Nivel azul') ... else: ... print('Nivel verde') ... else: ... if temperature < 30: ... print('Nivel naranja') ... else: ... print('Nivel rojo') ... Nivel naranja ``` Python nos ofrece una mejora en la escritura de condiciones anidadas cuando aparecen consecutivamente un `else` y un `if`. Podemos sustituirlos por la sentencia `elif`: ![Dark image](images/conditionals/elif-dark.svg#only-dark) ![Light image](images/conditionals/elif-light.svg#only-light) Apliquemos esta mejora al código del ejemplo:material-flash: anterior: ```pycon >>> temperature = 28 >>> if temperature < 20: ... if temperature < 10: ... print('Nivel azul') ... else: ... print('Nivel verde') ... elif temperature < 30: ... print('Nivel naranja') ... else: ... print('Nivel rojo') ... Nivel naranja ``` ## Asignaciones condicionales { #if-assignments } Supongamos que queremos asignar un nivel de riesgo de incendio en función de la temperatura. En su ^^versión clásica^^ escribiríamos algo como: ```pycon >>> temperature = 35 >>> if temperature < 30: ... fire_risk = 'LOW' ... else: ... fire_risk = 'HIGH' ... >>> fire_risk 'HIGH' ``` Sin embargo, esto lo podríamos abreviar con una **asignación condicional de una única línea**: ```pycon >>> fire_risk = 'LOW' if temperature < 30 else 'HIGH' >>> fire_risk 'HIGH' ``` :material-check-all:{ .blue } Con la experiencia, este tipo de construcciones cada vez son más utilizadas ya que condensan información pero mantienen legibilidad. ## Operadores de comparación { #comparation-operators } Cuando escribimos condiciones debemos incluir alguna expresión de comparación. Para usar estas expresiones es fundamental conocer los **operadores** que nos ofrece Python: | Operador | Símbolo | | ----------------- | ------------- | | Igualdad | `#!python ==` | | Desigualdad | `#!python !=` | | Menor que | `#!python <` | | Menor o igual que | `#!python <=` | | Mayor que | `#!python >` | | Mayor o igual que | `#!python >=` | A continuación veremos una serie de **_ejemplos_**{ .orange }:material-flash:{ .orange } con expresiones de comparación. Téngase en cuenta que estas expresiones habría que incluirlas dentro de la sentencia condicional en el caso de que quisiéramos tomar una acción concreta: ```pycon >>> value = 8 >>> value == 8 True >>> value != 8 False >>> value < 12 True >>> value <= 7 False >>> value > 4 True >>> value >= 9 False ``` Python ofrece la posibilidad de ver si un valor está entre dos límites de una manera muy sencilla. Así, por ejemplo:material-flash:, para descubrir si $x \in [4, 12]$ haríamos: ```pycon >>> 4 <= x <= 12 True ``` !!! note "Notas" 1. Una expresión de comparación siempre devuelve un valor «booleano», es decir `#!python True` o `#!python False`. 2. El uso de paréntesis, en función del caso, puede aclarar la expresión de comparación. ## Operadores lógicos { #logical-operators } Podemos escribir condiciones más complejas usando los **operadores lógicos**: | Operador | Símbolo | | --------- | -------------- | | «Y» lógico | `#!python and` | | «O» lógico | `#!python or` | | «No» lógico | `#!python not` | A continuación veremos una serie de **_ejemplos_**{ .orange }:material-flash:{ .orange } con expresiones lógicas. Téngase en cuenta que estas expresiones habría que incluirlas dentro de la sentencia condicional en el caso de que quisiéramos tomar una acción concreta: ```pycon >>> x = 8 >>> x > 4 or x > 12 # True or False True >>> x < 4 or x > 12 # False or False False >>> x > 4 and x > 12 # True and False False >>> x > 4 and x < 12 # True and True True >>> not(x != 8) # not False True ``` Véanse las **tablas de la verdad** para cada operador lógico: ![Tablas de la verdad](images/conditionals/truth-tables.svg) !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `leap-year` ### Cortocircuito lógico { #short-circuit } Es interesante comprender que las expresiones lógicas **no se evalúan por completo si se dan una serie de circunstancias**. Aquí es donde surge el concepto de ^^cortocircuito^^ (lógico) que no es más que una forma de identificar este escenario. Supongamos un ejemplo:material-flash: en el que utilizamos un **teléfono móvil** que mide su nivel de batería mediante la variable `power` con valores que van desde 0% a 100% y su cobertura 4G mediante la variable `signal_4g` que va desde 0% a 100%. === "Cortocircuito AND :material-gate-and:" Para poder ^^enviar un mensaje^^ por Telegram el teléfono necesita tener al menos un 25% de batería y al menos un 10% de cobertura: ```pycon >>> power = 10 >>> signal_4g = 60 >>> power > 25 and signal_4g > 10 False ``` ``` mermaid graph LR and{and} power(power > 25) signal(signal_4g > 10) result(((False))) power -- False --> and and -.-> signal and ==> result ``` :material-check-all:{ .blue } Dado que estamos en un `#!python and` y la primera condición `#!python power > 25` no se cumple, se produce un cortocircuito y no se sigue evaluando el resto de la expresión porque ya se sabe que va a dar `#!python False`. === "Cortocircuito OR :material-gate-or:" Para poder ^^hacer una llamada VoIP^^ necesitamos tener al menos un 40% de batería o al menos un 30% de cobertura: ```pycon >>> power = 50 >>> signal_4g = 20 >>> power > 40 or signal_4g > 30 True ``` ``` mermaid graph LR or{or} power(power > 40) signal(signal_4g > 30) result(((True))) power -- True --> or or -.-> signal or ==> result ``` :material-check-all:{ .blue } Dado que estamos en un `#!python or` y la primera condición `#!python power > 40` se cumple, se produce un cortocircuito y no se sigue evaluando el resto de la expresión porque ya se sabe que va a dar `#!python True`. !!! note "Evaluación" Si no se produjera un cortocircuito en la evaluación de la expresión, se seguiría comprobando todas las condiciones posteriores hasta llegar al final de la misma. ### «Booleanos» en condiciones { #boolean } Cuando queremos preguntar por la **veracidad** de una determinada variable «booleana» en una condición, la primera aproximación que parece razonable es usar lo que ya conocemos. Veamos un ejemplo:material-flash:: ```pycon hl_lines="3" >>> is_cold = True >>> if is_cold == True:#(1)! ... print('Coge chaqueta') ... else: ... print('Usa camiseta') ... Coge chaqueta ``` { .annotate } 1. :fontawesome-solid-triangle-exclamation:{ .red } No es la manera ~~correcta~~ pitónica. Pero la manera «obvia» de hacerlo en Python es la siguiente: ```pycon hl_lines="1" >>> if is_cold: ... print('Coge chaqueta') ... else: ... print('Usa camiseta') ... Coge chaqueta ``` Hemos visto una comparación para un valor «booleano» verdadero (`#!python True`). En el caso de que la comparación fuera para un valor falso lo haríamos así: ```pycon >>> is_cold = False >>> if not is_cold:#(1)! ... print('Usa camiseta') ... else: ... print('Coge chaqueta') ... Usa camiseta ``` { .annotate } 1. :material-approximately-equal: `#!python if is_cold == False:` De hecho, si lo pensamos, estamos reproduciendo bastante bien el _lenguaje natural_: - Si hace frío :material-arrow-right-box: coge chaqueta. - Si no hace frío :material-arrow-right-box: usa camiseta. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `marvel-akinator` ### Valor nulo { #none } `#!python None` es un valor especial de Python que almacena el **valor nulo**[^4]. Veamos cómo se comporta al incorporarlo en condiciones de veracidad. Veamos un sencillo ejemplo:material-flash: para ilustrar su comportamiento: ```pycon >>> value = None >>> if value: ... print('Value has some useful value') ... else: ... print('Value seems to be void')#(1)! ... Value seems to be void ``` { .annotate } 1. `value` podría contener `#!python None`, `#!python False` o cualquier otra expresión cuya veracidad fuera falsa. Para distinguir `#!python None` de los valores propiamente booleanos, se recomienda el uso del operador `#!python is`: ```pycon hl_lines="3" >>> value = None >>> if value is None: ... print('Value is clearly None') ... else: ... print('Value has some useful value') ... Value is clearly None ``` De igual forma, podemos usar esta construcción para el caso contrario. La forma «pitónica» de preguntar **si algo no es nulo** es la siguiente: ```pycon >>> value = 99 >>> if value is not None: ... print(f'{value=}') ... value=99 ``` #### ¿Por qué usar `is`? { #why-is } Cabe preguntarse por qué utilizamos `#!python is` en vez del operador `#!python ==` al comprobar si un valor es nulo, ya que ambas aproximaciones nos dan el mismo resultado[^5]: ```pycon >>> value = None >>> value is None True >>> value == None True ``` La respuesta es que el operador `#!python is` comprueba únicamente si los identificadores (posiciones en memoria) de dos objetos son iguales, mientras que la comparación `#!python ==` puede englobar [muchas otras acciones](../modularity/oop.md#magic-methods). De este hecho se deriva que su ejecución sea mucho más rápida y que se eviten «falsos positivos». Cuando ejecutamos un programa Python existe una serie de ^^objetos precargados en memoria^^. Uno de ellos es `#!python None`. Lo podemos comprobar con el siguiente ejemplo:material-flash:: ```pycon >>> id(None) 4314501456 ``` Cualquier variable que igualemos al valor nulo, únicamente será una referencia al mismo objeto `#!python None` en memoria: ```pycon >>> value = None >>> id(value) 4314501456 ``` Por lo tanto, ver si un objeto es `#!python None` es simplemente comprobar que su «id» coincida con el de `#!python None`, que es exactamente el cometido del operador `#!python is`: ```pycon >>> id(value) == id(None) True >>> value is None True ``` ## Veracidad { #truthiness } Cuando trabajamos con expresiones que incorporan valores «booleanos», se produce una [conversión implícita](../datatypes/numbers.md#implicit-typecast) que transforma los tipos de datos involucrados a valores `#!python True` o `#!python False`. Lo primero que debemos entender de cara a comprobar la **veracidad** son los valores que evalúan a falso o evalúan a verdadero. A continuación se muestra un listado de los **únicos items** que evalúan a `#!python False` en Python: ```pycon >>> bool(False) False >>> bool(None) False >>> bool(0) False >>> bool(0.0) False >>> bool('')#(1)! False >>> bool([])#(2)! False >>> bool(())#(3)! False >>> bool({})#(4)! False >>> bool(set())#(5)! False ``` { .annotate } 1. La cadena vacía. 2. La lista vacía. 3. La tupla vacía. 4. El diccionario vacío. 5. El conjunto vacío. :material-check-all:{ .blue } El resto de objetos en Python evalúan a `#!python True`. Veamos algunos ejemplos:material-flash: de objetos que evalúan a `#!python True` en Python: ```pycon >>> bool('False') True >>> bool(' ') True >>> bool(1e-10) True >>> bool([0]) True >>> bool('🦆') True ``` ### Asignación lógica { #logical-assignment } Es posible utilizar [operadores lógicos](#logical-operators) en sentencias de asignación sacando partido de las tablas de la verdad que funcionan para estos casos. === "Asignación mediante AND :material-gate-and:" Veamos un ejemplo:material-flash: de asignación lógica utilizando el operador `#!python and`: ```pycon >>> b = 0 >>> c = 5 >>> a = b and c#(1)! >>> a 0 ``` { .annotate } 1. Se trata de una expresión lógica en la que se aplica conversión implícita de los valores enteros a valores «booleanos». En este sentido el valor de `b` evalúa a `#!python False` ya que es 0. Al estar usando un operador `#!python and` se produce un [cortocircuito lógico:material-flash-outline:](#short-circuit) y se asigna el valor de la `b` a la variable `a`. === "Asignación mediante OR :material-gate-or:" Veamos un ejemplo:material-flash: de asignación lógica utilizando el operador `#!python or`: ```pycon hl_lines="4" >>> b = 0 >>> c = 5 >>> a = b or c#(1)! >>> a 5 ``` { .annotate } 1. Se trata de una expresión lógica en la que se aplica conversión implícita de los valores enteros a valores «booleanos». En este sentido el valor de `b` evalúa a `#!python False` ya que es 0. Al estar usando un operador `#!python or` se continúa a la segunda parte donde el valor de la variable `c` evalúa a `#!python True` ya que es 5. Por tanto se asigna dicho valor a la variable `a`. ## Sentencia `match-case` { #match-case } Una de las novedades más esperadas de Python :octicons-tag-24: 3.10 fue el llamado [Structural Pattern Matching](https://peps.python.org/pep-0636/) que introdujo en el lenguaje una nueva sentencia condicional. Ésta se podría asemejar a la sentencia «switch» que ya existe en otros lenguajes de programación. ### Comparando valores { #comparing-values } En su versión más simple, el «pattern matching» permite comparar un valor de entrada con una serie de literales. Algo así como un conjunto de sentencias «if» encadenadas. Veamos esta primera aproximación mediante un ejemplo:material-flash: donde mostramos un color a partir de su [codificación RGB](https://es.wikipedia.org/wiki/RGB#Codificaci%C3%B3n_hexadecimal_del_color): ```pycon >>> color = '#FF0000' >>> match color: ... case '#FF0000': ... print('🔴') ... case '#00FF00': ... print('🟢') ... case '#0000FF': ... print('🔵') ... 🔴 ``` ¿Qué ocurre si el valor que comparamos no existe entre las opciones disponibles? Pues en principio, nada, ya que este caso no está cubierto. Si lo queremos controlar, hay que añadir una nueva regla utilizando el subguión `_` como patrón: ```pycon >>> color = '#AF549B' >>> match color: ... case '#FF0000': ... print('🔴') ... case '#00FF00': ... print('🟢') ... case '#0000FF': ... print('🔵') ... case _: ... print('Unknown color!') ... Unknown color! ``` Hay que tener cuidado con un detalle. Si estás pensando en usar constantes para definir los valores que puede tomar el color, que sepas que esto te va a fallar: ```pycon >>> RED_HEXA = '#FF0000' >>> GREEN_HEXA = '#00FF00' >>> BLUE_HEXA = '#0000FF' >>> match color: ... case RED_HEXA: ... print('🔴') ... case GREEN_HEXA: ... print('🟢') ... case BLUE_HEXA: ... print('🔵') ... case _: ... print('Unknown color!') Cell In[4], line 2 case RED_HEXA: ^ SyntaxError: name capture 'RED_HEXA' makes remaining patterns unreachable ``` Esto se debe a que Python trata a las constantes `#!python RED_HEXA GREEN_HEXA BLUE_HEXA` como nombres de variables y trata de aplicar el [patrón de captura](https://peps.python.org/pep-0634/#capture-patterns) sobre `match-case`[^6]. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `simple-op` ### Patrones avanzados { #advanced-patterns } La sentencia `match-case` va mucho más allá de una simple comparación de valores. Con ella podremos deconstruir estructuras de datos, capturar elementos o mapear valores. Vamos a plantear un ejemplo:material-flash: donde partimos de una [tupla](../datastructures/tuples.md) que representará un punto en el plano (2 coordenadas) o en el espacio (3 coordenadas). Lo primero que vamos a hacer es detectar en qué dimensión se encuentra el punto: ```pycon >>> point = (2, 5) >>> match point: ... case (x, y): ... print(f'({x},{y}) is in plane') ... case (x, y, z): ... print(f'({x},{y},{z}) is in space') ... (2,5) is in plane >>> point = (3, 1, 7) >>> match point: ... case (x, y): ... print(f'({x},{y}) is in plane') ... case (x, y, z): ... print(f'({x},{y},{z}) is in space') ... (3,1,7) is in space ``` Sin embargo esta aproximación permitiría tratar un punto formado por cadenas de texto... ```pycon >>> point = ('2', '5') >>> match point: ... case (x, y): ... print(f'({x},{y}) is in plane') ... case (x, y, z): ... print(f'({x},{y},{z}) is in space') ... (2,5) is in plane ``` Por tanto debemos restringir nuestros patrones a valores enteros: === "Strings bajo control" ```pycon >>> point = ('2', '5') >>> match point: ... case (int(), int()): ... print(f'{point} is in plane') ... case (int(), int(), int()): ... print(f'{point} is in space') ... case _: ... print('Unknown!') ... Unknown! ``` === "Sigue funcionando con enteros" ```pycon >>> point = (3, 9, 1) >>> match point: ... case (int(), int()): ... print(f'{point} is in plane') ... case (int(), int(), int()): ... print(f'{point} is in space') ... case _: ... print('Unknown!') ... (3, 9, 1) is in space ``` Imaginemos ahora que nos piden calcular la distancia del punto al origen. Debemos tener en cuenta que, a priori, desconocemos si el punto está en el plano o en el espacio: ```pycon >>> point = (8, 3, 5) >>> match point: ... case (int(x), int(y)): ... dist_to_origin = (x ** 2 + y ** 2) ** (1 / 2) ... case (int(x), int(y), int(z)): ... dist_to_origin = (x ** 2 + y ** 2 + z ** 2) ** (1 / 2) ... case _: ... print('Unknown!') ... >>> dist_to_origin 9.899494936611665 ``` Con este enfoque, nos aseguramos que los puntos de entrada deben tener todas sus coordenadas como valores enteros: ```pycon >>> point = ('8', 3, 5) # Nótese el 8 como "string" >>> match point: ... case (int(x), int(y)): ... dist_to_origin = (x ** 2 + y ** 2) ** (1 / 2) ... case (int(x), int(y), int(z)): ... dist_to_origin = (x ** 2 + y ** 2 + z ** 2) ** (1 / 2) ... case _: ... print('Unknown!') ... Unknown! ``` Cambiando de ejemplo:material-flash:, veamos un fragmento de código en el que tenemos que **comprobar la estructura de un bloque de autenticación** definido mediante un [diccionario](../datastructures/dicts.md). Los métodos válidos de autenticación son únicamente dos: bien usando nombre de usuario y contraseña, o bien usando correo electrónico y «token» de acceso. Además, los valores deben venir en formato cadena de texto: ```pycon >>> auths = [ ... {'username': 'sdelquin', 'password': '1234'}, ... {'email': 'sdelquin@gmail.com', 'token': '4321'}, ... {'email': 'test@test.com', 'password': 'ABCD'}, ... {'username': 'sdelquin', 'password': 1234} ... ] >>> for auth in auths: ... print(auth) ... match auth: ... case {'username': str(username), 'password': str(password)}: ... print('Authenticating with username and password') ... print(f'{username}: {password}') ... case {'email': str(email), 'token': str(token)}: ... print('Authenticating with email and token') ... print(f'{email}: {token}') ... case _: ... print('Authenticating method not valid!') ... print('---') ... {'username': 'sdelquin', 'password': '1234'} Authenticating with username and password sdelquin: 1234 --- {'email': 'sdelquin@gmail.com', 'token': '4321'} Authenticating with email and token sdelquin@gmail.com: 4321 --- {'email': 'test@test.com', 'password': 'ABCD'} Authenticating method not valid! --- {'username': 'sdelquin', 'password': 1234} Authenticating method not valid! --- ``` Aún un último ejemplo:material-flash: que determina, dada la edad de una persona, si puede o no beber alcohol: ```pycon >>> age = 21 >>> match age: ... case 0 | None:#(1)! ... print('Not a person') ... case n if n < 17:#(2)! ... print('Nope') ... case n if n < 22:#(3)! ... print('Not in the US') ... case _: ... print('Yes') ... Not in the US ``` { .annotate } 1. Nótese el uso del OR... 2. Uso de condicional en la propia expresión. 3. Uso de condicional en la propia expresión. ## Operador morsa { #walrus } Python :octicons-tag-24: 3.8 introdujo el ^^polémico^^ [operador morsa](https://peps.python.org/pep-0572/)[^7] `#!python :=` que permitía unificar sentencias de asignación dentro de expresiones. Supongamos un ejemplo:material-flash: en el que computamos el **perímetro de una circunferencia**, indicando al usuario que debe incrementarlo siempre y cuando no llegue a un mínimo establecido. === "Versión clásica" ```pycon >>> radius = 4.25 ... perimeter = 2 * 3.14 * radius ... if perimeter < 100: ... print('Increase radius to reach minimum perimeter') ... print('Actual perimeter: ', perimeter) ... Increase radius to reach minimum perimeter Actual perimeter: 26.69 ``` === "Versión con operador morsa" ```pycon hl_lines="2" >>> radius = 4.25 ... if (perimeter := 2 * 3.14 * radius) < 100: ... print('Increase radius to reach minimum perimeter') ... print('Actual perimeter: ', perimeter) ... Increase radius to reach minimum perimeter Actual perimeter: 26.69 ``` !!! tip "Equilibro" Como hemos comprobado, el operador morsa permite realizar asignaciones dentro de expresiones, lo que, en muchas ocasiones, permite obtener un código más compacto. Sería conveniente encontrar un equilibrio entre la expresividad y la legibilidad. ??? danger "Renuncia de Guido van Rossum" La adopción del «walrus operator» en el lenguaje fue una de las polémicas más polarizadas en la historia reciente de Python. Tal es así, que al día siguiente de que Guido van Rossum aceptara su introducción en el lenguaje, tuvo un aluvión de críticas que colmaron la paciencia del creador holandés. Así las cosas, Guido escribió [esta carta](https://www.mail-archive.com/python-committers@python.org/msg05628.html) abandonando su puesto como líder y transfiriendo su poder de decisión sobre Python; y terminaba con un «I'm tired, and need a very long break.» ## Ejercicios { #exercises } 1. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `rps` 2. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `min3values` 3. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `blood-donation` 4. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `facemoji` 5. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `shortcuts` [^1]: Reglas de indentación definidas en [PEP 8](https://www.python.org/dev/peps/pep-0008/#indentation). [^2]: Fuente: [Best practices for writing code comments](https://stackoverflow.blog/2021/12/23/best-practices-for-writing-code-comments/) [^3]: El anidamiento (o «nesting») hace referencia a incorporar sentencias unas dentro de otras mediante la inclusión de diversos niveles de profunidad (indentación). [^4]: El valor nulo se conoce en otros lenguajes de programación como `nil`, `null`, `nothing`, ... [^5]: Uso de `#!python is` en comparación de valores nulos explicada [aquí](https://jaredgrubb.blogspot.com/2009/04/python-is-none-vs-none.html) por Jared Grubb. [^6]: El error está perfectamente analizado en [esta respuesta de StackOverflow](https://stackoverflow.com/a/67525259). [^7]: Se denomina así porque el operador `#!python :=` tiene similitud con los colmillos de una morsa. ================================================ FILE: docs/core/controlflow/index.md ================================================ # Control de flujo El control de flujo en programación se refiere a la manera en que se determina el orden en que se ejecutan las instrucciones de un programa. En lugar de seguir una secuencia lineal, los programas pueden tomar decisiones, repetir bloques de código o desviar la ejecución según ciertas condiciones. Esto se logra mediante estructuras como condicionales (if, else), bucles (for, while) y declaraciones de control como break o continue. Dominar el control de flujo es clave para desarrollar programas dinámicos y adaptables, capaces de responder a distintos escenarios. En este capítulo, aprenderás cómo utilizar estas estructuras en Python para crear algoritmos más complejos y eficientes. ================================================ FILE: docs/core/controlflow/loops.md ================================================ --- icon: material/dots-circle tags: - Fundamentos del lenguaje - Control de flujo - Bucles --- # Bucles { #loops } ![Banner](images/loops/banner.jpg) /// caption Imagen generada con Inteligencia Artificial /// Cuando queremos hacer algo más de una vez, necesitamos recurrir a un **bucle**. En esta sección veremos las distintas sentencias en Python que nos permiten repetir un bloque de código. ## La sentencia `while` { #while } El primer mecanismo que existe en Python para repetir instrucciones es usar la sentencia `#!python while`. La semántica tras esta sentencia es: «Mientras se cumpla una condición[^1] haz algo». Veamos un primer ejemplo:material-flash: con un sencillo bucle que repite un saludo mientras así se desee: ```pycon hl_lines="3" >>> want_greet = 'S'#(1)! >>> while want_greet == 'S':#(2)! ... print('Hola qué tal!') ... want_greet = input('¿Quiere otro saludo? [S/N] ') ... print('Que tenga un buen día') Hola qué tal! ¿Quiere otro saludo? [S/N] S Hola qué tal! ¿Quiere otro saludo? [S/N] S Hola qué tal! ¿Quiere otro saludo? [S/N] N Que tenga un buen día ``` { .annotate } 1. Importante dar un valor inicial. 2. - La condición del bucle se comprueba en cada nueva **iteración** (repetición). - En este caso chequeamos que la variable `want_greet` sea igual a `#!python 'S'`. !!! note "Iteración" En este contexto, llamamos **iteración** a cada «repetición» del bucle. **Iterar** significa «repetir» una determinada acción. ### Romper un bucle while { #while-break } Python ofrece la posibilidad de romper o finalizar un bucle antes de que se cumpla la condición de parada. Supongamos que en el ejemplo:material-flash: anterior establecemos **un máximo de 4 saludos**: ```pycon hl_lines="11" >>> MAX_GREETS = 4 >>> num_greets = 0 >>> want_greet = 'S' >>> while want_greet == 'S': ... print('Hola qué tal!') ... num_greets += 1 ... if num_greets == MAX_GREETS: ... print('Número máximo de saludos alcanzado') ... ┌────── break ... ↓ want_greet = input('¿Quiere otro saludo? [S/N] ') ... print('Que tenga un buen día') Hola qué tal! ¿Quiere otro saludo? [S/N] S Hola qué tal! ¿Quiere otro saludo? [S/N] S Hola qué tal! ¿Quiere otro saludo? [S/N] S Hola qué tal! Número máximo de saludos alcanzado Que tenga un buen día ``` Como hemos visto en este ejemplo, `#!python break` nos permite finalizar el bucle una vez que hemos llegado al máximo número de saludos. Pero si no hubiéramos llegado a dicho límite, el bucle habría seguido hasta que el usuario indicara que no quiere más saludos. ??? abstract "Solución alternativa" Otra forma de resolver este ejercicio sería incorporar la (segunda) condición al bucle: ```python while want_greet == 'S' and num_questions < MAX_GREETS: ... ``` #### Comprobar la rotura { #while-else } Python nos ofrece la posibilidad de **detectar si el bucle ha acabado de forma ordinaria**, esto es, ha finalizado por no cumplirse la condición establecida. Para ello podemos hacer uso de la sentencia `#!python else` como parte del propio bucle. Si el bucle `#!python while` finaliza normalmente (sin llamada a `#!python break`) el flujo de control pasa a la sentencia opcional `#!python else`. Veamos su comportamiento siguiendo con el ejemplo:material-flash: que venimos trabajando: ```pycon hl_lines="13" >>> MAX_GREETS = 4 >>> num_greets = 0 >>> want_greet = 'S' >>> while want_greet == 'S': ... print('Hola qué tal!') ... num_greets += 1 ... if num_greets == MAX_GREETS: ... print('Máximo número de saludos alcanzado') ... break ... want_greet = input('¿Quiere otro saludo? [S/N] ') ... else:#(1)! ... print('Usted no quiere más saludos') ... print('Que tenga un buen día') Hola qué tal! ¿Quiere otro saludo? [S/N] S Hola qué tal! ¿Quiere otro saludo? [S/N] N Usted no quiere más saludos Que tenga un buen día ``` { .annotate } 1. El flujo de control entrará por aquí cuando `want_greet` sea distinto de `#!python 'S'` y por tanto no se cumpla la condición del bucle. !!! warning "Contexto" La sentencia `#!python else` sólo tiene sentido en aquellos **bucles** que contienen un `#!python break`. ### Continuar un bucle while { #while-continue } Hay situaciones en las que, en vez de romper un bucle, nos interesa **saltar adelante hacia la siguiente iteración**. Para ello Python nos ofrece la sentencia `#!python continue` que hace precisamente eso, descartar el resto del código del bucle y saltar a la siguiente iteración. Continuamos con el ejemplo:material-flash: anterior pero ahora vamos a **contar el número de respuestas válidas**: ```pycon hl_lines="10" >>> want_greet = 'S' >>> valid_options = 0 >>> while want_greet == 'S': ... ↑ print('Hola qué tal!') ... │ want_greet = input('¿Quiere otro saludo? [S/N] ') ... │ if want_greet not in 'SN':#(1)! ... │ print('No le he entendido pero le saludo') ... │ want_greet = 'S'#(2)! ... └───── continue#(3)! ... valid_options += 1 ... print(f'{valid_options} respuestas válidas') ... print('Que tenga un buen día') Hola qué tal! ¿Quiere otro saludo? [S/N] S Hola qué tal! ¿Quiere otro saludo? [S/N] A No le he entendido pero le saludo Hola qué tal! ¿Quiere otro saludo? [S/N] B No le he entendido pero le saludo Hola qué tal! ¿Quiere otro saludo? [S/N] N 2 respuestas válidas Que tenga un buen día ``` { .annotate } 1. Comprobamos si la entrada es un «sí» o un «no». 2. Asignamos «sí» a la opción para que el bucle pueda seguir funcionando. 3. Saltamos de nuevo al comienzo del bucle. ### Bucle infinito { #infinite-loop } Si no establecemos correctamente la **condición de parada** o bien el valor de alguna variable está fuera de control, es posible que lleguemos a una situación de bucle infinito, del que nunca podamos salir. Veamos un ejemplo:material-flash: de esto: ```pycon >>> num = 1 >>> while num != 10: ... num += 2 ... ^CTraceback (most recent call last): Cell In[4], line 1 while num != 10: KeyboardInterrupt ``` El problema que surje es que la variable `num` toma los valores 1, 3, 5, 7, 9, 11, ... por lo que nunca se cumple la **condición de parada** del bucle. Esto hace que repitamos «eternamente» la instrucción de incremento. ??? tip "Parar el bucle" Para abortar una situación de _bucle infinito_ podemos pulsar en el teclado la combinación ++ctrl+c++. Se puede ver reflejado en el intérprete de Python por `KeyboardInterrupt`. Una posible solución a este problema sería ^^reescribir la condición de parada^^ en el bucle: ```pycon >>> num = 1 >>> while num < 10: ... num += 2 ... ``` #### Bucles infinitos como recurso { #infinite-loops-as-resource } Hay ocaciones en las que un **supuesto bucle «infinito»** puede ayudarnos a resolver un problema. Si retomamos el ejemplo:material-flash: de los saludos, podríamos reescribirlo utilizando un «bucle infinito» de la siguiente manera: ```pycon >>> while True:#(1)! ... print('Hola qué tal!') ... if (want_greet := input('¿Quiere otro saludo? [S/N] ')) != 'S':#(2)! ... break#(3)! ... print('Que tenga un buen día') Hola qué tal! ¿Quiere otro saludo? [S/N] S Hola qué tal! ¿Quiere otro saludo? [S/N] S Hola qué tal! ¿Quiere otro saludo? [S/N] N Que tenga un buen día ``` { .annotate } 1. Este bucle por sí solo implicaría un bucle infinito, pero veremos que no es así. 2. Usando el [operador morsa](conditionals.md#walrus) pedimos la entrada y comprobamos su valor. 3. La sentencia `#!python break` nos «salva» de este bucle infinito cuando no se quieren más saludos. En comparación con el enfoque «clásico» del bucle `#!python while`: - Como ^^ventaja^^ podemos observar que no es necesario asignar un valor inicial a `want_greet` antes de entrar al bucle. - Como ^^desventaja^^ el código resulta menos «idiomático» ya que la condición del bucle no nos da ninguna pista de lo que está ocurriendo. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `m5-limited` ## La sentencia `for` { #for } Python permite recorrer aquellos tipos de datos que sean **iterables**, es decir, que admitan iterar[^2] sobre ellos. Algunos ejemplos de **tipos y estructuras de datos iterables** (_que permiten ser iteradas/recorridas_) son: [cadenas de texto](../datatypes/strings.md), [listas](../datastructures/lists.md), [tuplas](../datastructures/tuples.md), [diccionarios](../datastructures/dicts.md), [ficheros](../datastructures/files.md), etc. La sentencia `#!python for` nos permite realizar esta acción. A continuación se plantea un ejemplo:material-flash: en el que recorremos (iteramos sobre) una cadena de texto: ```pycon >>> word = 'Python' >>> for letter in word:#(1)! ... print(letter) ... P y t h o n ``` { .annotate } 1. - La variable `letter` va tomando cada uno de los elementos de `word`. - Dado que `word` es una _cadena de texto_, cada elemento es un [caracter](../datatypes/strings.md#get-char). !!! note "Variable de asignación" La **variable de asignación** que utilizamos en el bucle `#!python for` para ir tomando los valores puede tener **cualquier nombre**. Al fin y al cabo es una variable que definimos según nuestras necesidades. Suele ser de buen estilo de programación que sea un **nombre en singular** relacionado con la estructura que recorre: - `#!python for item in items:` - `#!python for num in numbers:` - `#!python for product in products:` - `#!python for line in lines:` ### Romper un bucle for { #for-break } Una sentencia `#!python break` dentro de un `#!python for` rompe el bucle, [igual que veíamos](#while-break) para los bucles `#!python while`. Veamos un ejemplo:material-flash: recorriendo una cadena de texto y parando el bucle cuando encontremos una letra _t_ minúscula: ```pycon hl_lines="5" >>> word = 'Python' >>> for letter in word: ... if letter == 't': ... break ... print(letter) ... P y ``` !!! tip "Comprobación de rotura y continuación" Tanto la [comprobación de rotura de un bucle](#while-else) como la [continuación a la siguiente iteración](#while-continue) se llevan a cabo del mismo modo que hemos visto con los bucles de tipo `#!python while`. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `count-vowels` ### Secuencias de números { #range } Es muy habitual hacer uso de secuencias de números en bucles. Python no tiene una instrucción específica para ello. Lo que sí aporta es una función `#!python range()` que devuelve un flujo de números en el rango especificado[^3]. La técnica para la generación de secuencias de números es muy similar a la utilizada en los [«slices»](../datatypes/strings.md#slicing) de cadenas de texto. En este caso disponemos de la función `#!python range(start, stop, step)`: | Parámetro | Carácter | Por defecto | | --- | --- | --- | | `start` | Opcional | 0 | | `stop` | Obligatorio | - | | `step` | Opcional | 1 | Veamos distintos casos de uso: === "Rango: $[0,1,2]$" ```pycon >>> for i in range(3):#(1)! ... print(i) ... 0 1 2 ``` { .annotate } 1. `#!python start=0`, `#!python stop=3`, `#!python step=1` - También se podría haber escrito `#!python range(0, 3)` pero es innecesario. - Recordar que al ser _índice 0_, el rango llega hasta 1 menos que el límite superior. === "Rango: $[1,3,5]$" ```pycon >>> for i in range(1, 6, 2):#(1)! ... print(i) ... 1 3 5 ``` { .annotate } 1. `#!python start=1`, `#!python stop=6`, `#!python step=2` === "Rango: $[2,1,0]$" ```pycon >>> for i in range(2, -1, -1):#(1)! ... print(i) ... 2 1 0 ``` { .annotate } 1. - `#!python start=2`, `#!python stop=-1`, `#!python step=-1` - Vamos «hacia atrás» por tanto el límite final estará uno por debajo de donde queremos llegar. !!! warning "i, j, k" Se suelen utilizar nombres de variables `i`, `j`, `k` para lo que se denominan **contadores**[^4]. Este tipo de variables toman valores numéricos enteros como en los ejemplos anteriores. :material-alarm-light:{ .red } No conviene generalizar el uso de estas variables a situaciones en las que, claramente, tenemos la posibilidad de **asignar un nombre semánticamente más significativo**. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `prime` #### Usando el guión bajo { #underscore } Hay situaciones en las que **no necesitamos usar la variable** que toma valores en el rango, sino que únicamente queremos repetir una acción un número determinado de veces. Para estos casos se suele recomendar usar el **guión bajo** `_` como **nombre de variable**, que da a entender que no estamos usando esta variable de forma explícita: ```pycon >>> for _ in range(10): ... print('Repeat me 10 times!') ... Repeat me 10 times! Repeat me 10 times! Repeat me 10 times! Repeat me 10 times! Repeat me 10 times! Repeat me 10 times! Repeat me 10 times! Repeat me 10 times! Repeat me 10 times! Repeat me 10 times! ``` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `pow` ## Bucles anidados { #nested-loops } Como ya vimos en las [sentencias condicionales](conditionals.md#if), el **anidamiento** es una técnica por la que incluimos distintos niveles de encapsulamiento de sentencias, unas dentro de otras, con mayor nivel de profundidad. En el caso de los bucles también es posible hacer anidamiento, tanto para bucles [`while`](#while) como para bucles [`for`](#for). ![Matrioskas](images/loops/matrioskas.png) ///caption Muñecas rusas © [Marina Yufereva](https://www.revista.escaner.cl/node/7197) (Escáner Cultural) /// Veamos un ejemplo:material-flash: de **2 bucles anidados** en el que generamos **todas las tablas de multiplicar**: ```pycon >>> for num_table in range(1, 10):#(1)! ... for mul_factor in range(1, 10):#(2)! ... result = num_table * mul_factor ... print(f'{num_table} * {mul_factor} = {result}') ... print('----------') ... 1 * 1 = 1 1 * 2 = 2 1 * 3 = 3 1 * 4 = 4 1 * 5 = 5 1 * 6 = 6 1 * 7 = 7 1 * 8 = 8 1 * 9 = 9 ---------- 2 * 1 = 2 2 * 2 = 4 2 * 3 = 6 2 * 4 = 8 2 * 5 = 10 2 * 6 = 12 2 * 7 = 14 2 * 8 = 16 2 * 9 = 18 ---------- 3 * 1 = 3 3 * 2 = 6 3 * 3 = 9 3 * 4 = 12 3 * 5 = 15 3 * 6 = 18 3 * 7 = 21 3 * 8 = 24 3 * 9 = 27 ---------- 4 * 1 = 4 4 * 2 = 8 4 * 3 = 12 4 * 4 = 16 4 * 5 = 20 4 * 6 = 24 4 * 7 = 28 4 * 8 = 32 4 * 9 = 36 ---------- 5 * 1 = 5 5 * 2 = 10 5 * 3 = 15 5 * 4 = 20 5 * 5 = 25 5 * 6 = 30 5 * 7 = 35 5 * 8 = 40 5 * 9 = 45 ---------- 6 * 1 = 6 6 * 2 = 12 6 * 3 = 18 6 * 4 = 24 6 * 5 = 30 6 * 6 = 36 6 * 7 = 42 6 * 8 = 48 6 * 9 = 54 ---------- 7 * 1 = 7 7 * 2 = 14 7 * 3 = 21 7 * 4 = 28 7 * 5 = 35 7 * 6 = 42 7 * 7 = 49 7 * 8 = 56 7 * 9 = 63 ---------- 8 * 1 = 8 8 * 2 = 16 8 * 3 = 24 8 * 4 = 32 8 * 5 = 40 8 * 6 = 48 8 * 7 = 56 8 * 8 = 64 8 * 9 = 72 ---------- 9 * 1 = 9 9 * 2 = 18 9 * 3 = 27 9 * 4 = 36 9 * 5 = 45 9 * 6 = 54 9 * 7 = 63 9 * 8 = 72 9 * 9 = 81 ---------- ``` { .annotate } 1. Para cada valor que toma la variable `num_table` la otra variable `mul_factor` toma todos sus valores. 2. Como resultado tenemos una combinación completa de los valores en el rango especificado. ??? warning "Complejidad ciclomática" Podemos añadir todos los niveles de anidamiento que queramos. Eso sí, hay que tener en cuenta que cada nuevo nivel de anidamiento supone un importante aumento de la [complejidad ciclomática](https://es.wikipedia.org/wiki/Complejidad_ciclom%C3%A1tica) de nuestro código, lo que se traduce en mayores tiempos de ejecución. :simple-readdotcv: Revisa [este artículo](https://samwho.dev/big-o/) de [Sam Rose](https://samwho.dev/) sobre **Notación O** (*orden de crecimiento*). !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `mosaic` ## Ejercicios { #exercises } 1. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `letdig` 2. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `m3-sum-limited` 3. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `repeat-please` 4. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `one-tree` 5. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `chess-horse` 6. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `domino` 7. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `fmin` 8. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `ascii-table` 9. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `guess-number` 10. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `gcd` 11. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `hamming` 12. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `cartesian` 13. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `cumprod-sq` 14. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `isalpha` 15. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `kpower` 16. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `fibonacci` [^1]: Esta condición del bucle se conoce como **condición de parada**. [^2]: Realizar cierta acción varias veces. En este caso la acción es tomar cada elemento. [^3]: Una de las grandes ventajas es que la «lista» generada no se construye explícitamente, sino que cada valor se genera bajo demanda. Esta técnica mejora el consumo de recursos, especialmente en términos de memoria. [^4]: Esto viene de tiempos antiguos en [FORTRAN](https://fortran-lang.org/es/index) donde `i` era la primera letra que tenía valor entero por defecto. ================================================ FILE: docs/core/datastructures/dicts.md ================================================ --- icon: material/code-braces tags: - Fundamentos del lenguaje - Estructuras de datos - Diccionarios --- # Diccionarios { #dicts } ![Banner](images/dicts/banner.jpg) ///caption Imagen generada con Inteligencia Artificial /// Podemos trasladar el concepto de _diccionario_ de la vida real al mundo Python. Al fin y al cabo un diccionario es un objeto que contiene palabras, y cada palabra tiene asociado un significado. Haciendo el paralelismo, diríamos que en Python un diccionario es también un objeto indexado por **claves** (las palabras) que tienen asociados unos **valores** (los significados). ![Dark image](images/dicts/dicts-dark.svg#only-dark) ![Light image](images/dicts/dicts-light.svg#only-light) Los diccionarios en Python tienen las siguientes **características**: - Mantienen el **orden** en el que se insertan las claves[^1]. - Son **mutables**, con lo que permiten añadir, borrar y modificar sus elementos. - Las **claves** deben ser **únicas**. A menudo se utilizan las _cadenas de texto_ como claves, pero en realidad podría ser **cualquier tipo de datos inmutable**: enteros, flotantes, tuplas (entre otros). - Tienen un **acceso muy rápido** a sus elementos, debido a la forma en la que están implementados internamente[^2]. !!! note "Hashes" En otros lenguajes de programación, a los diccionarios se les conoce como _arrays asociativos_, _«hashes»_ o _«hashmaps»_. Básicamente porque al final lo que utilizan es una [función hash](#hashables) para determinar la ubicación de las claves. ## Creando diccionarios { #create } Para crear un diccionario usamos llaves `{}` rodeando asignaciones `clave: valor` que están separadas por comas. Veamos algunos ejemplos:material-flash: de diccionarios: ```pycon >>> rae = {#(1)! ... 'bifronte': 'De dos frentes o dos caras', ... 'anarcoide': 'Que tiende al desorden', ... 'montuvio': 'Campesino de la costa' ... } >>> population_can = {#(2)! ... 2015: 2_135_209, ... 2016: 2_154_924, ... 2017: 2_177_048, ... 2018: 2_206_901, ... 2019: 2_220_270 ... } >>> empty_dict = {}#(3)! ``` { .annotate } 1. Un diccionario con claves [cadenas de texto](../datatypes/strings.md) y valores [cadenas de texto](../datatypes/strings.md). 2. Un diccionario con claves [números enteros](../datatypes/numbers.md#integers) y valores [números enteros](../datatypes/numbers.md#integers). 3. El **diccionario vacío** (_0 elementos_). !!! exercise "Ejercicio" Entra en el intérprete interactivo de Python ❯❯❯ y crea un diccionario con los nombres (como claves) de 5 personas de tu familia y sus edades (como valores). ## Conversión { #cast } Para convertir otros tipos de datos en un diccionario podemos usar la función `#!python dict()`. Veamos varios ejemplos:material-flash: donde creamos un diccionario a partir de... === "... una lista de cadenas de texto" ```pycon >>> dict(['a1', 'b2']) {'a': '1', 'b': '2'} ``` === "... una tupla de cadenas de texto" ```pycon >>> dict(('a1', 'b2')) {'a': '1', 'b': '2'} ``` === "... una lista de listas" ```pycon >>> dict([['a', 1], ['b', 2]]) {'a': 1, 'b': 2} ``` :material-check-all:{ .blue } Si nos fijamos bien, _cualquier iterable que tenga una estructura interna de 2 elementos_ es susceptible de convertirse en un diccionario a través de la función `#!python dict()`. ### Creando con `dict()` { #dict-create } También es posible utilizar la función `#!python dict()` para crear dicionarios y no tener que utilizar llaves y comillas. Planteemos un ejemplo:material-flash: donde queremos transformar la siguiente tabla en un diccionario: | Atributo | Valor | | --- | --- | | `name` | Guido | | `surname` | van Rossum | | `job` | Python creator | Utilizando la construcción mediante `#!python dict()` podemos pasar ^^clave y valor^^ como **argumentos** de la función: ```pycon >>> person = dict( ... name='Guido', ... surname='van Rossum', ... job='Python creator' ... ) >>> person {'name': 'Guido', 'surname': 'van Rossum', 'job': 'Python creator'} ``` El inconveniente que tiene esta aproximación es que las **claves deben ser identificadores válidos** en Python. Por ejemplo:material-flash: no se permiten espacios: ```pycon hl_lines="7" >>> person = dict( ... name='Guido van Rossum', ... date of birth='31/01/1956' Cell In[1], line 1 person = dict( ^ SyntaxError: '(' was never closed ``` ### Creando con relleno { #dict-filled } Python permite crear un diccionario especificando sus claves y un único valor de «relleno» utilizando la función [`fromkeys()`](https://docs.python.org/3/library/stdtypes.html#dict.fromkeys). Por ejemplo:material-flash: creemos un diccionario para almacenar el «rating» (valoración) de productos en una tienda de comercio online (inicialmente tendrán 0): ```pycon >>> dict.fromkeys(['portátil', 'nevera', 'ventilador', 'monitor'], 0) {'portátil': 0, 'nevera': 0, 'ventilador': 0, 'monitor': 0} ``` !!! note "Sobre cualquier iterable" Es posible aplicar `fromkeys()` sobre **cualquier iterable** con referencia a las claves. ## Operaciones con diccionarios { #operations } Existen multitud de operaciones que se pueden realizar sobre diccionarios. A continuación veremos la mayoría de ellas: ### Obtener un elemento { #get-item } Para obtener un elemento (valor de una clave) de un diccionario basta con **escribir la clave entre corchetes**. Veamos un ejemplo:material-flash:: ```pycon hl_lines="7" >>> rae = { ... 'bifronte': 'De dos frentes o dos caras', ... 'anarcoide': 'Que tiende al desorden', ... 'montuvio': 'Campesino de la costa' ... } >>> rae['anarcoide'] 'Que tiende al desorden' ``` Si intentamos acceder a una clave que no existe, obtendremos un error de tipo [`KeyError`](https://docs.python.org/3/library/exceptions.html#KeyError): ```pycon hl_lines="5" >>> rae['acceso'] Traceback (most recent call last): Cell In[1], line 1 rae['acceso'] KeyError: 'acceso' ``` #### Usando `get()` { #get } Existe una función muy útil para «superar» los posibles errores de acceso por claves inexistentes. Se trata de `#!python get()` y su comportamiento es el siguiente: 1. Si la clave que buscamos existe, nos devuelve su valor. 2. Si la clave que buscamos no existe, nos devuelve `#!python None` salvo que le indiquemos otro valor por defecto, pero en ninguno de los dos casos obtendremos un error. Veamos un ejemplo:material-flash: de cada uno de los escenarios indicados: ```pycon >>> rae {'bifronte': 'De dos frentes o dos caras', 'anarcoide': 'Que tiende al desorden', 'montuvio': 'Campesino de la costa'} >>> rae.get('bifronte')#(1)! 'De dos frentes o dos caras' >>> rae.get('programación')#(2)! >>> rae.get('programación', 'No disponible')#(3)! 'No disponible' ``` { .annotate } 1. La clave existe y se devuelve su valor. 2. La clave no existe y se devuelve `#!python None` (no aparece nada en la salida). 3. La clave no existe pero aportamos un valor por defecto. ### Añadir o modificar un elemento { #add-modify } Para añadir un elemento a un diccionario sólo es necesario hacer referencia a la _clave_ y asignarle un _valor_: - Si la clave **ya existía** en el diccionario, **se reemplaza** el valor existente por el nuevo. - Si la clave **es nueva**, **se añade** al diccionario con su valor. _No vamos a obtener un error a diferencia de las listas_. Partimos del siguiente diccionario de ejemplo:material-flash: para mostrar ambos escenarios: ```pycon rae = { ... 'bifronte': 'De dos frentes o dos caras', ... 'anarcoide': 'Que tiende al desorden', ... 'montuvio': 'Campesino de la costa' ... } ``` === "Añadir elemento :octicons-diff-added-24:" ```pycon >>> rae['enjuiciar'] = 'Someter una cuestión a examen, discusión y juicio' >>> rae {'anarcoide': 'Que tiende al desorden', 'bifronte': 'De dos frentes o dos caras', 'enjuiciar': 'Someter una cuestión a examen, discusión y juicio', 'montuvio': 'Campesino de la costa'} ``` === "Modificar elemento :fontawesome-solid-down-left-and-up-right-to-center:" ```pycon >>> rae['enjuiciar'] = 'Instruir, juzgar o sentenciar una causa' >>> rae {'anarcoide': 'Que tiende al desorden', 'bifronte': 'De dos frentes o dos caras', 'enjuiciar': 'Instruir, juzgar o sentenciar una causa', 'montuvio': 'Campesino de la costa'} ``` !!! info "Valor por defecto" Python ofrece la función [`setdefault()`](https://docs.python.org/dev/library/stdtypes.html#dict.setdefault) cuyo comportamiento es el siguiente: 1. Si la clave indicada existe, se devuelve su valor. 2. Si la clave indicada no existe, se añade la clave con el valor indicado. Veamos un ejemplo:material-flash:: ```pycon >>> rae = { ... 'bifronte': 'De dos frentes o dos caras', ... 'anarcoide': 'Que tiende al desorden', ... 'montuvio': 'Campesino de la costa' ... } >>> rae.setdefault('poniente', 'Viento del oeste') 'Viento del oeste' >>> rae {'bifronte': 'De dos frentes o dos caras', 'anarcoide': 'Que tiende al desorden', 'montuvio': 'Campesino de la costa', 'poniente': 'Viento del oeste'} >>> rae.setdefault('poniente', 'Viento del oeste') 'Viento del oeste' ``` #### Patrón creación { #create-pattern } Una forma muy habitual de trabajar con diccionarios es empezar con uno vacío e ir añadiendo elementos poco a poco. Se podría hablar de un **patrón creación**. A continuación se muestra un ejemplo:material-flash: de creación de un diccionario donde las **claves** son las **letras vocales** y los **valores** son sus [códigos UNICODE](../datatypes/strings.md#unicode): ```pycon >>> VOWELS = 'aeiou' >>> cvowels = {} >>> for vowel in VOWELS: ... cvowels[vowel] = ord(vowel) ... >>> cvowels {'a': 97, 'e': 101, 'i': 105, 'o': 111, 'u': 117} ``` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `extract-cities` ### Pertenencia de una clave { #in } La forma **pitónica** de comprobar la existencia de una ^^clave^^ dentro de un diccionario, es utilizar el operador `#!python in`: ```pycon >>> 'bifronte' in rae True >>> 'almohada' in rae False >>> 'montuvio' not in rae False ``` !!! note "Booleano" El operador `#!python in` siempre devuelve un valor _booleano_, es decir, verdadero o falso. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `count-letters` ### Longitud de un diccionario { #length } Podemos conocer el número de elementos («clave-valor») que tiene un diccionario mediante la función `#!python len()`: ```pycon >>> rae {'bifronte': 'De dos frentes o dos caras', 'anarcoide': 'Que tiende al desorden', 'montuvio': 'Campesino de la costa', 'enjuiciar': 'Instruir, juzgar o sentenciar una causa'} >>> len(rae) 4 ``` ### Obtener todos los elementos { #get-items } Python ofrece mecanismos para obtener todos los elementos de un diccionario. Partimos del siguiente diccionario de ejemplo:material-flash: para ilustrar estos mecanismos: ```pycon >>> rae {'anarcoide': 'Que tiende al desorden', 'bifronte': 'De dos frentes o dos caras', 'enjuiciar': 'Instruir, juzgar o sentenciar una causa', 'montuvio': 'Campesino de la costa'} ``` === "Obtener claves :octicons-key-16:" ```pycon >>> rae.keys() dict_keys(['bifronte', 'anarcoide', 'montuvio', 'enjuiciar']) ``` === "Obtener valores :material-content-save:" ```pycon >>> rae.values() dict_values([ 'De dos frentes o dos caras', 'Que tiende al desorden', 'Campesino de la costa', 'Instruir, juzgar o sentenciar una causa' ]) ``` === "Obtener claves y valores :octicons-key-16::material-content-save:" ```pycon >>> rae.items() dict_items([ ('bifronte', 'De dos frentes o dos caras'), ('anarcoide', 'Que tiende al desorden'), ('montuvio', 'Campesino de la costa'), ('enjuiciar', 'Instruir, juzgar o sentenciar una causa') ]) ``` :material-check-all:{ .blue } Cabe destacar que los «items» se devuelven como una **[lista](./lists.md) de [tuplas](./tuples.md)**, donde cada tupla contiene dos elementos: el primero representa la **clave** y el segundo representa el **valor**. ### Iterar sobre un diccionario { #iterate } En función de los [elementos que podemos obtener](#get-items), Python proporciona tres maneras de iterar sobre un diccionario: === "Iterar sobre claves :octicons-key-16:" ```pycon >>> for word in rae.keys(): ... print(word) ... bifronte anarcoide montuvio enjuiciar ``` === "Iterar sobre valores :material-content-save:" ```pycon >>> for meaning in rae.values(): ... print(meaning) ... De dos frentes o dos caras Que tiende al desorden Campesino de la costa Instruir, juzgar o sentenciar una causa ``` === "Iterar sobre claves y valores :octicons-key-16::material-content-save:" ```pycon >>> for word, meaning in rae.items(): ... print(f'{word}: {meaning}')#(1)! ... bifronte: De dos frentes o dos caras anarcoide: Que tiende al desorden montuvio: Campesino de la costa enjuiciar: Instruir, juzgar o sentenciar una causa ``` { .annotate } 1. Recuerda el uso de los [«f-strings»](../../core/datatypes/strings.md#fstrings) para formatear cadenas de texto. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `avg-population` ### Borrar elementos { #remove } Python nos ofrece varios mecanismos para borrar elementos en un diccionario: === "Por su clave :octicons-key-16:" ```pycon hl_lines="7" >>> rae = { ... 'bifronte': 'De dos frentes o dos caras', ... 'anarcoide': 'Que tiende al desorden', ... 'montuvio': 'Campesino de la costa' ... } >>> del rae['bifronte'] >>> rae {'anarcoide': 'Que tiende al desorden', 'montuvio': 'Campesino de la costa'} ``` === "Por su clave (con extracción) :material-party-popper:" ```pycon hl_lines="7" >>> rae = { ... 'bifronte': 'De dos frentes o dos caras', ... 'anarcoide': 'Que tiende al desorden', ... 'montuvio': 'Campesino de la costa' ... } >>> rae.pop('anarcoide')#(1)! 'Que tiende al desorden' >>> rae {'bifronte': 'De dos frentes o dos caras', 'montuvio': 'Campesino de la costa'} >>> rae.pop('anarcoide')#(2)! Traceback (most recent call last): Cell In[1], line 1 rae.pop('anarcoide') KeyError: 'anarcoide' ``` { .annotate } 1. `#!python pop()` extrae la clave (y el valor) indicados. 2. Si una clave no existe obtenemos un error de tipo [`KeyError`](https://docs.python.org/3/library/exceptions.html#KeyError). === "Borrado completo :material-eraser:" ```pycon hl_lines="7" >>> rae = { ... 'bifronte': 'De dos frentes o dos caras', ... 'anarcoide': 'Que tiende al desorden', ... 'montuvio': 'Campesino de la costa' ... } >>> rae.clear()#(1)! >>> rae {} ``` { .annotate } 1. Se borra la zona de memoria existente. === "Borrado completo (reasignado) :octicons-trash-16:" ```pycon hl_lines="7" >>> rae = { ... 'bifronte': 'De dos frentes o dos caras', ... 'anarcoide': 'Que tiende al desorden', ... 'montuvio': 'Campesino de la costa' ... } >>> rae = {}#(1)! >>> rae {} ``` { .annotate } 1. Se busca una nueva zona de memoria vacía. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `merge-dicts` ### Combinar diccionarios { #combine } Dados dos (o más) diccionarios, es posible «mezclarlos» para obtener una combinación de los mismos. Esta combinación se basa en dos premisas: - [x] Si la clave no existe, se añade con su valor. - [x] Si la clave ya existe, se añade con el valor del «último»[^3] diccionario en la mezcla. Partiendo de los siguientes diccionarios vamos a mostrar ejemplos:material-flash: sobre los mecanismos que ofrece Python para combinar diccionarios: ```pycon >>> rae1 = { ... 'bifronte': 'De dos frentes o dos caras', ... 'enjuiciar': 'Someter una cuestión a examen, discusión y juicio' ... } >>> rae2 = { ... 'anarcoide': 'Que tiende al desorden', ... 'montuvio': 'Campesino de la costa', ... 'enjuiciar': 'Instruir, juzgar o sentenciar una causa' ... } ``` === "Sin modificar los diccionarios originales :material-silverware-clean:" ```pycon >>> rae1 | rae2#(1)! {'bifronte': 'De dos frentes o dos caras', 'enjuiciar': 'Instruir, juzgar o sentenciar una causa', 'anarcoide': 'Que tiende al desorden', 'montuvio': 'Campesino de la costa'} ``` { .annotate } 1. En versiones anteriores a Python :octicons-tag-24: 3.9 habría que utilizar: `#!python {**rae1, **rae2}` === "Modificando los diccionarios originales :material-message-arrow-right-outline:" ```pycon >>> rae1.update(rae2) >>> rae1 {'bifronte': 'De dos frentes o dos caras', 'enjuiciar': 'Instruir, juzgar o sentenciar una causa', 'anarcoide': 'Que tiende al desorden', 'montuvio': 'Campesino de la costa'} ``` ??? tip "Orden de la mezcla" Hay que tener en cuenta el orden en el que especificamos los diccionarios a la hora de su combinación (mezcla) ya que es relevante en el resultado final. En este caso _el orden de los factores sí altera el producto_. ## Cuidado con las copias { #copy } Al igual que [ocurría con las listas](lists.md#copy), si hacemos un cambio en un diccionario, se verá reflejado en todas las variables que hagan referencia al mismo. Esto se deriva de su propiedad de ser _mutable_. Veamos un ejemplo:material-flash: concreto: ```pycon hl_lines="12 17" >>> original_rae = { ... 'bifronte': 'De dos frentes o dos caras', ... 'anarcoide': 'Que tiende al desorden', ... 'montuvio': 'Campesino de la costa' ... } >>> copy_rae = original_rae#(1)! >>> original_rae['bifronte'] = 'bla bla bla'#(2)! >>> original_rae {'bifronte': 'bla bla bla', 'anarcoide': 'Que tiende al desorden', 'montuvio': 'Campesino de la costa'} >>> copy_rae {'bifronte': 'bla bla bla', 'anarcoide': 'Que tiende al desorden', 'montuvio': 'Campesino de la costa'} ``` { .annotate } 1. Con esta asignación, ambas variables (nombres) quedan apuntando a la misma zona de memoria. 2. Esta modificación se realiza sobre la misma zona de memoria, lo que afecta a ambas variables. Una **posible solución** a este problema es hacer una «copia dura». Para ello Python proporciona la función `#!python copy()`: ```pycon hl_lines="9 12 17" >>> original_rae = { ... 'bifronte': 'De dos frentes o dos caras', ... 'anarcoide': 'Que tiende al desorden', ... 'montuvio': 'Campesino de la costa' ... } >>> copy_rae = original_rae.copy()#(1)! >>> original_rae['bifronte'] = 'bla bla bla'#(2)! >>> original_rae {'bifronte': 'bla bla bla', 'anarcoide': 'Que tiende al desorden', 'montuvio': 'Campesino de la costa'} >>> copy_rae {'bifronte': 'De dos frentes o dos caras', 'anarcoide': 'Que tiende al desorden', 'montuvio': 'Campesino de la costa'} ``` { .annotate } 1. La copia se realiza en zonas de memoria distintas. 2. Esta modificación ya no afecta a ambas variables, al estar segmentadas en memoria. ??? warning "Copia profunda" En el caso de que estemos trabajando con diccionarios que contienen elementos mutables, debemos hacer uso de la función `#!python deepcopy()` dentro del módulo `copy` de la librería estándar. ## Diccionarios por comprensión { #comprehension } De forma análoga a cómo se escriben las [listas por comprensión](lists.md#comprehension), podemos aplicar este método a los diccionarios usando llaves `{ }`. Veamos un ejemplo:material-flash: en el que creamos un **diccionario por comprensión** donde las claves son palabras y los valores son sus longitudes: ```pycon hl_lines="3" >>> words = ('sun', 'space', 'rocket', 'earth') >>> words_length = {word: len(word) for word in words} >>> words_length {'sun': 3, 'space': 5, 'rocket': 6, 'earth': 5} ``` También podemos aplicar **condiciones** a estas comprensiones. Continuando con el ejemplo:material-flash: anterior, podemos incorporar la restricción de sólo incluir palabras que no empiecen por vocal: ```pycon hl_lines="3" >>> words = ('sun', 'space', 'rocket', 'earth') >>> words_length = {w: len(w) for w in words if w[0] not in 'aeiou'} >>> words_length {'sun': 3, 'space': 5, 'rocket': 6} ``` ??? info "PEP-274" Se puede consultar el [PEP-274](https://www.python.org/dev/peps/pep-0274/) para ver más ejemplos sobre diccionarios por comprensión. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `split-marks` ## Objetos «hashables» { #hashables } La única restricción que deben cumplir las **claves** de un diccionario es ser **«hashables»**. Un objeto es «hashable» si se le puede asignar un valor «hash» que no cambia en ejecución durante toda su vida. Para encontrar el «hash» de un objeto, Python usa la función `#!python hash()`, que devuelve un número entero y es utilizado para indexar la tabla «hash» que se mantiene internamente: ```pycon >>> hash(999) 999 >>> hash(3.14) 322818021289917443 >>> hash('hello')#(1)! -8103770210014465245 >>> hash(('a', 'b', 'c')) -2157188727417140402 ``` { .annotate } 1. La función «built-in» `hash()` realmente hace una llamada al método mágico `__hash__()` del objeto en cuestión: `#!python 'hello'.__hash__()` Para que un objeto sea «hashable», debe ser de un **tipo inmutable**: ```pycon hl_lines="5" >>> hash(['a', 'b', 'c']) Traceback (most recent call last): Cell In[1], line 1 hash(['a', 'b', 'c']) TypeError: unhashable type: 'list' ``` !!! success "Claves inmutables" De lo anterior se deduce que las claves de los diccionarios, al tener que ser «hashables», sólo pueden ser objetos inmutables. ## Ejercicios 1. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `group-words` 2. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `same-dict-values` 3. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `dict-from-list` 4. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `clear-dict-values` 5. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `fix-keys` 6. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `order-stock` 7. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `inventory-updates` 8. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `sort-dict` 9. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `money-back` 10. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `money-back-max` 11. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `first-ntimes` 12. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `fix-id` 13. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `dict-pull` [^1]: «Los diccionarios preservan el orden de inserción» extraído de la [documentación oficial de Python sobre diccionarios](https://docs.python.org/3/library/stdtypes.html#mapping-types-dict). [^2]: Artículo de Ramil Suleimanov sobre [«Por qué los diccionarios en Python son tan rápidos»](https://medium.com/@r_suleimanov/why-is-python-dict-so-fast-555e330a8ded). [^3]: En este contexto «último» significa el que esté más a la derecha en la sentencia de asignación. ================================================ FILE: docs/core/datastructures/files.md ================================================ --- icon: material/file-cabinet tags: - Fundamentos del lenguaje - Estructuras de datos - Ficheros --- # Ficheros { #files } ![Banner](images/files/banner.jpg) /// caption Imagen generada con Inteligencia Artificial /// Aunque los ficheros encajarían más en un apartado de «entrada/salida» ya que representan un **medio de almacenamiento persistente**, también podrían ser vistos como _estructuras de datos_, puesto que nos permiten guardar información y asignarle un cierto formato. Un **fichero** es un _conjunto de bytes_ almacenados en algún dispositivo. El [sistema de ficheros](https://bit.ly/405ABbw) es la estructura lógica que alberga los ficheros y está jerarquizado a través de _directorios_ (o carpetas). Cada fichero se **identifica unívocamente a través de una ruta** que nos permite acceder a él. En esta sección nos centraremos en el manejo de **ficheros de texto plano** (aquellos que son entendibles por humanos). Pero también existen _ficheros binarios_ que Python es capaz de manejar. Hay tres modos de apertura de un fichero: - [x] [Lectura](#read). - [x] [Escritura](#write). - [x] [Añadido](#append). ## Lectura de un fichero { #read } Para abrir un fichero en **modo lectura** utilizamos la función `#!python open()` con el modificador `#!python 'r'`. En el siguiente ejemplo:material-flash: vamos a leer el contenido de un fichero que contiene las **temperaturas mínimas y máximas** de cada día de la última semana en una región determinada: ```text title="store/temps.dat" linenums="1" 23 29 23 31 26 34 23 33 22 29 22 28 22 28 ``` Abrir un fichero significa crear un objeto «manejador»[^1] que nos permita realizar operaciones sobre dicho fichero: ```pycon >>> f = open('store/temps.dat', 'r')#(1)! ``` { .annotate } 1. Es posible omitir `#!python 'r'` ya que el modo de apertura por defecto es _lectura_. La función `#!python open()` recibe como primer argumento la **ruta al fichero** que queremos manejar (como un «string») y como segundo argumento el **modo de apertura** (también como un «string»). Nos **devuelve el manejador del fichero**, que en este caso lo estamos asignando a una variable llamada `f` pero le podríamos haber puesto cualquier otro nombre. !!! note "Rutas relativas vs Rutas absolutas" Es importante dominar los conceptos de ruta relativa y ruta absoluta para el trabajo con ficheros (véase [este artículo](https://sanchezcorbalan.es/rutas-relativas-vs-rutas-absolutas/) de _Sánchez Corbalán_). El **manejador del fichero** se implementa mediante un [flujo de entrada/salida](https://docs.python.org/es/3/library/io.html#io.TextIOWrapper) para las operaciones de lectura/escritura. Este objeto almacena, entre otras cosas, la ruta al fichero, el modo de apertura y la codificación: ```pycon >>> f <_io.TextIOWrapper name='store/temps.dat' mode='r' encoding='UTF-8'> ``` !!! tip "Codificaciones" Existen muchas [codificaciones de caracteres](https://es.wikipedia.org/wiki/Codificaci%C3%B3n_de_caracteres) para ficheros, pero la más utilizada es [UTF-8](https://es.wikipedia.org/wiki/UTF-8) ya que es capaz de representar cualquier caracter [Unicode](../datatypes/strings.md#unicode) al utilizar una longitud variable de 1 a 4 bytes. Hay que tener en cuenta que **la ruta al fichero** que abrimos (en modo lectura) **debe existir**, ya que de lo contrario obtendremos un error: ```pycon hl_lines="5" >>> f = open('foo.txt', 'r') Traceback (most recent call last): Cell In[1], line 1 f = open('foo.txt', 'r') FileNotFoundError: [Errno 2] No such file or directory: 'foo.txt' ``` Una vez abierto el fichero ya podemos proceder a leer su contenido. Para ello Python nos ofrece la posibilidad de leer todo el fichero de una vez o bien leerlo línea a línea. !!! example "Lectura y escritura" Es posible utilizar `#!python open(path, 'r+')` para abrir el fichero en modo lectura y escritura simultáneamente. ### Lectura completa Siguiendo nuestro ejemplo:material-flash: de temperaturas, veamos cómo leer todo el contenido del fichero de una sola vez. Para esta operación, Python nos provee de dos funciones: === "`read()` :fontawesome-regular-file-text:" Devuelve todo el contenido del fichero como una única **cadena de texto**: ```pycon >>> f = open('store/temps.dat') >>> f.read() '23 29\n23 31\n26 34\n23 33\n22 29\n22 28\n22 28\n' ``` === "`readlines()` :material-account-file-text-outline:" Devuelve todo el contenido del fichero como una **lista** donde cada elemento de la lista representa una línea del fichero: ```pycon >>> f = open('store/temps.dat') >>> f.readlines() ['23 29\n', '23 31\n', '26 34\n', '23 33\n', '22 29\n', '22 28\n', '22 28\n'] ``` !!! warning "Saltos de línea" Nótese que, en ambos casos, los saltos de línea `#!python '\n'` siguen apareciendo en los datos leídos, por lo que habría que [limpiar](../datatypes/strings.md#strip) estos caracteres. ### Lectura línea a línea { #read-line-by-line } Hay situaciones en las que interesa leer el contenido del fichero **línea a línea**. Imaginemos un fichero de tamaño considerable (varios GB). Si intentamos leer completamente este fichero de sola una vez podríamos ocupar demasiada RAM y reducir el rendimiento de nuestra máquina. Es por ello que Python nos ofrece varias aproximaciones a la lectura de ficheros línea a línea. La más usada es ^^iterar sobre el propio manejador del fichero^^[^2]. Veamos cómo aplicarlo en el ejemplo:material-flash: de las temperaturas: ```pycon >>> f = open('store/temps.dat') >>> for line in f: # that easy! ... print(line)#(1)! ... 23 29 23 31 26 34 23 33 22 29 22 28 22 28 ``` { .annotate } 1. Notése que cada línea tiene un «espacio de más» que proviene del propio `#!python print()`. #### Enumerando líneas { #enumerate } En ocasiones no sólo necesitamos recorrer cada línea del fichero sino también ir llevando un «índice» que nos indique el número de línea que estamos procesando. Dado que los manejadores de ficheros también son **objetos iterables** podemos hacer uso de la función [`enumerate()`](lists.md#enumerate). A continuación mostramos un ejemplo:material-flash: donde aprovechamos esta característica para incluir los días de la semana en el fichero de temperaturas: ```pycon >>> f = open('store/temps.dat') >>> for line_no, line in enumerate(f, start=1): ... print(f'D{line_no}: {line.strip()}') ... D1: 23 29 D2: 23 31 D3: 26 34 D4: 23 33 D5: 22 29 D6: 22 28 D7: 22 28 ``` ### Lectura de una línea { #readline } Es posible que sólo necesitemos leer una línea del fichero. Para ello Python nos ofrece la función `#!python readline()` que devuelve la «siguiente» línea del fichero. Veamos cómo hacerlo con el ejemplo:material-flash: del fichero de temperaturas: ```pycon >>> f = open('store/temps.dat') >>> f.readline()#(1)! '23 29\n' ``` { .annotate } 1. Devuelve una única línea, en este caso la primera del fichero. :material-check-all:{ .blue } Es importante señalar que cuando utilizamos la función `#!python readline()` el ^^puntero de lectura^^ se desplaza hasta la siguiente línea del fichero. Este hecho nos permite seguir leyendo desde donde nos quedamos. A continuación se muestra un trozo de código sobre el ejemplo:material-flash: de las temperaturas en el que mezclamos ambas técnicas de lectura: ```pycon >>> f = open('store/temps.dat')#(1)! >>> for _ in range(3):#(2)! ... print(f.readline().strip()) ... 23 29 23 31 26 34 >>> for line in f:#(3)! ... print(line.strip()) ... 23 33 22 29 22 28 22 28 ``` { .annotate } 1. Puntero de lectura en la posición 0 del fichero. 2. Lectura de las 3 primeras líneas del fichero. 3. Lectura de las restantes líneas del fichero. La función `#!python readline()` devuelve la **cadena vacía** cuando el _puntero de lectura_ ha llegado al final del fichero. Bajo esta premisa podríamos implementar una forma **poco ortodoxa** de leer un fichero: ```pycon >>> f = open('store/temps.dat') >>> while line := f.readline(): ... print(line.strip()) ... 23 29 23 31 26 34 23 33 22 29 22 28 22 28 ``` ### Lectura con posicionamiento { #seek } Hay que tener en cuenta que, una vez que leemos un fichero, no lo podemos volver a leer «directamente». O dicho de otra manera, el iterable que lleva implícito «se agota». Analicemos este escenario con el ejemplo:material-flash: anterior: ```pycon >>> f = open('store/temps.dat') >>> for line in f:#(1)! ... print(line.strip(), end=' ') ... 23 29 23 31 26 34 23 33 22 29 22 28 22 28 >>> for line in f:#(2)! ... print(line.strip(), end=' ') ``` { .annotate } 1. Recorrido de todo el fichero línea a línea. 2. - Al intentar recorre de nuevo el fichero no sale nada por pantalla. - El puntero de lectura ha llegado al final. Aunque no es tan usual, existe la posibilidad de **volver a leer el fichero desde el principio** reposicionando el **puntero de lectura** mediante la función [`seek()`](https://docs.python.org/3/tutorial/inputoutput.html#methods-of-file-objects). A continuación se muestra como ejemplo:material-flash: una «doble» lectura del fichero de temperaturas: ```pycon hl_lines="8" >>> f = open('store/temps.dat') >>> for line in f: ... print(line.strip(), end=' ') ... 23 29 23 31 26 34 23 33 22 29 22 28 22 28 >>> f.seek(0)#(1)! 0 >>> for line in f: ... print(line.strip(), end=' ') ... 23 29 23 31 26 34 23 33 22 29 22 28 22 28 ``` { .annotate } 1. - Situamos el puntero de lectura en el _byte_ 0. - Devuelve la posición absoluta (en _bytes_) en la que se encuentra el puntero de lectura. ??? tip "Posicionamiento relativo" La función [`seek()`](https://docs.python.org/3/tutorial/inputoutput.html#methods-of-file-objects) también permite indicar un **desplazamiento relativo** si se usa el segundo argumento. | Uso | Mover el puntero de lectura... | | --- | --- | | `#!python f.seek(10, 0)` | 10 _bytes_ desde el ^^principio del fichero^^ (`0`) `DEFAULT` | | `#!python f.seek(7, 1)` | 7 _bytes_ desde la ^^posición actual del puntero de lectura^^ (`1`) | | `#!python f.seek(-5, 2)` | 5 _bytes_ desde el ^^final del fichero^^ (`2`) | ## Escritura de un fichero { #write } Para abrir un fichero en **modo escritura** utilizamos la función `#!python open()` con el modificador `#!python 'w'`. A continuación vamos a implementar un ejemplo:material-flash: para escribir en un fichero las temperaturas mínimas y máximas de la última semana en una región determinada. Lo primero será abrir el fichero en modo escritura: ```pycon >>> f = open('store/temps.dat', 'w') ``` :material-alarm-light:{.acc} La apertura de un fichero en _modo escritura_ ^^borrará todo el contenido^^ que contuviera. ??? failure "Ruta al fichero" Las carpetas (o directorios) intermedios hasta llegar al fichero indicado **deben existir** previamente. De lo contrario obtendremos un error: ```pycon hl_lines="6" >>> f = open('foo/bar/temps.dat', 'w') Traceback (most recent call last): Cell In[1], line 1 f = open('foo/bar/temps.dat', 'w') return io_open(file, *args, **kwargs) FileNotFoundError: [Errno 2] No such file or directory: 'foo/bar/temps.dat' ``` Ahora supongamos que disponemos de una estructura de datos (_[tupla](./tuples.md) de tuplas_) con las temperaturas: ```pycon >>> temps = ( ... (23, 29), ... (23, 31), ... (26, 34), ... (23, 33), ... (22, 29), ... (22, 28), ... (22, 28), ... ) ``` Python proporciona la función (método) `#!python write()` para escribir en un fichero: ```pycon hl_lines="2 4" >>> for min_temp, max_temp in temps: ... f.write(f'{min_temp} {max_temp}\n')#(1)! ... >>> f.close()#(2)! ``` { .annotate } 1. - Construimos un «f-string» con la cadena a escribir en el fichero. - No olvidarse del saltó de línea `#!python '\n'` para incluir cada línea. 2. Es fundamental cerrar el fichero, especialmente en modo escritura, ya que de lo contrario podríamos perder los datos. Si tratáramos de escribir directamente las temperaturas (como enteros) en el fichero, obtendríamos un error: ```pycon hl_lines="8" >>> for min_temp, max_temp in temps: ... f.write(min_temp)#(1)! ... f.write(max_temp)#(2)! ... Traceback (most recent call last): Cell In[1], line 2 f.write(min_temp) TypeError: write() argument must be str, not int ``` { .annotate } 1. La función `#!python write()` sólo admite _cadenas de texto_. 2. La función `#!python write()` sólo admite _cadenas de texto_. !!! info "Escribiendo líneas" Python proporciona la función [`f.writelines()`](https://docs.python.org/3/library/io.html#io.IOBase.writelines) que nos permite escribir un _iterable_ de líneas al fichero de una sola vez. Los saltos de línea no se añaden automáticamente. !!! example "Escritura y lectura" Es posible utilizar `#!python open(path, 'w+')` para abrir el fichero en modo escritura y lectura simultáneamente. ### Usando contextos { #contexts } Python proporciona [gestores de contexto](../modularity/oop.md#context-manager) como aproximación al manejo de ficheros. En este escenario usaremos la sentencia `#!python with` y el contexto creado se ocupará de abrir y cerrar el fichero automáticamente (**incluso si ha habido cualquier error**). Veamos cómo aplicarlo con el ejemplo:material-flash: anterior de las temperaturas: ```pycon >>> with open('store/temps.dat', 'w') as f:#(1)! ... for min_temp, max_temp in temps: ... f.write(f'{min_temp} {max_temp}\n') ... ``` { .annotate } 1. - Abrimos el fichero en modo escritura. - Creamos un objeto `f` como manejador. !!! tip "Uso de contextos" Aunque estos contextos también se pueden utilizar en modo lectura, son ^^realmente importantes cuando escribimos datos en un fichero^^, ya que nos aseguran el cierre del mismo y evitamos pérdidas de datos. #### Múltiples ficheros { #multiple-files } Cuando tenemos que abrir varios ficheros utilizando _gestores de contexto_ tenemos dos opciones: **anidamiento** o **misma línea**: === "Anidamiento" ```python >>> with open('file1', 'w') as f1: ... with open('file2', 'w') as f2: ... # file management ``` === "Misma línea" ```python >>> with open('file1', 'w') as f1, open('file2', 'w') as f2: ... # file management ``` Esto vale tanto para apertura de ficheros en _modo lectura_ como en _modo escritura_. ### Añadiendo líneas { #append } Añadir información a un fichero se podría ver como un _caso especial_ de escribir información; con la diferencia de que no podemos modificar el contenido previo, sino únicamente añadir nuevos datos. Para abrir un fichero en **modo añadido** utilizamos la función `#!python open()` con el modificador `#!python 'a'`. !!! example "Añadido y lectura" Es posible utilizar `#!python open(path, 'a+')` para abrir el fichero en modo añadido y lectura simultáneamente. ## Ejercicios { #exercises } 1. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `wc` 2. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `read-csv` 3. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `txt2md` 4. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `avg-temps` 5. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `find-words` 6. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `sum-matrix` 7. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `longest-word` 8. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `word-freq` 9. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `get-line` 10. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `replace-chars` 11. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `histogram-txt` 12. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `submarine` 13. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `common-words` 14. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `split-file` [^1]: Es muy frecuente encontrar en la documentación el término «handler» para referirse al objeto manejador del fichero. [^2]: Los manejadores de ficheros son estructuras de datos [iterables](../modularity/oop.md#iterables). ================================================ FILE: docs/core/datastructures/index.md ================================================ # Estructuras de datos Las estructuras de datos son formas organizadas de almacenar y gestionar conjuntos de información para que puedan ser utilizadas de manera eficiente por un programa. En Python, existen diversas estructuras integradas como listas, tuplas, conjuntos y diccionarios, cada una con características específicas que las hacen más adecuadas para ciertos tipos de tareas. Comprender cómo funcionan estas estructuras y cuándo utilizarlas es fundamental para escribir código limpio, optimizado y fácil de mantener. En este capítulo, exploraremos las principales estructuras de datos en Python, su sintaxis, operaciones comunes y casos prácticos donde se aplican. ================================================ FILE: docs/core/datastructures/lists.md ================================================ --- icon: material/list-box tags: - Fundamentos del lenguaje - Estructuras de datos - Listas --- # Listas { #lists } ![Banner](images/lists/banner.jpg) /// caption Imagen generada con Inteligencia Artificial /// Las listas permiten **almacenar objetos** mediante un **orden definido** y con posibilidad de duplicados. Las listas son estructuras de datos **mutables**, lo que significa que podemos añadir, eliminar o modificar sus elementos. ## Creando listas { #create } Una lista está compuesta por **cero o más elementos**. En Python debemos escribir estos elementos ^^separados por comas^^ y ^^dentro de corchetes^^. Veamos algunos ejemplos:material-flash: de listas: ```pycon >>> languages = ['Python', 'Ruby', 'Javascript']#(1)! >>> fibonacci = [0, 1, 1, 2, 3, 5, 8, 13]#(2)! >>> empty_list = []#(3)! >>> data = [#(4)! ... 'Tenerife', ... {'cielo': 'limpio', 'temp': 24}, ... 3718, ... (28.2933947, -16.5226597) ... ] ``` { .annotate } 1. Una lista de 3 [cadenas de texto](../datatypes/strings.md). 2. Una lista de 8 [números enteros](../datatypes/numbers.md#integers). 3. La **lista vacía** (_0 elementos_). 4. Una lista **heterogénea** de 4 elementos de distinta naturaleza. ??? note "Datos heterogéneos" Una lista en Python (a diferencia de otros lenguajes de programación) puede contener **datos heterogéneos**. Esto hace de la lista una estructura de datos muy versátil. !!! exercise "Ejercicio" Entra en el intérprete interactivo de Python ❯❯❯ y crea una lista con las 5 ciudades que más te gusten. ## Conversión { #cast } Para convertir otros tipos de datos en una lista podemos usar la función `#!python list()`. Por ejemplo:material-flash: podemos convertir una _cadena de texto_ en una lista: ```pycon >>> list('Python') ['P', 'y', 't', 'h', 'o', 'n'] ``` Si nos fijamos en lo que ha pasado, al convertir la cadena de texto Python se ha creado una lista con 6 elementos, donde cada uno de ellos representa un carácter de la cadena. Podemos extender este comportamiento a cualquier otro tipo de datos que permita ser iterado (_iterables_). Otro ejemplo:material-flash: interesante de conversión puede ser la de los [rangos](../controlflow/loops.md#range). En este caso queremos obtener una **lista explícita** con los valores que constituyen el rango $[0,9]$: ```pycon >>> list(range(10)) [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] ``` ??? warning "Nombre de variable" Aunque está permitido, no suele ser una buena práctica llamar `list` a una variable ya que destruirías la función que nos permite trabajar con listas. Tampoco parece muy razonable utilizar nombres como `_list` o `list_` ya que no es necesario incluir en el nombre de una variable su propia naturaleza. ## Operaciones con listas { #operations } Existen multitud de operaciones que se pueden realizar sobre listas. A continuación veremos la mayoría de ellas: ### Obtener un elemento { #get-item } Igual que en el caso de las [cadenas de texto](../datatypes/strings.md), podemos obtener un elemento de una lista a través del **índice** (lugar) que ocupa. Veamos un ejemplo:material-flash:: ```pycon >>> shopping = ['Agua', 'Huevos', 'Aceite'] >>> shopping[0] 'Agua' >>> shopping[1] 'Huevos' >>> shopping[2] 'Aceite' >>> shopping[-1]#(1)! 'Aceite' ``` { .annotate } 1. ¡Aquí también funcionan los índices negativos! El **índice** que usemos para acceder a los elementos de una lista tiene que estar ^^comprendido entre los límites^^ de la misma. Si usamos un índice antes del comienzo o después del final obtendremos un error ([excepción](../modularity/exceptions.md)): ```pycon hl_lines="7 13" >>> shopping = ['Agua', 'Huevos', 'Aceite'] >>> shopping[3] Traceback (most recent call last): Cell In[2], line 1 shopping[3] IndexError: list index out of range >>> shopping[-5] Traceback (most recent call last): Cell In[3], line 1 shopping[-5] IndexError: list index out of range ``` ### Trocear una lista { #slicing } El troceado de listas funciona de manera totalmente análoga al [troceado de cadenas](../datatypes/strings.md#slicing). Veamos algunos ejemplos:material-flash:: ```pycon >>> shopping = ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> shopping[:3]#(1)! ['Agua', 'Huevos', 'Aceite'] >>> shopping[2:4] ['Aceite', 'Sal'] >>> shopping[-1:-4:-1] ['Limón', 'Sal', 'Aceite'] >>> shopping[::-1]#(2)! ['Limón', 'Sal', 'Aceite', 'Huevos', 'Agua'] ``` { .annotate } 1. También podríamos haber escrito `#!python shopping[0:3]` aunque no es habitual. 2. Equivale a invertir la lista. En el troceado de listas, a diferencia de lo que ocurre al obtener elementos, no debemos preocuparnos por acceder a índices no válidos (fuera de rango) ya que Python los restringirá a los límites de la lista: ```pycon >>> shopping ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> shopping[10:] [] >>> shopping[-100:2] ['Agua', 'Huevos'] >>> shopping[2:100] ['Aceite', 'Sal', 'Limón'] ``` :material-check-all:{ .blue } Ninguna de las operaciones anteriores modifican la lista original, simplemente devuelven una lista nueva. ### Invertir una lista { #reverse } Python nos ofrece varios mecanismos para invertir los elementos de una lista, en función del resultado que busquemos: === "Conservando la lista original :material-texture-box:" - **Opcion A**{ .pink } :material-arrow-right-box: Mediante [troceado de listas](#slicing) con «step» negativo: ```pycon >>> shopping ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> shopping[::-1] ['Limón', 'Sal', 'Aceite', 'Huevos', 'Agua'] ``` - **Opcion B**{ .pink } :material-arrow-right-box: Mediante la función `#!python reversed()`: ```pycon >>> shopping ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> list(reversed(shopping)) ['Limón', 'Sal', 'Aceite', 'Huevos', 'Agua'] ``` === "Modificando la lista original :fontawesome-solid-bolt:" Mediante la función `#!python reverse()` (_nótese que es sin «d» al final_): ```pycon >>> shopping ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> shopping.reverse() >>> shopping#(1)! ['Limón', 'Sal', 'Aceite', 'Huevos', 'Agua'] ``` { .annotate } 1. Se ha modificado la lista original. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `slicerev` ### Añadir al final de la lista { #append } Una de las operaciones más utilizadas en listas es **añadir elementos al final** de las mismas. Para ello Python nos ofrece la función `#!python append()`. Se trata de un método «destructivo» que modifica la lista original. Veamos un ejemplo:material-flash: donde añadimos un producto a la lista de la compra: ```pycon hl_lines="3" >>> shopping = ['Agua', 'Huevos', 'Aceite'] >>> shopping.append('Atún') >>> shopping ['Agua', 'Huevos', 'Aceite', 'Atún'] ``` #### Patrón creación { #create-pattern } Una forma muy habitual de trabajar con listas es empezar con una vacía e ir añadiendo elementos poco a poco. Se podría hablar de un **patrón creación**. Supongamos un ejemplo:material-flash: en el que queremos construir una lista con los números pares en el intervalo $[0,20]$: ```pycon >>> even_numbers = [] >>> for num in range(20 + 1):#(1)! ... if num % 2 == 0: ... even_numbers.append(num) ... >>> even_numbers [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20] ``` { .annotate } 1. Para «llegar» al 20 hay que incrementar en una unidad. ### Añadir en cualquier posición { #insert } Ya hemos visto cómo añadir elementos al final de una lista. Sin embargo, Python ofrece una función `#!python insert()` que vendría a ser una generalización de la anterior, para incorporar elementos en cualquier posición. Simplemente debemos especificar el **índice de inserción** y el **elemento a insertar**. También se trata de una función destructiva. En el siguiente ejemplo:material-flash: insertamos dos nuevos productos a la lista de la compra en posiciones arbitrarias: ```pycon hl_lines="3 8" >>> shopping = ['Agua', 'Huevos', 'Aceite'] >>> shopping.insert(1, 'Jamón')#(1)! >>> shopping ['Agua', 'Jamón', 'Huevos', 'Aceite'] >>> shopping.insert(3, 'Queso')#(2)! >>> shopping ['Agua', 'Jamón', 'Huevos', 'Queso', 'Aceite'] ``` { .annotate } 1. Se podría leer como: «Quiero que `#!python 'Jamón'` quede en la posición 1 de la lista». 2. Se podría leer como: «Quiero que `#!python 'Queso'` quede en la posición 3 de la lista». Al igual que ocurría con el [troceado de listas](#slicing), en este tipo de inserciones no obtendremos un error si especificamos índices fuera de los límites de la lista. Estos se ajustarán al principio o al final en función del valor que indiquemos: ```pycon >>> shopping = ['Agua', 'Huevos', 'Aceite'] >>> shopping.insert(100, 'Mermelada')#(1)! >>> shopping ['Agua', 'Huevos', 'Aceite', 'Mermelada'] >>> shopping.insert(-100, 'Arroz')#(2)! >>> shopping ['Arroz', 'Agua', 'Huevos', 'Aceite', 'Mermelada'] ``` { .annotate } 1. Se inserta lo más a la «derecha» posible. 2. Se inserta lo más a la «izquierda» posible. !!! abstract "append vs insert" Podría existir la tentación de utilizar `#!python insert()` para **añadir elementos al final** de una lista... ```pycon hl_lines="2" >>> values = [1, 2, 3] >>> values.insert(len(values), 4) >>> values [1, 2, 3, 4] ``` :material-alarm-light-off-outline:{ .red } ¡No lo hagas! Utiliza [`append()`](#append) :material-arrow-right-box: Es más eficiente y más legible. ### Repetir elementos { #repeat } Al igual que con las [cadenas de texto](../datatypes/strings.md#repeat), el operador `#!python *` nos permite repetir los elementos de una lista. Siguiendo con el ejemplo:material-flash: de la _lista de la compra_, podríamos querer comprar 3 unidades de cada producto: ```pycon >>> shopping = ['Agua', 'Huevos', 'Aceite'] >>> shopping * 3 ['Agua', 'Huevos', 'Aceite', 'Agua', 'Huevos', 'Aceite', 'Agua', 'Huevos', 'Aceite'] ``` ### Combinar listas { #combine } Python nos ofrece varios mecanismos para combinar dos listas, en función del resultado que busquemos: === "Conservando la lista original :material-texture-box:" Mediante el operador `+`: ```pycon hl_lines="4" >>> shopping = ['Agua', 'Huevos', 'Aceite'] >>> fruitshop = ['Naranja', 'Manzana', 'Piña'] >>> shopping + fruitshop ['Agua', 'Huevos', 'Aceite', 'Naranja', 'Manzana', 'Piña'] ``` === "Modificando la lista original :fontawesome-solid-bolt:" Mediante la función `#!python extend()`: ```pycon hl_lines="4" >>> shopping = ['Agua', 'Huevos', 'Aceite'] >>> fruitshop = ['Naranja', 'Manzana', 'Piña'] >>> shopping.extend(fruitshop)#(1)! >>> shopping ['Agua', 'Huevos', 'Aceite', 'Naranja', 'Manzana', 'Piña'] ``` { .annotate } 1. Esto es equivalente a: `#!python shopping += fruitshop` Hay que tener en cuenta que `extend()` funciona adecuadamente si pasamos **una lista como argumento**. En otro caso, quizás los resultados no sean los esperados. Veamos un ejemplo:material-flash:: ```pycon >>> shopping = ['Agua', 'Huevos', 'Aceite'] >>> shopping.extend('Limón')#(1)! >>> shopping ['Agua', 'Huevos', 'Aceite', 'L', 'i', 'm', 'ó', 'n'] ``` { .annotate } 1. - `extend()` «recorre» (o itera) sobre cada uno de los elementos del objeto en cuestión. - Al ser una _cadena de texto_ cada elemento es un carácter. Se podría pensar en utilizar `append()` **para combinar listas**. La realidad es que no funciona exactamente como esperamos; la segunda lista se añadiría **como una sublista** de la principal. Veamos un ejemplo:material-flash:: ```pycon >>> shopping = ['Agua', 'Huevos', 'Aceite'] >>> fruitshop = ['Naranja', 'Manzana', 'Piña'] >>> shopping.append(fruitshop) >>> shopping ['Agua', 'Huevos', 'Aceite', ['Naranja', 'Manzana', 'Piña']] ``` ### Modificar listas { #modify } Para modificar un elemento de una lista debemos acceder a su índice y asignar el valor correspondiente. En el siguiente ejemplo:material-flash: preferimos comprar jugo que agua: ```pycon hl_lines="6" >>> shopping = ['Agua', 'Huevos', 'Aceite'] >>> shopping[0] 'Agua' >>> shopping[0] = 'Jugo' >>> shopping ['Jugo', 'Huevos', 'Aceite'] ``` En el caso de acceder a un **índice no válido** de la lista, incluso para modificar, obtendremos un error: ```pycon hl_lines="5" >>> shopping[100] Traceback (most recent call last): Cell In[1], line 1 shopping[100] IndexError: list index out of range ``` #### Modificar con troceado No sólo es posible modificar un elemento de cada vez, sino que podemos asignar valores a trozos de una lista. En el siguiente ejemplo:material-flash: reemplazamos _huevos, aceite y sal_ por _atún y pasta_: ```pycon hl_lines="6" >>> shopping = ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> shopping[1:4] ['Huevos', 'Aceite', 'Sal'] >>> shopping[1:4] = ['Atún', 'Pasta']#(1)! >>> shopping ['Agua', 'Atún', 'Pasta', 'Limón'] ``` { .annotate } 1. La lista que asignamos no necesariamente debe tener la misma longitud que el trozo que sustituimos. ### Borrar elementos { #remove } Python nos ofrece varios mecanismos para borrar elementos de una lista: === "Por su índice :octicons-number-24:" Mediante la sentencia `#!python del`: ```pycon hl_lines="3" >>> shopping = ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> del shopping[3] >>> shopping ['Agua', 'Huevos', 'Aceite', 'Limón'] ``` === "Por su valor :octicons-briefcase-24:" Mediante la función `#!python remove()`: ```pycon hl_lines="3" >>> shopping = ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> shopping.remove('Sal')#(1)! >>> shopping ['Agua', 'Huevos', 'Aceite', 'Limón'] ``` { .annotate } 1. Si existen valores duplicados, la función `remove()` sólo borarrá la primera ocurrencia. === "Por su índice (con extracción) :octicons-repo-pull-16:" La sentencia `#!python del` y la función `#!python remove()` efectivamente borran el elemento indicado de la lista, pero no «devuelven»[^1] nada. Sin embargo, Python nos ofrece la función `pop()` que además de borrar, nos «recupera» el elemento; algo así como una _extracción_. Lo podemos ver como una combinación de _acceso + borrado_: ```pycon hl_lines="3 10" >>> shopping = ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> product = shopping.pop()#(1)! >>> product 'Limón' >>> shopping ['Agua', 'Huevos', 'Aceite', 'Sal'] >>> product = shopping.pop(2)#(2)! >>> product 'Aceite' >>> shopping ['Agua', 'Huevos', 'Sal'] ``` { .annotate } 1. Cuando no se indica el índice, Python extrae en último elemento. Equivale a: `#!python shopping.pop(-1)` 2. Extraer el elemento en la posición 2. === "Por su rango :fontawesome-solid-pizza-slice:" Mediante [troceado de listas](#slicing): ```pycon hl_lines="3" >>> shopping = ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> shopping[1:4] = [] >>> shopping ['Agua', 'Limón'] ``` #### Borrado completo de la lista { #clear } Python nos ofrece varios mecanismos para borrar una lista por completo: === "Borrado in-situ :material-pail-remove:" Mediante la función `clear()`: ```pycon hl_lines="3" >>> shopping = ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> shopping.clear()#(1)! >>> shopping [] ``` { .annotate } 1. Misma zona de memoria. === "Reinicializando a vacío :fontawesome-solid-wine-glass-empty:" Mediante la asignación a lista vacía: ```pycon >>> shopping = ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> shopping = []#(1)! >>> shopping [] ``` { .annotate } 1. Nueva zona de memoria. !!! info "Recolector de basura" La memoria que queda «en el limbo» después de asignar un nuevo valor a la lista es detectada por el [recolector de basura](https://dev.to/pragativerma18/understanding-pythons-garbage-collection-and-memory-optimization-4mi2) de Python, quien se encarga de liberar aquellos datos que no están referenciados por ninguna variable. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `qletters` ### Encontrar un elemento { #find } Si queremos descubrir el índice que corresponde a un determinado valor dentro una lista debemos usar la función `#!python index()`. Como ejemplo:material-flash: supongamos que queremos encontrar el _aceite_ en nuestra lista de la compra: ```pycon hl_lines="3" >>> shopping = ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> shopping.index('Aceite') 2 ``` Hay que tener en cuenta que si el elemento que buscamos no está en la lista, obtendremos un error: ```pycon hl_lines="7" >>> shopping = ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> shopping.index('Pollo') Traceback (most recent call last): Cell In[2], line 1 shopping.index('Pollo') ValueError: 'Pollo' is not in list ``` !!! info "Múltiples ocurrencias" Si buscamos un valor que existe más de una vez en una lista, la función `index()` sólo nos devolverá **el índice de la primera ocurrencia**. !!! warning "No existe `find`" En listas no disponemos de la función `find()` que sí estaba disponible para [cadenas de texto](../datatypes/strings.md#search). ### Pertenencia de un elemento { #in } Si queremos comprobar la existencia de un determinado elemento en una lista, podríamos buscarlo por su índice, pero la **forma pitónica** de hacerlo es utilizar el operador `#!python in`. Si no estamos seguros de si hemos incluido ciertos productos en nuestro ejemplo:material-flash: de la lista de la compra, lo podemos comprobar de la siguiente manera: ```pycon >>> shopping = ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> 'Aceite' in shopping # ¿Apunté aceite? 🤔 True >>> 'Pollo' in shopping # ¿Apunté pollo? 🤔 False ``` !!! note "Valor booleano" El operador `in` siempre devuelve un [valor booleano](../datatypes/numbers.md#booleans), es decir, verdadero o falso. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `isogram` ### Longitud de una lista { #length } Podemos conocer el número de elementos que tiene una lista mediante la función `#!python len()`. Por ejemplo:material-flash: para conocer la cantidad de productos de nuestra lista de la compra haríamos lo siguiente: ```pycon hl_lines="3" >>> shopping = ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> len(shopping) 5 ``` ### Contar ocurrencias { #count } Para contar cuántas veces aparece un determinado valor dentro de una lista podemos usar la función `count()`. Un ejemplo:material-flash: «divertido» de la serie [The Big Bang Theory](https://www.imdb.com/title/tt0898266/): ```pycon >>> sheldon_greeting = ['Penny', 'Penny', 'Penny'] >>> sheldon_greeting.count('Howard') 0 >>> sheldon_greeting.count('Penny') 3 ``` ### Dividir «string» como lista { #split } Una **tarea muy habitual** al trabajar con _cadenas de texto_ es **dividirlas** por algún tipo de separador. En este sentido, Python nos ofrece la función `split()`, que debemos usar anteponiendo el «string» que queramos dividir. Veamos un ejemplo:material-flash: con ciertos refranes: ```pycon hl_lines="2 6" >>> proverb = 'No hay mal que por bien no venga' >>> proverb.split()#(1)! ['No', 'hay', 'mal', 'que', 'por', 'bien', 'no', 'venga'] >>> tools = 'Martillo,Sierra,Destornillador' >>> tools.split(',')#(2)! ['Martillo', 'Sierra', 'Destornillador'] ``` { .annotate } 1. Si no se indica nada, la función `split()` usa por defecto cualquier secuencia de espacios en blanco, tabuladores y saltos de línea como separador. 2. En este caso se ha indicado que el separador sea una coma. Existe _una variante_ de `split()` en la que indicamos el **número máximo de divisiones**. Supongamos un ejemplo:material-flash: en el que nos dan una URL y nos piden separar el dominio de la ruta: ```pycon hl_lines="6" >>> url = 'python.org/downloads/releases' >>> url.split('/')#(1)! ['python.org', 'downloads', 'releases'] >>> url.split('/', 1)#(2)! ['python.org', 'downloads/releases'] ``` { .annotate } 1. Aquí `split()` no nos está sirviendo mucho... 2. Al indicar el máximo de «una división» hemos conseguido el resultado. :material-check-all:{ .blue } También existe la función `rsplit()` que se comporta exactamente igual que la función `split()` pero **empezando por la derecha**. ##### Diviendo líneas { #splitlines } Otro caso de uso muy habitual es querer dividir un fragmento de texto por sus saltos de línea. Para ello Python nos proporciona la función [`splitlines()`](https://docs.python.org/es/3/library/stdtypes.html#str.splitlines)(1). { .annotate } 1. Admite un parámetro `keepends` (`#!python bool`) que indica si queremos mantener los saltos de línea o no. Por ejemplo:material-flash:, supongamos que tenemos una estrofa de la canción [«Cómo hablar» de Amaral](https://www.youtube.com/watch?v=DjkLlTLMNDs) y queremos obtener una lista con cada frase: ```python >>> lyrics = """Si volviera a nacer, si empezara de nuevo ... Volvería a buscarte en mi nave del tiempo ... Es el destino quien nos lleva y nos guia ... Nos separa y nos une a traves de la vida""" >>> lyrics.splitlines() ['Si volviera a nacer, si empezara de nuevo', 'Volvería a buscarte en mi nave del tiempo', 'Es el destino quien nos lleva y nos guia', 'Nos separa y nos une a traves de la vida'] ``` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `num-words` #### Particionado de cadenas de texto { #partition } Existe una forma algo más «elaborada» de dividir una cadena a través del **particionado**. Para ello podemos valernos de la función `partition()` que proporciona Python. Esta función toma un argumento como separador, y divide la cadena de texto en 3 partes: 1. Lo que queda a la izquierda del separador. 2. El separador en sí mismo. 3. Lo que queda a la derecha del separador. Veamos un ejemplo:material-flash: muy sencillo a partir de una operación matemática: ```pycon hl_lines="3" >>> text = '3+4' >>> text.partition('+')#(1)! ('3', '+', '4') ``` { .annotate } 1. Funciona igualmente con separadores de más de un carácter: ```pycon >>> text = '3//4' >>> text.partition('//') ('3', '//', '4') ``` :material-check-all:{ .blue } También existe la función `rpartition()` que se comporta exactamente igual que la función `partition()` pero **empezando por la derecha**. ### Unir lista como «string» { #join } Dada una lista, podemos convetirla a una cadena de texto, uniendo todos sus elementos mediante algún **separador**. Para ello hacemos uso de la función `join()` con la siguiente estructura: ![Dark image](images/lists/join-list-dark.svg#only-dark) ![Light image](images/lists/join-list-light.svg#only-light) Veamos varios ejemplos:material-flash: uniendo los productos de la lista de la compra: ```pycon >>> shopping = ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> ','.join(shopping) 'Agua,Huevos,Aceite,Sal,Limón' >>> ' '.join(shopping) 'Agua Huevos Aceite Sal Limón' >>> '|'.join(shopping) 'Agua|Huevos|Aceite|Sal|Limón' ``` :material-alarm-light:{.acc} Hay que tener en cuenta que `join()` **sólo funciona si todos sus elementos son cadenas de texto**: ```pycon hl_lines="5" >>> ', '.join([1, 2, 3, 4, 5]) Traceback (most recent call last): Cell In[1], line 1 ', '.join([1, 2, 3, 4, 5]) TypeError: sequence item 0: expected str instance, int found ``` ??? tip "join vs split" La función `join()` es realmente la **opuesta** a la función [split()](#split). !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `fix-date` ### Ordenar una lista { #sort } Python nos ofrece varios mecanismos para ordenar una lista: === "Conservando la lista original :material-texture-box:" Mediante la función `sorted()`: ```pycon hl_lines="3" >>> shopping = ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> sorted(shopping)#(1)! ['Aceite', 'Agua', 'Huevos', 'Limón', 'Sal'] ``` { .annotate } 1. - `sorted()` «devuelve» una **nueva lista ordenada**. - La lista `shopping` se mantiene **intacta**. === "Modificando la lista original :fontawesome-solid-bolt:" Mediante la función `sort()`: ```pycon hl_lines="3" >>> shopping = ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> shopping.sort()#(1)! >>> shopping ['Aceite', 'Agua', 'Huevos', 'Limón', 'Sal'] ``` { .annotate } 1. - `sort()` no devuelve nada. - Sólo se encarga de ordenar (modificar) la lista indicada `shopping`. :material-check-all:{ .blue } **Ambos métodos** admiten un _parámetro_ «booleano» `reverse` para indicar si queremos que la ordenación se haga en **sentido inverso**: ```pycon hl_lines="3" >>> shopping = ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> sorted(shopping, reverse=True) ['Sal', 'Limón', 'Huevos', 'Agua', 'Aceite'] ``` ### Iterar sobre una lista { #iterate } Al igual que [hemos visto con las cadenas de texto](../controlflow/loops.md#for), también podemos iterar sobre los elementos de una lista utilizando la sentencia `for`. Recorremos por ejemplo:material-flash: los productos de la lista de la compra: ```pycon >>> shopping = ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> for product in shopping: ... print(product) ... Agua Huevos Aceite Sal Limón ``` !!! info "break y continue" En esta estructura también es posible utilizar tanto `break` como `continue`. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `chars-list` #### Iterar usando enumeración { #enumerate } Hay veces que no sólo nos interesa **«visitar»** cada uno de los elementos de una lista, sino **también conocer su ^^índice^^** dentro de la misma. Para ello Python nos ofrece la función `enumerate()`. Para el ejemplo:material-flash: de la lista de la compra, nos podría interesar aplicar esta estructura programática: ```pycon hl_lines="3" >>> shopping = ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> for index, product in enumerate(shopping):#(1)! ... print(index, product) ... 0 Agua 1 Huevos 2 Aceite 3 Sal 4 Limón ``` { .annotate } 1. En cada iteración del bucle las variables `index` y `product` reciben el índice y el producto existentes en la lista de la compra. Por defecto `enumerate()` empieza sus índices en 0 (_como era de esperar_) pero si quisiéramos modificar este comportamiento también se podría. Ejemplo:material-flash: empezando la enumeración de la lista de la compra en 10: ```pycon hl_lines="3" >>> shopping = ['Agua', 'Huevos', 'Aceite', 'Sal', 'Limón'] >>> for index, product in enumerate(shopping, 10): ... print(index, product) ... 10 Agua 11 Huevos 12 Aceite 13 Sal 14 Limón ``` #### Iterar sobre múltiples listas { #zip } Python ofrece la posibilidad de iterar sobre **múltiples listas en paralelo** utilizando la función `zip()`. Se basa en ir «juntando» ambas listas elemento a elemento: ![Zip diagram](images/lists/zip.svg) Veamos un ejemplo:material-flash: en el que añadimos _ciertos detalles_ a nuestra lista de la compra: ```pycon hl_lines="4" >>> shopping = ['Agua', 'Aceite', 'Arroz'] >>> details = ['mineral natural', 'de oliva virgen', 'basmati'] >>> for product, detail in zip(shopping, details):#(1)! ... print(product, detail) ... Agua mineral natural Aceite de oliva virgen Arroz basmati ``` { .annotate } 1. En cada iteración del bucle la variable `product` toma un elemento de la lista `shopping` y la variable `detail` toma un elemento de la lista `details`. !!! tip "Distinta longitud" En el caso de que las listas no tengan la misma longitud, la función `zip()` realiza la combinación hasta que se agota la lista más corta. Dado que [`zip()`](https://docs.python.org/3/library/functions.html#zip) produce un ^^iterador^^, si queremos obtener una lista explícita con la combinación en paralelo de las listas, debemos construir dicha lista de la siguiente manera: ```pycon >>> shopping = ['Agua', 'Aceite', 'Arroz'] >>> details = ['mineral natural', 'de oliva virgen', 'basmati'] >>> list(zip(shopping, details))#(1)! [('Agua', 'mineral natural'), ('Aceite', 'de oliva virgen'), ('Arroz', 'basmati')] ``` { .annotate } 1. Formalmente lo que devuelve `#!python zip()` son [tuplas](./tuples.md), en este caso «envueltas» en una lista. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `dot-product` ### Comparar listas { #compare } ¿Cómo determina Python si una lista es mayor o menor que otra? Analicemos lo que ocurre en el siguiente ejemplo:material-flash:: ```pycon >>> [1, 2, 3] < [1, 2, 4] True ``` Python llega a la conclusión de que la lista `[1, 2, 3]` es menor que `[1, 2, 4]` porque va comparando elemento a elemento: - El `1` es igual en ambas listas. - El `2` es igual en ambas litas. - El `3` es menor que el `4`, por lo que la primera lista es menor que la segunda. :material-check-all:{ .blue } Entender la forma en la que se comparan dos listas es importante para poder aplicar otras funciones y obtener los resultados deseados. !!! abstract "Ver también" Esta comparación funciona de forma totalmente análoga a la [comparación de cadenas de texto](../datatypes/strings.md#compare). ## Cuidado con las copias { #copy } Las listas son [estructuras de datos mutables](../datatypes/data.md#mutability) y esta característica nos obliga a tener cuidado cuando realizamos copias de listas, ya que la modificación de una de ellas puede afectar a la otra. Veamos un ejemplo:material-flash: sencillo: ```pycon hl_lines="3" >>> original_list = [4, 3, 7, 1] >>> copy_list = original_list#(1)! >>> original_list[0] = 15#(2)! >>> original_list#(3)! [15, 3, 7, 1] >>> copy_list#(4)! [15, 3, 7, 1] ``` { .annotate } 1. Con esta asignación hacemos que `copy_list` «apunte» a la misma _zona de memoria_ que `original_list`. 2. En esa _zona de memoria_ estamos modificando el primer elemento de la lista `original_list`. 3. Obviamente esta lista se habrá modificado. 4. También se ha modificado la «copia». Una **posible solución** a este problema sería efectuar una «copia dura». Para ello Python proporciona la función `copy()`: ```pycon hl_lines="3" >>> original_list = [4, 3, 7, 1] >>> copy_list = original_list.copy()#(1)! >>> original_list[0] = 15#(2)! >>> original_list#(3)! [15, 3, 7, 1] >>> copy_list#(4)! [4, 3, 7, 1] ``` { .annotate } 1. - La función `copy()` hace una copia en _otra zona de memoria_. - Aquí también valdría utilizar un troceado «completo» :material-arrow-right-box: `#!python copy_list = original_list[:]` 2. Modificamos el primer elemento de `original_list`. 3. La modificación de este elemento sólo afecta a `original_list`. 4. Dado que `copy_list` está en _otra zona de memoria_ no se ve afectada por el cambio. ??? info "Copia profunda" En el caso de que estemos trabajando con listas que contienen elementos mutables, debemos hacer uso de la función `deepcopy()` dentro del módulo `copy` de la librería estándar. ## Veracidad múltiple { #all-any } Si bien podemos usar [sentencias condicionales](../controlflow/conditionals.md) para comprobar la veracidad de determinadas expresiones, Python nos ofrece dos funciones «built-in» con las que podemos evaluar si se cumplen **todas las condiciones** `all()` o si se cumple **alguna condición** `any()`. Estas funciones trabajan sobre iterables, y el caso más evidente es una **lista**. Supongamos un ejemplo:material-flash: en el que queremos comprobar **si una determinada palabra cumple las siguientes condiciones**: - Su longitud total es mayor que 4. - Empieza por «p». - Contiene, al menos, una «y». === "Versión clásica" ```pycon >>> word = 'python' >>> if len(word) > 4 and word.startswith('p') and word.count('y') >= 1: ... print('Cool word!') ... else: ... print('No thanks') ... Cool word! ``` === "Veracidad múltiple: `all()`" ```pycon hl_lines="7" >>> word = 'python' >>> enough_length = len(word) > 4#(1)! >>> right_beginning = word.startswith('p')#(2)! >>> min_ys = word.count('y') >= 1#(3)! >>> is_cool_word = all([enough_length, right_beginning, min_ys])#(4)! >>> if is_cool_word: ... print('Cool word!') ... else: ... print('No thanks') ... Cool word! ``` { .annotate } 1. `#!python True` 2. `#!python True` 3. `#!python True` 4. `#!python all([True, True, True])` :material-arrow-right-box: `#!python True` === "Veracidad múltiple: `any()`" ```pycon hl_lines="7" >>> word = 'yeah' >>> enough_length = len(word) > 4#(1)! >>> right_beginning = word.startswith('p')#(2)! >>> min_ys = word.count('y') >= 1#(3)! >>> is_fine_word = any([enough_length, right_beginning, min_ys])#(4)! >>> if is_fine_word: ... print('Fine word!') ... else: ... print('No thanks') ... Fine word! ``` { .annotate } 1. `#!python False` 2. `#!python False` 3. `#!python True` 4. `#!python any([False, False, True])` :material-arrow-right-box: `#!python True` :material-check-all:{ .blue } Ojo con el comportamiento de estas funciones cuando trabajan con la **lista vacía**: ```pycon >>> all([]) True >>> any([]) False ``` !!! tip "Casos de uso" Este enfoque puede ser interesante cuando se manejan muchas condiciones o bien cuando queremos separar las condiciones y agruparlas en una única lista. ## Listas por comprensión { #comprehension } Las listas por comprensión establecen una técnica para crear listas de forma más compacta basándose en el concepto matemático de [conjuntos definidos por comprensión](http://recursostic.educacion.es/descartes/web/materiales_didacticos/conjuntos_y_operaciones_agsm/conjuntos_12.html). Podríamos decir que su sintaxis sigue un modelo **VLC (Value-Loop-Condition)** tal y como se muestra en la siguiente figura: ![Dark image](images/lists/list-comprehension-dark.svg#only-dark) ![Light image](images/lists/list-comprehension-light.svg#only-light) Empecemos por un ejemplo:material-flash: en el que convertimos una cadena de texto con valores numéricos en una lista con los mismos valores pero convertidos a enteros: === "Versión clásica :material-phone-classic:" ```pycon >>> values = '32,45,11,87,20,48' >>> int_values = [] >>> for value in values.split(','): ... int_value = int(value) ... int_values.append(int_value) ... >>> int_values [32, 45, 11, 87, 20, 48] ``` === "Versión por comprensión :material-code-brackets:" ```pycon hl_lines="3" >>> values = '32,45,11,87,20,48' >>> int_values = [int(value) for value in values.split(',')] >>> int_values [32, 45, 11, 87, 20, 48] ``` A continuación se presenta un diagrama con la transformación de la estructura clásica en listas por comprensión: ![Transformation of list comprehensions](./images/lists/list-comprehensions-transformation.svg) ### Condiciones en comprensiones { #comprehension-conditions } También existe la posibilidad de incluir **condiciones** en las listas por comprensión. Continuando con el ejemplo:material-flash: anterior, supongamos que sólo queremos crear la lista con ^^aquellos valores que empiecen por el dígito 4^^: ```pycon hl_lines="3" >>> values = '32,45,11,87,20,48' >>> int_values = [int(v) for v in values.split(',') if v.startswith('4')] >>> int_values [45, 48] ``` ### Anidamiento en comprensiones { #comprehension-nested } En la iteración que usamos dentro de la lista por comprensión es posible usar [bucles anidados](../controlflow/loops.md#nested-loops). Veamos un ejemplo:material-flash: en el que generamos ^^todas las combinaciones de una serie de valores^^: ```pycon hl_lines="4" >>> values = '32,45,11,87,20,48' >>> svalues = values.split(',') >>> combinations = [f'{v1}x{v2}' for v1 in svalues for v2 in svalues] >>> combinations ['32x32', '32x45', '32x11', '32x87', '32x20', '32x48', '45x32', '45x45', ... '48x45', '48x11', '48x87', '48x20', '48x48'] ``` !!! tip "Casos de uso" Las listas por comprensión son una herramienta muy potente y nos ayuda en muchas ocasiones, pero hay que tener cuidado de no generar **expresiones excesivamente complejas**. En estos casos es mejor una _aproximación clásica_. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `fcomp` ## `sys.argv` { #sys-argv } Cuando queramos ejecutar un programa Python desde **línea de comandos**, tendremos la posibilidad de acceder a los argumentos de dicho programa. Para ello se utiliza una lista «especial» que la encontramos dentro del módulo `sys` y que se denomina `argv`: ![Dark image](images/lists/sys-argv-dark.svg#only-dark) ![Light image](images/lists/sys-argv-light.svg#only-light) Veamos una aplicación de lo anterior en un ejemplo:material-flash: que **convierte un número decimal a una determinada base**, ambos argumentos pasados por línea de comandos: ```python title="dec2base.py" import sys number = int(sys.argv[1])#(1)! tobase = int(sys.argv[2])#(2)! match tobase: case 2: result = f'{number:b}' case 8: result = f'{number:o}' case 16: result = f'{number:x}' case _: result = None if result is None: print(f'Base {tobase} not implemented!') else: print(result) ``` { .annotate } 1. El ~~primer~~ segundo argumento es el número a convertir. 2. El ~~segundo~~ tercer argumento es la base a la que convertir. Si lo ejecutamos obtendríamos lo siguiente: ```console $ python dec2base.py 65535 2 1111111111111111 ``` ## Funciones matemáticas { #math } Python nos ofrece, entre otras[^2], estas **tres funciones matemáticas** básicas que se pueden aplicar sobre listas. === "Suma :octicons-diff-added-16:" Mediante la función `sum()`: ```pycon >>> data = [5, 3, 2, 8, 9, 1] >>> sum(data) 28 ``` === "Máximo :octicons-arrow-up-16:" Mediante la función `max()`: ```pycon >>> data = [5, 3, 2, 8, 9, 1] >>> max(data) 9 ``` === "Mínimo :octicons-arrow-down-16:" Mediante la función `min()`: ```pycon >>> data = [5, 3, 2, 8, 9, 1] >>> min(data) 1 ``` !!! exercise "Ejercicio" Escribe un programa `avg.py` que reciba [desde línea de comandos](#sys-argv) una serie de números y calcule la **media de dichos valores** (_redondeando a 2 cifras decimales_). La llamada se haría de la siguiente manera: ```console $ python avg.py 32 56 21 99 12 17 ``` **Ejemplo:** - Entrada :material-arrow-left-box: `32 56 21 99 12 17` - Salida :material-arrow-right-box: `39.50` :octicons-light-bulb-16:{ .yellow } Ten en cuenta que `sys.argv` es una lista (como otra cualquiera) y que admite [troceado de listas](#slicing). ## Lista de listas { #list-of-lists } Como ya hemos visto en varias ocasiones, las listas son estructuras de datos que pueden contener elementos heterogéneos. Estos elementos pueden ser a su vez listas. A continuación planteamos un ejemplo:material-flash: para un contexto deportivo. Un equipo de fútbol suele tener una disposición en el campo organizada en líneas de jugadores/as. En aquella alineación con la que España [ganó la copa del mundo](https://es.wikipedia.org/wiki/Copa_Mundial_Femenina_de_F%C3%BAtbol_de_2023) en 2023 había una disposición _4-3-3_ con las siguientes jugadoras: ![Campeonas 2023](./images/lists/spain2023-worldchampions.svg) ///caption Equipo campeón del Mundial de Fútbol en 2023 /// Veamos una posible representación de este equipo de fútbol usando **una lista compuesta de listas**. Primero definimos cada una de las líneas: ```pycon >>> goalkeeper = 'Cata' >>> defenders = ['Olga', 'Laia', 'Irene', 'Ona'] >>> midfielders = ['Jenni', 'Teresa', 'Aitana'] >>> forwards = ['Mariona', 'Salma', 'Alba'] ``` Y ahora las juntamos en una única lista: ```pycon >>> team = [goalkeeper, defenders, midfielders, forwards] >>> team ['Cata', ['Olga', 'Laia', 'Irene', 'Ona'], ['Jenni', 'Teresa', 'Aitana'], ['Mariona', 'Salma', 'Alba']] ``` Podemos comprobar el **acceso a distintos elementos**: ```pycon >>> team[0]#(1)! 'Cata' >>> team[1][0]#(2)! 'Olga' >>> team[2]#(3)! ['Jenni', 'Teresa', 'Aitana'] >>> team[3][1]#(4)! 'Salma' ``` { .annotate } 1. Portera. 2. Lateral izquierdo. 3. Centrocampistas. 4. Delantera centro. También podemos **recorrer toda la alineación** (por líneas): ```pycon >>> for playline in team: ... if isinstance(playline, list):#(1)! ... for player in playline: ... print(player, end=' ') ... print() ... else: ... print(playline) ... Cata Olga Laia Irene Ona Jenni Teresa Aitana Mariona Salma Alba ``` { .annotate } 1. Es necesario comprobar si es una lista porque la portera está «sola». !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `mul-matrix2` ## Ejercicios { #exercises } 1. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `max-value` 2. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `max-value-with-min` 3. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `min-value` 4. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `min-value-with-max` 5. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `remove-dups` 6. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `flatten-list` 7. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `remove-consecutive-dups` 8. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `all-same` 9. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `sum-diagonal` 10. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `powers2` 11. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `sum-mixed` 12. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `n-multiples` 13. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `drop-even` 14. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `nth-power` 15. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `name-initials` 16. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `non-consecutive` 17. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `mul-reduce` 18. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `digit-rev-list` 19. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `time-plus-minutes` 20. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `add-positives` 21. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `add-opposites` 22. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `descending-numbers` 23. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `merge-sorted` 24. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `trimmed-add` 25. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `wolves` 26. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `minmax` 27. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `cascading-subsets` 28. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `diff-cuboid` 29. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `fl-strip` 30. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `logical-chain` 31. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `first-unused-id` 32. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `find-odds` 33. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `chemistry` 34. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `next-item` 35. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `v-partition` 36. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `attach-len` 37. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `reversing-words` 38. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `barycenter` 39. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `sort-custom` 40. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `flatten-list-deep` 41. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `first-duplicated` 42. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `fill-values` 43. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `frange` 44. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `qual-name` 45. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `mul-matrix` [^1]: Más adelante veremos el comportamiento de las [funciones](../modularity/functions.md). Devolver o retornar un valor es el resultado de aplicar una función. [^2]: Existen multitud de paquetes científicos en Python para trabajar con listas o vectores numéricos. Una de las más famosas es la librería [Numpy](../../third-party/data-science/numpy.md). ================================================ FILE: docs/core/datastructures/sets.md ================================================ --- icon: material/set-center tags: - Fundamentos del lenguaje - Estructuras de datos - Conjuntos --- # Conjuntos { #sets } ![Banner](images/sets/banner.jpg) /// caption Imagen generada con Inteligencia Artificial /// Un **conjunto** en Python es una estructura de datos que almacena valores **únicos** y **sin orden** establecido. Mantiene muchas similitudes con el [concepto matemático de conjunto](https://es.wikipedia.org/wiki/Conjunto). ## Creando conjuntos { #create } Para crear un conjunto usamos llaves `{}` rodeando valores separados por comas. Veamos algunos ejemplos:material-flash: de conjuntos: ```pycon >>> marks = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}#(1)! >>> vowels = {'a', 'e', 'i', 'o', 'u'}#(2)! >>> continents = {'Europa', 'América', 'Asia', 'África', 'Oceanía'}#(3)! ``` { .annotate } 1. Un conjunto con las posibles notas de una prueba. 2. Un conjunto con las vocales (en español). 3. Un conjunto con los continentes. La excepción la tenemos a la hora de crear un **conjunto vacío**, ya que, siguiendo la lógica de apartados anteriores, deberíamos hacerlo a través de llaves: ```pycon # DON'T DO THIS! >>> wrong_empty_set = {}#(1)! >>> type(wrong_empty_set) dict ``` { .annotate } 1. Si hacemos esto, estaremos creando un **diccionario vacío**. La única opción para crear un _conjunto vacío_ es utilizar la función `#!python set()`: ```pycon >>> empty_set = set() >>> type(empty_set) set ``` !!! exercise "Ejercicio" Entra en el intérprete interactivo de Python ❯❯❯ y crea un conjunto con tus tres colores favoritos. ## Conversión { #cast } Para convertir otros tipos de datos en un conjunto podemos usar la función `#!python set()`. Veamos varios ejemplos:material-flash: donde creamos un conjunto a partir de... === "... una cadena de texto" ```pycon >>> set('aplatanada') {'a', 'd', 'l', 'n', 'p', 't'} ``` === "... una lista" ```pycon >>> set([1, 2, 2, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 5]) {1, 2, 3, 4, 5} ``` === "... una tupla" ```pycon >>> set(('ADENINA', 'TIMINA', 'TIMINA', 'GUANINA', 'ADENINA', 'CITOSINA')) {'ADENINA', 'CITOSINA', 'GUANINA', 'TIMINA'} ``` === "... un diccionario" ```pycon >>> set({'manzana': 'rojo', 'plátano': 'amarillo', 'kiwi': 'verde'}) {'kiwi', 'manzana', 'plátano'} ``` !!! info "Valores únicos" Como se puede ver en los ejemplos anteriores, `#!python set()` es utilizado habitualmente como mecanismo para **extraer los valores únicos** de otras estructuras de datos. !!! warning "Orden" Python [almacena los conjuntos](https://www.reddit.com/r/learnpython/comments/1b0aama/comment/ks7bjvm/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button) ordenados según [el valor «hash»](dicts.md#hashables) de sus elementos. Pero esto es únicamente un «detalle de implementación» en el que no se puede confiar.[^1] ## Operaciones con conjuntos { #operations } Existen multitud de operaciones que se pueden realizar sobre conjuntos. A continuación veremos la mayoría de ellas: ### Obtener un elemento { #get-item } Como ya se ha indicado previamente los conjuntos no tienen un orden establecido, es por ello que **no podemos acceder a un elemento en concreto**. Como consecuencia de lo anterior, **tampoco podemos modificar un elemento existente**, ya que ni siquiera tenemos acceso al mismo. Python sí nos permite añadir o borrar elementos de un conjunto. ### Añadir un elemento { #add } Para añadir un elemento a un conjunto debemos utilizar la función `#!python add()`. Al no importar el orden dentro del conjunto, la inserción no establece a priori la posición donde se realizará. A modo de ejemplo:material-flash: vamos a partir de un conjunto que representa a los **cuatro integrantes originales** del la banda pop británica más famosa de todos los tiempos: [The Beatles](https://es.wikipedia.org/wiki/The_Beatles). ```pycon >>> beatles = set(['Lennon', 'McCartney', 'Harrison', 'Starr'])#(1)! ``` { .annotate } 1. John Lennon, Paul McCartney, George Harrison y Ringo Starr Ahora vamos a añadir a [Pete Best](https://es.wikipedia.org/wiki/Pete_Best) a la banda... ```pycon >>> beatles.add('Best') >>> beatles {'Best', 'Harrison', 'Lennon', 'McCartney', 'Starr'} ``` !!! warning "Recordatorio" No confundir la función [`append()`](lists.md#append) de las listas con la función `#!python add()` de los conjuntos. Ambas sirve para añadir elementos pero en estructuras de diferente naturaleza. El siguiente fragmento de código nos demuestra claramente que, aunque lo intentemos por **fuerza bruta** :sweat_smile: nunca vamos a poder añadir _elementos repetidos_ en un conjunto: ```pycon >>> items = set()#(1)! >>> for _ in range(1_000_000):#(2)! ... items.add('z') ... >>> items#(3)! {'z'} ``` { .annotate } 1. Creamos un conjunto vacío. 2. Tratamos de añadir el emento `#!python 'z'` un millón de veces. 3. Sólo obtendremos una `#!python 'z'`. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `tuple-set` ### Borrar elementos { #remove } Para borrar un elemento de un conjunto podemos utilizar la función `#!python remove()`. Siguiendo con el ejemplo:material-flash: anterior, vamos a borrar el último «beatle» añadido: ```pycon >>> beatles {'Best', 'Harrison', 'Lennon', 'McCartney', 'Starr'} >>> beatles.remove('Best') >>> beatles {'Harrison', 'Lennon', 'McCartney', 'Starr'} ``` Si tratamos de **borrar un elemento que no existe** obrendremos un `#!python KeyError` (al igual que ocurría en los [diccionarios](dicts.md#get-item)): ```pycon hl_lines="5" >>> beatles.remove('Sinatra') Traceback (most recent call last): Cell In[1], line 1 beatles.remove('Sinatra') KeyError: 'Sinatra' ``` !!! tip "Borrado sin errores" Existe una función que permite borrar elementos de un conjunto sin quejarse cuando no existan: ```python >>> beatles.discard('Sinatra') ``` ### Longitud de un conjunto { #length } Podemos conocer el número de elementos ([cardinalidad](https://es.wikipedia.org/wiki/Cardinalidad)) que tiene un conjunto mediante la función `#!python len()`. De vueltas con el ejemplo:material-flash: de «The Beatles», tendríamos: ```pycon >>> beatles {'Harrison', 'Lennon', 'McCartney', 'Starr'} >>> len(beatles) 4 ``` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `diverse-word` ### Iterar sobre un conjunto { #iterate } Tal y como se ha visto para otros tipos de datos _iterables_, la forma de recorrer los elementos de un conjunto es utilizar la sentencia `#!python for`. Para el ejemplo:material-flash: anterior sería muy sencillo: ```pycon >>> for beatle in beatles: ... print(beatle) ... Harrison McCartney Starr Lennon ``` ### Pertenencia de un elemento { #in } Al igual que con otros tipos de datos, Python nos ofrece el operador `#!python in` para determinar si un elemento pertenece a un conjunto. Veamos cómo aplicarlo en el ejemplo:material-flash: de «The Beatles»: ```pycon >>> beatles {'Harrison', 'Lennon', 'McCartney', 'Starr'} >>> 'Lennon' in beatles True >>> 'Fari' in beatles False >>> 'Fari' not in beatles True ``` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `half-out` ### Ordenar un conjunto { #sort } Ya hemos comentado que los conjuntos **no mantienen un orden**. ¿Pero qué ocurre si intentamos ordenarlo? Veamos el comportamiento a través del ejemplo:material-flash: anterior: ```pycon >>> beatles {'McCartney', 'Starr', 'Lennon', 'Harrison'} >>> sorted(beatles)#(1)! ['Harrison', 'Lennon', 'McCartney', 'Starr'] ``` { .annotate } 1. Lo que obtenemos es **una lista** con los elementos ordenados. Obviamente, el uso de `#!python .sort()` no está permitido sobre un conjunto: ```pycon hl_lines="5" >>> beatles.sort() Traceback (most recent call last): Cell In[1], line 1 beatles.sort() AttributeError: 'set' object has no attribute 'sort' ``` ## Teoría de conjuntos { #set-theory } A continuación veremos las distintas operaciones sobre conjuntos que se pueden hacer en Python basadas en los [Diagramas de Venn](https://es.wikipedia.org/wiki/Diagrama_de_Venn) y la [Teoría de conjuntos](https://es.wikipedia.org/wiki/Teor%C3%ADa_de_conjuntos): ### Aritmética { #arithmetic } Partimos de dos conjuntos $A = \{1, 2\}$ y $B = \{2, 3\}$: ```pycon >>> A = {1, 2} >>> B = {2, 3} ``` Se definen las siguientes operaciones «aritméticas» entre conjuntos: ![Dark image](images/sets/venn-dark.svg#only-dark) ![Light image](images/sets/venn-light.svg#only-light)
- **Intersección** :material-set-center: $A \cap B$ --- Elementos comunes de $A$ y $B$. ![Dark image](images/sets/venn-intersection-dark.svg#only-dark) ![Light image](images/sets/venn-intersection-light.svg#only-light) ```pycon >>> A & B#(1)! {2} ``` { .annotate } 1. Equivalente: `#!python A.intersection(B)` - **Unión** :material-set-all: $A \cup B$ --- Elementos que están en $A$, en $B$ o ambos. ![Dark image](images/sets/venn-union-dark.svg#only-dark) ![Light image](images/sets/venn-union-light.svg#only-light) ```pycon >>> A | B#(1)! {1, 2, 3} ``` { .annotate } 1. Equivalente: `#!python A.union(B)` - **Diferencia** :material-set-left: $A \setminus B$ --- Elementos de $A$ que no están en $B$. ![Dark image](images/sets/venn-difference-dark.svg#only-dark) ![Light image](images/sets/venn-difference-light.svg#only-light) ```pycon >>> A - B#(1)! {1} ``` { .annotate } 1. Equivalente: `#!python A.difference(B)` - **Diferencia simétrica** :material-set-left-right: $A \triangle B$ --- Elementos no comunes de $A$ y $B$. ![Dark image](images/sets/venn-symdiff-dark.svg#only-dark) ![Light image](images/sets/venn-symdiff-light.svg#only-light) ```pycon >>> A ^ B#(1)! {1, 3} ``` { .annotate } 1. Equivalente: `#!python A.symmetric_difference(B)`
Todos las operaciones anteriores admiten una versión funcional: | Operación | Equivalente | Actualizando $A$ | | --- | --- | --- | | $A \cap B$ | `#!python A.intersection(B)` | `#!python A.intersection_update(B)` | | $A \cup B$ | `#!python A.union(B)` | `#!python A.update(B)` | | $A \setminus B$ | `#!python A.difference(B)` | `#!python A.difference_update(B)` | | $A \triangle B$ | `#!python A.symmetric_difference(B)` | `#!python A.symmetric_difference_update(B)` | ### Inclusión { #inclusion } Partimos de dos conjuntos $A = \{1, 2\}$ y $B = \{2, 3\}$: ```pycon >>> A = {1, 3, 5, 7, 9} >>> B = {3, 5, 7} ``` Las operaciones de inclusión tratan de descubrir si un conjunto «abarca» a otro (o viceversa).
- **Subconjunto** $B \subset A$ --- Todos los elementos de $B$ están en $A$. ![Subset](images/sets/inclusion.svg) «$B$ es un subconjunto de $A$» ```pycon >>> B < A#(1)! True ``` { .annotate } 1. También existe `#!python B <= A` - **Superconjunto** $A \supset B$ --- Los elementos de $A$ contienen a los de $B$. ![Subset](images/sets/inclusion.svg) «$A$ es un superconjunto de $B$» ```pycon >>> A > B#(1)! True ``` { .annotate } 1. También existe `#!python A >= B`
## Conjuntos por comprensión { #comprehension } Los conjuntos, al igual que las [listas](lists.md#comprehension) y los [diccionarios](dicts.md#comprehension), también se pueden crear por **comprensión**. Veamos un ejemplo:material-flash: en el que construimos un _conjunto por comprensión_ con aquellos números enteros múltiplos de 3 en el rango $[0,20)$: ```pycon >>> m3 = {number for number in range(0, 20) if number % 3 == 0} >>> m3 {0, 3, 6, 9, 12, 15, 18} ``` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `common-consonants` ## Conjuntos inmutables { #frozensets } Python ofrece la posibilidad de crear **conjuntos inmutables** haciendo uso de la función `#!python frozenset()` que recibe cualquier iterable como argumento. Supongamos por ejemplo:material-flash: que recibimos una serie de calificaciones de exámenes y queremos crear un conjunto inmutable con los posibles niveles (categorías) de calificaciones: ```pycon hl_lines="6" >>> marks = [1, 3, 2, 3, 1, 4, 2, 4, 5, 2, 5, 5, 3, 1, 4] >>> mark_levels = frozenset(marks) >>> mark_levels frozenset({1, 2, 3, 4, 5}) ``` Veamos qué ocurre si intentamos modificar este conjunto: ```pycon hl_lines="5" >>> mark_levels.add(100)#(1)! Traceback (most recent call last): Cell In[1], line 1 mark_levels.add(100) AttributeError: 'frozenset' object has no attribute 'add' ``` { .annotate } 1. Al ser inmutable no permite su modificación. !!! tip "Correspondencia" Un `frozenset` es a un `set` lo que una `tuple` es a una `list`: una forma de «congelar» los valores para que no se puedan modificar. ## Objetos «hashables» { #hashables } La única restricción que deben cumplir los elementos de un conjunto es ser [hashables](dicts.md#hashables). Un objeto es «hashable» si se le puede asignar un valor «hash» que no cambia en ejecución durante toda su vida. Supongamos un ejemplo:material-flash: en el que estamos construyendo un conjunto con los [elementos químicos](https://es.wikipedia.org/wiki/Elemento_qu%C3%ADmico) de la tabla periódica. Si intentamos añadir una [lista](./lists.md) como clave de un diccionario obtendremos el siguiente error: ```pycon hl_lines="8" >>> periodic_table = set() >>> metals = ['Fe', 'Mg', 'Au', 'Ag', 'Zn'] >>> periodic_table.add(metals)#(1)! Traceback (most recent call last): Cell In[3], line 1 periodic_table.add(metals) TypeError: unhashable type: 'list' ``` { .annotate } 1. Una lista no es un objeto «hashable» derivado de su condición de mutabilidad. Sin embargo, podríamos conseguir lo que buscamos si, en vez de listas, usáramos **tuplas** para almacenar los elementos químicos (ya que sí son «hashables»): ```pycon >>> periodic_table = set() >>> metals = ('Fe', 'Mg', 'Au', 'Ag', 'Zn') >>> periodic_table.add(metals) >>> non_metals = ('C', 'H', 'O', 'F', 'Cl') >>> periodic_table.add(non_metals) >>> periodic_table {('Fe', 'Mg', 'Au', 'Ag', 'Zn'), ('C', 'H', 'O', 'F', 'Cl')} ``` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `is-binary` [^1]: La ordenación de los elementos de un conjunto no está definida en el estándar de Python. Otra cuestión es que exista una ordenación por su «hash» para la implementación concreta de CPython. ================================================ FILE: docs/core/datastructures/tuples.md ================================================ --- icon: octicons/link-16 tags: - Fundamentos del lenguaje - Estructuras de datos - Tuplas --- # Tuplas { #tuples } ![Banner](images/tuples/banner.jpg) /// caption Imagen generada con Inteligencia Artificial /// El concepto de **tupla** es muy similar al de [lista](lists.md). Aunque hay algunas diferencias menores, lo fundamental es que, mientras una _lista_ es mutable y se puede modificar, una _tupla_ no admite cambios y por lo tanto, es **inmutable**. ## Creando tuplas { #create } Podemos pensar en crear tuplas tal y como [lo hacíamos con listas](lists.md#create), pero usando **paréntesis** en lugar de _corchetes_: ```pycon >>> tenerife_geoloc = (28.46824, -16.25462)#(1)! >>> three_wise_men = ('Melchor', 'Gaspar', 'Baltasar')#(2)! >>> empty_tuple = ()#(3)! >>> data = ('Welcome', 17, [0.1, 0.2], True)#(4)! ``` { .annotate } 1. Una tupla de 2 [números flotantes](../datatypes/numbers.md#floats) representando _latitud_ y _longitud_. 2. Una tupla de 3 [cadenas de texto](../datatypes/strings.md). 3. La **tupla vacía** (_0 elementos_). 4. Una tupla **heterogénea** de 4 elementos de distinta naturaleza. ### Tuplas de un elemento Hay que prestar especial atención cuando vamos a crear una **tupla de un único elemento**: === "Forma incorrecta :material-thumb-down:" La intención primera sería hacerlo de la siguiente manera: ```pycon >>> one_item_tuple = ('Papá Noel')#(1)! >>> one_item_tuple 'Papá Noel' >>> type(one_item_tuple)#(2)! str ``` { .annotate } 1. Los paréntesis se ignoran en este contexto. 2. Lo que hemos creado realmente es una _cadena de texto_. === "Forma correcta :material-thumb-up:" Para crear una tupla de un elemento debemos **añadir una coma al final**: ```pycon hl_lines="1" >>> one_item_tuple = ('Papá Noel',) >>> one_item_tuple ('Papá Noel',) >>> type(one_item_tuple) tuple ``` ### Tuplas sin paréntesis Según el caso, hay veces que nos podemos encontrar con tuplas que no llevan paréntesis. Quizás no está tan extendido, pero a efectos prácticos tiene el mismo resultado. Veamos algunos ejemplos:material-flash: de ello: ```pycon >>> one_item_tuple = 'Papá Noel', >>> three_wise_men = 'Melchor', 'Gaspar', 'Baltasar' >>> tenerife_geoloc = 28.46824, -16.25462 ``` ## Conversión Para convertir otros tipos de datos en una tupla podemos usar la función `tuple()`. Por ejemplo:material-flash: podemos convertir una _lista_ en una tupla: ```pycon >>> shopping = ['Agua', 'Aceite', 'Arroz'] >>> tuple(shopping) ('Agua', 'Aceite', 'Arroz') ``` Esta conversión es válida para aquellos tipos de datos que sean **iterables**: cadenas de caracteres, listas, diccionarios, conjuntos, etc. Un ejemplo:material-flash: que no funciona es intentar _convertir un número en una tupla_: ```pycon hl_lines="5" >>> tuple(5) Traceback (most recent call last): Cell In[1], line 1 tuple(5) TypeError: 'int' object is not iterable ``` ??? warning "Nombre de variable" Aunque está permitido, no suele ser una buena práctica llamar `tuple` a una variable ya que destruirías la función que nos permite trabajar con tuplas. Tampoco parece muy razonable utilizar nombres como `_tuple` o `tuple_` ya que no es necesario incluir en el nombre de una variable su propia naturaleza. ## Modificar una tupla { #modify } Como se ha comentado al principio de este capítulo, las tuplas son **estructuras de datos inmutables**. Una vez que las creamos con un valor, no podemos modificarlas. Veamos qué ocurre en el siguiente ejemplo:material-flash: donde queremos suplantar al Rey Mago _Melchor_: ```pycon hl_lines="7" >>> three_wise_men = 'Melchor', 'Gaspar', 'Baltasar' >>> three_wise_men[0] = 'Tom Hanks' Traceback (most recent call last): Cell In[2], line 1 three_wise_men[0] = 'Tom Hanks' TypeError: 'tuple' object does not support item assignment ``` ## Operaciones con tuplas { #operations } Con las tuplas podemos realizar [todas las operaciones que vimos con listas](lists.md#operations) **salvo las que conlleven una modificación** «in-situ» de la misma: - `reverse()` - `append()` - `extend()` - `remove()` - `clear()` - `sort()` Un par de detalles:
- Sí es posible aplicar `sorted()` o `reversed()` sobre una tupla ya que no estamos modificando su valor sino creando un nuevo objeto.(1) - La comparación de tuplas funciona exactamente igual que la [comparación de listas](lists.md#compare).
1. Estas funciones devuelven **una lista** en vez de una tupla. ## Desempaquetado de tuplas { #unpack } El **desempaquetado** es una característica de las tuplas que nos permite **asignar una tupla a variables independientes**: ![Dark image](images/tuples/tuple-unpacking-dark.svg#only-dark) ![Light image](images/tuples/tuple-unpacking-light.svg#only-light) Veamos un ejemplo:material-flash: desempaquetando a los tres Reyes Magos: ```pycon hl_lines="3" >>> three_wise_men = ('Melchor', 'Gaspar', 'Baltasar') >>> king1, king2, king3 = three_wise_men >>> king1 'Melchor' >>> king2 'Gaspar' >>> king3 'Baltasar' ``` Veamos otro ejemplo:material-flash: en el que utilizamos la función «built-in» [`divmod()`](https://docs.python.org/3/library/functions.html#divmod) que devuelve el cociente y el resto de una división usando una única llamada. Lo interesante (para el caso que nos ocupa) es que se suele utilizar el desempaquetado de tuplas para obtener los valores por separado: ```pycon >>> quotient, remainder = divmod(7, 3)#(1)! >>> quotient 2 >>> remainder 1 ``` { .annotate } 1. ``` 7 │ 3 └———— 1 2 ``` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `dec2bin` ### Intercambio de valores { #swap-values } Veamos cómo implementar el intercambio de los valores de dos variables: === "Forma «tradicional» :material-town-hall:" Necesitamos usar una variable intermedia $z$ para no perder valores: ```pycon hl_lines="4" >>> a = 1 >>> b = 2 >>> z = a >>> a = b >>> b = z >>> a 2 >>> b 1 ``` === "Forma directa :material-sign-direction:" Usando desempaquetado podemos hacerlo de forma directa: ```pycon hl_lines="4" >>> a = 1 >>> b = 2 >>> a, b = b, a >>> a 2 >>> b 1 ``` ### Desempaquetado extendido { #extended-unpacking } No tenemos que ceñirnos a realizar desempaquetado uno a uno. También podemos extenderlo e indicar ciertos **«grupos» de elementos** mediante el operador `*`. Veamos posibles implementaciones del _desempaquetado extendido_ en un ejemplo:material-flash: de «ranking» de lenguajes de programación: === "Primero, otros y último" ```pycon hl_lines="3" >>> ranking = ('Python', 'Java', 'C', 'TypeScript', 'Rust') >>> first, *others, last = ranking >>> first 'Python' >>> others ['Java', 'C', 'TypeScript'] >>> last 'Rust' ``` === "Primero y otros" ```pycon hl_lines="3" >>> ranking = ('Python', 'Java', 'C', 'TypeScript', 'Rust') >>> first, *others = ranking >>> first 'Python' >>> others ['Java', 'C', 'TypeScript', 'Rust'] ``` === "Primero, segundo y otros" ```pycon hl_lines="3" >>> ranking = ('Python', 'Java', 'C', 'TypeScript', 'Rust') >>> first, second, *others = ranking >>> first 'Python' >>> second 'Java' >>> others ['C', 'TypeScript', 'Rust'] ``` === "Otros, penúltimo y último" ```pycon hl_lines="3" >>> ranking = ('Python', 'Java', 'C', 'TypeScript', 'Rust') >>> *others, next_to_last, last = ranking >>> others ['Python', 'Java', 'C'] >>> next_to_last 'TypeScript' >>> last 'Rust' ``` === "Otros y último" ```pycon hl_lines="3" >>> ranking = ('Python', 'Java', 'C', 'TypeScript', 'Rust') >>> *others, last = ranking >>> others ['Python', 'Java', 'C', 'TypeScript'] >>> last 'Rust' ``` ??? note "Limitación al desempaquetado extendido" La condición necesaria para realizar desempaquetado extendido es que el número de elementos de destino debe ser **menor o igual** al número de elementos de origen. ### Desempaquetado genérico { #generic-unpacking } El desempaquetado de tuplas es **extensible a cualquier otro tipo de datos que sea iterable**. Veamos algunos ejemplos:material-flash:: === "Sobre cadenas de texto :material-format-quote-open:" ```pycon >>> oxygen = 'O2' >>> first, last = oxygen >>> first, last ('O', '2') >>> text = 'Hello, World!' >>> head, *body, tail = text >>> head, body, tail ('H', ['e', 'l', 'l', 'o', ',', ' ', 'W', 'o', 'r', 'l', 'd'], '!') ``` === "Sobre listas :material-code-brackets:" ```pycon >>> writer1, writer2, writer3 = ['Virginia Woolf', 'Jane Austen', 'Mary Shelley'] >>> writer1, writer2, writer3 ('Virginia Woolf', 'Jane Austen', 'Mary Shelley') >>> text = 'Hello, World!' >>> word1, word2 = text.split() >>> word1, word2 ('Hello,', 'World!') ``` ## ¿Tuplas por comprensión? { #tuple-comprehension } Los tipos de datos mutables (_listas, diccionarios y conjuntos_) sí permiten comprensiones pero **no así los tipos de datos inmutables** como cadenas de texto y tuplas. Si intentamos crear una **tupla por comprensión** utilizando paréntesis alrededor de la expresión, vemos que no aparece ningún error al ejecutarlo: ```pycon >>> myrange = (number for number in range(1, 6)) ``` Sin embargo lo que obtendremos **no es una tupla** sino un [generador](../modularity/functions.md#generators): ```pycon >>> myrange at 0x10b3732e0> ``` ## Tuplas vs Listas { #tuples-vs-lists } Aunque las tuplas y las listas puedan parecer estructuras de datos muy similares, sabemos que las tuplas carecen de ciertas operaciones, especialmente las que tienen que ver con la modificación de sus valores, ya que no son inmutables. Si las listas son más flexibles y potentes, **¿por qué íbamos a necesitar tuplas?** Veamos 4 potenciales ^^ventajas^^ del uso de tuplas frente a las listas: 1. Las tuplas ocupan **menos espacio** en memoria. 2. En las tuplas existe **protección** frente a cambios indeseados. 3. Las tuplas se pueden usar como **claves de diccionarios** (son [«hashables»](dicts.md#hashables)). 4. Las [`namedtuples`](https://docs.python.org/es/3/library/collections.html#collections.namedtuple) son una alternativa sencilla a los objetos. ================================================ FILE: docs/core/datatypes/data.md ================================================ --- icon: fontawesome/solid/memory tags: - Fundamentos del lenguaje - Tipos de datos - Datos --- # Datos { #data } ![Banner](images/data/banner.jpg) /// caption Imagen generada con Inteligencia Artificial /// Los programas están formados por **código** y **datos**[^1]. Pero a nivel interno de la memoria del ordenador (RAM) no son más que una secuencia de bits `100101101...` La interpretación de estos bits depende del lenguaje de programación, que almacena en la memoria no sólo el puro dato sino distintos metadatos[^2]. !!! quote "Rich Hickey" «Programming is not about typing, it's about thinking» Desde la perspectiva de un lenguaje de programación, cada «trozo» de memoria contiene realmente un objeto, de ahí que se diga que en Python **todo son objetos**. Y cada objeto contiene, al menos, los siguientes campos: - [x] El **tipo** del dato almacenado. - [x] Un **identificador** único (para distinguirlo de otros objetos). - [x] El **valor** del objeto (consistente con su tipo). ![PyObject](images/data/pyobject.svg) ## Tipos de datos { #datatypes } A continuación se muestran los distintos [tipos de datos](https://docs.python.org/es/3/library/stdtypes.html) que podemos encontrar en Python, sin incluir aquellos que proveen paquetes externos: | Nombre 🇪🇸 | Tipo :material-language-python: | Ejemplos :material-cube-unfolded: | | --- | --- | --- | | Booleano | [`bool`](numbers.md#booleans) | `#!python True`, `#!python False` | Entero | [`int`](numbers.md#integers) | `#!python 21`, `#!python 34500`, `#!python 34_500` | Flotante | [`float`](numbers.md#floats) | `#!python 3.14`, `#!python 0.00314e3` | Complejo | `#!python complex` | `#!python 2j`, `#!python 3+5j` | Cadena | [`str`](strings.md) | `#!python 'tfn'`, `#!python "tenerife"` | Tupla | [`tuple`](../datastructures/tuples.md) | `#!python (1, 3, 5)` | Lista | [`list`](../datastructures/lists.md) | `#!python ['Chrome', 'Firefox', 'Safari']` | Conjunto | [`set`](../datastructures/sets.md) | `#!python {2, 4, 6}` | Diccionario | [`dict`](../datastructures/dicts.md) | `#!python {'Spiderman': 'Marvel', 'Superman': 'DC'}` ## Variables { #variables } Las variables son fundamentales ya que permiten definir **nombres** para los **valores** que tenemos en memoria y que vamos a usar en nuestro programa. ### Reglas para nombrar variables { #naming-rules } En Python existen una serie de reglas para los nombres de variables:
1. Sólo pueden contener los siguientes caracteres[^3]: - Letras mayúsculas. - Letras minúsculas. - Dígitos. - Guiones bajos `_` 2. Deben empezar con una letra o un guión bajo, nunca con un dígito. 3. No pueden ser una palabra reservada del lenguaje («keywords»)(1)
1. Podemos obtener un listado de las palabras reservadas del lenguaje de la siguiente forma: ```pycon >>> help('keywords') Here is a list of the Python keywords. Enter any keyword to get more help. False class from or None continue global pass True def if raise and del import return as elif in try assert else is while async except lambda with await finally nonlocal yield break for not ``` !!! info "In english, please! 🇬🇧" Por lo general se prefiere dar nombres en **inglés** a las variables que utilicemos, ya que así hacemos nuestro código más «internacional» y con la posibilidad de que otras personas puedan leerlo, entenderlo y –-llegado el caso-– modificarlo. Es sólo una recomendación, nada impide que se haga en castellano. ### Convenciones para nombres { #naming-standards } Mientras se sigan las [reglas](#naming-rules) que hemos visto para nombrar variables no hay problema en la forma en la que se escriban, pero sí existe una convención para la **nomenclatura de las variables**. Se utiliza el llamado `snake_case`(1) en el que utilizamos **caracteres en minúsculas** (incluyendo dígitos si procede) junto con **guiones bajos** (cuando sean necesarios para su legibilidad). { .annotate } 1. Nomenclaturas «case»: - [ ] `kebab-case` - [ ] `camelCase` - [ ] `PascalCase` - [x] `snake_case` Por ejemplo:material-flash: para nombrar una variable que almacene el _número de canciones_ en nuestro ordenador, podríamos usar `num_songs`. Esta convención, y muchas otras, están definidas en un documento denominado [PEP 8](https://peps.python.org/pep-0008/#naming-conventions). Se trata de una **guía de estilo** para escribir código Python. Los PEP son las propuestas que se hacen para la mejora del lenguaje. #### Constantes { #constants } Un caso especial y que vale la pena destacar son las **constantes**. Podríamos decir que es un tipo de variable pero que su valor no ~~cambia~~ debería cambiar a lo largo de nuestro programa. Por ejemplo la velocidad de la luz. Sabemos que su valor es constante de 300.000 km/s. En el caso de las constantes utilizamos **mayúsculas** (incluyendo guiones bajos si es necesario) para nombrarlas. Para la velocidad de la luz nuestra constante se podría llamar: `LIGHT_SPEED`. #### Elegir buenos nombres { #good-names } Se suele decir que una persona programadora (con cierta experiencia), a lo que dedica más tiempo, es a buscar un buen nombre para sus variables. Quizás pueda resultar algo excesivo pero da una idea de lo importante que es esta tarea. Es fundamental que los nombres de variables sean **autoexplicativos**, pero siempre llegando a un compromiso entre ser concisos y claros. Supongamos que queremos buscar un nombre de variable para almacenar el **número de elementos que se deben manejar en un pedido**. Se nos ocurren cuatro posibilidades: - [ ] `n` - [x] `num_items` - [ ] `number_of_items` - [ ] `number_of_items_to_be_handled` No existe una regla mágica que nos diga cuál es el nombre perfecto, pero podemos aplicar el sentido común y, a través de la experiencia, ir detectando aquellos nombres que sean más adecuados. En el ejemplo anterior, quizás podríamos descartar de principio la opción 1 y la 4 (por ser demasiado cortas o demasiado largas); nos quedaríamos con las otras dos. Si nos fijamos bien, casi no hay mucha información adicional de la opción 3 con respecto a la 2. Así que podríamos concluir que **la opción 2 es válida para nuestras necesidades**. En cualquier caso esta decisión dependerá siempre del contexto del problema que estemos tratando y de los acuerdos a los que hayamos llegado con nuestro equipo de trabajo. Como regla general: - Usar **sustantivos** para los nombres de [variables](#variables) :material-arrow-right: `article` - Usar **verbos** para los nombres de [funciones](../modularity/functions.md) :material-arrow-right: `get_article()` - Usar **adjetivos** para los nombres de [booleanos](numbers.md#booleans) :material-arrow-right: `available` ## Asignación { #assignment } En Python se utiliza el símbolo `=` para **asignar** un valor a una variable: ``` mermaid flowchart LR name(nombre) ~~~ equals{=} ~~~ value(valor) equals --> name equals ~~~ name value --> equals value ~~~ equals ``` Hay que diferenciar la _asignación en Python_ de la _igualación en matemáticas_. El símbolo `=` lo hemos aprendido desde siempre como una equivalencia entre dos expresiones algebraicas, sin embargo en Python nos indica una sentencia de asignación, del valor (en la derecha) al nombre (en la izquierda). !!! example "Lados de una asignación" En una asignación de Python siempre encontramos dos «lados» el izquierdo y el derecho: ```pycon lado_izquierdo = lado_derecho ``` - El lado izquierdo se denomina LHS. - El lado derecho se denomina RHS. Algunos ejemplos de asignaciones a _variables_: ```pycon >>> total_population = 157_503 >>> avg_temperature = 16.8 >>> city_name = 'San Cristóbal de La Laguna' ``` Algunos ejemplos de asignaciones a _constantes_: ```pycon >>> SOUND_SPEED = 343.2 >>> WATER_DENSITY = 997 >>> EARTH_NAME = 'La Tierra' ``` En un escenario donde queramos asignar el mismo valor a tres variables distintas tendríamos que hacer lo siguiente: ```pycon >>> tres = 3 >>> three = 3 >>> drei = 3 ``` Para estos casos Python nos ofrece la posibilidad de realizar una **asignación múltiple** en una única línea: ```pycon >>> tres = three = drei = 3 ``` Recordemos que los nombres de variables deben seguir unas [reglas establecidas](#naming-rules), de lo contrario obtendremos un error sintáctico del intérprete de Python: ```pycon hl_lines="1 7 13" >>> 7floor = 40 # el nombre empieza por un dígito Cell In[1], line 1 7floor = 40 ^ SyntaxError: invalid decimal literal >>> for = 'Bucle' # el nombre usa la palabra reservada "for" Cell In[2], line 1 for = 'Bucle' ^ SyntaxError: invalid syntax >>> screen-size = 14 # el nombre usa un carácter no válido Cell In[3], line 1 screen-size = 14 ^ SyntaxError: cannot assign to expression here. Maybe you meant '==' instead of '='? ``` ### Asignar una variable a otra { #assign-variables } Las asignaciones que hemos hecho hasta ahora han sido de un **valor literal** a una variable. Pero nada impide que podamos hacer asignaciones de una variable a otra variable: ```pycon >>> people = 157503 >>> total_population = people >>> total_population 157503 ``` Eso sí, la variable que utilicemos como valor de asignación debe existir previamente, ya que si no es así, obtendremos un error informando de que no está definida: ```pycon >>> total_population = lot_of_people Traceback (most recent call last): Cell In[1], line 1 total_population = lot_of_people NameError: name 'lot_of_people' is not defined ``` De hecho, en el RHS de la asignación pueden aparecer **expresiones** más complejas que se verán más adelante. ### Conocer el valor de una variable { #get-value } Hemos visto previamente cómo asignar un valor a una variable, pero aún no sabemos cómo «comprobar» el valor que tiene dicha variable. Para ello podemos utilizar dos estrategias en función de dónde nos encontremos: === "Intérprete Python ❯❯❯" Basta con que usemos el nombre de la variable (y ++enter++): ```pycon >>> final_stock = 38934 >>> final_stock 38934 ``` === "Editor de código :material-microsoft-visual-studio-code:" Debemos hacer uso de `print()`: ```python final_stock = 38934 print(final_stock) # 38934 ``` ### Conocer el tipo de una variable { #get-type } Para poder descubrir el tipo de un literal o una variable, Python nos ofrece la función `type()`. Veamos algunos ejemplos de su uso: ```pycon >>> type(9) int >>> type(1.2) float >>> height = 3718 >>> type(height) int >>> SOUND_SPEED = 343.2 >>> type(SOUND_SPEED) float ``` !!! warning "Advertencia" Aunque está permitido, **NUNCA** llames `type` a una variable porque destruirías la función que nos permite conocer el tipo de un objeto. !!! exercise "Ejercicio" Utilizando la consola interactiva de Python ❯❯❯ realiza las siguientes tareas: 1. Asigna un valor entero `#!python 2001` a la variable `#!python space_odyssey` y muestra su valor. 2. Descubre el tipo del literal `#!python 'Good night & Good luck'`. 3. Identifica el tipo del literal `#!python True`. 4. Asigna la expresión `#!python 10 * 3.0` a la variable `result` y muestra su tipo. ## Mutabilidad { #mutability } Las [variables](#variables) son **nombres**, no lugares. Detrás de esta frase se esconde la reflexión de que cuando asignamos un valor a una variable, lo que realmente está ocurriendo es que se hace **apuntar** el nombre de la variable a una zona de memoria en la que se representa el objeto (con su valor). Por ejemplo: ```pycon >>> a = 5 ``` ![Inmutable 1](images/data/inmutable1.svg) Si ahora «copiamos» el valor de `a` en otra variable `b` se podría esperar que hubiera otro espacio en memoria para dicho valor, pero como ya hemos dicho, son referencias a memoria: ```pycon >>> b = a ``` ![Inmutable 2](images/data/inmutable2.svg) A continuación vamos a modificar el valor de la variable `a`. Lo que ocurre es que se busca una nueva zona de memoria para almacenar el valor y se hace que `a` apunte a dicho valor: ```pycon >>> a = 7 ``` ![Inmutable 3](images/data/inmutable3.svg) Con la función `id()` podemos conocer la dirección de memoria[^4] de un objeto en Python. A través de ella podemos comprobar que los dos objetos que hemos creado «apuntan» a la misma zona de memoria: ```pycon >>> a = 5 >>> b = a >>> id(a) 4393605176 >>> id(b) 4393605176 ``` La prueba de que la zona de memoria no la ocupa el «nombre» de la variable, es que podemos ver cómo se asigna una dirección de memoria únicamente al «valor» literal: ```pycon >>> id(5) 4393605176 ``` Cada vez que asignamos un nuevo valor a una variable, ésta apunta a una nueva zona de memoria: ```pycon >>> id(a) 4393605176 >>> a = 7 >>> id(a) 4393605240 ``` !!! info "Mutabilidad" Cuando la zona de memoria que ocupa el objeto se puede modificar hablamos de tipos de datos **mutables**. En otro caso hablamos de tipos de datos **inmutables**. Un ejemplo de tipos de datos mutables son las **listas**. Esto se debe a que podemos modificar su contenido en la misma zona de memoria: ```pycon >>> a = [4, 3, 2] ``` ![Mutable 1](images/data/mutable1.svg) Vamos a hacer una «copia» de la variable: ```pycon >>> b = a ``` ![Mutable 2](images/data/mutable2.svg) Y ahora vamos a modificar la lista `a` añadiendo un valor al final. Dado que la modificación se produce en la **misma zona de memoria** la variable `b` también se ve afectada por este cambio: ```pycon >>> a.append(1) ``` ![Mutable 3](images/data/mutable3.svg) Por tanto, podemos clasificar los **tipos de datos** en Python según su **naturaleza de cambio**: === "Tipos inmutables :classical_building:" - `#!python bool` - `#!python int` - `#!python float` - `#!python str` - `#!python tuple` === "Tipos mutables :fontawesome-solid-droplet:" - `#!python list` - `#!python dict` - `#!python set` !!! success "Cambio de valor" El hecho de que un tipo de datos sea inmutable significa que no podemos modificar su valor «in-situ», pero siempre podremos asignarle un nuevo valor (hacerlo apuntar a otra zona de memoria). ## Precarga de objetos { #preload } En Python, algunos objetos se cargan en memoria de forma automática (_«preloading»_) al iniciar el intérprete. Esto se hace para optimizar el rendimiento del lenguaje, ya que estos objetos son muy utilizados en la mayoría de los programas. Entre estos objetos precargados se encuentran: === "Números" Todos los números enteros entre `-5` y `256` (inclusive)[^5], definidos en el [código fuente de _CPython_](https://github.com/python/cpython/blob/main/Include/internal/pycore_runtime_init_generated.h) a través de la estructura `_Py_small_ints_INIT`. Esto se puede comprobar fácimente con la función `id()`: ```pycon >>> id(-5) 4371891880 >>> id(-5) 4371891880 >>> id(125) 4371896040 >>> id(125) 4371896040 >>> id(347) 4415707120 >>> id(347) 4415701232 ``` === "Cadenas de texto" Los caracteres del [código ASCII extendido](https://www.ascii-code.com/) (letras mayúsculas, minúsculas, dígitos y algunos símbolos), con códigos entre `0` y `255` (inclusive), definidos en el [código fuente de _CPython_](https://github.com/python/cpython/blob/main/Include/internal/pycore_runtime_init_generated.h) a través de las estructuras `_Py_str_ascii_INIT` y `_Py_str_latin1_INIT`. Esto se puede comprobar fácimente con la función `id()`: ```pycon >>> id('a') 4371958760 >>> id('a') 4371958760 >>> id('?') 4371957128 >>> id('?') 4371957128 >>> id('😊') 4393408496 >>> id('😊') 4415814576 ``` ## Funciones «built-in» { #built-in-functions } Hemos ido usando una serie de [funciones](../modularity/functions.md) sin ser especialmente conscientes de ello. Esto se debe a que son funciones «built-in» o incorporadas por defecto en el propio lenguaje Python. A continuación se muestra el listado de **funciones «built-in»** por orden alfabético: === "A" ``` abs() aiter() all() anext() any() ascii() ``` === "B" ``` bin() bool() breakpoint() bytearray() bytes() ``` === "C" ``` callable() chr() classmethod() compile() complex() ``` === "D" ``` delattr() dict() dir() divmod() ``` === "E" ``` enumerate() eval() exec() ``` === "F" ``` filter() float() format() frozenset() ``` === "G" ``` getattr() globals() ``` === "H" ``` hasattr() hash() help() hex() ``` === "I" ``` id() input() int() isinstance() issubclass() iter() ``` === "L" ``` len() list() locals() ``` === "M" ``` map() max() memoryview() min() ``` === "N" ``` next() ``` === "O" ``` object() oct() open() ord() ``` === "P" ``` pow() print() property() ``` === "R" ``` range() repr() reversed() round() ``` === "S" ``` set() setattr() slice() sorted() staticmethod() str() sum() super() ``` === "T" ``` tuple() type() ``` === "V" ``` vars() ``` === "Z" ``` zip() ``` === "_" ``` __import__() ``` Los detalles de cada función se pueden consultar en la [documentación oficial de Python](https://docs.python.org/3/library/functions.html#built-in-functions). ## Pidiendo ayuda { #help } En Python, como en muchas otras situaciones de la vida, podemos pedir ayuda con la función `help()`. Supongamos que queremos obtener información sobre `id`. Desde el intérprete de Python ❯❯❯ ejecutamos lo siguiente: ```pycon >>> help(id) Help on built-in function id in module builtins: id(obj, /) Return the identity of an object. This is guaranteed to be unique among simultaneously existing objects. (CPython uses the object's memory address.) ``` Existe una _forma alternativa_ de obtener ayuda: añadiendo el signo de interrogación `?` al término de búsqueda: ```pycon >>> id? Signature: id(obj, /) Docstring: Return the identity of an object. This is guaranteed to be unique among simultaneously existing objects. (CPython uses the object's memory address.) Type: builtin_function_or_method ``` [^1]: Ya en 1946, John Von Neuman [propuso](../introduction/history.md#computing-milestones) guardar en memoria no sólo los datos sino también el código. [^2]: Los metadatos son datos que describen otros datos. [^3]: Para ser exactos, sí se pueden utilizar otros caracteres, e incluso emojis en los nombres de variables, aunque no suele ser una práctica extendida, ya que podría dificultar la legibilidad. [^4]: Esto es un detalle de implementación de CPython. [^5]: A partir de Python :octicons-tag-24: 3.15 se amplia el número de enteros precargados al rango $[-5, 1024]$ ================================================ FILE: docs/core/datatypes/index.md ================================================ # Tipos de datos En programación, los tipos de datos son fundamentales porque determinan la naturaleza de los valores que se pueden almacenar y manipular en un programa. Cada lenguaje, incluido Python, clasifica la información en distintos tipos para poder realizar operaciones apropiadas según su naturaleza, como sumar números o concatenar cadenas de texto. Comprender los tipos de datos es esencial para escribir código correcto y eficiente, ya que permite al programador elegir la forma adecuada de representar la información. En este capítulo exploraremos los principales tipos de datos en Python, como los números, las cadenas de texto o los booleanos. ================================================ FILE: docs/core/datatypes/numbers.md ================================================ --- icon: material/calculator tags: - Fundamentos del lenguaje - Tipos de datos - Números --- # Números { #numbers } ![Banner](images/numbers/banner.jpg) /// caption Imagen generada con Inteligencia Artificial /// En esta sección veremos los tipos de datos númericos que ofrece Python centrándonos en **booleanos**, **enteros** y **flotantes**. ## Booleanos { #booleans } [George Boole](https://es.wikipedia.org/wiki/George_Boole) es considerado como uno de los fundadores del campo de las ciencias de la computación y fue el creador del [Álgebra de Boole](https://es.wikipedia.org/wiki/%C3%81lgebra_de_Boole) que da lugar, entre otras estructuras algebraicas, a la [Lógica binaria](https://es.wikipedia.org/wiki/L%C3%B3gica_binaria). En esta lógica las variables sólo pueden tomar dos valores discretos: **Verdadero :octicons-shield-check-16:{ .green }** o **Falso :octicons-shield-x-16:{ .red }**. El tipo de datos `bool` en _Python_ proviene de lo explicado anteriormente y admite dos posibles valores: - `#!python True` que se corresponde con **verdadero**. - `#!python False` que se corresponde con **falso**. Veamos un ejemplo:material-flash: de su uso: ```pycon >>> is_opened = True >>> is_opened True >>> has_sugar = False >>> has_sugar False ``` La primera variable `is_opened` está representando el hecho de que algo esté abierto, y al tomar el valor `True` podemos concluir que sí. La segunda variable `has_sugar` nos indica si una bebida tiene azúcar; dado que toma el valor `False` inferimos que no lleva azúcar. !!! failure "Atención" Tal y como se explicó en [este apartado](data.md#naming-rules), los nombres de variables son «case-sensitive». De igual modo el tipo booleano toma valores `True` y `False` con **la primera letra en mayúsculas**. De no ser así obtendríamos un error sintáctico. ```pycon hl_lines="1 7" >>> is_opened = true Traceback (most recent call last): Cell In[1], line 1 is_opened = true NameError: name 'true' is not defined >>> has_sugar = false Traceback (most recent call last): Cell In[2], line 1 has_sugar = false NameError: name 'false' is not defined ``` ## Enteros { #integers } Los números enteros no tienen decimales pero sí pueden contener signo y estar expresados en alguna base distinta de la habitual (base 10). ### Literales enteros { #integer-literals } Veamos algunos ejemplos de números enteros: ```pycon >>> 8 8 >>> +8 8 >>> -8 -8 >>> 08 Cell In[4], line 1 08 ^ SyntaxError: leading zeros in decimal integer literals are not permitted; use an 0o prefix for octal integers >>> 8000000 8000000 >>> 8_000_000 8000000 ``` Dos detalles a tener en cuenta: - No podemos comenzar un número entero por `0`. - Python permite dividir los números enteros con _guiones bajos_ `_` para clarificar su lectura/escritura. A efectos prácticos es como si estos guiones bajos no existieran. ### Operaciones con enteros { #integer-operations } A continuación se muestra una tabla con las distintas operaciones sobre enteros que podemos realizar en Python: | Operador | Descripción | Ejemplo | Resultado | | -------- | ------------------- | ----------------- | --------- | | `+` | Suma | `#!python 3 + 9` | 12 | | `-` | Resta | `#!python 6 - 2` | 4 | | `*` | Multiplicación | `#!python 5 * 5` | 25 | | `/` | División _flotante_ | `#!python 9 / 2` | 4.5 | | `//` | División _entera_ | `#!python 9 // 2` | 4 | | `%` | Módulo | `#!python 9 % 4` | 1 | | `**` | Exponenciación | `#!python 2 ** 4` | 16 | Veamos algunas pruebas con estos operadores: ```pycon >>> 2 + 8 + 4 14 >>> 4 ** 4 256 >>> 7 / 3 2.3333333333333335 >>> 7 // 3 2 >>> 6 / 0 Traceback (most recent call last): Cell In[5], line 1 6 / 0 ZeroDivisionError: division by zero ``` Es de buen estilo de programación **dejar un espacio** entre cada operador. Además hay que tener en cuenta que podemos obtener errores dependiendo de la operación (más bien de los operandos) que estemos utilizando, como es el caso de la _división por cero_. #### Precendencia { #precendence } La **precedencia** o **prioridad** de los operadores es un concepto fundamental a la hora de interpretar las expresiones. Cada operador tiene una **precedencia** que hace que se ejecute antes (o después) de otro operador: | Precendencia | Operador | | --- | --- | | :material-size-xxl: | `()` | | :material-size-xl: | `**` | | :material-size-l: | `-a` `+a` | | :material-size-m: | `*` `/` `//` `%` | | :material-size-s: | `+` `-` | Veamos algunas expresiones donde se aplica esta precedencia de operadores: ```pycon >>> 2 ** 2 + 4 / 2 6.0 >>> 2 ** (2 + 4) / 2 32.0 >>> 2 ** (2 + 4 / 2) 16.0 ``` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `add` #### Asignación aumentada { #augmented-assignment } Python nos ofrece la posibilidad de escribir una [asignación aumentada](https://www.python.org/dev/peps/pep-0577/) mezclando la _asignación_ y un _operador_. ``` mermaid flowchart LR LEFT["`a = a + 10`"] RIGHT["`a += 10`"] LEFT --> RIGHT RIGHT --> LEFT ``` Supongamos que disponemos de 100 vehículos en stock y que durante el pasado mes se han vendido 20 de ellos. Veamos cómo sería el código con asignación tradicional vs. asignación aumentada: === "Asignación tradicional :material-meditation:" ```python hl_lines="3" >>> total_cars = 100 >>> sold_cars = 20 >>> total_cars = total_cars - sold_cars >>> total_cars 80 ``` === "Asignación aumentada :material-elevation-rise:" ```python hl_lines="3" >>> total_cars = 100 >>> sold_cars = 20 >>> total_cars -= sold_cars >>> total_cars 80 ``` Estas dos formas son equivalentes a nivel de resultados y funcionalidad, pero obviamente tienen diferencias de escritura y legibilidad. De este mismo modo, podemos aplicar un formato compacto al resto de operaciones: ```pycon >>> random_number = 15 >>> random_number += 5 >>> random_number 20 >>> random_number *= 3 >>> random_number 60 >>> random_number //= 4 >>> random_number 15 >>> random_number **= 1 >>> random_number 15 ``` #### Módulo { #modulo } La operación **módulo** (también llamado **resto**), cuyo símbolo en Python es `%` se define como el **resto de dividir dos números**. Veamos un ejemplo:material-flash: para enteder bien su funcionamiento: ![Modulo](images/numbers/modulo-dark.svg#only-dark) ![Modulo](images/numbers/modulo-light.svg#only-light) ```pycon >>> dividendo = 17 >>> divisor = 5 >>> cociente = dividendo // divisor # división entera >>> resto = dividendo % divisor >>> cociente 3 >>> resto 2 ``` Si miramos el módulo en **forma espiral** se entiende mejor lo que ocurre. Podemos distinguir tres casos: === "a) Dividendo :material-code-less-than: divisor" ```pycon >>> 6 % 8 6 ``` ![](images/numbers/coil-modulo1-dark.svg#only-dark) ![](images/numbers/coil-modulo1-light.svg#only-light) === "b) Dividendo :material-equal-box: divisor" ```pycon >>> 8 % 8 0 ``` ![](images/numbers/coil-modulo2-dark.svg#only-dark) ![](images/numbers/coil-modulo2-light.svg#only-light) === "c) Dividendo :material-code-greater-than: divisor" ```pycon >>> 11 % 8 3 ``` ![](images/numbers/coil-modulo3-dark.svg#only-dark) ![](images/numbers/coil-modulo3-light.svg#only-light) ##### Desplazamiento circular { #circular-shift } Una de las aplicaciones más habituales del operador módulo `%` es el **desplazamiento circular**. === "Desplazamiento con paso 1" Veamos un ejemplo:material-flash: en el que disponemos de **4 «casillas»** y la «ficha» avanza **de uno en uno**. Después de la última casilla debemos volver a la casilla de salida: ![Dark image](images/numbers/circular-shift-step1-dark.svg#only-dark) ![Light image](images/numbers/circular-shift-step1-light.svg#only-light) Veamos la implementación en Python: ```pycon >>> a = 0 >>> a 0 🟪 >>> a = (a + 1) % 4 # 1 % 4 >>> a 1 🟦 >>> a = (a + 1) % 4 # 2 % 4 >>> a 2 🟩 >>> a = (a + 1) % 4 # 3 % 4 >>> a 3 🟪 >>> a = (a + 1) % 4 # 4 % 4 >>> a 0 🟦 >>> a = (a + 1) % 4 # 1 % 4 >>> a 1 🟩 >>> a = (a + 1) % 4 # 2 % 4 >>> a 2 🟪 >>> a = (a + 1) % 4 # 3 % 4 >>> a 3 🟦 >>> a = (a + 1) % 4 # 4 % 4 >>> a 0 🟩 >>> a = (a + 1) % 4 # 1 % 4 >>> a 1 🟪 ``` === "Desplazamiento con paso 3" Supongamos ahora que, en vez de ir de uno en uno, movemos la «ficha» **de tres en tres**: ![Dark image](images/numbers/circular-shift-step3-dark.svg#only-dark) ![Light image](images/numbers/circular-shift-step3-light.svg#only-light) Veamos la implementación en Python: ```pycon >>> a = 0 >>> a 0 🟪 >>> a = (a + 3) % 4 # 3 % 4 >>> a 3 🟦 >>> a = (a + 3) % 4 # 6 % 4 >>> a 2 🟩 >>> a = (a + 3) % 4 # 5 % 4 >>> a 1 🟪 ``` !!! tip "Módulo jaula" Haciendo el módulo estamos «encerrando» el valor dentro de unos límites: `[0, dividendo]`. #### Exponenciación { #power } Para elevar un número a otro en Python utilizamos el operador de exponenciación `**`: ```pycon >>> 4 ** 3#(1)! 64 ``` { .annotate } 1. `#!python 4 * 4 * 4 = 64` Se debe tener en cuenta que también podemos **elevar un número entero a un número decimal**. En este caso es como si estuviéramos haciendo una raíz[^1]. Por ejemplo: $4^{1/2} = 4^{0.5} = \sqrt{4} = 2$ Hecho en Python: ```pycon >>> 4 ** 0.5 2.0 ``` #### Valor absoluto { #absolute-value } Python ofrece la función `#!python abs()` para obtener el **valor absoluto** $|n|$ de un número $n$. Veamos algunos ejemplos:material-flash:: ```pycon >>> abs(-1) 1 >>> abs(1) 1 >>> abs(-3.14) 3.14 >>> abs(3.14) 3.14 ``` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `quadratic` ### Límite de un entero { #int-limit } ¿Cómo de grande puede ser un `int` en Python? La respuesta es: **el tamaño que quieras**[^2]. Por poner un ejemplo:material-flash: supongamos que queremos representar un [centillón](https://es.wikipedia.org/wiki/Centill%C3%B3n). Este valor viene a ser un «1» seguido de ¡600 ceros! ¿Será capaz Python de almacenarlo? ```pycon >>> centillion = 10 ** 600 >>> centillion 1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ``` !!! bug "Integer Overflow" En otros muchos lenguajes tratar con enteros tan largos causaría un «integer overflow». No es el caso de Python que puede manejar estos valores sin problema. ¿Qué pasaría si quisiéramos «romper» todas las barreras? Pongamos 10.000 dígitos... ```pycon >>> 10 ** 10_000 ValueError: Exceeds the limit (4300 digits) for integer string conversion; use sys.set_int_max_str_digits() to increase the limit ``` Obtenemos un error... pero subsanable, ya que hay forma de ampliar este **límite inicial de 4300 dígitos** usando la función [`sys.set_int_max_str_digits()`](https://docs.python.org/3/library/stdtypes.html#int-max-str-digits) :fontawesome-solid-wand-magic-sparkles: ## Flotantes { #floats } Los números en punto flotante[^3] tienen parte decimal. Veamos algunos ejemplos de flotantes en Python. Veamos todas las formas que hay en Python para representar el número flotante `4.0`: ```pycon >>> 4.0 4.0 >>> 4. 4.0 >>> 04.0#(1)! 4.0 >>> 04. 4.0 >>> 4.000_000 4.0 >>> 0.4e1#(2)! 4.0 ``` { .annotate } 1. A diferencia de los [números enteros](#integers), los valores flotantes ^^sí pueden^^ empezar por 0. 2. `#!python 0.4e1 = 0.4 * (10 ** 1)` ### Conversión de tipos { #typecast } El hecho de que existan distintos tipos de datos en Python (y en el resto de lenguajes de programación) es una ventaja a la hora de representar la información del mundo real de la mejor manera posible. Pero también se hace necesario buscar mecanismos para convertir unos tipos de datos en otros. #### Conversión implícita { #implicit-typecast } Cuando mezclamos enteros, booleanos y flotantes, Python realiza automáticamente una conversión implícita (o promoción) de los valores al tipo de «mayor rango». Veamos algunos ejemplos de esto: ```pycon >>> True + 25 26 >>> 7 * False 0 >>> True + False 1 >>> 21.8 + True 22.8 >>> 10 + 11.3 21.3 ``` !!! tip "Booleanos como números" De los ejemplos anteriores se deduce claramente que los valores booleanos asumen un valor numérico concreto cuando así se requiere: - `#!python True` :octicons-shield-check-16:{ .green } → `1` - `#!python False` :octicons-shield-x-16:{ .red } → `0` Podemos resumir la conversión implícita de la siguiente manera: - `#!python bool` :material-bowl-mix-outline: `#!python int` → `#!python int` - `#!python bool` :material-bowl-mix-outline: `#!python float` → `#!python float` - `#!python int` :material-bowl-mix-outline: `#!python float` → `#!python float` #### Conversión explícita { #explicit-typecast } Aunque más adelante veremos el concepto de **función**, desde ahora podemos decir que existen una serie de funciones para realizar conversiones explícitas de un tipo a otro: - `bool()` convierte al tipo [booleano](#booleans). - `int()` convierte al tipo [entero](#integers). - `float()` convierte al tipo [flotante](#floats). Veamos algunos ejemplos:material-flash: de estas funciones: ```pycon >>> bool(1) True >>> bool(0) False >>> int(True) 1 >>> int(False) 0 >>> float(1) 1.0 >>> float(0) 0.0 >>> float(True) 1.0 >>> float(False) 0.0 ``` En el caso de que usemos la función `#!python int()` sobre un valor flotante nos retornará su **parte baja**: $int(x) = \lfloor x \rfloor$ Por ejemplo:material-flash:: ```pycon >>> int(3.1) 3 >>> int(3.5) 3 >>> int(3.9) 3 ``` Para **obtener el tipo** de una variable [ya hemos visto](data.md#get-type) la función `#!python type()`: ```pycon >>> is_raining = False >>> type(is_raining) bool >>> sound_level = 35 >>> type(sound_level) int >>> temperature = 36.6 >>> type(temperature) float ``` Pero también existe la posibilidad de **comprobar el tipo** que tiene una variable mediante la función `#!python isinstance()`: ```pycon >>> isinstance(is_raining, bool) True >>> isinstance(sound_level, int) True >>> isinstance(temperature, float) True ``` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `sin-approx` ### Errores de aproximación { #approx-errors } Todo hace pensar que el siguiente cálculo debería dar 1... $$ \require{cancel} \frac{19}{155} * \frac{155}{19} = 1 $$ Pero si lo pasamos a Python nos llevamos una sorpresa :fontawesome-regular-face-surprise: ```pycon >>> (19 / 155) * (155 / 19) 0.9999999999999999 ``` Efectivamente debería dar **1.0**. En este caso no es así ya que la representación interna de los valores en **coma flotante** sigue el estándar [IEEE 754](https://es.wikipedia.org/wiki/IEEE_754) y estamos trabajando con [aritmética finita](https://www.unioviedo.es/compnum/laboratorios_py/Aritmetica_finita/Aritmetica_finita_y_error.html#Representaci%C3%B3n-de-los-n%C3%BAmeros-reales). Vamos a fijarnos en el valor de la fracción: $$ \frac{19}{155} = 0.1225806451612903225806451612903225806451612903225806451612903225\ldots $$ Estamos hablando de un [decimal periódico puro :simple-wolfram:](https://www.wolframalpha.com/input?i=19%2F155&lang=es) $0.\overline{1225806451612903}$. Pero cuando lo calculamos en Python obtenemos un número con «solo» **17 cifras decimales**: ```pycon >>> 19 / 155 0.12258064516129032 ``` Para el caso de la segunda fracción el planteanmiento es totalmente análogo: $$ \frac{155}{19} = 8.1578947368421052631578947368421052631578947368421052631578947368\ldots $$ Estamos hablando de otro [decimal periódico puro :simple-wolfram:](https://www.wolframalpha.com/input?i=155%2F19&lang=es) $8.\overline{157894736842105263}$. Pero cuando lo calculamos en Python obtenemos un número con «solo» **15 cifras decimales**: ```pycon >>> 155 / 19 8.157894736842104 ``` Por tanto es entendible que esta «pérdida» de información se refleje en los cálculos subsiguientes: ```pycon >>> 0.12258064516129032 * 8.157894736842104 0.9999999999999999 ``` Aunque existen distintas formas de solventar esta limitación, de momento veremos una de las más sencillas utilizando la función «built-in» `#!python round()` que nos permite redondear un número flotante a un número determinado de decimales: ```pycon >>> result = (19 / 155) * (155 / 19) >>> round(result, 1) 1.0 ``` Veamos otros ejemplos:material-flash: de `#!python round()` aplicados sobre $\pi$: ```pycon >>> PI = 3.141_592_653_589 >>> round(PI) 3 >>> round(PI, 1) 3.1 >>> round(PI, 2) 3.14 >>> round(PI, 3) 3.142 >>> round(PI, 4) 3.1416 >>> round(PI, 5) 3.14159 ``` !!! info "Redondear vs truncar" `#!python round()` aproxima (redondea) al valor más cercano, mientras que `#!python int()` obtiene el entero «por abajo» (trunca). ## Bases { #bases } Los valores numéricos con los que estamos acostumbrados a trabajar están en **base 10** (o decimal). Esto indica que disponemos de 10 «símbolos» para representar cada cifra: en este caso del `0` al `9`. Pero también es posible representar números en **otras bases**. Python nos ofrece una serie de **prefijos** y **funciones** para este cometido. ### Base binaria { #binary } Cuenta con **2** símbolos para representar los valores: `0` y `1`. === "Prefijo: `#!python 0b`" Permite introducir un número binario directamente: ```pycon >>> 0b1001 9 >>> 0b1100 12 ``` :material-check-all:{ .blue } El valor queda almacenado como un **número entero**. === "Función: `#!python bin()`" Permite convertir un número entero a su correspondiente valor binario: ```pycon >>> bin(9) '0b1001' >>> bin(12) '0b1100' ``` !!! danger "Resultado" Esta función devuelve una [cadena de texto](strings.md). ### Base octal { #octal } Cuenta con **8** símbolos para representar los valores: `0`, `1`, `2`, `3`, `4`, `5`, `6` y `7`. === "Prefijo: `#!python 0o`" Permite introducir un número octal directamente: ```pycon >>> 0o6243 3235 >>> 0o1257 687 ``` :material-check-all:{ .blue } El valor queda almacenado como un **número entero**. === "Función: `#!python oct()`" Permite convertir un número entero a su correspondiente valor octal: ```pycon >>> oct(3235) '0o6243' >>> oct(687) '0o1257' ``` !!! danger "Resultado" Esta función devuelve una [cadena de texto](strings.md). ### Base hexadecimal { #hex } Cuenta con **16** símbolos para representar los valores: `0`, `1`, `2`, `3`, `4`, `5`, `6`, `7`, `8`, `9`, `A`, `B`, `C`, `D`, `E` y `F`. === "Prefijo: `#!python 0x`" Permite introducir un número hexadecimal directamente: ```pycon >>> 0x7F2A 32554 >>> 0x48FF 18687 ``` :material-check-all:{ .blue } El valor queda almacenado como un **número entero**. === "Función: `#!python hex()`" Permite convertir un número entero a su correspondiente valor hexadecimal: ```pycon >>> hex(32554) '0x7f2a' >>> hex(18687) '0x48ff' ``` !!! danger "Resultado" Esta función devuelve una [cadena de texto](strings.md). :material-check-all:{ .blue } Las letras en representación hexadecimal no atienden a mayúsculas y minúsculas. Es decir que `#!python 0x4af` :material-approximately-equal: `#!python 0x4AF`. ## Ejercicios { #exercises } 1. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `circle-area` 2. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `sphere-volume` 3. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `triangle-area` 4. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `interest-rate` 5. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `euclid-distance` 6. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `century-year` 7. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `red-square` 7. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `igic` 8. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `super-fast` 9. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `move-twice` 10. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `pillars` 11. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `clock-time` 13. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `ring-area` [^1]: No siempre es una raíz cuadrada porque se invierten numerador y denominador. [^2]: Siempre y cuando tu memoria RAM sea capaz de soportarlo :sweat_smile:. [^3]: Punto o coma flotante es una [notación científica](https://es.wikipedia.org/wiki/Coma_flotante#:~:text=La%20representaci%C3%B3n%20de%20punto%20flotante,se%20pueden%20realizar%20operaciones%20aritm%C3%A9ticas.) usada por computadores para almacenar valores decimales. ================================================ FILE: docs/core/datatypes/strings.md ================================================ --- icon: material/text-box tags: - Fundamentos del lenguaje - Tipos de datos - Cadenas de texto --- # Cadenas de texto { #strings } ![Banner](images/strings/banner.jpg) /// caption Imagen generada con Inteligencia Artificial /// Las cadenas de texto son **secuencias de caracteres**. También se les conoce como «strings» y nos permiten almacenar información textual de manera muy cómoda. Es importante señalar que desde Python :octicons-tag-24: 3.0 las cadenas de texto se almacenan en el estándar [Unicode](https://es.wikipedia.org/wiki/Unicode), lo que supone una gran ventaja con respecto a versiones antiguas del lenguaje (que usaban _bytes_ para esto). Además permite representar una cantidad ingente de símbolos incluyendo los famosos emojis 😎. ## Creando «strings» { #create } Para escribir una cadena de texto en Python basta con rodear los caracteres con comillas simples: ```pycon >>> 'Mi primera cadena en Python' 'Mi primera cadena en Python' ``` Para incluir _comillas dobles_ dentro de la cadena de texto no hay mayor inconveniente: ```pycon >>> 'Los llamados "strings" son secuencias de caracteres' 'Los llamados "strings" son secuencias de caracteres' ``` Para incluir _comillas simples_ dentro de la cadena de texto cambiamos las comillas exteriores a comillas dobles(1): { .annotate } 1. Otra opción es [escapar](#escape-sequences) las comillas simples: `#!python 'Los llamados \'strings\' son secuencias de caracteres'`. ```pycon >>> "Los llamados 'strings' son secuencias de caracteres" "Los llamados 'strings' son secuencias de caracteres" ``` !!! tip "Cuestión de estilo" Efectivamente, como se puede ver, las cadenas de texto en Python se pueden escribir con comillas simples o con comillas dobles. Es indiferente. **En mi caso personal prefiero usar comillas simples :fontawesome-solid-single-quote-right:**. Hagas lo que hagas... ¡haz siempre lo mismo! ### Comillas triples { #triple-quotes } Una forma alternativa de crear cadenas de texto es utilizar _comillas triples_. Su aplicación está pensada principalmente para **cadenas multilínea**: ```pycon >>> poem = """To be, or not to be, that is the question: ... Whether 'tis nobler in the mind to suffer ... The slings and arrows of outrageous fortune, ... Or to take arms against a sea of troubles""" ``` En este caso sí que se debería utilizar **comillas dobles** (triples) siguiendo las [indicaciones de la guía de estilo de Python](https://peps.python.org/pep-0008/#string-quotes): !!! quote "PEP 257" In Python, single-quoted strings and double-quoted strings are the same. This PEP does not make a recommendation for this. Pick a rule and stick to it. When a string contains single or double quote characters, however, use the other one to avoid backslashes in the string. It improves readability. ^^For triple-quoted strings, always use double quote^^ characters to be consistent with the docstring convention in PEP 257. ### Cadena vacía { #empty-string } La cadena vacía es aquella que no contiene ningún carácter. Aunque a priori no lo pueda parecer, es un recurso importante en cualquier programa (y lenguaje de programación). Su representación en Python es la siguiente: ```pycon >>> '' '' ``` ## Conversión { #cast } Podemos crear «strings» a partir de otros tipos de datos mediante la función `#!python str()`: ```pycon >>> str(True) 'True' >>> str(10) '10' >>> str(21.7) '21.7' ``` Para el caso contrario de convertir un «string» a un valor numérico, tenemos a disposición las [funciones ya vistas](numbers.md#explicit-typecast): ```pycon >>> int('10') 10 >>> float('21.7') 21.7 ``` En aquellos casos donde la cadena de texto no se pueda convertir, Python nos indicará que hay un error: ```pycon >>> float('3.1a') Traceback (most recent call last): Cell In[1], line 1 float('3.1a') ValueError: could not convert string to float: '3.1a' ``` !!! tip "Otras bases" Hay que tener en cuenta un detalle. La función `#!python int()` también admite la **base** en la que se encuentra el número. Eso significa que podemos pasar un número, por ejemplo, en **hexadecimal** (como «string») y lo podríamos convertir a su valor entero: ```pycon >>> int('FF', 16) 255 ``` ## Secuencias de escape { #escape-sequences } Python permite escapar el significado de algunos caracteres para conseguir otros resultados. Si escribimos una barra invertida `\` antes del carácter en cuestión, le otorgamos un significado especial. Quizás la secuencia de escape más conocida es `\n` que representa un ^^salto de línea^^, pero existen muchas otras: === "Salto de línea `#!python '\n'`" ```pycon >>> msg = 'Primera línea\nSegunda línea\nTercera línea' >>> print(msg) Primera línea Segunda línea Tercera línea ``` === "Tabulador `#!python '\t'`" ```pycon >>> msg = 'Valor = \t40' >>> print(msg) Valor = 40 ``` === "Comilla simple `#!python '\''`" ```pycon >>> msg = 'Necesitamos \'escapar\' la comilla simple' >>> print(msg) Necesitamos 'escapar' la comilla simple ``` === "Barra invertida `#!python '\\'`" ```pycon >>> msg = 'Capítulo \\ Sección \\ Encabezado' >>> print(msg) Capítulo \ Sección \ Encabezado ``` :material-check-all:{ .blue } Los ejemplos:material-flash: anteriores se han mostrado con el [intérprete de Python](data.md#get-value). Aún así hemos utilizado la función `#!python print()` porque nos permite ver realmente el resultado de utilizar los caracteres escapados. ### Cadenas en crudo { #raw } Hay situaciones en las que nos interesa que los caracteres especiales pierdan ese significado y poder usarlos de otra manera. Existe un modificador de cadena que proporciona Python para tratar el texto en bruto. Es el llamado «raw data» y se aplica anteponiendo una `r` a la cadena de texto. Veamos algunos ejemplos: === "«raw» con salto de línea" ```pycon >>> text = 'abc\ndef' >>> print(text) abc def >>> text = r'abc\ndef' >>> print(text) abc\ndef ``` === "«raw» con tabulador" ```pycon >>> text = 'a\tb\tc' >>> print(text) a b c >>> text = r'a\tb\tc' >>> print(text) a\tb\tc ``` !!! note "Expresiones regulares" El modificador `#!python r''` es muy utilizado para escribir [expresiones regulares](../../stdlib/text-processing/re.md). ## Más sobre `print()` { #more-about-print } Hemos estado utilizando la función `#!python print()` de manera sencilla, pero admite algunos [parámetros](https://docs.python.org/es/3/library/functions.html#print) interesantes. Veamos algunos ejemplos:material-flash:: ```pycon >>> msg1 = '¿Sabes por qué estoy acá?' >>> msg2 = 'Porque me apasiona' >>> print(msg1, msg2)#(1)! ¿Sabes por qué estoy acá? Porque me apasiona >>> print(msg1, msg2, sep='|')#(2)! ¿Sabes por qué estoy acá?|Porque me apasiona >>> print(msg2, end='!!')#(3)! Porque me apasiona!! ``` { .annotate } 1. Podemos imprimir todas las variables que queramos separándolas por comas. 2. El **separador por defecto** entre las variables es un **espacio**. Podemos cambiar el carácter que se utiliza como separador entre cadenas a través de `sep`. 3. El carácter de **final de texto** es un **salto de línea**. Podemos cambiar el carácter que se utiliza como final de texto a través de `end`. ## Leer datos desde teclado { #read-from-keyboard } Los programas se desarrollan (habitualmente) para tener una cierta interacción con el usuario. Una de las formas de interacción es solicitar la entrada de datos por teclado. Como muchos otros lenguajes de programación, Python también nos ofrece la posibilidad de leer la información introducida por teclado. Para ello se utiliza la función `#!python input()`. Veamos algunos ejemplos: ```pycon hl_lines="1 8" >>> name = input('Introduzca su nombre: ') Introduzca su nombre: Sergio >>> name 'Sergio' >>> type(name) str >>> age = input('Introduzca su edad: ')#(1)! Introduzca su edad: 41 >>> age '41' >>> type(age) str ``` { .annotate } 1. La función `#!python input()` siempre nos **devuelve un objeto de tipo cadena de texto** o `str`. Tenerlo muy en cuenta a la hora de trabajar con números, ya que debemos realizar una [conversión explícita](numbers.md#explicit-typecast). !!! warning "Advertencia" Aunque está permitido, **NUNCA** llames `input` a una variable porque destruirías la función que nos permite leer datos desde teclado. Y tampoco uses nombres derivados como `_input` o `input_` ya que **no son nombres representativos** que [identifiquen el propósito de la variable](data.md#naming-standards). !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `calc-basic` ## Operaciones con «strings» { #operations } ### Combinar cadenas { #merge } Podemos combinar dos o más cadenas de texto utilizando el operador `+`: ```pycon >>> proverb1 = 'Cuando el río suena' >>> proverb2 = 'agua lleva' >>> proverb1 + proverb2 'Cuando el río suenaagua lleva' >>> proverb1 + ', ' + proverb2#(1)! 'Cuando el río suena, agua lleva' ``` { .annotate } 1. Podemos «sumar» todas la cadenas de texto que sean necesarias. ### Repetir cadenas { #repeat } Podemos repetir dos o más cadenas de texto utilizando el operador `*`: ```pycon >>> reaction = 'Wow' >>> reaction * 4 'WowWowWowWow' ``` ### Obtener un caracter { #get-char } Los «strings» están **indexados** y cada carácter tiene su propia posición (numérica). Veamos el ejemplo:material-flash: de la cadena de texto `#!python 'Hola, Mundo'`: ![Dark image](images/strings/string-indexing-dark.svg#only-dark) ![Light image](images/strings/string-indexing-light.svg#only-light) Para acceder a cada caracter podemos hacer uso de su **índice** que, en Python, puede ser **tanto positivo como negativo**: ```pycon >>> sentence[0] 'H' >>> sentence[-1] 'o' >>> sentence[4] ',' >>> sentence[-5] 'M' ``` En caso de que intentemos acceder a un índice que no existe, obtendremos un error por _fuera de rango_: ```pycon hl_lines="5" >>> sentence[50] Traceback (most recent call last): Cell In[1], line 1 sentence[50] IndexError: string index out of range ``` Las cadenas de texto son tipos de datos [inmutables](data.md#mutability). Es por ello que no podemos modificar un carácter directamente. Veamos un ejemplo:material-flash:: ```pycon hl_lines="7" >>> song = 'Hey Jude' >>> song[4] = 'D' Traceback (most recent call last): Cell In[2], line 1 song[4] = 'D' TypeError: 'str' object does not support item assignment ``` Existen formas de modificar una cadena de texto que veremos más adelante, aunque realmente no estemos transformando el original sino creando un nuevo objeto con las modificaciones. !!! failure "Sobre las constantes" No hay que confundir las [constantes](data.md#constants) con los tipos de datos inmutables. Es por ello que las variables que almacenan cadenas de texto, a pesar de ser inmutables, no se escriben en mayúsculas. ### Trocear una cadena { #slicing } Es posible extraer «trozos» («rebanadas»)[^1] de una cadena de texto. Tenemos varias aproximaciones para ello: === "Comienzo y fin" Se indica con la sintaxis `#!python [start:end]` ![Dark image](images/strings/string-slicing-dark.svg#only-dark) ![Light image](images/strings/string-slicing-light.svg#only-light) ```pycon >>> proverb = 'Agua pasada no mueve molino' >>> proverb[5:11] 'pasada' ``` :material-check-all:{ .blue } Se llega hasta `end - 1` === "Comienzo y fin (otro paso)" El **paso** indica cuánto nos movemos en el troceado (_tamaño del salto_). El paso por defecto es 1, pero este valor se puede modificar. Se indica con la sintaxis `#!python [start:end:step]` ```pycon >>> proverb = 'Agua pasada no mueve molino' >>> proverb[5:11:2]#(1)! 'psd' ``` { .annotate } 1. paso = `2` :material-check-all:{ .blue } Se llega hasta `end - 1` === "Comienzo sin fin" Si no especificamos hasta dónde llegar, el troceado se extenderá hasta el final de la cadena de texto. Se indica con la sintaxis `#!python [start:]` ```pycon >>> proverb = 'Agua pasada no mueve molino' >>> proverb[12:] 'no mueve molino' ``` === "Fin sin comienzo" Si no especificamos desde dónde empezar, el troceado empezará por el principio de la cadena de texto. Se indica con la sintaxis `#!python [:end]` ```pycon >>> proverb = 'Agua pasada no mueve molino' >>> proverb[:11] 'Agua pasada' ``` :material-check-all:{ .blue } Se llega hasta `end - 1` === "Ni comienzo ni fin" Si no especificamos comienzo ni fin, el troceado empezará por el principio de la cadena de texto y se extendrá hasta el final de la misma. Se indica con la sintaxis `#!python [:]` ```pycon >>> proverb = 'Agua pasada no mueve molino' >>> proverb[:] 'Agua pasada no mueve molino' ``` ### Longitud de la cadena { #length } Para obtener la longitud de una cadena podemos hacer uso de `#!python len()`, una función común a prácticamente todos los tipos y estructuras de datos en Python. Veamos algunos ejemplos:material-flash:: ```pycon >>> proverb = 'Lo cortés no quita lo valiente' >>> len(proverb) 30 >>> empty = '' >>> len(empty)#(1)! 0 ``` { .annotate } 1. La cadena vacía siempre tiene longitud 0. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `half-turn` ### Pertenencia de un elemento { #in } Si queremos comprobar que una determinada subcadena se encuentra en una cadena de texto utilizamos el operador `#!python in` para ello. Se trata de una expresión que tiene como resultado un valor «booleano» verdadero o falso. Veamos algunos ejemplos:material-flash:: ```pycon >>> proverb = 'Más vale malo conocido que bueno por conocer' >>> 'malo' in proverb True >>> 'mal' in proverb#(1)! True >>> 'bueno' in proverb True >>> 'regular' in proverb False >>> '' in proverb#(2)! True ``` { .annotate } 1. El operador `#!python in` no busca «palabras», únicamente secuencias de caracteres. 2. La cadena vacía está en todas las cadenas. Habría que prestar atención al caso en el que intentamos descubrir si una subcadena **no está** en la cadena de texto: ```pycon >>> dna_sequence = 'ATGAAATTGAAATGGGA' >>> not('C' in dna_sequence)#(1)! True >>> 'C' not in dna_sequence#(2)! True ``` { .annotate } 1. Esta podría ser una primera aproximación. 2. Esta es la forma realmente [pitónica](../modularity/functions.md#pythonic). ### Limpiar cadenas { #strip } Cuando leemos datos del usuario o de cualquier fuente externa de información, es bastante probable que se incluyan en esas cadenas de texto caracteres de relleno[^2] al comienzo y al final. Python nos ofrece la posibilidad de eliminar estos caracteres u otros que no nos interesen. La función `#!python strip()` se utiliza para eliminar caracteres del principio y del final de un «string». También existen variantes de esta función para aplicarla únicamente al comienzo o únicamente al final de la cadena de texto. Supongamos que debemos procesar un fichero con números de serie de un determinado artículo. Cada línea contiene el valor que nos interesa pero se han «colado» ciertos caracteres de relleno que debemos limpiar: ```pycon >>> serial_number = '\n\t \n 48374983274832 \n\n\t \t \n' >>> serial_number.strip() '48374983274832' ``` !!! info "Valores por defecto" Si no se especifican los caracteres a eliminar, `strip()` usará por defecto cualquier combinación de _espacios en blanco_, _saltos de línea_ `\n` y _tabuladores_ `\t`. Hay dos variantes de esta función para especificar «por dónde» hacer la limpieza: === ":material-hand-pointing-right: «Left» `strip`" ```pycon >>> serial_number.lstrip() '48374983274832 \n\n\t \t \n' ``` === "«Right» `strip` :material-hand-pointing-left:" ```pycon >>> serial_number.rstrip() '\n\t \n 48374983274832' ``` También existe la posibilidad de **especificar los caracteres** que queremos borrar: ```pycon >>> serial_number.strip('\n') '\t \n 48374983274832 \n\n\t \t ' ``` !!! tip "Cadena modificada" La función `strip()` no modifica la cadena que estamos usando (_algo obvio porque los «strings» son [inmutables](data.md#mutability)_) sino que ^^devuelve una nueva cadena^^ de texto con las modificaciones pertinentes. ### Realizar búsquedas { #search } Aunque hemos visto que la forma [pitónica](../modularity/functions.md#pythonic) de saber [si una subcadena se encuentra dentro de otra](#in) es a través del operador `#!python in`, Python nos ofrece distintas alternativas para realizar búsquedas dentro de una cadena de texto. Vamos a partir de una variable que contiene un trozo de la canción [Mediterráneo](https://open.spotify.com/track/7Bewui7KtaMzROeteRitRz?si=NGwOUmwfRSuapY3JL7s1uQ) de Joan Manuel Serrat para ejemplificar las distintas opciones que tenemos: ```pycon >>> lyrics = """Quizás porque mi niñez ... Sigue jugando en tu playa ... Y escondido tras las cañas ... Duerme mi primer amor ... Llevo tu luz y tu olor ... Por dondequiera que vaya""" ``` Comprobar si una cadena de texto **empieza o termina por alguna subcadena**: ```pycon >>> lyrics.startswith('Quizás') True >>> lyrics.endswith('Final') False ``` Encontrar la **primera ocurrencia** de alguna subcadena: ```pycon >>> lyrics.find('amor') 93 >>> lyrics.index('amor') 93 ``` Tanto `find()` como `index()` devuelven el **índice** de la primera ocurrencia de la subcadena que estemos buscando, pero se diferencian en su comportamiento cuando _la subcadena buscada no existe_: ```pycon >>> lyrics.find('universo') -1 >>> lyrics.index('universo') Traceback (most recent call last): Cell In[2], line 1 lyrics.index('universo') ValueError: substring not found ``` Es posible indicar un **rango** sobre el que buscar. Para ello podemos indicar los índices de comienzo y/o fin sobre las funciones ya vistas. Por ejemplo:material-flash: utilizamos `#!python find()` para buscar la palabra «tu» en la letra de la canción anterior: ```pycon >>> lyrics = """Quizás porque mi niñez ... Sigue jugando en tu playa ... Y escondido tras las cañas ... Duerme mi primer amor ... Llevo tu luz y tu olor ... Por dondequiera que vaya""" >>> lyrics.find('tu')#(1)! 40 >>> lyrics.find('tu', 41)#(2)! 104 >>> lyrics.find('tu', 105, 200)#(3)! 113 ``` { .annotate } 1. El primer «tu» está en la posición 40. 2. Buscamos a partir de la posición 41 y encuentra el segundo «tu» en la posición 104. 3. Buscamos entre la posición 105 y la posición 200 y encuentra el tercer «tu» en la posición 113. !!! info "Por la derecha :fontawesome-solid-hand-point-right:" Django proporciona las funciones [`rfind()`](https://docs.python.org/3/library/stdtypes.html#str.rfind) y [`rindex()`](https://docs.python.org/3/library/stdtypes.html#str.rindex) que se comportan de manera análoga a las ya explicadas pero empiezan la búsqueda **por la derecha** de la cadena de texto. ### Contar ocurrencias { #count } Para contabilizar el **número de veces que aparece** una subcadena utilizamos la función `count()`: ```pycon >>> lyrics.count('tu') 3 >>> lyrics.count('tu', 41)#(1)! 2 >>> lyrics.count('tu', 105, 200)#(2)! 1 ``` { .annotate } 1. Contamos a partir de la posición 41. 2. Contamos entre la posición 105 y la 200. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `lost-word` ### Reemplazar texto { #replace } Podemos usar la función `replace()` indicando la _subcadena a reemplazar_, la _subcadena de reemplazo_ y _cuántas instancias_ se deben reemplazar. Si no se especifica este último argumento, la sustitución se hará en todas las instancias encontradas. Veamos un ejemplo:material-flash:: ```pycon >>> proverb = 'Quien mal anda mal acaba' >>> proverb.replace('mal', 'bien') 'Quien bien anda bien acaba' >>> proverb.replace('mal', 'bien', 1)#(1)! 'Quien bien anda mal acaba' ``` { .annotate } 1. Es posible indicar cuántos reemplazos llevar a cabo. ### Mayúsculas y minúsculas { #text-cases } Python nos permite realizar variaciones en los caracteres de una cadena de texto para pasarlos a mayúsculas y/o minúsculas. Veamos las distintas opciones disponibles a través del siguiente ejemplo:material-flash:: ```pycon >>> proverb = 'quien a buen árbol se arrima Buena Sombra le cobija' >>> proverb 'quien a buen árbol se arrima Buena Sombra le cobija' >>> proverb.capitalize() 'Quien a buen árbol se arrima buena sombra le cobija' >>> proverb.title() 'Quien A Buen Árbol Se Arrima Buena Sombra Le Cobija' >>> proverb.upper() 'QUIEN A BUEN ÁRBOL SE ARRIMA BUENA SOMBRA LE COBIJA' >>> proverb.lower() 'quien a buen árbol se arrima buena sombra le cobija' >>> proverb.swapcase() 'QUIEN A BUEN ÁRBOL SE ARRIMA bUENA sOMBRA LE COBIJA' ``` ### Identificando caracteres { #identify-chars } Hay veces que recibimos información textual de distintas fuentes de las que necesitamos identificar qué tipo de caracteres contienen. Para ello Python nos ofrece un grupo de funciones: === "Alfanuméricos :material-numeric-1-circle-outline: :material-format-letter-case:" Detectar si todos los caracteres son letras o números: ```pycon >>> 'R2D2'.isalnum() True >>> 'C3-PO'.isalnum() False ``` === "Alfabéticos :material-format-letter-case:" Detectar si todos los caracteres son alfabéticos: ```pycon >>> 'abc'.isalpha() True >>> 'a-b-c'.isalpha() False ``` === "Numéricos :material-numeric-1-circle-outline:" Detectar si todos los caracteres son números: ```pycon >>> '314'.isnumeric() True >>> '3.14'.isnumeric() False ``` === "Mayus/Minus :material-format-letter-case-upper:" Detectar mayúsculas/minúsculas en la cadena de texto: ```pycon >>> 'BIG'.isupper() True >>> 'small'.islower() True >>> 'First Heading'.istitle() True ``` === "Espacios :material-keyboard-space:" Detectar espacios en la cadena de texto: ```pycon >>> ' '.isspace() True >>> '\n'.isspace() True >>> '\t'.isspace() True ``` ## Interpolación de cadenas { #interpolation } En este apartado veremos cómo **interpolar** valores dentro de cadenas de texto utilizando diferentes formatos. Interpolar (en este contexto) significa **sustituir una variable por su valor** dentro de una cadena de texto. Veamos los estilos que proporciona Python para este cometido: | Nombre | Símbolo | Soportado | | --- | --- | --- | | Estilo «antiguo» | `#!python %` | :material-code-greater-than-or-equal: Python :octicons-tag-24: 2.0 | Estilo «nuevo» | `#!python .format()` | :material-code-greater-than-or-equal: Python :octicons-tag-24: 2.6 | «f-strings» | `#!python f''` | :material-code-greater-than-or-equal: Python :octicons-tag-24: 3.6 Aunque aún podemos encontrar código Python con el [estilo antiguo y el estilo nuevo en el formateo de cadenas](https://pyformat.info/), vamos a centrarnos en el análisis de los **«f-strings»** que se están muy extendidos en el desarrollo actual. ### «f-strings» { #fstrings } Los f-strings [aparecieron en Python 3.6](https://docs.python.org/es/3/whatsnew/3.6.html#new-features) y se suelen usar en código de nueva creación. Es la forma más potente –y en muchas ocasiones más eficiente– de formar cadenas de texto incluyendo valores de otras variables. La **interpolación** en cadenas de texto es un concepto que existe en la gran mayoría de lenguajes de programación y hace referencia al hecho de sustituir los nombres de variables por sus valores cuando se construye un «string». Para indicar en Python que una cadena es un «f-string» basta con precederla de una `f` e incluir las variables o expresiones a interpolar entre llaves `{...}`. Supongamos que disponemos de los datos de una persona y queremos formar una frase de bienvenida con ellos: ```pycon >>> name = 'Leia Organa' >>> age = 22 >>> role = 'líder de la Alianza Rebelde' >>> f'Me llamo {name}, tengo {age} años y soy {role}'#(1)! 'Me llamo Leia Organa, tengo 22 años y soy líder de la Alianza Rebelde' ``` { .annotate } 1. Si olvidamos poner la `f` delante de la cadena de texto, no obtendremos ningún eror, únicamente no habrá sustitución (interpolación) de variables: ```python >>> 'Me llamo {name}, tengo {age} años y soy {role}' 'Me llamo {name}, tengo {age} años y soy {role}' ``` Podría surgir la duda de **cómo incluir llaves** dentro de un «f-string», teniendo en cuenta que las llaves son símbolos especiales para la interpolación de variables. La respuesta es duplicar las llaves: ```pycon >>> x = 10 >>> f'The variable is {{ x = {x} }}' 'The variable is { x = 10 }' ``` #### Formateando cadenas { #formatting } Los «f-strings» proporcionan una gran variedad de **opciones de formateado**: ancho del texto, número de decimales, tamaño de la cifra, alineación, etc. Muchas de estas facilidades se pueden consultar en el artículo [Best of Python3.6 f-strings](https://medium.com/@NirantK/best-of-python3-6-f-strings-41f9154983e)[^3]. === "Formateando enteros" El **modificador** para formatear enteros es `d` (_entero decimal_): ```pycon >>> mount_height = 3718 >>> f'{mount_height:10d}' ' 3718' >>> f'{mount_height:010d}' '0000003718' ``` ??? tip "zfill :fontawesome-brands-creative-commons-zero:" Django proporciona la función [`zfill()`](https://docs.python.org/3/library/stdtypes.html#str.zfill) que rellena la cadena de texto (como número) con la cantidad indicada de ceros: ```pycon >>> value = '3718' >>> value.zfill(10) '0000003718' ``` === "Formateando flotantes" El **modificador** para formatear flotantes es `f` (_flotante_): ```pycon >>> PI = 3.14159265 >>> f'{PI:f}'#(1)! '3.141593' >>> f'{PI:.3f}' '3.142' >>> f'{PI:12f}' ' 3.141593' >>> f'{PI:7.2f}' ' 3.14' >>> f'{PI:07.2f}' '0003.14' >>> f'{PI:.010f}' '3.1415926500' >>> f'{PI:e}' '3.141593e+00' ``` { .annotate } 1. Por defecto se muestran **6 cifras decimales**. ??? tip "zfill :fontawesome-brands-creative-commons-zero:" Django proporciona la función [`zfill()`](https://docs.python.org/3/library/stdtypes.html#str.zfill) que rellena la cadena de texto (como número) con la cantidad indicada de ceros: ```pycon >>> PI = '3.1415926' >>> PI.zfill(10) '03.1415926' ``` === "Formateando cadenas" El **modificador** para formatear cadenas de texto es `s` (_string_): ```pycon >>> text1 = 'how' >>> text2 = 'are' >>> text3 = 'you' >>> f'{text1:<7s}|{text2:^11s}|{text3:>7s}' 'how | are | you' >>> f'{text1:-<7s}|{text2:·^11s}|{text3:->7s}' 'how----|····are····|----you' ``` === "Formateando en otras bases" El **modificador** para binario es `b`, para octal es `o` y para hexadecimal es `x`: ```pycon >>> value = 65_321 >>> f'{value:b}' '1111111100101001' >>> f'{value:o}' '177451' >>> f'{value:x}' 'ff29' ``` Por supuesto en el caso de otras bases también es posible aplicar los mismos _modificadores de ancho y de relleno_ vistos para números enteros decimales. Por ejemplo: ```pycon >>> f'{value:07x}' '000ff29' ``` Como ^^curiosidad^^, si utilizamos el modificador `X` **en mayúsculas** es como si aplicáramos (automáticamente) un [`upper()`](#text-cases) al resultado del valor _hexadecimal_: ```python >>> f'{value:07X}' '000FF29' ``` !!! note "Cambio de base" Nótese la diferencia de obtener el cambio de base con este método frente a las [funciones de cambio de base](numbers.md#bases) ya vistas previamente que añaden el prefijo de cada base `#!python 0b`, `#!python 0o` y `#!python 0x`. #### Modo «debug» { #fstring-debug } A partir de [Python 3.8](https://docs.python.org/3/whatsnew/3.8.html#f-strings-support-for-self-documenting-expressions-and-debugging), los «f-strings» permiten imprimir el nombre de la variable y su valor, como un atajo para depurar nuestro código. Para ello sólo tendremos que incluir el símbolo igual `=` después del nombre de la variable. Veamos algunos ejemplos:material-flash:: ```pycon >>> serie = 'The Simpsons' >>> imdb_rating = 8.7 >>> num_seasons = 30 >>> f'{serie=}' "serie='The Simpsons'" >>> f'{imdb_rating=}' 'imdb_rating=8.7' >>> f'{serie[4:]=}'#(1)! "serie[4:]='Simpsons'" >>> f'{imdb_rating / num_seasons=}' 'imdb_rating / num_seasons=0.29' ``` { .annotate } 1. También podemos añadir... ¡expresiones! #### Modo «representación» { #fstring-repr } Si imprimimos el valor de una variable utilizando un «f-string», obviamente veremos ese valor tal y como esperaríamos: ```pycon >>> name = 'Steven Spielberg' >>> print(f'{name}') # NO HAGAS ESTO! Usa: print(name) Steven Spielberg ``` Pero si quisiéramos ver la representación del objeto, tal y como se almacena internamente, podríamos utilizar el modificador `!r` en el «f-string»: ```pycon >>> name = 'Steven Spielberg' >>> print(f'{name!r}') 'Steven Spielberg' ``` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `fstring-format` ## Caracteres Unicode { #unicode } Los programas de ordenador deben manejar una **amplia variedad de caracteres**. Simplemente por el hecho de la internacionalización hay que mostrar mensajes en distintos idiomas (inglés, francés, japonés, español, etc.). También es posible incluir «emojis» u otros símbolos. Python utiliza el estándar **Unicode** para representar caracteres. Eso significa que tenemos acceso a una [amplia carta de caracteres](https://unicode-table.com/en/blocks/) que nos ofrece este estándar de codificación. Unicode asigna a cada carácter (al menos) dos atributos: 1. Un **código numérico** único (habitualmente se muestra en [hexadecimal](numbers.md#hex)). 2. Un **nombre** representativo. Veamos un ejemplo:material-flash: con el típico «emoji» de un cohete :rocket: (definido en [este cuadro Unicode](https://unicode-table.com/en/1F680/)). Python nos permite convertir de... === "Carácter a código :material-alphabetical-variant::material-arrow-right-thin::octicons-number-24:" Mediante la función `#!python ord()`: ```pycon >>> rocket_char = '🚀' >>> ord(rocket_char) 128640 >>> hex(ord(rocket_char))#(1)! '0x1f680' ``` { .annotate } 1. Es habitual trabajar los códigos Unicode en formato **hexadecimal**. === "Código a carácter :octicons-number-24::material-arrow-right-thin::material-alphabetical-variant:" Mediante la función `#!python chr()`: ```pycon >>> rocket_code = 0x1f680 >>> chr(rocket_code) '🚀' ``` === "Nombre a carácter :material-label-outline::material-arrow-right-thin::material-alphabetical-variant:" Mediante el modificar `#!python '\N'`: ```pycon >>> '\N{ROCKET}' '🚀' ``` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `find-unicode` ### ASCII { #ascii } En los albores de la computación los caracteres se representaban utilizando el [código ASCII](https://elcodigoascii.com.ar/). En un primer momento solo incluía letras mayúsculas y números, pero en 1967 se agregaron las letras minúsculas y algunos caracteres de control, formando así lo que se conoce como [US-ASCII](https://www.microfocus.com/documentation/enterprise-developer/ed60/ETS-help/HHSNRHOPTN0P.html), es decir los caracteres del 0 al 127. Podemos obtener algunos de los _caracteres imprimibles_ del código ASCII mediante Python: ```pycon >>> chr(48) '0' >>> chr(57) '9' >>> chr(65) 'A' >>> chr(90) 'Z' ``` ### Comparar cadenas { #compare } Cuando comparamos dos cadenas de texto lo hacemos en términos **lexicográficos**. Es decir, se van comparando los caracteres de ambas cadenas uno a uno y se va chequeando cuál está «antes». Podemos afirmar (al menos en Python) que la cadena de texto `#!python 'arca'` es menor que la cadena de texto `#!python 'arpa'`: ```pycon >>> 'arca' < 'arpa'#(1)! True ``` { .annotate } 1. Python analiza cada carácter: `#!python ord('a') #97` :material-equal-box: `#!python ord('a') #97` `#!python ord('r') #114` :material-equal-box: `#!python ord('r') #114` `#!python ord('c') #99` :material-code-less-than: `#!python ord('p') #112` :material-check-all:{ .blue } El último carácter no se analiza ya que en este punto sabemos positivamente que la primera cadena de texto es menor que la segunda. Otros ejemplos: ```pycon >>> 'a' < 'antes' True >>> 'antes' < 'después' True >>> 'después' < 'ahora' False >>> 'ahora' < 'a' False ``` Ten en cuenta que en ~~Python~~ Unicode la letras mayúsculas van antes que las minúsculas: ```pycon >>> 'A' < 'a'#(1)! True ``` { .annotate } 1. Cuestión de códigos... ```pycon >>> ord('A') 65 >>> ord('a') 97 ``` ## Ejercicios { #exercises } 1. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `format-hexcolor` 2. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `swap-name` 3. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `samba-split` 4. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `nif-digit` 5. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `n-repeat` 6. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `str-metric` 7. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `h2md` 8. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `count-sheeps` 9. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `strip1` 10. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `find-integral` 11. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `multiply-jack` 12. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `first-last-digit` [^1]: El término inglés es «slice» o «slicing». [^2]: Se suele utilizar el término inglés «padding» para referirse a estos caracteres. [^3]: Escrito por Nirant Kasliwal en Medium. ================================================ FILE: docs/core/devenv/index.md ================================================ # Entornos de desarrollo Un entorno de desarrollo es un conjunto de herramientas y recursos que facilitan la escritura, prueba y depuración de programas informáticos. Estos entornos, conocidos comúnmente como IDEs (Integrated Development Environments), integran funciones como resaltado de sintaxis, autocompletado de código, control de versiones y depuración paso a paso, lo que mejora significativamente la productividad del programador. En el caso de Python, algunos de los entornos más populares incluyen PyCharm, Visual Studio Code, Thonny y Jupyter Notebook, cada uno con características específicas que se adaptan tanto a principiantes como a desarrolladores avanzados. Elegir un buen entorno de desarrollo puede hacer la experiencia de programación más fluida, intuitiva y eficiente. ================================================ FILE: docs/core/devenv/real-context.md ================================================ --- icon: octicons/rocket-16 tags: - Fundamentos del lenguaje - Entornos de desarrollo - Contexto real --- # Contexto real { #real-context } ![Banner](images/real-context/banner.jpg) /// caption Imagen generada con Inteligencia Artificial /// Hemos visto que [Thonny](thonny.md) es una herramienta especialmente diseñada para el aprendizaje de Python, integrando diferentes módulos que facilitan su gestión. Si bien lo podemos utilizar para un desarrollo más «serio», se suele recurrir a un flujo de trabajo algo diferente en **contextos más reales**. ## Python { #python } La forma más habitual de instalar Python (junto con sus librerías) es descargarlo e instalarlo desde su página oficial: === ":fontawesome-brands-windows: Windows" [Descargar Python para Windows](https://www.python.org/downloads/windows/) !!! info "Ayuda" [Tutorial para instalar Python en Windows](https://www.freecodecamp.org/news/how-to-install-python-in-windows-operating-system/) === ":simple-apple: MacOS" [Descargar Python para MacOS](https://www.python.org/downloads/macos/) === ":simple-linux: Linux" [Descargar Python para Linux](https://www.python.org/downloads/linux/) ### Anaconda { #anaconda } Otra de las alternativas para disponer de Python en nuestro sistema y que además es muy utilizada, es **Anaconda**. Se trata de un _conjunto de herramientas_, orientadas en principio a la _ciencia de datos_, pero que podemos utilizar para desarrollo general en Python (junto con otras librerías adicionales). Existen versiones de pago, pero también se ofrece una distribución «open-source» y gratuita. Se puede [descargar](https://www.anaconda.com/download) desde su página web. Anaconda trae por defecto una gran cantidad de [paquetes](https://docs.anaconda.com/anaconda/pkg-docs/) Python en su distribución. !!! abstract "Miniconda" [Miniconda](https://docs.anaconda.com/miniconda/) es un instalador «mínimo» que viene con Python y un pequeño número de paquetes útiles. ## Gestión de paquetes { #package-managers } La instalación limpia[^1] de Python ya ofrece de por sí muchos paquetes y módulos que vienen por defecto. Es lo que se llama la [librería estándar](https://docs.python.org/es/3.12/tutorial/stdlib.html). Pero una de las características más destacables de Python es su inmenso «ecosistema» de paquetes disponibles en el [Python Package Index (PyPI)](https://pypi.org/). Para gestionar los paquetes que tenemos en nuestro sistema se utiliza la herramienta [pip](https://pip.pypa.io/en/stable/), una utilidad que también se incluye en la instalación (por defecto) de Python. Con ella podremos instalar, desinstalar y actualizar paquetes, según nuestras necesidades. A continuación se muestran las instrucciones que usaríamos para cada una de estas operaciones: === ":octicons-diff-added-24: Instalar" ```console $ pip install pytest # pytest es sólo un ejemplo ``` En el caso de querer **instalar dependencias desde un fichero**[^2] tendríamos que ejecutar: ```console $ pip install -r requirements.txt ``` !!! tip "Caché" Utiliza el siguiente comando si quieres deshabilitar la caché[^3] a la hora de instalar paquetes: ```console $ pip install --no-cache-dir pytest ``` === ":octicons-diff-removed-24: Desinstalar" ```console $ pip uninstall pytest ``` === ":material-update: Actualizar" ```console $ pip install -U pytest ``` ## Entornos virtuales { #virtualenvs } Cuando trabajamos en distintos proyectos, no todos ellos requieren los mismos paquetes ni siquiera la misma versión de Python. La gestión de estas situaciones no es sencilla si únicamente instalamos paquetes y manejamos configuraciones a nivel global (a nivel del sistema). Es por ello que surge el concepto de **entornos virtuales**. Como su propio nombre indica se trata de crear distintos entornos en función de las necesidades de cada proyecto, lo que nos permite establecer qué versión de Python usaremos y qué paquetes instalaremos dentro del mismo. La manera ~~más sencilla~~ oficial de [crear un entorno virtual](https://docs.python.org/es/3/library/venv.html#creating-virtual-environments) es la siguiente: ```console $ cd myproject #(1)! $ python -m venv --prompt myproject .venv #(2)! $ source .venv/bin/activate #(3)! ``` 1. Entrar en la carpeta de nuestro proyecto. 2. Este comando crea una carpeta `.venv`[^4] con los ficheros que constituyen el entorno virtual. 3. Activar el entorno virtual. A partir de aquí todo lo que se instale quedará dentro del entorno virtual. !!! note "VIRTUAL_ENV" Cuando activamos el entorno virtual se «crea» una variable de entorno `VIRTUAL_ENV` que contiene la ruta al entorno virtual. _Esto es muy útil para tomar decisiones en función de si está activo o no el entorno virtual actual_. ### pyenv { #pyenv } **pyenv** es una herramienta que permite instalar/cambiar fácilmente entre múltiples versiones de Python en un mismo sistema. Su instalación engloba distintos pasos y está bien explicada en la [página del proyecto](https://github.com/pyenv/pyenv#installation). Veamos algunas de sus ^^funcionalidades^^ más interesantes:
- Listar las versiones instaladas de Python: --- ```console $ pyenv versions system 3.12.0 * 3.12.5 (set by /home/sdelquin/.pyenv/version) ``` Podemos comprobar la versión de Python: ```console $ python --version Python 3.12.5 ``` - Cambiar la versión **global** de Python: --- ```console $ pyenv global 3.12.0 ``` Podemos comprobar la versión de Python: ```console $ python --version Python 3.12.0 ``` - Instalar una nueva versión de Python: --- ```console $ pyenv install 3.12.6 ``` Comprobamos de nuevo las versiones: ```console $ pyenv versions system 3.12.0 * 3.12.5 (set by /home/sdelquin/.pyenv/version) 3.12.6 ``` - Activar una versión **local** de Python: --- ```console $ cd myproject $ pyenv local 3.12.6 $ python --version Python 3.12.6 ``` Se crea un fichero «oculto»: ```console $ ls -a . .. .python-version ```
!!! info "pyenv-virtualenv" Existe un «plugin» para _pyenv_ denominado [pyenv-virtualenv](https://github.com/pyenv/pyenv-virtualenv) que permite manejar entornos virtuales utilizando las ventajas que proporciona _pyenv_. ### uv { #uv } **uv** es una herramienta para gestionar paquetería y proyectos de Python. Es [extremadamente rápida](https://github.com/astral-sh/uv/blob/main/BENCHMARKS.md) y está escrita en lenguaje [Rust](https://www.rust-lang.org/es). Proporciona métodos de **instalación** muy sencillos: - [Instalación para macOS :simple-apple: y Linux :simple-linux:](https://docs.astral.sh/uv/getting-started/installation/#__tabbed_1_1). - [Instalación para Windows :fontawesome-brands-windows:](https://docs.astral.sh/uv/getting-started/installation/#__tabbed_1_2). La [documentación](https://docs.astral.sh/uv/) está muy bien conseguida. A continuación vamos a mostrar algunas de sus ^^funcionalidades^^ más interesantes:
- [Instalar](https://docs.astral.sh/uv/concepts/python-versions/#installing-a-python-version) una versión de Python: --- ```console $ uv python install # latest $ uv python install 3.11 ``` La versión de Python que instala uv no está disponible a nivel global del sistema. Se utiliza para crear proyectos o entornos virtuales. - [Listar](https://docs.astral.sh/uv/concepts/python-versions/#viewing-available-python-versions) las versiones disponibles de Python: --- ```console $ uv python list ``` Este comando no sólo muestra las versiones de Python instaladas con uv sino también aquellas instaladas a nivel de sistema. - [Crear un proyecto](https://docs.astral.sh/uv/guides/projects/#creating-a-new-project) Python: --- ```console $ uv init --bare ``` Este comando crea la estructura necesaria de ficheros para que se pueda mantener el estado del proyecto de manera ^^local^^. El fichero principal de esta configuración es `pyproject.toml`. - [Añadir dependencias](https://docs.astral.sh/uv/guides/projects/#managing-dependencies) a un proyecto: --- ```console $ uv add pytest # ejemplo ``` Este comando creará automáticamente un entorno virtual `.venv` dentro de la carpeta del proyecto si aún no está creado, instalará el paquete `pytest` y actualizará las dependencias en `pyproject.toml`. - Crear un [entorno virtual](https://docs.astral.sh/uv/pip/environments/): --- ```console $ uv venv ``` Este comando crea un entorno virtual en la carpeta `.venv` - [Lanzar un programa](https://docs.astral.sh/uv/guides/scripts/) Python: --- ```console $ uv run python example.py ``` Este comando permite ejecutar un «script» Python directamente desde uv. En el caso de que el «script» tuviera dependencias externas, podemos usar el siguiente comando: ```console $ uv run --with pytest python example.py ```
## Editores { #editors } Existen multitud de editores en el mercado que nos pueden servir perfectamente para escribir código Python. Algunos de ellos incorporan funcionalidades extra y otros simplemente nos permiten editar ficheros. Cabe destacar aquí el concepto de **Entorno de Desarrollo Integrado**, más conocido por sus siglas en inglés **IDE**. Se trata de una aplicación que proporciona servicios integrales para el desarrollo de software. === "Editores/IDEs con soporte Python" - [Vim :simple-vim:](https://www.vim.org/) - [Emacs :simple-gnuemacs:](https://www.gnu.org/software/emacs/) - [Sublime Text :simple-sublimetext:](https://www.sublimetext.com/) - [Eclipse :simple-eclipseide:](https://www.eclipse.org/) :material-plus: [PyDev](https://www.pydev.org/) - [IntelliJ IDEA :simple-intellijidea:](https://www.jetbrains.com/help/idea/getting-started.html) :material-plus: [Python Plugin](https://www.jetbrains.com/help/idea/plugin-overview.html) - [Visual Studio :material-microsoft-visual-studio:](https://visualstudio.microsoft.com/es/vs/) :material-plus: [Python Tools](https://visualstudio.microsoft.com/es/vs/features/python/) - [Zed :simple-zedindustries:](https://zed.dev/) :material-plus: [Python Support](https://zed.dev/docs/languages/python) - [Visual Studio Code :material-microsoft-visual-studio-code:](https://code.visualstudio.com/) :material-plus: [Python Extension](https://marketplace.visualstudio.com/items?itemName=ms-python.python) === "Editores/IDEs específicos para Python" - [PyCharm :simple-pycharm:](https://www.jetbrains.com/pycharm/) - [Spyder :simple-spyderide:](https://www.spyder-ide.org/) - [Thonny](https://thonny.org/) - [PyDev](https://www.pydev.org/) - [Wing](https://wingware.com/) Cada editor tiene sus características (ventajas e inconvenientes). Supongo que la preferencia por alguno de ellos estará en base a la experiencia y a las necesidades que surjan. La parte buena es que hay diversidad de opciones para elegir. ## Plataformas { #platforms } ### Jupyter { #jupyter } [Jupyter :simple-jupyter:](https://jupyter.org/) es un proyecto «open-source» que permite crear y compartir documentos que contienen código, ecuaciones, visualizaciones y texto narrativo. Podemos utilizarlo para propósito general aunque **suele estar más enfocado a ciencia de datos**: limpieza y transformación de datos, simulación numérica, modelado estadístico, visualización o «machine-learning»[^5]. Podemos verlo como un intérprete de Python (contiene un «kernel»[^6] que permite ejecutar código) con la capacidad de incluir documentación en formato [Markdown :material-language-markdown-outline:](https://markdown.es/) lo que potencia sus funcionalidades y lo hace adecuado para preparar cualquier tipo de material vinculado con lenguajes de programación. !!! example "Kernels" Aunque el uso de Jupyter está más extendido en el mundo Python, existen [muchos otros «kernels»](https://github.com/jupyter/jupyter/wiki/Jupyter-kernels) con los que podemos trabajar. ### repl.it { #replit } [repl.it :simple-replit:](https://replit.com/) es un **servicio web que ofrece un entorno de desarrollo integrado** para programar en más de 50 lenguajes (Python incluido). Permite trabajo colaborativo y dispone de [una capa gratuita](https://replit.com/pricing). Se requiere una cuenta en el sistema para utilizarlo. El hecho de no requerir instalación ni configuración previa lo hace atractivo en determinados escenarios.
![Replit](images/real-context/replit.png)
Interfaz de repl.it para Python
En su versión gratuita[^7] («Starter») repl.it ofrece: - 2Gb de almacenamiento en disco. - 2Gb de memoria RAM. - 10 aplicaciones (proyectos) gratuitos. - Python 3.11. - Hasta 3 repositorios públicos. - Explorador (y subida) de ficheros. - Gestor de paquetes integrado. - Integración con GitHub. - Gestión de secretos (datos sensibles). - Bases de datos clave-valor ya integrada. - Acceso (limitado) al sistema operativo y sistema de archivos. ### WSL { #wsl } Si estamos trabajando en un sistema **Windows** (versión 10/11/...) es posible que nos encontremos más cómodos usando una terminal tipo «Linux», entre otras cosas para poder usar con facilidad las herramientas vistas en esta sección y preparar el entorno de desarrollo Python. Durante mucho tiempo esto fue difícil de conseguir hasta que Microsoft ofreció WSL. [WSL](https://learn.microsoft.com/es-es/windows/wsl/) nos proporciona una consola con entorno Linux que podemos utilizar en nuestro sistema operativo Windows sin necesidad de instalar una máquina virtual o crear una partición para un Linux nativo. Es importante saber también que existen [dos versiones de WSL](https://learn.microsoft.com/es-es/windows/wsl/compare-versions) hoy en día: WSL y WSL2. La segunda tiene mejor rendimiento y se adhiere más al comportamiento de un Linux nativo. La instalación de WSL tendría que ser tan fácil como :material-powershell:`#!console wsl --install` pero quizás deberías echar un vistazo a la [documentación](https://learn.microsoft.com/es-es/windows/wsl/install) por si hay algo que no vaya bien... [^1]: También llamada «vanilla installation» ya que es la que viene por defecto y en la que no se realiza ninguna personalización. [^2]: Como regla general los proyectos hechos en Python suelen tener un fichero `requirements.txt` con las dependencias del proyecto. Un paquete por cada línea con la opción de fijar su versión. [^3]: La caché de pip es un almacenamiento temporal que acelera la instalación de paquetes. [^4]: Es una **convención** llamar `.venv` al directorio/carpeta que contiene el entorno virtual Python. [^5]: Término inglés utilizado para hacer referencia a algoritmos de aprendizaje automático. [^6]: Proceso específico para un lenguaje de programación que ejecuta instrucciones y actúa como interfaz de entrada/salida. [^7]: Información disponible a la fecha de escritura de este documento. Puede no ser correcta a la fecha de lectura del mismo. ================================================ FILE: docs/core/devenv/thonny.md ================================================ --- icon: material/baby-carriage tags: - Fundamentos del lenguaje - Entornos de desarrollo - Thonny --- # Thonny { #thonny } ![Banner](images/thonny/banner.jpg) /// caption Imagen generada con Inteligencia Artificial /// [Thonny](https://thonny.org/) es un programa muy interesante para empezar a aprender Python porque ofrece un entorno amigable en el que sólo te debes preocupar por escribir código y mejorar tus detrezas en Python. El programa además integra tres de las herramientas fundamentales para trabajar en programación: **intérprete**, **editor** y **depurador**. Cuando vamos a trabajar con Python debemos tener instalado, como mínimo, un [intérprete](../introduction/machine.md#compilers) del lenguaje (para otros lenguajes sería un _compilador_). El **intérprete** nos permitirá ejecutar nuestro código para obtener los resultados deseados. La idea del intéprete es lanzar instrucciones «sueltas» para probar determinados aspectos. Pero normalmente queremos ir un poco más allá y poder escribir programas algo más largos, por lo que también necesitaremos un **editor**. Un editor es un programa que nos permite crear ficheros de código (en nuestro caso con extensión `*.py`), que luego son ejecutados por el intérprete. Hay otra herramienta interesante dentro del entorno de desarrollo que sería el **depurador**. Lo podemos encontrar habitualmente en la bibliografía por su nombre inglés «debugger». Es el módulo que nos permite ejecutar paso a paso nuestro código y visualizar qué está ocurriendo en cada momento. Se suele usar normalmente para encontrar fallos («bugs») en nuestros programas y poder solucionarlos («debug & fix»). Cuando nos encontramos con un programa que proporciona estas funciones (e incluso otras adicionales) para el trabajo de programación, nos referimos a él como un _Entorno Integrado de Desarrollo_, conocido popularmente por sus siglas en inglés IDE. Thonny es un IDE gratuito, sencillo y apto para principiantes. ## Instalación { #installation } Para instalar Thonny debemos [acceder a su web](https://thonny.org/) y descargar la aplicación para nuestro sistema operativo. La ventaja es que está disponible tanto para **Windows**, **MacOS** y **Linux**. Una vez descargado el fichero lo ejecutamos y seguimos su instalación paso por paso. Una vez terminada la instalación ya podemos lanzar la aplicación que se verá parecida a la siguiente imagen: ![Thonny empty](images/thonny/thonny-empty.png) ///caption Aspecto de Thonny una vez arrancado /// !!! tip "Aspecto" Es posible que el aspecto del programa varíe ligeramente según el sistema operativo, configuración de escritorio, versión utilizada o idioma (en mi caso está en inglés), pero a efectos de funcionamiento no hay diferencia. Podemos observar que la pantalla está dividida en **3 paneles**: - ^^Panel principal^^ que contiene el **editor** e incluye la etiqueta `` donde escribiremos nuestro código fuente Python. - ^^Panel inferior^^ con la etiqueta «Shell» que contiene el **intérprete** de Python. En el momento de la escritura del presente documento, Thonny incluye la versión de Python 3.10. - ^^Panel derecho^^ que contiene el **depurador**. Más concretamente se trata de la ventana de variables donde podemos inspeccionar el valor de las mismas. !!! warning "Versión de Python" Las actualizaciones de Thonny no están «alineadas» con las últimas versiones de Python, por lo que es probable que no dispongas de la última versión estable de Python en Thonny. En cualquier caso, siempre se podrá configurar el editor para utilizar una instalación personalizada de Python más actualizada. ## Intérprete { #interpreter } El intérprete de Python (por lo general) se identifica claramente porque posee un **prompt**(1)con tres angulos hacia la derecha `#!pycon >>>`. En Thonny lo podemos encontrar en el panel inferior, pero se debe tener en cuenta que el intérprete de Python es una herramienta autocontenida y que la podemos ejecutar desde el símbolo del sistema o la terminal: { .annotate } 1. Término inglés que se refiere al símbolo que precede la línea de comandos. ```console $ python Python 3.12.5 (main, Aug 14 2024, 04:32:18) [Clang 18.1.8 ] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> ``` Para hacer una prueba inicial del intérprete vamos a retomar el primer programa que se suele hacer. Es el llamado [«Hello, World»](../introduction/machine.md/#assembly). Para ello escribimos lo siguiente en el intérprete y pulsamos la tecla ++enter++: ```pycon >>> print('Hello, World') Hello, World ``` Lo que hemos hecho es indicarle a Python que ejecute como **entrada** la instrucción `#!python print('Hello, World')`. La **salida** es el texto `Hello, World` que lo vemos en la siguiente línea (ya sin el prompt `#!pycon >>>`). ## Editor { #editor } Ahora vamos a realizar la misma operación, pero en vez de ejecutar la instrucción directamente en el intérprete, vamos a crear un fichero y guardarlo con la sentencia que nos interesa. Para ello escribimos `#!python print('Hello, World')` en el panel de edición (_superior_) y luego guardamos el archivo con el nombre `helloworld.py`[^1]: ![Thonny save](images/thonny/thonny-save.png) !!! info "Extensión .py" Los ficheros que contienen programas hechos en Python siempre deben tener la extensión `.py` Ahora ya podemos ejecutar nuestro fichero `helloworld.py`. Para ello pulsamos el botón verde con triángulo blanco :octicons-triangle-right-24: (en la barra de herramientas) o bien damos a la tecla ++f5++. Veremos que en el panel de «Shell» nos aparece la salida esperada. Lo que está pasando «entre bambalinas» es que el intérprete de Python está recibiendo como entrada el fichero que hemos creado; lo ejecuta y devuelve la salida para que Thonny nos lo muestre en el panel correspondiente. ## Depurador { #debugger } Nos falta por probar el depurador o «debugger». Aunque su funcionamiento va mucho más allá de lo que vemos aquí, nos vamos a quedar de momento con la posibilidad de inspeccionar variables de nuestro programa. Desafortunadamente `helloworld.py` es muy simple y ni siquiera contiene variables, pero podemos hacer una pequeña modificación al programa para incorporarlas: ```python linenums="1" msg = 'Hello, World' print(msg) ``` Aunque [ya lo veremos en profundidad](../datatypes/data.md#variables), lo que hemos hecho es añadir una variable `#!python msg` en la ^^línea 1^^ para luego utilizarla al mostrar por pantalla su contenido (^^línea 2^^). Si ahora volvemos a ejecutar nuestro programa veremos que en el panel de variables nos aparece la siguiente información: | Name | Value | | -------------- | ------------------------- | | `#!python msg` | `#!python 'Hello, World'` | También existe la posibilidad, a través del depurador, de ir ejecutando nuestro programa **paso a paso**. Para ello basta con pulsar en el botón que tiene un insecto :octicons-bug-24:. Ahí comienza la sesión de depuración y podemos avanzar instrucción por instrucción usando la tecla ++f7++: ![Thonny debug](images/thonny/thonny-debug.png) [^1]: La carpeta donde se guarden los archivos de código no es crítico para su ejecución, pero sí es importante mantener un orden y una organización para tener localizados nuestros ficheros y proyectos. ================================================ FILE: docs/core/devenv/vscode.md ================================================ --- icon: material/microsoft-visual-studio-code tags: - Fundamentos del lenguaje - Entornos de desarrollo - Visual Studio Code --- # Visual Studio Code { #vscode } ![Banner](images/vscode/banner.jpg) /// caption Imagen generada con Inteligencia Artificial /// [Visual Studio Code](https://code.visualstudio.com/) (también conocido por _VSCode_) es un entorno de desarrollo integrado IDE gratuito y de código abierto desarrollado por **Microsoft** :material-microsoft: que ha ganado mucha relevancia en los últimos años. Permite trabajar fácilmente con multitud de lenguajes de programación y dispone de una gran cantidad de extensiones. ## Instalación { #installation } VSCode está disponible para distintos sistemas operativos con paquetes autoinstalables que se pueden descargar desde [este enlace](https://code.visualstudio.com/download). ## Extensiones { #extensions } VSCode proporciona muchas extensiones que facilitan la escritura de código **Python :material-language-python:**{.green}. Personalmente recomiendo las siguientes: - [Python](https://marketplace.visualstudio.com/items?itemName=ms-python.python) → Soporte para el lenguaje Python con múltiples características. - [Ruff](https://marketplace.visualstudio.com/items?itemName=charliermarsh.ruff) → Linter[^1] y formateador de código para Python (extremadamente rápido): [astral.sh/ruff](https://astral.sh/ruff). - [Ty](https://marketplace.visualstudio.com/items?itemName=astral-sh.ty) → Servidor de lenguaje + Chequeador de tipos para Python: [astra.sh/ty](https://docs.astral.sh/ty/). ### Ficheros de configuración { #extensions-configuration } A continuación se muestran los ficheros de configuración _que yo utilizo_ para estas extensiones. Por supuesto, cada persona puede personalizarlos a su gusto: === "VSCode" ```yaml title="settings.json" { "python.languageServer": "None",#(1)! "python.analysis.ignore": ["*"],#(2)! "[python]": { "editor.formatOnSave": true,#(3)! "editor.defaultFormatter": "charliermarsh.ruff",#(4)! "editor.codeActionsOnSave": {#(5)! "source.organizeImports": "explicit", "source.fixAll": "explicit", }, }, } ``` { .annotate } 1. Deshabilitamos el servidor de lenguaje de Python que viene por defecto en la extensión oficial de Microsoft para Python para que no interfiera con **ty**. 2. Deshabilitamos el análisis de código que viene por defecto en la extensión oficial de Microsoft para Python para que no interfiera con **ruff**. 3. Habilitamos el formateo automático al guardar. 4. Indicamos que el formateador por defecto para Python es **ruff**. 5. Indicamos que al guardar se apliquen las acciones de organizar «imports» y arreglar todo lo posible. Ubicación del fichero de configuración de VSCode: === ":fontawesome-brands-windows: Windows" `%APPDATA%\Code\User\settings.json` === ":simple-apple: MacOS" `~/Library/Application Support/Code/User/settings.json` === ":simple-linux: Linux" `~/.config/Code/User/settings.json` === "Ruff" ```toml title="ruff.toml" line-length = 100#(1)! [lint] extend-select = ["Q", "ARG001"]#(2)! [lint.flake8-quotes] inline-quotes = "single"#(3)! [format] quote-style = "single"#(4)! [lint.flake8-unused-arguments] ignore-variadic-names = true#(5)! ``` { .annotate } 1. [https://docs.astral.sh/ruff/settings/#line-length](https://docs.astral.sh/ruff/settings/#line-length) 2. [https://docs.astral.sh/ruff/settings/#lint_extend-select](https://docs.astral.sh/ruff/settings/#lint_extend-select) 3. [https://docs.astral.sh/ruff/settings/#lint_flake8-quotes_inline-quotes](https://docs.astral.sh/ruff/settings/#lint_flake8-quotes_inline-quotes) 4. [https://docs.astral.sh/ruff/settings/#format_quote-style](https://docs.astral.sh/ruff/settings/#format_quote-style) 5. [https://docs.astral.sh/ruff/settings/#lint_flake8-unused-arguments_ignore-variadic-names](https://docs.astral.sh/ruff/settings/#lint_flake8-unused-arguments_ignore-variadic-names) Ubicación del fichero de configuración de Ruff: === ":fontawesome-brands-windows: Windows" `%APPDATA%\ruff\ruff.toml` === ":simple-apple: MacOS" `~/.config/ruff/ruff.toml` === ":simple-linux: Linux" `~/.config/ruff/ruff.toml` === "Ty" ```toml title="ty.toml" [rules] unresolved-attribute = "ignore"#(1)! invalid-parameter-default = "ignore"#(2)! possibly-missing-attribute = "ignore"#(3)! ``` { .annotate } 1. [https://docs.astral.sh/ty/reference/rules/#unresolved-attribute](https://docs.astral.sh/ty/reference/rules/#unresolved-attribute) 2. [https://docs.astral.sh/ty/reference/rules/#invalid-parameter-default](https://docs.astral.sh/ty/reference/rules/#invalid-parameter-default) 3. [https://docs.astral.sh/ty/reference/rules/#possibly-missing-attribute](https://docs.astral.sh/ty/reference/rules/#possibly-missing-attribute) Ubicación del fichero de configuración de Ty: === ":fontawesome-brands-windows: Windows" `%APPDATA%\ty\ty.toml` === ":simple-apple: MacOS" `~/.config/ty/ty.toml` === ":simple-linux: Linux" `~/.config/ty/ty.toml` ## Atajos de teclado { #shortcuts } Conocer los atajos de teclado de tu editor favorito es fundamental para mejorar el flujo de trabajo y ser más productivo. Veamos los principales atajos de teclado[^2] de Visual Studio Code: === "Ajustes generales" | Acción | Atajo | | --- | --- | | Abrir paleta de comandos | ++ctrl+shift+p++ | | Abrir archivo | ++ctrl+p++ | | Nueva ventana | ++ctrl+shift+n++ | | Cerrar ventana | ++ctrl+shift+w++ | === "Usabilidad" | Acción | Atajo | | --- | --- | | Crear un nuevo archivo | ++ctrl+n++ | | Abrir archivo | ++ctrl+o++ | | Guardar archivo | ++ctrl+s++ | | Cerrar | ++ctrl+f4++ | | Panel de problemas | ++ctrl+shift+m++ | === "Edición básica" | Acción | Atajo | | --- | --- | | Cortar línea | ++ctrl+x++ | | Copiar línea | ++ctrl+c++ | | Borrar línea | ++ctrl+shift+k++ | | Insertar línea debajo | ++enter++ | | Insertar línea encima | ++ctrl+shift+enter++ | | Buscar en archivo abierto | ++ctrl+f++ | | Reemplazar | ++ctrl+h++ | | Línea de comentario | ++ctrl+shift+7++ | | Bloque de comentario | ++shift+alt+a++ | | Salto de línea | ++alt+z++ | | Tabular línea | ++tab++ | | Destabular línea | ++shift+tab++ | | Renombrar símbolo | ++f2++ | === "Pantalla" | Acción | Atajo | | --- | --- | | Mostrar barra lateral | ++ctrl+b++ | | Abrir debug | ++ctrl+shift+d++ | | Panel de salida | ++ctrl+shift+u++ | | Control de source | ++ctrl+shift+g++ | | Extensiones | ++ctrl+shift+x++ | !!! tip "macOS" En **macOS :material-apple:** sustituye ++ctrl++ por ++command++ ## Depurando código { #debugging } La **depuración de programas** es el proceso de **identificar y corregir errores de programación**.​ Es conocido también por el término inglés «debugging», cuyo significado es eliminación de bugs (bichos), manera en que se conoce informalmente a los errores de programación. Existen varias herramientas de depuración (o _debuggers_). Algunas de ellas en modo texto (terminal) y otras con entorno gráfico (ventanas): - La herramienta más extendida en el mundo Python para **depurar en modo texto** es el módulo [pdb](https://docs.python.org/3/library/pdb.html) (The Python Debugger). Viene incluido en la instalación base de Python y es realmente potente. - Aunque existen varias herramientas para **depurar en entorno gráfico** nos vamos a centrar en **Visual Studio Code**. Lo primero será abrir el fichero `fibonacci.py` (como ejemplo:material-flash:) sobre que el que vamos a trabajar: ![VSCode Debug Open](images/vscode/vscode-debug-open.png) ### Punto de ruptura { #breakpoint } A continuación pondremos un **punto de ruptura** (también llamado «breakpoint»). Esto implica que la ejecución se pare en ese punto que viene indicado por un punto rojo :octicons-dot-fill-16:{ .red }. Para ponerlo nos tenemos que acercar a la columna que hay a la izquierda del número de línea y hacer clic. En este ejemplo ponemos un punto de ruptura en la ^^línea 10^^: ![VSCode Debug Breakpoint](images/vscode/vscode-debug-breakpoint.png) ///caption Punto de ruptura en VSCode /// También es posible añadir **puntos de ruptura condicionales** pulsando con el botón derecho y luego «Add Conditional Breakpoint»: ![VSCode Debug conditional Breakpoint](images/vscode/vscode-debug-cbreakpoint.png) ///caption Condiciones para punto de ruptura en VSCode /// ### Lanzar la depuración { #launch-debug } Ahora ya podemos lanzar la depuración pulsando la tecla ++f5++. Nos aparecerá el siguiente mensaje en el que dejaremos la opción por defecto «Archivo de Python» y pulsamos ++enter++: ![VSCode Debug Config](images/vscode/vscode-debug-config.png) ///caption Configuración de depuración en VSCode /// Ahora ya se inicia el «modo depuración» y veremos una pantalla similar a la siguiente: ![VSCode Debug Zones](images/vscode/vscode-debug-zones.png) ///caption Paneles de depuración en VSCode /// Zonas de la interfaz en modo depuración: 1. Código con barra en amarillo que indica la próxima línea que se va a ejecutar. 2. Visualización automática de valores de variables. 3. Visualización personalizada de valores de variables (o expresiones). 4. Salida de la terminal. 5. Barra de herramientas para depuración. ### Controles para depuración { #debug-controls } Veamos con mayor detalle la **barra de herramientas** para depuración: ![VSCode Debug Toolbar](images/vscode/vscode-debug-toolbar.png) | Acción | Atajo | Significado | | ------------- | ----------------- | ---------------------------------------------------------------------------------------------- | | **Continue** | ++f5++ | Continuar la ejecución del programa hasta el próximo punto de ruptura o hasta su finalización. | | **Step over** | ++f10++ | Ejecutar la siguiente instrucción del programa. | | **Step into** | ++f11++ | Ejecutar la siguiente instrucción del programa entrando en un contexto inferior. | | **Step out** | ++shift+f11++ | Ejecutar la siguiente instrucción del programa saliendo a un contexto superior. | | **Restart** | ++ctrl+shift+f5++ | Reiniciar la depuración del programa. | | **Stop** | ++shift+f5++ | Detener la depuración del programa. | ### Seguimiento de variables { #debug-variables } Como hemos indicado previamente, la zona «VARIABLES» ya nos informa automáticamente de los valores de las variables que tengamos en el contexto actual de ejecución: ![VSCode Debug Variables](images/vscode/vscode-debug-variables.png) Pero también es posible añadir manualmente el seguimiento de otras variables o expresiones personalizadas desde la zona «WATCH»: ![VSCode Debug Watch](images/vscode/vscode-debug-watch.png) [^1]: Un «linter» es una herramienta software que permite detectar errores en el código previo a su ejecución. [^2]: Fuente: [Gastón Danielsen](https://dev.to/gastondanielsen/atajos-de-teclado-shortcuts-en-vscode-430a). ================================================ FILE: docs/core/index.md ================================================ --- icon: material/cog --- # Fundamentos del lenguaje Los fundamentos del lenguaje constituyen la base sobre la cual se construye cualquier programa en Python. Antes de abordar conceptos más avanzados, es esencial comprender cómo se estructura un programa, qué reglas sigue la sintaxis del lenguaje, y cómo se declaran y utilizan elementos básicos como variables, operadores, comentarios y bloques de código. Estos fundamentos permiten al programador comunicarse correctamente con la computadora y sentar las bases para desarrollar lógica más compleja. En este bloque, exploraremos los aspectos esenciales del lenguaje Python, proporcionando el conocimiento necesario para empezar a escribir código claro y funcional desde el inicio. ================================================ FILE: docs/core/introduction/history.md ================================================ --- icon: octicons/git-commit-16 tags: - Fundamentos del lenguaje - Introducción - Algo de historia --- # Algo de historia { #brief-history } ![Banner](images/history/banner.jpg) /// caption Imagen generada con Inteligencia Artificial /// La historia de la programación está relacionada directamente con la aparición de los computadores, que ya desde el siglo XV tuvo sus inicios con la construcción de una máquina que realizaba operaciones básicas y raíces cuadradas ([Gottfried Wilheml von Leibniz](https://es.wikipedia.org/wiki/Gottfried_Leibniz)); aunque en realidad la primera gran influencia hacia la creación de los computadores fue la máquina diferencial para el cálculo de polinomios, proyecto no concluido de [Charles Babbage](https://es.wikipedia.org/wiki/Charles_Babbage) (1793-1871) con el apoyo de [Lady Ada Countess of Lovelace](https://es.wikipedia.org/wiki/Ada_Lovelace) (1815-1852), primera persona que incursionó en la programación y de quien proviene el nombre del lenguaje de programación [ADA]() creado por el DoD en la década de 1970. ## Hitos de la computación { #computing-milestones } La siguiente tabla es un ~~resumen~~ _granito de arena_ de los principales hitos en la historia de la computación: | Año :material-calendar: | Personaje :fontawesome-regular-user: | Aporte :octicons-light-bulb-16: | | ---- | --------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | 1694 | [Gottfried Leibniz](https://es.wikipedia.org/wiki/Gottfried_Leibniz) | Máquina de **operaciones básicas**. | | 1835 | [Charles Babbage](https://es.wikipedia.org/wiki/Charles_Babbage) | **Máquina diferencial** para el cálculo de polinomios. | | 1842 | [Ada Lovelace](https://es.wikipedia.org/wiki/Ada_Lovelace) | Matemática, informática y escritora británica. [Primera programadora de la historia](https://www.xataka.com/historia-tecnologica/asi-fue-como-ada-lovelace-ayudo-a-crear-informatica-cuando-nadie-vio-potencial-real-que-tenia-maquina-babbage) por el desarrollo de ^^algoritmos^^ para la máquina analítica de Babbage[^1]. | | 1854 | [George Boole](https://es.wikipedia.org/wiki/George_Boole) | Contribuyó al **algebra binaria** y a los sistemas de circuitos de computadora (álgebra booleana). | | 1890 | [Herman Hollerit](https://es.wikipedia.org/wiki/Herman_Hollerith) | Creador de un **sistema para automatizar** el censo de Estados Unidos. | | 1936 | [Alan Turing](https://es.wikipedia.org/wiki/Alan_Turing) | **Máquina de Turing** - una máquina capaz de resolver problemas - Aportes de Lógica Matemática - Computadora con tubos de vacío. | | 1942 | [John Atanasoff](https://es.wikipedia.org/wiki/John_Atanasoff) | Desarrolló (junto con [Clifford Berry](https://es.wikipedia.org/wiki/Clifford_Berry)) la **primera computadora digital** electrónica patentada: Atanasoff Berry Computer (ABC). | | 1944 | [Howard Aiken](https://es.wikipedia.org/wiki/Howard_H._Aiken) | En colaboración con IBM desarrolló el **Mark I**, una computadora electromecánica (16m. de largo y 2m. de alto) que podía realizar las cuatro operaciones básicas y trabajar con información tabular. | | 1945 | [Grace Hopper](https://es.wikipedia.org/wiki/Grace_Murray_Hopper) | Primera ^^programadora^^ que utilizó el Mark I (instrucciones en código máquina). | | 1946 | [John W. Mauchly](https://es.wikipedia.org/wiki/John_William_Mauchly) | Junto a [John P. Eckert](https://es.wikipedia.org/wiki/John_Presper_Eckert) desarrolló una **computadora electrónica** completamente operacional a gran escala llamada **ENIAC**. | | 1946 | [John Von Neumann](https://es.wikipedia.org/wiki/John_von_Neumann) | Propuso guardar en **memoria** no solo la **información**, sino también los **programas**, acelerando los procesos. | ![Ada Lovelace](images/history/ada-lovelace.jpg){ width="300" } ///caption Ada Lovelace: primera programadora de la historia /// A partir de los años 50 los avances en las ciencias de la computación se aceleraron de manera significativa. Se reemplazaron los [tubos de vacío](https://es.wikipedia.org/wiki/Computadora_de_tubos_de_vac%C3%ADo) por [transistores](https://es.wikipedia.org/wiki/Transistor) en 1958 y en el mismo año, se sustituyeron por [circuitos integrados](https://es.wikipedia.org/wiki/Circuito_integrado); y en 1961 se miniaturizaron en **chips de silicio**. En 1971 apareció el primer microprocesador de Intel; y en 1973 el primer sistema operativo CP/M. El primer computador personal es comercializado por IBM en el año 1980. ## De los computadores a la programación { #from-computers-to-programming } De acuerdo con este breve viaje por la historia, la programación —obviamente— está vinculada a la aparición de los computadores, y los lenguajes tuvieron también su evolución. Inicialmente, como ya hemos visto, se programaba en **código binario**, es decir en cadenas de 0s y 1s, que es el lenguaje que entiende directamente el computador, tarea extremadamente difícil; luego se creó el **lenguaje ensamblador**, que ya introdujo un nivel de abstracción permitiendo usar instrucciones (aunque bastante rudimentarias) lo que resultaba más cómodo. Posteriormente aparecieron los **lenguajes de alto nivel**, que en general, utilizan palabras en inglés, para dar las órdenes a seguir, para lo cual utilizan un proceso intermedio entre el lenguaje máquina y el nuevo código llamado **código fuente**; este proceso se realiza por parte de un [compilador](machine.md#compilers). ## Cronología de los lenguajes de programación { #programming-languages-chronology } Desde la década de 1950 se han sucedido multitud de lenguajes de programación que cada vez incorporan más funcionalidades destinadas a cubrir las necesidades del desarrollo de aplicaciones. A continuación se muestra una tabla con la historia de los lenguajes de programación más destacados: === "1950" - [RAL](https://en.wikipedia.org/wiki/Autocode) - [Autocoder](https://en.wikipedia.org/wiki/Autocoder) - [IPL](https://en.wikipedia.org/wiki/Information_Processing_Language) - [FLOW-MATIC](https://en.wikipedia.org/wiki/FLOW-MATIC) - [Fortran](https://fortran-lang.org/) - [COMTRAN](https://en.wikipedia.org/wiki/COMTRAN) - [LISP](https://lisp-lang.org/) - [FACT](https://en.wikipedia.org/wiki/FACT_(computer_language)) - [COBOL](https://www.cobol.org/) - [RPG](https://en.wikipedia.org/wiki/IBM_RPG) === "1960" - [APL](https://aplwiki.com/) - [Simula](https://en.wikipedia.org/wiki/Simula) - [SNOBOL](https://en.wikipedia.org/wiki/SNOBOL) - [CPL](https://en.wikipedia.org/wiki/CPL_(programming_language)) - [BASIC](https://en.wikipedia.org/wiki/BASIC) - [PL/I](https://en.wikipedia.org/wiki/PL/I) - [BCPL](https://en.wikipedia.org/wiki/BCPL) - [Logo](https://en.wikipedia.org/wiki/Logo_(programming_language)) - [B](https://en.wikipedia.org/wiki/B_(programming_language)) === "1970" - [Pascal](https://en.wikipedia.org/wiki/Pascal_(programming_language)) - [Forth](https://forth-standard.org/) - [C](https://en.wikipedia.org/wiki/C_(programming_language)) - [Smalltalk](https://en.wikipedia.org/wiki/Smalltalk) - [Prolog](https://www.swi-prolog.org/) - [ML](https://en.wikipedia.org/wiki/ML_(programming_language)) - [Scheme](https://schemers.org/) - [SQL](https://en.wikipedia.org/wiki/SQL) - [Modula-2](https://en.wikipedia.org/wiki/Modula-2) === "1980" - [C++](https://isocpp.org/) - [Ada](https://en.wikipedia.org/wiki/Ada_(programming_language)) - [Common Lisp (C-LISP)](https://common-lisp.net/) - [MATLAB](https://www.mathworks.com/products/matlab.html) - [Eiffel](https://en.wikipedia.org/wiki/Eiffel_(programming_language)) - [Objective-C](https://en.wikipedia.org/wiki/Objective-C) - [Erlang](https://www.erlang.org/) - [Perl](https://www.perl.org/) - [Tcl](https://www.tcl.tk/) - [Mathematica](https://www.wolfram.com/mathematica/) - [FL](https://en.wikipedia.org/wiki/FL_(programming_language)) === "1990" - [Haskell](https://www.haskell.org/) - [Python](https://www.python.org/) - [Visual Basic](https://en.wikipedia.org/wiki/Visual_Basic) - [HTML](https://html.spec.whatwg.org/) - [Ruby](https://www.ruby-lang.org/) - [Lua](https://www.lua.org/) - [R](https://www.r-project.org/) - [Java](https://www.java.com/) - [Delphi](https://www.embarcadero.com/products/delphi) - [JavaScript](https://developer.mozilla.org/docs/Web/JavaScript) - [PHP](https://www.php.net/) - [WebDNA](https://en.wikipedia.org/wiki/WebDNA) - [Rebol](https://www.rebol.com/) - [CLOS](https://en.wikipedia.org/wiki/Common_Lisp_Object_System) === "2000" - [ActionScript](https://en.wikipedia.org/wiki/ActionScript) - [C#](https://learn.microsoft.com/dotnet/csharp/) - [VB.NET](https://learn.microsoft.com/dotnet/visual-basic/) - [F#](https://fsharp.org/) - [Groovy](https://groovy-lang.org/) - [Scala](https://www.scala-lang.org/) - [Factor](https://factorcode.org/) - [Scratch](https://scratch.mit.edu/) - [Clojure](https://clojure.org/) - [Go](https://go.dev/) === "2010" - [Rust](https://www.rust-lang.org/) - [Dart](https://dart.dev/) - [Kotlin](https://kotlinlang.org/) - [Elixir](https://elixir-lang.org/) - [TypeScript](https://www.typescriptlang.org/) - [Julia](https://julialang.org/) - [Swift](https://developer.apple.com/swift/) - [Raku](https://raku.org/) === "2020" - [Carbon](https://github.com/carbon-language/carbon-lang) - [Gleam](https://gleam.run/) - [Mojo](https://www.modular.com/mojo) El **número** actual de lenguajes de programación depende de lo que se considere un lenguaje de programación y a quién se pregunte: | Organismo | Número de lenguajes | | --- | --- | | [TIOBE](https://www.tiobe.com/tiobe-index/programming-languages-definition/#instances) | :material-approximately-equal:250 | | [Wikipedia](https://en.wikipedia.org/wiki/List_of_programming_languages) | :material-approximately-equal:700 | | [Language List](http://www.info.univ-angers.fr/~gh/hilapr/langlist/langlist.htm) | :material-approximately-equal:2500 | | [Online Historical Encyclopaedia of Programming Languages](http://hopl.info/) | :material-approximately-equal:9000 | ## Creadores de lenguajes de programación { #programming-languages-creators } El avance de la computación está íntimamente relacionado con el desarrollo de los lenguajes de programación. Sus creadores y creadoras juegan un _rol fundamental_ en la historia tecnológica. Veamos algunas de estas personas[^2]: | Año :material-calendar: | Creador/a :fontawesome-regular-user-alt: | Lenguaje :material-invoice-text-outline: | | ---- | ----------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | | 1954 | [Nathaniel Rochester]() | [Ensamblador: IBM 701](https://bitsavers.org/pdf/ibm/701/Buchholz_IBM_701_System_Design_Oct53.pdf) | | 1955 | [Grace Hopper](https://es.wikipedia.org/wiki/Grace_Murray_Hopper) | [Flow-Matic](https://en.wikipedia.org/wiki/FLOW-MATIC) :material-arrow-right: [COBOL](https://www.ibm.com/docs/es/i/7.5?topic=cobol-ile-language-reference) | | 1957 | [John Backus](https://es.wikipedia.org/wiki/John_Backus) | [:simple-fortran: FORTRAN](https://fortran-lang.org/) | | 1958 | [John McCarthy](https://es.wikipedia.org/wiki/John_McCarthy) | [:simple-commonlisp: LISP](https://lisp-lang.org/) | | 1962 | [Kenneth E. Iverson](https://es.wikipedia.org/wiki/Kenneth_Iverson) | [APL](https://tryapl.org/) | | 1967 | [Seymour Papert](https://es.wikipedia.org/wiki/Seymour_Papert) | [Logo](https://el.media.mit.edu/logo-foundation/what_is_logo/logo_programming.html) | | 1968 | [Stephen Wolfram](https://es.wikipedia.org/wiki/Stephen_Wolfram) | [:simple-wolframmathematica: Mathematica](https://www.wolfram.com/mathematica/) | | 1970 | [Niklaus Wirth](https://es.wikipedia.org/wiki/Niklaus_Wirth) | [Pascal](https://www.freepascal.org/) | | 1972 | [Dennis Ritchie](https://es.wikipedia.org/wiki/Dennis_Ritchie) | [C](https://learn.microsoft.com/es-es/cpp/c-language/c-language-reference?view=msvc-170) | | 1972 | [Alan Kay](https://es.wikipedia.org/wiki/Alan_Kay) | [Smalltalk](https://squeak.org/) | | 1973 | [Robin Milner](https://es.wikipedia.org/wiki/Robin_Milner) | [ML](http://www.faqs.org/faqs/meta-lang-faq/) | | 1977 | [Brian Kernighan](https://es.wikipedia.org/wiki/Brian_Kernighan) | [Awk](http://www.awklang.org/) | | 1983 | [Anders Hejlsberg](https://es.wikipedia.org/wiki/Anders_Hejlsberg) | [Turbo Pascal](https://turbopascal.org/) | | 1983 | [Bjarne Stroustrup](https://es.wikipedia.org/wiki/Bjarne_Stroustrup) | [:simple-cplusplus: C++](https://cpp-lang.net/) | | 1985 | [Bertrand Meyer](https://es.wikipedia.org/wiki/Bertrand_Meyer) | [Eiffel](https://www.eiffel.org/) | | 1986 | [Joe Armstrong](https://es.wikipedia.org/wiki/Joe_Armstrong) | [:simple-erlang: Erlang](https://www.erlang.org/) | | 1987 | [Larry Wall](https://es.wikipedia.org/wiki/Larry_Wall) | [:simple-perl: Perl](https://www.perl.org/) | | 1991 | [Alan Cooper](https://es.wikipedia.org/wiki/Alan_Cooper) | [Visual Basic](https://learn.microsoft.com/es-es/dotnet/visual-basic/) | | 1991 | [Guido van Rossum](https://es.wikipedia.org/wiki/Guido_van_Rossum) | [:simple-python: Python](https://python.org) | | 1991 | [James Gosling](https://es.wikipedia.org/wiki/James_Gosling) | [Oak](https://oaklang.org/) :material-arrow-right: [:fontawesome-brands-java: Java](https://docs.oracle.com/javase/8/) | | 1995 | [Yukihiro Matsumoto](https://es.wikipedia.org/wiki/Yukihiro_Matsumoto) | [:simple-ruby: Ruby](https://www.ruby-lang.org/es/) | | 1995 | [Brendan Eich](https://es.wikipedia.org/wiki/Brendan_Eich) | [:simple-javascript: JavaScript](https://developer.mozilla.org/es/docs/Web/JavaScript) | | 2003 | [Martin Odersky](https://en.wikipedia.org/wiki/Martin_Odersky) | [:simple-scala: Scala](https://www.scala-lang.org/) | | 2006 | [Graydon Hoare](http://www.ctkf.org/index-140.html) | [:simple-rust: Rust](https://www.rust-lang.org/) | | 2007 | [Mitch Resnick](https://es.wikipedia.org/wiki/Mitchel_Resnick) | [:simple-scratch: Scratch](https://scratch.mit.edu/) | | 2009 | [Ken Thompson](https://es.wikipedia.org/wiki/Ken_Thompson) | [:fontawesome-brands-golang: Go](https://go.dev/) | | 2012 | [Anders Heijlsberg](https://es.wikipedia.org/wiki/Anders_Hejlsberg) | [:simple-typescript: TypeScript](https://www.typescriptlang.org/) | [^1]: Foto de Ada Lovelace tomada desde [Meatze](https://www.meatze.eus/blog-igualdad/la-primera-programadora-pertenece-al-siglo-xix-ada-lovelace/). [^2]: Fuente: [Wikpedia](https://es.wikipedia.org/wiki/Historia_de_los_lenguajes_de_programaci%C3%B3n) ================================================ FILE: docs/core/introduction/index.md ================================================ # Introducción La programación es el proceso mediante el cual se le da instrucciones a una computadora para que realice tareas específicas. Es una herramienta fundamental en el mundo moderno, ya que permite automatizar procesos, analizar datos, crear aplicaciones y desarrollar soluciones tecnológicas para diversos problemas. Aprender a programar no solo ayuda a entender mejor cómo funcionan las tecnologías que usamos a diario, sino que también desarrolla habilidades de pensamiento lógico y resolución de problemas. Uno de los lenguajes más populares para iniciarse en este campo es Python, gracias a su sintaxis simple y legible. ================================================ FILE: docs/core/introduction/machine.md ================================================ --- icon: octicons/cpu-24 tags: - Fundamentos del lenguaje - Introducción - Hablando con la máquina --- # Hablando con la máquina { #talking-to-machine } ![Banner](images/machine/banner.jpg) /// caption Imagen generada con Inteligencia Artificial /// Los ordenadores son dispositivos complejos pero están diseñados para hacer una cosa bien: **ejecutar aquello que se les indica**. La cuestión radica en cómo indicarle a una máquina lo que queremos que haga. Esas indicaciones se llaman técnicamente **instrucciones** y se expresan en un **lenguaje**. Podríamos decir que _programar consiste en escribir instrucciones para que sean ejecutadas por un ordenador_. El lenguaje que utilizamos para ello se denomina _lenguaje de programación_. ## Código máquina { #machine-code } Pero aún no hemos resuelto el problema de cómo hacer que un ordenador (o máquina) entienda un lenguaje de programación. A priori se podría decir que un ordenador sólo entiende un lenguaje muy «simple» denominado [código máquina](https://es.wikipedia.org/wiki/Lenguaje_de_m%C3%A1quina). En este lenguaje se utilizan únicamente los símbolos 0 y 1 en representación de los niveles de tensión alto y bajo, que al fin y al cabo, son los estados que puede manejar un [circuito digital](https://es.wikipedia.org/wiki/Circuito_digital). En este contexto, por tanto, hablamos de [sistema binario](https://es.wikipedia.org/wiki/Sistema_binario). Si tuviéramos que escribir programas de ordenador en este formato sería una tarea ardua, pero afortunadamente con el tiempo se han ido creando lenguajes de programación intermedios que, posteriormente, son convertidos a código máquina. Si intentamos visualizar un programa en código máquina, únicamente obtendríamos una secuencia de ceros y unos: ``` 00001000 00000010 01111011 10101100 10010111 11011001 01000000 01100010 00110100 00010111 01101111 10111001 01010110 00110001 00101010 00011111 10000011 11001101 11110101 01001110 01010010 10100001 01101010 00001111 11101010 00100111 11000100 01110101 11011011 00010110 10011111 01010110 ``` ## Ensamblador { #assembly } El primer lenguaje de programación que encontramos en esta «escalada» es **ensamblador**. Veamos a continuación un [ejemplo de código en ensamblador](https://medium.com/nabucodonosor-editorial/hola-mundo-ensamblado-x86-ff62789ab9b0) del típico programa que se escribe por primera vez, el _«Hello, World»_: ```asm SYS_SALIDA equ 1 section .data msg db "Hello, World",0x0a len equ $ - msg ;longitud de msg section .text global _start ;para el linker _start: ;marca la entrada mov eax, 4 ;llamada al sistema (sys_write) mov ebx, 1 ;descripción de archivo (stdout) mov ecx, msg ;msg a escribir mov edx, len ;longitud del mensaje int 0x80 ;llama al sistema de interrupciones fin: mov eax, SYS_SALIDA ;llamada al sistema (sys_exit) int 0x80 ``` Aunque resulte difícil de creer, lo «único» que hace este programa es mostrar en la pantalla de nuestro ordenador el texto `Hello, World`. Un detalle fundamental es que sólo funcionará para una [arquitectura x86](https://es.wikipedia.org/wiki/X86), ya que las instrucciones en ensamblador están vinculadas con el tipo de arquitectura del procesador. ## C { #c } Aunque el lenguaje ensamblador nos facilita un poco la tarea de desarrollar programas, sigue siendo bastante complicado ya que las instrucciones son muy específicas y no proporcionan una semántica entendible. Uno de los lenguajes que vino a suplir – en parte – estos obstáculos fue [C](). Considerado para muchas personas como un referente en cuanto a los lenguajes de programación, permite hacer uso de instrucciones más claras y potentes. El mismo ejemplo anterior del programa _«Hello, World»_ se escribiría así en lenguaje C: ```c #include int main() { printf("Hello, World"); return 0; } ``` ## Python { #python } Si seguimos «subiendo» en esta lista de lenguajes de programación, podemos llegar hasta [Python](https://es.wikipedia.org/wiki/Python). Se dice que es un lenguaje de más alto nivel en el sentido de que sus instrucciones son más entendibles por un humano. Veamos cómo se escribiría el programa _«Hello, World»_ en el lenguaje de programación Python: ```python print('Hello, World') ``` ¡Pues así de fácil! :material-robot-happy-outline:{.hl} Hemos pasado de _código máquina_ (ceros y unos) a código Python en el que se puede entender perfectamente lo que estamos indicando al ordenador. La pregunta que surge es: ¿cómo entiende una máquina lo que tiene que hacer si le pasamos un programa hecho en Python (o cualquier otro lenguaje de programación de alto nivel)? La respuesta es un **compilador**. ## Compiladores { #compilers } Los [compiladores](https://es.wikipedia.org/wiki/Compilador) son programas que convierten un lenguaje «cualquiera» en _código máquina_. Se pueden ver como traductores, permitiendo a la máquina interpretar lo que queremos hacer. ```mermaid sequenceDiagram autonumber actor User User -->> CPU: Please run: file.py CPU -->> User: I don't know how! create participant Compiler User ->> Compiler: Compile it! Compiler -->> CPU: Here you have: 10110101011 CPU -->> User: Done! ``` En el caso particular de Python el proceso de compilación genera un código intermedio denominado **bytecode**. Si partimos del ejemplo anterior: ```python print('Hello, World') ``` el programa se compilaría[^1] al siguiente «bytecode»: ```asm 0 0 RESUME 0 1 2 PUSH_NULL 4 LOAD_NAME 0 (print) 6 LOAD_CONST 0 ('Hello, World') 8 PRECALL 1 12 CALL 1 22 RETURN_VALUE ``` A continuación estas instrucciones básicas son ejecutadas por el intérprete de «bytecode» de Python (o máquina virtual)[^2]: ```mermaid graph LR py[.py] --> compiler[Compiler] subgraph interpreter[Python Interpreter] compiler --> bytecode[Bytecode] bytecode --> vm[Python VM] end vm --> exec[Code execution] bytecode -.-> pyc[.pyc] ``` !!! tip ".pyc" Los ficheros `.pyc` (del inglés «Python compiled») contienen _bytecode_ en formato binario[^3]. Son generados por el compilador de Python. Su objetivo principal es optimizar la ejecución de un programa, ya que si el código fuente no cambia, no es necesario volver a recompilar. ### Compilado vs Interpretado Si queremos ver una diferencia entre un lenguaje compilado como C y un lenguaje «interpretado» como Python es que, aunque ambos realizan un proceso de traducción del código fuente, la compilación de C genera un código objeto que debe ser ejecutado en una segunda fase explícita, mientras que la compilación de Python genera un «bytecode» que se ejecuta (interpreta) de forma «transparente». [^1]: Consulta aquí más información sobre el [intérprete de bytecode](https://devguide.python.org/internals/interpreter/). [^2]: Imagen basada en el artículo [Python bytecode analysis](https://nowave.it/python-bytecode-analysis-1.html). [^3]: Es posible incluso obtener el _bytecode_ (legible) desde un fichero `.pyc`. Aquí tienes este [post](https://mathspp.com/blog/til/read-bytecode-from-a-pyc-file) donde se explica claramente. ================================================ FILE: docs/core/introduction/python.md ================================================ --- icon: fontawesome/brands/python tags: - Fundamentos del lenguaje - Introducción - Python --- # Python { #python } ![Banner](images/python/banner.jpg) /// caption Imagen generada con Inteligencia Artificial /// [Python](https://www.python.org/) es un **lenguaje de programación** de [alto nivel](https://aprendepython.es/core/introduction/machine/#python) creado a principios de los años 90 por [Guido van Rossum](https://es.wikipedia.org/wiki/Guido_van_Rossum) que trabajaba por aquella época en el _Centro para las Matemáticas y la Informática de los Países Bajos_ ([CWI](https://www.cwi.nl/en/)). Sus instrucciones están muy cercanas al **lenguaje natural** (en inglés) y favorecen la **legibilidad** del código. Toma su nombre de los [Monty Python](https://es.wikipedia.org/wiki/Monty_Python), grupo humorista de los 60 que gustaban mucho a Guido. Python fue creado como sucesor del lenguaje [ABC](https://homepages.cwi.nl/~steven/abc/). !!! abstract "Python: El Documental" De cara a conocer los detalles tras este lenguaje de programación, resulta muy interesante visionar [este documental de Python :simple-youtube:](https://www.youtube.com/watch?v=GfH4QL4VqJ0) que fue lanzado en agosto de 2025 y producido por [Cult.Repo](https://www.linkedin.com/company/cult-repo/). ## Características del lenguaje { #language-features } A partir de su [definición de la Wikipedia](https://es.wikipedia.org/wiki/Python): - Python es un lenguaje de programación **interpretado** y **multiplataforma** cuya filosofía hace hincapié en una sintaxis que favorezca un **código legible**. - Se trata de un lenguaje de programación **multiparadigma**, ya que soporta **orientación a objetos**, **programación imperativa** y, en menor medida, **programación funcional**. - En base a su campo objetivo, se trata de un lenguaje de **propósito general**. ### Ventajas { #advantages }
- Libre y gratuito (OpenSource). - Fácil de leer, parecido a pseudocódigo. - Aprendizaje relativamente fácil y rápido: claro e intuitivo. - Alto nivel. - Alta productividad: simple y rápido. - Tiende a producir un buen código: orden, limpieza, elegancia, flexibilidad, ... - Multiplataforma. Portable. - Multiparadigma: programación imperativa, orientada a objetos, funcional, ... - Interactivo, modular, dinámico. - Librerías extensivas («pilas incluídas»). - Gran cantidad de librerías de terceros. - Extensible (C, C++, ..) y «embebible». - Gran comunidad, amplio soporte. - [Interpretado](machine.md#compilers). - Tipado dinámico.(1) - Fuertemente tipado.(2)
1. Tipado dinámico significa que una variable puede cambiar de tipo durante el tiempo de vida de un programa. Al contrario que Python, _C_ es un lenguaje de tipado estático. 2. Fuertemente tipado significa que, de manera nativa, no podemos operar con dos variables de tipos distintos, a menos que realice una conversión explícita. Al contrario que Python, _JavaScript_ es un lenguaje débilmente tipado. ### Inconvenientes { #disadvantages } - «Interpretado» (velocidad de ejecución, multithread vs GIL[^1], ...). - Consumo de memoria. - Errores no fácilmente detectables en tiempo de compilación. - Desarrollo móvil. - Documentación a veces dispersa e incompleta. - Varios módulos para la misma funcionalidad. - Librerías de terceros no siempre del todo maduras. ## Uso de Python { #python-usage } Al ser un lenguaje de ^^propósito general^^, podemos encontrar aplicaciones en prácticamente todos los ámbitos. Las «cuatro patas» de Python son: - [x] Desarrollo Web. - [x] Administración de Sistemas y Automatización de Tareas. - [x] Ciencia de Datos. - [x] Inteligencia Artificial y Machine Learning. Pero también se puede usar Python para: - Aplicaciones de escritorio. - Bases de datos relacionales / NoSQL - Buenas prácticas de programación / Patrones de diseño. - Concurrencia. - Criptomonedas / Blockchain. - Desarrollo de aplicaciones multimedia. - Desarrollo de juegos. - Desarrollo en dispositivos embebidos. - DevOps. - Gráficos por ordenador. - Internet de las cosas. - Programación de parsers / scrapers / crawlers. - Programación de redes. - Propósitos educativos. - Prototipado de software. - Seguridad. - Tests automatizados. ### Organizaciones { #organizations } Afortunadamente Python ya superó hace muchos años esa idea de ser un lenguaje utilizado en entornos reducidos. Son muchas las empresas, instituciones y organismos que utilizan Python en su día a día para mejorar sus sistemas de información. Veamos algunas de las más relevantes: ![Who uses Python](./images/python/who-uses-python.svg) ///caption Empresas u organizaciones que usan Python /// ### Rankings { #rankings } Existen ránkings y estudios de mercado que sitúan a Python como uno de los lenguajes más **usados** y la vez, más **amados** dentro del mundo del desarrollo de software. === "TIOBE" En el momento de la escritura de este documento, la última actualización del [Índice TIOBE](https://www.tiobe.com/tiobe-index/) es de **febrero de 2026** en el que **Python ocupaba el primer puesto** de los ^^lenguajes de programación más usados^^, por delante de C y C++. | Puesto | Lenguaje | Uso | | ------ | -------- | ------ | | 1 | Python | 21.81% | | 2 | C | 11.05% | | 3 | C++ | 8.55% | === "Stack Overflow" En el momento de la escritura de este documento, la última actualización de la [encuesta a desarrolladores/as de Stack Overflow](https://survey.stackoverflow.co/2025/technology#admired-and-desired) es de **mayo de 2025** en la que **Python ocupaba el primer puesto** de los ^^lenguajes de programación más deseados y admirados^^, por delante de SQL y HTML/CSS. | Puesto | Lenguaje | Deseado :material-heart: | Admirado :fontawesome-solid-hands-clapping: | | ------ | -------- | ------------------------ | ------------------------------------------- | | 1 | Python | 39.3% | 56.4% | | 2 | SQL | 35.6% | 56.4% | | 3 | HTML/CSS | 33.8% | 52.1% | === "GitHub" En el momento de la escritura de este documento, la última actualización del [informe sobre tecnologías en la plataforma GitHub](https://github.blog/news-insights/octoverse/octoverse-a-new-developer-joins-github-every-second-as-ai-leads-typescript-to-1/#the-top-programming-languages-of-2025-typescript-jumps-to-1-while-python-takes-2) es de **octubre de 2025** en la que **Python ocupaba el segundo puesto** de los ^^lenguajes de programación más usados^^, por detrás de TypeScript y por delante de JavaScript. | Puesto | Lenguaje | | ------ | ---------- | | 1 | TypeScript | | 2 | Python | | 3 | JavaScript | === "IEEE Spectrum" En el momento de la escritura de este documento, la última actualización del [ranking anual IEEE Spectrum sobre lenguajes de programación](https://spectrum.ieee.org/top-programming-languages-2025) es de **septiembre de 2025** en la que **Python ocupaba el primer puesto** de los ^^lenguajes de programación más populares^^, por delante de Java y C++. | Puesto | Lenguaje | Popularidad | | ------ | -------- | ----------- | | 1 | Python | 1 | | 2 | Java | 0.4986 | | 3 | C++ | 0.3669 | ## Versiones de Python { #python-releases } De acuerdo con el propio [blog de Guido Van Rossum](https://python-history.blogspot.com/2009/01/brief-timeline-of-python.html) la implementación de Python comenzó en **diciembre de 1989**[^2] liberando distintas versiones internas `0.x` durante los siguientes 4 años. A partir de ese momento se empezaron a desarrollar las versiones estables «mayores» indicadas en la siguiente tabla:
| Versión | Fecha de lanzamiento | Release manager(1) | | ---------------------------------------------- | -------------------- | --------------------- | | **Python 1.0** | Enero 1994 | Guido van Rossum | | Python 1.5 | Diciembre 1997 | Guido van Rossum | | Python 1.6 | Septiembre 2000 | Guido van Rossum | | **Python 2.0** | Octubre 2000 | Guido van Rossum | | Python 2.1 | Abril 2001 | Guido van Rossum | | Python 2.2 | Diciembre 2001 | Guido van Rossum | | Python 2.3 | Julio 2003 | Guido van Rossum | | Python 2.4 | Noviembre 2004 | Guido van Rossum | | Python 2.5 | Septiembre 2006 | Guido van Rossum | | [Python 2.6](https://docs.python.org/2.6/) | Octubre 2008 | Barry Warsaw | | [Python 2.7](https://docs.python.org/2.7/) | Julio 2010 | Benjamin Peterson | | [**Python 3.0**](https://docs.python.org/3.0/) | Diciembre 2008 | Barray Warsaw | | [Python 3.1](https://docs.python.org/3.1/) | Junio 2009 | Benjamin Peterson | | [Python 3.2](https://docs.python.org/3.2/) | Febrero 2011 | Georg Brandl | | [Python 3.3](https://docs.python.org/3.3/) | Septiembre 2012 | Georg Brandl | | [Python 3.4](https://docs.python.org/3.4/) | Marzo 2014 | Larry Hastings | | [Python 3.5](https://docs.python.org/3.5/) | Septiembre 2015 | Larry Hastings | | [Python 3.6](https://docs.python.org/3.6/) | Diciembre 2016 | Ned Deily | | [Python 3.7](https://docs.python.org/3.7/) | Junio 2018 | Ned Deily | | [Python 3.8](https://docs.python.org/3.8/) | Octubre 2019 | Łukasz Langa | | [Python 3.9](https://docs.python.org/3.9/) | Octubre 2020 | Łukasz Langa | | [Python 3.10](https://docs.python.org/3.10/) | Octubre 2021 | Pablo Galindo Salgado | | [Python 3.11](https://docs.python.org/3.11/) | Octubre 2022 | Pablo Galindo Salgado | | [Python 3.12](https://docs.python.org/3.12/) | Octubre 2023 | Thomas Wouters | | [Python 3.13](https://docs.python.org/3.13/) | Octubre 2024 | Thomas Wouters | | [Python 3.14](https://docs.python.org/3.14/) | Octubre 2025 | Hugo van Kemenade | | [Python 3.15](https://docs.python.org/3.15/) | Octubre 2026 | Hugo van Kemenade |
1. El «release manager» de una versión de Python es un/una [«core developer»](https://hugovk.github.io/python-core-devs/) encargado/a de coordinar y responsabilizarse de liberar dicha versión de Python en tiempo y forma. !!! abstract "Dato curioso" Desde Python :octicons-tag-24: 3.8, cada nueva versión estable de Python se libera en el mes de **Octubre**. !!! info "Soporte" Es importante tener en cuenta el [calendario de soporte](https://devguide.python.org/versions/#full-chart) de cada una de las versiones de Python. ### Core developers { #core-developers } Los «core developers» de Python constituyen el equipo de personas que desarrollan/mantienen el lenguaje de programación Python. Convertirse en «core developer» exige superar una serie de [requisitos](https://devguide.python.org/core-team/join-team/). El listado de todas las personas que han formado parte de este equipo puede consultarse [aquí](https://devguide.python.org/core-team/team-log/index.html). Cada cierto tiempo se reúnen en «sprints»[^3] donde toman decisiones sobre el futuro de Python y programan los cambios que han sido aceptados mediante los PEP. ![Core developers Sprint 2025](./images/python/coredev-sprint.jpg) (1) { .annotate } 1. CPython [Core Dev Sprint 2025](https://www.linkedin.com/feed/update/ugcPost:7375230884591083520/) en [ARM](https://www.arm.com/) (Cambridge) :fontawesome-regular-copyright: [Diego R.](https://www.linkedin.com/in/diegor/) (Linkedin) ### Python 3 { #python3 } El cambio **de Python 2 a Python 3** fue bastante «traumático» ya que **se perdió la compatibilidad** en muchas de las estructuras del lenguaje. Los [«core-developers»](#core-developers), con _Guido van Rossum_ a la cabeza, vieron la necesidad de aplicar estas modificaciones en beneficio del rendimiento y expresividad del lenguaje de programación. Este cambio implicaba que el código escrito en Python 2 no funcionaría (de manera inmediata) en Python 3. El **1 de enero de 2020** [finalizó oficialmente](https://www.python.org/doc/sunset-python-2/) el **soporte a la versión 2.7** del lenguaje de programación Python. Es por ello que se recomienda lo siguiente: 1. Si aún desarrollas aplicaciones escritas en Python 2, deberías migrar a Python 3. 2. Si vas a desarrollar una nueva aplicación, deberías hacerlo directamente en Python 3. !!! warning "Advertencia" Únete a **Python 3** y aprovecha todas sus ventajas. ### CPython { #cpython } Existen múltiples **implementaciones** de Python según el lenguaje de programación que se ha usado para desarrollarlo. Veamos algunas de ellas: | Implementación | Lenguaje | | ------------------------------------------------ | ------------------------------ | | **[CPython](https://github.com/python/cpython)** | :fontawesome-solid-c: | | [Jython](https://www.jython.org/) | :fontawesome-brands-java: Java | | [IronPython](https://ironpython.net/) | :simple-cplusplus: C++ | | [Brython](https://brython.info/) | :simple-javascript: JavaScript | | [RustPython](https://rustpython.github.io/) | :simple-rust: Rust | | [MicroPython](https://micropython.org/) | :fontawesome-solid-c: | !!! info "CPython" Cuando hacemos referencia a Python hablamos (implícitamente) de CPython. Este manual versa exclusivamente sobre CPython. ## Orientaciones { #orientations } ### Zen de Python { #zen-of-python } Existen una serie de _reglas_ «filosóficas» que indican una **manera de hacer y de pensar** dentro del mundo **pitónico**[^4] creadas por [Tim Peters](), llamadas el [Zen de Python](https://www.python.org/dev/peps/pep-0020/) y que se pueden aplicar incluso más allá de la programación: === "Zen of Python 🇬🇧" ```pycon >>> import this The Zen of Python, by Tim Peters Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better than complicated. Flat is better than nested. Sparse is better than dense. Readability counts. Special cases aren't special enough to break the rules. Although practicality beats purity. Errors should never pass silently. Unless explicitly silenced. In the face of ambiguity, refuse the temptation to guess. There should be one-- and preferably only one --obvious way to do it. Although that way may not be obvious at first unless you're Dutch. Now is better than never. Although never is often better than *right* now. If the implementation is hard to explain, it's a bad idea. If the implementation is easy to explain, it may be a good idea. Namespaces are one honking great idea -- let's do more of those! ``` === "Zen de Python 🇪🇸" En su [traducción de la Wikipedia](https://es.wikipedia.org/wiki/Zen_de_Python): - Bello es mejor que feo. - Explícito es mejor que implícito. - Simple es mejor que complejo. - Complejo es mejor que complicado. - Plano es mejor que anidado. - Espaciado es mejor que denso. - La legibilidad es importante. - Los casos especiales no son lo suficientemente especiales como para romper las reglas. - Sin embargo la practicidad le gana a la pureza. - Los errores nunca deberían pasar silenciosamente. - A menos que se silencien explícitamente. - Frente a la ambigüedad, evitar la tentación de adivinar. - Debería haber una, y preferiblemente solo una, manera obvia de hacerlo. - A pesar de que esa manera no sea obvia a menos que seas Holandés. - Ahora es mejor que nunca. - A pesar de que nunca es muchas veces mejor que ahora mismo. - Si la implementación es difícil de explicar, es una mala idea. - Si la implementación es fácil de explicar, puede que sea una buena idea. - Los espacios de nombres son una gran idea, ¡tengamos más de esos! !!! tip "Fondo de pantalla" Si quieres darle un toque a tu escritorio, puedes descargar este [fondo de pantalla](./images/python/zen-python.png)[^5] del Zen de Python que queda muy chulo. ### Consejos para programar { #programming-advices } Por aquí te dejo una lista de consejos muy interesantes cuando nos enfrentamos a la _ardua tarea de programar_[^6]: 1. Escribir código es el último paso del proceso. 2. Para resolver problemas: pizarra mejor que teclado. 3. Escribir código sin planificar = estrés. 4. Pareces más inteligente siendo claro, no siendo listo. 5. La constancia a largo plazo es mejor que la intensidad a corto plazo. 6. La solución primero. La optimización después. 7. Gran parte de la programación es resolución de problemas. 8. Piensa en múltiples soluciones antes de decidirte por una. 9. Se aprende construyendo proyectos, no tomando cursos. 10. Siempre elije simplicidad. Las soluciones simples son más fáciles de escribir. 11. Los errores son inevitables al escribir código. Sólo te informan sobre lo que no debes hacer. 12. Fallar es barato en programación. Aprende mediante la práctica. 13. Gran parte de la programación es investigación. 14. La programación en pareja te enseñará mucho más que escribir código tu solo. 15. Da un paseo cuando estés bloqueado con un error. 16. Convierte en un hábito el hecho de pedir ayuda. Pierdes cero credibilidad pidiendo ayuda. 17. El tiempo gastado en entender el problema está bien invertido. 18. Cuando estés bloqueado con un problema: sé curioso, no te frustres. 19. Piensa en posibles escenarios y situaciones extremas antes de resolver el problema. 20. No te estreses con la sintaxis de lenguaje de programación. Entiende conceptos. 21. Aprende a ser un buen corrector de errores. Esto se amortiza. 22. Conoce pronto los atajos de teclado de tu editor favorito. 23. Tu código será tan claro como lo tengas en tu cabeza. 24. Gastarás el doble de tiempo en corregir errores que en escribir código. 25. Saber buscar bien en Google es una habilidad valiosa. 26. Lee código de otras personas para inspirarte. 27. Únete a comunidades de desarrollo para aprender con otros/as programadores/as. Por ejemplo: [Python Canarias](https://pythoncanarias.es). [^1]: Amplía información sobre el GIL en [este enlace](https://codigofacilito.com/articulos/gil-python). [^2]: El primer «commit» de CPython registrado por Guido van Rossum está disponible en [Github](https://github.com/python/cpython/commit/7f777ed95a19224294949e1b4ce56bbffcb1fe9f). [^3]: Ciclo de trabajo de duración fija enfocado en desarrollar determinados aspectos software. [^4]: Dícese de algo/alguien que sigue las convenciones de Python. [^5]: Imagen generada con Inteligencia Artificial. [^6]: Consejos obtenidos de la cuenta :simple-x: de [@codewithvoid](https://twitter.com/codewithvoid). ================================================ FILE: docs/core/modularity/exceptions.md ================================================ --- icon: octicons/bug-24 tags: - Fundamentos del lenguaje - Modularidad - Excepciones --- # Excepciones { #exceptions } ![Banner](images/exceptions/banner.jpg) /// caption Imagen generada con Inteligencia Artificial /// En programación, una excepción es un **evento anómalo o inesperado** que ocurre durante la ejecución de un programa y que **interrumpe su flujo normal**. Generalmente, las excepciones indican errores o situaciones inusuales, como intentos de dividir por cero, acceso a índices fuera de rango o fallos al abrir un archivo inexistente. ## Manejando errores { #handling-errors } Si una excepción ocurre en algún lugar de nuestro programa y no es capturada en ese punto, va subiendo (burbujeando) hasta que es capturada en alguna función que ha hecho la llamada. Si en toda la «pila» de llamadas no existe un control de la excepción, Python terminará abortando la ejecución del programa y mostrando un mensaje de error con información adicional:
- ```pycon hl_lines="11-20" >>> def f3(): ... return 1/0 ... >>> def f2(): ... return f3() ... >>> def f1(): ... return f2() ... >>> f1() Traceback (most recent call last): Cell In[4], line 1 f1() Cell In[3], line 2 in f1 return f2() Cell In[2], line 2 in f2 return f3() Cell In[1], line 2 in f3 return 1/0 ZeroDivisionError: division by zero ``` - ``` mermaid graph start[[Start]] --> f1 f1 --> f2 f2 --> f3 f3 -->|1/0| err{{ZeroDivisionError}} err -->|Traceback| start ```
Para manejar (capturar) las excepciones podemos usar un bloque de código con las sentencias `#!python try` + `#!python except`. Supongamos el siguiente ejemplo:material-flash: en el cual queremos controlar una posible división por cero: ```pycon >>> def intdiv(a: int, b: int) -> int: ... try:#(1)! ... return int(a) // b ... except:#(2)! ... print('Please do not divide by zero...') ... >>> intdiv(3, 0) Please do not divide by zero... ``` { .annotate } 1. En el bloque `#!python try` irá el código susceptible de generar errores. 2. En el bloque `#!python except` irá el código a ejecutar cuando se produce un error. !!! tip "Especificar la excepción" No es una buena práctica usar un bloque `#!python except` sin indicar el tipo de excepción que estamos gestionando, no sólo porque puedan existir varias excepciones que capturar sino porque, como dice el Zen de Python: «explícito» es mejor que «implícito». ### Especificando excepciones { #specify-exceptions } En el siguiente ejemplo:material-flash: mejoraremos el código anterior, capturando distintos tipos de [excepciones predefinidas](https://docs.python.org/es/3/library/exceptions.html#concrete-exceptions): - [x] `TypeError` por si los operandos no permiten la división. - [x] `ZeroDivisionError` por si el denominador es cero. - [x] `Exception` para cualquier otro error que se pueda producir. Veamos su implementación: ```pycon >>> def intdiv(a, b): ... try: ... result = int(a) // b ... except TypeError: ... print('Check operands. Some of them seems strange...') ... except ZeroDivisionError: ... print('Please do not divide by zero...') ... except Exception: ... print('Ups. Something went wrong...') ... >>> intdiv(3, 0) Please do not divide by zero... >>> intdiv(3, '0') Check operands. Some of them seems strange... >>> intdiv('x', 1) Ups. Something went wrong... ``` #### Excepciones predefinidas { #builtin-exceptions } Las [excepciones predefinidas](https://docs.python.org/es/3/library/exceptions.html#concrete-exceptions) en Python cubren un amplio rango de posibilidades y no hace falta importarlas previamente. Se pueden usar directamente. Conocerlas es importante ya que nos permitirá gestionar mejor los posibles errores y dar respuesta a situaciones inesperadas. Veamos a continuación algunas de las más relevantes: | Excepción | Significado | Ejemplo | | --- | --- | --- | | `AttributeError` | Referencia a atributo/método inexistente | `#!python 'hello'.splik()` | | `IndexError` | Subíndice de secuencia fuera de rango | `#!python (2, 3)[5]` | | `KeyError` | Clave de diccionario no encontrada | `#!python {'x': 1, 'y': 2}['z']` | | `TypeError` | Operación sobre un objeto de tipo inapropiado | `#!python 'x' / 3` | | `ValueError` | Operación sobre un objeto de tipo correcto pero valor inapropiado | `#!python int('3.14')` | | `ZeroDivisionError` | Segundo argumento de división o módulo es cero | `#!python 1 / 0` | | `FileNotFoundError` | Error al abrir (modo lectura) un fichero que no existe | `#!python open('data.txt')` | | `RecursionError` | Alcanzado el máximo nivel de recursión | `#!python while True:` | | `StopIteration` | Fin del protocolo de iteración | `#!python for item in items:` | | `NotImplementedError` | La operación debe ser implementada | `#!python def method(self):` | #### Agrupando excepciones { #group-exceptions } Si nos interesa tratar distintas excepciones con el mismo comportamiento, es posible agruparlas en una única línea: ```pycon hl_lines="4" >>> def intdiv(a, b): ... try: ... result = int(a) // b ... except (TypeError, ZeroDivisionError): ... print('Check operands: Some of them caused errors...') ... except Exception: ... print('Ups. Something went wrong...') ... >>> intdiv(3, 0) Check operands: Some of them caused errors... >>> intdiv(3, '0') Check operands: Some of them caused errors... >>> intdiv('x', 1) Ups. Something went wrong... ``` ### Cláusulas adicionales { #additional-clauses } Existen dos cláusulas adicionales que Python proporciona para el bloque `try-except`: - `#!python else`: Se ejecuta cuando no ha habido ningún error en el bloque de código definido por `#!python try` - `#!python finally`: Se ejecuta siempre, independientemente de si ha habido algún error o no. Veamos un ejemplo:material-flash: de aplicación de ambas cláusulas en el acceso a una lista: === "Con error" ```pycon hl_lines="6 10" >>> values = [4, 2, 7] >>> try: ... r = values[3] ... except IndexError: ... print('Error: Index not in list') ... else: ... print(f'Your wishes are my command: {r}') ... finally: ... print('Have a good day!') ... Error: Index not in list Have a good day! ``` === "Sin error" ```pycon hl_lines="8 10" >>> values = [4, 2, 7] >>> try: ... r = values[2] ... except IndexError: ... print('Error: Index not in list') ... else: ... print(f'Your wishes are my command: {r}') ... finally: ... print('Have a good day!') ... Your wishes are my command: 7 Have a good day! ``` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `getint-iterative` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `getint-recursive` ### Instancias de excepción { #exception-instance } En este punto sabemos capturar excepciones (por su naturaleza/tipo). Pero Python también permite recuperar la instancia de cada excepción capturada. Para ello tendremos que hacer uso de la palabra reservada `#!python as` junto a un nombre de variable que contendrá el objeto de la excepción. Lo más habitual al recuperar el objeto de error es mostrar (o manipular) los mensajes de error. Veamos un ejemplo:material-flash: siguiendo con el acceso a una lista: ```pycon hl_lines="5" >>> values = [4, 2, 7] >>> try: ... print(values[3]) ... except IndexError as err: ... print(f'Something went wrong: {err}')#(1)! ... Something went wrong: list index out of range ``` { .annotate } 1. Lo que ocurre en este caso es una llamada implícita a `#!python err.__str__()` como se explicó [aquí](./oop.md#str). ### Elevando excepciones { #raise-exceptions } Es bastante común que nuestro programa tenga que lanzar (elevar o levantar) una excepción (predefinida o propia). Para ello tendremos que hacer uso de la sentencia `#!python raise`. Supongamos por ejemplo:material-flash: una función que suma dos valores enteros. En el caso de que alguno de los operandos no sea entero, elevaremos una excepción indicando esta circunstancia: ```pycon hl_lines="4" >>> def add(a: int, b: int) -> int: ... if isinstance(a, int) and isinstance(b, int): ... return a + b ... raise TypeError('Operands must be integers') ... >>> add(4, 3)#(1)! 7 >>> add('x', 'y')#(2)! Traceback (most recent call last): Cell In[3], line 1 add('x', 'y') Cell In[1], line 4 in add raise TypeError('Operands must be integers') TypeError: Operands must be integers ``` { .annotate } 1. Situación en la que todo va bien. 2. Situación de error debido al tipo de los argumentos. ### Jerarquía de excepciones { #exception-hierarchy } Todas las excepciones predefinidas en Python heredan de la clase `Exception` y de la clase `BaseException` (más allá de heredar, obviamente, de `object`). Podemos «visitar» algunas [excepciones predefinidas](#builtin-exceptions) y comprobar este comportamiento: ```pycon >>> TypeError.mro() [TypeError, Exception, BaseException, object] >>> ZeroDivisionError.mro() [ZeroDivisionError, ArithmeticError, Exception, BaseException, object] >>> IndexError.mro() [IndexError, LookupError, Exception, BaseException, object] >>> FileNotFoundError.mro() [FileNotFoundError, OSError, Exception, BaseException, object] ``` A continuación se detalla la **jerarquía completa de excepciones predefinidas** en Python: ``` BaseException ├── BaseExceptionGroup ├── GeneratorExit ├── KeyboardInterrupt ├── SystemExit └── Exception ├── ArithmeticError │ ├── FloatingPointError │ ├── OverflowError │ └── ZeroDivisionError ├── AssertionError ├── AttributeError ├── BufferError ├── EOFError ├── ExceptionGroup [BaseExceptionGroup] ├── ImportError │ └── ModuleNotFoundError ├── LookupError │ ├── IndexError │ └── KeyError ├── MemoryError ├── NameError │ └── UnboundLocalError ├── OSError │ ├── BlockingIOError │ ├── ChildProcessError │ ├── ConnectionError │ │ ├── BrokenPipeError │ │ ├── ConnectionAbortedError │ │ ├── ConnectionRefusedError │ │ └── ConnectionResetError │ ├── FileExistsError │ ├── FileNotFoundError │ ├── InterruptedError │ ├── IsADirectoryError │ ├── NotADirectoryError │ ├── PermissionError │ ├── ProcessLookupError │ └── TimeoutError ├── ReferenceError ├── RuntimeError │ ├── NotImplementedError │ └── RecursionError ├── StopAsyncIteration ├── StopIteration ├── SyntaxError │ └── IndentationError │ └── TabError ├── SystemError ├── TypeError ├── ValueError │ └── UnicodeError │ ├── UnicodeDecodeError │ ├── UnicodeEncodeError │ └── UnicodeTranslateError └── Warning ├── BytesWarning ├── DeprecationWarning ├── EncodingWarning ├── FutureWarning ├── ImportWarning ├── PendingDeprecationWarning ├── ResourceWarning ├── RuntimeWarning ├── SyntaxWarning ├── UnicodeWarning └── UserWarning ``` ## Excepciones propias { #custom-exceptions } Python ofrece una gran cantidad de [excepciones predefinidas](https://docs.python.org/es/3/library/exceptions.html#concrete-exceptions). Hasta ahora hemos visto cómo gestionar y manejar este tipo de excepciones. Pero hay ocasiones en las que nos puede interesar **crear nuestras propias excepciones**. Para ello simplemente tendremos que crear una clase que herede de `Exception` —la clase base para todas las excepciones— o de cualquier otra que cubra la necesidad demandada. Veamos un ejemplo:material-flash: en el que creamos una ^^excepción propia^^ para controlar que el valor dado sea un número entero: ```pycon >>> class NotIntError(Exception): ... pass ... ``` Ahora prepararemos una función que incrementa valores numéricos enteros (por defecto en 1), pero si alguno de los valores no es entero, elevaremos la excepción propia definida previamente: ```pycon hl_lines="7" >>> def increment(*values, weight = 1) -> list[int]: ... next_values = [] ... for value in values: ... if isinstance(value, int): ... next_values.append(value + weight) ... else: ... raise NotIntError(value) ... return next_values ... ``` Probemos la implementación anterior con un par de casos: ```pycon hl_lines="10" >>> increment(1, 8, 2, 3)#(1)! [2, 9, 3, 4] >>> increment(1, 8, 2.4, 3)#(2)! Traceback (most recent call last): Cell In[2], line 1 increment(1, 8, 2.4, 3) Cell In[1], line 7 in increment raise NotIntError(value) NotIntError: 2.4 ``` { .annotate } 1. Situación en la que todo va bien. 2. Situación de error debido al tipo de los argumentos. ### Personalizar la excepción { #customize-exception } La excepción propia no deja de ser una clase «ordinaria» escrita en Python que podemos personalizar según necesidad. Veamos a continuación varios ejemplos:material-flash: de personalización: === "Mensaje por defecto" ```pycon hl_lines="10 16" >>> class NotIntError(Exception): ... def __init__(self, message='This module only works with integers'): ... super().__init__(message) ... >>> raise NotIntError()#(1)! Traceback (most recent call last): Cell In[1], line 1 raise NotIntError() NotIntError: This module only works with integers >>> raise NotIntError(2.4)#(2)! Traceback (most recent call last): Cell In[1], line 1 raise NotIntError(2.4) NotIntError: 2.4 ``` { .annotate } 1. - Si no se aporta un mensaje, la excepción mostrará uno predefinido. - En este caso también se puede lanzar la excepción sin paréntesis con `#!python raise NotIntError` 2. Si se aporta un mensaje, la excepción lo mostrará. === "Creación de atributos" ```pycon >>> class NotIntError(Exception): ... def __init__(self, value): ... super().__init__(value) ... self.value = value#(1)! ... >>> try: ... raise NotIntError(2.4) ... except NotIntError as err: ... print(err.value)#(2)! ... 2.4 ``` { .annotate } 1. Creamos un atributo en la propia excepción para almacenar el valor «molesto». 2. Una vez capturada la excepción, podemos acceder a dicho valor (para cualquier otro procesamiento posterior). === "Creación de métodos" ```pycon >>> class NotIntError(Exception): ... def notify(self):#(1)! ... print('Notifying admin...') ... telegram.send('admin@example.com', 'NotIntError raised at your codebase') ... >>> try: ... raise NotIntError(2.4) ... except NotIntError as err: ... err.notify()#(2)! ... Notifying admin... ``` { .annotate } 1. Creamos un método que permite notificar al administrador de que se ha lanzado una excepción de este tipo. 2. Realizamos la notificación del error una vez capturada la excepción. ## Aserciones { #asserts } Si hablamos de control de errores hay que citar una sentencia en Python denominada `#!python assert`. Esta sentencia nos permite comprobar si se están cumpliendo las «expectativas» de nuestro programa, y en caso contrario, lanza una excepción informativa. Su sintaxis es muy simple. Únicamente tendremos que indicar una expresión de comparación después de la sentencia: ```pycon >>> result = 1 >>> assert result > 0#(1)! >>> result = -1 >>> assert result > 0#(2)! Traceback (most recent call last): Cell In[4], line 1 assert result > 0 AssertionError ``` { .annotate } 1. Si la condición se cumple no obtendremos ninguna salida. 2. Si la condición no se cumple se lanza una excepción de tipo `AssertionError`. Es posible añadir un **mensaje informativo** a la excepción: ```pycon >>> result = -1 >>> assert result > 0, 'Result must be positive' Traceback (most recent call last): Cell In[2], line 1 assert result > 0, 'Result must be positive' AssertionError: Result must be positive ``` !!! info "Testing" Las aserciones son muy utilizadas en **testing** donde se trata de comprobar el correcto funcionamiento de los artefactos implementados. ## Ejercicios { #exercises } 1. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `poker-card` ================================================ FILE: docs/core/modularity/functions.md ================================================ --- icon: material/function tags: - Fundamentos del lenguaje - Modularidad - Funciones --- # Funciones { #functions } ![Banner](images/functions/banner.jpg) /// caption Imagen generada con Inteligencia Artificial /// El concepto de **función** es básico en prácticamente cualquier lenguaje de programación. Se trata de un artefacto que nos permite agrupar código. Persigue dos objetivos claros: 1. **No repetir** fragmentos de código en un programa. 2. **Reutilizar** el código en distintos escenarios. Una función viene definida por su **nombre**, sus **parámetros** y su **valor de retorno**. Esta parametrización de las funciones las convierten en una poderosa herramienta ajustable a distintas circunstancias. Al invocarla estaremos solicitando su ejecución y obtendremos unos resultados. ## Definir una función { #define } Para **def**{ .blue }inir (_define_) una función utilizamos la palabra reservada `#!python def` seguida del **nombre** de la función. A continuación aparecerán 0 o más **parámetros** separados por comas (entre paréntesis), finalizando la línea con **dos puntos** `:` En la siguiente línea empezaría el **cuerpo** de la función que puede contener 1 o más **sentencias**, incluyendo (o no) una **sentencia de retorno** con el resultado mediante `#!python return`. ![Dark image](images/functions/def-dark.svg#only-dark) ![Light image](images/functions/def-light.svg#only-light) !!! tip "Dos puntos" Prestar especial atención a los dos puntos `:` porque suelen olvidarse en la _definición _ de la función. Veamos una primera función muy sencilla: ```python def say_hello():#(1)! print('Hello!')#(2)! ``` { .annotate } 1. - Los **nombres** de las funciones siguen [las mismas reglas que las variables](../datatypes/data.md#variables). - Como regla general, se suelen utilizar **verbos** en infinitivo para su definicón: `load_data`, `store_vaues`, `reset_card`, `filter_results`, `block_request`, ... 2. Nótese la [indentación](../controlflow/conditionals.md#blocks) del _cuerpo_ de la función. ## Invocar una función { #invoke } Para **invocar** (o «llamar») a una función sólo tendremos que escribir su nombre seguido de paréntesis. En el caso de la función sencilla (vista anteriormente) sería así: ```pycon hl_lines="4" >>> def say_hello(): ... print('Hello!') ... >>> say_hello()#(1)! Hello! ``` { .annotate } 1. La invocación (o llamada) a la función desencadena la ejecución de su código. Por ello obtenemos la salida esperada. Es importante entender que la definición de la función debe ser **previa** a su llamada, de lo contrario recibiremos un error: ```pycon hl_lines="7" >>> say_hello() --------------------------------------------------------------------------- NameError Traceback (most recent call last) Cell In[1], line 1 ----> 1 say_hello() NameError: name 'say_hello' is not defined ``` ## Retornar un valor { #return } Las funciones pueden retornar (o «devolver») un valor. Veamos un ejemplo:material-flash: muy sencillo: ```pycon >>> def one(): ... return 1#(1)! ... >>> one() 1 ``` { .annotate } 1. - No confundir `#!python return` con `#!python print()` - El valor de retorno de una función nos permite usarlo fuera de su contexto. - El hecho de añadir `#!python print()` al cuerpo de una función es algo «coyuntural» y no modifica el resultado de la lógica interna. Pero no sólo podemos invocar a la función directamente, también la podemos asignar a variables y utilizarla: ```pycon >>> value = one() >>> print(value) 1 ``` También la podemos integrar en otras expresiones, por ejemplo en condicionales: ```pycon >>> if one() == 1: ... print('It works!') ... else: ... print('Something is broken') ... It works! ``` Si una función no incluye un `#!python return` de forma explícita, devolverá `#!python None` de forma implícita: ```pycon >>> def empty(): ... x = 0 >>> print(empty()) None ``` !!! warning "Explícito es mejor que implícito" En general, usar `#!python return` ^^implícito^^ **no se considera una buena práctica** salvo que sepamos lo que estamos haciendo. Si la función debe devolver `#!python None` **es preferible ser explícito** y utilizar `#!python return None`. #### Retornando múltiples valores { #multiple-return } Una función puede retornar más de un valor. El «secreto» es hacerlo **mediante una tupla**. A continuación se muestra un ejemplo:material-flash: muy sencillo de función que retorna dos valores: ```pycon >>> def multiple(): ... return 0, 1#(1)! ... ``` { .annotate } 1. - `#!python 0, 1` es una tupla! - Sería equivalente a: `#!python return (0, 1)` Veamos qué ocurre si invocamos esta función: ```pycon >>> result = multiple() >>> result (0, 1) >>> type(result) tuple ``` Por tanto, también podremos aplicar [desempaquetado de tuplas](../datastructures/tuples.md#unpack) sobre el valor retornado por la función: ```pycon >>> a, b = multiple() >>> a 0 >>> b 1 ``` ## Funciones auxiliares { #aux-funcs } Es bastante probable que en un programa ~~utilicemos~~ necesitemos funciones para resolver un determinado problema. En este sentido, hay que entender que podemos definir y utilizar todas aquellas funciones que consideremos necesarias (funciones auxiliares) para conseguir el fin deseado. Veamos un ejemplo:material-flash: muy sencillo: ```python def func1(): return 1 def func2(): return 2 def run(): return func1() + func2() run() ``` ```mermaid flowchart LR S((Start)) --> run["run()"] run --> f1["func1()"] run --> f2["func2()"] f1 -.->|1| run f2 -.->|2| run run ---->|3| E(((End))) ``` !!! warning "Orden de las funciones" Es importante definir las funciones ^^antes^^ de utilizarlas. ## Parámetros y argumentos { #parameters } Si una función no dispusiera de valores de entrada, su comportamiento quedaría muy limitado. Es por ello que los **parámetros** nos permiten variar los datos que consume una función y obtener distintos resultados. Vamos a empezar a crear funciones que reciben parámetros. En este primer ejemplo:material-flash: se define una función que recibe un valor numérico y devuelve su raíz cuadrada: ```pycon >>> def sqrt(value):#(1)! ... return value ** (1/2) ... >>> sqrt(4)#(2)! 2.0 ``` { .annotate } 1. `#!python value` es un **parámetro**. 2. `#!python 4` es un **argumento**. Cuando llamamos a una función, los valores que pasamos se denominan **argumentos** y se copian en los respectivos _parámetros_ de la función: ![Dark image](images/functions/args-params-dark.svg#only-dark) ![Light image](images/functions/args-params-light.svg#only-light) Veamos otro ejemplo:material-flash: de función pero ahora con **dos parámetros** y algo más de _lógica de negocio_[^1]: ```pycon >>> def _min(a, b): ... if a < b: ... return a ... else:#(1)! ... return b ... >>> _min(7, 9) 7 ``` { .annotate } 1. Esta sentencia `#!python else` es **prescindible** ya que la sentencia anterior es un `#!python return`. !!! info "Múltiples sentencias de retorno" Nótese que la sentencia `#!python return` puede aparecer **varias veces** en el cuerpo de una función (y no siempre al final). Esta técnica puede ser beneficiosa en determinados escenarios.[^2] !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `sum-squares` ### Argumentos posicionales { #args } Los **argumentos posicionales** son aquellos argumentos que se copian en sus correspondientes parámetros **por orden de escritura**. Vamos a mostrar un ejemplo:material-flash: definiendo una función que «construye» una CPU a partir de tres parámetros: ```pycon >>> def build_cpu(vendor, num_cores, freq): ... return { ... 'vendor': vendor, ... 'num_cores': num_cores, ... 'freq': freq ... } ... ``` Una posible llamada a esta función —con argumentos posicionales— sería la siguiente: ```pycon >>> build_cpu('AMD', 8, 2.7)#(1)! {'vendor': 'AMD', 'num_cores': 8, 'freq': 2.7} ``` { .annotate } 1. Mapeo entre argumentos y parámetros: - `AMD` :material-arrow-right-bold: `vendor` - `8` :material-arrow-right-bold: `num_cores` - `2.7` :material-arrow-right-bold: `freq` En el uso de argumentos posicionales hay un inconveniente: **recordar el orden**. Un error en la posición de los argumentos puede dar lugar a resultados indeseados: ```pycon >>> build_cpu(8, 2.7, 'AMD') {'vendor': 8, 'num_cores': 2.7, 'freq': 'AMD'} ``` ### Argumentos nominales { #kwargs } En esta aproximación los argumentos no son copiados en un orden específico sino que **se asignan por nombre a cada parámetro**. Esto nos permite evitar el problema de conocer cuál debe ser el orden de los parámetros en la definición de la función. Para utilizarlo, basta con realizar una asignación de cada argumento en la propia llamada a la función. Veamos la misma llamada que hemos hecho en el ejemplo:material-flash: de «construcción» de la CPU pero ahora utilizando paso de argumentos nominales: ```pycon >>> build_cpu(vendor='AMD', num_cores=8, freq=2.7)#(1)! {'vendor': 'AMD', 'num_cores': 8, 'freq': 2.7} ``` { .annotate } 1. Mapeo entre argumentos y parámetros (por su nombre). Se puede comprobar que el _orden de los argumentos_ no influye en el resultado final: ```pycon >>> build_cpu(num_cores=8, freq=2.7, vendor='AMD') {'vendor': 'AMD', 'num_cores': 8, 'freq': 2.7} ``` ### Argumentos posicionales y nominales { #args-kwargs } Python permite **mezclar argumentos posicionales y nominales** en la llamada a una función: ```pycon >>> build_cpu('INTEL', num_cores=4, freq=3.1) {'vendor': 'INTEL', 'num_cores': 4, 'freq': 3.1} ``` Pero hay que tener en cuenta que, en este escenario, **los argumentos posicionales siempre deben ir antes que los argumentos nominales**. Esto tiene mucho sentido ya que, de no hacerlo así, Python no tendría forma de discernir a qué parámetro corresponde cada argumento: ```pycon hl_lines="5" >>> build_cpu(num_cores=4, 'INTEL', freq=3.1) Cell In[1], line 1 build_cpu(num_cores=4, 'INTEL', freq=3.1) ^ SyntaxError: positional argument follows keyword argument ``` ### Argumentos mutables e inmutables { #mutable-args } Cuando realizamos modificaciones a los argumentos de una función es importante tener en cuenta si son **mutables** (listas, diccionarios, conjuntos, ...) o **inmutables** (tuplas, enteros, flotantes, cadenas de texto, ...) ya que podríamos obtener efectos colaterales no deseados. Supongamos un ejemplo:material-flash: en el que nos piden escribir una función **que reciba una lista y que devuelva sus valores elevados al cuadrado**. Una primera aproximación... ```pycon >>> values = [2, 3, 4] >>> def square_it(values): ... for index in range(len(values)): ... values[index] **= 2#(1)! ... return values >>> square_it(values) [4, 9, 16] >>> values#(2)! [4, 9, 16] ``` { .annotate } 1. Aquí estamos modificando la lista de entrada. 2. Efectivamente la lista se ha modificado. !!! warning "Modificaciones controladas" Es totalmente válido implementar una solución como la que hemos visto, pero como **norma general** no se recomienda que las funciones modifiquen sus argumentos. Habitualmente se suele retornar un resultado con los nuevos valores. ### Parámetros con valores por defecto { #default } Es posible especificar **valores por defecto** en los parámetros de una función. En el caso de que no se proporcione un valor al argumento en la llamada a la función, el parámetro correspondiente tomará el valor definido por defecto. Siguiendo con el ejemplo:material-flash: de la CPU, podemos asignar _2.0GHz_ como frecuencia de reloj por defecto. La definición de la función cambiaría ligeramente: ```pycon >>> def build_cpu(vendor, num_cores, freq=2.0): ... return { ... 'vendor': vendor, ... 'num_cores': num_cores, ... 'freq': freq ... } ... ``` === "Llamada sin frecuencia" Llamada a la función sin especificar frecuencia de CPU: ```pycon >>> build_cpu('INTEL', 2) {'vendor': 'INTEL', 'num_cores': 2, 'freq': 2.0} ``` === "Llamada con frecuencia" Llamada a la función indicando una frecuencia concreta de CPU: ```pycon >>> build_cpu('INTEL', 2, 3.4) {'vendor': 'INTEL', 'num_cores': 2, 'freq': 3.4} ``` Es importante tener presente que **los valores por defecto en los parámetros se calculan cuando se define la función**, no cuando se ejecuta. Veamos un ejemplo:material-flash: siguiendo con el caso anterior: ```pycon hl_lines="12 17" >>> DEFAULT_FREQ = 2.0 >>> def build_cpu(vendor, num_cores, freq=DEFAULT_FREQ): ... return { ... 'vendor': vendor, ... 'num_cores': num_cores, ... 'freq': freq ... } ... >>> build_cpu('AMD', 4) {'vendor': 'AMD', 'num_cores': 4, 'freq': 2.0} >>> DEFAULT_FREQ = 3.5#(1)! >>> build_cpu('AMD', 4) {'vendor': 'AMD', 'num_cores': 4, 'freq': 2.0} ``` { .annotate } 1. El hecho de modificar esta «constante» no afecta a la función ya que se definió previamente. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `factorial` ### Número variable de argumentos { #variable-arguments } Si nos quedamos en lo visto hasta ahora, una función podría recibir un gran número de argumentos, pero siempre sería un **número fijo**. Sin embargo hay ocasiones en las que necesitamos que una función reciba un número variable (a priori desconocido) de argumentos. Python nos ofrece la posibilidad de **empaquetar y desempaquetar argumentos** cuando estamos invocando a una función, tanto para [argumentos posicionales](#args) como para [argumentos nominales](#kwargs), lo que facilita la gestión de número variable de argumentos. === "Argumentos variables ^^posicionales^^" Supongamos un ejemplo:material-flash: de función que «construye» una hamburguesa :material-hamburger-plus:{.hl}: ```pycon >>> def make_burguer(*ingredients):#(1)! ... print('Making burguer with...', end=' ') ... print(', '.join(ingredients))#(2)! ... >>> make_burguer('chicken', 'tomato', 'cheese') Making burguer with... chicken, tomato, cheese >>> make_burguer('chicken', 'tomato', 'cheese', 'bacon', 'mayonnaise') Making burguer with... chicken, tomato, cheese, bacon, mayonnaise ``` { .annotate } 1. Se usa el **asterisco** para indicar un número variable de argumentos posicionales. 2. `ingredients` es una **tupla** que contiene (**empaqueta**) los argumentos pasados a la función. También podríamos llamar a la función **desempaquetando** argumentos: ```pycon >>> ingredients = ['chicken', 'tomato', 'cheese'] >>> make_burguer(*ingredients)#(1)! Making burguer with... chicken, tomato, cheese ``` { .annotate } 1. - En este contexto, el asterisco separa los argumentos al llamar a la función. - Serviría para cualquier estructura de datos que fuera **iterable**. === "Argumentos variables ^^nominales^^" Supongamos un ejemplo:material-flash: de función que «construye» una hamburguesa :material-hamburger-plus: pero donde no sólo queremos indicar los ingredientes sino las cantidades de cada ingrediente: ```pycon >>> def make_burguer(**ingredients):#(1)! ... print('Making burguer with...', end=' ') ... print(', '.join(f'{qty}g of {ing}' for ing, qty in ingredients.items()))#(2)! ... >>> make_burguer(chicken=200, tomato=20, cheese=75) Making burguer with... 200g of chicken, 20g of tomato, 75g of cheese >>> make_burguer(chicken=200, tomato=20, cheese=75, bacon=80, mayonnaise=15) Making burguer with... 200g of chicken, 20g of tomato, 75g of cheese, 80g of bacon, 15g of mayonnaise ``` { .annotate } 1. Se usa el **doble asterisco** para indicar un número variable de argumentos nominales. 2. `ingredients` es un **diccionario** que contiene (**empaqueta**) los argumentos pasados a la función. También podríamos llamar a la función **desempaquetando** argumentos: ```pycon >>> ingredients = {'chicken': 200, 'tomato': 20, 'cheese': 75} >>> make_burguer(**ingredients)#(1)! Making burguer with... 200g of chicken, 20g of tomato, 75g of cheese ``` { .annotate } 3. En este contexto, el doble asterisco separa los argumentos al llamar a la función. #### Convenciones { #args-standard } Es habitual encontrar la definición de **funciones genéricas** con un número variable de argumentos posicionales y/o nominales de la siguiente manera: ```pycon >>> def func(*args, **kwargs): ... ... ... ``` :material-check-all:{ .blue } El hecho de llamar `args` (por «arguments») a los argumentos posicionales y `kwargs` (por «keyword arguments») a los argumentos nominales es sólo una **convención**. ### Forzando modo de paso de argumentos { #force-arguments-mode } Si bien Python nos da flexibilidad para pasar argumentos a nuestras funciones en modo nominal o posicional, existen opciones para forzar que dicho paso sea obligatorio en una determinada modalidad. === "Argumentos sólo ^^nominales^^" A partir de Python :octicons-tag-24: 3.0 se ofrece la posibilidad de obligar a que determinados parámetros de la función sean pasados sólo por nombre. Para ello, en la definición de los parámetros de la función, tendremos que incluir un parámetro especial **asterisco** `*` que delimitará el tipo de parámetros. Así, **todos los parámetros a la derecha del asterisco estarán obligados a ser nominales**: ![Dark image](images/functions/params-only-keywords-dark.svg#only-dark) ![Light image](images/functions/params-only-keywords-light.svg#only-light) Veamos un sencillo ejemplo:material-flash: con una función que construye un nombre: ```pycon hl_lines="13" >>> def fullname(name, surname, *, to_upper=False): ... result = f'{name} {surname}' ... if to_upper: ... result = result.upper() ... return result ... >>> fullname('John', 'Romita') 'John Romita' >>> fullname(name='John', surname='Romita') 'John Romita' >>> fullname('John', 'Romita', to_upper=True) 'JOHN ROMITA' >>> fullname('John', 'Romita', True)#(1)! Traceback (most recent call last): Cell In[5], line 1 fullname('John', 'Romita', True) TypeError: fullname() takes 2 positional arguments but 3 were given ``` { .annotate } 1. Esta llamada no está permitida ya que el parámetro `to_upper` debe pasarse como **nominal**. === "Argumentos sólo ^^posicionales^^" A partir de Python :octicons-tag-24: 3.8 se ofrece la posibilidad de obligar a que determinados parámetros de la función sean pasados sólo por posición. Para ello, en la definición de los parámetros de la función, tendremos que incluir un parámetro especial **barra** `/` que delimitará el tipo de parámetros. Así, **todos los parámetros a la izquierda del delimitador estarán obligados a ser posicionales**: ![Dark image](images/functions/params-only-positional-dark.svg#only-dark) ![Light image](images/functions/params-only-positional-light.svg#only-light) Veamos un sencillo ejemplo:material-flash: con una función que construye un nombre: ```pycon hl_lines="13" >>> def fullname(name, surname, /, to_upper=False): ... result = f'{name} {surname}' ... if to_upper: ... result = result.upper() ... return result ... >>> fullname('John', 'Romita') 'John Romita' >>> fullname('John', 'Romita', True) 'JOHN ROMITA' >>> fullname('John', 'Romita', to_upper=True) 'JOHN ROMITA' >>> fullname(name='John', surname='Romita', to_upper=True)#(1)! Traceback (most recent call last): Cell In[5], line 1 fullname(name='John', surname='Romita', to_upper=True) TypeError: fullname() got some positional-only arguments passed as keyword arguments: 'name, surname' ``` { .annotate } 1. Esta llamada no está permitida ya que los parámetros `name` y `surname` deben pasarse como **posicionales**. === "Nominales y posicionales" Si mezclamos las dos estrategias anteriores podemos forzar a que una función reciba argumentos de un único modo. Veamos esta aproximación aplicada al ejemplo:material-flash: de la función que construye nombres: ```pycon >>> def fullname(name, surname, /, *, to_upper=False): ... result = f'{name} {surname}' ... if to_upper: ... result = result.upper() ... return result ... >>> fullname('John', 'Romita') 'John Romita' >>> fullname('John', 'Romita', to_upper=True) 'JOHN ROMITA' >>> fullname('John', 'Romita', True) Traceback (most recent call last): Cell In[4], line 1 fullname('John', 'Romita', True) TypeError: fullname() takes 2 positional arguments but 3 were given >>> fullname(name='John', surname='Romita', to_upper=True) Traceback (most recent call last): Cell In[42], line 1 fullname(name='John', surname='Romita', to_upper=True) TypeError: fullname() got some positional-only arguments passed as keyword arguments: 'name, surname' ``` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `consecutive-freqs` ### Funciones como parámetros { #func-as-params } Las funciones se pueden utilizar en cualquier contexto de nuestro programa. Son objetos que pueden ser asignados a variables, usados en expresiones, devueltos como valores de retorno o pasados como argumentos a otras funciones. Veamos un primer ejemplo:material-flash: en el que pasamos una función como argumento: ```pycon >>> def success(): ... print('Yeah!') ... >>> type(success) >>> def doit(func):#(1)! ... func()#(2)! ... >>> type(doit) >>> doit(success)#(3)! Yeah! ``` { .annotate } 1. En este contexto `func` es un parámetro de la función `doit()`. 2. Dado que `func` es una función, podemos invocarla. 3. Pasamos la función `success` como argumento. Veamos un segundo ejemplo:material-flash: en el que pasamos, no sólo una función como argumento, sino los valores con los que debe operar: ```pycon >>> def success(msg): ... print(f'{msg}. Yeah!') ... >>> type(success) >>> def doit(func, func_arg):#(1)! ... func(func_arg)#(2)! ... >>> type(doit) >>> doit(success, 'Functions as params')#(3)! Functions as params. Yeah! ``` { .annotate } 1. En este contexto `func_arg` es un argumento de la función `doit()` pero en realidad será el argumento de la función `func()`. 2. Dado que `func` es una función, podemos invocarla (con sus argumentos). 3. Pasamos la función `success` y el mensaje `#!python 'Functions as params'` como argumentos. ## Documentación { #docs } Ya hemos visto que en Python podemos incluir [comentarios](../controlflow/conditionals.md#comments) para explicar mejor determinadas zonas de nuestro código. Del mismo modo podemos (y en muchos casos **debemos**) _adjuntar documentación_ a la definición de una función incluyendo una cadena de texto («docstring») al comienzo de su cuerpo. Empecemos por un primer ejemplo:material-flash: de documentación en una función: ```pycon hl_lines="2" >>> def closest_int(value): ... 'Returns the closest integer to the given value' ... floor = int(value) ... if value - floor < 0.5: ... return floor ... return floor + 1 ... >>> closest_int(3.1) 3 >>> closest_int(3.7) 4 ``` Sin embargo la forma más ortodoxa de escribir un «docstring» es utilizando [triples comillas](../datatypes/strings.md#triple-quotes): ```pycon hl_lines="2-7" >>> def closest_int(value): ... """Returns the closest integer to the given value. ... The operation is: ... 1. Compute distance to floor. ... 2. If distance less than a half, return floor. ... Otherwise, return ceil. ... """ ... floor = int(value) ... if value - floor < 0.5: ... return floor ... else: ... return floor + 1 ... ``` Si utilizamos `#!python help` sobre una función, Python nos devolverá su «docstring» correspondiente: ```pycon >>> help(closest_int)#(1)! Help on function closest_int in module __main__: closest_int(value) Returns the closest integer to the given value. The operation is: 1. Compute distance to floor. 2. If distance less than a half, return floor. Otherwise, return ceil. ``` { .annotate } 1. - Otra forma de «pedir ayuda» es: ```pycon >>> closest_int?` ``` - Esto no sólo se aplica a funciones propias, sino a cualquier otra función definida en el lenguaje. - Si queremos ver el «docstring» de una función «en crudo» (sin formatear), podemos usar `#!python func.__doc__` ### Descripción de parámetros { #param-description } Como ya se ha visto, es posible documentar una función utilizando un «docstring». Pero la _redacción y el formato_ de esta cadena de texto puede ser muy variada. Existen distintos formatos para documentar una función (u otros objetos)[^3]: | Tipo de formato | Descripción | Soporta [Sphinx](https://www.sphinx-doc.org/) | --- | --- | --- | | [reStructuredText](https://peps.python.org/pep-0287/) | Formato de documentación **recomendado** por [Python](https://www.python.org/). | :material-check:{.green} | | [Google](https://github.com/google/styleguide/blob/gh-pages/pyguide.md#38-comments-and-docstrings) | Formato de documentación utilizado por [Google](https://google.com). | :material-check:{.green} | | [NumPy](https://numpydoc.readthedocs.io/en/latest/format.html#docstring-standard) | Formato de documentación utilizado por [NumPy](https://numpy.org/)[^4]. | :material-check:{.green} | | [Epytext](https://epydoc.sourceforge.net/epytext.html) | Formato de documentación utilizado por [Epydoc](https://epydoc.sourceforge.net/)[^5]. | :octicons-x-12:{.red} Aunque cada uno tienes sus particularidades, todos comparten una misma estructura: 1. Una primera línea de **descripción de la función**. 2. A continuación se especifican las **características de los parámetros** (incluyendo sus tipos). 3. Por último, indicamos si la función **retorna un valor** y sus características. :material-check-all:{ .blue } Aunque todos los formatos son válidos, nos centraremos en **reStructuredText** por ser el estándar propuesto por Python para la documentación. #### Sphinx { #sphinx } Sphinx es una **herramienta para generar documentación** usando el lenguaje [reStructuredText](https://www.sphinx-doc.org/es/master/usage/restructuredtext/index.html) (RST). Incluye un módulo «built-in» denominado [`autodoc`](https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html) el cual permite la _autogeneración de documentación_ a partir de los «docstrings» definidos en el código. Veamos un ejemplo:material-flash: de aplicación de este formato de documentación sobre la función definida previamente: ```python title="functions.py" hl_lines="2-11" def power(x, n): """Calculates powers of numbers. :param x: number representing the base of the operation :type x: int :param n: number representing the exponent of the operation :type n: int :return: x raised to the power of n :rtype: int """ result = 1 for _ in range(n): result *= x return result ``` Si preparamos un [proyecto sobre Sphinx](./files/functions/docs.zip) y generamos la documentación, obtendremos algo similar a la siguiente página: ![Dark image](images/functions/sphinx-docs-dark.png#only-dark) ![Light image](images/functions/sphinx-docs-light.png#only-light) !!! info "Read the Docs" La plataforma [Read the Docs](https://about.readthedocs.com/) aloja la documentación de gran cantidad de proyectos. En muchos de los casos se han usado «docstrings» con el formato Sphinx (_reStructuredText_) visto anteriormente. Un ejemplo:material-flash: de esta documentación es la popular librería de Python [requests](https://requests.readthedocs.io/en/latest/api/). ### Anotación de tipos { #type-hints } Las anotaciones de tipos (o «type-hints») se introdujeron en Python :octicons-tag-24: 3.5 y permiten indicar tipos para los parámetros de una función y/o para su valor de retorno (_aunque también funcionan en creación de variables_). Veamos un ejemplo:material-flash: en el que creamos una función para **dividir una cadena de texto** por la posición especificada en el parámetro: ```pycon hl_lines="1" >>> def ssplit(text: str, split_pos: int) -> tuple:#(1)! ... 'Split text at the index given by split_post' ... return text[:split_pos], text[split_pos:] ... >>> ssplit('Always remember us this way', 15) ('Always remember', ' us this way') ``` { .annotate } 1. - Cada parámetro incluye **dos puntos** `:` y el tipo de dato que «debería» recibir. - Para el valor de retorno utilizamos una **flecha** `->` Probemos ahora el siguiente código: ```pycon >>> ssplit([1, 2, 3, 4, 5, 6, 7, 8, 9, 10], 5) ([1, 2, 3, 4, 5], [6, 7, 8, 9, 10]) ``` ¿Cómo ha podido funcionar si `ssplit()` espera ver una _cadena de texto_ y estamos pasando una _lista de enteros_? Esto ocurre porque lo que hemos definido es simplemente una **anotación de tipo**, no una declaración de tipo[^6]. Lo podríamos ver como **una forma más de documentar la función**. #### Valores por defecto { #type-hints-default } Al igual que ocurre en la definición ordinaria de funciones, cuando usamos anotaciones de tipos también podemos indicar un valor por defecto para los parámetros. Veamos la forma de hacerlo continuando con el ejemplo:material-flash: anterior: ```pycon >>> def ssplit(text: str, split_pos: int = None) -> tuple:#(1)! ... """ ... Split text at the index given by split_post. ... If split_pos is not defined, text will be splitted by half. ... """ ... if split_pos is None: ... split_pos = len(text) // 2 ... return text[:split_pos], text[split_pos:] ... >>> ssplit('Always remember us this way') ('Always rememb', 'er us this way') ``` { .annotate } 1. Simplemente se añade el valor por defecto después del tipo. #### Tipos compuestos { #type-hints-composed } Hay escenarios en los que necesitamos más expresividad de cara a la anotación de tipos. Por ejemplo:material-flash: ¿qué ocurre si queremos indicar una _lista de cadenas de texto_ o un _conjunto de enteros_? En la siguiente tabla se muestran distintos métodos para **anotaciones de tipos compuestos**: | Anotación | Ejemplo | | --- | --- | | `#!python list[str]` | `#!python ['A', 'B', 'C']` | | `#!python set[int]` | `#!python {4, 3, 9}` | | `#!python dict[str, float]` | `#!python {'x': 3.786, 'y': 2.198, 'z': 4.954}` | | `#!python tuple[str, int]` | `#!python ('Hello', 10)` | | `#!python tuple[float, ...]` | `#!python (7.11,)` :material-slash-forward: `#!python (4.31, 6.87)` :material-slash-forward: `#!python (1.23, 5.21, 3.62)` | #### Múltiples tipos { #type-hints-multiple } A partir de Python :octicons-tag-24: 3.10 podemos indicar (anotar) que un parámetro sea de un tipo u otro utilizando el operador `|`. Veamos algunos ejemplos:material-flash: válidos: | Anotación | Significado | | --- | --- | | `#!python tuple|dict` | Tupla o diccionario | | `#!python list[str|int]` | Lista de cadenas de texto y/o enteros | | `#!python set[int|float]` | Conjunto de enteros y/o flotantes | #### Número variable de argumentos { #type-hints-variable } Cuando trabajamos con funciones que pueden recibir un [número variable de argumentos](#variable-arguments) las anotaciones de tipo **sólo deben hacer referencia al tipo que contiene la tupla**, no es necesario indicar que se trata de una tupla (empaquetada). En el siguiente ejemplo:material-flash: se define una función que calcula el máximo de una serie de valores enteros o flotantes, pero no indicamos que se reciben como tupla: ```pycon >>> def _max(*args: int | float): ... ... ... ``` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `mcount` ## Tipos de funciones { #func-types } En este apartado veremos los distintos tipos de funciones existentes en Python y sus características. ### Funciones anónimas «lambda» { #lambda } Una función «lambda» tiene las siguientes propiedades: 1. Se escribe en una única sentencia (línea). 2. No tiene nombre (por eso es anónima). 3. Su cuerpo conlleva un `#!python return` implícito. 4. Puede recibir cualquier número de parámetros (si así se define). Veamos un primer ejemplo:material-flash: de función «lambda» que permite **contar el número de «palabras» de una cadena de texto dada**: ```pycon >>> lambda t: len(t.split())#(1)! at 0x103d277e0> ``` { .annotate } 1. En funciones «lambda» hay una cierta «licencia» para abreviar nombres de variables y que no ocupen tanto espacio. Visto así quizás haya dudas de su escritura, pero analicemos cuál es la transformación que se ha llevado a cabo: ![Dark image](images/functions/lambda-dark.svg#only-dark) ![Light image](images/functions/lambda-light.svg#only-light) A continuación probamos el comportamiento de la función anónima «lambda» creada previamente: ```pycon >>> num_words = lambda t: len(t.split())#(1)! >>> type(num_words)#(2)! >>> num_words at 0x103ca9da0> >>> num_words('This is a lambda function')#(3)! 5 ``` { .annotate } 1. Para poder invocarla, es necesario asignar una variable. 2. Obviamene se trata de una función. 3. La llamada es análoga a la de una función «tradicional». #### Una «lambda» como argumento { #lambda-arg } Las funciones «lambda» son habitualmente **utilizadas como argumentos a otras funciones**. Un claro ejemplo:material-flash: de ello es la función `sorted()` que recibe un parámetro opcional `key` donde se define la _clave de ordenación_. Partimos de una tupla con pares _latitud-longitud_: ```pycon >>> geoloc = ( ... (15.623037, 13.258358), ... (55.147488, -2.667338), ... (54.572062, -73.285171), ... (3.152857, 115.327724), ... (-40.454262, 172.318877) ... ) ``` Ahora veamos el comportamiento de la ordenación en función de la clave indicada: === "Ordenación por defecto :octicons-sort-asc-16:" ```pycon >>> sorted(geoloc)#(1)! [(-40.454262, 172.318877), (3.152857, 115.327724), (15.623037, 13.258358), (54.572062, -73.285171), (55.147488, -2.667338)] ``` { .annotate } 1. Por defecto las tuplas se ordenan por el primer elemento de la tupla :material-arrow-right-bold: latitud. === "Ordenación con «lambda» :material-lambda:" ```pycon >>> sorted(geoloc, key=lambda geo: geo[1])#(1)! [(54.572062, -73.285171), (55.147488, -2.667338), (15.623037, 13.258358), (3.152857, 115.327724), (-40.454262, 172.318877)] ``` { .annotate } 1. `#!python geo[1]` hace referencia al segundo elemento de la tupla :material-arrow-right-bold: longitud. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `order-by-age` #### Enfoque funcional { #functional-approach } Como ya se comentó [aquí](../introduction/python.md#language-features) Python es un lenguaje de programación **multiparadigma**. Uno de los paradigmas[^7] menos explotados en este lenguaje es la [programación funcional](https://es.wikipedia.org/wiki/Programaci%C3%B3n_funcional). Python nos ofrece tres funciones que encajan verdaderamente bien en este enfoque: `#!python map()`, `#!python filter()` y `#!python reduce()`: ![Dark image](images/functions/map-filter-reduce-dark.svg#only-dark) ![Light image](images/functions/map-filter-reduce-light.svg#only-light) === "`map()`" Esta función **aplica** otra función sobre cada elemento de un iterable: ```pycon >>> map_gen = map(lambda x: 2*x, range(1, 6))#(1)! >>> map_gen#(2)! >>> list(map_gen)#(3)! [2, 4, 6, 8, 10] ``` { .annotate } 1. Utilizamos una función «lambda» sobre `map`. 2. `map()` retorna una especie de _generador_. 3. Al convertirlo a lista podemos ver el resultado esperado. !!! tip "Lista por comprensión" Este comportamiento se puede implementar igualmente con una [lista por comprensión](../datastructures/lists.md#comprehension): ```pycon >>> [2*x for x in range(1, 6)] [2, 4, 6, 8, 10] ``` === "`filter()`" Esta función **selecciona** los elementos de un iterable que cumplen una determinada condición: ```pycon >>> filter_gen = filter(lambda x: x > 2, range(1, 6))#(1)! >>> filter_gen#(2)! >>> list(filter_gen)#(3)! [3, 4, 5] ``` { .annotate } 1. Utilizamos una función «lambda» sobre `filter`. 2. `filter()` retorna una especie de _generador_. 3. Al convertirlo a lista podemos ver el resultado esperado. !!! tip "Lista por comprensión" Este comportamiento se puede implementar igualmente con una [lista por comprensión](../datastructures/lists.md#comprehension): ```pycon >>> [x for x in range(1, 6) if x > 2] [3, 4, 5] ``` === "`reduce()`" Esta función **reduce** el resultado aplicando sucesivamente una función sobre un iterable: ```pycon >>> from functools import reduce#(1)! >>> reduce(lambda x, y: x + y, range(1, 6))#(2)! 15 ``` { .annotate } 1. Importamos la función `reduce()` desde el módulo [`functools`](https://docs.python.org/es/3/library/functools.html). 2. Utilizamos una función «lambda» sobre `reduce`. #### Hazlo pitónico { #pythonic } [Trey Hunner](https://treyhunner.com/) explica en una de sus «newsletters» lo que él entiende por **código pitónico**: !!! quote "Código pitónico" Pitónico es un término extraño que significa diferentes cosas para diferentes personas. Algunas personas piensan que código pitónico va sobre legibilidad. Otras personas piensan que va sobre adoptar características particulares de Python. Mucha gente tiene una definición difusa que no va sobre legibilidad ni sobre características del lenguaje. Yo normalmente uso el término código pitónico como un sinónimo de **código idiomático** o la forma en la que la comunidad de Python tiende a hacer las cosas cuando escribe Python. Eso deja mucho espacio a la interpretación, ya que lo que hace algo idiomático en Python no está particularmente bien definido. Yo argumento que código pitónico implica adoptar el [desempaquetado de tuplas](../datastructures/tuples.md#unpack), usar [listas por comprensión](../datastructures/lists.md#comprehension) cuando sea apropiado, usar [argumentos nominales](#kwargs) cuando tenga sentido, evitar el uso excesivo de clases, usar las [estructuras de iteración adecuadas](../controlflow/loops.md) o [evitar recorrer mediante índices](../datastructures/lists.md#iterate). Para mí, código pitónico significa intentar ver el código desde la perspectiva de las herramientas específicas que Python nos proporciona, en oposición a la forma en la que resolveríamos el mismo problema usando las herramientas que nos proporciona JavaScript, Java, C, ... ### Generadores { #generators } Un **generador** es un artefacto que se encarga de generar «valores» que podemos tratar de manera individual (y aislada). Es decir, no construye una secuencia de forma explícita, sino que nos permite ir «consumiendo» un valor de cada vez. Esta propiedad los hace idóneos para situaciones en las que el tamaño de las secuencias podría tener un impacto negativo en el consumo de memoria. De hecho ya hemos visto algunos generadores y los hemos estado usando sin ser del todo conscientes. Un ejemplo:material-flash: de ello es `#!python range()`[^8] que ofrece la posibilidad de crear secuencias de números. Básicamente existen dos implementaciones de generadores: 1. Funciones generadoras. 2. Expresiones generadoras. !!! note "Recordar el estado" A diferencia de las funciones ordinarias, las **funciones generadoras** tienen la capacidad de **«recordar» su estado** para recuperarlo en la siguiente iteración y continuar devolviendo nuevos valores. #### Funciones generadoras { #genfun } Una función generadora es una factoría de generadores, o dicho de otra manera, es una función que devuelve generadores. Se escribe exactamente igual que una función ordinaria salvo por el hecho de que en vez de la sentencia `#!python return` aquí vamos a utilizar `#!python yield`. Veamos un ejemplo:material-flash: en el que escribimos una **función generadora de números pares**: ```pycon >>> def evens(lim: int): ... for num in range(0, lim + 1, 2): ... yield num#(1)! ... >>> type(evens)#(2)! function >>> evens_gen = evens(20)#(3)! >>> type(evens_gen)#(4)! generator ``` { .annotate } 1. - Se retorna `num` sea cual sea su valor en este momento. - La ejecución de la función se **congela** :fontawesome-solid-ice-cream: (hasta la próxima llamada). 2. Efectivamente `evens` es una función. 3. Usamos la _factoría de generadores_ `evens()` para crear un generador con `#!python lim=20`. 4. Efectivamente `evens_gen` es un generador. ¿Cómo obtengo entonces los valores «finales» a partir de un generador? Hay dos enfoques para resolver esta pregunta: === "Poco a poco :material-walk:" ```pycon >>> for even in evens_gen:#(1)! ... print(even) ... 0 2 4 6 8 10 12 14 16 18 20 ``` { .annotate } 1. - Cada vez que iteramos sobre el generador, solicitamos un nuevo valor. - Efectivamente la función se congela hasta la próxima «petición». - El bucle acaba cuando ya no quedan valores que devolver desde el generador. === "Todo a la vez :material-run:" ```pycon >>> list(evens_gen)#(1)! [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20] ``` { .annotate } 1. La conversión a lista obliga al generador a devolver todos sus valores. !!! warning "Los generadores se agotan" Es importante entender que los generadores se agotan. Es decir, una vez que hayamos consumido todos sus elementos, no obtendremos nuevos valores: ```pycon >>> evens_gen = evens(10) >>> for even in evens_gen: ... print(even) ... 0 2 4 6 8 10 >>> list(evens_gen)#(1)! [] ``` { .annotate } 1. Obtenemos la lista vacía porque los valores ya han sido generados (y consumidos) en el bucle anterior. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `genfun-squares` #### Expresiones generadoras { #genexp } Una **expresión generadora** es sintácticamente muy similar a una [lista por comprensión](../datastructures/lists.md#comprehension), pero utilizamos ^^paréntesis^^ en vez de corchetes. Podemos tratar de reproducir el ejemplo:material-flash: visto en [funciones generadoras](#genfun) donde se producían números pares: ```pycon >>> evens_gen = (n for n in range(0, 20, 2)) >>> type(evens_gen)#(1)! generator >>> for even in evens_gen: ... print(even) ... 0 2 4 6 8 10 12 14 16 18 ``` { .annotate } 1. Hay que tener en cuenta que una **expresión generadora es ya un generador**, por tanto su aplicación es directa. Una expresión generadora se puede explicitar[^9], sumar, buscar su máximo o su mínimo, o lo que queramos, tal y como lo haríamos con un iterable cualquiera: ```pycon >>> list(n for n in range(0, 20, 2)) [0, 2, 4, 6, 8, 10, 12, 14, 16, 18] >>> sum(n for n in range(0, 20, 2)) 90 >>> min(n for n in range(0, 20, 2)) 0 >>> max(n for n in range(0, 20, 2)) 18 ``` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `genexp-squares` ### Funciones interiores { #inner-functions } Está permitido definir una función dentro de otra función. Es lo que se conoce como **función interior**. Veamos un ejemplo:material-flash: en el que extraemos de un texto aquellas palabras que contienen todas las vocales, haciendo uso de una función interior que nos indica si la palabra contiene todas las vocales: ```pycon hl_lines="2-3" >>> def get_words_with_all_vowels(text: str) -> list[str]: ... def has_all_vowels(word: str, vowels: str = 'aeiou') -> bool:#(1)! ... return len(set(vowels) - set(word.lower())) == 0 ... ... return [w for w in text.split() if has_all_vowels(w)]#(2)! ... >>> get_words_with_all_vowels('La euforia de ver el riachuelo fue inmensa') ['euforia', 'riachuelo'] ``` { .annotate } 1. Una función interior no se diferencia en nada de una función «clásica» simplemente está dentro de otra. 2. Llamada a nuestra función interior. ### Clausuras { #closures } Una **clausura** (del término inglés «closure») establece el uso de una [función interior](#inner-functions) que se genera dinámicamente y recuerda los valores de los argumentos con los que fue creada. Veamos una clausura en acción para un ejemplo:material-flash: de _tablas de multiplicar_: ```pycon >>> def make_multiplier_of(n: int): ... def multiplier(x: int) -> int:#(1)! ... return x * n#(2)! ... return multiplier#(3)! ... >>> m3 = make_multiplier_of(3)#(4)! >>> type(m3) function >>> m3(7)#(5)! 21 >>> m5 = make_multiplier_of(5)#(6)! >>> type(m5) function >>> m5(8)#(7)! 40 >>> make_multiplier_of(7)(8)#(8)! 56 ``` { .annotate } 1. Función interior que se genera dinámicamente. 2. El valor de `n` viene determinado por el parámetro `n` que recibe la función `make_multiplier_of()` 3. ¡Se devuelve una función! 4. `m3` es una función que da la _tabla de multiplicar del 3_. 5. $3 \cdot 7 = 21$ 6. `m5` es una función que da la _tabla de multiplicar del 5_. 7. $8 \cdot 5 = 40$ 8. - Aunque menos frecuente, también es posible hacer la ~~doble~~ llamada directamente. - $7 \cdot 8 = 56$ !!! tip "Factoría de funciones" En una clausura se retorna una función, no un valor. Es por ello que se dice que **una clausura es una factoría de funciones**. ### Decoradores { #decorators } Hay situaciones en las que necesitamos modificar el comportamiento de funciones existentes pero sin alterar su código. Para estos casos es muy útil usar decoradores. **Un decorador es una función que recibe como parámetro una función y devuelve otra función** (_se podría ver como un caso particular de una clausura_). ![Dark image](images/functions/decorator-behaviour-dark.svg#only-dark) ![Light image](images/functions/decorator-behaviour-light.svg#only-light) El _esqueleto básico_ de un decorador es el siguiente: ```python def my_decorator(func):#(1)! def wrapper(*args, **kwargs):#(2)! ... #(3)! return func(*args, **kwargs)#(4)! ... #(5)! return wrapper#(6)! ``` { .annotate } 1. Cada función envuelve («wraps») a la siguiente: ![Decorator anatomy](images/functions/decorator-anatomy.svg) 2. Función interior que «enmascara» a la función de decorada y recibe sus argumentos (posicionales y nominales). 3. Acciones a tomar ^^antes^^ de invocar a la función decorada. 4. Llamada a la función decorada. 5. Acciones a tomar ^^después^^ de invocar a la función decorada. 6. Se devuelve la función interior que modifica la función original. Veamos un ejemplo:material-flash: de decorador que **convierte el resultado numérico de una función a su representación binaria**: ```pycon >>> def binarize(func): ... def wrapper(*args, **kwargs): ... result = func(*args, **kwargs) ... return bin(result) ... return wrapper ... ``` Una característica interesante de los decoradores es que los podemos aplicar a cualquier función[^10]. Supongamos que lo queremos aplicar sobre la siguiente: ```pycon hl_lines="4" >>> def add(a, b): ... return a + b ... >>> bin_add = binarize(add)#(1)! >>> add(3, 6)#(2)! 9 >>> bin_add(3, 6)#(3)! '0b1001' ``` { .annotate } 1. Aplicamos el decorador y obtenemos una nueva función modificada (decorada). 2. - La función original tiene un comportamiento normal. - $3+6=9$ 3. - La función decorada devuelve el resultado en base binaria. - $bin(3+6)=bin(9)=1001$ #### Usando `@` para decorar { #at-decorator } Python nos ofrece un «[syntactic sugar](https://es.wikipedia.org/wiki/Az%C3%BAcar_sint%C3%A1ctico)» para simplificar la aplicación de los decoradores a través del operador `@` justo antes de la definición de la función que queremos decorar. Veamos su aplicación con el ejemplo:material-flash: del decorador creado previamente: ```pycon hl_lines="1" >>> @binarize#(1)! ... def add(a, b): ... return a + b ... >>> add(3, 6)#(2)! '0b1001' ``` { .annotate } 1. Aplicación del decorador. 2. La función `add()` ya está modificada con lo que su resultado es directamente en binario. #### Manipulando argumentos { #mangling-args } Supongamos un ejemplo:material-flash: en el que queremos implementar un **decorador que pase a minúsculas todos los argumentos** de tipo _cadena de texto_. El planteamiento varía según el número de argumentos que queramos manipular. Para funciones con... === "1 argumento" Si queremos manipular únicamente el primer argumento en funciones de 1 argumento... ```pycon >>> def args_to_lower(func): ... def wrapper(data):#(1)! ... return func(data.lower())#(2)! ... return wrapper ... >>> @args_to_lower ... def count_a(text: str) -> str: ... return sum(c == 'a' for c in text) ... >>> count_a('I USUALLY see you in the area EVERY EVENING') 3 ``` { .annotate } 1. Como sólo vamos a decorar funciones con un parámetro, lo recibimos aquí en `data`. 2. Llamamos a la función decorada pasando previamente su argumento a minúsculas. === "2 argumentos" Si queremos manipular únicamente el primer argumento en funciones con 2 argumentos... ```pycon >>> def args_to_lower(func): ... def wrapper(data, arg):#(1)! ... return func(data.lower(), arg)#(2)! ... return wrapper ... >>> @args_to_lower ... def count_char(text: str, char: str) -> str: ... return sum(c == char for c in text) ... >>> count_char('I USUALLY see you in the area EVERY EVENING', 'e') 8 ``` { .annotate } 1. - Como sólo vamos a decorar funciones con dos parámetros, los recibimos aquí en `data` y `arg`. - El parámetro `data` debe ser la cadena de texto mientras que `arg` es «otro parámetro». 2. Llamamos a la función decorada pasando previamente el primer argumento a minúsculas y el segundo tal cual está. === "$n$ argumentos" Si queremos manipular todos los argumentos posicionales... ```pycon >>> def args_to_lower(func): ... def wrapper(*args):#(1)! ... mod_args = [a.lower() if isinstance(a, str) else a for a in args]#(2)! ... return func(*mod_args)#(3)! ... return wrapper ... >>> @args_to_lower ... def count_chars(text: str, *chars) -> str: ... return sum(c in chars for c in text) ... >>> count_chars('I USUALLY see you in the area EVERY EVENING', 'a', 'i', 'u') 9 ``` { .annotate } 1. Los argumentos posicionales [se capturan](#variable-arguments) con `#!python *args`. 2. Pasamos a minúsculas los argumentos de tipo cadena de texto. 3. Llamamos a la función decorada desempaquetando los argumentos modificados. === "$n$ argumentos (posicionales y nominales)" Si queremos manipular todos los argumentos posicionales y nominales... ```pycon >>> def args_to_lower(func): ... def wrapper(*args, **kwargs):#(1)! ... mod_args = [a.lower() if isinstance(a, str) else a for a in args]#(2)! ... mod_kwargs = {k: v.lower() if isinstance(v, str) else v for k, v in kwargs.items()}#(3)! ... return func(*mod_args, **mod_kwargs)#(4)! ... return wrapper ... >>> @args_to_lower ... def count_chars(text: str, *chars, exclude: bool = False) -> str: ... if exclude: ... return sum(c not in chars for c in text) ... return sum(c in chars for c in text) ... >>> count_chars('I USUALLY see you in the area EVERY EVENING', 'a', 'i', 'u', exclude=True) 34 ``` { .annotate } 1. - Los argumentos posicionales [se capturan](#variable-arguments) con `#!python *args`. - Los argumentos nominales [se capturan](#variable-arguments) con `#!python **kwargs`. 2. Pasamos a minúsculas los argumentos posicionales de tipo cadena de texto. 3. Pasamos a minúsculas los argumentos nominales de tipo cadena de texto. 4. Llamamos a la función decorada desempaquetando los argumentos modificados. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `deco-abs` #### Múltiples decoradores { #multiple-decorators } Python permite aplicar múltiples decoradores sobre una misma función. Lo más difícil aquí es entender el **orden de ejecución**. Veamos el siguiente ejemplo:material-flash: para comprobar el orden en el que se ejecutan los decoradores: ```pycon >>> def deco1(func): ... def wrapper(): ... print('Running deco1 before function') ... func() ... print('Running deco1 after function') ... return wrapper ... >>> def deco2(func): ... def wrapper(): ... print('Running deco2 before function') ... func() ... print('Running deco2 after function') ... return wrapper ... >>> @deco1 ... @deco2 ... def my_function(): ... print('Running function') ... >>> my_function() Running deco1 before function Running deco2 before function Running function Running deco2 after function Running deco1 after function ``` :material-check-all:{ .blue } Cuando se aplican múltiples decoradores a una función, **se ejecutan en orden de arriba hacia abajo**, pero **se aplican en orden de abajo hacia arriba**. Veamos un ejemplo:material-flash: más concreto con un par de operaciones aritméticas. Definimos los siguientes decoradores: ```pycon >>> def plus5(func): ... def wrapper(*args, **kwargs): ... result = func(*args, **kwargs) ... return result + 5 ... return wrapper ... >>> def div2(func): ... def wrapper(*args, **kwargs): ... result = func(*args, **kwargs) ... return result // 2 ... return wrapper ... ``` Aplicamos los decoradores a una función producto: === "Versión :material-at:" ```pycon >>> @plus5 ... @div2 ... def prod(a, b): ... return a * b ... >>> prod(4, 3)#(1)! 11 ``` { .annotate } 1. $$\frac{(4 \cdot 3)}{2}+5 = \frac{12}{2}+5 = 6+5 = 11$$ === "Versión funcional" ```pycon >>> def prod(a, b): ... return a * b ... >>> f = plus5(div2(prod)) >>> f(4, 3)#(1)! 11 ``` { .annotate } 1. $$\frac{(4 \cdot 3)}{2}+5 = \frac{12}{2}+5 = 6+5 = 11$$ ``` mermaid graph LR s[prod*] --> p5[plus5] p5 --> d2[div2] d2 --> f[prod] f -->|12| d2 d2 -->|6| p5 p5 -->|11| s ``` #### Decoradores con parámetros { #deco-params } El último «salto mortal» dentro del mundo de los decoradores sería definir **decoradores con parámetros**. El _esqueleto básico_ de un decorador con parámetros es el siguiente: ```pycon >>> def my_decorator_with_params(*deco_args, **deco_kwargs): ... def decorator(func): ... def wrapper(*args, **kwargs): ... return func(*args, **kwargs) ... return wrapper ... return decorator ... ``` !!! info "Factoría de decoradores" Nótese que `my_decorator_with_params()` no es exactamente un decorador sino que es una _factoría de decoradores_ ([clausura](#closures)) que devuelve un decorador según los argumentos pasados. Supongamos un ejemplo:material-flash: donde queremos implementar un decorador que convierta el resultado de una función a una base determinada: ```pycon >>> def basify(base: int = 10):#(1)! ... def decorator(func): ... def wrapper(*args, **kwargs): ... result = func(*args, **kwargs) ... match base: ... case 2: ... result = bin(result) ... case 8: ... result = oct(result) ... case 16: ... result = hex(result) ... case 10: ... result = result ... case _: ... result = None ... return result ... return wrapper ... return decorator ... ``` { .annotate } 1. Es posible definir valores por defecto para los argumentos, como cualquier otra función en Python. Ahora podemos aplicarlo variando la base de representación: === "Base binaria" ```pycon >>> @basify(2) ... def add(a, b): ... return a + b ... >>> add(349, 125)#(1)! '0b111011010' ``` { .annotate } 1. $\equiv$ `#!python bin(349+125)` === "Base octal" ```pycon >>> @basify(8) ... def add(a, b): ... return a + b ... >>> add(349, 125)#(1)! '0o732' ``` { .annotate } 1. $\equiv$ `#!python oct(349+125)` === "Base hexadecimal" ```pycon >>> @basify(16) ... def add(a, b): ... return a + b ... >>> add(349, 125)#(1)! '0x1da' ``` { .annotate } 1. $\equiv$ `#!python hex(349+125)` === "Sin base :octicons-circle-slash-24:" ```pycon >>> @basify()#(1)! ... def add(a, b): ... return a + b ... >>> add(349, 125)#(2)! 474 ``` { .annotate } 1. Se aplica la base por defecto :octicons-arrow-right-24: Base 10. 2. $349+125=474$ ??? warning "Uso de paréntesis" En decoradores con parámetros que contengan valores por defecto, aunque no pasemos nada al propio decorador, es obligatorio el uso de paréntesis, ya que de otro modo obtendríamos un error: ```pycon hl_lines="1 10" >>> @basify ... def add(a, b): ... return a + b ... >>> add(349, 125) Traceback (most recent call last): Cell In[2], line 1 add(349, 125) TypeError: basify..decorator() takes 1 positional argument but 2 were given ``` Pero existe una forma más elaborada para poder resolver esto, y poder usar el decorador sin paréntesis: ```python hl_lines="1 18-19" >>> def basify(_func=None, *, base: int = 10):#(1)! ... def decorator(func): ... def wrapper(*args, **kwargs): ... result = func(*args, **kwargs) ... match base: ... case 2: ... result = bin(result) ... case 8: ... result = oct(result) ... case 16: ... result = hex(result) ... case 10: ... result = result ... case _: ... result = None ... return result ... return wrapper ... if _func is not None and callable(_func):#(2)! ... return decorator(_func) ... return decorator#(3)! ... ``` { .annotate } 1. El primer argumento de `basify()` es opcional y se utiliza para detectar si el decorador se ha aplicado sin paréntesis. 2. Si el decorador se ha aplicado sin paréntesis, se llama a `decorator()` directamente con la función a decorar. 3. Si el decorador se ha aplicado con paréntesis, se devuelve `decorator()` para que se aplique posteriormente a la función a decorar Ahora podríamos aplicar el decorador con o sin paréntesis indistintamente: ```pycon hl_lines="1" >>> @basify ... def add(a, b): ... return a + b ... >>> add(349, 125) 474 >>> @basify(base=16) ... def add(a, b): ... return a + b ... >>> add(349, 125) '0x1da' ``` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `deco-sort` ### Funciones recursivas { #recursion } La **recursividad** es el mecanismo por el cual una función se llama a sí misma. Si sólo tuviéramos esto en cuenta podría ocurrirnos algo así... ```pycon >>> def yeah(): ... print('Yeah!') ... yeah() ... >>> yeah() Yeah! Yeah! Yeah! Yeah! Yeah! ... 2995 times Cell In[1], line 3, in yeah() 1 def yeah(): 2 print('Yeah!') ----> 3 yeah() RecursionError: maximum recursion depth exceeded ``` !!! bug "Límite de recursión" Podemos observar que existe un número máximo de llamadas recursivas. Python controla esta situación por nosotros, ya que, de no ser así, podríamos deteriorar el funcionamiento del sistema consumiendo excesivos recursos. Veamos ahora un ejemplo:material-flash: concreto en el que tratamos de calcular una potencia $x^n$ de manera recursiva. La idea detrás de esto es «sencilla» si manejamos ciertas nociones básicas de cálculo: $$ x^n = \begin{cases} 1 & \text{si $n=0$}\enspace (A)\\ x \cdot x^{n-1} & \text{en otro caso}\enspace (B) \end{cases} $$ Cuando trabajamos con recursividad hay que detectar (al menos) dos casos: - [x] El caso base o _condición de parada_ $(A)$. - [x] El caso recursivo $(B)$. Veamos una posible implementación pensando en `base` $\equiv x$ y `exponent` $\equiv n$ ```pycon >>> def pow(base: int, exponent: int) -> int: ... if exponent == 0:#(1)! ... return 1 ... return base * pow(base, exponent - 1)#(2)! ... >>> pow(2, 4) 16 >>> pow(3, 5) 243 ``` { .annotate } 1. Caso base :material-arrow-right-bold: condición de parada $(A)$. 2. Caso recursivo $(B)$. La «pila de llamadas» para el ejemplo de `#!python pow(2, 4)` sería la siguiente: ``` mermaid graph TD s((Start)) --> pow24["pow(2,4)"] pow24 --> pow23["pow(2,3)"] pow23 --> pow22["pow(2,2)"] pow22 --> pow21["pow(2,1)"] pow21 --> pow20{{"pow(2,0)"}} pow20 -.->|1| pow21 pow21 -.->|2 * 1 = 2| pow22 pow22 -.->|2 * 2 = 4| pow23 pow23 -.->|2 * 4 = 8| pow24 pow24 -.->|2 * 8 = 16| s ``` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `factorial-recursive` Otra aproximación a la recursividad se da en problemas donde tenemos que **procesar una secuencia de elementos**. Supongamos por ejemplo:material-flash: que nos piden **calcular la suma de las longitudes de una serie de palabras** definidas en una lista: ```pycon >>> def get_size(words: list[str]) -> int: ... if len(words) == 0: ... return 0 ... return len(words[0]) + get_size(words[1:]) ... >>> words = ['this', 'is', 'recursive'] >>> get_size(words) 15 ``` :material-check-all:{ .blue } La idea recursiva que hay detrás de esta implementación es que la longitud de todos los elementos de la lista es igual a la longitud del primer elemento más la longitud del resto. ## Espacios de nombres { #namespaces } !!! quote "Zen de Python" Namespaces are one honking great idea — let’s do more of those! Los **espacios de nombres** permiten definir **ámbitos** o **contextos** en los que **agrupar nombres de objetos**. Los espacios de nombres proporcionan un mecanismo de empaquetado, de tal forma que podamos tener incluso nombres iguales que no hacen referencia al mismo objeto (siempre y cuando estén en ámbitos distintos). Cada función define su propio espacio de nombres y es diferente del espacio de nombres global aplicable a todo nuestro programa: ![Dark image](images/functions/namespaces-dark.svg#only-dark) ![Light image](images/functions/namespaces-light.svg#only-light) Veamos un ejemplo:material-flash: de aplicación de los espacios de nombres: === "Acceso global" ```pycon >>> language = 'castellano'#(1)! >>> def catalonia(): ... print(f'{language=}')#(2)! ... >>> language#(3)! 'castellano' >>> catalonia()#(4)! language='castellano' ``` { .annotate } 1. Creación de variable global. 2. Acceso a variable global dentro de la función. 3. Comprobación de acceso a variable global en el contexto (espacio de nombres) global. 4. Comprobación de acceso a variable global en el contexto (espacio de nombres) local de la función. === "Acceso local" ```pycon >>> language = 'castellano'#(1)! >>> def catalonia(): ... language = 'catalan'#(2)! ... print(f'{language=}') ... >>> language#(3)! 'castellano' >>> catalonia()#(4)! language='catalan' >>> language#(5)! 'castellano' ``` { .annotate } 1. Creación de variable global. 2. - Creación de variable local (independientemente de que se llame igual que la global). - Es posible modificar el valor de una variable global usando la sentencia [`global`](https://docs.python.org/3/reference/simple_stmts.html#global) aunque no es especialmente recomendable. 3. Comprobación de acceso a variable global en el contexto (espacio de nombres) global, antes de llamar a la función. 4. Comprobación de acceso a variable ~~global~~ local en el contexto (espacio de nombres) local de la función. 5. Comprobación de acceso a variable global en el contexto (espacio de nombres) global, después de llamar a la función. ??? tip "Contenido de los espacios de nombres" Python permite acceder a todos los items existentes en los espacios de nombres de un programa: - [`locals()`](https://docs.python.org/3/library/functions.html#locals) devuelve un diccionario con los nombres de ~~variables~~ objetos y sus valores dentro del **espacio de nombres local**. - [`globals()`](https://docs.python.org/3/library/functions.html#globals) devuelve un diccionario con los nombres de ~~variables~~ objetos y sus valores dentro del **espacio de nombres global**. ## Consejos para programar mejor { #programming-advices } Chris Staudinger (cofundador de [Level Up Coding](https://blog.levelupcoding.com/)) compartió en su día [estos 7 consejos](https://twitter.com/chrisstaud/status/1631919411236831235) para mejorar nuestro código:
1. Las funciones deberían hacer una única cosa.(1) 2. Utiliza nombres descriptivos y con significado.(2) 3. No uses variables globales.(3) 4. Refactoriza regularmente.(4) 5. No utilices «números mágicos» o valores «hard-codeados».(5) 6. Escribe lo que necesites ahora, no lo que pienses que podrías necesitar en el futuro.(6) 7. Usa comentarios para explicar el «por qué» y no el «qué».(7)
1. :material-format-quote-open:_Por ejemplo, un mal diseño sería tener una única función que calcule el total de una cesta de la compra, los impuestos y los gastos de envío. Sin embargo esto se debería hacer con tres funciones separadas. Así conseguimos que el código sea más fácil de matener, reutilizar y depurar_:material-format-quote-close: 2. :material-format-quote-open:_Los nombres autoexplicativos de variables y funciones mejoran la legibilidad del código. Por ejemplo – deberíamos llamar «total_cost» a una variable que se usa para almacenar el total de un carrito de la compra en vez de «x» ya que claramente explica su propósito_:material-format-quote-close: 3. :material-format-quote-open:_Las variables globales pueden introducir muchos problemas, incluyendo efectos colaterales inesperados y errores de programación difíciles de trazar. Supongamos que tenemos dos funciones que comparten una variable global. Si una función cambia su valor la otra función podría no funcionar como se espera_:material-format-quote-close: 4. :material-format-quote-open:_El código inevitablemente cambia con el tiempo, lo que puede derivar en partes obsoletas, redundantes o desorganizadas. Trata de mantener la calidad del código revisando y refactorizando aquellas zonas que se editan_:material-format-quote-close: 5. :material-format-quote-open:_No es lo mismo escribir «99 * 3» que «price * quantity». Esto último es más fácil de entender y usa variables con nombres descriptivos haciéndolo autoexplicativo. Trata de usar constantes o variables en vez de valores «hard-codeados»_:material-format-quote-close: 6. :material-format-quote-open:_Los programas simples y centrados en el problema son más flexibles y menos complejos_:material-format-quote-close: 7. :material-format-quote-open:_El código limpio es autoexplicativo y por lo tanto los comentarios no deberían usarse para explicar lo que hace el código. En cambio, los comentarios debería usarse para proporcionar contexto adicional, como por qué el código está diseñado de una cierta manera_:material-format-quote-close: ## Ejercicios { #exercises } 1. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `num-in-interval` 2. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `extract-evens` 3. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `split-case` 4. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `perfect` 5. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `palindrome` 6. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `count-vowels-recursive` 7. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `pangram` 8. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `cycle-alphabet` 9. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `bubble-sort` 10. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `consecutive-seq` 11. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `magic-square` 12. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `nested-add` 13. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `fibonacci-recursive` 14. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `hyperfactorial` 15. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `fibonacci-generator` 16. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `palindrome-recursive` 17. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `deco-positive` 18. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `slice-recursive` [^1]: Término para identificar el «algoritmo» o secuencia de instrucciones derivadas del procesamiento que corresponda. [^2]: Uno de los escenarios de múltiples sentencias de retorno en una función son las _cláusulas guarda_: una pieza de código que normalmente está al comienzo de la función y que comprueba una serie de condiciones para continuar o cortar la ejecución. [^3]: Fuente: [Real Python](https://realpython.com/documenting-python-code/#docstring-formats) [^4]: [NumPy](https://numpy.org/) es una biblioteca de Python que proporciona soporte para arrays multidimensionales y funciones matemáticas de alto rendimiento. [^5]: Epydoc es una adaptación de [Javadoc](https://es.wikipedia.org/wiki/Javadoc) un conocido sistema de documentación para Java. [^6]: Existen herramientas como [`mypy`](https://mypy-lang.org/) que sí se encargan de comprobar estas restricciones de tipos. Dispone de una [guía rápida para anotación de tipos](https://mypy.readthedocs.io/en/stable/cheat_sheet_py3.html). [^7]: Véase [paradigmas de programación](https://es.wikipedia.org/wiki/Paradigma_de_programaci%C3%B3n). [^8]: La función `#!python range()` es un tanto especial. Véase [este artículo](https://treyhunner.com/2018/02/python-range-is-not-an-iterator/) de Trey Hunner. [^9]: Cuando hablamos de «explicitar» un generador nos referimos a obtener todos sus valores de forma directa como una lista (o sucedáneo). [^10]: Siempre y cuando la «estructura» (de parámetros) de la función sea compatible con la definición de la función interior del decorador. ================================================ FILE: docs/core/modularity/index.md ================================================ # Modularidad La modularidad en programación es un principio clave que permite dividir un programa en partes más pequeñas, reutilizables y fáciles de mantener. En Python, esta modularidad se logra mediante el uso de funciones, la programación orientada a objetos (POO), el manejo de excepciones y la organización del código en módulos. Las funciones permiten encapsular tareas específicas, la POO facilita la creación de estructuras más complejas a través de clases y objetos, las excepciones ayudan a gestionar errores de manera controlada, y los módulos permiten organizar el código en archivos independientes que pueden ser reutilizados. En este capítulo, exploraremos cómo aplicar estos conceptos para construir programas más claros, escalables y robustos. ================================================ FILE: docs/core/modularity/modules.md ================================================ --- icon: material/view-module tags: - Fundamentos del lenguaje - Modularidad - Módulos --- # Módulos { #modules } ![Banner](images/modules/banner.jpg) /// caption Imagen generada con Inteligencia Artificial /// Escribir pequeños trozos de código puede resultar interesante para realizar determinadas pruebas o funcionalidades sencillas. Pero a la larga, **nuestros programas tenderán a crecer** y será necesario agrupar el código en piezas/artefactos más manejables. ## Módulos { #modules } Un **módulo** en Python es simplemente un ^^fichero de texto^^ que contiene ^^código fuente^^. Permite evitar la repetición y favorece la reutilización. Los módulos pueden agruparse en carpetas denominadas **paquetes** mientras que estas carpetas, a su vez, pueden dar lugar a **librerías**. ![Librerías paquetes y módulos](images/modules/library-package-module.svg) Un ejemplo de todo ello lo encontramos en la [librería estándar](https://docs.python.org/es/3/library/). Se trata de una librería que ya viene incorporada en Python y que, a su vez, dispone de una serie de paquetes que incluyen distintos módulos. Un caso concreto dentro de la `stdlib` (libería estándar) podría ser el del paquete `urllib` —para operaciones con URLs— que dispone de 5 módulos: ![Paquete urllib](images/modules/stdlib-package-module.svg) ### Importar un módulo completo { #full-import } Para hacer uso del código de otros módulos usaremos la sentencia `#!python import`. Permite importar el código y las variables de dicho módulo para tenerlas disponibles en nuestro programa. La forma más sencilla de importar un módulo es `#!python import module` donde `module` es el nombre de otro fichero Python, sin la extensión `.py`. Partiremos del siguiente ejemplo:material-flash: donse se ha implementado un módulo para cálculos estadísticos: ```python title="stats.py" def mean(*values: int | float) -> float: """Calculate mean of values""" return sum(values) / len(values) def std(*values: int | float) -> float: """Calculate standard deviation of values""" m = mean(*values) p = sum((v - m) ** 2 for v in values) return (p / (len(values) - 1)) ** (1 / 2) ``` Desde otro fichero (_en principio en la misma carpeta_) podríamos importar el contenido de `stats.py` para hacer uso de sus funcionalidades: ```pycon hl_lines="1" >>> import stats >>> stats.mean(6, 3, 9, 5)#(1)! 5.75 >>> stats.std(6, 3, 9, 5)#(2)! 2.5 ``` { .annotate } 1. Es necesario anteponer a la función `mean()` el [espacio de nombres](functions.md#namespaces) que define el módulo `stats`. 2. Es necesario anteponer a la función `std()` el [espacio de nombres](functions.md#namespaces) que define el módulo `stats`. !!! info "Librería estándar" En el caso de utilizar un módulo de la librería estándar, basta con saber su nombre e importarlo directamente: ```python import os ``` #### Ruta de búsqueda de módulos { #pythonpath } Cuando importamos un módulo en Python el intérprete trata de encontrarlo (por orden) en las rutas definidas dentro de la variable `sys.path`. Veamos el contenido de la variable `sys.path` para el caso concreto de mi entorno de desarrollo: ```pycon linenums="1" >>> import sys >>> sys.path ['/Users/sdelquin/code/personal/aprendepython/.venv/bin', '/Users/sdelquin/.local/share/uv/python/cpython-3.13.2-macos-aarch64-none/lib/python313.zip', '/Users/sdelquin/.local/share/uv/python/cpython-3.13.2-macos-aarch64-none/lib/python3.13', '/Users/sdelquin/.local/share/uv/python/cpython-3.13.2-macos-aarch64-none/lib/python3.13/lib-dynload', '', '/Users/sdelquin/code/personal/aprendepython/.venv/lib/python3.13/site-packages'] ``` - L4 :material-arrow-right-bold: Comandos ejecutables del entorno virtual. - L5 :material-arrow-right-bold: Contiene módulos de la librería estándar en formato comprimido. - L6 :material-arrow-right-bold: Carpeta con módulos adicionales que no pueden estar comprimidos (por ejemplo, archivos compilados en C). - L7 :material-arrow-right-bold: Contiene las extensiones compartidas (`.so`, `.pyd`) que no pueden ejecutarse desde un ZIP. - L8 :material-arrow-right-bold: Representa el directorio (carpeta) actual. - L9 :material-arrow-right-bold: Paquetes instalados en el entorno virtual. Podemos **modificar la ruta de búsqueda** de paquetes Python. Para ello existen dos opciones: === "Mediante `PYTHONPATH`" Modificando directamente la variable de entorno `PYTHONPATH`: ```bash export PYTHONPATH=/tmp ``` Comprobamos que se ha modificado en `sys.path`: ```pycon hl_lines="5" >>> import sys >>> sys.path ['/Users/sdelquin/code/personal/aprendepython-mkdocs/.venv/bin', '/tmp', '/Users/sdelquin/.local/share/uv/python/cpython-3.13.2-macos-aarch64-none/lib/python313.zip', '/Users/sdelquin/.local/share/uv/python/cpython-3.13.2-macos-aarch64-none/lib/python3.13', '/Users/sdelquin/.local/share/uv/python/cpython-3.13.2-macos-aarch64-none/lib/python3.13/lib-dynload', '', '/Users/sdelquin/code/personal/aprendepython-mkdocs/.venv/lib/python3.13/site-packages'] ``` === "Mediante `sys.path`" Para ello accedemos directamente a la lista que está en el módulo `sys` de la librería estandar: ```pycon >>> import sys >>> sys.path.insert(0, '/tmp')#(1)! >>> sys.path[0] '/tmp' >>> sys.path.append('/tmp')#(2)! >>> sys.path[-1] '/tmp' ``` { .annotate } 1. Insertar por el principio. 2. Insertar por el final. !!! tip "Orden de rutas" El hecho de poner nuestra ruta al principio o al final de `sys.path` influye en la búsqueda, ya que si existen dos (o más módulos) que se llaman igual en nuestra ruta de búsqueda, Python usará el primero que encuentre. ### Importar partes de un módulo { #partial-import } Es posible que no necesitemos todo aquello que está definido en `stats.py`. Por ejemplo:material-flash: sólo vamos a calcular medias. En este caso la importación se hace de manera diferente: ```pycon hl_lines="1" >>> from stats import mean >>> mean(6, 3, 9, 5)#(1)! 5.75 ``` { .annotate } 1. La función se utiliza sin ningún prefijo. Este esquema tiene el inconveniente de la **posible colisión de nombres**, en aquellos casos en los que tuviéramos algún objeto con el mismo nombre que el objeto que estamos importando. Para estas (u otras) situaciones Python permite usar **alias** a través de la sentencia `#!python as`: ```pycon hl_lines="1" >>> from stats import mean as avg >>> avg(6, 3, 9, 5) 5.75 ``` Para **importar varios objetos** (funciones en este caso) desde un mismo módulo, podemos especificarlos separados por comas en la misma línea: ```pycon >>> from stats import mean, std ``` Es posible hacer `#!python from stats import *` pero estaríamos importando todos los componentes del módulo, cuando a lo mejor no es lo que necesitamos. A continuación una imagen que define bien este escenario: ![Dark image](images/modules/import-dark.svg#only-dark) ![Light image](images/modules/import-light.svg#only-light) ## Paquetes { #packages } Un **paquete** es simplemente una **carpeta** que contiene ficheros `.py`. Además permite tener una jerarquía con más de un nivel de subcarpetas anidadas. Pongamos un ejemplo:material-flash: creando un paquete `extramath` que contendrá dos módulos: - [x] `stats.py` para cálculos estadísticos. - [x] `ofrac.py` para operaciones auxiliares con fracciones. El módulo `stats.py` ya se definió previamente [aquí](#full-import) y el código del módulo `ofrac.py` se presenta a continuación: ```python title="ofrac.py" def gcd(a: int, b: int) -> int: """Greatest common divisor through Euclides Algorithm""" while b > 0: a, b = b, a % b return a def lcm(a: int, b: int) -> int: """Least common multiple through Euclides Algorithm""" return a * b // gcd(a, b) ``` Si nuestro código principal va a estar en `main.py` (a primer nivel), la estructura de ficheros nos quedaría tal que así:
``` . ├── main.py(1) └── extramath(2) ├── ofrac.py(3) └── stats.py(4) 1 directory, 3 files ```
1. Punto de entrada de nuestro programa a partir del fichero `main.py` 2. Carpeta que define el paquete `extramath`. 3. Módulo para operaciones auxiliares de fracciones. 4. Módulo para cálculos estadísticos. Si lo ponemos todo junto, nos quedaría un esquema como el siguiente: ```mermaid flowchart LR subgraph Package E@{ shape: docs, label: "extramath"} end subgraph Module O@{ shape: delay, label: "ofrac"} S@{ shape: delay, label: "stats"} end subgraph Function gcd["gcd()"] lcm["lcm()"] mean["mean()"] std["std()"] end E --> O E --> S O --> gcd O --> lcm S --> mean S --> std ``` ### Importar desde un paquete { #import-from-package } Si ya estamos en el fichero `main.py` (o a ese nivel) podremos hacer uso de nuestro paquete de la siguiente forma: ```pycon hl_lines="1" >>> from extramath import frac, stats#(1)! >>> frac.gcd(21, 35)#(2)! 7 >>> stats.mean(6, 3, 9, 5)#(3)! 5.75 ``` { .annotate } 1. Importar los módulos `frac` y `stats` del paquete `extramath` 2. Uso de la función `gcd` que está definida en el módulo `frac` 3. Uso de la función `mean` que está definida en el módulo `stats` ## Programa principal { #main } Cuando decidimos desarrollar un artefacto de software en Python, normalmente usamos distintos ficheros para ello. Algunos de esos ficheros se convertirán en [módulos](#modules), otros se englobarán en [paquetes](#packages) y existirá uno en concreto que será nuestro **punto de entrada**, también llamado **programa principal**. La anatomía de un programa principal (habitualmente llamado `main.py`) es la siguiente: ```python title="main.py" # imports de la librería estándar # imports de librerías de terceros # imports de módulos propios # CÓDIGO PROPIO # ... if __name__ == '__main__': # punto de entrada real ``` Si queremos **ejecutar este fichero `main.py` desde línea de comandos**, tendríamos que hacer: ```bash python main.py ``` ### Punto de entrada { #entrypoint } Tratemos de explicar cuál es el cometido de la sentencia: `#!python if __name__ == '__main__'` Esta condición permite, en el programa principal, diferenciar qué codigo se lanzará cuando el fichero se ejecuta directamente o cuando el fichero se importa desde otro lugar. La variable `__name__` puede tomar dos posibles valores: - El nombre del módulo (o paquete) al **importar** el fichero. - El valor `#!python '__main__'` al **ejecutar** el fichero. Veamos el siguiente ejemplo:material-flash: con el programa `hello.py` y analicemos su comportamiento según el escenario escogido: ```python title="hello.py" linenums="1" import blabla def myfunc(): print('Inside myfunc') blabla.hi() if __name__ == '__main__': print('Entry point') myfunc() ``` ![Dark image](images/modules/if-name-main-dark.svg#only-dark) ![Light image](images/modules/if-name-main-light.svg#only-light)
- `#!python import hello` --- Se ejecutan las siguientes líneas (_desde arriba hacia abajo_): **L1**{.hl} :material-arrow-right-bold: se importa el módulo `blabla`. **L4**{.hl} :material-arrow-right-bold: se define la función `myfunc` y estará disponible para usarse. **L9**{.hl} :material-arrow-right-bold: **esta condición no se cumple**, ya que estamos ^^importando^^ y la variable especial `__name__` no toma ese valor. Con lo cual finaliza la ejecución. _:material-monitor-off: No hay salida por pantalla._{ .acc } - `#!bash python main.py` --- Se ejecutan las siguientes líneas (_desde arriba hacia abajo_): **L1**{.hl} :material-arrow-right-bold: se importa el módulo `blabla`. **L4**{.hl} :material-arrow-right-bold: se define la función `myfunc` y estará disponible para usarse. **L9**{.hl} :material-arrow-right-bold: **esta condición sí se cumple**, ya que estamos ejecutando directamente el fichero (_como programa principal_) y la variable especial `__name__` toma el valor `#!python '__main__'`. **L10**{.hl} :material-arrow-right-bold: _:material-monitor: Entry point_{ .acc } **L11**{.hl} :material-arrow-right-bold: llamada a la función `myfunc()`. **L5**{.hl} :material-arrow-right-bold: _:material-monitor: Inside myfunc_{ .acc } **L6**{.hl} :material-arrow-right-bold: llamada a la función `hi()` del módulo `blabla`.
================================================ FILE: docs/core/modularity/oop.md ================================================ --- icon: material/temple-buddhist-outline tags: - Fundamentos del lenguaje - Modularidad - Programación orientada a objetos --- # Objetos y clases { #oop } ![Banner](images/oop/banner.jpg) /// caption Imagen generada con Inteligencia Artificial /// La programación orientada a objetos ([POO](https://es.wikipedia.org/wiki/Programaci%C3%B3n_orientada_a_objetos)) o en sus siglas inglesas OOP es una manera de programar (paradigma) que permite llevar al código mecanismos similares a los utilizados con entidades de la vida real. Algunos de sus beneficios son los siguientes:
- Encapsulamiento --- Permite **empaquetar**{.hl} el código dentro de una unidad (objeto) donde se puede determinar el ámbito de actuación. - Abstracción --- Permite **generalizar**{.hl} los tipos de objetos a través de las clases y simplificar el programa. - Herencia --- Permite **reutilizar**{.hl} código al poder heredar atributos y comportamientos de una clase a otra. - Polimorfismo --- Permite **crear**{.hl} múltiples objetos a partir de una misma pieza flexible de código.
## Objetos { #objects } Un **objeto** es una **estructura de datos personalizada** que contiene **datos** y **código**: - Los **datos** son _variables_ que reciben el nombre de **atributos** en POO. - El **código** son _funciones_ que reciben el nombre de **métodos** en POO. Un objeto representa una **instancia única** de alguna entidad (a través de los valores de sus atributos) e interactúa con otros objetos (o consigo mismo) a través de sus métodos: ![Dark image](images/oop/bike-object-dark.svg#only-dark) ![Light image](images/oop/bike-object-light.svg#only-light) Para crear un objeto primero debemos definir **la clase que lo contiene**. Podemos pensar en **la clase como el molde** con el que se crean nuevos objetos de ese tipo: ![Dark image](images/oop/mold-dark.svg#only-dark) ![Light image](images/oop/mold-light.svg#only-light) :material-check-all:{ .blue } En el **proceso de diseño de una clase** hay que tener en cuenta —entre otros— el **principio de responsabilidad única**[^1], intentando que los atributos y los métodos que contenga esa clase estén enfocados a un objetivo único y bien definido. ### Creando clases { #making-classes } Empecemos por crear nuestra **primera clase**. Durante todo este bloque pondremos ejemplos:material-flash: de [droides de la saga StarWars](https://en.wikipedia.org/wiki/Droid_(Star_Wars)). ![Fork](images/oop/starwars-droids.jpg) (1) { .annotate } 1. :fontawesome-regular-copyright: [Astro Mech Droids](https://www.facebook.com/astromechdroids/) Para crear una clase en Python hay que utilizar la palabra reservada `#!python class` seguida del nombre de la clase: ```pycon >>> class StarWarsDroid:#(1)! ... pass#(2)! ... ``` { .annotate } 1. Los nombres de las clases se suelen escribir en **singular** y con formato [`CamelCase`](https://peps.python.org/pep-0008/#class-names). 2. La sentencia `#!python pass` no hace nada, es simplemente un «placeholder». ### Creando objetos { #making-objects } Existen multitud de droides en el universo StarWars. Una vez que hemos definido la clase genérica podemos crear **instancias/objetos** (droides) concretos: ```pycon >>> c3po = StarWarsDroid() >>> r2d2 = StarWarsDroid() >>> bb8 = StarWarsDroid() ``` ### Añadiendo métodos { #adding-methods } Un **método** es una función que forma parte de una clase o de un objeto. En su ámbito tiene acceso a otros métodos y atributos de la clase o del objeto al que pertenece. La definición de un método (de instancia) es análoga a la de una función ordinaria, pero incorporando un primer parámetro [`self`](https://docs.python.org/3/faq/design.html#why-must-self-be-used-explicitly-in-method-definitions-and-calls) que hace referencia a la instancia del objeto actual. Veamos un ejemplo:material-flash: sobre los droides. Una de las acciones más sencillas que se pueden hacer sobre un droide es **encenderlo o apagarlo**. La implementación podría ser algo así: ```pycon >>> class Droid:#(1)! ... def switch_on(self): ... print("Hi! I'm a droid. Can I help you?") ... ... def switch_off(self): ... print("Bye! I'm going to sleep") ... ``` { .annotate } 1. Por simplicidad llamaremos `Droid` a la clase de aquí en adelante. Ahora ya podríamos utilizar estos métodos recién creados: ```pycon >>> k2so = Droid() >>> k2so.switch_on() Hi! I'm a droid. Can I help you? >>> k2so.switch_off() Bye! I'm going to sleep ``` !!! tip "Orden de los métodos" El orden de definición de métodos dentro de la clase —a priori— no es importante. ### Añadiendo atributos { #adding-attributes } Un **atributo** no es más que una variable, un nombre al que asignamos un valor, con la particularidad de _vivir dentro de una clase o de un objeto_. Supongamos por ejemplo:material-flash: que queremos **guardar el estado del droide** (encendido/apagado): ```pycon >>> class Droid: ... def switch_on(self): ... self.power_on = True#(1)! ... print("Hi! I'm a droid. Can I help you?") ... ... def switch_off(self): ... self.power_on = False#(2)! ... print("Bye! I'm going to sleep") ... ``` { .annotate } 1. Para que una variable se convierta en atributo de un objeto, debemos usar el prefijo `self.` 2. Modificamos el valor del atributo en función del método. Probemos este código para ver su comportamiento: ```pycon >>> k2so = Droid() >>> k2so.switch_on() Hi! I'm a droid. Can I help you? >>> k2so.power_on True >>> k2so.switch_off() Bye! I'm going to sleep >>> k2so.power_on False ``` ### Inicialización { #init } Existe un **método especial** que se ejecuta cuando creamos una instancia de un objeto. Este método es `#!python __init__` y nos permite asignar atributos y realizar operaciones con el objeto en el momento de su creación. También es ampliamente conocido como el **constructor**. Veamos un ejemplo:material-flash: de este método con nuestros droides en el que únicamente guardaremos el nombre del droide como un atributo del objeto: ```pycon >>> class Droid: ... def __init__(self, name: str):#(1)! ... print('Running __init__')#(2)! ... self.name = name#(3)! ... >>> bb8 = Droid('BB-8')#(4)! Running __init__ >>> bb8.name#(5)! 'BB-8' ``` { .annotate } 1. - El constructor recibe el nombre del droide. - Obviamente también recibe `#!python self` pero eso es generalizado. 2. Este mensaje es únicamente a efectos académicos. 3. Creamos un atributo y le asignamos el nombre indicado en el parámetro. 4. Al «llamar» a la clase se está invocando el método `#!python __init__()` 5. Ahora tendremos acceso al atributo `name` del objeto creado en el constructor. Es importante tener en cuenta que si no usamos `#!python self` estaremos creando una variable local en vez de un atributo del objeto: ```pycon >>> class Droid: ... def __init__(self, name: str): ... name = name # 🤔 ... >>> bb8 = Droid('BB-8') >>> bb8.name Traceback (most recent call last): Cell In[3], line 1 bb8.name AttributeError: 'Droid' object has no attribute 'name' ``` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `mobile-phone` ## Atributos { #attributes } En esta sección se tratará en profundidad todo lo relacionado con los atributos. ### Acceso directo { #direct-access } En el siguiente ejemplo:material-flash: vemos que, aunque el atributo `name` se ha creado en el constructor de la clase, también podemos modificarlo desde «fuera» con un acceso directo: ```pycon >>> class Droid: ... def __init__(self, name: str): ... self.name = name ... >>> droid = Droid('C-3PO') >>> droid.name 'C-3PO' >>> droid.name = 'waka-waka'#(1)! ``` { .annotate } 1. Esto sería válido. Python nos permite **añadir atributos dinámicamente** a un objeto incluso después de su creación: ```pycon >>> droid.manufacturer = 'Cybot Galactica' >>> droid.height = 1.77 ``` ### Propiedades { #properties } Aunque el uso de propiedades puede ir destinado a la «privacidad» de ciertos atributos, lo cierto es que en la mayoría de ocasiones, las utilizamos como **valores calculados**. Mediante el [decorador](functions.md#decorators) `#!python @property` indicamos que un método se convierte en propiedad. A modo de ejemplo:material-flash:, supongamos que **la altura del periscopio** de los [droides astromecánicos](https://www.astromech.com.es/) se calcula siempre como un ^^porcentaje de su altura^^: ```pycon >>> class AstromechDroid: ... def __init__(self, name: str, height: float):#(1)! ... self.name = name ... self.height = height ... ... @property#(2)! ... def periscope_height(self) -> float:#(3)! ... return 0.3 * self.height#(4)! ... ``` { .annotate } 1. El constructor recibe el _nombre del droide_ y su _altura_. 2. Indicamos la creación de una propiedad. 3. Se aplica sobre un método que devuelve la altura del periscopio del droide (valor _flotante_). 4. 30% de la altura del droide. Ahora veamos su aplicación práctica: ```pycon >>> droid = AstromechDroid('R2-D2', 1.05) >>> droid.periscope_height#(1)! 0.315 ``` { .annotate } 1. El acceso se realiza **como una atributo**, no se «llama» al método. Una propiedad **no puede modificarse**[^2]: ```pycon hl_lines="5" >>> droid.periscope_height = 0.645 Traceback (most recent call last): Cell In[1], line 1 droid.periscope_height = 0.645 AttributeError: property 'periscope_height' of 'AstromechDroid' object has no setter ``` Las propiedades **no pueden recibir parámetros** ya que ni siquiera pueden ser invocadas: ```pycon hl_lines="17" >>> class AstromechDroid: ... def __init__(self, name: str, height: float): ... self.name = name ... self.height = height ... ... @property ... def periscope_height(self, from_ground: bool = False) -> float: ... height_factor = 1.3 if from_ground else 0.3 ... return height_factor * self.height ... >>> droid = AstromechDroid('R2-D2', 1.05) >>> droid.periscope_height(from_ground=True)#(1)! Traceback (most recent call last): Cell In[3], line 1 droid.periscope_height(from_ground=True) TypeError: 'float' object is not callable ``` { .annotate } 1. En este caso tendríamos que implementar un método para resolver el escenario planteado. !!! tip "Valores calculados" La ventaja de usar valores calculados sobre simples atributos es que el cambio de valor en un atributo no asegura que actualicemos otro atributo, y además siempre podremos modificar directamente el valor del atributo, con lo que podríamos obtener efectos colaterales indeseados. #### Cacheando propiedades { #caching-properties } En los casos anteriores hemos creado una propiedad que calcula el alto del periscopio de un droide astromecánico a partir de su altura. El «coste» de este cálculo es bajo, pero imaginemos por un momento que fuera muy alto. Si cada vez que accedemos a dicha propiedad tenemos que realizar ese cálculo, estaríamos siendo muy ineficientes (en el caso de que la altura del droide no cambiara). A continuación se muestra un ejemplo:material-flash: en el que usamos **cacheado de propiedades** para evitar ciertos cálculos innecesarios: ```pycon >>> class AstromechDroid: ... def __init__(self, name: str, height: float): ... self.name = name ... self.height = height#(1)! ... ... @property ... def height(self) -> float: ... return self._height#(2)! ... ... @height.setter#(3)! ... def height(self, height: float) -> None: ... self._height = height#(4)! ... self._periscope_height = None#(5)! ... ... @property ... def periscope_height(self) -> float: ... if self._periscope_height is None:#(6)! ... print('Calculating periscope height...') ... self._periscope_height = 0.3 * self.height ... return self._periscope_height#(6)! ``` { .annotate } 1. Lo que ocurre aquí es que se hace una llamada al «setter» `#!python @height.setter`. 2. Se utiliza un atributo `_height` para fijar la altura (de forma interna). 3. El [decorador](functions.md#decorators) `#!python @height.setter` hace que el método se llame cuando se asigne un valor al atributo `height`. 4. Modificación del atributo `_height` mediante el «setter». 5. Cuando la altura del droide cambia, es necesario **invalidar la caché**. 6. Sólo si se ha invalidado la caché se recalcula la altura del periscopio. 7. Se devuelve el atributo (interno) que lleva la altura del periscopio. Probemos ahora la implementación diseñada: ```pycon >>> droid = AstromechDroid('R2-D2', 1.05) >>> droid.periscope_height#(1)! Calculating periscope height... 0.315 >>> droid.periscope_height#(2)! 0.315 >>> droid.height = 1.15 >>> droid.periscope_height#(3)! Calculating periscope height... 0.345 >>> droid.periscope_height#(4)! 0.345 ``` { .annotate } 1. La altura del droide ha cambiado (asignación en el constructor), por lo tanto se recalcula la altura del periscopio. 2. La altura del droide no ha cambiado, por lo tanto se devuelve la altura del periscopio precalculada. 3. La altura del droide ha cambiado (asignación manual), por lo tanto se recalcula la altura del periscopio. 4. La altura del droide no ha cambiado, por lo tanto se devuelve la altura del periscopio precalculada. ### Ocultando atributos { #hide-attributes } Python tiene una convención sobre aquellos atributos que queremos hacer **«privados»** (u ocultos): comenzar el nombre con doble subguión `__` A continuación se presenta un ejemplo:material-flash: ocultando el nombre del droide: ```pycon >>> class Droid: ... def __init__(self, name: str): ... self.__name = name ... ``` A la hora de acceder a este atributo obtendríamos un error: ```pycon hl_lines="7" >>> droid = Droid('BC-44') >>> droid.__name Traceback (most recent call last): Cell In[2], line 1 droid.__name AttributeError: 'Droid' object has no attribute '__name' ``` Lo que realmente ocurre tras el telón se conoce como «name mangling» y consiste en modificar el nombre del atributo ^^incorporando la clase como un prefijo^^. Sabiendo esto podemos acceder al valor del atributo supuestamente privado: ```pycon >>> droid._Droid__name 'BC-44' ``` ### Atributos de clase { #class-attributes } Hasta ahora hemos visto _atributos de objeto_ pero también es posible crear **atributos de clase**. Estos ^^serán asumidos por todos los objetos^^ instanciados a partir de dicha clase. A modo de ejemplo:material-flash: podemos suponer que **todos los droides están diseñados para que obedezcan a su dueño**. Esto lo podemos conseguir a nivel de clase, salvo que ese comportamiento se quisiera sobreescribir: ```pycon >>> class Droid: ... obeys_owner = True#(1)! ... >>> good_droid = Droid() >>> good_droid.obeys_owner#(2)! True >>> t1000 = Droid() >>> t1000.obeys_owner True >>> t1000.obeys_owner = False#(3)! >>> t1000.obeys_owner False >>> Droid.obeys_owner#(4)! True ``` { .annotate } 1. - Un atributo de clase se define dentro de la clase asignándole un valor inicial. - Habitualmente van **antes que los métodos**. 2. Cualquier objeto creado contendrá este atributo de clase. 3. Python permite la modificación del atributo de clase (para una instancia concreta). 4. El cambio no afecta a nivel global de la clase. !!! tip "Acceso" Los atributos de clase son accesibles tanto desde la clase como desde las instancias creadas. Hay que tener en cuenta lo siguiente: 1. Si modificamos un atributo de clase desde un objeto, sólo modificamos el valor en el objeto y no en la clase. 2. Si modificamos un atributo de clase desde una clase, **modificamos el valor en todos los objetos pasados y futuros**. Veamos un ejemplo:material-flash: de este segundo caso: ```pycon hl_lines="13" >>> class Droid: ... obeys_owner = True ... >>> droid1 = Droid() >>> droid1.obeys_owner True >>> droid2 = Droid() >>> droid2.obeys_owner True >>> Droid.obeys_owner = False#(1)! >>> droid1.obeys_owner False >>> droid2.obeys_owner False >>> droid3 = Droid() >>> droid3.obeys_owner False ``` { .annotate } 1. Cambia pasado y futuro. La ^^explicación de este fenómeno^^ es la siguiente :material-arrow-right-bold: Todas las instancias (pasadas y futuras) del droide tienen un «atributo» `obeys_owner` que «apunta» a la misma zona de memoria que la del atributo `obeys_owner` de la clase: ```pycon >>> id(Droid.obeys_owner) 4385213672 >>> id(droid1.obeys_owner) 4385213672 >>> id(droid2.obeys_owner) 4385213672 >>> id(droid3.obeys_owner) 4385213672 ``` ![Dark image](images/oop/obeys-owner1-dark.svg#only-dark) ![Light image](images/oop/obeys-owner1-light.svg#only-light) Supongamos que tras el cambio «global» de `obeys_owner` lo que buscamos es que **sólo se modifiquen los droides futuros pero no los pasados**. Para poder abordar este escenario debemos recurrir a ^^atributos de instancia^^: ```pycon >>> class Droid: ... obeys_owner = True ... ... def __init__(self): ... self.obeys_owner = Droid.obeys_owner#(1)! ... ``` { .annotate } 1. En este punto se crea un atributo propio del objeto creado, que toma el valor del atributo de clase, pero se desvincula de su posición de memoria. Ahora veamos cuál es su comportamiento: ```pycon hl_lines="9" >>> droid1 = Droid() >>> droid1.obeys_owner True >>> droid2 = Droid() >>> droid2.obeys_owner True >>> Droid.obeys_owner = False >>> droid1.obeys_owner True >>> droid2.obeys_owner True >>> droid3 = Droid() >>> droid3.obeys_owner False ``` ![Dark image](images/oop/obeys-owner2-dark.svg#only-dark) ![Light image](images/oop/obeys-owner2-light.svg#only-light) ## Métodos { #methods } En esta sección se tratará en profundidad todo lo relacionado con los métodos. ### Métodos de instancia { #instance-methods } Un **método de instancia** es un método que ^^accede o modifica el estado del objeto^^ al que hace referencia. Recibe `#!python self` como primer parámetro, el cual se convierte en el propio objeto sobre el que estamos trabajando. Python envía este argumento de forma transparente: no hay que pasarlo como argumento. Veamos un ejemplo:material-flash: en el que, además del constructor, creamos un método de instancia para hacer que un droide se mueva: ```pycon >>> class Droid: ... def __init__(self, name: str):#(1)! ... self.name = name ... self.covered_distance = 0 ... ... def move_up(self, steps: int) -> None:#(2)! ... self.covered_distance += steps ... print(f'Moving {steps} steps') ... ``` { .annotate } 1. El constructor también es un método de instancia. 2. Método de instancia para mover el droide. Veamos su comportamiento: ```pycon >>> droid = Droid('C1-10P') >>> droid.move_up(10) Moving 10 steps ``` #### Propiedades vs Métodos { #properties-vs-methods } Es razonable plantearse cuándo usar [propiedades](#properties) o cuándo usar [métodos de instancia](#instance-methods). Si la implementación requiere de parámetros, no hay confusión, necesitamos usar métodos. Pero más allá de esto, no existe una respuesta clara y concisa a la pregunta. Aunque sí podemos dar algunas «pistas» para saber cuándo usar propiedades o cuándo usar métodos: ![Dark image](images/oop/properties-vs-methods-dark.svg#only-dark) ![Light image](images/oop/properties-vs-methods-light.svg#only-light) ### Métodos de clase { #class-methods } Un **método de clase** es un método que ^^accede o modifica el estado de la clase^^ a la que hace referencia. Recibe `#!python cls` como primer parámetro, el cual se convierte en la propia clase (una referencia) sobre la que estamos trabajando. Python envía este argumento de forma transparente. La identificación de estos métodos se completa aplicando el [decorador](./functions.md#decorators) `#!python @classmethod` a la función. Veamos un ejemplo:material-flash: en el que implementamos un _método de clase_ que **muestra el número de droides creados**: ```pycon >>> class Droid: ... count = 0#(1)! ... ... def __init__(self): ... Droid.count += 1#(2)! ... ... @classmethod#(3)! ... def get_total_droids(cls) -> None:#(4)! ... print(f'{cls.count} droids built so far!')#(5)! ... ``` { .annotate } 1. Se trata de una variable de clase. 2. Incrementamos la variable de clase cada vez que se «construye» nuevo droide. 3. Uso del decorador que define un método de clase. 4. Los métodos de clase siempre reciben como primer parámetro `cls` haciendo referencia a la propia clase. 5. Accedemos a la cuenta de droides construidos. Probemos el código anterior: ```pycon >>> droid1 = Droid() >>> droid2 = Droid() >>> droid3 = Droid() >>> Droid.get_total_droids() 3 droids built so far! ``` ### Métodos estáticos { #static-methods } Un **método estático** es un método que ^^no «debería» modificar el estado del objeto ni de la clase^^. No recibe ningún parámetro especial. La identificación de estos métodos se completa aplicando el [decorador](./functions.md#decorators) `#!python @staticmethod` a la función. Veamos un ejemplo:material-flash: en el que creamos un método estático para devolver **las categorías de droides** que existen en _StarWars_: ```pycon >>> class Droid: ... def __init__(self, name: str): ... self.name = name ... ... @staticmethod#(1)! ... def get_droid_categories() -> tuple[str]:#(2)! ... return ('MESSENGER', 'ASTROMECH', 'POWER', 'PROTOCOL') ... >>> Droid.get_droid_categories() ('MESSENGER', 'ASTROMECH', 'POWER', 'PROTOCOL') ``` { .annotate } 1. Uso del decorador para especificar que es un método estático. 2. El método no recibe ningún parámetro especial. #### Decoradores en clases { #class-decorators } Hay escenarios en los que puede interesar aplicar decoradores propios en métodos de una clase. El enfoque es el mismo que ya se ha visto en la sección de [decoradores](functions.md#decorators) pero con ciertos matices. Un decorador dentro de una clase debe ser un **método estático**. A continuación veremos un ejemplo:material-flash: en el que creamos un decorador **para comprobar que el droide está encendido** antes de realizar determinadas operaciones: ```pycon hl_lines="6-14" >>> class Droid: ... def __init__(self, name: str): ... self.name = name ... self.powered = False ... ... @staticmethod#(1)! ... def power_required(method):#(2)! ... def wrapper(self, *args, **kwargs):#(3)! ... if self.powered:#(4)! ... return method(self, *args, **kwargs)#(5)! ... else: ... print('Droid must be powered to perform this action!') ... return None ... return wrapper ... ... def power_on(self): ... self.powered = True ... ... def power_off(self): ... self.powered = False ... ... @power_required#(6)! ... def greet(self): ... print(f"Hi there! I'm {self.name} at your service") ... ``` { .annotate } 1. Un decorador debe ser un método estático. 2. - Habitualmente usamos `func` como parámetro. - En este caso tiene sentido usar `method` ya que es una clase. - Al fin y al cabo sólo son convenciones. 3. Es un «wrapper» habitual. 4. Sólo se llamará al método decorado si el droide está encendido. 5. - :fontawesome-solid-triangle-exclamation:{ .yellow } **Sólo en este caso** la llamada al método cambia. - `#!python self.method(*args, **kwargs)` :material-arrow-right-bold: `#!python method(self, *args, **kwargs)` - De no hacerlo así obtendríamos un error: `AttributeError: 'Droid' object has no attribute 'method'` 6. Aplicamos el decorador sobre este método. Vamos ahora a poner en funcionamiento el código anterior y comprobar que el decorador está funcionando correctamente: ```pycon >>> droid = Droid('B1') >>> droid.greet()#(1)! Droid must be powered to perform this action! >>> droid.power_on() >>> droid.greet()#(2)! Hi there! I'm B1 at your service ``` { .annotate } 1. El droide está apagado. 2. El droide está encendido. !!! tip "Encapsulamiento" El decorador también se podría implementar fuera de la clase. Por una cuestión de encapsulamiento podría tener sentido dejarlo **dentro de la clase como método estático**. ### Métodos mágicos { #magic-methods } Cuando escribimos `#!python 'hello world' * 3` ¿cómo sabe el objeto `#!python 'hello world'` lo que debe hacer para multiplicarse con el objeto entero `#!python 3`? O dicho de otra forma, ¿cuál es la implementación del operador `*` para «strings» e «int»? En valores numéricos puede parecer evidente (siguiendo los operadores matemáticos clásicos), pero no es así para otros objetos. La solución que proporciona Python para estas (y otras) situaciones son los **métodos mágicos**. Los métodos mágicos empiezan y terminan por doble subguión `__` (es por ello que también se les conoce como «dunder-methods»). Uno de los «dunder-methods» más famosos ya lo hemos visto y es el constructor de la clase: `#!python __init__()`. :material-check-all:{ .blue } Los métodos mágicos se «disparan» ~~automágicamente~~ automáticamente cuando utilizamos ciertas estructuras y expresiones del lenguaje. #### Operadores { #magic-operators } Para el caso de los operadores también existe un método mágico asociado (que podemos personalizar). Por ejemplo:material-flash: la **comparación de dos objetos** lanza el método mágico `#!python __eq__()`: ```mermaid flowchart LR code["a == b"] --->|⚡| eq["__eq__"] ``` Extrapolando esta idea a nuestro universo _StarWars_, podríamos establecer que **dos droides son iguales si su nombre es igual**, independientemente de que tengan distintos números de serie: ```pycon hl_lines="6-7" >>> class Droid: ... def __init__(self, name: str, serial_number: int): ... self.name = name ... self.serial_number = serial_number ... ... def __eq__(self, droid: Droid) -> bool:#(1)! ... return self.name == droid.name#(2)! ... ``` { .annotate } 1. Para evitar un error de tipo (en la anotación) `NameError: name 'Droid' is not defined` es necesario importar esto: `#!python from __future__ import annotations` 2. La comparación se realiza a nivel de nombre de droide. !!! warning "name is not defined" Para evitar errores de tipo (en la anotación) del estilo `NameError: name 'Droid' is not defined` es necesario: ```python from __future__ import annotations ``` Comprobemos entonces si dos droides son iguales: ```pycon >>> droid1 = Droid('C-3PO', 43974973242) >>> droid2 = Droid('C-3PO', 85094905984) >>> droid1 == droid2#(1)! True ``` { .annotate } 1. Llamada implícita a: `#!python droid1.__eq__(droid2)` ¿Pero qué pasaría si tratamos de comparar un droide con «cualquier otra cosa»? ```pycon hl_lines="7" >>> droid1 == 'C-3PO' Traceback (most recent call last): Cell In[8], line 1 droid1 == 'C-3PO' Cell In[1], line 7 in __eq__ return self.name == droid.name AttributeError: 'str' object has no attribute 'name' ``` Obtendremos un error ya que un objeto de tipo «string» no dispone de un atributo `name`. Para resolver esto debemos cribar el objeto que vamos a comparar en función de su naturaleza: ```pycon hl_lines="7" >>> class Droid: ... def __init__(self, name: str, serial_number: int): ... self.name = name ... self.serial_number = serial_number ... ... def __eq__(self, other) -> bool: ... if isinstance(other, Droid):#(1)! ... return self.name == other.name ... return False ... ``` { .annotate } 1. Si es un droide lo tratamos como tal, en otro caso, los objetos no pueden ser iguales. Ahora se puede comprobar que todo funciona según lo esperado: ```pycon hl_lines="7-8" >>> droid1 = Droid('C-3PO', 43974973242) >>> droid2 = Droid('C-3PO', 85094905984) >>> droid1 == droid2 True >>> droid1 == 'C-3PO' False ``` A continuación se presenta una tabla con métodos mágicos para operadores:
- Operadores de comparación --- | Operador | Método mágico | | --- | --- | | :material-code-equal: | `#!python __eq__` | | :material-code-not-equal: | `#!python __ne__` | | :material-code-less-than: | `#!python __lt__` | | :material-code-greater-than: | `#!python __gt__` | | :material-code-less-than-or-equal: | `#!python __le__` | | :material-code-greater-than-or-equal: | `#!python __ge__` | - Operadores aritméticos --- | Operador | Método mágico | | --- | --- | | :material-plus-box: | `#!python __add__` | | :material-minus-box: | `#!python __sub__` | | :material-multiplication-box: | `#!python __mul__` | | :material-slash-forward-box: | `#!python __truediv__`(1) | | :material-percent-box: | `#!python __mod__` | | :material-exponent-box: | `#!python __pow__` |
1. La división entera `//` lanza el método mágico `#!python __floordiv__` !!! tip "Métodos especiales" Los métodos mágicos no sólo están restringidos a operadores de comparación o aritméticos. Existen muchos otros en la documentación oficial de Python, donde son llamados [métodos especiales](https://docs.python.org/es/3/reference/datamodel.html#special-method-names). Veamos otro ejemplo:material-flash: en el que **«sumamos» dos droides** (_esto se podría ver como una fusión_). Supongamos que la suma de dos droides implica: **a)** que el nombre del droide resultante es la concatenación de los nombres de los droides de entrada; **b)** que la energía del droide resultante es la suma de la energía de los droides de entrada: ```pycon >>> class Droid: ... def __init__(self, name: str, power: int): ... self.name = name ... self.power = power ... ... def __add__(self, other): ... if isinstance(other, Droid): ... new_power = self.power + other.power#(1)! ... elif isinstance(other, int): ... new_power = self.power + other#(2)! ... else: ... new_power = self.power#(3)! ... return Droid(self.name, new_power) ... ``` { .annotate } 1. Suma de droide con droide. 2. Suma de droide con entero. 3. Suma de droide con cualquier otro tipo de dato. Probamos ahora el operador en distintos escenarios: ```pycon >>> droid1 = Droid('L3-37', 75) >>> droid2 = Droid('M5-BZ', 47) >>> droid = droid1 + droid2 >>> droid.power 122 >>> droid = droid1 + 25 >>> droid.power 100 >>> droid = droid2 + 'starwars' >>> droid.power 47 ``` #### `__str__` { #str } Uno de los métodos mágicos más utilizados es `#!python __str__` y permite establecer la forma en la que un objeto es representado como _cadena de texto_. Siguiendo con el ejemplo:material-flash: del droide, veamos una implementación de este método: ```pycon >>> class Droid: ... def __init__(self, name: str, serial_number: int): ... self.serial_number = serial_number ... self.name = name ... ... def __str__(self):#(1)! ... return f'🤖 Droid "{self.name}" serial-no {self.serial_number}' ... ``` { .annotate } 1. Este método **siempre** debe devolver un `#!python str`. Existen tres ocasiones en las que se «dispara» el método mágico `#!python __str__()`: ```pycon >>> print(droid)#(1)! 🤖 Droid "K-2SO" serial-no 8403898409432 >>> str(droid)#(2)! '🤖 Droid "K-2SO" serial-no 8403898409432' >>> f'Droid --> {droid}'#(3)! 'Droid --> 🤖 Droid "K-2SO" serial-no 8403898409432' ``` { .annotate } 1. Imprimir el valor de un objeto. 2. Convertir a cadena de texto. 3. Interpolar un «f-string». #### `__repr__` { #repr } ¿Por qué sale esto al ver el contenido de un objeto en un intérprete interactivo de Python ❯❯❯? ```pycon >>> droid <__main__.Droid object at 0x1052bb380> ``` Porque el método mágico que se ejecuta cuando mostramos un objeto en el intérprete es `#!python __repr__`(1) y suele estar más enfocado a una representación «técnica» del mismo. { .annotate } 1. También cuando usamos la función «built-in» `#!python repr()`. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `fraction` #### Gestores de contexto { #context-manager } Otra de las aplicaciones interesantes de los métodos mágicos/especiales son los **gestores de contexto**. Un gestor de contexto permite aplicar una serie de **acciones a la entrada y a la salida** del bloque de código que engloba. Hay dos métodos que son utilizados para implementar los gestores de contexto: | Método | Descripción | | --- | --- | | `__enter__` | :material-download-network: Acciones que se llevan a cabo al entrar al contexto. | | `__exit__` | :material-upload-network: Acciones que se llevan a cabo al salir al contexto. | Podemos encontrar gestores de contexto... === "... que no devuelven nada" A continuación se presenta un ejemplo:material-flash: que muestra mensajes al comienzo y al final del contexto: ```pycon >>> class Greeting:#(1)! ... def __enter__(self):#(2)! ... print('Dear user, welcome to this context manager 👋') ... ... def __exit__(self, exc_type, exc_value, exc_traceback):#(3)! ... print('Bye bye! Have a nice day 🌻') ... ``` { .annotate } 1. Se trata de una clase como otra cualquiera. 2. Acciones a realizar a la entrada del contexto. 3. - Acciones a realizar a la salida del contexto. - Es obligatorio definir los parámetros para control de excepciones: `exc_type` contendrá el tipo de la excepción, `exc_value` el valor de la excepción y `exc_traceback` la traza de la excepción. - Si el contexto terminó sin ningún error, los argumentos anteriores valdrán `#!python None`. Ahora podemos probar nuestro gestor de contexto: ```pycon >>> with Greeting(): ... items = [i**2 for i in range(10)] ... print(items) ... Dear user, welcome to this context manager 👋 [0, 1, 4, 9, 16, 25, 36, 49, 64, 81] Bye bye! Have a nice day 🌻 ``` === "... que devuelven un objeto" A continuación se presenta un ejemplo:material-flash: que borra el rastro de un droide. Lo primero será definir la clase del droide: ```pycon >>> class Droid: ... def __init__(self, name: str): ... self.name = name ... self.steps = [] ... ... def move(self, x: int, y: int) -> None: ... self.steps.append((x, y)) ... ``` Ahora crearemos el gestor de contexto en sí mismo: ```pycon >>> class LazyDroid: ... def __init__(self, name: str):#(1)! ... self.droid = Droid(name) ... ... def __enter__(self):#(2)! ... return self.droid ... ... def __exit__(self, exc_type, exc_value, exc_traceback): ... self.droid.steps.clear() ... ``` { .annotate } 1. Los gestores de contexto también puede incluir constructor. 2. Devolvemos el droide creado. 3. Borramos sus pasos. Por último probemos la implementación: ```pycon >>> with LazyDroid('KT-QT') as droid: ... droid.move(3, 7) ... droid.move(4, 4) ... droid.move(2, 9) ... droid.move(5, 1) ... >>> droid.steps#(1)! [] ``` { .annotate } 1. Los pasos se han borrado gracias al gestor de contexto. ## Herencia { #inheritance } La herencia es un mecanismo de OOP que consiste en construir una nueva clase partiendo de otra ya existente, añadiendo o modificando ciertos aspectos. La herencia se considera una buena práctica de programación tanto para reutilizar código como para realizar generalizaciones. Se denomina **clase base** a la clase desde la que se hereda y **subclase** a la clase que ha heredado: ![Inheritance](images/oop/inheritance.svg) ### Mecanismo de herencia { #inheritance-mecanism } Para que una clase «herede» de otra, basta con indicar la clase base entre paréntesis en la definición de la subclase. Empecemos con un ejemplo:material-flash: sencillo en el que un _droide de protocolo_ hereda de un _droide_: ```pycon >>> class Droid:#(1)! ... pass#(2)! ... >>> class ProtocolDroid(Droid):#(3)! ... pass#(4)! ... ``` { .annotate } 1. Clase base. 2. Por simplicidad no se ha añadido ningún código en la clase. 3. Subclase. 4. Por simplicidad no se ha añadido ningún código en la clase. Hecho esto, podemos comprobar que realmente se cumple la herencia: ```pycon >>> issubclass(ProtocolDroid, Droid)#(1)! True ``` { .annotate } 1. ¿Es `ProtocolDroid` una subclase de `Droid`? :material-check-circle:{.green} Vamos ahora a añadir cierta funcionalidad a la clase base: ```pycon >>> class Droid: ... def switch_on(self): ... print("Hi! I'm a droid. Can I help you?") ... ... def switch_off(self): ... print("Bye! I'm going to sleep") ... >>> class ProtocolDroid(Droid): ... pass ... ``` Y comprobemos cuál es el comportamiento en función de la herencia definida: ```pycon >>> r2d2 = Droid()#(1)! >>> c3po = ProtocolDroid()#(2)! >>> r2d2.switch_on()#(3)! Hi! I'm a droid. Can I help you? >>> r2d2.switch_off()#(4)! Bye! I'm going to sleep >>> c3po.switch_on()#(5)! Hi! I'm a droid. Can I help you? >>> c3po.switch_off()#(6)! Bye! I'm going to sleep ``` { .annotate } 1. Creación de una instancia de droide (_clase base_). 2. Creación de una instancia de droide de protocolo (_subclase_). 3. Método definido en la clase base. 4. Método definido en la clase base. 5. Método definido en la clase base pero no en la subclase. Al haber heredado se puede utilizar sin ningún inconveniente. 5. Método definido en la clase base pero no en la subclase. Al haber heredado se puede utilizar sin ningún inconveniente. ### Sobreescribir un método { #method-override } Como hemos visto, la subclase hereda todo lo que contiene su clase base. Pero hay ocasiones en las que nos interesa modificar este comportamiento. En el siguiente ejemplo:material-flash: vamos a personalizar el saludo de la subclase de _droide de protocolo_: ```pycon hl_lines="10-11" >>> class Droid: ... def switch_on(self): ... print("Hi! I'm a droid. Can I help you?") ... ... def switch_off(self): ... print("Bye! I'm going to sleep") ... >>> class ProtocolDroid(Droid): ... def switch_on(self): ... print("Hi! I'm a PROTOCOL droid. Can I help you?") ... ``` Veamos cómo afecta este cambio al comportamiento de los objetos creados: ```pycon hl_lines="9-10" >>> r2d2 = Droid()#(1)! >>> c3po = ProtocolDroid()#(2)! >>> r2d2.switch_on()#(3)! Hi! I'm a droid. Can I help you? >>> r2d2.switch_off()#(4)! Bye! I'm going to sleep >>> c3po.switch_on()#(5)! Hi! I'm a PROTOCOL droid. Can I help you? >>> c3po.switch_off()#(6)! Bye! I'm going to sleep ``` { .annotate } 1. Creación de una instancia de droide (_clase base_). 2. Creación de una instancia de droide de protocolo (_subclase_). 3. Método definido en la clase base. 4. Método definido en la clase base. 5. Método definido en la clase base y en la subclase. Se aplica el de la subclase ya que sobreescribe al de la clase base. 5. Método definido en la clase base pero no en la subclase. Al haber heredado se puede utilizar sin ningún inconveniente. ### Añadir un método { #inheritance-add-method } La subclase puede, como cualquier otra clase «ordinaria», añadir métodos que no estaban presentes en su clase base. En el siguiente ejemplo:material-flash: vamos a añadir un método `translate()` que permita a los _droides de protocolo_ **traducir cualquier mensaje**: ```pycon hl_lines="13-15" >>> class Droid: ... def switch_on(self): ... print("Hi! I'm a droid. Can I help you?") ... ... def switch_off(self): ... print("Bye! I'm going to sleep") ... >>> class ProtocolDroid(Droid): ... def switch_on(self): ... print("Hi! I'm a PROTOCOL droid. Can I help you?") ... ... def translate(self, msg: str, *, from_lang: str) -> str: ... """ Translate from language to Human understanding """ ... return f'{msg} means "ZASCA" in {from_lang}' ... ``` Probemos ahora esta implementación: ```pycon hl_lines="11" >>> r2d2 = Droid() >>> c3po = ProtocolDroid() >>> c3po.translate('kiitos', from_lang='Hutese')#(1)! 'kiitos means "ZASCA" in Hutese' >>> r2d2.translate('kiitos', from_lang='Huttese')#(2)! Traceback (most recent call last): Cell In[4], line 1 r2d2.translate('kiitos', from_lang='Huttese') AttributeError: 'Droid' object has no attribute 'translate' ``` { .annotate } 1. Método definido en la subclase. 2. - Este método sólo está definido en la subclase con lo cual no se puede utilizar desde la clase base. - Tiene sentido que falle ya que los droides que no son de protocolo no pueden traducir. :material-check-all:{ .blue } Con esto ya hemos aportado una personalidad diferente a los droides de protocolo, a pesar de que heredan de la clase genérica de droides de StarWars. ### Resolver colisiones { #solving-collides } Cuando tenemos métodos (o atributos) definidos con el mismo nombre en la clase base y en la clase derivada se produce una **colisión** y debe existir un mecanismo para diferenciarlos. Para estos casos Python nos ofrece `#!python super()` como función para acceder a métodos (o atributos) de la clase base. Este escenario es especialmente recurrente en el constructor de aquellas clases que heredan de otras y necesitan inicializar la clase base. Veamos un ejemplo:material-flash: más elaborado con nuestros droides: ```pycon hl_lines="8" >>> class Droid: ... def __init__(self, name: str): ... self.name = name ... >>> class ProtocolDroid(Droid): ... def __init__(self, name: str, languages: list[str]): ... super().__init__(name)#(1)! ... self.languages = languages ... ``` { .annotate } 1. Llamada al constructor de la clase base. Probemos ahora la implementación anterior: ```pycon >>> droid = ProtocolDroid('C-3PO', ['Ewokese', 'Huttese', 'Jawaese']) >>> droid.name#(1)! 'C-3PO' >>> droid.languages#(2)! ['Ewokese', 'Huttese', 'Jawaese'] ``` { .annotate } 1. Fijado en el constructor de la clase base. 2. Fijado en el constructor de la subclase. ### Herencia múltiple { #multiple-inheritance } Aunque no está disponible en todos los lenguajes de programación, Python sí permite **heredar de múltiples clases base**. Supongamos por ejemplo:material-flash: que queremos modelar la siguiente estructura de clases con herencia múltiple: ![Dark image](images/oop/multiple-inheritance-dark.svg#only-dark) ![Light image](images/oop/multiple-inheritance-light.svg#only-light) La forma de definir herencia múltiple en Python es indicar las clases base dentro del paréntesis: ```pycon hl_lines="16 20" >>> class Droid: ... def greet(self): ... return 'Here a droid' ... >>> class ProtocolDroid(Droid): ... def greet(self): ... return 'Here a protocol droid' ... >>> class AstromechDroid(Droid): ... def greet(self): ... return 'Here an astromech droid' ... >>> class SuperDroid(ProtocolDroid, AstromechDroid): ... pass ... >>> class HyperDroid(AstromechDroid, ProtocolDroid): ... pass ``` !!! warning "Orden de herencia" El orden en el que especificamos las clases base influye en el resultado final. Podemos comprobar esta herencia múltiple de la siguiente manera: ```pycon >>> issubclass(SuperDroid, (ProtocolDroid, AstromechDroid, Droid))#(1)! True >>> issubclass(HyperDroid, (AstromechDroid, ProtocolDroid, Droid))#(2)! True ``` { .annotate } 1. - Un «superdroide» es una subclase de «droide de protocolo», «droide astromecánico» y «droide». - La función `issubclass()` también funciona con varias clases pasando una tupla. 2. - Un «hiperdroide» es una subclase de «droide de astromecánico», «droide de protocolo» y «droide». - La función `issubclass()` también funciona con varias clases pasando una tupla. ¿Cómo se comportarán los métodos definidos en esta herencia múltiple? ```pycon >>> super_droid = SuperDroid() >>> hyper_droid = HyperDroid() >>> super_droid.greet()#(1)! 'Here a protocol droid' >>> hyper_droid.greet()#(2)! 'Here an astromech droid' ``` { .annotate } 1. El método `greet()` más «cercano» en alguna clase base de `SuperDroid` sería el de `ProtocolDroid`. 2. El método `greet()` más «cercano» en alguna clase base de `HyperDroid` sería el de `AstromechDroid`. #### Orden de resolución de métodos { #mro } Si en una clase se hace referencia a un método o atributo que no existe, Python lo buscará en todas sus clases base. Pero es posible que exista una colisión en caso de que el método o el atributo buscado esté, a la vez, en varias clases base. En este caso, Python resuelve el conflicto a través del **orden de resolución de métodos**. Todas las clases en Python disponen de un método especial llamado `mro()` «method resolution order» que devuelve una lista de las clases que se visitarían en caso de acceder a un método o a un atributo. Podemos comprobar este hecho en el ejemplo:material-flash: anterior de herencia múltiple de droides: ```pycon >>> SuperDroid.mro() [, , , , ] >>> HyperDroid.mro() [, , , , ] ``` :material-check-all:{ .blue } Todos los objetos en Python heredan, en primera instancia, de [`object`](https://docs.python.org/3/reference/datamodel.html). Esto se puede comprobar con el correspondiente `mro()` de cada objeto: ```pycon >>> int.mro() [int, object] >>> str.mro() [str, object] >>> float.mro() [float, object] >>> tuple.mro() [tuple, object] >>> list.mro() [list, object] >>> bool.mro()#(1)! [bool, int, object] ``` { .annotate } 1. Es por este motivo que podemos encontrar comportamientos «numéricos» de valores booleanos. Otra forma de comprobar lo anteriormente dicho sería ejecutar el siguiente fragmento de código: ```pycon >>> PY_TYPES = (int, str, float, tuple, list, bool) >>> all(issubclass(_type, object) for _type in PY_TYPES) True ``` ### Mixins { #mixins } Hay situaciones en las que nos interesa incorporar una clase base «independiente» de la jerarquía establecida, y sólo a efectos de **tareas auxiliares o transversales**. Esta aproximación podría ayudar a evitar colisiones en métodos o atributos reduciendo la ambigüedad que añade la herencia múltiple. A estas clases auxiliares se las conoce como **«mixins»**. Veamos une ejemplo:material-flash: de un «mixin» que permite dejar registro de las operaciones realizadas: ```pycon hl_lines="1-3 11" >>> class LoggerMixin:#(1)! ... def log(self, message):#(2)! ... print(f'[LOG] {message}') ... >>> class Droid:#(3)! ... def __init__(self): ... self.pos = (0, 0) ... >>> class ProtocolDroid(Droid, LoggerMixin):#(4)! ... def move(self, x: int, y: int) -> None: ... self.log(f'Moving droid to ({x}, {y})')#(5)! ... self.pos = (x, y) ... ``` { .annotate } 1. Un «mixin» debería ser algo genérico y no acoplado al contexto del problema. 2. Se define un método para mostrar mensajes. 3. Esta clase sería la clase base de la jerarquía propiamente del contexto del problema 4. Este clase hereda de la clase base `Droid` pero a su vez le otorgamos funcionalidades extra mediante el «mixin» `LoggerMixin`. 5. Podemos hacer uso del método `log()` ya que se ha heredado del «mixin» `LoggerMixin`. Comprobemos el funcionamiento del código anterior: ```pycon hl_lines="6-7" >>> droid = ProtocolDroid() >>> droid.pos (0, 0) >>> droid.move(7, 2) [LOG] Moving droid to (7, 2) >>> droid.pos (7, 2) ``` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `file-inheritance` ### Agregación y composición { #aggcomp } Aunque la herencia de clases nos permite modelar una gran cantidad de casos de uso en términos de **«is-a»** (_es un_), existen muchas otras situaciones en las que la ^^agregación^^ o la ^^composición^^ son una mejor opción. En este último caso ^^una clase se compone de otras clases^^: hablamos de una relación **«has-a»** (_tiene un_).
- **Agregación** --- La agregación implica que el objeto utilizado puede funcionar por sí mismo. ![Agregación](images/oop/aggregation.svg) «Una bicicleta tiene una linterna» - **Composición** --- La composición implica que el objeto utilizado no puede «funcionar» sin la presencia de su propietario. ![Composición](images/oop/composition.svg) «Un ordenador tiene una CPU»
Veamos un ejemplo:material-flash: de cada uno de ellos en el contexto de los droides de _StarWars_: === "Agregación" Hay droides que pueden ir «armados» con ciertas herramientas: ```pycon >>> class Tool: ... def __init__(self, name: str): ... self.name = name ... ... def __str__(self): ... return self.name.upper() ... >>> class Droid: ... def __init__(self, name: str, serial_number: int, tool: Tool = None):#(1)! ... self.name = name ... self.serial_number = serial_number ... self.tool = tool#(2)! ... ... def __str__(self): ... msg = f'Droid {self.name}' ... if self.tool: ... msg += f' armed with a {self.tool}' ... return msg ... ``` { .annotate } 1. En un modelo de agregación el objeto (herramienta) es opcional. 2. Agregación de una herramienta al droide. Veamos una aplicación de la implementación anterior: ```pycon >>> lighter = Tool('lighter') >>> bb8 = Droid('BB-8', 48050989085439, lighter) >>> print(bb8) Droid BB-8 armed with a LIGHTER ``` === "Composición" Todos los droides necesitan una batería para funcionar: ```pycon >>> class Battery: ... def __init__(self, kw: float): ... self.kw = kw ... ... def __str__(self): ... return f'{self.kw}kW BATTERY' ... >>> class Droid: ... def __init__(self, name: str, serial_number: int, battery: Battery):#(1)! ... self.name = name ... self.serial_number = serial_number ... self.battery = battery#(2)! ... ... def __str__(self): ... return f'Droid {self.name} built with a {self.battery}' ... ``` { .annotate } 1. En un modelo de composición el objeto (batería) es requerido. 2. Composición de una batería en el droide. Veamos una aplicación de la implementación anterior: ```pycon >>> battery = Battery(47) >>> bb8 = Droid('BB-8', 48050989085439, battery) >>> print(bb8) Droid BB-8 built with a 47kW BATTERY ``` ## Estructuras mágicas { #magic-structures } Obviamente no existen estructuras mágicas, pero sí que hay estructuras de datos que deben implementar ciertos métodos mágicos (o especiales) para desarrollar su comportamiento. En este apartado veremos algunas de ellas. ### Secuencias { #sequences } Una **secuencia** en Python es un objeto en el que podemos **acceder a cada uno de sus elementos a través de un índice**, así como **calcular su longitud** total. Algunos ejemplos de secuencias que ya se han visto incluyen [cadenas de texto](../datatypes/strings.md), [listas](../datastructures/lists.md) o [tuplas](../datastructures/tuples.md). Una secuencia debe implementar, al menos, los siguientes métodos mágicos: ```mermaid flowchart LR S((Secuencias)) --> A S --> B S --> C A["obj[0]"] <-.-> getitem{{"obj.__getitem__(0)"}} B["obj[1] = value"] <-.-> setitem{{"obj.__setitem__(1, value)"}} C["len(obj)"] <-.-> len{{"obj.__len__()"}} ``` Como ejemplo:material-flash:, podemos asumir que los droides de _StarWars_ **están ensamblados con distintas partes/componentes**. Veamos una implementación de este escenario: ```pycon >>> class Droid: ... def __init__(self, name: str, parts: list[str]): ... self.name = name ... self.parts = parts ... ... def __getitem__(self, index: int) -> str: ... return self.parts[index] ... ... def __setitem__(self, index: int, part: str) -> None: ... self.parts[index] = part ... ... def __len__(self): ... return len(self.parts) ... ``` Ahora podemos instanciar la clase anterior y probar su comportamiento: ```pycon >>> droid = Droid('R2-D2', ['Radar Eye', 'Pocket Vent', 'Battery Box']) >>> droid.parts ['Radar Eye', 'Pocket Vent', 'Battery Box'] >>> droid[0]#(1)! 'Radar Eye' >>> droid[1]#(2)! 'Pocket Vent' >>> droid[2]#(3)! 'Battery Box' >>> droid[1] = 'Holographic Projector'#(4)! >>> droid.parts ['Radar Eye', 'Holographic Projector', 'Battery Box'] >>> len(droid)#(5)! 3 ``` { .annotate } 1. `#!python droid.__getitem__(0)` 2. `#!python droid.__getitem__(1)` 3. `#!python droid.__getitem__(2)` 4. `#!python droid.__setitem__(1, 'Holographic Projector')` 5. `#!python droid.__len__()` !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `infinite-list` ### Diccionarios { #dicts } Los métodos `__getitem__()` y `__setitem()__` también se pueden aplicar para obtener o fijar valores en un estructura de tipo **diccionario**. La diferencia es que **en vez de manejar un índice manejamos una clave**. Retomando el ejemplo:material-flash: anterior de las partes de un droide vamos a plantear que **cada componente tenga asociada una versión**, lo que nos proporciona una estructura de tipo diccionario con clave (nombre de la parte) y valor (versión de la parte): ```pycon >>> class Droid: ... def __init__(self, name: str, parts: dict[str, float]): ... self.name = name ... self.parts = parts ... ... def __getitem__(self, part: str) -> float | None: ... return self.parts.get(part) ... ... def __setitem__(self, part: str, version: float) -> None: ... self.parts[part] = version ... ... def __len__(self): ... return len(self.parts) ``` Ahora podemos instanciar la clase anterior y probar su comportamiento: ```pycon >>> droid = Droid( ... 'R2-D2', ... { ... 'Radar Eye': 1.1, ... 'Pocket Vent': 3.0, ... 'Battery Box': 2.8 ... } ... ) >>> droid.parts {'Radar Eye': 1.1, 'Pocket Vent': 3.0, 'Battery Box': 2.8} >>> droid['Radar Eye']#(1)! 1.1 >>> droid['Pocket Vent']#(2)! 3.0 >>> droid['Battery Box']#(3)! 2.8 >>> droid['Pocket Vent'] = 3.1#(4)! >>> droid.parts {'Radar Eye': 1.1, 'Pocket Vent': 3.1, 'Battery Box': 2.8} >>> len(droid)#(5)! 3 ``` { .annotate } 1. `#!python droid.__getitem__('Radar Eye')` 2. `#!python droid.__getitem__('Pocker Vent')` 3. `#!python droid.__getitem__('Battery Box')` 4. `#!python droid.__setitem__('Pocker Vent', 3.1)` 5. `#!python droid.__len__()` ### Iterables { #iterables } Un objeto en Python se dice **iterable** si implementa el **protocolo de iteración**. Este protocolo permite «entregar» un valor del iterable cada vez que se «solicite». Hay muchos tipos de datos iterables en Python que ya se han estudiado: [cadenas de texto](../datatypes/strings.md), [listas](../datastructures/lists.md), [tuplas](../datastructures/tuples.md), [conjuntos](../datastructures/sets.md), [diccionarios](../datastructures/dicts.md) o [ficheros](../datastructures/files.md). Para ser un objeto iterable sólo es necesario implementar el método mágico `__iter__`. Este método **debe proporcionar una referencia al objeto iterador** que es quien se encargará de desarrollar el protocolo de iteración a través del método mágico `__next__`. ![Dark image](images/oop/iterables-dark.svg#only-dark) ![Light image](images/oop/iterables-light.svg#only-light) Veamos un ejemplo:material-flash: del universo _StarWars_ partiendo de un modelo sencillo de droide: ```pycon >>> class Droid: ... def __init__(self, serial: int): ... self.serial = serial ... ... def __repr__(self): ... return f'Droid: SN{self.serial}' ... ``` A continuación implementamos una factoría de droides ([Geonosis](https://starwars.fandom.com/es/wiki/F%C3%A1bricas_de_droides_de_Geonosis)) como un iterable: ```pycon >>> class Geonosis: ... def __init__(self, num_droids: int): ... self.num_droids = num_droids ... self.pointer = 0 ... ... def __iter__(self) -> object:#(1)! ... return self ... ... def __next__(self) -> Droid:#(2)! ... if self.pointer >= self.num_droids: ... raise StopIteration ... droid = Droid(self.pointer) ... self.pointer += 1 ... return droid ... ``` { .annotate } 1. En este caso el iterador es el propio objeto, pero podría haber sido otro. 2. Protocolo de iteración. Ahora podemos recorrer el iterable y obtener los droides que genera la factoría: ```pycon >>> for droid in Geonosis(10): ... print(droid) ... Droid: SN0 Droid: SN1 Droid: SN2 Droid: SN3 Droid: SN4 Droid: SN5 Droid: SN6 Droid: SN7 Droid: SN8 Droid: SN9 ``` Cuando utilizamos un bucle `for` para recorrer los elementos de un iterable, ocurren varias cosas: 1. Se obtiene el objeto iterador del iterable mediante `#!python iter()`. 2. Se hacen llamadas sucesivas a `#!python next()` sobre dicho iterador para obtener cada elemento del iterable. 3. Se para la iteración cuando el iterador lanza la excepción `StopIteration` (_protocolo de iteración_). !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `fibonacci-iterable` #### Iterables desde fuera { #iterables-outside } Ahora que conocemos las interiodades de los iterables, podemos ver qué ocurre si los usamos desde un enfoque más funcional. En primer lugar hay que conocer el uso de los métodos mágicos en el protocolo de iteración: - `__iter()__` se invoca cuando se hace uso de la función `iter()`. - `__next()__` se invoca cuando se hace uso de la función `next()`. Teniendo esto en cuenta, probemos este ejemplo:material-flash: para generar droides de una forma más «artesanal»: ```pycon >>> factory = Geonosis(3)#(1)! >>> factory_iterator = iter(factory)#(2)! >>> next(factory_iterator)#(3)! Droid: SN0 >>> next(factory_iterator)#(4)! Droid: SN1 >>> next(factory_iterator)#(5)! Droid: SN2 >>> next(factory_iterator)#(6)! Traceback (most recent call last): Cell In[6], line 1 next(factory_iterator) Cell In[], line 11 in __next__ raise StopIteration StopIteration ``` { .annotate } 1. Factoria para construir 3 droides. 2. Obtenemos el objeto iterador :material-arrow-right-bold: `#!python factory.__iter__()` 3. Pedimos el siguiente droide :material-arrow-right-bold: `#!python factory_iterator.__next__()` 4. Pedimos el siguiente droide :material-arrow-right-bold: `#!python factory_iterator.__next__()` 5. Pedimos el siguiente droide :material-arrow-right-bold: `#!python factory_iterator.__next__()` 6. No hay más droides, con lo cual el protocolo de iteración acaba con `StopIteration`. Se da la circunstancia de que, en este caso, **no tenemos que crear el iterador** para poder obtener nuevos elementos: ```pycon >>> next(Geonosis(3)) Droid: SN0 ``` Esto se debe básicamente a que **el iterador es el propio iterable**: ```pycon >>> geon_iterable = Geonosis(3) >>> geon_iterator = iter(geon_iterable) >>> geon_iterable is geon_iterator True ``` Otra característica importante es que **los iterables se agotan**. Lo podemos comprobar con el siguiente código: ```pycon >>> geon = Geonosis(3) >>> for droid in geon: ... print(droid) ... Droid: SN0 Droid: SN1 Droid: SN2 >>> for droid in geon:#(1)! ... print(droid) ``` { .annotate } 1. - El puntero `geon.pointer` vale 3, y por tanto ya no puede generar más droides. - Tendríamos que volver a inicializar el iterable. #### Ejemplos de iterables { #iterable-examples } Vamos a analizar herramientas ya vistas —entendiendo mejor su funcionamiento interno— en base a lo que ya sabemos sobre iterables. === "Enumeración" ```pycon >>> tool = enumerate([1, 2, 3]) >>> iter(tool) is not None#(1)! True >>> iter(tool) == tool#(2)! True >>> next(tool) (0, 1) >>> next(tool) (1, 2) >>> next(tool) (2, 3) >>> next(tool) Traceback (most recent call last): Cell In[7], line 1 next(tool) StopIteration ``` { .annotate } 1. Es iterable. 2. Es su propio iterador. === "Rangos" ```pycon >>> tool = range(1, 4) >>> iter(tool) is not None#(1)! True >>> iter(tool) == tool#(2)! False >>> tool_iterator = iter(tool) >>> tool_iterator >>> next(tool_iterator) 1 >>> next(tool_iterator) 2 >>> next(tool_iterator) 3 >>> next(tool_iterator) Traceback (most recent call last): Cell In[7], line 1 next(tool_iterator) StopIteration ``` { .annotate } 1. Es iterable. 2. Usa otro iterador. !!! info "Objetos de tipo rango" Los objetos de tipo `range` representan una secuencia inmutable de números. La ventaja de usar este tipo de objetos es que siempre se usa una cantidad fija (y pequeña) de memoria, independientemente del rango que represente (ya que solamente necesita almacenar los valores para start, stop y step, y calcula los valores intermedios a medida que los va necesitando). === "Invertir" ```pycon >>> tool = reversed([1, 2, 3]) >>> iter(tool) is not None#(1)! True >>> iter(tool) == tool#(2)! True >>> next(tool) 3 >>> next(tool) 2 >>> next(tool) 1 >>> next(tool) # protocolo de iteración! Traceback (most recent call last): Cell In[7], line 1 next(tool) StopIteration ``` { .annotate } 1. Es iterable. 2. Es su propio iterador. === "Comprimir" ```pycon >>> tool = zip([1, 2], [3, 4]) >>> iter(tool) is not None#(1)! True >>> iter(tool) == tool#(2)! True >>> next(tool) (1, 3) >>> next(tool) (2, 4) >>> next(tool) # protocolo de iteración! Traceback (most recent call last): Cell In[6], line 1 next(tool) StopIteration ``` { .annotate } 1. Es iterable. 2. Es su propio iterador. === "Generadores" ```pycon >>> def seq(n): ... for i in range(1, n+1): ... yield i ... >>> tool = seq(3) >>> iter(tool) is not None#(1)! True >>> iter(tool) == tool#(2)! True >>> next(tool) 1 >>> next(tool) 2 >>> next(tool) 3 >>> next(tool) # protocolo de iteración! Traceback (most recent call last): Cell In[8], line 1 next(tool) StopIteration ``` { .annotate } 1. Es iterable. 2. Es su propio iterador. !!! tip "Expresiones generadoras" Las mismas propiedades se aplican a expresiones generadoras. === "Listas" ```pycon >>> tool = [1, 2, 3] >>> iter(tool) is not None#(1)! True >>> iter(tool) == tool#(2)! False >>> tool_iterator = iter(tool) >>> tool_iterator >>> next(tool_iterator) 1 >>> next(tool_iterator) 2 >>> next(tool_iterator) 3 >>> next(tool_iterator) Traceback (most recent call last): Cell In[9], line 1 next(tool_iterator) StopIteration ``` { .annotate } 1. Es iterable. 2. Usa otro iterador. === "Tuplas" ```pycon >>> tool = tuple([1, 2, 3]) >>> iter(tool) is not None#(1)! True >>> iter(tool) == tool#(2)! False >>> tool_iterator = iter(tool) >>> tool_iterator >>> next(tool_iterator) 1 >>> next(tool_iterator) 2 >>> next(tool_iterator) 3 >>> next(tool_iterator) Traceback (most recent call last): Cell In[9], line 1 next(tool_iterator) StopIteration ``` { .annotate } 1. Es iterable. 2. Usa otro iterador. === "Cadenas de texto" ```pycon >>> tool = 'abc' >>> iter(tool) is not None#(1)! True >>> iter(tool) == tool#(2)! False >>> tool_iterator = iter(tool) >>> tool_iterator >>> next(tool_iterator) 'a' >>> next(tool_iterator) 'b' >>> next(tool_iterator) 'c' >>> next(tool_iterator) Traceback (most recent call last): Cell In[9], line 1 next(tool_iterator) StopIteration ``` { .annotate } 1. Es iterable. 2. Usa otro iterador. === "Diccionarios" ```pycon >>> tool = {'a': 1, 'b': 1} >>> iter(tool) is not None#(1)! True >>> iter(tool) == tool#(2)! False >>> tool_iterator = iter(tool) >>> tool_iterator >>> next(tool_iterator) 'a' >>> next(tool_iterator) 'b' >>> next(tool_iterator) Traceback (most recent call last): Cell In[8], line 1 next(tool_iterator) StopIteration ``` { .annotate } 1. Es iterable. 2. Usa otro iterador. En el caso de los diccionarios existen varios iteradores disponibles: === "Conjuntos" ```pycon >>> tool = set([1, 2, 3]) >>> iter(tool) is not None#(1)! True >>> iter(tool) == tool#(2)! False >>> tool_iterator = iter(tool) >>> tool_iterator >>> next(tool_iterator) 1 >>> next(tool_iterator) 2 >>> next(tool_iterator) 3 >>> next(tool_iterator) Traceback (most recent call last): Cell In[9], line 1 next(tool_iterator) StopIteration ``` { .annotate } 1. Es iterable. 2. Usa otro iterador. === "Ficheros" ```pycon >>> f = open('data.txt') >>> iter(f) is not None#(1)! True >>> iter(f) == f#(2)! True >>> next(f) '1\n' >>> next(f) '2\n' >>> next(f) '3\n' >>> next(f) Traceback (most recent call last): Cell In[7], line 1 next(f) StopIteration ``` { .annotate } 1. Es iterable. 2. Es su propio iterador. A continuación se presenta una tabla resumen de lo explicado anteriormente: | Herramienta | Es iterable | Propio iterador | Múltiples iteradores | | --- | --- | --- | --- | | `enumerate()` | :material-check:{ .green } | :material-check:{ .green } | :material-cancel:{ .red } | `reversed()` | :material-check:{ .green } | :material-check:{ .green } | :material-cancel:{ .red } | `zip()` | :material-check:{ .green } | :material-check:{ .green } | :material-cancel:{ .red } | `generator` | :material-check:{ .green } | :material-check:{ .green } | :material-cancel:{ .red } | `file` | :material-check:{ .green } | :material-check:{ .green } | :material-cancel:{ .red } | `list()` | :material-check:{ .green } | :material-cancel:{ .red } | :material-cancel:{ .red } | `tuple()` | :material-check:{ .green } | :material-cancel:{ .red } | :material-cancel:{ .red } | `str()` | :material-check:{ .green } | :material-cancel:{ .red } | :material-cancel:{ .red } | `dict()` | :material-check:{ .green } | :material-cancel:{ .red } | :material-check:{ .green } | `set()` | :material-check:{ .green } | :material-cancel:{ .red } | :material-cancel:{ .red } | `range()` | :material-check:{ .green } | :material-cancel:{ .red } | :material-cancel:{ .red } #### Generadores como iterables { #generators-as-iterables } Como bien se ha visto en el apartado anterior, los generadores son iterables (e iteradores) en sí mismos. Nos podemos valer de esta propiedad para simplificar los artefactos implementados. Veamos un ejemplo:material-flash: de **factoría de droides** usando **generadores** en el _protocolo de iteración_: ```pycon >>> class Geonosis: ... def __init__(self, num_droids: int): ... self.droids = (Droid(i) for i in range(num_droids))#(1)! ... ... def __iter__(self) -> object: ... return iter(self.droids)#(2)! ... ``` { .annotate } 1. - Usamos una [expresión generadora](functions.md#genexp) para construir los droides. - Al ser un generador los droides no son creados en este punto, sino cuando se requieran (comportamiento «lazy»). 2. - El iterador que vamos a utilizar es el iterador del generador. - Dado que un generador es su propio iterador, podríamos devolver directamente `#!python return self.droid`. Probemos la implementación anterior: ```pycon >>> for droid in Geonosis(3): ... print(droid) ... Droid: SN0 Droid: SN1 Droid: SN2 ``` ??? tip "Listas como iterables" A nivel de rendimiento y escalabilidad, hay que entender que no es lo mismo utilizar una [lista](../datastructures/lists.md) que un [generador](functions.md#generators), aunque en muchos escenarios puede ser más que suficiente. A continuación se propone un ejemplo:material-flash: de la **factoría de droides** mediante lista: ```pycon hl_lines="3" >>> class Geonosis: ... def __init__(self, num_droids: int): ... self.droids = [Droid(i) for i in range(num_droids)]#(1)! ... ... def __iter__(self) -> object: ... return iter(self.droids)#(2)! ... >>> for droid in Geonosis(3): ... print(droid) ... Droid: SN0 Droid: SN1 Droid: SN2 ``` { .annotate } 1. - Usamos una [lista](../datastructures/lists.md) para construir los droides. - Al ser una lista todos los droides son creados en este punto del código. 2. El iterador que vamos a utilizar es el iterador de la lista. !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `fibonacci-itergen` ## Anatomía de una clase { #class-anatomy } Durante toda la sección hemos analizado con detalle los distintos componentes que forman una clase en Python. Pero cuando todo esto lo ponemos junto puede suponer un pequeño caos organizativo. Aunque no existe ninguna indicación formal de la estructura de una clase, podríamos establecer el siguiente formato como guía de estilo: ```python class CustomClass: """Descripción de la clase""" # ATRIBUTOS DE CLASE # CONSTRUCTOR # MÉTODOS MÁGICOS # PROPIEDADES # MÉTODOS DE INSTANCIA # MÉTODOS DE CLASE # MÉTODOS ESTÁTICOS # DECORADORES ``` ## Ejercicios { #exercises } 1. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `dna` 2. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `istack` 3. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `iqueue` 4. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `date` [^1]: Principios [SOLID](https://es.wikipedia.org/wiki/SOLID). [^2]: Las propiedades en Python son modificables cuando usamos mecanismos como los [setters](https://realpython.com/python-getter-setter/). ================================================ FILE: docs/index.md ================================================ # Aprende Python Aprende el lenguaje de programación ^^Python^^ :material-snake:{ .slide .green } y descubre un **mundo de posibilidades**. ![Monty Python](assets/images/monty-python.jpg) ///caption Monty Python © Imagen generada con Inteligencia Artificial /// El contenido de esta página está organizado en tres grandes bloques: 1. [Fundamentos del lenguaje](/core/index.md) 2. [Librería estándar](/stdlib/index.md) 3. [Paquetes de terceros](/third-party/index.md) --- Si quieres **apoyar este proyecto** te dejo dos vías:
- **GitHub** :simple-github:{ .acc .beat } --- [Dando una estrella :material-star-plus:](https://github.com/sdelquin/aprendepython){ .md-button .md-button--primary } - **Buy me a coffee** :simple-buymeacoffee:{ .acc .beat } --- [Pagándome un café :material-hand-coin:](https://buymeacoffee.com/sdelquin){ .md-button .md-button--primary }
!!! info "Licencia" :fontawesome-brands-creative-commons: :fontawesome-brands-creative-commons-by: Creative Commons Reconocimiento 4.0 Internacional: [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/deed.es_ES) ================================================ FILE: docs/stdlib/data-access/index.md ================================================ # Acceso a datos El acceso a datos es un componente esencial en el desarrollo de aplicaciones, ya que la mayoría de los programas necesitan leer, almacenar o intercambiar información con distintas fuentes. En Python, existen múltiples formas de acceder a datos, ya sea desde archivos locales (como texto, CSV o JSON), bases de datos relacionales (como SQLite o MySQL) o servicios externos a través de APIs. Dominar estas técnicas permite construir aplicaciones más útiles y dinámicas, capaces de interactuar con el entorno y manejar grandes volúmenes de información. En este capítulo, exploraremos las principales herramientas de la librería estándar y métodos para acceder, leer y escribir datos en Python de manera segura y eficiente. ================================================ FILE: docs/stdlib/data-access/sqlite.md ================================================ --- icon: simple/sqlite tags: - Librería estándar - Acceso a datos - sqlite --- # sqlite { #sqlite } ![Banner](images/sqlite/banner.jpg) ///caption Imagen generada con Inteligencia Artificial /// ## ¿Qué es SQLite? { #what-is-sqlite } [SQLite](https://sqlite.org/index.html) es un **sistema gestor de bases de datos relacional** contenido en una pequeña librería escrita en C (~275kB) y que usa **un único fichero** para almacenar la base de datos. A continuación se muestran algunas de sus **principales características**: - [x] Tablas, índices, «triggers» y vistas ilimitadas. - [x] Hasta 32K columnas en una tabla y filas ilimitadas. - [x] Índices multi-columna. - [x] Restricciones de tipo `CHECK`, `UNIQUE`, `NOT NULL` y `FOREIGN KEY`. - [x] Transacciones planas usando `BEGIN`, `COMMIT` y `ROLLBACK`. - [x] Transacciones anidadas usando `SAVEPOINT`, `RELEASE` y `ROLLBACK TO`. - [x] Subconsultas. - [x] «Joins» de hasta 64 relaciones. - [x] «Joins» de tipo «left», «right» y «full outer». - [x] Uso de `DISTINCT`, `ORDER BY`, `GROUP BY`, `HAVING`, `LIMIT` y `OFFSET`. - [x] Uso de `UNION`, `UNION ALL`, `INTERSECT` y `EXCEPT`. - [x] Una amplia librería de [funciones SQL estándar](https://sqlite.org/lang_corefunc.html). - [x] [Funciones de agregación](https://sqlite.org/lang_aggfunc.html). - [x] [Funciones de ventana](https://sqlite.org/windowfunctions.html). - [x] Por supuesto el uso de `UPDATE`, `DELETE` e `INSERT`. - [x] Cláusula [`UPSERT`](https://sqlite.org/lang_upsert.html). - [x] Soporte para [valores JSON](https://sqlite.org/json1.html). Y muchas otras que se pueden consultar en la [página del proyecto](https://sqlite.org/fullsql.html). ## Conexión a la base de datos { #db-connect } Una base de datos SQLite no es más que un **fichero binario**, habitualmente con extensión `.db` o `.sqlite`. Antes de realizar cualquier operación es necesario «conectar» con este fichero. La **conexión a la base de datos** se realiza a través de la función [`connect()`](https://docs.python.org/es/3/library/sqlite3.html#sqlite3.connect) que espera recibir la ruta al fichero de base de datos y devuelve un objeto de tipo [`Connection`](https://docs.python.org/es/3/library/sqlite3.html#sqlite3.Connection). ```pycon >>> import sqlite3#(1)! >>> con = sqlite3.connect('python.db')#(2)! >>> con#(3)! ``` { .annotate } 1. Importamos el módulo. :fontawesome-solid-triangle-exclamation:{.acc} Se llama **sqlite3** (no olvidarse del 3 al final). 2. Especificamos una ruta (relativa o absoluta) al fichero de base de datos. 3. Comprobamos que el objeto devuelto es una instancia de la clase `Connection`. La primera vez que conectamos a una base de datos (fichero) inexistente, Python lo creará sin contenido alguno: ```pycon >>> !file python.db python.db: empty ``` Una vez que disponemos de la conexión ya podemos obtener un [`Cursor`](https://docs.python.org/es/3/library/sqlite3.html#sqlite3.Cursor) mediante la función [`cursor()`](https://docs.python.org/es/3/library/sqlite3.html#sqlite3.Connection.cursor). Un cursor se podría ver como **un manejador para realizar operaciones** sobre la base de datos: ```pycon >>> cur = con.cursor() >>> cur ``` ## Tipos de datos { #datatypes } SQLite dispone de un conjunto muy reducido de [tipos de datos](https://www.sqlite.org/datatype3.html). Aunque hay alguno más, con los siguientes nos será suficiente para la inmensa mayoría de diseños de bases de datos que podamos necesitar: - [x] `INTEGER` :material-arrow-right-bold: para valores **enteros**. - [x] `REAL` :material-arrow-right-bold: para valores **flotantes**. - [x] `TEXT` :material-arrow-right-bold: para **cadenas de texto**. ### Booleanos { #bool } SQLite no dispone de un tipo especial para valores [booleanos](../../core/datatypes/numbers.md#booleans). Usaremos el tipo `INTEGER` para representar _true_ como **1** y _false_ como **0**. ### Fecha y hora { #datetime } SQLite no dispone de un tipo especial para _fecha y hora_. Usaremos el tipo `TEXT` para representar fecha y hora en formato [`ISO8601`](https://iso8601.com/) como [cadenas de texto](../../core/datatypes/strings.md) `#!python 'YYYY-MM-DD HH:MM:SS.SSS'`. Sin embargo en SQLite sí que existen [múltiples funciones](https://www.sqlite.org/lang_datefunc.html) para trabajar con fecha y hora. ## Creación de tablas { #create-table } Durante toda esta sección vamos a trabajar con una tabla de ejemplo:material-flash: que representa las [distintas versiones de Python](https://devguide.python.org/versions/) que han sido liberadas. Empecemos creando la tabla `pyversions` a través de un código SQL similar al siguiente: ```sql CREATE TABLE pyversions ( branch TEXT PRIMARY KEY, released_at_year INTEGER, released_at_month INTEGER, release_manager TEXT ) ``` Haremos uso del cursor creado para **ejecutar** estas instrucciones: ```pycon >>> sql = """CREATE TABLE pyversions ( ... branch TEXT PRIMARY KEY, ... released_at_year INTEGER, ... released_at_month INTEGER, ... release_manager TEXT ... )"""#(1)! >>> cur.execute(sql)#(2)! ``` { .annotate } 1. - Es habitual usar [comillas triples](../../core/datatypes/strings.md#triple-quotes) para definir sentencias SQL dentro de código Python. - No es necesario añadir punto y coma `;` al final de la sentencia SQL cuando usamos el módulo `sqlite3` salvo que se trate de [scripts](#run-scripts). 2. Un _cursor_ tiene un método `execute()` que permite ejecutar sentencias SQL. Ya hemos creado la tabla `pyversions` de manera satisfactoria. Si comprobamos ahora el contenido del fichero `python.db` podemos observar que nos indica la versión de SQLite y la última escritura: ```pycon >>> !file python.db python.db: SQLite 3.x database, last written using SQLite version 3047001, file counter 1, database pages 3, cookie 0x1, schema 4, UTF-8, version-valid-for 1 ``` ## Añadiendo datos { #add-data } Para tener contenido sobre el que trabajar, vamos primeramente a añadir ciertos datos a la tabla. Como básicamente seguimos ejecutando sentencias SQL (en este caso de inserción) podemos volver a hacer uso de la función [`execute()`](https://docs.python.org/es/3/library/sqlite3.html#sqlite3.Cursor.execute): ```pycon >>> sql = 'INSERT INTO pyversions VALUES ("2.6", 2008, 10, "Barry Warsaw")' >>> cur.execute(sql) ``` Aparentemente todo ha ido bien. Vamos a usar —temporalmente— la herramienta cliente `sqlite3`[^1] para ver el contenido de la tabla: ```console $ sqlite3 python.db "select * from pyversions" ``` Resulta que tenemos una salida vacía. ¿No hay ningún registro? Esto se debe a que la transacción está aún pendiente de confirmar. Para consolidarla tendremos que hacer uso de la función [`commit()`](https://docs.python.org/es/3/library/sqlite3.html#sqlite3.Connection.commit): ```pycon >>> con.commit()#(1)! ``` { .annotate } 1. - Nótese que el método `commit()` pertenece a la **conexión** y no a al _cursor_. - Las transacciones pueden consolidarse con `commit()` o deshacerse con `rollback()`. Ahora podemos comprobar que sí se han guardado los datos correctamente: ```console $ sqlite3 python.db "select * from pyversions" 2.6|2008|10|Barry Warsaw ``` ### Autocommit { #autocommit } Cuando creamos [la conexión a la base de datos](https://docs.python.org/3/library/sqlite3.html#sqlite3.connect) podemos pasar como argumento `autocommit=True` de tal forma que no sea necesario invocar explícitamente a `commit()`: ```pycon >>> con = sqlite3.connect('python.db', autocommit=True) ``` Así, cada vez que ejecutemos operaciones de modificación sobre la base de datos se lanzará automáticamente el método `commit()` confirmando los cambios indicados. ### Inserción parametrizada { #param-insert } Supongamos que no sabemos, a priori, los datos que vamos a insertar en la tabla puesto que provienen del usuario o de otra fuente externa. En este caso cabría plantearse cuál es la mejor opción para **parametrizar la consulta**. En una primera aproximación podríamos pensar en utilizar un [f-string](../../core/datatypes/strings.md#fstrings). Por ejemplo:material-flash: vamos a insertar un nuevo registro a partir de ciertas variables: ```pycon >>> branch = 3.11 >>> released_at_year = 2022 >>> released_at_month = 10 >>> release_manager = 'Pablo Galindo Salgado' >>> sql = f'INSERT INTO pyversions VALUES ({branch}, {released_at_year}, {released_at_month}, {release_manager})' >>> sql 'INSERT INTO pyversions VALUES (3.11, 2022, 10, Pablo Galindo Salgado)' >>> cur.execute(sql) Traceback (most recent call last): Cell In[7], line 1 cur.execute(sql) OperationalError: near "Galindo": syntax error ``` ¿Qué ha ocurrido? Obtenemos un error porque el contenido de «release manager» `#!python 'Pablo Galindo Salgado'` es una cadena de texto y no puede contener espacios (en SQL). Una solución a este problema sería detectar qué campos necesitan comillas e incorporarlas de forma manual. Pero una solución más robusta y efectiva es utilizar los «placeholders» de SQLite. Un «placeholder»[^2] se introduce en la sentencia SQL y se sustituye a posteriori por el correspondiente valor indicado al ejecutar. La gran ventaja de este enfoque es que **no hay que preocuparse del tipo de dato** ya que el módulo `sqlite3` se encarga de introducir comillas o formatear según corresponda. Veamos cómo sería la inserción anterior utilizando esta técnica, usando... === "«Placeholder» posicional" ```pycon hl_lines="6" >>> branch = 3.11 >>> released_at_year = 2022 >>> released_at_month = 10 >>> release_manager = 'Pablo Galindo Salgado' >>> sql = 'INSERT INTO pyversions VALUES (?, ?, ?, ?)'#(1)! >>> cur.execute(sql, [ ... branch, ... released_at_year, ... released_at_month, ... release_manager ... ])#(2)! ``` { .annotate } 1. Los «placeholders» se indican mediante **signos de interrogación** `?`. 2. Los valores a sustituir (interpolar) se pasan mediante un **iterable**. === "«Placeholder» nominal" ```pycon hl_lines="6" >>> branch = 3.11 >>> released_at_year = 2022 >>> released_at_month = 10 >>> release_manager = 'Pablo Galindo Salgado' >>> sql = 'INSERT INTO pyversions VALUES (:branch, :year, :month, :manager)'#(1)! >>> cur.execute(sql, { ... 'branch': branch, ... 'year': released_at_year, ... 'month': released_at_month, ... 'manager': release_manager ... })#(2)! ``` { .annotate } 1. Los «placeholders» se indican mediante **dos puntos y nombre**. 2. Los valores a sustituir (interpolar) se pasan mediante un **diccionario**. ### Inserciones en lote { #batch-insert } Quizás en un escenario más realista tendríamos datos en un formato tabular para cargarlos directamente en una tabla de SQLite. Supongamos por ejemplo:material-flash: que disponemos del siguiente fichero: ```csv title="pyversions.csv" branch,year,month,manager 2.6,2008,10,Barry Warsaw 2.7,2010,7,Benjamin Peterson 3.0,2008,12,Barry Warsaw 3.1,2009,6,Benjamin Peterson 3.2,2011,2,Georg Brandl 3.3,2012,9,Georg Brandl 3.4,2014,3,Larry Hastings 3.5,2015,9,Larry Hastings 3.6,2016,12,Ned Deily 3.7,2018,6,Ned Deily 3.8,2019,10,Łukasz Langa 3.9,2020,10,Łukasz Langa 3.10,2021,10,Pablo Galindo Salgado 3.11,2022,10,Pablo Galindo Salgado 3.12,2023,10,Thomas Wouters 3.13,2024,10,Thomas Wouters ``` La primera aproximación que se nos podría venir a la cabeza es utilizar una [inserción parametrizada](#param-insert) por cada línea del fichero de entrada: ```pycon >>> sql = 'INSERT INTO pyversions VALUES (?, ?, ?, ?)' >>> with open('pyversions.csv') as f: ... f.readline()#(1)! ... for line in f: ... pyversion = line.strip().split(',') ... cur.execute(sql, pyversion) ... con.commit() ... ``` { .annotate } 1. Saltamos la cabecera. Pero este módulo permite atacar el problema desde otro enfoque utilizando la función [`executemany()`](https://docs.python.org/es/3/library/sqlite3.html#sqlite3.Cursor.executemany). Veamos una reimplementación del ejemplo:material-flash: anterior, usando un... === "Iterable de listas" ```pycon hl_lines="25" >>> with open('pyversions.csv') as f: ... f.readline()#(1)! ... pyversions = [line.strip().split(',') for line in f] ... >>> pyversions#(2)! [['2.6', '2008', '10', 'Barry Warsaw'], ['2.7', '2010', '7', 'Benjamin Peterson'], ['3.0', '2008', '12', 'Barry Warsaw'], ['3.1', '2009', '6', 'Benjamin Peterson'], ['3.2', '2011', '2', 'Georg Brandl'], ['3.3', '2012', '9', 'Georg Brandl'], ['3.4', '2014', '3', 'Larry Hastings'], ['3.5', '2015', '9', 'Larry Hastings'], ['3.6', '2016', '12', 'Ned Deily'], ['3.7', '2018', '6', 'Ned Deily'], ['3.8', '2019', '10', 'Łukasz Langa'], ['3.9', '2020', '10', 'Łukasz Langa'], ['3.10', '2021', '10', 'Pablo Galindo Salgado'], ['3.11', '2022', '10', 'Pablo Galindo Salgado'], ['3.12', '2023', '10', 'Thomas Wouters'], ['3.13', '2024', '10', 'Thomas Wouters']] >>> sql = 'INSERT INTO pyversions VALUES (?, ?, ?, ?)'#(3)! >>> cur.executemany(sql, pyversions) >>> con.commit() ``` { .annotate } 1. Saltamos la cabecera. 2. - Hemos conseguido generar una **lista de listas**. - Es posible que no veas la salida exactamente así. Si es el caso, puedes hacer lo siguiente: ```pycon >>> from pprint import pprint >>> pprint(pyversions) ``` 3. Utilizamos una [inserción parametrizada](#param-insert) usando «placeholders» posicionales. === "Iterable de diccionarios" ```pycon hl_lines="25" >>> with open('pyversions.csv') as f: ... fields = f.readline().strip().split(',')#(1)! ... pyversions = [{f: v for f, v in zip(fields, line.strip().split(','))} for line in f] ... >>> pyversions#(2)! [{'branch': '2.6', 'manager': 'Barry Warsaw', 'month': '10', 'year': '2008'}, {'branch': '2.7', 'manager': 'Benjamin Peterson', 'month': '7', 'year': '2010'}, {'branch': '3.0', 'manager': 'Barry Warsaw', 'month': '12', 'year': '2008'}, {'branch': '3.1', 'manager': 'Benjamin Peterson', 'month': '6', 'year': '2009'}, {'branch': '3.2', 'manager': 'Georg Brandl', 'month': '2', 'year': '2011'}, {'branch': '3.3', 'manager': 'Georg Brandl', 'month': '9', 'year': '2012'}, {'branch': '3.4', 'manager': 'Larry Hastings', 'month': '3', 'year': '2014'}, {'branch': '3.5', 'manager': 'Larry Hastings', 'month': '9', 'year': '2015'}, {'branch': '3.6', 'manager': 'Ned Deily', 'month': '12', 'year': '2016'}, {'branch': '3.7', 'manager': 'Ned Deily', 'month': '6', 'year': '2018'}, {'branch': '3.8', 'manager': 'Łukasz Langa', 'month': '10', 'year': '2019'}, {'branch': '3.9', 'manager': 'Łukasz Langa', 'month': '10', 'year': '2020'}, {'branch': '3.10', 'manager': 'Pablo Galindo Salgado', 'month': '10', 'year': '2021'}, {'branch': '3.11', 'manager': 'Pablo Galindo Salgado', 'month': '10', 'year': '2022'}, {'branch': '3.12', 'manager': 'Thomas Wouters', 'month': '10', 'year': '2023'}, {'branch': '3.13', 'manager': 'Thomas Wouters', 'month': '10', 'year': '2024'}] >>> sql = 'INSERT INTO pyversions VALUES (:branch, :year, :month, :manager)'#(3)! >>> cur.executemany(sql, pyversions) >>> con.commit() ``` { .annotate } 1. Leemos los nombres de los campos desde la primera línea del fichero. 2. - Hemos conseguido generar una **lista de diccionarios**. - Es posible que no veas la salida exactamente así. Si es el caso, puedes hacer lo siguiente: ```pycon >>> from pprint import pprint >>> pprint(pyversions) ``` 3. Utilizamos una [inserción parametrizada](#param-insert) usando «placeholders» nominales. En cualquiera de los casos anteriores el resultado sería el mismo y los registros quedan correctamente insertados en la base de datos: ```console $ sqlite3 python.db "SELECT * FROM pyversions" 2.6|2008|10|Barry Warsaw 2.7|2010|7|Benjamin Peterson 3.0|2008|12|Barry Warsaw 3.1|2009|6|Benjamin Peterson 3.2|2011|2|Georg Brandl 3.3|2012|9|Georg Brandl 3.4|2014|3|Larry Hastings 3.5|2015|9|Larry Hastings 3.6|2016|12|Ned Deily 3.7|2018|6|Ned Deily 3.8|2019|10|Łukasz Langa 3.9|2020|10|Łukasz Langa 3.10|2021|10|Pablo Galindo Salgado 3.11|2022|10|Pablo Galindo Salgado 3.12|2023|10|Thomas Wouters 3.13|2024|10|Thomas Wouters ``` ### Identificador de fila { #rowid } En el comportamiento por defecto de una base de datos SQLite **todas las tablas disponen de una columna «oculta» denominada «rowid»** o _identificador de fila_. Esta columna se va rellenando **de forma automática con valores enteros únicos** y puede utilizarse como ^^clave primaria^^ de los registros. Para poder visualizar (o utilizar) esta columna es necesario indicarlo explícitamente en la consulta: ```console $ sqlite3 python.db "SELECT rowid, * FROM pyversions" 1|2.6|2008|10|Barry Warsaw 2|2.7|2010|7|Benjamin Peterson 3|3.0|2008|12|Barry Warsaw 4|3.1|2009|6|Benjamin Peterson 5|3.2|2011|2|Georg Brandl 6|3.3|2012|9|Georg Brandl 7|3.4|2014|3|Larry Hastings 8|3.5|2015|9|Larry Hastings 9|3.6|2016|12|Ned Deily 10|3.7|2018|6|Ned Deily 11|3.8|2019|10|Łukasz Langa 12|3.9|2020|10|Łukasz Langa 13|3.10|2021|10|Pablo Galindo Salgado 14|3.11|2022|10|Pablo Galindo Salgado 15|3.12|2023|10|Thomas Wouters 16|3.13|2024|10|Thomas Wouters ``` ### Cerrando la conexión { #con-close } Al igual que ocurre con un fichero de texto, es necesario cerrar la conexión abierta para que se liberen los recursos asociados y se debloquee la base de datos. La forma más directa de hacer esto sería: ```pycon >>> con.close() ``` !!! warning "Transacciones pendientes" Si hay alguna transacción pendiente, esta no será guardada al cerrar la conexión con la base de datos, si previamente no se consolidan los cambios. ### Gestor de contexto { #context-manager } En SQLite también es posible utilizar un [gestor de contexto](../../core/modularity/oop.md#context-manager) sobre la conexión, que funciona de la siguiente manera: - :material-table-check:{.green} Si todo ha ido bien ejecutará un «commit» al final del bloque. - :material-table-remove:{.red} Si ha habido alguna excepción ejecutará un «rollback»[^3] para que todo quede como al principio y deshacer los posibles cambios efectuados. Analicemos el siguiente ejemplo:material-flash:: ```pycon >>> with con: ... cur.execute('INSERT INTO pyversions VALUES ("3.12", 2023, 10, "Thomas Wouters")') ... cur.execute('INSERT INTO pyversions VALUES ("3.12", 2024, 10, "Thomas Wouters")') ... Traceback (most recent call last): Cell In[1], line 3 cur.execute('INSERT INTO pyversions VALUES ("3.12", 2024, 10, "Thomas Wouters")') IntegrityError: UNIQUE constraint failed: pyversions.branch ``` Se ha elevado una [excepción](../../core/modularity/exceptions.md) de tipo `IntegrityError` indicando que hay valores duplicados en el campo `branch` ya que se trata de una clave primaria y sus valores deben ser únicos. Pero dado que estamos en un gestor de contexto, se realiza un «rollback» de las acciones previas y la base de datos queda en el mismo estado anterior. !!! tip "Excepciones" Es interesante conocer las distintas [excepciones](https://docs.python.org/es/3/library/sqlite3.html#exceptions) que pueden producirse al trabajar con este módulo a la hora del control de errores y de plantear posibles escenarios de mejora. ## Consultas { #queries } A la hora de realizar consulas en `sqlite3` debemos tener en cuenta qué salida estamos buscando: - Registros como tuplas. - Registros como filas. ### Registros como tuplas { #tuple-records } La ejecución de una consulta —desde un cursor— retorna un [objeto iterable](../../core/modularity/oop.md#iterables). Por defecto el contenido de dicho iterable son **tuplas** donde cada _tupla_ representa una fila de la tabla consultada. Veamos un ejemplo:material-flash: consultando toda la tabla `pyversions`: ```pycon >>> for row in cur.execute('SELECT * FROM pyversions'): ... print(row) ... ('2.6', 2008, 10, 'Barry Warsaw') ('2.7', 2010, 7, 'Benjamin Peterson') ('3.0', 2008, 12, 'Barry Warsaw') ('3.1', 2009, 6, 'Benjamin Peterson') ('3.2', 2011, 2, 'Georg Brandl') ('3.3', 2012, 9, 'Georg Brandl') ('3.4', 2014, 3, 'Larry Hastings') ('3.5', 2015, 9, 'Larry Hastings') ('3.6', 2016, 12, 'Ned Deily') ('3.7', 2018, 6, 'Ned Deily') ('3.8', 2019, 10, 'Łukasz Langa') ('3.9', 2020, 10, 'Łukasz Langa') ('3.10', 2021, 10, 'Pablo Galindo Salgado') ('3.11', 2022, 10, 'Pablo Galindo Salgado') ('3.12', 2023, 10, 'Thomas Wouters') ('3.13', 2024, 10, 'Thomas Wouters') ``` También tenemos la opción de utilizar las funciones [`fetchone()`](https://docs.python.org/es/3/library/sqlite3.html#sqlite3.Cursor.fetchone) y [`fetchall()`](https://docs.python.org/es/3/library/sqlite3.html#sqlite3.Cursor.fetchall) para obtener una o todas las filas de la consulta: ```pycon >>> query = cur.execute('SELECT * FROM pyversions') >>> query.fetchone()#(1)! ('2.6', 2008, 10, 'Barry Warsaw') >>> query.fetchall() [('2.7', 2010, 7, 'Benjamin Peterson'), ('3.0', 2008, 12, 'Barry Warsaw'), ('3.1', 2009, 6, 'Benjamin Peterson'), ('3.2', 2011, 2, 'Georg Brandl'), ('3.3', 2012, 9, 'Georg Brandl'), ('3.4', 2014, 3, 'Larry Hastings'), ('3.5', 2015, 9, 'Larry Hastings'), ('3.6', 2016, 12, 'Ned Deily'), ('3.7', 2018, 6, 'Ned Deily'), ('3.8', 2019, 10, 'Łukasz Langa'), ('3.9', 2020, 10, 'Łukasz Langa'), ('3.10', 2021, 10, 'Pablo Galindo Salgado'), ('3.11', 2022, 10, 'Pablo Galindo Salgado'), ('3.12', 2023, 10, 'Thomas Wouters'), ('3.13', 2024, 10, 'Thomas Wouters')] ``` { .annotate } 1. Nótese que la llamada a `fetchone()` hace que quede «una fila menos» que recorrer. Es un comportamiento totalmente análogo al de la [lectura de una línea](../../core/datastructures/files.md#readline) en un fichero. ### Registros como filas { #row-records } El módulo `sqlite3` también nos permite obtener los resultados de una consulta como objetos de tipo [`Row`](https://docs.python.org/3/library/sqlite3.html#sqlite3.Row) lo que facilita **acceder a los valores** de cada registro tanto **por el índice como por el nombre** de la columna. Para «activar» este modo tendremos que fijar el valor de la factoría de filas en la conexión: ```pycon hl_lines="2" >>> con = sqlite3.connect('python.db') >>> con.row_factory = sqlite3.Row ``` !!! info "Antes de consultar" Para que las consultas usen esta factoría hay que fijar el atributo `row_factory` **antes de crear el cursor** correspondiente. Veamos un ejemplo:material-flash: consultando toda la tabla `pyversions`: ```pycon >>> for row in cur.execute('SELECT * FROM pyversions'): ... print(row) ... ``` Vemos que los objetos devueltos son de tipo `sqlite3.Row` pero no obtenemos gran información sobre su contenido. A continuación se muestra el acceso a los valores del último objeto `sqlite3.Row` mediante... === "Nombre de columnas" ```pycon >>> row >>> row['branch'] '3.13' >>> row['released_at_year'] 2024 >>> row['released_at_month'] 10 >>> row['release_manager'] 'Thomas Wouters' >>> row.keys()#(1)! ['branch', 'released_at_year', 'released_at_month', 'release_manager'] ``` { .annotate } 1. Acceso a los nombres de los campos. Es posible desempaquetar la fila: ```pycon >>> branch, year, month, manager = row >>> branch, year, month, manager ('3.13', 2024, 10, 'Thomas Wouters') ``` === "Índice de columnas" ```pycon >>> row >>> row[0] '3.13' >>> row[1] 2024 >>> row[2] 10 >>> row[3] 'Thomas Wouters' ``` Es posible desempaquetar la fila: ```pycon >>> branch, year, month, manager = row >>> branch, year, month, manager ('3.13', 2024, 10, 'Thomas Wouters') ``` !!! note "Funciones auxiliares" El modo `sqlite3.Row` también permite utilizar las funciones `fetchone()` y `fetchall()`. ### Número de filas { #num-rows } Hay ocasiones en las que lo que necesitamos obtener no es el dato en sí mismo, sino el **número de filas vinculadas a una determinada consulta**. En este sentido hay varias alternativas: === "Utilizar herramientas Python" ```pycon >>> query = cur.execute('SELECT * FROM pyversions') >>> len(query.fetchall()) 16 ``` === "Utilizar sentencias SQL" ```pycon >>> query = cur.execute('SELECT COUNT(*) FROM pyversions') >>> query.fetchone()[0]#(1)! 16 ``` { .annotate } 1. Sólo hay una columna (con el resultado de la «cuenta»). :material-check-all:{ .blue } Esta opción es deseable si lo único que necesitamos es obtener el número de filas afectadas, ya que así estaremos rebajando la carga de datos en la consulta. ### Comprobando si hay resultados { #check-results } La aplicación del [operador morsa](../../core/controlflow/conditionals.md#walrus) en las consultas mediante `sqlite3` es muy habitual ya que facilita la comprobación de resultados. Veamos una posible implementación en el siguiente ejemplo:material-flash:... === "Consulta vacía" ```pycon hl_lines="6" >>> con = sqlite3.connect('python.db') >>> cur = con.cursor() >>> res = cur.execute('SELECT * FROM pyversions WHERE branch=4.0') >>> if row := res.fetchone(): ... print(row) ... else: ... print('Empty query') ... Empty query ``` === "Consulta con datos" ```pycon hl_lines="6" >>> con = sqlite3.connect('python.db') >>> cur = con.cursor() >>> res = cur.execute('SELECT * FROM pyversions WHERE branch=3.0') >>> if row := res.fetchone(): ... print(row) ... else: ... print('Empty query') ... ('3.0', 2008, 12, 'Barry Warsaw') ``` ## Otras funcionalidades { #features } El módulo `sqlite3` dispone de otras funcionalidades realmente interesantes que serán analizadas en este apartado. ### Tablas en memoria { #memory } Existe la posibilidad de trabajar con tablas en memoria sin necesidad de tener un fichero en disco. Veamos un ejemplo:material-flash: muy sencillo: ```pycon >>> con = sqlite3.connect(':memory:') >>> cur = con.cursor() >>> sql = 'CREATE TABLE temp (id INTEGER PRIMARY KEY, value TEXT)' >>> cur.execute(sql) >>> sql = 'INSERT INTO temp VALUES (1, "X")' >>> cur.execute(sql)#(1)! >>> for row in cur.execute('SELECT * FROM temp'): ... print(row) ... (1, 'X') ``` { .annotate } 1. Al utilizar tablas en memoria existe un «autocommit» por defecto. Esta aproximación puede ser interesante para escenarios donde no nos importe la **persistencia**, ya que los datos no serán volcados a disco. ### Claves autoincrementales { #autoinc } Es muy habitual encontrar en la definición de una tabla un **campo identificador numérico entero** que actúe como **clave primaria** y se le asignen valores automáticamente. Para [implementar este esquema](https://www.sqlite.org/autoinc.html) en SQLite **debemos simplemente definir una columna de tipo** `INTEGER PRIMARY KEY`. A partir de ahí, en cualquier operación de inserción, si no especificamos un valor explícito para dicha columna, se rellenará automáticamente con un entero sin usar, típicamente uno más que el último valor generado. A continuación se muestra un ejemplo:material-flash: de aplicación de claves autoincrementales mediante una tabla en memoria que almacena **ciudades y sus geolocalizaciones**: ```pycon hl_lines="5" >>> con = sqlite3.connect(':memory:') >>> cur = con.cursor() >>> cur.execute('''CREATE TABLE cities ( ... id INTEGER PRIMARY KEY, ... city TEXT UNIQUE, ... latitude REAL, ... longitude REAL)''') >>> cur.execute('''INSERT INTO ... cities (city, latitude, longitude) ... VALUES ("Tokyo", 35.652832, 139.839478)''')#(1)! >>> result = cur.execute('SELECT * FROM cities') >>> result.fetchall() [(1, 'Tokyo', 35.652832, 139.839478)] >>> cur.execute('''INSERT INTO ... cities (city, latitude, longitude) ... VALUES ("Barcelona", 41.390205, 2.154007)''')#(2)! >>> result = cur.execute('SELECT * FROM cities') >>> result.fetchall() [(1, 'Tokyo', 35.652832, 139.839478), (2, 'Barcelona', 41.390205, 2.154007)] ``` { .annotate } 1. Obviamos el campo `id`. 2. Obviamos el campo `id`. ### Copia de seguridad { #backup } Es posible realizar copias de seguridad de manera programática. Veamos un ejemplo:material-flash:[^4] donde copiamos dos bases de datos (ficheros): ```pycon hl_lines="8-9" >>> def progress(status, remaining, total): ... print(f'Copied {total-remaining} of {total} pages...') ... >>> src = sqlite3.connect('python.db') >>> dst = sqlite3.connect('backup.db') >>> with dst:#(1)! ... src.backup(dst, pages=1, progress=progress)#(2)! ... Copied 1 of 3 pages... Copied 2 of 3 pages... Copied 3 of 3 pages... >>> dst.close() >>> src.close() ``` { .annotate } 1. Se utiliza un [gestor de contexto](#context-manager). 2. - El parámetro `pages` indica el número de páginas a copiar «de cada vez». Si este valor es menor o igual que 0, la base de datos se copia en un único paso. El valor por defecto es -1 - El parámetro `progress` permite definir una función para mostrar algún tipo de indicación del progreso de la copia. Tras la copia, podemos comprobar que ambas bases de datos tienen el mismo contenido: ```pycon >>> src = sqlite3.connect('python.db') >>> dst = sqlite3.connect('backup.db') >>> with src, dst:#(1)! ... src_cur = src.cursor() ... dst_cur = dst.cursor() ... sql = 'SELECT * FROM pyversions' ... src_data = src_cur.execute(sql).fetchall() ... dst_data = dst_cur.execute(sql).fetchall() ... if src_data == dst_data: ... print('Contents from both DBs are the same!') ... Contents from both DBs are the same! ``` { .annotate } 1. Es posible aplicar [gestores de contexto](#context-manager) sobre dos conexiones a la vez. Este mecanismo de copia de seguridad funciona incluso... - [x] Si la base de datos está siendo accedida por otros clientes o concurrentemente por la misma conexión. - [x] Entre bases de datos `:memory:` y bases de datos en disco. :material-check-all:{ .blue } Hacer directamente una copia del fichero `file.db` (desde el propio sistema operativo) también es una opción rápida para disponer de copias de seguridad. ### Información de filas { #rowinfo } Cuando ejecutamos una **sentencia de modificación** sobre la base de datos podemos **obtener el número de filas afectadas**. Este dato lo sacamos del atributo `rowcount` del _cursor_ correspondiente. Podemos comprobarlo en el siguiente ejemplo:material-flash: de versiones de Python: ```pycon hl_lines="25-26" >>> con = sqlite3.connect('python.db') >>> cur = con.cursor() >>> cur.execute('SELECT * FROM pyversions').fetchall() [('2.6', 2008, 10, 'Barry Warsaw'), ('2.7', 2010, 7, 'Benjamin Peterson'), ('3.0', 2008, 12, 'Barry Warsaw'), ('3.1', 2009, 6, 'Benjamin Peterson'), ('3.2', 2011, 2, 'Georg Brandl'), ('3.3', 2012, 9, 'Georg Brandl'), ('3.4', 2014, 3, 'Larry Hastings'), ('3.5', 2015, 9, 'Larry Hastings'), ('3.6', 2016, 12, 'Ned Deily'), ('3.7', 2018, 6, 'Ned Deily'), ('3.8', 2019, 10, 'Łukasz Langa'), ('3.9', 2020, 10, 'Łukasz Langa'), ('3.10', 2021, 10, 'Pablo Galindo Salgado'), ('3.11', 2022, 10, 'Pablo Galindo Salgado'), ('3.12', 2023, 10, 'Thomas Wouters'), ('3.13', 2024, 10, 'Thomas Wouters')] >>> cur.execute('UPDATE pyversions SET released_at_year=2000') >>> cur.rowcount#(1)! 16 ``` { .annotate } 1. 16 filas afectadas por la sentencia `UPDATE` de actualización de registros. Igualmente al **insertar un registro** en la base de datos podemos **obtener cuál es el identificador de la últila fila insertada**: ```pycon hl_lines="4-5" >>> cur.execute('INSERT INTO pyversions VALUES ("3.20", 2031, 10, "Guido van Rossum")') >>> cur.lastrowid#(1)! 17 ``` { .annotate } 1. - El identificador de la última fila insertada es 17. - También funciona si utilizamos una **clave primaria `INTEGER` personalizada** e insertamos un valor «manualmente» en dicha columna. ### Ejecución de scripts { #run-scripts } ¿Qué pasaría si intentamos **ejecutar varias sentencias SQL a la vez** con las herramientas que hemos visto hasta ahora? A vueltas con el ejemplo:material-flash: de las versiones de Python tendríamos lo siguiente: ```pycon hl_lines="18-22" >>> con = sqlite3.connect(':memory:') >>> cur = con.cursor() >>> sql = """ ... CREATE TABLE pyversions ( ... branch TEXT PRIMARY KEY, ... released_at_year INTEGER, ... released_at_month INTEGER, ... release_manager TEXT ... ); ... ... INSERT INTO pyversions VALUES("3.10", 2021, 10, "Pablo Galindo Salgado"); ... INSERT INTO pyversions VALUES("3.11", 2022, 10, "Pablo Galindo Salgado"); ... INSERT INTO pyversions VALUES("3.12", 2023, 10, "Thomas Wouters"); ... INSERT INTO pyversions VALUES("3.13", 2024, 10, "Thomas Wouters"); ... """ >>> cur.execute(sql)#(1)! Traceback (most recent call last): Cell In[4], line 1 cur.execute(sql) ProgrammingError: You can only execute one statement at a time. ``` { .annotate } 1. Lo que ocurre es que **obtenemos un error** indicando que sólo se puede ejecutar una sentencia cada vez. Para resolver este problema disponemos de la función [`executescript()`](https://docs.python.org/3/library/sqlite3.html#sqlite3.Cursor.executescript) que **permite ejecutar varias sentencias SQL de una sola vez**: Volvemos a lanzar la misma sentencia SQL pero ahora utilizando este nuevo mecanismo: ```pycon hl_lines="1" >>> cur.executescript(sql)#(1)! >>> cur.execute('SELECT * FROM pyversions').fetchall()#(2)! [('3.10', 2021, 10, 'Pablo Galindo Salgado'), ('3.11', 2022, 10, 'Pablo Galindo Salgado'), ('3.12', 2023, 10, 'Thomas Wouters'), ('3.13', 2024, 10, 'Thomas Wouters')] ``` { .annotate } 1. Ejecutamos el script «de una sola vez». 2. Comprobamos que los datos se han insertado correctamente. ## Ejercicios { #exercises } 1. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `todo` 2. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `twitter` [^1]: [Herramienta cliente de sqlite](https://www.sqlite.org/cli.html) para terminal. [^2]: En programación, un «placeholder» es un valor temporal o marcador que se utiliza como sustituto de datos reales que se asignarán más adelante. [^3]: En tecnologías de base de datos, un «rollback» o reversión es una operación que devuelve a la base de datos a algún estado previo. [^4]: Ejemplo tomado de la documentación oficial de Python. ================================================ FILE: docs/stdlib/index.md ================================================ --- icon: material/book-open-page-variant-outline --- # Librería estándar La librería estándar de Python es un conjunto extenso de módulos integrados que ofrecen funcionalidades listas para usar, sin necesidad de instalar paquetes adicionales. Estas herramientas cubren una amplia gama de tareas comunes como manejo de archivos, manipulación de fechas y horas, expresiones regulares, operaciones matemáticas, gestión de datos estructurados, acceso a internet, y mucho más. Conocer la librería estándar permite aprovechar al máximo el poder del lenguaje y evitar reinventar la rueda al desarrollar soluciones. En este bloque, exploraremos algunos de los módulos más útiles de la librería estándar de Python y cómo aplicarlos eficazmente en distintos contextos. ================================================ FILE: docs/stdlib/text-processing/index.md ================================================ # Procesamiento de texto El procesamiento de texto es una de las aplicaciones más comunes y poderosas de la programación, especialmente en un lenguaje como Python que ofrece herramientas muy versátiles para manipular cadenas de caracteres. Desde tareas simples como buscar y reemplazar palabras, hasta operaciones más complejas como analizar, limpiar o transformar grandes volúmenes de texto, el manejo eficiente de datos textuales es fundamental en áreas como la automatización, el análisis de datos y el procesamiento del lenguaje natural. En este capítulo, aprenderás a trabajar con textos en Python utilizando funciones básicas de cadenas, expresiones regulares y otras técnicas clave para procesar información escrita de forma efectiva. ================================================ FILE: docs/stdlib/text-processing/re.md ================================================ --- icon: material/regex tags: - Librería estándar - Procesamiento de texto - re --- # re { #re } ![Banner](images/re/banner.jpg) ///caption Imagen generada con Inteligencia Artificial /// !!! quote "Paradoja" Si tienes un problema y lo intentas resolver con expresiones regulares, entonces tienes dos problemas. El módulo [`re`](https://docs.python.org/es/3/library/re.html) permite trabajar con [expresiones regulares](https://es.wikipedia.org/wiki/Expresi%C3%B3n_regular). ## Expresión regular { #regex } Una **expresión regular** (también conocida como «regex» o «regexp» por su contracción anglosajona «reg-ular exp-ression») es una cadena de texto que conforma un **patrón de búsqueda**. Se utiliza principalmente para la _búsqueda de patrones_ en cadenas de caracteres u _operaciones de sustitución_. Se trata de una **herramienta ampliamente utilizada en las ciencias de la computación** y necesaria para multitud de aplicaciones que traten con información textual. Pero... ¿qué pinta tiene una expresión regular? Veamos un primer ejemplo:material-flash: de expresión regular: ```pycon >>> regex = '^\d{8}[A-Z]$' ``` La expresión regular anterior nos permite **comprobar que una cadena de texto dada es un DNI válido**. Si analizamos parte por parte tendríamos lo siguiente: - `^` :material-arrow-right-bold: comienzo de línea. - `\d{8}` :material-arrow-right-bold: dígito que se repite 8 veces. - `[A-Z]` :material-arrow-right-bold: letra en mayúsculas. - `$` :material-arrow-right-bold: final de línea. ## Sintaxis { #syntax } Las expresiones regulares pueden contener tanto **caracteres especiales** como **caracteres ordinarios**. La mayoría de los caracteres ordinarios, como `#!python 'A'`, `#!python 'b'` o `#!python '0'` son las expresiones regulares más sencillas; simplemente se ajustan a sí mismas. Existen una serie de caracteres que tienen un **significado especial** dentro de una expresión regular: | Caracter | Descripción | Ejemplo | :material-check:{.green} | :material-cancel:{.red} | | --- | --- | --- | --- | --- | | . | Coincide con cualquier carácter excepto con una nueva línea. | `#!python 'a.b'` | `acb`, `a b`, `aab`, `abb`, ... | `bxa`, `a\nb`, `ab`, `abc`, ... | | ^ | Coincide con el comienzo de la línea o cadena | `#!python '^ab'` | `ab`, `abc`, `abab`, `abcd`, ... | `ba`, `aa`, `bb`, `axb`, ... | | $ | Coincide con el final de la línea o cadena. | `#!python 'ab$'` | `ab`, `aab`, `bab`, ` ab` ... | `b`, `bb`, `ba`, `aa`, ... | | * | Coincide con 0 o más repeticiones de la expresión regular precedente. | `#!python 'a*b'` | `b`, `ab`, `aab`, `aaab`, ... | `ba`, `a`, `aa`, `acb`, ... | | + | Coincide con 1 o más repeticiones de la expresión regular precedente. | `#!python 'a+b'` | `ab`, `aab`, `aaab`, ... | `b`, `cb`, `ba`, `bb`, ... | | ? | Coincide con 0 o 1 repetición de la expresión regular precedente. | `#!python 'a?b'` | `b`, `ab` | `aab`, `ba`, `aaab`, `cb`, ... | | {m} | Coincide con exactamente `m` repeticiones de la expresión regular precedente. | `#!python 'a{3}'` | `aaa` | `a`, `aa`, `aaaa`, ... | | {m,n} | Coincide de `m` a `n` repeticiones de la expresión regular precedente, tratando de coincidir con el mayor número de repeticiones posibles. | `#!python 'a{2,4}'` | `aa`, `aaa`, `aaaa` | `a`, `aaaaa`, ... | | {m,} | Coincide como mínimo con `m` repeticiones de la expresión regular precedente. | `#!python 'a{2,}'` | `aa`, `aaa`, `aaaa`, ... | `''`, `a`, ... | | {,n} | Coincide como máximo con `n` repeticiones de la expresión regular precedente. | `#!python 'a{,2}'` | `''`, `a`, `aa`, | `aaa`, `aaaa`, ... | | [] | Coincide con el conjunto de caracteres indicados dentro de los corchetes. | `#!python '[abc]'` | `a`, `b`, `c` | `aa`, `d`, `ab`, ... | | [^] | Coincide con cualquier caracter fuera de los caracteres indicados dentro de los corchetes. | `#!python '[^abc]'` | `d`, `e`, `f`, ... | `a`, `b`, `c` | | [m-n] | Coincide con el conjunto de caracteres indicados dentro de los corchetes. | `#!python '[a-d]'` | `a`, `b`, `c`, `d` | `aa`, `f`, `ab`, ... | | [^m-n] | Coincide con cualquier caracter fuera de los caracteres indicados dentro de los corchetes. | `#!python '[^a-d]'` | `e`, `f`, `g`, ... | `a`, `b`, `c`, `d` | | \| | Coincide con una expresión regular u otra, separadas por este símbolo. | `#!python 'a+|b+'` | `a`, `aa`, `b`, `bb`, ... | `ab`, `aabb`, `abab`, ... | | () | Coincide con cualquier expresión regular que esté dentro de los paréntesis, e indica el comienzo y el final de un grupo de captura; el contenido de un grupo puede ser recuperado después de que se haya realizado una coincidencia. | `#!python '(ab)'` | `ab` | `a`, `b`, `abc`, ... | | (?P) | Coincide con cualquier expresión regular que esté dentro de los paréntesis; el contenido del grupo de captura es accesible por `name`. | `#!python '(?Pab)'` | `ab` | `a`, `b`, `abc`, ... | | (?:) | Coincide con cualquier expresión regular que esté dentro de los paréntesis pero no crea un grupo de captura. | `#!python '(?:ab)'` | `ab` | `a`, `b`, `abc`, ... | | \number | Coincide con el contenido del grupo de captura del mismo número. Se usa en conjunción con `#!python ()`. | `#!python r'(.):\1'` | `a:a`, `b:b`, `c:c`, ... | `a:b`, `b:c`, `c:d`, ... | | (?P=name) | Coincide con el contenido del grupo de captura del mismo nombre. Se usa en conjunción con `#!python ()`. | `#!python '(?P.):(?P=c1)'` | `a:a`, `b:b`, `c:c`, ... | `a:b`, `b:c`, `c:d`, ... | | \b | Coincide con el comienzo o el final de una palabra. | `#!python r'\ba\b'` | `a;b`, `a b`, `a%b`, ... | `ab`, `ba`, `aa`, ... | | \B | Coincide con cualquier caracter que no sea comienzo o final de una palabra. | `#!python r'a\Bb'` | `ab` | `a b`, `a;b`, `a!b`, ... | | \d | Coincide con cualquier dígito decimal. Equivalente a `[0-9]`. | `#!python r'a\db'` | `a0b`, `a3b`, `a9b`, ... | `ab`, `1ab`, `ab2`, ... | | \D | Coincide con cualquier carácter que no sea un dígito decimal. Equivalente a `[^0-9]`. | `#!python r'a\Db'` | `acb`, `aab`, `a;b`, ... | `a0b`, `a3b`, `a9b`, ... | | \s | Coincide con cualquier espacio en blanco. Equivalente a `[ \t\n\r\f\v]`. | `#!python r'a\sb'` | `a b`, `a\tb`, `a\nb`, ... | `acb`, `abb`, `aab`, ... | | \S | Coincide con cualquier carácter que no sea un espacio en blanco. Equivalente a `[^ \t\n\r\f\v]`. | `#!python r'a\Sb'` | `a.b`, `abb`, `aab`, ... | `a b`, `a\tb`, `a\nb`, ... | | \w | Coincide con cualquier carácter alfanumérico. Equivalente a `[a-zA-Z0-9_]`. | `#!python r'a\wb'` | `aab`, `aAb`, `acb`, ... | `a;b`, `a!b`, `a.b`, ... | | \w | Coincide con cualquier carácter que no sea un carácter alfanumérico. Equivalente a `[^a-zA-Z0-9_]`. | `#!python r'a\Wb'` | `a;b`, `a!b`, `a.b`, ... | `aab`, `aAb`, `acb`, ... | | \ | Permite «escapar» el caracter que le sigue, es decir, quitarle el significado especial que tiene. | `#!python r'a\.b'` | `a.b` | `acb`, `aab`, `abb`, ... | !!! tip "Cadenas en crudo" Cuando hay barras invertidas en la expresión regular (`\d`, `\s`, `\w`, `\b`, `\1`, ...) es recomendable el uso de [cadenas en crudo](../../core/datatypes/strings.md#raw) o «raw strings» ya que de no hacerlo podríamos obtener errores del estilo: `#!python SyntaxWarning: invalid escape sequence '\d'`. En general, siempre que uses expresiones regulares en Python, lo mejor es usar `#!python r''` para evitar confusiones y errores. Por ejemplo:material-flash: `#!python r'\d+'` en vez de `#!python '\d+'`. !!! exercise "Ejercicio" Coge papel y lápiz e intenta escribir una expresión regular para los siguientes escenarios: 1. [Documento nacional de identidad en España](https://es.wikipedia.org/wiki/Documento_nacional_de_identidad_(Espa%C3%B1a)). 2. [Número de identidad de extranjero en España](https://es.wikipedia.org/wiki/N%C3%BAmero_de_identidad_de_extranjero). 3. [Matrículas automovilísticas en España](https://es.wikipedia.org/wiki/Matr%C3%ADculas_automovil%C3%ADsticas_de_Espa%C3%B1a). 4. [Código de aeropuertos de IATA](https://es.wikipedia.org/wiki/C%C3%B3digo_de_aeropuertos_de_IATA). 5. [Prefijos telefónicos mundiales](https://es.wikipedia.org/wiki/Anexo:Prefijos_telef%C3%B3nicos_mundiales). 6. [Tamaños de papel ISO-DIN](https://es.wikipedia.org/wiki/Formato_de_papel#Norma_ISO_216_/_DIN_476). ## Operaciones { #operations } Una vez encontrada la expresión regular correspondiente, Python nos ofrece distintos mecanismos que aplicar. ### Buscar { #re-search } La búsqueda de patrones es una de las principales utilidades de las expresiones regulares. #### Búsqueda simple { #search } Supongamos un ejemplo:material-flash: en el que queremos buscar un número de teléfono dentro de un texto. Para ello vamos a utilizar la función [`search()`](https://docs.python.org/es/3/library/re.html#re.search): ```pycon >>> import re#(1)! >>> text = 'Estaré disponible en el +34755142009 el lunes por la tarde'#(2)! >>> regex = r'\+?\d{2}\d{9}'#(3)! >>> m = re.search(regex, text) >>> m#(4)! ``` { .annotate } 1. Para poder trabajar con expresiones regular debemos importar el paquete `re` de la librería estándar. 2. Texto de entrada. 3. Definición de la expresión regular: - `\+?` :material-arrow-right-bold: Puede aparecer el signo `+` como prefijo del teléfono (lo escapamos ya que el punto `.` es un caracter especial en sí mismo). - `\d{2}` :material-arrow-right-bold: Dos repeticiones de un dígito (prefijo). - `\d{9}` :material-arrow-right-bold: Nueve repeticiones de un dígito (número telefónico en sí mismo). 4. La función `search()` nos devuelve un objeto tipo `Match` donde `span` indica la «ventana» de coincidencia: `text[24:36]` :material-arrow-right-bold: `#!python '+34755142009'` Podemos acceder a la coincidencia encontrada de varias formas: ```pycon >>> m[0]#(1)! '+34755142009' >>> m.span(0)#(2)! (24, 36) ``` { .annotate } 1. - El acceso por índice nos devuelve las coindicencias encontradas. - Equivalente a usar `#!python m.group(0)`. 2. - El método `span()` nos devuelve una _tupla_ con los índices de comienzo y finalización de la coincidencia. - Equivalente a usar `#!python m.start()` y `#!python m.end()`. Podemos aplicar **grupos de captura** para separar el prefijo y el teléfono siguiendo con el ejemplo:material-flash: anterior: === "Captura posicional" ```pycon hl_lines="5 12-13 15-16" >>> import re >>> text = 'Estaré disponible en el +34755142009 el lunes por la tarde'#(2)! >>> regex = r'\+?(\d{2})(\d{9})' >>> m = re.search(regex, text) >>> m[0] '+34755142009' >>> m[1] '34' >>> m[2] '755142009' ``` === "Captura nominal" ```pycon hl_lines="5 12-13 15-16" >>> import re >>> text = 'Estaré disponible en el +34755142009 el lunes por la tarde'#(2)! >>> regex = r'\+?(?P\d{2})(?P\d{9})' >>> m = re.search(regex, text) >>> m[0] '+34755142009' >>> m['prefix'] '34' >>> m['number'] '755142009' ``` !!! tip "Ignorando mayúsculas y minúsculas" Si queremos ignorar mayúsculas y minúsculas a la hora de hacer una búsqueda, sólo tendremos que usar un tercer parámetro indicándolo: ```python import re re.search(regex, text, re.IGNORECASE)#(1)! ``` { .annotate } 1. También se puede abreviar como `re.I` #### Búsqueda múltiple { #findall } En el ejemplo anterior hemos estado buscando una única coincidencia. Imaginemos ahora que queremos encontrar todos los teléfonos. Para ello vamos a utilizar la función [`findall()`](https://docs.python.org/es/3/library/re.html#re.findall): ```pycon >>> import re >>> text = ''' ... Datos de contacto: ... - Marketing: Rubén López (+49677543181) ... - Ventas: Sara Mondragón (+34681788902) ... - Desarrollo: Eva Blasco (+51682131262) ... © Saturno Desarrollos de Software ... ''' >>> regex = r'\+?\d{2}\d{9}' >>> re.findall(regex, text)#(1)! ['+49677543181', '+34681788902', '+51682131262'] ``` { .annotate } 1. La función `findall()` devuelve una **lista** con las coincidencias encontradas. Es posible utilizar **grupos de captura** con la función `findall()`. Imaginemos que sólo nos interesan los **prefijos telefónicos** del ejemplo:material-flash: anterior: ```pycon >>> import re >>> text = ''' ... Datos de contacto: ... - Marketing: Rubén López (+49677543181) ... - Ventas: Sara Mondragón (+34681788902) ... - Desarrollo: Eva Blasco (+51682131262) ... © Saturno Desarrollos de Software ... ''' >>> regex = r'\+?(\d{2})\d{9}'#(1)! >>> re.findall(regex, text) ['49', '34', '51'] ``` { .annotate } 1. Mediante los paréntesis `()` definimos el grupo de captura sobre el prefijo. ### Separar { #split } Otras de las operaciones ampliamente usadas con expresiones regulares es la separación o división de una cadena de texto mediante un separador. En su momento vimos el uso de la función [`split()`](../../core/datastructures/lists.md#split) para cadenas de texto, pero era muy limitada para patrones avanzados. Veamos el uso de la función `re.split()` dentro de este módulo de expresiones regulares. Un ejemplo:material-flash: muy sencillo sería **separar la parte entera de la parte decimal** en un determinado número flotante: ```pycon >>> regex = r'[.,]' >>> re.split(regex, '3.14') ['3', '14'] >>> re.split(regex, '3,14') ['3', '14'] ``` Python también nos da la posibilidad de «capturar» el separador. Siguiendo el ejemplo:material-flash: anterior: ```pycon >>> regex = r'([.,])'#(1)! >>> re.split(regex, '3.14') ['3', '.', '14'] >>> re.split(regex, '3,14') ['3', ',', '14'] ``` { .annotate } 1. Usamos paréntesis para añadir un grupo de captura. ### Reemplazar { #sub } El paquete de expresiones regulares `re` también nos ofrece la posibilidad de reemplazar ocurrencias dentro de un texto. Para ello disponemos de la función [`sub`](https://docs.python.org/3/library/re.html#re.sub) (regla mnemotécnica viene del inglés «substitute»). Veamos a continuación un ejemplo:material-flash: de uso en el que recibimos el nombre de una persona en formato ` ` y queremos convertirlo a formato `, `. Veamos dos soluciones a este problema utilizando la función `re.sub()` mediante: === "Grupos de captura posicionales" ```pycon >>> import re >>> name = 'Alan Turing' >>> regex = r'(\w+) +(\w+)'#(1)! >>> repl = r'\2, \1'#(2)! >>> re.sub(regex, repl, name)#(3)! 'Turing, Alan' ``` { .annotate } 1. Utilizamos grupos de captura **posicionales** para nombre y apellidos. 2. Hacemos referencia a los _grupos de captura_ en orden «inverso». 3. La función `re.sub()` recibe la expresión de búsqueda, la expresión de reemplazo y la cadena de texto sobre la que operar. === "Grupos de captura nominales" ```pycon >>> import re >>> name = 'Alan Turing' >>> regex = r'(?P\w+) +(?P\w+)'#(1)! >>> repl = r'\g, \g'#(2)! >>> re.sub(regex, repl, name)#(3)! 'Turing, Alan' ``` { .annotate } 1. Utilizamos grupos de captura **nominales** para nombre y apellidos. 2. Hacemos referencia a los _grupos de captura_ en orden «inverso». 3. La función `re.sub()` recibe la expresión de búsqueda, la expresión de reemplazo y la cadena de texto sobre la que operar. La función `re.sub()` admite un uso más avanzado ya que podemos **pasar una función** en vez de una cadena de texto de reemplazo, lo que nos abre un abanico de posibilidades. Siguiendo con el ejemplo:material-flash: anterior, supongamos ahora que queremos hacer la misma transformación pero **convirtiendo el apellido a mayúsculas**, y asegurarnos de que **el nombre queda como título**: ```pycon >>> import re >>> name = 'Alan Turing' >>> regex = r'(\w+) +(\w+)' >>> re.sub(regex, lambda m: f'{m[2].upper()}, {m[1].title()}', name)#(1)! 'TURING, Alan' ``` { .annotate } 1. La [función «lambda»](../../core/modularity/functions.md#lambda) recibe el objeto «matcheado» y realiza su modificación mediante los grupos de captura. !!! tip "Contando reemplazos" Existe una función `re.subn()` que devuelve una tupla con la nueva cadena de texto reemplazada y el número de sustituciones realizadas. ### Casar { #match } Si lo que estamos buscando es comprobar si una determinada cadena de texto «casa» (coincide) con un patrón de expresión regular, podemos hacer uso de la función `re.fullmatch()`. A continuación se presenta un primer ejemplo:material-flash: que comprueba **si un texto dado es un DNI válido**: ```pycon >>> import re >>> regex = r'\d{8}[A-Z]'#(1)! >>> text = '54632178Y' >>> re.fullmatch(regex, text)#(2)! >>> text = '87896532$'#(3)! >>> re.fullmatch(regex, text) ``` { .annotate } 1. Esta expresión regular es una «simplificación» ya que la letra del DNI (_dígito de control_) habría que calcularla utilizando un [algoritmo definido](https://www.interior.gob.es/opencms/es/servicios-al-ciudadano/tramites-y-gestiones/dni/calculo-del-digito-de-control-del-nif-nie/). 2. Cuando la cadena de texto «casa» con la expresión regular se devuelve un objeto de tipo [`Match`](https://docs.python.org/3/library/re.html#match-objects). 3. Cuando la cadena de texto no «casa» con la expresión regular se devuelve `#!python None`. En este tipo de escenarios es habitual utilizar el [operador morsa](../../core/controlflow/conditionals.md#walrus) para discernir los casos a la vez que creamos una variable: ```pycon >>> import re >>> def check_id_card(text: str) -> None: ... REGEX = r'(\d{8})([A-Z])' ... if m := re.fullmatch(REGEX, text):#(1)! ... print(f'{text} es un DNI válido') ... print(f'N: {m[1]} CC: {m[2]}')#(2)! ... else: ... print(f'{text} no es un DNI válido') >>> check_id_card('54632178Y') 54632178Y es un DNI válido N: 54632178 CC: Y >>> check_id_card('87896532$') 87896532$ no es un DNI válido ``` { .annotate } 1. En la variable `m` tendremos el objeto `Match` en el caso de que la cadena de texto haya casado. 2. Acceso a los grupos de captura. !!! warning "Cuidado con `re.match()`" Hay una variante más «flexible» para casar que es re.match() y comprueba la existencia del patrón **sólo desde el comienzo de la cadena**. Es decir, que si el final de la cadena no coincide sigue casando. === "Caracteres al final" :material-check:{.green} Casa... ```pycon >>> regex = r'\d{8}[A-Z]' >>> text = '54632178Y###' >>> re.match(regex, text) ``` === "Caracteres al principio" :material-cancel:{.red} No casa... ```pycon >>> regex = r'\d{8}[A-Z]' >>> text = '###54632178Y' >>> re.match(regex, text) ``` En cualquier caso podemos hacer que `re.match()` se comporte como `re.fullmatch()` si especificamos los **indicadores de comienzo y final de línea** en el patrón: ```pycon >>> regex = r'^\d{8}[A-Z]$'#(1)! >>> text = '54632178Y' >>> re.match(regex, text) ``` { .annotate } 1. - `^` indica comienzo de línea. - `$` indica final de línea. #### Aclaraciones sobre corchetes { #squarebrackets } Hay que tener en cuenta ciertos matices al utilizar corchetes `#!python []` en una expresión regular: 1. Los símbolos incluidos en los corchetes pierden su significado especial: ```pycon >>> re.match(r'[.]', 'A')#(1)! >>> re.match(r'[.]', '.')#(2)! ``` { .annotate } 1. No casa... 2. Sí casa... 2. El guión medio hay que escaparlo en situaciones donde no represente un rango: ```pycon >>> re.match(r'[-\d\s]', '-')#(1)! >>> re.match(r'[\d\s-]', '-')#(2)! >>> re.match(r'[\d\-\s]', '-')#(3)! ``` { .annotate } 1. No hay que escapar ya que no representa un rango. 2. No hay que escapar ya que no representa un rango. 3. Hay que escapar porque «parece» que representa un rango. ## Ejercicios { #exercises } 1. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `vowel-words` 2. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `valid-float` 3. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `valid-email` 4. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `calc-from-str` 5. [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `valid-url` ================================================ FILE: docs/stdlib/text-processing/string.md ================================================ --- icon: material/code-string tags: - Librería estándar - Procesamiento de texto - string --- # string { #string } ![Banner](images/string/banner.jpg) ///caption Imagen generada con Inteligencia Artificial /// El módulo [string](https://docs.python.org/es/3/library/string.html) proporciona **operaciones y constantes** muy útiles para manejo de [cadenas de texto](../../core/datatypes/strings.md), además de distintas estrategias de **formateado de cadenas**. ## Constantes { #constants } Las constantes definidas en este módulo son las siguientes: | Constante | Valor | | --- | --- | | `string.ascii_lowercase` | `#!python 'abcdefghijklmnopqrstuvwxyz'` | | `string.ascii_uppercase` | `#!python 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` | | `string.ascii_letters` | `#!python 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'` | | `string.digits` | `#!python '0123456789'` | | `string.octdigits` | `#!python '01234567'` | | `string.hexdigits` | `#!python '0123456789abcdefABCDEF'` | | `string.punctuation` | `#!python '!"#$%&\'()*+,-./:;<=>?@[\\]^_``{|}~'` | | `string.printable` | `#!python '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&\'()*+,-./:;<=>?@[\\]^_``{|}~ \t\n\r\x0b\x0c'` | | `string.whitespace` | `#!python ' \t\n\r\x0b\x0c'` | !!! exercise "Ejercicio" [pypas](../../third-party/learning/pypas.md)  :fontawesome-solid-hand-holding-heart:{ .acc .slide } `all-ascii` ## Plantillas { #templates } El módulo `string` también nos permite usar **plantillas con interpolación de variables**. Algo similar a los [f-strings](../../core/datatypes/strings.md#fstrings) pero con otro tipo de sintaxis. Veamos un ejemplo:material-flash: en el que definimos una sencilla plantilla: ```pycon >>> from string import Template#(1)! >>> tmpl = Template('$lang is the best programming language in the $place!')#(2)! ``` { .annotate } 1. Importamos la clase `Template` desde el módulo. 2. Las variables que queramos interporlar deben ir precedidas del signo dólar `#!python $` Ahora podemos aplicar la _interpolación_ (sustitución) de variables con los valores que nos interesen: ```pycon >>> tmpl.substitute(lang='Python', place='World')#(1)! 'Python is the best programming language in the World!' >>> tmpl.substitute({'lang': 'Python', 'place': 'World'})#(2)! 'Python is the best programming language in the World!' ``` { .annotate } 1. Podemos usar [argumentos nominales](../../core/modularity/functions.md#kwargs). 2. Podemos usar un [diccionario](../../core/datastructures/dicts.md). Hay que prestar atención cuando el identificador de variable está seguido por algún carácter que, a su vez, puede formar parte del identificador. En este caso hay que utilizar llaves para evitar la ambigüedad. En el siguiente ejemplo:material-flash: se muestra un ejemplo de _pluralización_: ```pycon hl_lines="1" >>> tmpl = Template('Congratulations! You won several ${gift}s') >>> tmpl.substitute(gift='phone') 'Congratulations! You won several phones' ``` ### Sustitución segura { #safety-sub } En el caso de que alguna de las variables que estamos interpolando no exista o no tenga ningún valor, obtendremos un error al sustituir: ```pycon >>> tmpl = Template('$lang is the best programming language in the $place!') >>> tmpl.substitute(lang='Python') Traceback (most recent call last): Cell In[2], line 1 tmpl.substitute(lang='Python') File ~/.local/share/uv/python/cpython-3.13.2-macos-aarch64-none/lib/python3.13/string.py:121 in substitute return self.pattern.sub(convert, self.template) File ~/.local/share/uv/python/cpython-3.13.2-macos-aarch64-none/lib/python3.13/string.py:114 in convert return str(mapping[named]) KeyError: 'place' ``` Para estos casos el módulo proporciona el método `self_substitute()` que no emite error si alguna variable no es especificada: ```pycon >>> tmpl.safe_substitute(lang='Python') 'Python is the best programming language in the $place!' ``` ### Casos de uso { #tmpl-use-cases } A primera vista podría parecer que este sistema de plantillas no aporta gran ventaja sobre los [f-strings](../../core/datatypes/strings.md#fstrings) que ya hemos visto. Sin embargo hay ocasiones en los que puede resultar muy útil. La mayoría de estas escenarios tienen que ver con **la oportunidad** de definir el «string». Si en el momento de crear la plantilla aún no están disponibles las variables de sustitución, podría interesar utilizar la estrategia que nos proporciona este módulo. Supongamos un ejemplo:material-flash: en el que tenemos una estructura de «url» y queremos únicamente sustituir una parte de ella. Para no tener que repetir la cadena de texto completa en un «f-string», podríamos seguir este enfoque: ```pycon >>> from string import Template >>> urlbase = Template('https://python.org/3/library/$module.html') >>> for module in ('string', 're', 'difflib'): ... url = urlbase.substitute(module=module) ... print(url) ... https://python.org/3/library/string.html https://python.org/3/library/re.html https://python.org/3/library/difflib.html ``` ================================================ FILE: docs/third-party/config/index.md ================================================ # Configuraciones Las configuraciones en programación se refieren a la personalización y ajustes de los parámetros que permiten que un programa se adapte a diferentes entornos, usuarios o necesidades específicas. Estas configuraciones pueden incluir variables de entorno, archivos de configuración, parámetros de ejecución o ajustes de sistema, y son esenciales para hacer que el software sea flexible y reutilizable. En Python, se pueden gestionar configuraciones de manera eficiente utilizando herramientas como archivos JSON, YAML o INI, que permiten almacenar y leer datos de configuración de forma sencilla. En este capítulo, exploraremos cómo manejar y aplicar configuraciones en Python, asegurando que tus programas sean fácilmente adaptables y mantenibles en diferentes escenarios y entornos de ejecución. ================================================ FILE: docs/third-party/config/prettyconf.md ================================================ --- icon: material/image-filter-center-focus-weak tags: - Paquetes de terceros - Configuraciones - Pretty Conf --- # Pretty Conf { #prettyconf } ![Banner](images/prettyconf/banner.jpg) ///caption Imagen generada con Inteligencia Artificial /// [`prettyconf`](https://prettyconf.readthedocs.io/en/latest/index.html) es un paquete Python que facilita la creación de ficheros de configuración mediante la parametrización de sus variables. Es habitual no incluir credenciales o datos sensibles en el control de versiones de ciertos proyectos de software. Para esto hay varias soluciones, pero la que nos propone `prettyconf` es utilizar una función genérica `config()` que se encargará de recuperar estos datos bien desde _variables de entorno_ o bien desde un fichero `.env`. ## Instalación { #install } La instalación del paquete es muy sencilla: === "*venv* :octicons-package-24:{.blue}" ```console $ pip install prettyconf ``` === "*uv*  :simple-uv:{.uv}" ```console $ uv add prettyconf ``` ## Modo de uso { #usage } Su modo de uso es muy sencillo: === "Valor obligatorio" ```pycon >>> from prettyconf import config >>> PASSWD = config('PASSWORD')#(1)! ``` { .annotate } 1. - Se busca `PASSWORD` en ^^variables de entorno^^ o en fichero `.env` - Si se encuentra, se asigna su valor a la variable `PASSWD` - Si no se encuentra, se eleva una excepción `UnknownConfiguration`. === "Valor opcional" ```pycon >>> from prettyconf import config >>> UNAME = config('USERNAME', default='guido')#(1)! ``` { .annotate } 1. - Se busca `USERNAME` en ^^variables de entorno^^ o en fichero `.env` - Si se encuentra, se asigna su valor a la variable `UNAME` - Si no se encuentra, se asigna el valor por defecto `#!python 'guido'` a `UNAME` ## Ficheros .env { #dotenv } Aunque también existe la posibilidad de definir los valores mediate _variables de entorno_ suele ser habitual utilizar un fichero de configuración `.env` para ello. Su estructura es realmente simple: ```ini title=".env" USERNAME="thisisme" PASSWORD=verycomplicated#(1)! MESSAGE="Talk is cheap, show me the code" ``` { .annotate } 1. Aunque podría ir sin comillas dobles, lo más fácil —para evitar errores— es ponerlas siempre. !!! danger "Fuera de control de versiones" Es crucial dejar fuera del **control de versiones** el archivo `.env` mediante su inclusión en el fichero `.gitignore`. ## Conversiones { #casts } Por defecto, cualquier valor que le demos a una variable mediante `prettyconf` se interpretará como una **cadena de texto** (`#!python str`). Pero es posible indicar **conversiones explícitas** en la propia llamada a la función:
| Conversión | Explicación | Valor `ITEM` | Ejemplo | | --- | --- | --- | --- | | `config.boolean` | Convierte a [booleano](../../core/datatypes/numbers.md#booleans)(1) | `#!python 'On'` | `#!python config(ITEM, cast=config.boolean)` :material-arrow-right-box: `#!python True` | `config.list` | Convierte a [lista](../../core/datastructures/lists.md)(2) | `#!python 'A,B,C'` | `#!python config(ITEM, cast=config.list)` :material-arrow-right-box: `#!python ['A','B','C']` | `config.tuple` | Convierte a [tupla](../../core/datastructures/tuples.md)(3) | `#!python 'A,B,C'` | `#!python config(ITEM, cast=config.tuple)` :material-arrow-right-box: `#!python ('A','B','C')` | `config.json` | Convierte a objeto Python(4) | `#!python '{"a": [1, 2], "b": [3, 4]}'` | `#!python config(ITEM, cast=config.json)` :material-arrow-right-box: `#!python {'a': [1, 2], 'b': [3, 4]}`
1. Ejemplos: `On|Off`, `1|0`, `yes|no`, `true|false`, `t|f` 2. Desde cadenas de texto separadas por **comas**. 3. Desde cadenas de texto separadas por **comas**. 4. Desde cadena de texto con objeto JSON. !!! warning "Valores por defecto" Un error bastante común se produce a la hora de definir valores por defecto a los que se aplican conversiones personalizadas. En el siguiente ejemplo:material-flash: definimos una lista como valor por defecto, pero quizás el resultado no es lo que realmente esperamos: ```pycon >>> config('PRUEBA', default=['a', 'b', 'c'], cast=config.list) ['abc'] ``` Lo que seguramente tendríamos que hacer es asignar el valor por defecto como una cadena de texto que ya luego el «cast» se encargará de convertir: ```pycon >>> config('PRUEBA', default='a,b,c', cast=config.list) ['a', 'b', 'c'] ``` ### Conversiones personalizadas { #custom-casts } Además de las conversiones predefinidas es posible crear conversiones personalizadas mediante una función propia. Por ejemplo:material-flash:, supongamos una configuración que almacena **latitud y longitud** de un determinado lugar (_geolocalización_): ```python title="settings.py" def geoloc(loc: str) -> tuple[float, float]: return tuple(float(v) for v in loc.split(',')) TEIDE_GPS = config('TEIDE_GPS', cast=geoloc)#(1)! ``` { .annotate } 1. Es habitual usar [funciones anónimas lambda](../../core/modularity/functions.md#lambda) para estos propósitos. Con esto podríamos «leer» un fichero de configuración tipo: ```ini title=".env" TEIDE_GPS="28.2723364,-16.6631076"#(1)! ``` { .annotate } 1. Esto se convertiría en una tupla: `#!python (28.2723364, -16.6631076)` (_cuyos valores ya estarían en formato flotante_). ================================================ FILE: docs/third-party/data-science/files/jupyter/equations.tex ================================================ % Ecuación 1 $$ \int_a^b f'(x)dx = f(b) - f(a) $$ % Ecuación 2 $$ t' = t \frac{1}{\sqrt{1 - \frac{v^2}{c^2}}} $$ % Ecuación 3 $$ \Big[ M \frac{\partial}{\partial M} + \beta(g) \frac{\partial}{\partial g} + \eta \gamma \Big] G^n(x_1, x_2, \dots, x_n; M, g) = 0 $$ % Ecuación 4 $$ R_{00} \approx -\frac{1}{2} \sum_i \frac{\partial^2 h_{00}}{\partial(x^i)^2} = \frac{4\pi G}{c^2} (\rho c^2) \Rightarrow \bigtriangledown^2 \phi_g = 4\pi G \rho $$ ================================================ FILE: docs/third-party/data-science/files/jupyter/timeit.py ================================================ print('Poisson') %timeit numpy.random.poisson(size=100) %timeit numpy.random.poisson(size=10_000) %timeit numpy.random.poisson(size=1_000_000) print('Uniform') %timeit numpy.random.uniform(size=100) %timeit numpy.random.uniform(size=10_000) %timeit numpy.random.uniform(size=1_000_000) print('Logistic') %timeit numpy.random.logistic(size=100) %timeit numpy.random.logistic(size=10_000) %timeit numpy.random.logistic(size=1_000_000) ================================================ FILE: docs/third-party/data-science/files/matplotlib/avengers.csv ================================================ URL,Name/Alias,Appearances,Current?,Gender,Probationary Introl,Full/Reserve Avengers Intro,Year,Years since joining,Honorary,Death1,Return1,Death2,Return2,Death3,Return3,Death4,Return4,Death5,Return5,Notes http://marvel.wikia.com/Henry_Pym_(Earth-616),"Henry Jonathan ""Hank"" Pym",1269,YES,MALE,,Sep-63,1963,52,Full,YES,NO,,,,,,,,,Merged with Ultron in Rage of Ultron Vol. 1. A funeral was held. http://marvel.wikia.com/Janet_van_Dyne_(Earth-616),Janet van Dyne,1165,YES,FEMALE,,Sep-63,1963,52,Full,YES,YES,,,,,,,,,Dies in Secret Invasion V1:I8. Actually was sent tto Microverse later recovered http://marvel.wikia.com/Anthony_Stark_(Earth-616),"Anthony Edward ""Tony"" Stark",3068,YES,MALE,,Sep-63,1963,52,Full,YES,YES,,,,,,,,,"Death: ""Later while under the influence of Immortus Stark committed a number of horrible acts and was killed.' This set up young Tony. Franklin Richards later brought him back" http://marvel.wikia.com/Robert_Bruce_Banner_(Earth-616),Robert Bruce Banner,2089,YES,MALE,,Sep-63,1963,52,Full,YES,YES,,,,,,,,,"Dies in Ghosts of the Future arc. However ""he had actually used a hidden Pantheon base to survive""" http://marvel.wikia.com/Thor_Odinson_(Earth-616),Thor Odinson,2402,YES,MALE,,Sep-63,1963,52,Full,YES,YES,YES,NO,,,,,,,Dies in Fear Itself brought back because that's kind of the whole point. Second death in Time Runs Out has not yet returned http://marvel.wikia.com/Richard_Jones_(Earth-616),Richard Milhouse Jones,612,YES,MALE,,Sep-63,1963,52,Honorary,NO,,,,,,,,,,NA http://marvel.wikia.com/Steven_Rogers_(Earth-616),Steven Rogers,3458,YES,MALE,,Mar-64,1964,51,Full,YES,YES,,,,,,,,,Dies at the end of Civil War. Later comes back. http://marvel.wikia.com/Clint_Barton_(Earth-616),Clinton Francis Barton,1456,YES,MALE,,May-65,1965,50,Full,YES,YES,YES,YES,,,,,,,Dies in exploding Kree ship in Averngers Vol. 1 Issue 502. Brought back by Scarlet Witch. Dies again in House of M Vol 1 Issue 7. Is later brought back. http://marvel.wikia.com/Pietro_Maximoff_(Earth-616),Pietro Maximoff,769,YES,MALE,,May-65,1965,50,Full,YES,YES,,,,,,,,,Dies in House of M Vol 1 Issue 7. Later comes back http://marvel.wikia.com/Wanda_Maximoff_(Earth-616),Wanda Maximoff,1214,YES,FEMALE,,May-65,1965,50,Full,YES,YES,,,,,,,,,Dies in Uncanny_Avengers_Vol_1_14. Later comes back http://marvel.wikia.com/Jacques_Duquesne_(Earth-616),Jacques Duquesne,115,NO,MALE,,Sep-65,1965,50,Full,YES,YES,,,,,,,,,Dies in Avengers_Vol_1_130. Brought back by the Chaos King http://marvel.wikia.com/Hercules_(Earth-616),Heracles,741,YES,MALE,,Oct-67,1967,48,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/T%27Challa_(Earth-616),T'Challa,780,NO,MALE,,May-68,1968,47,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Vision_(Earth-616),Victor Shade (alias),1036,YES,MALE,,Nov-68,1968,47,Full,YES,YES,,,,,,,,,Dies in Avengers_Vol_1_500. Is eventually rebuilt. http://marvel.wikia.com/Dane_Whitman,Dane Whitman,482,NO,MALE,,Dec-69,1969,46,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Natalia_Romanova_(Earth-616)#,Natalia Alianovna Romanova,1112,YES,FEMALE,,May-73,1973,42,Full,YES,YES,,,,,,,,,Killed by The Hand. Later revived with The Stone of the Chaste. http://marvel.wikia.com/Mantis_(Earth-616)#,Brandt,160,NO,FEMALE,,Aug-73,1973,42,Full,YES,YES,,,,,,,,,"Dies in Silver_Surfer_Vol_3_3. Actually ""fragments of her essence were spread out all across the universe""" http://marvel.wikia.com/Henry_McCoy_(Earth-616)#,Henry P. McCoy,1886,NO,MALE,Jul-75,Sep-76,1976,39,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Heather_Douglas_(Earth-616)#,Heather Douglas,332,NO,FEMALE,Jul-75,Sep-76,1976,39,Full,YES,YES,YES,YES,,,,,,,"Dies in Defenders_Vol_1_152. Later 'Obtained a new body.' Dies in Annihilation:_Conquest_Vol_1_3. Comes back as ""As before"" also was once named Madame MacEvil because LOL. " http://marvel.wikia.com/Patricia_Walker_(Earth-616)#,Patsy Walker,557,NO,FEMALE,Nov-75,Sep-76,1976,39,Full,YES,YES,,,,,,,,,Died during time on Defenders. Eventually ressurected by villian Grim Reaper along with Mockingbird to fight the Avengers. http://marvel.wikia.com/Matthew_Hawk_(Earth-616)#,Matthew Liebowitz (birth name),197,NO,MALE,,Aug-75,1975,40,Full,YES,YES,YES,NO,,,,,,,Died during Return_to_the_Old_West. Resurrected by She Hulk in negotiation with Time Variance Authority. As a time traveller he died in 1938. Did not return http://marvel.wikia.com/Robert_Frank_(Earth-616)#,Robert L. Frank Sr.,106,NO,MALE,Apr-77,Jul-78,1978,37,Full,YES,NO,,,,,,,,,Died in Vision_and_the_Scarlet_Witch_Vol_1_2. Did not return however he was eventually cloned but the clone was killed immediately. http://marvel.wikia.com/Simon_Williams_(Earth-616)#,Simon Williams,692,YES,MALE,Apr-77,Mar-79,1979,36,Full,YES,YES,,,,,,,,,Died in Avengers_Vol_1_9. Actually just in a death-like coma. http://marvel.wikia.com/Yondu_Udonta_(Earth-691)#,Yondu Udonta,109,NO,MALE,,Feb-78,1978,37,Honorary,NO,,,,,,,,,,NA http://marvel.wikia.com/Martinex_T%27Naga_(Earth-691)#,Martinex T'Naga,100,NO,MALE,,Feb-78,1978,37,Honorary,NO,,,,,,,,,,NA http://marvel.wikia.com/Charlie-27_(Earth-691)#,Charlie-27,132,NO,MALE,,Feb-78,1978,37,Honorary,NO,,,,,,,,,,NA http://marvel.wikia.com/Nicholette_Gold_(Earth-691)#,Nicholette Gold,108,NO,FEMALE,,Feb-78,1978,37,Honorary,NO,,,,,,,,,,NA http://marvel.wikia.com/Stakar_Ogord_(Earth-691)#,Stakar,100,NO,MALE,,Feb-78,1978,37,Honorary,NO,,,,,,,,,,NA http://marvel.wikia.com/Vance_Astro_(Earth-691)#,Vance Astrovik,156,NO,MALE,,Feb-78,1978,37,Honorary,NO,,,,,,,,,,NA http://marvel.wikia.com/Mar-Vell_(Earth-616)#,Mar-Vell,254,NO,MALE,,Jul-78,1978,37,Full,YES,YES,YES,YES,YES,NO,,,,,The bad penny of the Marvel universe. First killed in Secret invasion. Revived during the Chaos war. Died again during aformentioned chaos war. Resurrected by the Kree Empire using the M'Kraan Crystal. Third death during Avengers vs. X-Men. Has not return http://marvel.wikia.com/Carol_Danvers_(Earth-616)#,Carol Susan Jane Danvers,935,YES,FEMALE,,Apr-79,1979,36,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Samuel_Wilson_(Earth-616)#,Samuel Thomas Wilson,576,YES,MALE,,Jun-79,1979,36,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Jocasta_(Earth-616)#,Jocasta,141,YES,FEMALE,Jul-80,Nov-88,1988,27,Full,YES,YES,YES,YES,YES,YES,YES,YES,YES,YES,"From her article: Death1: ""Defeated Ultron and reversed the process leaving Jocasta a mindless husk."" Return 1: ""Ultron later revived Jocasta with a remote link activating the mental residue the Wasp left behind"" Death 2: ""Sacrificing herself to try to ki" http://marvel.wikia.com/Greer_Nelson_(Earth-616)#,Greer Grant Nelson,355,YES,FEMALE,,Sep-81,1981,34,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Jennifer_Walters_(Earth-616)#,Jennifer Walters,933,YES,FEMALE,,Jul-82,1982,33,Full,YES,YES,,,,,,,,,Dies during Red Hulk Saga. Returns when Lyra infiltrates Intelligenica and finds her in statis http://marvel.wikia.com/Monica_Rambeau_(Earth-616)#,Monica Rambeau,348,YES,FEMALE,Jan-83,May-83,1983,32,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Eros_(Earth-616)#,Eros,206,NO,MALE,Jun-83,May-84,1984,31,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/James_Rhodes_(Earth-616)#,James R. Rhodes,533,NO,MALE,May-84,Sep-84,1984,31,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Barbara_Morse_(Earth-616)#,Barbara Barton (nee Morse),374,NO,FEMALE,Jun-84,Sep-84,1984,31,Full,YES,YES,,,,,,,,,Killed by Mephisto. After Secret Invasion it turns out she was actually being impersonated by a Skrull the whole time and was alive and well. http://marvel.wikia.com/Moira_Brandon_(Earth-616)#,Moira Brandon,2,NO,FEMALE,,Nov-93,1993,22,Honorary,YES,NO,,,,,,,,,Died in her second appearance earns honorary Avengers status doing so. Stays dead. http://marvel.wikia.com/Benjamin_Grimm_(Earth-616)#,Benjamin Jacob Grimm,2305,NO,MALE,,Jun-86,1986,29,Full,YES,YES,,,,,,,,,Once killed during a battle with Doctor Doom.' Brought back by the FF when they literally went to Heaven to get him. http://marvel.wikia.com/Bonita_Juarez_(Earth-616)#,Bonita Juarez,83,NO,FEMALE,,Sep-87,1987,28,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Marc_Spector_(Earth-616)#,Marc Spector,402,NO,MALE,Sep-87,Jun-88,1988,27,Full,NO,,,,,,,,,,NA but he he did die and return to get his powers prior to joining the Avengers. http://marvel.wikia.com/John_Walker_(Earth-616)#,John F. Walker,352,NO,MALE,,May-89,1989,26,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Human_Torch_(Android)_(Earth-616)#,Jim Hammond (alias),565,NO,MALE,,Nov-89,1989,26,Full,YES,YES,,,,,,,,,"Dies during New Invaders. Was ""was revived as a living weapon the Thinker intended to sell."" Prior to joining the avengers he had died like 2 times in the 40s. " http://marvel.wikia.com/Miguel_Santos_(Earth-616)#,Miguel Santos,112,NO,MALE,,Apr-91,1991,24,Full,NO,,,,,,,,,,NA: Has not died since joing the Avengers but prior to joining he fought the West Coast avengers and seemingly died. Later turned up under control of a villain http://marvel.wikia.com/Julia_Carpenter_(Earth-616)#,Julia Carpenter,218,NO,FEMALE,,Sep-92,1992,23,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/2ZP45-9-X-51_(Earth-616)#,X-51,149,NO,MALE,,Jun-92,1992,23,Full,YES,YES,,,,,,,,,Died in Deathlok Vol 2 #5. JK that was actually just a Life Model Decoy http://marvel.wikia.com/Chris_Powell_(Earth-616)#,Christopher Powell,168,NO,MALE,,May-93,1993,22,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Namor_McKenzie_(Earth-616)#,Namor McKenzie,1561,NO,MALE,,Dec-85,1985,30,Full,YES,YES,,,,,,,,,Namor was presumed killed in the battle with Atlantean Barbarians. Had actually survived and turned up in the South Pacific http://marvel.wikia.com/Scott_Lang_(Earth-616)#,Scott Edward Harris Lang,217,NO,MALE,Jan-87,3-Feb,2003,12,Full,YES,YES,,,,,,,,,Died in Avengers:_Disassembled. Was brought back in the Young Avengers: Children's Crusade arc because time travel but take my word for it it was actually kind of well done. http://marvel.wikia.com/Anthony_Druid_(Earth-616)#,Anthony Ludgate Druid,158,NO,MALE,,Apr-87,1987,28,Honorary,YES,YES,YES,YES,,,,,,,Shot with a Breathing gun and corpse dumped in trash. Revived by the Grim Reaper. Helped Avengers defeat the Reaper so his spirit could remain at peace. Later completely revived by the Chaos King. http://marvel.wikia.com/Marrina_Smallwood_(Earth-616)#,Marrina Smallwood,86,NO,FEMALE,,Dec-87,1987,28,Full,YES,YES,YES,YES,,,,,,,Killed by Namor with the Ebony Blade. Returned when The Master put her in a statis tube. Death 2 was when Namor mercy killed her. Returned to life a second time by the Chaos King. http://marvel.wikia.com/Ravonna_Renslayer_(Earth-6311)#,Ravonna Lexus Renslayer,41,NO,FEMALE,,May-88,1988,27,Full,YES,YES,YES,NO,,,,,,,Killed in Avengers_Vol_1_24. Revived by the Grandmaster. Died in Avengers:_Forever_Vol_1_3. http://marvel.wikia.com/Rita_DeMara_(Earth-616)#,Rita DeMara,68,NO,FEMALE,,Nov-88,1988,27,Honorary,YES,YES,,,,,,,,,Killed by Iron Man when he was controlled by Immortus. Revived during Chaos war. http://marvel.wikia.com/Dennis_Dunphy_(Earth-616)#,Dennis Dunphy,70,NO,MALE,,Jan-88,1988,27,Full,YES,YES,YES,NO,,,,,,,"Died in Captain_America_348. Actually ""Dunphy miraculously survived the crash and lived with an Inuit tribe."" Second death when killed by Sharon Carter. " http://marvel.wikia.com/Gilgamesh_(Earth-616)#,,61,NO,MALE,,Feb-89,1989,26,Full,YES,YES,,,,,,,,,Killed by Neut who was working for Immortus. Reborn into a new body. http://marvel.wikia.com/Reed_Richards_(Earth-616)#,Reed Richards,2125,YES,MALE,,Feb-89,1989,26,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Susan_Storm_(Earth-616)#,Susan Richards (nee Storm),1761,NO,MALE,,Feb-89,1989,26,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Wendell_Vaughn_(Earth-616)#,Wendell Elvis Vaughn,293,NO,MALE,,Oct-89,1989,26,Full,YES,YES,,,,,,,,,Killed by the Cosmic Assassin. Actually turned into a being composed of pure energy. http://marvel.wikia.com/Ashley_Crawford_(Earth-616)#,Ashley Crawford,36,YES,FEMALE,,Jul-89,1989,26,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Dinah_Soar_(Earth-616)#,,22,NO,FEMALE,,Jul-89,1989,26,Full,YES,NO,,,,,,,,,Died in Great_Lakes_Avengers_Vol_1_1. Has not returned http://marvel.wikia.com/DeMarr_Davis_(Earth-616)#,DeMarr Davis,31,YES,MALE,,Jul-89,1989,26,Full,YES,YES,,,,,,,,,Sacrificed self so that Mr. Immortal could stop the villain Maelstrom. Returned as the Angel of Death. http://marvel.wikia.com/Val_Ventura_(Earth-616)#,Val Ventura,34,YES,MALE,,Jul-89,1989,26,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Craig_Hollis_(Earth-616)#,Craig Hollis,33,YES,MALE,,Jul-89,1989,26,Full,NO,,,,,,,,,,Christ; where to begin. His superpower is that he cannot die when he dies he immediately comes back. The Wikia inventories 24 deaths. These will be excluded from the analysis. http://marvel.wikia.com/Gene_Lorrene_(Earth-616)#,Gene Lorrene,4,NO,MALE,,5-Apr,2005,10,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Doreen_Green_(Earth-616)#,Dorreen Green,47,NO,FEMALE,,5-May,2005,10,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Monkey_Joe_(Earth-616)#,,7,NO,MALE,,5-May,2005,10,Full,YES,NO,,,,,,,,,Killed by Leather Boy http://marvel.wikia.com/Doug_Taggert_(Earth-616)#,Doug Taggert,3,NO,MALE,,5-May,2005,10,Full,YES,NO,,,,,,,,,Accidently killed by Zaran http://marvel.wikia.com/Tippy-Toe_(Earth-616)#,,16,NO,FEMALE,,5-Jul,2005,10,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Wade_Wilson_(Earth-616)#,Wade Wilson,575,NO,MALE,,7-Sep,2007,8,Full,YES,NO,,,,,,,,,Died during incursion. It's not ever particulalry clear if he ever joined an Avengers team besides one issue so his inclusion here is specious at best. http://marvel.wikia.com/Greg_Willis_(Earth-616)#,Greg Willis,58,NO,MALE,,9-Aug,2009,6,Full,NO,,,,,,,,,,Died on Battleworld and came back prior to joining avengers http://marvel.wikia.com/Sersi_(Earth-616)#,Circe,237,NO,FEMALE,,Feb-90,1990,25,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Peter_Parker_(Earth-616)#,Peter Benjamin Parker,4333,YES,MALE,,Apr-90,1990,25,Full,YES,YES,YES,YES,,,,,,,Since joining the New Avengers: First death Killed by Morlun. Ressurected in a brand new body. Died in Amazing Spider-Man #700. Eventually mainfested in his body that Octavious stole and then took over again. http://marvel.wikia.com/Walter_Newell_(Earth-616)#,Walter Newell,126,NO,MALE,,Jul-90,1990,25,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Elvin_Haliday_(Earth-616)#,Elvin Haliday,158,NO,MALE,Feb-91,,1900,115,Probationary,NO,,,,,,,,,,NA http://marvel.wikia.com/William_Baker_(Earth-616)#,William Baker,355,NO,MALE,Feb-91,,1900,115,Probationary,YES,YES,NO,,,,,,,,Died in Identity_Disc_Vol_1_1. Later was revealed to be alive and working along with the Vulture. http://marvel.wikia.com/Crystalia_Amaquelin_(Earth-616)#,Crystal Amaquelin Maximoff,517,NO,FEMALE,Aug-91,Jan-92,1992,23,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Eric_Masterson_(Earth-616)#,Eric Kevin Masterson,202,NO,MALE,,Jan-92,1992,23,Full,YES,YES,YES,NO,,,,,,,Became posessed died to purge self of corruption. Revived as undead Avenger minion of the Grim Reaper. Returned to the spirit world by the Scarlet Witch. Has since stayed dead. http://marvel.wikia.com/Philip_Javert_(Earth-921)#,Phillip Javert,31,NO,MALE,,Dec-92,1992,23,Honorary,NO,,,,,,,,,,NA http://marvel.wikia.com/Melissa_Darrow_(Earth-9201)#,,28,NO,FEMALE,,Jun-93,1993,22,Honorary,NO,,,,,,,,,,NA http://marvel.wikia.com/Deathcry_(Earth-616)#,,50,NO,FEMALE,,Jul-93,1993,22,Honorary,YES,YES,YES,NO,,,,,,, Reduced her to a pile of bones and organsby Vargas. Brought back by Chaos King. Died second time in Chaos_War:_Dead_Avengers_Vol_1_3 http://marvel.wikia.com/Anthony_Stark_(Earth-96020)#,Anthony Edward Stark,27,NO,MALE,,Feb-96,1996,19,Full,YES,NO,,,,,,,,,Merged with 616 Tony Stark http://marvel.wikia.com/Giuletta_Nefaria_(Masque)_(Earth-616)#,"""Giulietta Nefaria""",18,NO,FEMALE,,Apr-96,1996,19,Honorary,YES,NO,,,,,,,,,Whitney killed was a clone possibly this incarnation of Masque' http://marvel.wikia.com/Vance_Astrovik_(Earth-616)#,Vance Astrovik,302,NO,MALE,,May-98,1998,17,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Angelica_Jones_(Earth-616)#,Angelica Jones,330,NO,FEMALE,,May-98,1998,17,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Delroy_Garrett_Jr._(Earth-616)#,Delroy Garrett Jr.,101,NO,MALE,,Apr-00,2000,15,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Maria_de_Guadalupe_Santiago_(Earth-616)#,Maria de Guadalupe Santiago,43,NO,FEMALE,,Jul-00,2000,15,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Jonathan_Hart_(Earth-616)#,Jonathan Hart,126,NO,MALE,,1-Aug,2001,14,Full,YES,YES,YES,YES,,,,,,,First died in a zero energy explosion in space. Body was apparently reanimated by Scarlet Witch. Abruptly exploded killing Scott Lang as well. Second return in Marvel_Zombies_Supreme_Vol_1_2. http://marvel.wikia.com/Kelsey_Leigh_(Earth-616)#,Kelsey Leigh Shorr,24,NO,FEMALE,,4-Jun,2004,11,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Luke_Cage_(Earth-616)#,Carl Lucas,886,YES,MALE,,5-Mar,2005,10,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Veranke_(Earth-616)#,Veranke,159,NO,FEMALE,,5-Mar,2005,10,Full,YES,NO,,,,,,,,,Killed by Norman Osbourne. Has not returned. http://marvel.wikia.com/James_Howlett_(Earth-616)#,"James ""Logan"" Howlett",3130,YES,MALE,,5-Jun,2005,10,Full,YES,NO,,,,,,,,,Died in Death_of_Wolverine_Vol_1_4. Has not yet returned http://marvel.wikia.com/Robert_Reynolds_(Earth-616)#,Robert Reynolds,241,NO,MALE,,5-Oct,2005,10,Full,YES,YES,,,,,,,,,Died during Seige. Brought back to life by the Apocalypse twins as a horseman of death in Uncanny_Avengers_Vol_1_9. http://marvel.wikia.com/Maya_Lopez_(Earth-616)#,Maya Lopez,67,NO,FEMALE,,5-Nov,2005,10,Full,YES,YES,YES,NO,,,,,,,"First death 'had been murdered in a fight with Elektra.' ""Revived by Elektra and the Hand with their dark magic."" Died in most recent run of Moon Knight has not yet returned." http://marvel.wikia.com/Nathaniel_Richards_(Iron_Lad)_(Earth-6311)#,Nathaniel Richards,23,NO,MALE,,5-Apr,2005,10,Full,NO,,,,,,,,,,NA is actually Kang but let's just not go there. http://marvel.wikia.com/Elijah_Bradley_(Earth-616)#,Elijah Bradley,103,NO,MALE,,5-Apr,2005,10,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/William_Kaplan_(Earth-616)#,"William ""Billy"" Kaplan",123,YES,MALE,,5-Apr,2005,10,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Dorrek_VIII_(Earth-616)#,"Dorrek VIII/Theodore ""Teddy"" Altman",110,YES,MALE,,5-Apr,2005,10,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Cassandra_Lang_(Earth-616)#,Cassie Lang,160,NO,FEMALE,,5-Jun,2005,10,Full,YES,YES,,,,,,,,,Dies in Young Avengers: The Childrens Crusade when she is killed by Doom. Eventually reborn years later. http://marvel.wikia.com/Katherine_Bishop_(Earth-616)#,"Katherine ""Kate"" Bishop",132,YES,FEMALE,,5-Jun,2005,10,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Vision_(Jonas)_(Earth-616)#,Alias: Jonas,121,NO,MALE,,6-Feb,2006,9,Full,YES,NO,,,,,,,,,Dies in Young Avengers The Children's Crusade http://marvel.wikia.com/Thomas_Shepherd_(Earth-616)#,"Thomas ""Tommy"" Shepherd",59,YES,MALE,,6-Jun,2006,9,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Daniel_Rand_(Earth-616)#,Daniel Thomas Rand K'ai,629,NO,MALE,,7-Feb,2007,8,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Stephen_Strange_(Earth-616)#,Doctor Stephen Vincent Strange,1324,NO,MALE,,7-Feb,2007,8,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Ares_(Earth-616)#,Ares,236,NO,MALE,,7-Mar,2007,8,Full,YES,YES,YES,NO,,,,,,,Ripped in half by the Sentry during Seige. Revived during Chaos King. Then killedby Chaos King. http://marvel.wikia.com/James_Buchanan_Barnes_(Earth-616)#,James Buchanan Barnes,663,NO,MALE,,8-Dec,2008,7,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Jessica_Drew_(Earth-616)#,Jessica Miriam Drew,525,YES,FEMALE,,8-Dec,2008,7,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Jessica_Jones_(Earth-616)#,Jessica Jones,205,YES,FEMALE,,10-Aug,2010,5,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Amadeus_Cho_(Earth-616)#,Amadeus Cho,108,NO,MALE,,9-Dec,2009,6,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Maria_Hill_(Earth-616)#,Maria Hill,359,YES,FEMALE,,10-May,2010,5,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Robert_Baldwin_(Earth-616)#,Robbie Baldwin,299,NO,MALE,,10-Jun,2010,5,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Sharon_Carter_(Earth-616)#,Sharon Carter,333,NO,FEMALE,,10-May,2010,5,Full,YES,YES,,,,,,,,,Died in Captain_America_Vol_7_10. It's not clear how she survived but yeah she totally did. http://marvel.wikia.com/Eric_O%27Grady_(Earth-616)#,Eric O'Grady,88,NO,MALE,,10-May,2010,5,Full,YES,NO,,,,,,,,,Died in Secret_Avengers_Vol_1_22. http://marvel.wikia.com/Brunnhilde_(Earth-616)#,Brunnhilde,369,NO,FEMALE,,10-May,2010,5,Full,NO,,,,,,,,,,NA but died/came back during Ragnarok prior to becoming an Avenger http://marvel.wikia.com/Richard_Rider_(Earth-616)#,Richard Rider,380,NO,MALE,,10-May,2010,5,Full,YES,NO,,,,,,,,,Died in Guardians_of_the_Galaxy_Vol_3_20. http://marvel.wikia.com/Brian_Braddock_(Earth-616)#,Brian Braddock,545,NO,MALE,,10-May,2010,5,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Dennis_Sykes_(Earth-616)#,Dennis Sykes,6,NO,MALE,,10-Sep,2010,5,Full,YES,NO,,,,,,,,,Died in Heroic_Age:_One_Month_to_Live_Vol_1_5 stayed dead. http://marvel.wikia.com/Noh-Varr_(Earth-616)#,Noh-Varr,126,YES,MALE,,10-Jun,2010,5,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Thaddeus_Ross_(Earth-616)#,Thaddeus Ross,417,NO,MALE,,11-Jun,2011,4,Full,YES,YES,,,,,,,,,Died in Circle of Four arc. Made a deal with Mephisto and came back. http://marvel.wikia.com/John_Aman_(Earth-616)#,John Aman,31,YES,MALE,,10-Dec,2010,5,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Shang-Chi_(Earth-616)#,Shang-Chi,310,YES,MALE,,11-Apr,2011,4,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/James_Santini_(Earth-616)#,James Santini,40,YES,MALE,,,1900,115,Academy,NO,,,,,,,,,,NA http://marvel.wikia.com/Emery_Schaub_(Earth-616)#,Emery Schaub,26,YES,MALE,,,1900,115,Academy,NO,,,,,,,,,,NA http://marvel.wikia.com/Jeanne_Foucault_(Earth-616)#,Jeanne Foucault,63,YES,FEMALE,,10-Aug,2010,5,Academy,NO,,,,,,,,,,NA http://marvel.wikia.com/Fiona_(Inhuman)_(Earth-616)#,Fiona,2,YES,FEMALE,,,1900,115,Academy,NO,,,,,,,,,,NA http://marvel.wikia.com/Jennifer_Takeda_(Earth-616)#,Jennifer Takeda,73,YES,FEMALE,,10-Aug,2010,5,Academy,NO,,,,,,,,,,NA http://marvel.wikia.com/Hollow_(Earth-616)#,Yvette,22,YES,FEMALE,,,1900,115,Academy,NO,,,,,,,,,,NA http://marvel.wikia.com/Julie_Power_(Earth-616)#,Julie Power,153,YES,FEMALE,,,1900,115,Academy,NO,,,,,,,,,,NA http://marvel.wikia.com/Alani_Ryan_(Earth-616)#,Alani Ryan,73,YES,FEMALE,,,1900,115,Academy,NO,,,,,,,,,,NA http://marvel.wikia.com/Ken_Mack_(Earth-616)#,Ken Mack,59,NO,MALE,,10-Aug,2010,5,Academy,YES,NO,,,,,,,,,Died in Murderworld during Avengers Arena http://marvel.wikia.com/Humberto_Lopez_(Earth-616)#,Humberto Lopez,66,YES,MALE,,10-Aug,2010,5,Academy,YES,NO,,,,,,,,,Died in Murderworld during Avengers Arena http://marvel.wikia.com/Johnathon_Gallo_(Earth-616)#,Johnny Gallo,43,YES,MALE,,,1900,115,Academy,NO,,,,,,,,,,NA http://marvel.wikia.com/Lyra_(Earth-8009)#,Lyra,55,YES,FEMALE,,,1900,115,Academy,NO,,,,,,,,,,NA http://marvel.wikia.com/Anya_Corazon_(Earth-616)#,Anya Corazon,108,YES,FEMALE,,,1900,115,Academy,NO,,,,,,,,,,NA http://marvel.wikia.com/Brandon_Sharpe_(Earth-616)#,Brandon Sharpe,64,YES,MALE,,10-Aug,2010,5,Academy,NO,,,,,,,,,,NA http://marvel.wikia.com/Kevin_Masterson_(Earth-616)#,Kevin Masterson,62,YES,MALE,,,1900,115,Academy,NO,,,,,,,,,,NA http://marvel.wikia.com/Michiko_Musashi_(Earth-616)#,Michiko Musashi,94,YES,FEMALE,,,1900,115,Academy,NO,,,,,,,,,,NA http://marvel.wikia.com/Takashi_Matsuya_(Earth-616)#,Taki Matsuya,18,YES,MALE,,,1900,115,Academy,NO,,,,,,,,,,NA http://marvel.wikia.com/Daisy_Johnson_(Earth-616)#,Daisy Johnson,81,NO,FEMALE,,12-Jan,2012,3,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Ororo_Munroe_(Earth-616)#,Ororo Munroe,1598,NO,FEMALE,,12-Jan,2012,3,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Matthew_Murdock_(Earth-616)#,Matt Murdock,1375,NO,MALE,,11-Nov,2011,4,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Eugene_Thompson_(Earth-616)#,Flash Thompson,746,YES,MALE,,12-Apr,2012,3,Honorary,NO,,,,,,,,,,NA http://marvel.wikia.com/Otto_Octavius_(Earth-616)#,Otto Octavius,561,NO,MALE,,13-Jan,2013,2,Full,YES,NO,,,,,,,,,Died in Superior_Spider-Man_Vol_1_30. http://marvel.wikia.com/Alexander_Summers_(Earth-616)#,Alex Summers,592,YES,MALE,,12-Dec,2012,3,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Samuel_Guthrie_(Earth-616)#,Samuel Guthrie,679,YES,MALE,,13-Feb,2013,2,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Roberto_da_Costa_(Earth-616)#,Roberto da Costa,491,YES,MALE,,13-Feb,2013,2,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Eden_Fesi_(Earth-616)#,Eden Fesi,65,YES,MALE,,13-Feb,2013,2,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Captain_Universe_(Earth-616)#,,55,YES,MALE,,13-Feb,2013,2,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Isabel_Kane_(Earth-616)#,Izzy Kane,44,YES,FEMALE,,13-Feb,2013,2,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Marcus_Milton_(Earth-13034)#,Marcus Milton,65,YES,MALE,,13-Feb,2013,2,Full,YES,NO,,,,,,,,,Died in New_Avengers_Vol_3_32. http://marvel.wikia.com/Rogue_(Anna_Marie)_(Earth-616)#,Anna Marie,877,YES,FEMALE,,13-Apr,2013,2,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Shiro_Yoshida_(Earth-616)#,Shiro Yoshida,176,YES,MALE,,13-May,2013,2,Full,YES,YES,,,,,,,,,Died in Uncanny_Avengers_Vol_1_22. Returned when 'he was able to use his power to transform his body into a state of pure energy ' http://marvel.wikia.com/Ex_Nihilo_(Earth-616)#,,24,YES,MALE,,13-Oct,2013,2,Full,YES,NO,,,,,,,,,Died in New_Avengers_Vol_3_32 http://marvel.wikia.com/Abyss_(Ex_Nihilo%27s)_(Earth-616)#,,25,YES,FEMALE,,13-Oct,2013,2,Full,YES,NO,,,,,,,,,Died in New_Avengers_Vol_3_32 http://marvel.wikia.com/Nightmask_(Earth-616)#,Adam,35,YES,MALE,,13-Oct,2013,2,Full,YES,NO,,,,,,,,,Died in New_Avengers_Vol_3_32 http://marvel.wikia.com/Kevin_Connor_(Earth-616)#,Kevin Kale Connor,44,YES,MALE,,13-Oct,2013,2,Full,YES,NO,,,,,,,,,Died in New_Avengers_Vol_3_32 http://marvel.wikia.com/Sam_Alexander_(Earth-616)#,Sam Alexander,78,YES,MALE,,15-Feb,2015,0,Honorary,NO,,,,,,,,,,NA http://marvel.wikia.com/America_Chavez_(Earth-616)#,America Chavez,22,YES,FEMALE,,13-Jul,2013,2,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Loki_Laufeyson_(Ikol)_(Earth-616)#,Loki Laufeyson,77,NO,MALE,,13-Jul,2013,2,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/David_Alleyne_(Earth-616)#,David Alleyne,115,YES,MALE,,13-Sep,2013,2,Full,NO,,,,,,,,,,NA "http://marvel.wikia.com/Nicholas_Fury,_Jr._(Earth-616)#","Nicholas Fury, Jr., Marcus Johnson",77,YES,MALE,,13-Apr,2013,2,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Phillip_Coulson_(Earth-616)#,Phillip Coulson,69,YES,MALE,,13-Apr,2013,2,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Tony_Masters_(Earth-616)#,Tony Masters,173,NO,MALE,,13-May,2013,2,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Victor_Mancha_(Earth-616)#,Victor Mancha,75,YES,MALE,,13-Sep,2013,2,Full,YES,YES,,,,,,,,,Died in Avengers_A.I._Vol_1_4. Returned in Avengers_A.I._Vol_1_9. http://marvel.wikia.com/Monica_Chang_(Earth-616)#,Monica Chang,12,YES,FEMALE,,13-Sep,2013,2,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Doombot_(Avenger)_(Earth-616)#,,14,YES,MALE,,13-Sep,2013,2,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Alexis_(Earth-616)#,Alexis,13,YES,FEMALE,,13-Nov,2013,2,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Eric_Brooks_(Earth-616)#,Eric Brooks,198,YES,MALE,,13-Nov,2013,2,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Adam_Brashear_(Earth-616)#,Adam Brashear,29,YES,MALE,,14-Jan,2014,1,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Victor_Alvarez_(Earth-616)#,Victor Alvarez,45,YES,MALE,,14-Jan,2014,1,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Ava_Ayala_(Earth-616)#,Ava Ayala,49,YES,FEMALE,,14-Jan,2014,1,Full,NO,,,,,,,,,,NA http://marvel.wikia.com/Kaluu_(Earth-616)#,Kaluu,35,YES,MALE,,15-Jan,2015,0,Full,NO,,,,,,,,,,NA ================================================ FILE: docs/third-party/data-science/files/matplotlib/bmw-clean.csv ================================================ ,model,year,price,transmission,mileage,fuelType,tax,mpg,engineSize 0, 5 Series,2014,11200,Automatic,67068,Diesel,125,57.6,2.0 1, 6 Series,2018,27000,Automatic,14827,Petrol,145,42.8,2.0 2, 5 Series,2016,16000,Automatic,62794,Diesel,160,51.4,3.0 3, 1 Series,2017,12750,Automatic,26676,Diesel,145,72.4,1.5 4, 7 Series,2014,14500,Automatic,39554,Diesel,160,50.4,3.0 5, 5 Series,2016,14900,Automatic,35309,Diesel,125,60.1,2.0 6, 5 Series,2017,16000,Automatic,38538,Diesel,125,60.1,2.0 7, 2 Series,2018,16250,Manual,10401,Petrol,145,52.3,1.5 8, 4 Series,2017,14250,Manual,42668,Diesel,30,62.8,2.0 9, 5 Series,2016,14250,Automatic,36099,Diesel,20,68.9,2.0 10, X3,2017,15500,Manual,74907,Diesel,145,52.3,2.0 11, 1 Series,2017,11800,Manual,29840,Diesel,20,68.9,2.0 12, X3,2016,15500,Automatic,77823,Diesel,125,54.3,2.0 13, 2 Series,2015,10500,Manual,31469,Diesel,20,68.9,2.0 14, X3,2017,22000,Automatic,19057,Diesel,145,54.3,2.0 15, 3 Series,2017,16500,Manual,16570,Diesel,125,58.9,2.0 16, 3 Series,2017,14250,Automatic,55594,Other,135,148.7,2.0 17, 3 Series,2017,16000,Automatic,45456,Diesel,30,64.2,2.0 18, 1 Series,2017,15500,Automatic,22812,Diesel,20,68.9,1.5 19, 4 Series,2014,14000,Automatic,47348,Diesel,125,60.1,2.0 20, 1 Series,2015,9700,Automatic,75124,Diesel,20,70.6,2.0 21, 3 Series,2015,12600,Automatic,78957,Diesel,30,62.8,2.0 22, 3 Series,2016,15100,Automatic,29213,Diesel,30,64.2,2.0 23, 1 Series,2016,9400,Manual,44498,Diesel,0,83.1,1.5 24, 1 Series,2016,14300,Automatic,22461,Diesel,20,67.3,2.0 25, 1 Series,2016,11200,Manual,23005,Petrol,125,53.3,1.5 26, 3 Series,2019,17800,Automatic,22310,Diesel,145,64.2,2.0 27, 3 Series,2016,14400,Automatic,51994,Diesel,30,62.8,2.0 28, X5,2016,19750,Automatic,96213,Diesel,165,52.3,2.0 29, X3,2015,17400,Automatic,50316,Diesel,200,47.9,3.0 30, 4 Series,2017,16800,Automatic,44011,Diesel,150,65.7,2.0 31, X4,2017,23000,Automatic,34960,Diesel,150,54.3,2.0 33, 1 Series,2017,20500,Automatic,24029,Petrol,145,39.8,3.0 34, 1 Series,2017,11900,Manual,22920,Petrol,145,53.3,1.5 35, 2 Series,2017,13000,Automatic,61818,Other,0,141.2,1.5 36, 3 Series,2015,11500,Manual,59634,Diesel,125,61.4,2.0 37, 1 Series,2016,13500,Manual,29226,Diesel,30,62.8,2.0 38, X1,2017,18900,Automatic,33514,Diesel,145,60.1,2.0 39, 1 Series,2018,14600,Automatic,6522,Petrol,145,37.2,1.5 40, 3 Series,2016,15800,Manual,11231,Petrol,145,47.9,2.0 41, 1 Series,2016,11400,Manual,21591,Petrol,125,53.3,1.5 42, X3,2013,12000,Automatic,79972,Diesel,200,47.1,3.0 43, 1 Series,2018,17500,Automatic,14037,Petrol,145,54.3,1.5 44, 5 Series,2017,23500,Automatic,25034,Diesel,200,47.9,3.0 45, X1,2016,16700,Automatic,44478,Diesel,125,60.1,2.0 46, X3,2017,18000,Automatic,74852,Diesel,150,47.1,3.0 47, 4 Series,2016,15500,Automatic,45856,Diesel,30,65.7,2.0 48, 1 Series,2016,9200,Manual,48858,Diesel,0,83.1,1.5 49, 1 Series,2017,11200,Manual,40399,Diesel,145,68.9,2.0 50, 1 Series,2016,13200,Manual,17393,Diesel,30,65.7,2.0 51, 5 Series,2014,11000,Automatic,84816,Diesel,30,62.8,2.0 52, 3 Series,2017,18500,Automatic,27139,Diesel,160,51.4,3.0 53, 1 Series,2017,12750,Automatic,91563,Diesel,125,60.1,2.0 54, 3 Series,2014,14000,Manual,32139,Petrol,205,43.5,2.0 55, X1,2017,14000,Automatic,54120,Diesel,30,65.7,2.0 56, X1,2017,14000,Manual,20925,Diesel,150,68.9,2.0 57, 3 Series,2016,12750,Manual,30521,Diesel,20,68.9,2.0 58, X1,2018,18000,Manual,16066,Petrol,150,51.4,1.5 59, 1 Series,2015,11100,Manual,11524,Diesel,0,83.1,1.5 60, 1 Series,2017,12700,Manual,21809,Petrol,145,53.3,1.5 61, 1 Series,2017,14500,Automatic,27245,Diesel,145,68.9,2.0 62, 3 Series,2013,12750,Automatic,35736,Diesel,125,58.9,2.0 63, X1,2017,14100,Automatic,55782,Diesel,145,65.7,2.0 64, 1 Series,2016,10800,Manual,26404,Petrol,125,53.3,1.5 65, 1 Series,2016,13000,Manual,26631,Petrol,125,52.3,1.5 66, 1 Series,2016,12500,Manual,24111,Petrol,145,47.1,1.6 67, 3 Series,2017,13600,Manual,22763,Petrol,145,48.7,2.0 68, 3 Series,2016,12700,Manual,17385,Diesel,20,72.4,2.0 69, 5 Series,2016,15600,Automatic,35474,Diesel,125,60.1,2.0 70, 4 Series,2016,15250,Manual,16584,Diesel,30,62.8,2.0 71, 1 Series,2018,11700,Manual,30273,Diesel,145,53.3,1.5 72, 2 Series,2017,10900,Manual,62021,Diesel,145,65.7,2.0 73, 5 Series,2016,14400,Automatic,51552,Diesel,30,62.8,2.0 74, 1 Series,2016,11100,Manual,29508,Petrol,125,53.3,1.5 75, 1 Series,2017,11100,Manual,30865,Diesel,145,72.4,1.5 76, 5 Series,2014,12400,Automatic,46356,Diesel,30,62.8,2.0 77, 1 Series,2016,12800,Manual,18343,Diesel,20,70.6,1.5 78, 5 Series,2014,15000,Automatic,13858,Diesel,125,57.6,2.0 79, 2 Series,2017,12750,Manual,33752,Petrol,125,52.3,1.5 80, X3,2016,21750,Automatic,19083,Diesel,150,54.3,2.0 81, 2 Series,2017,13900,Automatic,46281,Petrol,125,51.4,1.5 82, X1,2017,14000,Automatic,54183,Diesel,150,65.7,2.0 83, X1,2017,15200,Automatic,36701,Diesel,30,65.7,2.0 84, 3 Series,2017,13500,Automatic,48082,Petrol,150,51.4,2.0 85, X1,2016,12150,Manual,77482,Diesel,20,68.9,2.0 86, 2 Series,2017,16000,Automatic,32389,Other,0,141.2,1.5 87, 5 Series,2016,14000,Automatic,39235,Diesel,30,62.8,2.0 88, 3 Series,2018,19490,Automatic,30703,Diesel,145,57.6,2.0 89, 1 Series,2015,15499,Semi-Auto,20000,Diesel,125,60.1,2.0 90, 2 Series,2017,13000,Semi-Auto,34971,Diesel,150,72.4,1.5 91, 1 Series,2014,10600,Semi-Auto,44900,Diesel,30,64.2,2.0 92, X3,2017,23000,Semi-Auto,16945,Diesel,150,54.3,2.0 93, M4,2016,29998,Semi-Auto,34209,Petrol,300,34.0,3.0 94, 1 Series,2017,12498,Manual,14138,Diesel,20,72.4,1.5 95, 1 Series,2015,7948,Manual,74375,Diesel,30,65.7,2.0 96, X1,2017,17800,Automatic,31238,Diesel,145,55.4,2.0 97, 3 Series,2015,13100,Manual,37204,Diesel,30,64.2,2.0 98, 1 Series,2017,11400,Manual,26265,Diesel,0,83.1,1.5 99, 3 Series,2016,14800,Automatic,38838,Diesel,125,57.6,2.0 100, X3,2016,15900,Automatic,59692,Diesel,145,54.3,2.0 101, 3 Series,2016,16300,Automatic,34623,Diesel,125,57.6,2.0 102, 3 Series,2017,14800,Manual,29968,Diesel,30,64.2,2.0 103, 3 Series,2017,19700,Automatic,27748,Diesel,200,49.6,3.0 104, 3 Series,2015,14450,Automatic,47288,Diesel,30,62.8,2.0 105, 5 Series,2016,13500,Automatic,64117,Diesel,30,65.7,2.0 106, 5 Series,2015,10900,Automatic,79563,Diesel,125,60.1,2.0 107, 3 Series,2016,12200,Manual,34842,Diesel,30,67.3,2.0 108, 2 Series,2016,10600,Manual,24313,Diesel,0,74.3,1.5 109, 2 Series,2015,9100,Manual,40789,Diesel,0,74.3,1.5 110, 3 Series,2017,12600,Automatic,66743,Diesel,30,67.3,2.0 111, 5 Series,2016,13600,Automatic,65612,Diesel,30,62.8,2.0 112, 1 Series,2016,11700,Manual,21390,Diesel,20,72.4,1.5 113, 3 Series,2017,12450,Automatic,72065,Diesel,20,70.6,2.0 114, 5 Series,2016,13500,Automatic,62444,Diesel,125,60.1,2.0 115, X3,2013,12750,Automatic,71558,Diesel,160,50.4,2.0 116, X1,2017,16700,Automatic,34666,Diesel,145,65.7,2.0 117, 1 Series,2016,11400,Manual,22920,Diesel,20,72.4,1.5 118, X5,2016,21000,Automatic,71626,Other,0,85.6,2.0 119, X1,2017,14700,Manual,38405,Diesel,145,68.9,2.0 120, 3 Series,2018,19000,Automatic,20681,Diesel,145,64.2,2.0 121, 3 Series,2017,15400,Automatic,20529,Diesel,145,65.7,2.0 122, X3,2016,19000,Automatic,42691,Diesel,145,54.3,2.0 123, 1 Series,2018,15000,Automatic,10058,Petrol,145,37.2,1.5 124, 3 Series,2016,17950,Automatic,40337,Diesel,145,53.3,3.0 125, 5 Series,2018,22600,Automatic,23195,Diesel,145,65.7,2.0 126, 1 Series,2017,13200,Manual,17117,Petrol,145,53.3,1.5 127, 3 Series,2017,12750,Manual,22153,Diesel,150,68.9,2.0 128, 3 Series,2015,9750,Manual,56038,Diesel,20,68.9,2.0 129, 3 Series,2017,10900,Automatic,78345,Diesel,0,74.3,2.0 130, X4,2016,21400,Automatic,31084,Diesel,145,54.3,2.0 131, 1 Series,2017,14600,Automatic,5615,Petrol,145,58.9,1.5 132, 3 Series,2017,12600,Automatic,55751,Petrol,150,51.4,1.5 133, X4,2017,22500,Automatic,35016,Diesel,150,54.3,2.0 134, 1 Series,2016,8000,Manual,81579,Diesel,0,83.1,1.5 135, X1,2017,14800,Manual,31518,Diesel,145,60.1,2.0 136, 1 Series,2016,9900,Manual,44008,Diesel,0,83.1,1.5 137, 2 Series,2016,9500,Manual,59509,Diesel,20,68.9,2.0 138, 3 Series,2017,17950,Automatic,43703,Other,140,134.5,2.0 139, 1 Series,2016,14200,Automatic,36858,Diesel,125,60.1,2.0 140, 1 Series,2016,12100,Automatic,25786,Diesel,0,74.3,2.0 141, 1 Series,2016,12700,Automatic,24592,Diesel,20,68.9,2.0 142, 1 Series,2016,8800,Manual,51002,Diesel,0,83.1,1.5 143, 1 Series,2017,15000,Automatic,26052,Diesel,145,68.9,2.0 144, 3 Series,2017,17100,Automatic,31528,Diesel,145,64.2,2.0 145, X3,2017,21750,Automatic,25776,Diesel,200,47.9,3.0 146, 1 Series,2016,13400,Manual,18055,Petrol,125,52.3,1.5 147, 3 Series,2014,9900,Automatic,63223,Diesel,20,68.9,2.0 148, 1 Series,2016,13700,Manual,8719,Petrol,125,52.3,1.5 149, 4 Series,2018,16900,Automatic,27133,Petrol,145,44.8,2.0 150, 5 Series,2018,21950,Automatic,21947,Diesel,150,68.9,2.0 151, X1,2013,8750,Manual,80625,Diesel,160,51.4,2.0 152, 3 Series,2017,17000,Automatic,31501,Other,0,134.5,2.0 153, 1 Series,2016,13750,Automatic,8707,Petrol,30,55.5,1.5 154, 1 Series,2017,12800,Manual,10861,Petrol,125,53.3,1.5 155, 4 Series,2017,16000,Manual,16359,Petrol,145,46.3,2.0 156, 4 Series,2017,16600,Automatic,46913,Diesel,145,65.7,2.0 157, 3 Series,2017,15100,Manual,37747,Diesel,125,60.1,2.0 158, 4 Series,2017,16750,Manual,24882,Petrol,145,46.3,2.0 159, 1 Series,2015,12450,Manual,24474,Petrol,125,52.3,1.5 160, 3 Series,2018,15700,Automatic,29394,Petrol,145,48.7,2.0 161, 5 Series,2016,12600,Manual,59528,Diesel,125,60.1,2.0 162, 2 Series,2016,14600,Manual,15577,Petrol,160,44.1,2.0 163, X1,2016,13700,Manual,52226,Diesel,20,68.9,2.0 164, 3 Series,2017,16900,Automatic,12330,Diesel,30,64.2,2.0 165, 4 Series,2015,15998,Semi-Auto,62943,Diesel,30,65.7,2.0 166, X1,2020,31498,Semi-Auto,1560,Diesel,145,60.1,2.0 167, 2 Series,2020,27998,Manual,1580,Petrol,150,43.5,1.5 168, X5,2020,54998,Semi-Auto,1500,Diesel,150,37.7,3.0 169, 3 Series,2014,11998,Manual,11545,Petrol,165,44.8,2.0 170, 2 Series,2020,25998,Automatic,3160,Hybrid,140,113.0,1.5 171, 1 Series,2020,31998,Semi-Auto,1560,Diesel,150,48.7,2.0 172, X2,2020,29998,Manual,1850,Diesel,150,49.6,2.0 173, X4,2019,33998,Semi-Auto,7272,Diesel,150,42.8,2.0 174, X4,2019,33998,Semi-Auto,7272,Diesel,150,42.8,2.0 175, 1 Series,2017,14995,Manual,19866,Diesel,30,65.7,2.0 176, 4 Series,2016,17995,Semi-Auto,22476,Petrol,145,48.7,2.0 177, 1 Series,2013,14498,Semi-Auto,42786,Petrol,235,37.7,3.0 178, 1 Series,2015,10998,Manual,42410,Diesel,30,65.7,2.0 179, 5 Series,2014,11998,Semi-Auto,60681,Diesel,125,57.6,2.0 180, X1,2016,14498,Manual,57717,Diesel,125,58.9,2.0 181, 3 Series,2017,16998,Semi-Auto,8096,Petrol,145,51.4,2.0 182, 1 Series,2015,11498,Manual,49151,Diesel,30,62.8,2.0 183, X6,2017,29498,Semi-Auto,40429,Diesel,200,47.1,3.0 184, M4,2016,31498,Semi-Auto,21107,Petrol,300,34.0,3.0 185, 1 Series,2016,19498,Semi-Auto,33043,Petrol,200,39.8,3.0 186, X1,2016,17998,Semi-Auto,50378,Diesel,125,57.6,2.0 187, 5 Series,2019,25998,Semi-Auto,11115,Diesel,145,65.7,2.0 188, X1,2013,8298,Manual,69020,Diesel,125,57.6,2.0 189, 8 Series,2019,61898,Semi-Auto,2650,Diesel,145,39.8,3.0 190, 1 Series,2014,13298,Manual,55834,Petrol,300,35.3,3.0 191, 3 Series,2019,21898,Semi-Auto,5761,Diesel,150,55.4,2.0 192, 1 Series,2017,11498,Semi-Auto,47110,Diesel,0,78.5,1.5 193, X3,2014,17495,Semi-Auto,54075,Diesel,145,54.3,2.0 194, 5 Series,2015,14998,Semi-Auto,45152,Diesel,30,62.8,2.0 195, 2 Series,2014,10498,Manual,52091,Diesel,125,58.9,2.0 196, 1 Series,2019,19998,Semi-Auto,4812,Petrol,145,47.9,2.0 197, X1,2016,16698,Semi-Auto,37272,Petrol,160,44.8,2.0 198, 3 Series,2019,27998,Semi-Auto,4250,Diesel,145,48.7,2.0 199, 5 Series,2018,27798,Semi-Auto,15711,Diesel,145,60.1,3.0 200, 1 Series,2016,18298,Manual,21236,Petrol,260,36.2,3.0 201, 1 Series,2017,14698,Semi-Auto,24008,Petrol,145,55.5,1.5 202, X1,2016,18498,Semi-Auto,25994,Diesel,145,55.4,2.0 203, X5,2015,27998,Automatic,24188,Diesel,200,47.1,3.0 204, X5,2015,21498,Automatic,59216,Diesel,200,47.9,3.0 205, 1 Series,2017,19498,Manual,21171,Petrol,260,36.2,3.0 206, 1 Series,2017,14498,Manual,24259,Petrol,145,52.3,1.5 207, 5 Series,2017,22998,Semi-Auto,19379,Diesel,145,65.7,2.0 208, 1 Series,2017,14498,Manual,20790,Diesel,145,70.6,1.5 209, 5 Series,2019,29898,Semi-Auto,2743,Diesel,145,60.1,2.0 210, 3 Series,2019,22998,Semi-Auto,6000,Petrol,145,48.7,2.0 211, 3 Series,2019,29998,Manual,3980,Diesel,145,53.3,2.0 212, 4 Series,2019,29898,Semi-Auto,101,Diesel,145,60.1,2.0 213, 5 Series,2017,20498,Semi-Auto,12725,Diesel,145,68.9,2.0 214, 3 Series,2019,27650,Semi-Auto,18200,Diesel,150,48.7,2.0 215, Z4,2016,18650,Semi-Auto,25300,Petrol,205,41.5,2.0 216, 4 Series,2018,22995,Automatic,7200,Petrol,145,48.7,2.0 217, X6,2018,36995,Semi-Auto,6100,Diesel,145,47.1,3.0 218, 5 Series,2018,26995,Automatic,6800,Diesel,145,68.9,2.0 219, 1 Series,2013,11995,Manual,31600,Diesel,125,57.6,2.0 220, 5 Series,2018,25995,Semi-Auto,8700,Diesel,145,49.6,2.0 221, X6,2016,29995,Automatic,43600,Diesel,200,44.8,3.0 222, 3 Series,2018,21495,Semi-Auto,16452,Petrol,150,48.7,2.0 223, 5 Series,2017,22998,Automatic,15838,Diesel,145,60.1,2.0 224, 5 Series,2019,34498,Automatic,6775,Diesel,145,51.4,3.0 225, 1 Series,2019,18498,Semi-Auto,11234,Diesel,145,68.9,2.0 226, 7 Series,2019,45898,Semi-Auto,5893,Diesel,145,44.1,3.0 227, X3,2019,37898,Semi-Auto,9781,Diesel,145,48.7,3.0 228, X5,2016,34498,Automatic,17303,Hybrid,0,85.6,2.0 229, 1 Series,2016,17998,Manual,25334,Petrol,300,35.3,3.0 230, 3 Series,2016,18498,Semi-Auto,36501,Diesel,145,53.3,3.0 231, 2 Series,2019,23998,Semi-Auto,2318,Petrol,145,47.9,2.0 232, X1,2017,21498,Semi-Auto,14418,Diesel,145,55.4,2.0 233, X1,2017,18500,Semi-Auto,12160,Diesel,145,65.7,2.0 234, X3,2018,31000,Semi-Auto,20290,Diesel,145,48.7,3.0 235, X1,2016,19500,Semi-Auto,13690,Diesel,125,57.6,2.0 236, X5,2017,34000,Automatic,22158,Diesel,205,47.1,3.0 237, X5,2015,28000,Automatic,36174,Diesel,205,47.1,3.0 238, 3 Series,2018,22000,Semi-Auto,30000,Diesel,150,53.3,3.0 239, 1 Series,2016,16000,Manual,40125,Petrol,305,35.3,3.0 240, 3 Series,2017,18000,Manual,20087,Petrol,165,44.8,2.0 241, X7,2020,78000,Semi-Auto,5000,Diesel,150,31.4,3.0 242, 3 Series,2018,22500,Semi-Auto,11150,Petrol,145,48.7,2.0 243, 1 Series,2018,15500,Manual,5827,Petrol,145,37.7,1.5 244, 4 Series,2019,29000,Semi-Auto,14000,Diesel,145,50.4,3.0 245, 4 Series,2019,24700,Semi-Auto,5196,Diesel,145,65.7,2.0 246, 2 Series,2019,24000,Semi-Auto,2500,Petrol,145,39.2,1.5 247, 1 Series,2018,16000,Manual,7000,Diesel,145,50.4,1.5 248, X3,2019,56000,Semi-Auto,26,Petrol,145,24.8,3.0 249, 1 Series,2019,32000,Semi-Auto,4493,Petrol,145,34.5,2.0 250, X1,2018,20000,Semi-Auto,10545,Diesel,145,60.1,2.0 251, X1,2017,22000,Semi-Auto,16500,Petrol,145,44.8,2.0 252, 3 Series,2016,16998,Semi-Auto,43695,Hybrid,0,134.5,2.0 253, X3,2015,17498,Semi-Auto,48867,Diesel,145,54.3,2.0 254, 1 Series,2017,15798,Semi-Auto,23157,Petrol,145,54.3,1.5 255, X1,2016,18998,Semi-Auto,30434,Diesel,125,57.6,2.0 256, 3 Series,2015,20000,Semi-Auto,39700,Diesel,160,50.4,3.0 257, 5 Series,2019,28000,Semi-Auto,5739,Diesel,145,62.8,2.0 258, X5,2017,41500,Automatic,18000,Diesel,145,42.8,3.0 259, 1 Series,2018,16000,Semi-Auto,24275,Diesel,145,68.9,1.5 260, 4 Series,2017,20800,Semi-Auto,14774,Diesel,125,58.9,2.0 261, 3 Series,2018,20500,Semi-Auto,12133,Petrol,145,48.7,2.0 262, 1 Series,2017,15500,Manual,15645,Petrol,125,52.3,1.5 263, X4,2016,25000,Semi-Auto,25085,Diesel,200,47.9,3.0 264, 1 Series,2017,21500,Semi-Auto,19486,Petrol,145,39.8,3.0 265, X2,2019,30000,Semi-Auto,5431,Diesel,145,48.7,2.0 266, 7 Series,2020,53000,Semi-Auto,6555,Diesel,145,42.2,3.0 267, 3 Series,2014,14000,Semi-Auto,73923,Diesel,160,52.3,3.0 268, 1 Series,2018,25990,Semi-Auto,6500,Petrol,150,32.5,3.0 269, X4,2018,32000,Semi-Auto,10920,Diesel,150,42.8,2.0 270, 3 Series,2019,24300,Semi-Auto,8000,Petrol,150,44.8,2.0 271, 5 Series,2019,33000,Semi-Auto,12250,Diesel,150,53.3,3.0 272, X3,2016,20500,Semi-Auto,37000,Diesel,145,54.3,2.0 273, 3 Series,2016,19000,Semi-Auto,40500,Diesel,145,53.3,3.0 274, 3 Series,2017,18000,Semi-Auto,33000,Diesel,145,60.1,2.0 275, M4,2020,51000,Semi-Auto,2000,Petrol,145,32.5,3.0 276, X3,2015,16500,Semi-Auto,48000,Diesel,145,54.3,2.0 277, 4 Series,2017,19800,Manual,17410,Petrol,150,40.9,2.0 278, 1 Series,2017,13500,Manual,25975,Petrol,145,53.3,1.5 279, 1 Series,2019,18500,Semi-Auto,12054,Petrol,150,54.3,1.5 280, 1 Series,2014,9300,Manual,51203,Diesel,30,65.7,2.0 281, X5,2019,50000,Semi-Auto,5145,Diesel,150,37.7,3.0 282, 1 Series,2017,11800,Manual,23274,Diesel,20,72.4,1.5 283, 4 Series,2018,22000,Semi-Auto,10948,Diesel,145,60.1,2.0 284, 2 Series,2019,27500,Semi-Auto,7000,Petrol,145,38.2,3.0 285, 5 Series,2019,28000,Semi-Auto,16000,Diesel,145,60.1,3.0 286, 2 Series,2020,29000,Manual,5550,Petrol,145,43.5,1.5 287, 3 Series,2014,16800,Semi-Auto,50687,Diesel,160,52.3,3.0 288, 3 Series,2013,15500,Semi-Auto,46500,Diesel,150,55.4,3.0 289, X1,2016,19300,Semi-Auto,25300,Diesel,125,60.1,2.0 290, 1 Series,2017,16998,Semi-Auto,12458,Diesel,30,62.8,2.0 291, 1 Series,2017,21498,Semi-Auto,21200,Petrol,200,39.8,3.0 292, 4 Series,2016,18998,Semi-Auto,20151,Diesel,145,53.3,3.0 293, X1,2017,18498,Manual,13278,Diesel,125,58.9,2.0 294, 5 Series,2019,27000,Semi-Auto,9000,Petrol,145,48.7,2.0 295, 2 Series,2018,18000,Semi-Auto,13174,Diesel,145,49.6,2.0 296, 7 Series,2016,26000,Semi-Auto,39085,Diesel,145,54.3,3.0 297, 3 Series,2017,25500,Semi-Auto,14834,Diesel,145,51.4,3.0 298, 3 Series,2016,18000,Semi-Auto,15088,Diesel,145,55.4,3.0 299, 1 Series,2017,16800,Semi-Auto,16761,Diesel,145,67.3,2.0 300, 3 Series,2018,21300,Semi-Auto,18564,Diesel,145,60.1,2.0 301, X2,2019,29000,Semi-Auto,1418,Petrol,145,36.2,2.0 302, 3 Series,2019,34000,Semi-Auto,5525,Diesel,145,50.4,2.0 303, 3 Series,2017,24000,Semi-Auto,15338,Diesel,145,49.6,3.0 304, 3 Series,2013,14990,Semi-Auto,35500,Diesel,145,55.4,2.0 305, 5 Series,2017,30000,Semi-Auto,11086,Diesel,145,53.3,3.0 306, 1 Series,2018,15800,Semi-Auto,11132,Petrol,145,55.5,1.5 307, 1 Series,2018,16500,Semi-Auto,7656,Petrol,145,37.2,1.5 308, X3,2015,19500,Semi-Auto,41567,Diesel,145,54.3,2.0 309, 5 Series,2019,40000,Semi-Auto,1034,Petrol,145,39.2,3.0 310, 1 Series,2017,21800,Semi-Auto,20294,Petrol,200,39.8,3.0 311, 3 Series,2017,20998,Semi-Auto,30422,Diesel,145,51.4,3.0 312, 3 Series,2017,19698,Semi-Auto,20313,Diesel,145,56.5,3.0 313, 3 Series,2016,21498,Semi-Auto,28775,Diesel,160,51.4,3.0 314, 3 Series,2015,17200,Semi-Auto,6147,Petrol,145,47.9,2.0 315, X5,2013,24000,Automatic,45150,Diesel,200,45.6,3.0 316, 1 Series,2019,26000,Manual,2073,Diesel,145,57.7,1.5 317, 4 Series,2020,27000,Semi-Auto,25,Petrol,145,48.7,2.0 318, 4 Series,2020,27500,Semi-Auto,25,Diesel,145,60.1,2.0 319, X5,2019,52000,Semi-Auto,6500,Diesel,145,37.7,3.0 320, 4 Series,2019,32000,Semi-Auto,4025,Diesel,145,50.4,3.0 321, 2 Series,2015,10498,Manual,27221,Diesel,0,74.3,1.5 322, 3 Series,2013,9985,Manual,75561,Diesel,20,68.9,2.0 323, X4,2015,19485,Manual,53755,Diesel,160,52.3,2.0 324, 3 Series,2013,9965,Semi-Auto,95043,Diesel,30,62.8,2.0 325, X1,2014,10985,Semi-Auto,56952,Diesel,160,52.3,2.0 326, 1 Series,2017,13489,Semi-Auto,59066,Diesel,20,72.4,1.5 327, 3 Series,2016,13994,Semi-Auto,46889,Diesel,30,67.3,2.0 328, 5 Series,2019,35950,Semi-Auto,5137,Diesel,145,51.4,3.0 329, 4 Series,2019,25490,Semi-Auto,8794,Diesel,145,60.1,2.0 330, 5 Series,2019,34900,Semi-Auto,9854,Diesel,145,53.3,3.0 331, 7 Series,2018,42000,Semi-Auto,7123,Diesel,145,52.3,3.0 332, 1 Series,2014,12000,Manual,41500,Diesel,125,57.6,2.0 333, 1 Series,2016,14000,Manual,24678,Diesel,30,65.7,2.0 334, M4,2019,48000,Semi-Auto,2258,Petrol,145,34.0,3.0 335, 2 Series,2019,23950,Semi-Auto,4413,Diesel,145,46.3,2.0 336, 4 Series,2019,26550,Semi-Auto,7292,Diesel,145,58.9,2.0 337, X1,2016,18000,Semi-Auto,46354,Diesel,125,57.6,2.0 338, 6 Series,2018,27990,Semi-Auto,21525,Diesel,150,49.6,3.0 339, 1 Series,2017,13450,Manual,15663,Petrol,150,53.3,1.5 340, X5,2017,34990,Automatic,18000,Diesel,200,47.1,3.0 341, 4 Series,2020,29500,Semi-Auto,17,Diesel,145,60.1,2.0 342, 5 Series,2019,28500,Semi-Auto,3816,Diesel,145,62.8,2.0 343, 5 Series,2019,26000,Semi-Auto,4405,Petrol,145,48.7,2.0 344, X2,2019,27000,Manual,4825,Diesel,145,49.6,2.0 345, 4 Series,2019,27000,Semi-Auto,4406,Diesel,145,60.1,2.0 346, 3 Series,2019,33000,Semi-Auto,11564,Diesel,145,49.6,2.0 347, X2,2019,32000,Semi-Auto,10,Petrol,145,34.0,2.0 348, 5 Series,2016,14495,Semi-Auto,51700,Diesel,30,65.7,2.0 349, 3 Series,2013,9498,Semi-Auto,55701,Petrol,145,47.9,1.6 350, 1 Series,2018,23498,Semi-Auto,11131,Petrol,145,39.8,3.0 351, 3 Series,2020,51000,Semi-Auto,5000,Diesel,150,43.5,3.0 352, X3,2016,22000,Semi-Auto,25000,Diesel,150,54.3,2.0 353, 1 Series,2017,23000,Semi-Auto,18100,Petrol,150,39.8,3.0 354, X6,2018,39990,Semi-Auto,7427,Diesel,145,40.9,3.0 355, 3 Series,2017,17000,Semi-Auto,43362,Diesel,145,56.5,3.0 356, 1 Series,2017,11990,Manual,18435,Petrol,125,53.3,1.5 357, 1 Series,2019,16500,Semi-Auto,5000,Diesel,145,72.4,1.5 358, X4,2018,40000,Semi-Auto,4135,Diesel,145,37.2,3.0 359, 1 Series,2019,27000,Semi-Auto,1214,Diesel,145,51.4,2.0 360, M5,2019,72000,Semi-Auto,3545,Petrol,145,24.1,4.4 361, 3 Series,2017,19650,Semi-Auto,43267,Diesel,145,62.8,2.0 362, X5,2020,60990,Semi-Auto,3500,Diesel,145,33.6,3.0 363, 4 Series,2019,22500,Semi-Auto,5623,Diesel,145,65.7,2.0 364, M4,2018,43500,Semi-Auto,2577,Petrol,150,34.0,3.0 365, 2 Series,2015,18700,Semi-Auto,43617,Petrol,265,37.2,3.0 366, X5,2015,26000,Automatic,52936,Diesel,205,47.1,3.0 367, 7 Series,2017,34000,Semi-Auto,25000,Diesel,150,53.3,3.0 368, 3 Series,2014,15000,Semi-Auto,56000,Diesel,150,55.4,2.0 369, 3 Series,2017,18300,Semi-Auto,20000,Diesel,150,62.8,2.0 370, 4 Series,2015,15990,Semi-Auto,87597,Diesel,160,51.4,3.0 371, 3 Series,2013,9995,Manual,74449,Petrol,200,41.5,2.0 372, X2,2019,23498,Semi-Auto,3241,Petrol,150,40.4,2.0 373, 3 Series,2019,34450,Semi-Auto,3500,Diesel,145,45.6,3.0 374, X7,2019,67400,Semi-Auto,5600,Diesel,150,33.6,3.0 375, 7 Series,2019,47990,Semi-Auto,7780,Petrol,145,34.5,3.0 376, X3,2020,35900,Semi-Auto,4500,Diesel,150,54.3,2.0 377, 4 Series,2016,18498,Semi-Auto,24188,Diesel,145,55.4,3.0 378, X1,2017,18998,Semi-Auto,26939,Diesel,145,65.7,2.0 379, X1,2018,16995,Semi-Auto,17276,Petrol,150,46.3,1.5 380, 3 Series,2017,20998,Semi-Auto,26252,Diesel,145,51.4,3.0 381, 3 Series,2017,15998,Semi-Auto,19675,Petrol,125,51.4,2.0 382, 1 Series,2019,29000,Semi-Auto,100,Diesel,150,48.7,2.0 383, X5,2019,51000,Semi-Auto,6000,Diesel,150,37.7,3.0 384, X5,2017,29945,Automatic,30207,Diesel,200,47.1,3.0 385, 5 Series,2018,24595,Semi-Auto,28502,Diesel,145,65.7,2.0 386, 5 Series,2014,13990,Semi-Auto,73837,Diesel,160,51.4,3.0 387, 3 Series,2017,14990,Semi-Auto,48604,Diesel,30,67.3,2.0 388, 5 Series,2017,22990,Semi-Auto,33492,Diesel,145,60.1,2.0 389, 5 Series,2013,10495,Semi-Auto,83380,Diesel,125,57.6,2.0 390, 4 Series,2018,22595,Semi-Auto,18937,Petrol,145,48.7,2.0 391, 3 Series,2019,27995,Semi-Auto,2460,Diesel,145,53.3,2.0 392, X1,2016,17298,Semi-Auto,48697,Diesel,125,57.6,2.0 393, X1,2018,16995,Semi-Auto,17276,Petrol,150,46.3,1.5 394, X1,2017,17995,Manual,23692,Diesel,125,58.9,2.0 395, 5 Series,2017,21998,Semi-Auto,25260,Diesel,145,60.1,2.0 396, X1,2017,16698,Semi-Auto,25291,Diesel,30,65.7,2.0 397, 1 Series,2015,12298,Semi-Auto,37634,Diesel,30,64.2,2.0 398, 1 Series,2017,13798,Manual,34446,Diesel,145,65.7,2.0 399, 1 Series,2018,14000,Manual,19995,Petrol,145,37.7,1.5 400, 4 Series,2018,24000,Manual,24848,Petrol,145,36.7,3.0 401, M4,2020,50000,Semi-Auto,700,Petrol,145,34.0,3.0 402, 4 Series,2018,21500,Semi-Auto,4038,Petrol,150,45.6,2.0 403, 3 Series,2016,22000,Semi-Auto,31250,Diesel,165,51.4,3.0 404, 5 Series,2015,16000,Semi-Auto,64194,Diesel,165,51.4,3.0 405, 3 Series,2015,18500,Semi-Auto,38218,Diesel,165,51.4,3.0 406, 3 Series,2019,28000,Automatic,6148,Diesel,145,52.3,2.0 407, 3 Series,2018,27000,Automatic,13430,Diesel,145,49.6,3.0 408, X3,2015,17000,Semi-Auto,35500,Diesel,200,47.9,3.0 409, X3,2014,14495,Semi-Auto,56787,Diesel,150,54.3,2.0 410, 1 Series,2016,16200,Semi-Auto,13369,Diesel,20,68.9,1.5 411, 2 Series,2018,19000,Semi-Auto,3764,Petrol,145,53.3,1.5 412, 4 Series,2017,17495,Manual,13471,Petrol,145,46.3,2.0 413, i8,2016,48998,Automatic,10087,Hybrid,0,134.5,1.5 414, X4,2018,36000,Semi-Auto,5000,Diesel,145,40.4,3.0 415, M4,2020,43000,Semi-Auto,40,Petrol,145,34.0,3.0 416, 3 Series,2020,40000,Semi-Auto,2000,Diesel,145,47.9,3.0 417, 7 Series,2019,49000,Semi-Auto,7970,Diesel,145,44.8,3.0 418, M2,2016,31000,Semi-Auto,14712,Petrol,260,35.8,3.0 419, X7,2019,67000,Semi-Auto,4900,Diesel,145,33.6,3.0 420, 5 Series,2018,30500,Semi-Auto,9671,Petrol,145,39.2,3.0 421, 2 Series,2019,21500,Semi-Auto,2070,Petrol,145,40.9,1.5 422, 3 Series,2016,19500,Semi-Auto,49104,Diesel,160,51.4,3.0 423, 1 Series,2016,19000,Semi-Auto,42792,Petrol,200,39.8,3.0 424, 2 Series,2019,30000,Semi-Auto,5555,Petrol,145,38.2,3.0 425, 5 Series,2019,42500,Semi-Auto,3555,Diesel,145,51.4,3.0 426, 3 Series,2016,22500,Semi-Auto,16890,Diesel,160,51.4,3.0 427, 2 Series,2020,36000,Semi-Auto,5550,Petrol,145,36.2,2.0 428, 3 Series,2018,25000,Semi-Auto,23555,Diesel,145,49.6,3.0 429, 2 Series,2018,14998,Manual,2683,Petrol,145,44.1,1.5 430, X1,2017,16998,Semi-Auto,46622,Diesel,125,57.6,2.0 431, 3 Series,2016,13298,Semi-Auto,46392,Diesel,0,74.3,2.0 432, 3 Series,2013,12298,Semi-Auto,73845,Diesel,145,54.3,3.0 433, 5 Series,2018,23998,Semi-Auto,14052,Diesel,145,62.8,2.0 434, 3 Series,2019,26498,Semi-Auto,21165,Diesel,145,48.7,2.0 435, 4 Series,2019,21998,Semi-Auto,19856,Diesel,145,65.7,2.0 436, 3 Series,2019,23298,Semi-Auto,11974,Diesel,145,54.3,2.0 437, 1 Series,2015,13500,Manual,31652,Diesel,30,62.8,2.0 438, 2 Series,2018,17500,Automatic,6079,Diesel,145,51.4,2.0 439, 1 Series,2019,16600,Manual,7000,Diesel,145,68.9,2.0 440, 2 Series,2016,16450,Semi-Auto,10250,Diesel,30,62.8,2.0 441, X5,2019,49000,Semi-Auto,4860,Diesel,145,37.7,3.0 442, X1,2019,25500,Automatic,2984,Diesel,145,60.1,2.0 443, 3 Series,2016,14000,Manual,30679,Diesel,125,62.8,2.0 444, 6 Series,2017,27500,Semi-Auto,21083,Diesel,145,51.4,3.0 445, 1 Series,2017,13500,Manual,16423,Diesel,150,72.4,1.5 446, 4 Series,2019,25000,Manual,4000,Diesel,150,55.4,2.0 447, 3 Series,2019,32000,Semi-Auto,15114,Diesel,150,49.6,3.0 448, 5 Series,2017,30000,Semi-Auto,9750,Diesel,150,56.5,3.0 449, 5 Series,2017,21900,Semi-Auto,38649,Diesel,145,65.7,2.0 450, 3 Series,2019,34900,Semi-Auto,4600,Diesel,145,49.6,2.0 451, 1 Series,2019,22700,Semi-Auto,14822,Diesel,145,60.1,2.0 452, X2,2018,23900,Semi-Auto,12887,Diesel,145,61.4,2.0 453, 4 Series,2019,27450,Semi-Auto,8142,Diesel,145,52.3,3.0 454, X5,2019,46600,Semi-Auto,9584,Diesel,145,37.7,3.0 455, 4 Series,2019,26800,Semi-Auto,7667,Diesel,145,58.9,2.0 456, 1 Series,2015,16450,Semi-Auto,25499,Diesel,125,60.1,2.0 457, X1,2019,25000,Manual,3715,Diesel,145,68.9,2.0 458, X2,2019,27000,Automatic,49,Diesel,145,50.4,2.0 459, 3 Series,2019,32000,Automatic,5557,Diesel,145,49.6,2.0 460, 2 Series,2019,21000,Semi-Auto,2380,Petrol,145,40.9,1.5 461, 2 Series,2019,21000,Manual,3078,Petrol,145,39.8,1.5 462, 2 Series,2019,21000,Manual,1251,Petrol,145,42.8,1.5 463, 2 Series,2019,23500,Semi-Auto,2664,Petrol,145,50.4,2.0 464, 2 Series,2019,20500,Manual,1612,Petrol,145,42.8,1.5 465, 4 Series,2018,20500,Semi-Auto,6668,Diesel,145,65.7,2.0 466, 2 Series,2019,20500,Automatic,6679,Petrol,145,47.9,2.0 467, 2 Series,2019,20500,Automatic,1689,Petrol,145,50.4,2.0 468, 5 Series,2017,24998,Semi-Auto,24769,Diesel,145,60.1,3.0 469, 4 Series,2018,20990,Semi-Auto,26706,Diesel,150,58.9,2.0 470, X3,2016,18990,Semi-Auto,12996,Diesel,150,54.3,2.0 471, 2 Series,2019,19500,Manual,1501,Petrol,145,42.8,1.5 472, 2 Series,2019,23500,Semi-Auto,2164,Diesel,145,49.6,2.0 473, M4,2020,48000,Semi-Auto,30,Petrol,145,34.0,3.0 474, 5 Series,2019,29500,Automatic,3388,Diesel,145,60.1,3.0 475, 2 Series,2015,12000,Manual,28410,Petrol,30,57.6,1.5 476, 2 Series,2019,24000,Automatic,477,Petrol,145,47.9,2.0 477, 5 Series,2019,30000,Automatic,10654,Diesel,145,60.1,2.0 478, X2,2019,29000,Automatic,2472,Diesel,145,48.7,2.0 479, 4 Series,2019,25450,Semi-Auto,1000,Diesel,150,60.1,2.0 480, X2,2018,24490,Semi-Auto,7100,Diesel,150,61.4,2.0 481, X1,2014,12490,Semi-Auto,49400,Diesel,165,51.4,2.0 482, 2 Series,2019,19750,Semi-Auto,9014,Diesel,145,49.6,2.0 483, 5 Series,2017,21900,Semi-Auto,23291,Diesel,145,65.7,2.0 484, X1,2018,21500,Semi-Auto,12710,Petrol,145,44.8,2.0 485, 3 Series,2018,27500,Semi-Auto,9329,Diesel,145,51.4,3.0 486, X5,2018,34756,Automatic,20630,Diesel,145,47.1,3.0 487, 1 Series,2017,21514,Semi-Auto,15907,Petrol,150,39.8,3.0 488, X1,2016,18998,Semi-Auto,24347,Diesel,150,55.4,2.0 489, 1 Series,2019,22000,Manual,2574,Petrol,145,44.1,1.5 490, 1 Series,2019,21000,Manual,1906,Petrol,145,44.1,1.5 491, 3 Series,2019,31000,Semi-Auto,1397,Diesel,145,50.4,2.0 492, X5,2014,25000,Automatic,38389,Diesel,200,47.1,3.0 493, 5 Series,2018,23500,Semi-Auto,23650,Diesel,145,53.3,3.0 494, 1 Series,2013,10500,Manual,48255,Diesel,30,62.8,2.0 495, 3 Series,2013,15000,Semi-Auto,21940,Diesel,125,58.9,2.0 496, X4,2020,43000,Semi-Auto,857,Diesel,145,40.9,3.0 497, 3 Series,2018,17998,Semi-Auto,19950,Diesel,145,65.7,2.0 498, 1 Series,2016,15498,Semi-Auto,15621,Diesel,30,65.7,2.0 499, 1 Series,2019,29398,Semi-Auto,9983,Petrol,145,39.8,3.0 500, 3 Series,2013,10420,Manual,53352,Petrol,200,43.5,2.0 501, 2 Series,2016,17998,Semi-Auto,28099,Diesel,145,55.4,2.0 502, X1,2016,18998,Semi-Auto,20874,Diesel,150,55.4,2.0 503, 1 Series,2016,14398,Semi-Auto,21037,Diesel,20,68.9,1.5 504, 1 Series,2017,18998,Manual,17888,Petrol,260,36.2,3.0 505, 5 Series,2019,26498,Semi-Auto,16466,Diesel,145,60.1,2.0 506, 3 Series,2015,12998,Semi-Auto,25243,Diesel,30,62.8,2.0 507, X1,2016,15998,Manual,45484,Diesel,125,58.9,2.0 508, 3 Series,2019,27998,Semi-Auto,9624,Diesel,150,52.3,2.0 509, 1 Series,2016,14998,Manual,23879,Diesel,30,62.8,2.0 510, X1,2017,19998,Semi-Auto,17922,Diesel,145,55.4,2.0 511, 1 Series,2015,13998,Semi-Auto,38279,Diesel,125,60.1,2.0 512, 3 Series,2015,11998,Manual,40325,Petrol,125,52.3,1.5 513, 5 Series,2017,21498,Semi-Auto,34296,Diesel,145,65.7,2.0 514, 3 Series,2017,19698,Semi-Auto,44075,Diesel,145,51.4,3.0 515, 3 Series,2017,21498,Semi-Auto,13102,Diesel,145,51.4,3.0 516, 3 Series,2016,11998,Manual,49669,Diesel,30,67.3,2.0 517, 3 Series,2017,20498,Semi-Auto,7926,Diesel,145,56.5,3.0 518, 3 Series,2017,18298,Semi-Auto,33384,Hybrid,0,134.5,2.0 519, 3 Series,2016,13998,Semi-Auto,38417,Diesel,30,67.3,2.0 520, 1 Series,2019,19298,Semi-Auto,10040,Diesel,145,67.3,2.0 521, 3 Series,2019,26498,Semi-Auto,13579,Diesel,145,48.7,2.0 522, 3 Series,2013,10998,Semi-Auto,74712,Petrol,205,42.8,2.0 523, 3 Series,2013,10998,Manual,72315,Diesel,30,61.4,2.0 524, 3 Series,2013,10998,Manual,44602,Diesel,30,61.4,2.0 525, X5,2013,16498,Automatic,56003,Diesel,300,38.2,3.0 526, 5 Series,2015,13498,Semi-Auto,88333,Diesel,30,62.8,2.0 527, 1 Series,2019,21998,Semi-Auto,4061,Petrol,145,54.3,1.5 528, 2 Series,2017,17998,Semi-Auto,27997,Diesel,145,57.6,2.0 529, 1 Series,2013,7998,Manual,74772,Diesel,30,65.7,2.0 530, X5,2019,45995,Semi-Auto,16644,Diesel,150,37.7,3.0 531, X1,2016,19498,Semi-Auto,19850,Diesel,145,55.4,2.0 532, 4 Series,2018,21498,Semi-Auto,8441,Petrol,150,48.7,2.0 533, 1 Series,2013,8298,Manual,60741,Diesel,30,65.7,2.0 534, 3 Series,2019,23498,Semi-Auto,10629,Diesel,145,57.7,2.0 535, 3 Series,2016,13798,Semi-Auto,46673,Diesel,0,74.3,2.0 536, 1 Series,2014,16998,Semi-Auto,30954,Petrol,235,37.7,3.0 537, 1 Series,2015,12498,Semi-Auto,14501,Diesel,0,78.5,1.5 538, 1 Series,2018,17498,Manual,10374,Diesel,145,49.6,2.0 539, 1 Series,2016,14498,Manual,24382,Diesel,20,70.6,1.5 540, 3 Series,2017,18998,Semi-Auto,28332,Hybrid,0,134.5,2.0 541, 3 Series,2019,20498,Semi-Auto,6160,Petrol,150,44.8,2.0 542, 3 Series,2019,23298,Semi-Auto,11326,Diesel,145,54.3,2.0 543, 3 Series,2017,21998,Semi-Auto,21784,Diesel,145,56.5,3.0 544, 1 Series,2013,6998,Manual,73603,Diesel,30,62.8,2.0 545, 3 Series,2016,11298,Manual,64308,Diesel,20,68.9,2.0 546, X1,2016,19498,Semi-Auto,20153,Diesel,145,55.4,2.0 547, 3 Series,2017,19498,Semi-Auto,56785,Diesel,145,51.4,3.0 548, 5 Series,2014,18750,Semi-Auto,34219,Diesel,200,47.9,3.0 549, X3,2014,15795,Semi-Auto,63000,Diesel,145,54.3,2.0 550, 3 Series,2015,13995,Semi-Auto,46316,Petrol,160,46.3,2.0 551, X1,2017,17998,Semi-Auto,33534,Diesel,150,55.4,2.0 552, 3 Series,2016,16295,Manual,16604,Diesel,30,64.2,2.0 553, 3 Series,2017,17695,Semi-Auto,24909,Diesel,145,62.8,2.0 554, 1 Series,2018,16998,Manual,19154,Diesel,150,49.6,2.0 555, 2 Series,2020,30000,Semi-Auto,914,Petrol,145,42.2,1.5 556, 8 Series,2020,63000,Semi-Auto,3000,Diesel,145,40.4,3.0 557, X3,2013,14000,Semi-Auto,47111,Diesel,160,50.4,2.0 558, X3,2016,21000,Semi-Auto,24002,Diesel,145,54.3,2.0 559, 1 Series,2020,22000,Manual,2000,Petrol,145,44.1,1.5 560, 1 Series,2014,15000,Semi-Auto,38689,Petrol,235,37.7,3.0 561, X4,2020,45500,Semi-Auto,1608,Petrol,145,26.9,3.0 562, 3 Series,2015,16998,Semi-Auto,31915,Diesel,145,53.3,3.0 563, 4 Series,2017,19498,Semi-Auto,28912,Diesel,145,65.7,2.0 564, 5 Series,2017,20998,Semi-Auto,21068,Diesel,145,62.8,2.0 565, 3 Series,2017,17998,Semi-Auto,34118,Diesel,150,60.1,2.0 566, 3 Series,2016,17498,Semi-Auto,27146,Diesel,150,56.5,3.0 567, 4 Series,2017,17410,Automatic,37842,Diesel,145,65.7,2.0 568, 2 Series,2016,18498,Semi-Auto,18245,Diesel,145,55.4,2.0 569, 3 Series,2018,22998,Semi-Auto,16360,Diesel,145,57.7,2.0 570, 3 Series,2019,26698,Semi-Auto,8273,Diesel,145,48.7,2.0 571, 4 Series,2016,14998,Manual,24711,Petrol,160,46.3,2.0 572, 3 Series,2016,14995,Manual,43400,Diesel,125,58.9,2.0 573, 3 Series,2019,23498,Semi-Auto,7516,Diesel,145,54.3,2.0 574, 4 Series,2019,21998,Semi-Auto,17740,Diesel,145,65.7,2.0 575, 3 Series,2019,27298,Semi-Auto,8319,Diesel,145,48.7,2.0 576, 3 Series,2019,26498,Semi-Auto,18526,Diesel,145,48.7,2.0 577, X5,2016,24998,Automatic,83269,Diesel,200,47.1,3.0 578, 1 Series,2019,14698,Manual,14847,Diesel,150,72.4,1.5 579, X1,2017,17998,Automatic,33358,Diesel,125,60.1,2.0 580, 1 Series,2018,17498,Semi-Auto,17063,Petrol,145,36.7,2.0 581, 1 Series,2013,8998,Manual,34750,Diesel,30,65.7,2.0 582, X5,2014,27995,Automatic,43946,Diesel,265,42.2,3.0 583, X1,2016,19998,Semi-Auto,21621,Diesel,145,55.4,2.0 584, 5 Series,2018,27498,Semi-Auto,13197,Hybrid,140,156.9,2.0 585, 3 Series,2015,12498,Semi-Auto,87795,Diesel,125,60.1,2.0 586, 1 Series,2016,13998,Semi-Auto,50525,Diesel,30,65.7,2.0 587, 1 Series,2016,13498,Semi-Auto,42001,Diesel,20,68.9,1.5 588, 1 Series,2014,11998,Manual,20990,Diesel,30,64.2,2.0 589, 1 Series,2014,10998,Automatic,56379,Petrol,145,48.7,1.6 590, 3 Series,2015,12498,Manual,50730,Diesel,20,68.9,2.0 591, X1,2016,17698,Manual,29018,Diesel,125,58.9,2.0 592, 3 Series,2013,9998,Semi-Auto,46121,Diesel,30,62.8,2.0 593, 4 Series,2017,19498,Semi-Auto,16463,Diesel,145,65.7,2.0 594, 3 Series,2016,17498,Semi-Auto,39239,Hybrid,0,134.5,2.0 595, 5 Series,2018,24498,Semi-Auto,15032,Diesel,145,68.9,2.0 596, X1,2016,18498,Semi-Auto,28813,Diesel,145,55.4,2.0 597, 3 Series,2019,22998,Semi-Auto,6394,Diesel,150,54.3,2.0 598, X5,2019,58898,Semi-Auto,100,Diesel,150,37.7,3.0 599, 3 Series,2017,20998,Semi-Auto,14997,Diesel,145,51.4,3.0 600, 2 Series,2016,15498,Semi-Auto,14313,Petrol,125,51.4,1.5 601, 5 Series,2014,9998,Semi-Auto,82681,Diesel,30,62.8,2.0 602, 1 Series,2017,12498,Manual,37919,Diesel,20,72.4,1.5 603, 1 Series,2016,12498,Manual,38276,Diesel,20,70.6,1.5 604, 3 Series,2017,14498,Manual,21105,Petrol,150,48.7,2.0 605, 3 Series,2019,27498,Semi-Auto,9091,Diesel,150,52.3,2.0 606, 2 Series,2017,16498,Semi-Auto,25405,Diesel,150,64.2,2.0 607, 1 Series,2017,21498,Semi-Auto,23699,Petrol,200,39.8,3.0 608, 3 Series,2019,21998,Semi-Auto,7237,Diesel,145,60.1,2.0 609, 3 Series,2019,26998,Semi-Auto,15002,Diesel,145,48.7,2.0 610, 5 Series,2018,25998,Semi-Auto,19479,Diesel,145,46.3,2.0 611, 3 Series,2019,22898,Automatic,12249,Diesel,145,62.8,2.0 612, 1 Series,2019,17498,Automatic,10565,Diesel,145,72.4,1.5 613, 3 Series,2018,20998,Semi-Auto,28180,Petrol,145,48.7,2.0 614, 1 Series,2017,15498,Semi-Auto,40228,Diesel,125,60.1,2.0 615, 5 Series,2015,11450,Manual,60529,Diesel,30,65.7,2.0 616, X6,2016,30998,Semi-Auto,26782,Diesel,200,44.8,3.0 617, X2,2019,21998,Manual,5687,Petrol,150,41.5,1.5 618, 6 Series,2015,17498,Semi-Auto,51412,Diesel,160,49.6,3.0 619, 3 Series,2016,18998,Semi-Auto,28762,Diesel,160,51.4,3.0 620, 1 Series,2016,14998,Automatic,30300,Diesel,30,65.7,2.0 622, 3 Series,2017,15998,Semi-Auto,16943,Petrol,150,51.4,2.0 623, 3 Series,2017,14998,Manual,13309,Petrol,150,48.7,2.0 624, 3 Series,2019,26498,Semi-Auto,7098,Petrol,150,41.5,2.0 625, 4 Series,2019,31898,Semi-Auto,4125,Diesel,145,50.4,3.0 626, M4,2016,29998,Semi-Auto,26363,Petrol,305,34.0,3.0 627, 2 Series,2016,19999,Semi-Auto,29139,Petrol,205,39.8,3.0 628, 3 Series,2016,17998,Semi-Auto,44888,Diesel,160,51.4,3.0 629, 3 Series,2016,18998,Semi-Auto,19125,Diesel,150,53.3,3.0 630, 2 Series,2017,15998,Manual,12248,Petrol,125,53.3,1.5 631, 2 Series,2015,9698,Manual,60891,Diesel,20,68.9,2.0 632, 2 Series,2018,18498,Semi-Auto,7202,Petrol,145,38.2,2.0 633, 5 Series,2017,22498,Semi-Auto,19864,Diesel,145,65.7,2.0 634, 3 Series,2016,14498,Semi-Auto,58872,Diesel,30,67.3,2.0 635, X1,2017,19862,Semi-Auto,11000,Diesel,150,55.4,2.0 636, X7,2019,68898,Automatic,5203,Petrol,145,24.8,3.0 637, 5 Series,2016,19998,Semi-Auto,16555,Diesel,160,51.4,2.0 638, 3 Series,2017,22998,Semi-Auto,19505,Diesel,145,51.4,3.0 639, X3,2019,35998,Semi-Auto,2451,Diesel,145,54.3,2.0 640, 7 Series,2019,48898,Semi-Auto,17501,Diesel,145,41.5,3.0 641, X2,2019,24998,Manual,4174,Diesel,145,48.7,2.0 642, 5 Series,2019,26898,Semi-Auto,4917,Diesel,145,65.7,2.0 643, 1 Series,2019,21898,Manual,4100,Petrol,150,41.5,1.5 644, 4 Series,2016,18500,Semi-Auto,22566,Diesel,145,55.4,3.0 645, 1 Series,2015,16314,Manual,17846,Petrol,300,35.3,3.0 646, 3 Series,2019,29998,Semi-Auto,10171,Petrol,145,41.5,2.0 647, 5 Series,2017,25498,Semi-Auto,20279,Hybrid,135,156.9,2.0 648, X5,2016,35498,Automatic,14626,Diesel,235,42.8,3.0 649, 3 Series,2019,27498,Semi-Auto,14793,Diesel,145,48.7,2.0 650, X1,2016,18998,Semi-Auto,20259,Diesel,145,55.4,2.0 651, 3 Series,2017,21898,Semi-Auto,10305,Diesel,145,56.5,3.0 652, 1 Series,2016,12498,Manual,22103,Diesel,20,72.4,1.5 653, 3 Series,2016,16998,Semi-Auto,44600,Diesel,145,56.5,3.0 654, X1,2017,21498,Semi-Auto,19682,Petrol,160,44.8,2.0 655, 1 Series,2017,13998,Manual,33094,Diesel,20,72.4,1.5 656, 3 Series,2019,35998,Semi-Auto,9632,Diesel,145,49.6,2.0 657, 3 Series,2016,12950,Semi-Auto,44635,Diesel,0,74.3,2.0 658, 3 Series,2017,15127,Semi-Auto,26630,Petrol,125,51.4,2.0 659, 3 Series,2014,11470,Semi-Auto,49500,Diesel,30,62.8,2.0 660, 4 Series,2014,13991,Manual,22908,Diesel,125,58.9,2.0 661, 3 Series,2016,19298,Semi-Auto,32382,Diesel,200,49.6,3.0 662, 4 Series,2019,21998,Semi-Auto,16616,Diesel,145,65.7,2.0 663, 3 Series,2016,18998,Automatic,24709,Diesel,145,53.3,3.0 664, 4 Series,2016,18498,Semi-Auto,36435,Diesel,165,52.3,3.0 665, 3 Series,2016,13798,Semi-Auto,34860,Petrol,125,54.3,1.5 666, 5 Series,2016,17998,Automatic,28695,Diesel,145,53.3,3.0 667, X1,2016,19998,Automatic,13085,Diesel,145,55.4,2.0 668, 3 Series,2018,19998,Semi-Auto,16159,Petrol,145,48.7,2.0 669, 4 Series,2017,17998,Automatic,43111,Diesel,145,65.7,2.0 670, 4 Series,2017,21998,Automatic,13941,Petrol,145,48.7,2.0 671, 4 Series,2017,19998,Semi-Auto,13273,Diesel,145,65.7,2.0 672, 5 Series,2018,25998,Semi-Auto,24141,Hybrid,140,156.9,2.0 673, X4,2019,33998,Semi-Auto,9064,Diesel,150,42.8,2.0 674, 5 Series,2018,28998,Semi-Auto,26471,Petrol,150,39.2,3.0 675, 5 Series,2019,27898,Semi-Auto,11871,Diesel,150,62.8,2.0 676, 5 Series,2017,22998,Semi-Auto,20033,Diesel,150,65.7,2.0 677, 1 Series,2020,29998,Semi-Auto,934,Diesel,150,48.7,2.0 678, 4 Series,2019,24998,Semi-Auto,3214,Diesel,150,65.7,2.0 679, 3 Series,2019,21998,Semi-Auto,11300,Diesel,150,55.4,2.0 680, 4 Series,2018,20998,Semi-Auto,23358,Diesel,145,65.7,2.0 681, 3 Series,2016,13998,Semi-Auto,66362,Diesel,30,62.8,2.0 682, 4 Series,2018,21998,Semi-Auto,15600,Diesel,145,65.7,2.0 683, 3 Series,2018,16291,Semi-Auto,25329,Petrol,145,51.4,1.5 684, 3 Series,2014,11891,Semi-Auto,54335,Diesel,30,62.8,2.0 685, 1 Series,2015,10991,Semi-Auto,45000,Diesel,20,72.4,1.5 686, 3 Series,2017,17498,Automatic,58080,Hybrid,0,134.5,2.0 687, 4 Series,2017,19998,Semi-Auto,8333,Petrol,145,48.7,2.0 688, 5 Series,2016,17498,Semi-Auto,19218,Diesel,30,62.8,2.0 689, X1,2016,18797,Automatic,13505,Diesel,125,57.6,2.0 690, 3 Series,2016,16747,Semi-Auto,25513,Diesel,145,56.5,3.0 691, 3 Series,2017,19047,Automatic,16844,Diesel,145,56.5,3.0 692, 3 Series,2017,14050,Manual,20829,Petrol,145,48.7,2.0 693, 5 Series,2016,13991,Semi-Auto,44002,Diesel,20,68.9,2.0 694, 1 Series,2016,14991,Manual,7000,Diesel,30,65.7,2.0 695, 1 Series,2016,13491,Manual,24000,Diesel,30,65.7,2.0 696, 1 Series,2017,12491,Manual,19167,Diesel,20,68.9,2.0 697, 2 Series,2015,11679,Manual,46200,Petrol,30,54.3,1.5 698, 3 Series,2013,10170,Manual,49102,Diesel,125,57.6,2.0 699, 2 Series,2017,15750,Semi-Auto,18652,Diesel,145,65.7,2.0 700, 1 Series,2016,13895,Semi-Auto,31453,Diesel,20,67.3,2.0 701, 1 Series,2018,13295,Manual,18712,Diesel,145,50.4,2.0 702, 5 Series,2015,17000,Semi-Auto,40750,Diesel,160,50.4,3.0 703, 3 Series,2015,13000,Manual,61443,Petrol,200,39.8,2.0 704, 2 Series,2018,16998,Manual,5898,Petrol,145,42.2,1.5 705, 2 Series,2015,18998,Semi-Auto,24859,Petrol,260,37.2,3.0 706, 2 Series,2019,16998,Manual,3935,Petrol,150,40.9,1.5 707, 3 Series,2017,18995,Semi-Auto,23505,Diesel,145,64.2,2.0 708, 2 Series,2014,11999,Manual,31289,Diesel,30,62.8,2.0 709, 2 Series,2014,11999,Manual,31289,Diesel,30,62.8,2.0 710, 2 Series,2018,17498,Semi-Auto,5346,Petrol,145,39.8,1.5 711, X1,2017,18998,Semi-Auto,32217,Diesel,145,55.4,2.0 712, 3 Series,2014,12998,Manual,31826,Diesel,125,57.6,2.0 713, X4,2016,20998,Semi-Auto,62862,Diesel,205,47.9,3.0 714, 3 Series,2017,14498,Semi-Auto,38328,Petrol,150,51.4,2.0 715, 5 Series,2018,25998,Semi-Auto,30810,Diesel,150,60.1,3.0 716, 1 Series,2019,19498,Semi-Auto,9739,Diesel,145,67.3,2.0 717, X1,2017,18998,Semi-Auto,28686,Diesel,125,57.6,2.0 718, 2 Series,2018,14998,Manual,20001,Petrol,150,50.4,1.5 719, 8 Series,2019,69898,Automatic,4075,Petrol,145,26.7,3.0 720, 3 Series,2019,29998,Semi-Auto,8765,Petrol,145,41.5,2.0 721, 8 Series,2019,84898,Semi-Auto,3185,Petrol,145,24.4,4.4 722, M4,2019,44898,Semi-Auto,8124,Petrol,145,34.0,3.0 723, X5,2016,32998,Automatic,12525,Diesel,200,47.1,3.0 724, 5 Series,2019,30998,Semi-Auto,11675,Diesel,145,56.5,3.0 725, 2 Series,2018,17998,Semi-Auto,5877,Petrol,145,40.9,1.5 726, 3 Series,2019,25898,Semi-Auto,11917,Diesel,150,52.3,2.0 727, 3 Series,2019,28898,Semi-Auto,1250,Petrol,145,42.2,2.0 728, 3 Series,2017,19898,Semi-Auto,40238,Diesel,145,53.3,3.0 729, 5 Series,2017,23898,Semi-Auto,11896,Diesel,30,65.7,2.0 730, 1 Series,2017,17498,Semi-Auto,17640,Diesel,145,65.7,2.0 731, 2 Series,2016,12498,Manual,16793,Petrol,30,57.6,1.5 732, 3 Series,2017,17998,Semi-Auto,32000,Diesel,145,62.8,2.0 733, 7 Series,2018,25998,Semi-Auto,22892,Petrol,145,41.5,3.0 734, 8 Series,2019,67898,Semi-Auto,7903,Diesel,145,38.2,3.0 735, 1 Series,2017,20498,Semi-Auto,16875,Petrol,145,39.8,3.0 736, 4 Series,2019,21998,Semi-Auto,11032,Diesel,145,65.7,2.0 737, 1 Series,2018,15498,Manual,5953,Petrol,150,53.3,1.5 738, 1 Series,2017,13698,Semi-Auto,12102,Diesel,0,78.5,1.5 739, 5 Series,2017,23998,Semi-Auto,13970,Diesel,145,65.7,2.0 740, 6 Series,2016,22798,Semi-Auto,19366,Petrol,260,36.7,3.0 741, M4,2018,36498,Semi-Auto,7732,Petrol,145,34.0,3.0 742, X1,2017,19498,Semi-Auto,18798,Diesel,145,55.4,2.0 743, 2 Series,2017,15998,Semi-Auto,30330,Diesel,145,64.2,2.0 744, 4 Series,2018,19498,Semi-Auto,27198,Diesel,145,65.7,2.0 745, 1 Series,2017,14498,Manual,28831,Diesel,145,65.7,2.0 746, X1,2014,9998,Semi-Auto,68647,Diesel,160,52.3,2.0 747, 1 Series,2017,20250,Semi-Auto,20336,Petrol,200,39.8,3.0 748, 6 Series,2016,18737,Automatic,37868,Diesel,160,51.4,3.0 749, 3 Series,2017,20498,Automatic,17521,Diesel,145,53.3,3.0 750, 3 Series,2016,17298,Semi-Auto,27985,Hybrid,0,134.5,2.0 751, 1 Series,2014,9460,Manual,53872,Diesel,30,65.7,2.0 752, 3 Series,2013,10850,Automatic,73271,Diesel,145,55.4,3.0 753, X5,2015,23491,Automatic,43271,Diesel,205,47.9,2.0 754, 2 Series,2018,16798,Manual,14534,Diesel,145,57.7,1.5 755, 3 Series,2019,23498,Automatic,9117,Diesel,145,54.3,2.0 756, 5 Series,2016,17498,Semi-Auto,29823,Diesel,160,51.4,3.0 757, 1 Series,2015,11950,Semi-Auto,67500,Diesel,20,67.3,2.0 758, X4,2016,21995,Automatic,38900,Diesel,145,54.3,2.0 759, 1 Series,2016,13950,Semi-Auto,40000,Diesel,20,67.3,2.0 760, 3 Series,2015,15195,Semi-Auto,56000,Diesel,145,56.5,2.0 761, 5 Series,2014,15495,Semi-Auto,51565,Diesel,160,51.4,2.0 762, X2,2019,23890,Semi-Auto,5743,Petrol,145,38.7,2.0 763, 1 Series,2016,11498,Manual,68985,Diesel,20,68.9,2.0 764, 3 Series,2018,17498,Semi-Auto,16149,Petrol,145,51.4,1.5 765, M2,2019,48898,Semi-Auto,25,Petrol,145,29.1,3.0 766, 5 Series,2017,24498,Semi-Auto,20657,Diesel,145,60.1,2.0 767, X1,2016,16998,Manual,13612,Diesel,125,60.1,2.0 768, X5,2019,58898,Semi-Auto,10,Diesel,145,37.7,3.0 769, X4,2020,43898,Semi-Auto,2679,Petrol,145,26.9,3.0 770, 1 Series,2016,18998,Manual,24997,Petrol,260,36.2,3.0 771, X5,2019,49998,Semi-Auto,7101,Diesel,145,37.7,3.0 772, 2 Series,2015,19898,Semi-Auto,11711,Petrol,260,37.2,3.0 773, 5 Series,2017,23898,Semi-Auto,46954,Diesel,145,60.1,3.0 774, M4,2019,45898,Semi-Auto,25,Petrol,145,34.0,3.0 775, 1 Series,2016,17898,Manual,26447,Petrol,300,35.3,3.0 776, X1,2016,20998,Semi-Auto,26821,Petrol,160,44.8,2.0 777, 1 Series,2017,15498,Manual,19217,Petrol,150,52.3,1.5 779, 3 Series,2017,19998,Semi-Auto,24059,Diesel,150,53.3,3.0 781, 3 Series,2019,26898,Semi-Auto,10707,Diesel,150,52.3,2.0 782, 3 Series,2019,23298,Semi-Auto,10785,Diesel,150,54.3,2.0 783, 3 Series,2019,29998,Semi-Auto,10035,Petrol,145,41.5,2.0 784, M4,2019,47898,Semi-Auto,5650,Petrol,145,32.5,3.0 785, 2 Series,2019,23898,Automatic,6375,Diesel,145,61.4,2.0 786, 4 Series,2019,30898,Semi-Auto,6123,Diesel,150,49.6,3.0 787, 6 Series,2014,17898,Semi-Auto,64215,Diesel,160,49.6,3.0 788, X2,2019,27898,Semi-Auto,3770,Diesel,145,50.4,2.0 789, X5,2018,36898,Automatic,33012,Petrol,150,29.1,4.4 790, 3 Series,2017,19898,Semi-Auto,30824,Hybrid,140,134.5,2.0 791, M4,2019,40950,Semi-Auto,19322,Petrol,150,34.0,3.0 792, X1,2017,17900,Manual,34625,Diesel,150,60.1,2.0 793, 4 Series,2015,13995,Manual,33755,Petrol,160,44.8,2.0 794, 3 Series,2013,10200,Manual,56423,Petrol,200,40.4,2.0 795, 5 Series,2017,21440,Semi-Auto,34779,Diesel,150,62.8,2.0 796, 5 Series,2016,18385,Semi-Auto,45356,Diesel,160,51.4,3.0 797, 4 Series,2018,21840,Semi-Auto,10291,Diesel,150,65.7,2.0 798, 3 Series,2015,16480,Semi-Auto,57377,Diesel,165,51.4,3.0 799, 5 Series,2016,15485,Semi-Auto,50492,Diesel,30,62.8,2.0 800, 5 Series,2019,26798,Semi-Auto,16128,Diesel,145,60.1,2.0 801, 3 Series,2019,32995,Manual,612,Diesel,145,54.3,2.0 802, 4 Series,2016,23990,Semi-Auto,22254,Petrol,200,41.5,3.0 803, 2 Series,2016,21490,Semi-Auto,20348,Petrol,200,39.8,3.0 804, X3,2019,39500,Semi-Auto,1704,Diesel,145,54.3,2.0 805, X3,2019,39500,Semi-Auto,105,Diesel,145,54.3,2.0 806, X3,2019,36900,Semi-Auto,2367,Diesel,145,54.3,2.0 807, X2,2018,23900,Semi-Auto,3391,Diesel,145,61.4,2.0 808, 3 Series,2018,20000,Semi-Auto,17892,Diesel,145,60.1,2.0 809, X7,2019,74990,Semi-Auto,9200,Diesel,145,31.4,3.0 810, X5,2019,54900,Semi-Auto,10,Diesel,150,37.7,3.0 811, X1,2017,17790,Semi-Auto,36885,Diesel,125,60.1,2.0 812, 6 Series,2019,32000,Semi-Auto,2500,Petrol,150,42.8,2.0 813, X1,2017,21998,Semi-Auto,5020,Diesel,145,60.1,2.0 814, 1 Series,2016,13998,Manual,19188,Diesel,20,70.6,1.5 815, 1 Series,2019,16500,Manual,5450,Diesel,145,72.4,1.5 816, 3 Series,2019,34000,Semi-Auto,4650,Diesel,145,47.9,3.0 817, 5 Series,2019,29000,Semi-Auto,4727,Diesel,145,62.8,2.0 818, 3 Series,2019,32990,Semi-Auto,5400,Diesel,145,49.6,2.0 819, 3 Series,2019,30000,Manual,5385,Diesel,145,54.3,2.0 820, 7 Series,2016,33000,Semi-Auto,18190,Petrol,200,40.4,3.0 821, 3 Series,2019,35000,Semi-Auto,7685,Diesel,145,48.7,2.0 822, 1 Series,2017,14898,Manual,28133,Diesel,145,65.7,2.0 823, 5 Series,2019,29998,Semi-Auto,5000,Diesel,145,62.8,2.0 824, 4 Series,2019,28898,Semi-Auto,5000,Petrol,145,48.7,2.0 825, 3 Series,2019,26498,Semi-Auto,16151,Diesel,145,48.7,2.0 826, X5,2014,18998,Automatic,84512,Diesel,205,47.9,2.0 827, 1 Series,2013,6998,Manual,57125,Petrol,150,49.6,1.6 828, X2,2018,22898,Semi-Auto,21150,Petrol,145,38.7,2.0 829, 3 Series,2016,18898,Automatic,13493,Petrol,160,44.1,2.0 830, X1,2017,19498,Automatic,27490,Diesel,145,57.6,2.0 831, 5 Series,2019,29898,Semi-Auto,7730,Diesel,145,60.1,2.0 832, 1 Series,2019,25898,Manual,3000,Petrol,145,41.5,1.5 833, 3 Series,2019,29998,Manual,5000,Diesel,145,54.3,2.0 834, 3 Series,2018,21898,Semi-Auto,6425,Petrol,145,48.7,2.0 835, X3,2019,53898,Semi-Auto,6520,Petrol,145,24.8,3.0 836, 3 Series,2019,23898,Automatic,11603,Diesel,145,52.3,2.0 837, 1 Series,2019,19598,Semi-Auto,11308,Diesel,145,67.3,2.0 838, 1 Series,2019,18998,Semi-Auto,10974,Diesel,145,48.7,2.0 839, 1 Series,2016,15498,Semi-Auto,35340,Diesel,30,65.7,2.0 840, 4 Series,2019,29990,Semi-Auto,10013,Diesel,145,49.6,3.0 841, 4 Series,2019,29990,Semi-Auto,6644,Diesel,145,49.6,3.0 842, 1 Series,2019,33500,Semi-Auto,5354,Diesel,145,48.7,2.0 843, 6 Series,2018,28495,Semi-Auto,21525,Diesel,145,49.6,3.0 844, X1,2015,16900,Semi-Auto,42530,Diesel,125,57.6,2.0 845, 5 Series,2019,25500,Automatic,1032,Diesel,145,65.7,2.0 846, X2,2018,23750,Semi-Auto,15093,Diesel,145,58.9,2.0 847, 3 Series,2019,26390,Semi-Auto,5288,Diesel,145,57.7,2.0 848, 4 Series,2019,25000,Semi-Auto,10996,Diesel,145,60.1,2.0 849, 1 Series,2019,18990,Manual,6615,Diesel,145,70.6,1.5 850, 1 Series,2019,18900,Manual,5379,Diesel,145,70.6,1.5 851, M3,2017,38000,Semi-Auto,14894,Petrol,300,34.0,3.0 852, X2,2019,23000,Semi-Auto,929,Petrol,145,40.4,2.0 853, 3 Series,2017,19990,Semi-Auto,25212,Diesel,145,62.8,2.0 854, X4,2019,44000,Semi-Auto,3253,Petrol,145,26.9,3.0 855, 4 Series,2019,27000,Semi-Auto,1400,Diesel,145,65.7,2.0 856, 1 Series,2019,34990,Semi-Auto,4020,Diesel,145,48.7,2.0 857, X1,2019,28500,Manual,105,Diesel,145,68.9,2.0 858, X1,2019,31490,Manual,105,Diesel,145,60.1,2.0 859, X1,2019,30900,Semi-Auto,678,Diesel,145,65.7,2.0 860, X1,2016,19850,Semi-Auto,14542,Diesel,125,60.1,2.0 861, X1,2016,18490,Manual,19064,Diesel,125,60.1,2.0 862, 5 Series,2018,27990,Semi-Auto,18327,Diesel,145,60.1,3.0 863, X1,2019,22500,Manual,1272,Petrol,145,54.3,1.5 864, X4,2018,34000,Semi-Auto,935,Diesel,145,42.8,2.0 865, X1,2016,19000,Semi-Auto,15605,Diesel,125,60.1,2.0 866, 1 Series,2019,25490,Semi-Auto,5379,Petrol,145,39.8,3.0 867, X3,2016,21000,Semi-Auto,15989,Diesel,145,54.3,2.0 868, X3,2016,19490,Semi-Auto,43688,Diesel,145,54.3,2.0 869, 2 Series,2018,16998,Manual,12792,Diesel,150,51.4,2.0 870, 3 Series,2017,20898,Semi-Auto,17131,Diesel,150,64.2,2.0 871, X4,2019,33898,Semi-Auto,10792,Diesel,150,42.8,2.0 872, X3,2017,24500,Semi-Auto,12674,Diesel,145,54.3,2.0 873, 2 Series,2019,22500,Semi-Auto,5058,Petrol,145,50.4,2.0 874, 3 Series,2018,24990,Semi-Auto,13271,Diesel,150,53.3,3.0 875, i8,2019,67500,Automatic,6000,Hybrid,140,141.2,1.5 876, X1,2016,19295,Semi-Auto,13049,Diesel,125,57.6,2.0 877, 2 Series,2015,14998,Semi-Auto,29809,Diesel,20,68.9,2.0 878, 7 Series,2019,48898,Semi-Auto,5000,Petrol,145,34.5,3.0 879, 2 Series,2016,14998,Semi-Auto,32274,Petrol,125,51.4,1.5 880, 1 Series,2013,10998,Semi-Auto,41501,Diesel,30,64.2,2.0 881, 3 Series,2016,13998,Manual,47274,Petrol,200,41.5,2.0 882, 3 Series,2016,13498,Semi-Auto,45341,Diesel,0,74.3,2.0 883, X3,2015,16998,Semi-Auto,73312,Diesel,145,54.3,2.0 884, 2 Series,2019,27500,Automatic,3286,Petrol,145,39.8,3.0 885, 2 Series,2019,22000,Manual,3266,Petrol,145,52.3,1.5 886, 2 Series,2019,22000,Manual,2560,Petrol,145,52.3,1.5 887, 2 Series,2019,21500,Manual,4067,Petrol,145,52.3,1.5 888, 5 Series,2019,30000,Semi-Auto,5479,Petrol,145,50.4,2.0 889, 5 Series,2019,36500,Semi-Auto,4971,Diesel,145,55.4,2.0 890, 2 Series,2019,22990,Manual,3205,Petrol,145,52.3,1.5 891, 3 Series,2019,32990,Semi-Auto,9503,Diesel,145,49.6,2.0 892, i8,2017,48898,Automatic,36127,Hybrid,0,134.5,1.5 893, X1,2016,20900,Semi-Auto,15537,Petrol,165,44.8,2.0 894, 2 Series,2016,15490,Manual,7390,Petrol,165,44.8,2.0 895, 1 Series,2019,21900,Manual,917,Petrol,150,44.8,1.5 896, 1 Series,2019,22900,Manual,969,Diesel,150,68.9,2.0 897, 7 Series,2019,47000,Semi-Auto,5113,Diesel,145,44.1,3.0 898, X3,2019,33990,Semi-Auto,11,Diesel,145,54.3,2.0 899, 3 Series,2017,23500,Semi-Auto,21798,Diesel,145,49.6,3.0 900, 3 Series,2019,22000,Semi-Auto,10300,Diesel,145,55.4,2.0 901, X5,2019,52500,Semi-Auto,5597,Diesel,145,37.7,3.0 902, 5 Series,2019,26000,Semi-Auto,12209,Diesel,145,62.8,2.0 903, 1 Series,2019,23000,Semi-Auto,1956,Diesel,145,60.1,2.0 904, 3 Series,2019,24898,Semi-Auto,13125,Diesel,145,52.3,2.0 905, 1 Series,2016,15498,Manual,20233,Diesel,30,62.8,2.0 906, 1 Series,2017,14998,Semi-Auto,48972,Diesel,150,65.7,2.0 907, X5,2017,36898,Automatic,28193,Petrol,150,29.1,4.4 908, 7 Series,2019,46898,Semi-Auto,7200,Diesel,150,42.2,3.0 909, M5,2019,62898,Semi-Auto,4200,Petrol,150,26.9,4.4 910, 4 Series,2016,21898,Semi-Auto,10000,Diesel,160,52.3,3.0 911, 2 Series,2018,21498,Semi-Auto,1749,Diesel,145,47.1,2.0 912, 3 Series,2018,25990,Semi-Auto,8344,Diesel,145,53.3,3.0 913, X6,2019,64900,Semi-Auto,7200,Diesel,145,33.2,3.0 914, 4 Series,2020,27490,Semi-Auto,100,Diesel,145,60.1,2.0 915, 4 Series,2020,28990,Semi-Auto,100,Diesel,145,52.3,3.0 916, 4 Series,2020,30750,Semi-Auto,100,Diesel,145,50.4,3.0 917, 3 Series,2016,16690,Semi-Auto,30271,Diesel,145,53.3,3.0 918, 2 Series,2017,16998,Semi-Auto,25544,Diesel,145,64.2,2.0 919, 5 Series,2017,23998,Semi-Auto,13373,Diesel,145,65.7,2.0 920, 4 Series,2019,21998,Semi-Auto,17417,Diesel,145,65.7,2.0 921, 2 Series,2019,16998,Manual,7201,Petrol,150,42.8,1.5 922, 2 Series,2017,16798,Semi-Auto,23843,Diesel,145,64.2,2.0 923, 3 Series,2016,11998,Semi-Auto,78980,Diesel,30,70.6,2.0 924, 1 Series,2019,17998,Manual,6047,Petrol,145,56.5,1.5 925, 3 Series,2019,23298,Semi-Auto,14320,Diesel,145,54.3,2.0 926, 5 Series,2017,24298,Semi-Auto,13863,Diesel,145,60.1,2.0 927, 2 Series,2018,19990,Semi-Auto,5600,Diesel,145,49.6,2.0 928, 8 Series,2019,72990,Semi-Auto,8200,Petrol,145,26.7,4.4 929, 7 Series,2019,42990,Semi-Auto,9931,Diesel,145,44.1,3.0 930, 5 Series,2013,12791,Semi-Auto,55642,Diesel,145,55.4,2.0 931, 1 Series,2017,14991,Manual,20847,Petrol,145,52.3,1.5 932, 2 Series,2016,14498,Manual,16735,Diesel,20,74.3,1.5 933, 3 Series,2018,16998,Semi-Auto,21879,Petrol,150,51.4,1.5 934, 2 Series,2016,20990,Semi-Auto,21924,Petrol,260,37.2,3.0 935, 3 Series,2015,15990,Manual,43574,Petrol,200,39.8,2.0 936, X2,2019,24500,Semi-Auto,10112,Diesel,145,61.4,2.0 937, X4,2019,35490,Semi-Auto,6250,Diesel,145,42.8,2.0 938, X3,2019,38900,Semi-Auto,3302,Diesel,145,48.7,3.0 939, 3 Series,2018,17620,Automatic,20461,Diesel,145,60.1,2.0 940, 3 Series,2017,19991,Semi-Auto,27123,Diesel,145,62.8,2.0 941, 2 Series,2015,11991,Manual,52656,Diesel,30,62.8,2.0 942, 3 Series,2016,19998,Semi-Auto,26711,Diesel,160,51.4,3.0 943, 3 Series,2017,15998,Semi-Auto,15931,Petrol,125,51.4,2.0 944, X1,2016,18998,Manual,10935,Diesel,125,58.9,2.0 945, 3 Series,2019,26998,Semi-Auto,13268,Diesel,145,48.7,2.0 946, 2 Series,2019,20498,Semi-Auto,6195,Petrol,145,47.9,2.0 947, 2 Series,2015,11998,Semi-Auto,30738,Diesel,20,68.9,2.0 948, 2 Series,2019,18498,Semi-Auto,4079,Petrol,150,39.8,1.5 949, X3,2015,14998,Semi-Auto,34348,Diesel,150,55.4,2.0 950, 3 Series,2018,21998,Semi-Auto,14008,Diesel,145,62.8,2.0 951, 1 Series,2016,18498,Semi-Auto,36523,Petrol,205,39.8,3.0 952, 3 Series,2015,15998,Semi-Auto,47812,Diesel,160,51.4,3.0 953, Z4,2014,13498,Manual,22080,Petrol,205,41.5,2.0 954, 5 Series,2015,17998,Semi-Auto,41858,Diesel,200,48.7,3.0 955, X4,2019,33998,Semi-Auto,4231,Diesel,150,42.8,2.0 956, 1 Series,2019,18998,Manual,12250,Diesel,150,70.6,1.5 957, 1 Series,2019,21898,Manual,4100,Petrol,150,41.5,1.5 958, 3 Series,2018,20140,Automatic,2674,Diesel,145,64.2,2.0 959, 4 Series,2018,22991,Semi-Auto,10990,Diesel,145,65.7,2.0 960, X5,2015,19991,Automatic,62839,Diesel,200,47.9,3.0 961, 1 Series,2016,16998,Manual,21076,Petrol,300,35.3,3.0 962, 3 Series,2017,11498,Manual,51299,Petrol,125,52.3,1.5 963, 2 Series,2015,14298,Semi-Auto,25970,Diesel,125,58.9,2.0 964, 3 Series,2019,26498,Semi-Auto,11504,Petrol,150,41.5,2.0 965, 1 Series,2016,14998,Semi-Auto,25253,Petrol,125,54.3,1.5 966, X3,2015,18298,Semi-Auto,58779,Diesel,145,54.3,2.0 967, 5 Series,2019,27698,Automatic,8722,Diesel,145,60.1,2.0 968, 3 Series,2015,12498,Manual,32082,Petrol,125,52.3,1.5 969, Z4,2015,13498,Semi-Auto,48444,Petrol,200,41.5,2.0 970, 2 Series,2019,18298,Semi-Auto,1230,Petrol,145,50.4,2.0 971, 2 Series,2017,10000,Manual,51493,Petrol,30,55.4,1.5 972, 3 Series,2015,13991,Manual,37373,Diesel,30,64.2,2.0 973, 3 Series,2016,17750,Manual,15082,Petrol,200,41.5,2.0 974, 3 Series,2018,21490,Semi-Auto,18385,Petrol,145,48.7,2.0 975, X1,2013,7998,Manual,64698,Diesel,160,51.4,2.0 976, X1,2016,17998,Manual,14300,Diesel,125,58.9,2.0 977, 4 Series,2015,13198,Manual,62477,Diesel,30,62.8,2.0 978, 2 Series,2017,16498,Semi-Auto,24354,Diesel,145,64.2,2.0 979, X6,2017,30998,Semi-Auto,21756,Diesel,145,47.1,3.0 980, 2 Series,2019,24998,Semi-Auto,8555,Diesel,145,46.3,2.0 981, 3 Series,2017,13998,Manual,37323,Diesel,150,67.3,2.0 982, 3 Series,2013,8490,Manual,68578,Diesel,30,61.4,2.0 983, 4 Series,2018,21500,Semi-Auto,768,Diesel,145,65.7,2.0 984, 2 Series,2015,15500,Semi-Auto,25180,Diesel,20,68.9,2.0 985, 5 Series,2017,22000,Semi-Auto,30109,Diesel,150,65.7,2.0 986, 3 Series,2017,18998,Semi-Auto,30355,Diesel,145,64.2,2.0 987, 1 Series,2017,13995,Semi-Auto,18124,Diesel,145,70.6,2.0 988, X3,2014,14495,Semi-Auto,44000,Diesel,165,50.4,2.0 989, 3 Series,2013,7495,Manual,83000,Diesel,30,62.8,2.0 990, X3,2017,20495,Semi-Auto,33275,Diesel,150,54.3,2.0 991, 3 Series,2019,29998,Semi-Auto,4918,Diesel,150,52.3,2.0 992, 2 Series,2017,16498,Semi-Auto,27811,Diesel,145,64.2,2.0 993, 2 Series,2017,17498,Semi-Auto,19307,Diesel,145,64.2,2.0 994, 2 Series,2017,17498,Semi-Auto,21809,Diesel,145,64.2,2.0 995, 2 Series,2017,16798,Semi-Auto,25884,Diesel,145,64.2,2.0 996, X3,2016,20998,Semi-Auto,25574,Diesel,145,54.3,2.0 997, 3 Series,2018,19998,Semi-Auto,4807,Diesel,145,64.2,2.0 998, X3,2016,16998,Semi-Auto,63589,Diesel,145,54.3,2.0 999, 1 Series,2016,14298,Manual,22265,Diesel,20,70.6,1.5 1000, 1 Series,2016,12998,Semi-Auto,31879,Diesel,0,78.5,1.5 1001, 4 Series,2017,16998,Semi-Auto,64473,Diesel,125,58.9,2.0 1002, 2 Series,2016,11698,Manual,36250,Diesel,30,65.7,2.0 1003, 2 Series,2015,14498,Semi-Auto,19236,Petrol,145,47.9,2.0 1004, X1,2017,18698,Semi-Auto,41384,Diesel,145,55.4,2.0 1005, X5,2015,23421,Automatic,31526,Diesel,200,47.9,3.0 1006, 3 Series,2017,21998,Semi-Auto,30963,Diesel,145,53.3,3.0 1007, 5 Series,2018,22498,Semi-Auto,31660,Diesel,145,62.8,2.0 1008, 2 Series,2017,17298,Semi-Auto,23752,Diesel,145,64.2,2.0 1009, 1 Series,2015,11995,Manual,38000,Petrol,125,52.3,1.5 1010, 5 Series,2016,16498,Semi-Auto,32298,Diesel,30,62.8,2.0 1011, 1 Series,2015,16990,Automatic,35046,Petrol,235,37.7,3.0 1012, 3 Series,2017,19547,Automatic,29184,Diesel,145,51.4,3.0 1013, 3 Series,2016,15230,Automatic,46871,Diesel,145,56.5,3.0 1014, 1 Series,2016,17600,Semi-Auto,31179,Petrol,235,37.7,3.0 1015, X1,2016,16597,Automatic,47277,Diesel,145,55.4,2.0 1016, 3 Series,2017,20197,Automatic,33443,Diesel,145,53.3,3.0 1017, 4 Series,2016,16380,Automatic,39563,Diesel,30,65.7,2.0 1018, 3 Series,2016,14991,Semi-Auto,20923,Diesel,20,70.6,2.0 1019, 2 Series,2018,19995,Automatic,12272,Petrol,145,47.9,2.0 1020, 1 Series,2013,9990,Manual,29000,Petrol,145,48.7,2.0 1021, 3 Series,2017,19995,Semi-Auto,34634,Diesel,150,53.3,3.0 1022, X1,2017,19798,Semi-Auto,21700,Diesel,145,55.4,2.0 1023, X4,2019,33998,Semi-Auto,14404,Diesel,150,42.8,2.0 1024, 3 Series,2019,24898,Semi-Auto,11249,Diesel,150,52.3,2.0 1025, 3 Series,2016,16500,Semi-Auto,27444,Diesel,125,60.1,2.0 1026, 3 Series,2016,16750,Semi-Auto,39750,Diesel,165,51.4,3.0 1027, 5 Series,2016,16250,Semi-Auto,43000,Diesel,30,62.8,2.0 1028, 3 Series,2013,11950,Semi-Auto,88000,Diesel,125,57.6,3.0 1029, X1,2017,20498,Semi-Auto,23651,Diesel,125,57.6,2.0 1030, 2 Series,2014,13998,Manual,22086,Diesel,125,58.9,2.0 1031, 1 Series,2019,19998,Semi-Auto,10027,Petrol,145,47.9,2.0 1032, 2 Series,2018,22998,Semi-Auto,27542,Petrol,145,39.8,3.0 1033, X3,2016,20000,Semi-Auto,34334,Diesel,150,54.3,2.0 1034, X1,2018,23295,Semi-Auto,11570,Petrol,150,44.8,2.0 1035, 3 Series,2019,25990,Semi-Auto,2980,Diesel,150,57.7,2.0 1036, 3 Series,2015,19995,Semi-Auto,23338,Petrol,205,41.5,3.0 1037, X3,2019,37900,Semi-Auto,7776,Diesel,150,48.7,3.0 1038, 5 Series,2013,10750,Semi-Auto,60611,Diesel,125,60.1,2.0 1039, 3 Series,2013,9995,Semi-Auto,66000,Diesel,145,53.3,2.0 1040, X5,2017,30990,Automatic,31536,Diesel,200,47.1,3.0 1041, X6,2016,26990,Semi-Auto,32711,Diesel,200,47.1,3.0 1042, 2 Series,2016,12998,Manual,20565,Diesel,0,74.3,1.5 1043, 3 Series,2015,18498,Semi-Auto,27855,Diesel,160,51.4,3.0 1044, X1,2016,17498,Manual,15413,Diesel,125,58.9,2.0 1045, 2 Series,2017,16498,Manual,29117,Diesel,145,62.8,2.0 1046, 4 Series,2018,23998,Semi-Auto,8524,Diesel,150,52.3,3.0 1047, 3 Series,2013,10298,Semi-Auto,51645,Diesel,30,62.8,2.0 1048, 3 Series,2016,16698,Manual,14518,Diesel,125,58.9,2.0 1049, 4 Series,2016,16807,Automatic,39218,Diesel,30,65.7,2.0 1050, 5 Series,2017,17985,Semi-Auto,29337,Diesel,125,60.1,2.0 1051, 4 Series,2016,22495,Automatic,13295,Petrol,260,37.2,3.0 1052, 3 Series,2019,26885,Semi-Auto,11751,Petrol,145,42.2,2.0 1053, 2 Series,2015,11495,Manual,41388,Diesel,20,74.3,1.5 1054, 4 Series,2016,17785,Automatic,37032,Diesel,125,58.9,2.0 1055, 4 Series,2015,17495,Semi-Auto,34802,Petrol,235,39.2,3.0 1056, 2 Series,2017,18950,Automatic,23295,Petrol,200,39.8,3.0 1057, X6,2018,33450,Automatic,35706,Diesel,145,47.1,3.0 1058, 1 Series,2016,10450,Semi-Auto,52562,Diesel,0,78.5,1.5 1059, 4 Series,2014,14450,Manual,27405,Petrol,165,44.8,2.0 1060, 2 Series,2018,16750,Manual,13052,Diesel,145,64.2,2.0 1061, 3 Series,2017,20990,Semi-Auto,19842,Diesel,160,51.4,3.0 1062, 3 Series,2014,10990,Manual,65077,Diesel,30,61.4,2.0 1063, X3,2013,5299,Semi-Auto,26000,Diesel,165,50.4,2.0 1064, 3 Series,2017,18985,Semi-Auto,28173,Hybrid,0,134.5,2.0 1065, X1,2018,22995,Automatic,12848,Petrol,145,44.8,2.0 1066, 2 Series,2018,19995,Automatic,11805,Hybrid,135,135.5,1.5 1067, 5 Series,2017,22995,Automatic,17117,Diesel,145,65.7,2.0 1068, 3 Series,2015,11750,Semi-Auto,60210,Diesel,125,58.9,2.0 1069, 4 Series,2018,21990,Semi-Auto,24118,Diesel,150,65.7,2.0 1070, 4 Series,2014,14750,Semi-Auto,60212,Diesel,125,58.9,2.0 1071, 1 Series,2013,13990,Semi-Auto,38748,Petrol,235,37.7,3.0 1072, 5 Series,2018,22990,Automatic,23891,Diesel,145,68.9,2.0 1073, 5 Series,2018,22750,Semi-Auto,30500,Diesel,145,68.9,2.0 1074, 3 Series,2014,10450,Manual,51030,Diesel,30,62.8,2.0 1075, 3 Series,2013,12990,Semi-Auto,54073,Diesel,125,57.6,3.0 1076, M4,2017,34950,Semi-Auto,20750,Petrol,300,34.0,3.0 1077, X1,2015,9990,Manual,43877,Diesel,165,51.4,2.0 1078, 4 Series,2014,14990,Semi-Auto,43000,Diesel,150,56.5,2.0 1079, 3 Series,2015,13350,Semi-Auto,54695,Diesel,125,58.9,2.0 1080, 3 Series,2017,13995,Manual,25345,Petrol,150,48.7,2.0 1081, 5 Series,2014,13995,Semi-Auto,80500,Diesel,125,57.6,2.0 1082, 6 Series,2017,23750,Automatic,25338,Diesel,200,49.6,3.0 1083, 3 Series,2015,11490,Automatic,57855,Petrol,200,43.5,2.0 1084, X4,2014,17450,Automatic,67975,Diesel,200,47.9,3.0 1085, X6,2018,36498,Semi-Auto,4015,Diesel,145,47.1,3.0 1086, 3 Series,2018,21498,Semi-Auto,20369,Diesel,145,60.1,2.0 1087, 3 Series,2013,10995,Manual,27000,Diesel,30,61.4,2.0 1088, X5,2017,32498,Automatic,22306,Diesel,145,47.1,3.0 1089, 4 Series,2015,19898,Semi-Auto,21803,Diesel,165,49.6,3.0 1090, 7 Series,2017,26998,Semi-Auto,34017,Diesel,125,57.6,3.0 1091, 5 Series,2016,11995,Manual,69850,Diesel,30,65.7,2.0 1092, 1 Series,2013,8295,Manual,71797,Diesel,30,65.7,2.0 1093, 3 Series,2018,18995,Semi-Auto,21010,Diesel,150,62.8,2.0 1094, 6 Series,2016,22495,Semi-Auto,30252,Diesel,200,49.6,3.0 1095, 3 Series,2017,18495,Semi-Auto,29999,Diesel,145,64.2,2.0 1096, 4 Series,2017,18495,Automatic,33683,Diesel,30,65.7,2.0 1097, X5,2013,21990,Automatic,64979,Diesel,200,45.6,3.0 1098, X1,2017,17990,Semi-Auto,36687,Diesel,125,57.6,2.0 1099, 4 Series,2015,13490,Manual,73581,Diesel,30,62.8,2.0 1100, 3 Series,2015,13990,Automatic,37087,Diesel,125,61.4,2.0 1101, X5,2014,20490,Automatic,38000,Diesel,200,45.6,3.0 1102, 5 Series,2016,16460,Semi-Auto,32998,Diesel,125,60.1,2.0 1103, 3 Series,2015,17190,Automatic,34089,Diesel,160,51.4,3.0 1104, 3 Series,2014,12795,Semi-Auto,63592,Diesel,125,60.1,2.0 1105, 3 Series,2019,26998,Semi-Auto,14572,Diesel,145,48.7,2.0 1106, 6 Series,2019,52500,Automatic,9000,Diesel,145,42.2,2.0 1107, X1,2017,16995,Semi-Auto,22000,Diesel,145,65.7,2.0 1108, X1,2017,14995,Manual,33600,Diesel,150,68.9,2.0 1109, X1,2016,17495,Manual,25000,Diesel,125,58.9,2.0 1110, 5 Series,2014,14995,Semi-Auto,42313,Diesel,145,55.4,3.0 1111, X4,2018,33998,Semi-Auto,14777,Diesel,145,42.8,2.0 1112, 3 Series,2018,26998,Semi-Auto,1426,Petrol,145,41.5,3.0 1113, M6,2016,35898,Semi-Auto,26642,Petrol,555,28.5,4.4 1114, X1,2016,18998,Semi-Auto,26098,Diesel,125,57.6,2.0 1115, 3 Series,2014,14498,Semi-Auto,41419,Petrol,200,42.2,2.0 1116, X1,2017,18898,Semi-Auto,27720,Diesel,125,57.6,2.0 1117, X3,2015,20898,Semi-Auto,34104,Diesel,145,54.3,2.0 1118, 1 Series,2019,21898,Semi-Auto,14720,Diesel,145,67.3,2.0 1119, 5 Series,2017,22898,Semi-Auto,11303,Diesel,145,65.7,2.0 1120, 5 Series,2016,10990,Manual,85635,Diesel,30,65.7,2.0 1121, 4 Series,2016,15790,Semi-Auto,73921,Diesel,160,51.4,3.0 1122, 4 Series,2015,15990,Automatic,67958,Diesel,160,51.4,3.0 1123, 5 Series,2016,13695,Automatic,61989,Diesel,20,68.9,2.0 1124, 4 Series,2016,14495,Manual,43052,Diesel,30,62.8,2.0 1125, 1 Series,2015,12950,Automatic,31384,Diesel,30,65.7,2.0 1126, 3 Series,2015,14490,Semi-Auto,55024,Diesel,30,62.8,2.0 1127, 3 Series,2015,10570,Manual,59020,Diesel,125,57.6,2.0 1128, X5,2015,24020,Automatic,69358,Diesel,200,47.1,3.0 1129, X3,2014,13995,Semi-Auto,33655,Diesel,165,50.4,2.0 1130, 3 Series,2015,10000,Manual,85515,Diesel,20,68.9,2.0 1131, 2 Series,2018,19491,Automatic,7460,Diesel,145,47.1,2.0 1132, X3,2014,15590,Automatic,51362,Diesel,145,54.3,2.0 1133, X1,2016,17190,Manual,22197,Diesel,125,58.9,2.0 1134, 1 Series,2017,20998,Semi-Auto,19479,Petrol,200,39.8,3.0 1135, 1 Series,2017,20998,Semi-Auto,24999,Petrol,200,39.8,3.0 1136, 2 Series,2015,12198,Manual,22812,Diesel,20,74.3,1.5 1137, 2 Series,2016,19500,Semi-Auto,24790,Petrol,265,37.2,3.0 1138, 6 Series,2017,25998,Semi-Auto,18895,Diesel,145,51.4,3.0 1139, 4 Series,2019,29898,Semi-Auto,2145,Diesel,145,58.9,2.0 1140, 1 Series,2015,14498,Manual,25640,Diesel,30,62.8,2.0 1141, 1 Series,2019,17898,Semi-Auto,11804,Diesel,145,70.6,2.0 1142, 3 Series,2019,22898,Semi-Auto,12226,Diesel,145,62.8,2.0 1143, 3 Series,2019,22198,Semi-Auto,13004,Diesel,145,67.3,2.0 1144, 1 Series,2016,15998,Semi-Auto,21914,Diesel,30,65.7,2.0 1145, 2 Series,2019,20898,Automatic,8177,Hybrid,135,148.7,1.5 1146, 3 Series,2015,11990,Semi-Auto,47742,Diesel,30,67.3,2.0 1147, 3 Series,2018,19940,Automatic,20610,Petrol,145,48.7,2.0 1148, 3 Series,2019,29998,Semi-Auto,3941,Petrol,145,41.5,2.0 1149, 1 Series,2017,21998,Semi-Auto,12453,Petrol,145,39.8,3.0 1150, 3 Series,2017,16098,Manual,26575,Diesel,30,64.2,2.0 1151, 3 Series,2017,15298,Semi-Auto,42114,Petrol,125,51.4,1.5 1152, 1 Series,2016,12995,Manual,18824,Diesel,20,70.6,2.0 1153, 5 Series,2018,23750,Automatic,17280,Diesel,145,68.9,2.0 1154, 3 Series,2017,19999,Semi-Auto,17347,Hybrid,140,134.5,2.0 1155, 1 Series,2015,12299,Semi-Auto,46242,Diesel,30,62.8,2.0 1156, 1 Series,2018,16998,Manual,14164,Petrol,145,46.3,2.0 1157, 1 Series,2016,15998,Semi-Auto,11239,Diesel,20,68.9,1.5 1158, 2 Series,2019,19498,Semi-Auto,5045,Diesel,145,51.4,2.0 1159, 2 Series,2018,18998,Semi-Auto,7762,Petrol,150,50.4,1.5 1160, 3 Series,2015,13795,Semi-Auto,92308,Diesel,150,54.3,3.0 1161, 3 Series,2015,12495,Semi-Auto,57209,Diesel,125,61.4,2.0 1162, X1,2016,17750,Semi-Auto,47027,Diesel,145,55.4,2.0 1163, 2 Series,2017,14600,Manual,10511,Diesel,150,68.9,2.0 1164, 3 Series,2017,17901,Semi-Auto,16965,Petrol,145,46.3,2.0 1165, M4,2015,29197,Manual,37538,Petrol,325,32.1,3.0 1166, 3 Series,2019,25690,Semi-Auto,21544,Petrol,145,42.2,2.0 1167, 1 Series,2017,14179,Manual,32015,Diesel,145,68.9,2.0 1168, 3 Series,2016,18656,Semi-Auto,41200,Diesel,150,53.3,3.0 1169, 2 Series,2019,24690,Automatic,3479,Hybrid,135,113.0,1.5 1170, 3 Series,2018,21690,Semi-Auto,12008,Petrol,145,48.7,2.0 1171, 3 Series,2017,15995,Semi-Auto,23715,Diesel,150,65.7,2.0 1172, 1 Series,2017,20995,Semi-Auto,31544,Petrol,145,39.8,3.0 1173, 1 Series,2017,20995,Semi-Auto,31544,Petrol,145,39.8,3.0 1174, 5 Series,2014,11495,Manual,65000,Diesel,125,57.6,2.0 1175, X1,2017,17795,Manual,24485,Diesel,125,58.9,2.0 1176, 5 Series,2013,10495,Semi-Auto,83000,Diesel,125,57.6,2.0 1177, X4,2017,22995,Semi-Auto,35000,Diesel,150,54.3,2.0 1178, 3 Series,2018,16195,Manual,37025,Diesel,150,67.3,2.0 1179, 3 Series,2015,15695,Semi-Auto,59204,Diesel,200,49.6,3.0 1180, 4 Series,2017,24000,Semi-Auto,20398,Diesel,145,50.4,3.0 1181, 4 Series,2017,20387,Semi-Auto,19151,Diesel,145,65.7,2.0 1182, 4 Series,2016,19737,Semi-Auto,29958,Diesel,30,65.7,2.0 1183, 4 Series,2017,20910,Semi-Auto,16448,Diesel,145,65.7,2.0 1184, 4 Series,2017,21170,Semi-Auto,8161,Diesel,145,65.7,2.0 1185, 1 Series,2016,14015,Manual,34281,Diesel,20,70.6,1.5 1186, 4 Series,2016,19881,Semi-Auto,21972,Diesel,30,65.7,2.0 1187, 3 Series,2019,25990,Semi-Auto,5714,Diesel,145,52.3,2.0 1188, 4 Series,2016,16995,Manual,29564,Diesel,30,62.8,2.0 1189, X5,2016,32995,Automatic,36804,Diesel,235,42.8,3.0 1190, 3 Series,2017,16485,Semi-Auto,58081,Diesel,145,64.2,2.0 1191, 1 Series,2016,10985,Manual,37500,Diesel,20,72.4,1.5 1192, 5 Series,2017,23498,Semi-Auto,17231,Diesel,145,53.3,3.0 1193, 3 Series,2015,11995,Semi-Auto,52385,Petrol,165,47.1,2.0 1194, 1 Series,2016,13995,Semi-Auto,42565,Diesel,30,62.8,2.0 1195, M6,2016,36995,Semi-Auto,19000,Petrol,555,27.4,4.4 1196, 4 Series,2017,24995,Semi-Auto,13543,Diesel,160,50.4,3.0 1197, X5,2015,25995,Automatic,43344,Diesel,200,47.1,3.0 1198, 4 Series,2015,13495,Manual,42348,Petrol,200,40.4,2.0 1199, X5,2015,22995,Automatic,41622,Diesel,200,47.9,3.0 1200, 2 Series,2018,17630,Semi-Auto,11056,Diesel,145,64.2,2.0 1201, M4,2017,33650,Semi-Auto,17834,Petrol,145,34.0,3.0 1202, 1 Series,2017,21901,Semi-Auto,4775,Petrol,200,39.8,3.0 1203, X2,2019,33250,Semi-Auto,3673,Petrol,145,34.0,2.0 1204, X7,2019,66540,Semi-Auto,3218,Diesel,145,33.6,3.0 1205, 4 Series,2019,24920,Semi-Auto,3689,Diesel,145,65.7,2.0 1206, 3 Series,2015,17495,Semi-Auto,38249,Diesel,160,51.4,3.0 1207, 4 Series,2016,14070,Semi-Auto,49922,Petrol,160,44.1,2.0 1208, 4 Series,2016,17595,Semi-Auto,22868,Petrol,160,45.6,2.0 1209, 3 Series,2019,32420,Semi-Auto,103,Diesel,145,52.3,2.0 1210, M6,2015,34147,Semi-Auto,34017,Petrol,555,28.5,4.4 1211, X1,2017,22561,Semi-Auto,17195,Diesel,145,60.1,2.0 1212, 2 Series,2017,17484,Semi-Auto,34247,Diesel,30,65.7,2.0 1213, 1 Series,2019,26300,Manual,5446,Diesel,145,53.3,2.0 1214, X2,2019,26980,Manual,103,Diesel,145,55.4,2.0 1215, X2,2019,32570,Semi-Auto,103,Petrol,145,34.0,2.0 1216, X1,2016,16780,Manual,32383,Diesel,20,68.9,2.0 1217, X1,2019,26600,Semi-Auto,5085,Diesel,145,60.1,2.0 1218, 3 Series,2019,26000,Semi-Auto,4826,Diesel,145,60.1,2.0 1219, 7 Series,2019,45400,Semi-Auto,2212,Diesel,145,42.2,3.0 1220, 1 Series,2016,19790,Semi-Auto,15921,Petrol,235,37.7,3.0 1221, 6 Series,2017,27197,Semi-Auto,6245,Diesel,145,51.4,3.0 1222, X3,2016,21480,Semi-Auto,44588,Diesel,200,47.9,3.0 1223, 4 Series,2017,23890,Semi-Auto,19266,Diesel,145,49.6,3.0 1224, i8,2018,57870,Automatic,11278,Hybrid,135,134.5,1.5 1225, 1 Series,2017,22150,Semi-Auto,16798,Petrol,200,39.8,3.0 1226, 1 Series,2017,21307,Semi-Auto,12969,Petrol,145,39.8,3.0 1227, 1 Series,2019,30783,Semi-Auto,6499,Petrol,145,34.5,2.0 1228, 1 Series,2019,25323,Manual,7830,Petrol,145,41.5,1.5 1229, 2 Series,2019,24790,Semi-Auto,2567,Diesel,145,48.7,2.0 1230, 5 Series,2019,29700,Semi-Auto,3901,Petrol,145,46.3,2.0 1231, X2,2019,27197,Semi-Auto,3469,Diesel,145,58.9,2.0 1232, X5,2019,44800,Semi-Auto,7030,Diesel,145,37.7,3.0 1233, 5 Series,2019,32250,Semi-Auto,11432,Diesel,145,51.4,3.0 1234, 3 Series,2015,17998,Semi-Auto,22358,Diesel,145,56.5,3.0 1235, X1,2017,15998,Manual,26055,Diesel,20,68.9,2.0 1236, 1 Series,2017,15698,Manual,10966,Diesel,150,65.7,2.0 1237, X3,2020,52910,Semi-Auto,101,Hybrid,135,5.5,2.0 1238, 3 Series,2015,16698,Semi-Auto,38399,Diesel,145,56.5,3.0 1239, 3 Series,2016,17698,Semi-Auto,27840,Hybrid,0,134.5,2.0 1240, 3 Series,2016,20998,Semi-Auto,20756,Diesel,145,56.5,3.0 1241, X1,2016,16798,Automatic,46344,Diesel,145,55.4,2.0 1242, 5 Series,2014,17080,Automatic,40267,Diesel,200,48.7,3.0 1243, 5 Series,2016,18810,Semi-Auto,35404,Diesel,160,51.4,2.0 1244, 4 Series,2020,47550,Semi-Auto,101,Diesel,145,60.1,2.0 1245, 2 Series,2020,31150,Manual,101,Petrol,145,40.4,1.5 1246, X4,2020,53630,Semi-Auto,117,Diesel,145,40.9,3.0 1247, X5,2020,56270,Semi-Auto,117,Diesel,145,36.7,3.0 1248, 3 Series,2020,40150,Semi-Auto,319,Petrol,145,42.2,2.0 1249, 3 Series,2020,53260,Semi-Auto,347,Petrol,145,33.6,3.0 1250, X1,2016,16670,Manual,34393,Diesel,125,58.9,2.0 1251, 7 Series,2014,13840,Automatic,59640,Diesel,160,50.4,3.0 1252, 3 Series,2017,17880,Automatic,22170,Diesel,145,60.1,2.0 1253, 1 Series,2017,13480,Manual,16627,Petrol,145,53.3,1.5 1254, 3 Series,2017,20998,Semi-Auto,19822,Diesel,145,53.3,3.0 1255, 1 Series,2016,16998,Manual,24311,Petrol,300,35.3,3.0 1256, 3 Series,2015,16698,Semi-Auto,28321,Diesel,145,53.3,3.0 1257, 5 Series,2017,22998,Automatic,14295,Diesel,145,55.4,2.0 1258, X5,2016,33698,Automatic,20708,Diesel,235,42.8,3.0 1259, X5,2013,21212,Automatic,51500,Diesel,200,45.6,3.0 1260, 3 Series,2019,22052,Semi-Auto,10178,Diesel,145,55.4,2.0 1261, 3 Series,2019,22382,Semi-Auto,10142,Diesel,145,55.4,2.0 1262, X2,2019,28226,Automatic,123,Diesel,145,47.9,2.0 1263, X2,2019,28608,Automatic,123,Diesel,145,50.4,2.0 1264, 3 Series,2019,22312,Semi-Auto,7944,Diesel,145,55.4,2.0 1265, 1 Series,2017,16741,Semi-Auto,30500,Diesel,150,67.3,2.0 1266, 3 Series,2019,25936,Automatic,5948,Petrol,145,42.2,2.0 1267, X2,2019,25936,Automatic,4472,Diesel,145,50.4,2.0 1268, 3 Series,2019,29356,Automatic,3412,Diesel,145,52.3,2.0 1269, 1 Series,2017,14502,Semi-Auto,33242,Diesel,20,70.6,2.0 1270, 7 Series,2018,31322,Semi-Auto,39196,Diesel,145,54.3,3.0 1271, 4 Series,2019,30804,Semi-Auto,6903,Diesel,145,49.6,3.0 1272, X3,2016,21991,Semi-Auto,30057,Diesel,145,54.3,2.0 1273, X2,2019,29975,Automatic,123,Diesel,145,48.7,2.0 1274, X2,2019,29770,Automatic,123,Diesel,145,48.7,2.0 1275, X2,2019,29770,Automatic,123,Diesel,145,48.7,2.0 1276, X2,2019,29770,Automatic,123,Diesel,145,48.7,2.0 1277, X2,2019,29770,Automatic,123,Diesel,145,48.7,2.0 1278, 4 Series,2019,29626,Automatic,1938,Petrol,145,41.5,3.0 1279, 1 Series,2018,17992,Semi-Auto,8846,Petrol,145,37.2,1.5 1280, 1 Series,2018,17912,Semi-Auto,9673,Petrol,145,37.2,1.5 1281, X1,2019,24480,Manual,2425,Petrol,145,51.4,1.5 1282, X1,2020,29991,Semi-Auto,2000,Diesel,145,47.9,2.0 1283, 2 Series,2020,29991,Semi-Auto,1500,Petrol,145,47.9,2.0 1284, 1 Series,2016,14490,Manual,34944,Diesel,30,62.8,2.0 1285, 2 Series,2017,17572,Manual,11237,Petrol,145,44.1,2.0 1286, 4 Series,2015,13242,Manual,71179,Diesel,30,62.8,2.0 1287, 1 Series,2014,17292,Semi-Auto,35481,Petrol,235,37.7,3.0 1288, 2 Series,2019,20276,Automatic,4013,Petrol,145,53.3,1.5 1289, 1 Series,2017,19792,Automatic,15867,Diesel,145,61.4,2.0 1290, 1 Series,2018,17882,Semi-Auto,9993,Petrol,145,37.2,1.5 1291, X1,2018,24472,Semi-Auto,11253,Diesel,145,60.1,2.0 1292, X1,2017,19991,Semi-Auto,19396,Petrol,160,44.8,2.0 1293, X3,2019,42763,Semi-Auto,3844,Diesel,145,36.7,3.0 1294, 1 Series,2019,27720,Manual,123,Diesel,145,53.3,2.0 1295, 1 Series,2019,32060,Automatic,123,Diesel,145,48.7,2.0 1296, X2,2019,28608,Automatic,123,Diesel,145,50.4,2.0 1297, 2 Series,2019,21796,Automatic,11189,Diesel,145,67.3,2.0 1298, X4,2019,34526,Automatic,5744,Diesel,145,42.8,2.0 1299, 3 Series,2019,33840,Automatic,123,Petrol,145,42.2,2.0 1300, X3,2019,38020,Automatic,123,Diesel,145,54.3,2.0 1301, X3,2019,37830,Automatic,123,Diesel,145,54.3,2.0 1302, 1 Series,2019,28000,Automatic,123,Diesel,145,51.4,2.0 1303, 3 Series,2019,34370,Automatic,123,Diesel,145,50.4,2.0 1304, 1 Series,2019,26780,Manual,123,Diesel,145,53.3,2.0 1305, 4 Series,2019,29806,Automatic,1649,Petrol,145,41.5,3.0 1306, X4,2019,40016,Automatic,6648,Petrol,145,26.9,3.0 1307, 1 Series,2017,21972,Automatic,25000,Petrol,145,39.8,3.0 1308, X3,2019,31466,Automatic,6070,Diesel,145,54.3,2.0 1309, 2 Series,2019,22516,Automatic,5215,Petrol,145,47.9,2.0 1310, 2 Series,2017,14951,Manual,22887,Petrol,145,55.4,1.5 1311, 5 Series,2016,17991,Semi-Auto,30089,Diesel,125,60.1,2.0 1312, 3 Series,2017,18612,Semi-Auto,25000,Diesel,30,64.2,2.0 1313, X2,2019,30266,Automatic,123,Diesel,145,58.9,2.0 1314, X2,2019,26930,Semi-Auto,4030,Petrol,145,40.4,2.0 1315, 2 Series,2019,19420,Manual,4601,Petrol,145,44.1,1.5 1316, 2 Series,2019,21920,Semi-Auto,7060,Diesel,145,49.6,2.0 1317, 2 Series,2019,24440,Semi-Auto,5639,Diesel,145,49.6,2.0 1318, X1,2019,25020,Semi-Auto,5197,Petrol,145,38.2,2.0 1319, X6,2018,39589,Semi-Auto,12648,Diesel,145,40.9,3.0 1320, 3 Series,2019,34280,Automatic,123,Diesel,145,50.4,2.0 1321, 1 Series,2019,27730,Manual,123,Diesel,145,53.3,2.0 1322, 3 Series,2019,33910,Automatic,123,Diesel,145,50.4,2.0 1323, 2 Series,2019,24626,Automatic,123,Diesel,145,49.6,2.0 1324, 1 Series,2019,26310,Manual,123,Diesel,145,53.3,2.0 1325, 7 Series,2019,49990,Automatic,123,Diesel,145,44.8,3.0 1326, Z4,2019,30990,Semi-Auto,2389,Petrol,145,38.7,2.0 1327, X3,2019,30200,Semi-Auto,19915,Petrol,145,30.4,2.0 1328, 3 Series,2018,21800,Semi-Auto,37052,Diesel,145,51.4,3.0 1329, 3 Series,2018,24991,Semi-Auto,5243,Diesel,145,56.5,3.0 1330, 5 Series,2016,15840,Manual,33700,Diesel,125,60.1,2.0 1331, X1,2018,18502,Manual,12800,Diesel,145,68.9,2.0 1332, 4 Series,2019,27003,Manual,123,Diesel,145,62.8,2.0 1333, 5 Series,2019,35810,Automatic,123,Petrol,145,48.7,2.0 1334, X5,2019,53910,Automatic,123,Diesel,145,37.7,3.0 1335, X3,2019,38900,Automatic,123,Diesel,145,54.3,2.0 1336, X5,2017,31900,Automatic,21379,Diesel,200,47.1,3.0 1337, 3 Series,2019,36990,Semi-Auto,3501,Diesel,145,47.9,3.0 1338, 3 Series,2016,17490,Semi-Auto,21804,Diesel,125,60.1,2.0 1339, X6,2017,35990,Semi-Auto,3550,Diesel,150,44.8,3.0 1340, X2,2018,22960,Semi-Auto,6350,Diesel,150,50.4,2.0 1341, 2 Series,2018,20870,Semi-Auto,8090,Petrol,150,47.9,2.0 1342, 7 Series,2017,27100,Semi-Auto,34335,Diesel,145,54.3,3.0 1343, X1,2019,27450,Automatic,123,Petrol,145,46.3,1.5 1344, X1,2019,28410,Automatic,123,Diesel,145,60.1,2.0 1345, X3,2019,31276,Automatic,7345,Petrol,145,30.4,2.0 1346, X5,2019,44036,Automatic,11436,Diesel,145,37.7,3.0 1347, 1 Series,2020,26991,Semi-Auto,2000,Diesel,145,57.7,1.5 1348, X1,2020,29991,Semi-Auto,2000,Diesel,145,40.9,2.0 1349, 5 Series,2019,31030,Automatic,123,Diesel,145,49.6,2.0 1350, X6,2019,64772,Semi-Auto,4193,Petrol,150,26.4,3.0 1351, 4 Series,2019,22726,Automatic,9987,Diesel,145,65.7,2.0 1352, X2,2019,23976,Automatic,999,Petrol,145,38.7,2.0 1353, X1,2014,12832,Automatic,33100,Diesel,160,52.3,2.0 1354, M5,2019,68930,Automatic,123,Petrol,145,26.9,4.4 1355, 2 Series,2019,24180,Semi-Auto,4001,Diesel,145,47.1,2.0 1356, 2 Series,2019,22050,Semi-Auto,4488,Petrol,145,39.8,1.5 1357, 2 Series,2019,28861,Automatic,123,Petrol,145,39.8,3.0 1358, 3 Series,2019,34790,Automatic,123,Diesel,145,50.4,2.0 1359, X5,2019,63320,Automatic,123,Diesel,145,33.6,3.0 1360, 4 Series,2019,30766,Automatic,123,Diesel,145,60.1,2.0 1361, X2,2019,26972,Automatic,123,Petrol,145,38.7,2.0 1362, X2,2019,26972,Automatic,123,Petrol,145,38.7,2.0 1363, X2,2019,26972,Automatic,123,Petrol,145,38.7,2.0 1364, 2 Series,2016,11976,Manual,26089,Petrol,30,55.4,1.5 1365, 1 Series,2020,24852,Manual,1510,Petrol,150,41.5,1.5 1366, 3 Series,2017,17832,Semi-Auto,29943,Diesel,30,64.2,2.0 1367, 5 Series,2015,18722,Semi-Auto,30000,Diesel,165,51.4,3.0 1368, X1,2017,20251,Semi-Auto,14598,Diesel,145,60.1,2.0 1369, X5,2019,48440,Automatic,8000,Diesel,145,37.7,3.0 1370, X1,2019,27440,Manual,123,Petrol,145,39.8,1.5 1371, X2,2019,26972,Automatic,123,Petrol,145,38.7,2.0 1372, X2,2019,26972,Automatic,123,Petrol,145,38.7,2.0 1373, X2,2019,26972,Automatic,123,Petrol,145,38.7,2.0 1374, X2,2019,26972,Automatic,123,Petrol,145,38.7,2.0 1375, X2,2019,26972,Automatic,123,Petrol,145,38.7,2.0 1376, X2,2019,26972,Automatic,123,Petrol,145,38.7,2.0 1377, X2,2019,26972,Automatic,123,Petrol,145,38.7,2.0 1378, X2,2019,26972,Automatic,123,Petrol,145,38.7,2.0 1379, 1 Series,2017,15998,Semi-Auto,32317,Diesel,30,65.7,2.0 1380, 3 Series,2015,15698,Semi-Auto,47167,Diesel,125,57.6,3.0 1381, 3 Series,2016,15621,Manual,32927,Diesel,125,60.1,2.0 1382, 2 Series,2019,22646,Manual,123,Petrol,145,52.3,1.5 1383, 2 Series,2019,22646,Manual,123,Petrol,145,52.3,1.5 1384, X2,2019,26972,Automatic,123,Petrol,145,38.7,2.0 1385, X2,2019,26972,Automatic,123,Petrol,145,38.7,2.0 1386, X2,2019,26972,Automatic,123,Petrol,145,38.7,2.0 1387, X2,2019,26972,Automatic,123,Petrol,145,38.7,2.0 1388, X2,2019,26972,Automatic,123,Petrol,145,38.7,2.0 1389, X2,2019,26972,Automatic,123,Petrol,145,38.7,2.0 1390, X2,2019,26972,Automatic,123,Petrol,145,38.7,2.0 1391, X2,2019,26972,Automatic,123,Petrol,145,38.7,2.0 1392, 1 Series,2014,11399,Semi-Auto,56926,Diesel,30,64.2,2.0 1393, 1 Series,2016,11010,Manual,32068,Diesel,20,72.4,1.5 1394, 3 Series,2015,15570,Automatic,53669,Diesel,160,51.4,3.0 1395, 1 Series,2016,14497,Manual,9574,Diesel,30,62.8,2.0 1396, 3 Series,2018,18010,Manual,36039,Diesel,145,58.9,2.0 1397, 1 Series,2015,10499,Manual,60000,Diesel,20,70.6,1.5 1398, X3,2019,30200,Semi-Auto,17647,Petrol,145,30.4,2.0 1399, 2 Series,2019,22646,Manual,123,Petrol,145,52.3,1.5 1400, 2 Series,2019,22646,Manual,123,Petrol,145,52.3,1.5 1401, 2 Series,2019,22646,Manual,123,Petrol,145,52.3,1.5 1402, 2 Series,2019,22646,Manual,123,Petrol,145,52.3,1.5 1403, X1,2019,28180,Automatic,123,Petrol,145,39.8,1.5 1404, X1,2019,28190,Automatic,123,Petrol,145,39.8,1.5 1405, X1,2019,27440,Manual,123,Petrol,145,39.8,1.5 1406, X1,2019,27440,Manual,123,Petrol,145,39.8,1.5 1407, 4 Series,2019,30331,Automatic,123,Petrol,145,48.7,2.0 1408, 4 Series,2019,35045,Automatic,123,Diesel,145,50.4,3.0 1409, 4 Series,2019,29631,Automatic,123,Diesel,145,65.7,2.0 1410, 4 Series,2019,28088,Automatic,123,Petrol,145,48.7,2.0 1411, 5 Series,2020,27090,Semi-Auto,3168,Hybrid,145,49.6,2.0 1412, 4 Series,2019,32810,Automatic,8647,Petrol,145,41.5,3.0 1413, X2,2019,25820,Automatic,6106,Diesel,145,61.4,2.0 1414, X4,2019,41530,Automatic,4000,Diesel,145,37.2,3.0 1415, 2 Series,2019,23489,Automatic,123,Diesel,145,65.7,2.0 1416, X3,2019,32376,Automatic,2489,Diesel,145,54.3,2.0 1417, 5 Series,2019,30890,Automatic,123,Petrol,145,47.9,2.0 1418, 4 Series,2019,29361,Automatic,123,Diesel,145,65.7,2.0 1419, 5 Series,2019,29830,Automatic,123,Petrol,145,50.4,2.0 1420, X1,2019,23991,Manual,4480,Petrol,145,51.4,1.5 1421, 1 Series,2019,24160,Manual,5181,Petrol,145,41.5,1.5 1422, 1 Series,2019,31070,Automatic,6000,Petrol,145,34.5,2.0 1423, 1 Series,2020,29980,Semi-Auto,4362,Diesel,145,48.7,2.0 1424, 4 Series,2016,19742,Semi-Auto,21660,Petrol,160,45.6,2.0 1425, 5 Series,2014,15532,Semi-Auto,36919,Diesel,125,60.1,2.0 1426, X2,2019,25907,Manual,151,Diesel,150,53.3,2.0 1427, 1 Series,2017,22390,Semi-Auto,18511,Petrol,145,39.8,3.0 1428, 5 Series,2015,13980,Semi-Auto,29719,Diesel,20,68.9,2.0 1429, 2 Series,2019,21356,Semi-Auto,15006,Petrol,145,47.9,2.0 1430, 2 Series,2019,21030,Automatic,7738,Diesel,145,49.6,2.0 1431, 3 Series,2019,28820,Manual,123,Diesel,145,56.5,2.0 1432, 2 Series,2019,21858,Manual,123,Diesel,145,61.4,2.0 1433, 1 Series,2017,20481,Manual,25000,Petrol,145,36.2,3.0 1434, 5 Series,2017,25372,Semi-Auto,8500,Diesel,145,60.1,2.0 1435, 4 Series,2020,32148,Semi-Auto,16,Diesel,145,60.1,2.0 1436, 4 Series,2014,14291,Manual,29000,Petrol,200,40.9,2.0 1437, X2,2019,29770,Automatic,123,Diesel,145,48.7,2.0 1438, X2,2019,30571,Automatic,123,Diesel,145,58.9,2.0 1439, 2 Series,2019,23322,Manual,123,Petrol,145,52.3,1.5 1440, 5 Series,2017,20762,Semi-Auto,17590,Diesel,145,68.9,2.0 1441, 1 Series,2019,26720,Manual,3710,Diesel,145,53.3,2.0 1442, 2 Series,2019,25260,Semi-Auto,3697,Petrol,145,48.7,2.0 1443, X3,2019,56240,Automatic,6000,Petrol,145,24.8,3.0 1444, 4 Series,2019,24132,Semi-Auto,4000,Diesel,150,65.7,2.0 1445, 2 Series,2019,23322,Manual,123,Petrol,145,52.3,1.5 1446, 3 Series,2014,14972,Semi-Auto,33287,Diesel,145,55.4,2.0 1447, 4 Series,2019,29361,Automatic,123,Diesel,145,65.7,2.0 1448, 4 Series,2019,29361,Automatic,123,Diesel,145,65.7,2.0 1449, X2,2019,25526,Semi-Auto,5161,Diesel,145,61.4,2.0 1450, 5 Series,2019,37220,Automatic,123,Diesel,145,60.1,3.0 1451, X2,2019,22790,Automatic,8477,Diesel,145,49.6,2.0 1452, 3 Series,2019,34370,Automatic,123,Diesel,145,50.4,2.0 1453, 3 Series,2019,34370,Automatic,123,Diesel,145,50.4,2.0 1454, 1 Series,2019,27860,Automatic,14147,Diesel,145,51.4,2.0 1455, 3 Series,2019,35250,Automatic,123,Diesel,145,47.9,3.0 1456, 2 Series,2019,24269,Automatic,123,Diesel,145,49.6,2.0 1457, 1 Series,2019,27410,Automatic,123,Diesel,145,51.4,2.0 1458, 3 Series,2019,37340,Automatic,123,Diesel,145,47.9,3.0 1459, 2 Series,2019,22646,Manual,123,Petrol,145,52.3,1.5 1460, 2 Series,2019,22646,Manual,123,Petrol,145,52.3,1.5 1461, 2 Series,2019,22646,Manual,123,Petrol,145,52.3,1.5 1462, 2 Series,2019,22646,Manual,123,Petrol,145,52.3,1.5 1463, 2 Series,2019,22646,Manual,123,Petrol,145,52.3,1.5 1464, 2 Series,2019,22646,Manual,123,Petrol,145,52.3,1.5 1465, 2 Series,2019,22646,Manual,123,Petrol,145,52.3,1.5 1466, 2 Series,2019,22646,Manual,123,Petrol,145,52.3,1.5 1467, 2 Series,2019,21773,Automatic,123,Diesel,145,49.6,2.0 1468, 3 Series,2019,31790,Automatic,123,Petrol,145,42.2,2.0 1469, 4 Series,2016,26442,Semi-Auto,19344,Petrol,235,39.2,3.0 1470, 5 Series,2018,24862,Automatic,10500,Diesel,145,65.7,2.0 1471, 6 Series,2017,24622,Automatic,26000,Diesel,145,49.6,3.0 1472, X4,2019,47480,Automatic,123,Petrol,145,26.9,3.0 1473, X4,2019,47480,Automatic,123,Petrol,145,26.9,3.0 1474, 3 Series,2019,29450,Automatic,123,Diesel,145,54.3,2.0 1475, 2 Series,2019,21773,Automatic,123,Diesel,145,49.6,2.0 1476, 1 Series,2019,24142,Semi-Auto,16000,Petrol,145,39.8,3.0 1477, 2 Series,2019,22773,Automatic,123,Diesel,145,49.6,2.0 1478, 3 Series,2019,27900,Manual,123,Diesel,145,61.4,2.0 1479, 3 Series,2019,20966,Automatic,9582,Petrol,145,48.7,2.0 1480, 5 Series,2015,17002,Semi-Auto,29116,Diesel,30,62.8,2.0 1481, M4,2018,38776,Manual,8869,Petrol,145,32.1,3.0 1482, X3,2019,32822,Semi-Auto,4550,Diesel,145,54.3,2.0 1483, 2 Series,2017,22991,Semi-Auto,23730,Petrol,200,39.8,3.0 1484, X1,2019,23516,Automatic,4783,Petrol,145,46.3,1.5 1485, 2 Series,2019,26706,Semi-Auto,49,Diesel,145,57.7,2.0 1486, X3,2019,32226,Automatic,4997,Petrol,145,30.4,2.0 1487, 3 Series,2019,33990,Automatic,5621,Diesel,145,52.3,2.0 1488, 1 Series,2018,17595,Semi-Auto,26268,Petrol,145,47.9,2.0 1489, X1,2016,15500,Semi-Auto,52061,Diesel,30,65.7,2.0 1490, 2 Series,2019,21176,Manual,123,Diesel,145,65.7,2.0 1491, 1 Series,2019,21480,Automatic,123,Diesel,145,67.3,2.0 1492, X2,2019,26972,Automatic,123,Petrol,145,38.7,2.0 1493, X3,2019,38330,Automatic,123,Diesel,145,54.3,2.0 1494, X1,2017,19500,Semi-Auto,20935,Diesel,125,60.1,2.0 1495, 3 Series,2014,17000,Automatic,67455,Diesel,160,50.4,3.0 1496, 1 Series,2016,14500,Manual,21646,Petrol,125,52.3,1.5 1497, 3 Series,2017,22998,Semi-Auto,25585,Diesel,145,51.4,3.0 1498, 1 Series,2017,19498,Manual,25163,Petrol,145,36.2,3.0 1499, 1 Series,2017,21498,Semi-Auto,21564,Petrol,145,39.8,3.0 1500, 3 Series,2016,15998,Semi-Auto,67915,Diesel,160,51.4,3.0 1501, 4 Series,2017,19298,Semi-Auto,27119,Diesel,145,65.7,2.0 1502, X1,2017,20998,Semi-Auto,12624,Diesel,150,57.6,2.0 1503, X1,2016,14998,Semi-Auto,78843,Diesel,150,55.4,2.0 1504, 2 Series,2019,23462,Automatic,123,Diesel,145,67.3,2.0 1505, 2 Series,2019,22646,Manual,123,Petrol,145,52.3,1.5 1506, 2 Series,2019,28861,Automatic,123,Petrol,145,39.8,3.0 1507, 2 Series,2019,22292,Manual,123,Diesel,145,64.2,2.0 1508, 2 Series,2019,22770,Manual,123,Diesel,145,64.2,2.0 1509, 3 Series,2019,32060,Automatic,123,Diesel,145,60.1,2.0 1510, 1 Series,2019,20760,Automatic,123,Petrol,145,48.7,2.0 1511, X5,2019,53150,Automatic,123,Diesel,145,37.7,3.0 1512, 2 Series,2019,23159,Automatic,123,Petrol,145,50.4,1.5 1513, 2 Series,2019,21176,Manual,123,Diesel,145,65.7,2.0 1514, 5 Series,2019,41550,Automatic,123,Petrol,145,39.2,3.0 1515, 2 Series,2019,22291,Manual,123,Diesel,145,64.2,2.0 1516, 2 Series,2019,22770,Manual,123,Diesel,145,64.2,2.0 1517, 2 Series,2019,23966,Automatic,123,Diesel,145,67.3,2.0 1518, 2 Series,2019,23976,Automatic,20,Diesel,145,67.3,2.0 1519, 1 Series,2019,19840,Semi-Auto,5077,Petrol,145,55.5,1.5 1520, X3,2019,33313,Semi-Auto,4999,Diesel,145,54.3,2.0 1521, X5,2019,49403,Semi-Auto,100,Diesel,145,37.7,3.0 1522, 3 Series,2019,40602,Semi-Auto,3980,Petrol,145,34.9,3.0 1523, 1 Series,2017,21498,Semi-Auto,19869,Petrol,150,39.8,3.0 1524, 3 Series,2017,15698,Semi-Auto,21545,Petrol,150,54.3,1.5 1525, 1 Series,2015,10998,Manual,23241,Diesel,0,83.1,1.5 1526, 1 Series,2016,14000,Manual,14574,Diesel,20,70.6,1.5 1527, 4 Series,2017,20320,Automatic,16876,Diesel,125,58.9,2.0 1528, 2 Series,2015,9995,Manual,37500,Diesel,20,68.9,2.0 1529, 5 Series,2017,18491,Semi-Auto,39128,Diesel,125,60.1,2.0 1530, 1 Series,2014,12290,Manual,32014,Diesel,30,65.7,2.0 1531, 3 Series,2017,19192,Semi-Auto,18014,Diesel,150,60.1,2.0 1532, 4 Series,2017,20892,Semi-Auto,18278,Diesel,150,60.1,2.0 1533, 1 Series,2017,21162,Semi-Auto,20508,Petrol,200,39.8,3.0 1534, 3 Series,2019,36531,Semi-Auto,6850,Petrol,145,40.4,2.0 1535, X2,2019,27982,Semi-Auto,4264,Petrol,145,39.2,2.0 1536, 1 Series,2017,20990,Semi-Auto,29934,Petrol,145,39.8,3.0 1537, 3 Series,2016,16990,Semi-Auto,44563,Diesel,125,60.1,2.0 1538, 1 Series,2017,17990,Semi-Auto,25877,Diesel,125,60.1,2.0 1539, 1 Series,2014,9692,Manual,34000,Petrol,125,52.3,1.6 1540, X3,2019,33990,Automatic,1926,Diesel,145,54.3,2.0 1541, 2 Series,2019,27990,Semi-Auto,3736,Diesel,145,48.7,2.0 1542, Z4,2019,31990,Automatic,11223,Petrol,145,37.2,2.0 1543, 4 Series,2013,12982,Semi-Auto,47852,Petrol,145,47.1,2.0 1544, 2 Series,2016,17336,Automatic,23030,Diesel,145,55.4,2.0 1545, 4 Series,2019,26922,Semi-Auto,4068,Diesel,150,65.7,2.0 1546, 3 Series,2015,15552,Semi-Auto,39029,Diesel,125,58.9,2.0 1547, X5,2019,50832,Semi-Auto,100,Diesel,145,37.7,3.0 1548, X1,2017,21312,Automatic,11253,Diesel,125,57.6,2.0 1549, X4,2019,42982,Automatic,9151,Diesel,145,37.2,3.0 1550, X1,2019,26970,Semi-Auto,10730,Diesel,145,50.4,2.0 1551, 4 Series,2016,18512,Semi-Auto,21470,Diesel,30,65.7,2.0 1552, 1 Series,2014,12272,Semi-Auto,31000,Diesel,20,67.3,2.0 1553, 5 Series,2016,15882,Semi-Auto,44000,Diesel,125,60.1,2.0 1554, 2 Series,2014,12302,Manual,31676,Diesel,125,58.9,2.0 1555, X1,2013,8795,Manual,70645,Diesel,165,51.4,2.0 1556, 2 Series,2018,15995,Semi-Auto,21815,Diesel,150,68.9,2.0 1557, 3 Series,2014,16500,Automatic,67455,Diesel,160,50.4,3.0 1558, 2 Series,2016,10465,Manual,16228,Diesel,20,68.9,2.0 1559, 2 Series,2019,18480,Manual,2771,Petrol,145,44.1,1.5 1560, 4 Series,2019,25320,Automatic,5035,Diesel,145,65.7,2.0 1561, 2 Series,2019,24500,Manual,2631,Diesel,145,55.4,2.0 1562, 2 Series,2019,21850,Manual,3000,Petrol,145,51.4,1.5 1563, 4 Series,2019,32991,Semi-Auto,5491,Petrol,145,44.8,2.0 1564, X2,2019,29770,Automatic,123,Diesel,145,48.7,2.0 1565, X2,2019,29374,Automatic,123,Diesel,145,50.4,2.0 1566, X2,2019,30361,Automatic,123,Diesel,145,48.7,2.0 1567, X2,2019,29375,Automatic,123,Diesel,145,50.4,2.0 1568, 3 Series,2019,33610,Automatic,123,Petrol,145,41.5,2.0 1569, X3,2017,20340,Automatic,30443,Diesel,145,54.3,2.0 1570, 3 Series,2018,18300,Automatic,30214,Diesel,145,62.8,2.0 1571, 2 Series,2017,20499,Semi-Auto,14612,Petrol,145,38.2,3.0 1572, X1,2014,11331,Manual,30506,Diesel,160,51.4,2.0 1573, 4 Series,2014,10749,Automatic,70116,Diesel,125,61.4,2.0 1574, 3 Series,2015,13490,Semi-Auto,63981,Diesel,30,64.2,2.0 1575, 5 Series,2015,11895,Semi-Auto,69356,Diesel,20,68.9,2.0 1576, 4 Series,2015,14395,Manual,42745,Diesel,30,62.8,2.0 1577, X1,2016,18795,Automatic,14868,Petrol,160,44.8,2.0 1578, 1 Series,2017,20750,Automatic,18347,Petrol,200,39.8,3.0 1579, 3 Series,2017,16970,Manual,24015,Diesel,125,60.1,2.0 1580, 4 Series,2017,21167,Semi-Auto,19041,Diesel,145,55.4,3.0 1581, 4 Series,2016,17870,Semi-Auto,13298,Petrol,200,42.8,2.0 1582, Z4,2015,14191,Manual,19109,Petrol,200,41.5,2.0 1583, 4 Series,2018,20397,Automatic,11068,Diesel,145,65.7,2.0 1584, X1,2016,17397,Manual,16243,Diesel,125,58.9,2.0 1585, 3 Series,2017,20962,Semi-Auto,30607,Diesel,160,51.4,3.0 1586, 3 Series,2016,20432,Semi-Auto,9939,Diesel,160,51.4,3.0 1587, 2 Series,2017,15552,Semi-Auto,56718,Diesel,145,65.7,2.0 1588, 1 Series,2016,13212,Manual,13778,Petrol,30,56.5,1.5 1589, 3 Series,2019,26832,Semi-Auto,4039,Petrol,145,42.2,2.0 1590, 3 Series,2019,27372,Semi-Auto,6336,Diesel,145,52.3,2.0 1591, 1 Series,2013,12000,Semi-Auto,17988,Petrol,150,48.7,1.6 1592, 1 Series,2016,10990,Manual,51000,Diesel,20,68.9,2.0 1593, 3 Series,2015,13990,Manual,26948,Diesel,30,61.4,2.0 1594, 4 Series,2017,21490,Semi-Auto,48957,Diesel,145,50.4,3.0 1595, 2 Series,2016,12460,Manual,24158,Petrol,30,55.4,1.5 1596, 1 Series,2016,9990,Manual,71603,Diesel,20,70.6,1.5 1597, 1 Series,2018,14390,Manual,12063,Diesel,150,50.4,2.0 1598, 2 Series,2016,18950,Automatic,22537,Petrol,260,37.2,3.0 1599, 4 Series,2014,13130,Automatic,46833,Petrol,145,47.1,2.0 1600, 3 Series,2018,21980,Semi-Auto,9684,Petrol,145,48.7,2.0 1601, 5 Series,2016,15991,Semi-Auto,21476,Diesel,30,62.8,2.0 1602, X3,2016,18991,Semi-Auto,39365,Diesel,145,54.3,2.0 1603, X1,2017,18991,Semi-Auto,29317,Diesel,145,57.6,2.0 1604, 1 Series,2015,14999,Manual,40052,Petrol,300,35.3,3.0 1605, 3 Series,2016,15510,Semi-Auto,40417,Diesel,125,60.1,2.0 1606, 1 Series,2017,22995,Semi-Auto,11950,Petrol,145,39.8,3.0 1607, 3 Series,2018,18995,Semi-Auto,31278,Diesel,145,64.2,2.0 1608, 2 Series,2016,19372,Semi-Auto,27584,Petrol,260,35.8,3.0 1609, 5 Series,2016,15122,Semi-Auto,37390,Diesel,20,68.9,2.0 1610, X3,2016,21856,Semi-Auto,20094,Diesel,145,54.3,2.0 1611, 1 Series,2015,14690,Semi-Auto,23234,Petrol,125,54.3,1.5 1612, X3,2013,13690,Semi-Auto,30400,Diesel,165,50.4,2.0 1613, 3 Series,2015,14490,Semi-Auto,28425,Diesel,125,61.4,2.0 1614, 3 Series,2016,15490,Semi-Auto,38000,Diesel,30,64.2,2.0 1615, 3 Series,2018,19495,Automatic,23830,Diesel,145,60.1,2.0 1616, X1,2016,18995,Automatic,24299,Diesel,145,55.4,2.0 1617, 3 Series,2013,8995,Manual,67000,Diesel,20,68.9,2.0 1618, X1,2017,15732,Manual,23575,Diesel,20,68.9,2.0 1619, 2 Series,2019,21402,Manual,6000,Diesel,150,51.4,2.0 1620, 3 Series,2019,27472,Semi-Auto,8200,Petrol,150,42.2,2.0 1621, X2,2019,26612,Semi-Auto,3000,Petrol,150,38.7,2.0 1622, X5,2019,48090,Automatic,123,Diesel,145,36.7,3.0 1623, X5,2019,48090,Automatic,123,Diesel,145,36.7,3.0 1624, X5,2019,48090,Automatic,123,Diesel,145,36.7,3.0 1625, 1 Series,2014,14112,Semi-Auto,64995,Petrol,235,37.7,3.0 1626, 2 Series,2016,18412,Semi-Auto,22459,Diesel,145,55.4,2.0 1627, 3 Series,2014,13252,Semi-Auto,41692,Diesel,30,62.8,2.0 1628, 5 Series,2017,23920,Automatic,24232,Diesel,145,53.3,3.0 1629, i8,2019,74226,Automatic,10,Hybrid,135,141.2,1.5 1630, 5 Series,2014,12630,Semi-Auto,80826,Diesel,30,62.8,2.0 1631, 4 Series,2018,20462,Manual,24368,Petrol,150,42.8,2.0 1632, X5,2016,32809,Automatic,25898,Diesel,205,47.1,3.0 1633, X6,2018,37900,Semi-Auto,11500,Diesel,150,40.9,3.0 1634, 4 Series,2018,20397,Automatic,12421,Diesel,145,65.7,2.0 1635, 3 Series,2018,20940,Automatic,9200,Petrol,145,48.7,2.0 1636, 2 Series,2018,15297,Automatic,9754,Petrol,145,40.9,1.5 1637, 1 Series,2020,32451,Semi-Auto,206,Diesel,145,48.7,2.0 1638, 4 Series,2020,32748,Semi-Auto,16,Diesel,145,60.1,2.0 1639, 4 Series,2020,35100,Semi-Auto,16,Diesel,145,51.4,3.0 1640, X3,2015,22202,Semi-Auto,15712,Diesel,145,54.3,2.0 1641, 3 Series,2018,22162,Semi-Auto,14344,Diesel,145,64.2,2.0 1642, 4 Series,2019,28532,Semi-Auto,3030,Diesel,145,58.9,2.0 1643, 2 Series,2019,20949,Manual,123,Petrol,145,42.8,1.5 1644, 5 Series,2019,38260,Automatic,123,Diesel,145,60.1,3.0 1645, X2,2019,34368,Automatic,123,Petrol,145,34.0,2.0 1646, X2,2019,34368,Automatic,123,Petrol,145,34.0,2.0 1647, X2,2019,34368,Automatic,123,Petrol,145,34.0,2.0 1648, X1,2019,28560,Manual,123,Diesel,145,68.9,2.0 1649, 2 Series,2019,25671,Automatic,123,Petrol,145,47.9,2.0 1650, 1 Series,2016,18112,Semi-Auto,18457,Diesel,125,60.1,2.0 1651, X6,2018,40092,Semi-Auto,11637,Diesel,145,44.8,3.0 1652, X2,2019,28266,Semi-Auto,2367,Petrol,145,39.2,2.0 1653, 4 Series,2019,32170,Automatic,3000,Petrol,145,41.5,3.0 1654, X1,2019,30850,Semi-Auto,7778,Diesel,145,50.4,2.0 1655, X3,2019,42830,Automatic,8911,Diesel,145,36.7,3.0 1656, 1 Series,2017,19548,Manual,20485,Petrol,145,36.2,3.0 1657, 1 Series,2015,11209,Manual,41372,Diesel,20,72.4,1.5 1658, X2,2019,33520,Semi-Auto,3235,Petrol,145,34.0,2.0 1659, X4,2019,37540,Automatic,4002,Diesel,145,42.8,2.0 1660, 2 Series,2019,23920,Manual,3156,Diesel,145,60.1,2.0 1661, 4 Series,2019,28970,Semi-Auto,5402,Diesel,145,60.1,2.0 1662, 3 Series,2016,16892,Semi-Auto,24435,Diesel,30,64.2,2.0 1663, 4 Series,2019,26352,Semi-Auto,3334,Diesel,145,65.7,2.0 1664, X4,2019,39263,Semi-Auto,6170,Diesel,145,40.9,3.0 1665, 6 Series,2019,34442,Semi-Auto,16935,Diesel,145,47.9,3.0 1666, X1,2017,17491,Manual,25818,Diesel,125,60.1,2.0 1667, 2 Series,2018,17722,Manual,19571,Petrol,145,52.3,1.5 1668, 2 Series,2020,35440,Semi-Auto,600,Petrol,145,36.2,2.0 1669, X2,2019,28955,Semi-Auto,5313,Diesel,145,48.7,2.0 1670, X3,2019,57680,Automatic,1405,Petrol,145,24.8,3.0 1671, X7,2019,67120,Automatic,10,Diesel,145,33.6,3.0 1672, 3 Series,2019,27596,Automatic,12608,Diesel,145,52.3,2.0 1673, 1 Series,2019,24600,Semi-Auto,7072,Petrol,145,40.4,1.5 1674, 3 Series,2019,39600,Automatic,10850,Diesel,145,43.5,3.0 1675, 2 Series,2019,25460,Semi-Auto,5440,Diesel,145,60.1,2.0 1676, 5 Series,2019,36380,Automatic,5799,Diesel,145,53.3,3.0 1677, 3 Series,2019,26580,Semi-Auto,13216,Diesel,145,60.1,2.0 1678, 2 Series,2019,19880,Semi-Auto,7916,Diesel,145,51.4,2.0 1679, 5 Series,2017,16202,Semi-Auto,52590,Diesel,125,60.1,2.0 1680, X1,2017,16514,Automatic,60792,Diesel,145,55.4,2.0 1681, X5,2016,31362,Automatic,34356,Diesel,200,47.1,3.0 1682, X4,2019,42460,Automatic,2188,Petrol,145,26.9,3.0 1683, 5 Series,2019,38050,Semi-Auto,2269,Diesel,145,51.4,3.0 1684, 4 Series,2019,27990,Semi-Auto,1000,Diesel,145,56.5,3.0 1685, X5,2019,49990,Semi-Auto,751,Petrol,145,27.2,3.0 1686, X3,2016,20990,Semi-Auto,32040,Diesel,145,54.3,2.0 1687, 4 Series,2020,30137,Semi-Auto,16,Diesel,150,60.1,2.0 1688, 2 Series,2019,21773,Automatic,123,Diesel,145,49.6,2.0 1689, 1 Series,2019,20600,Automatic,143,Diesel,145,70.6,2.0 1690, 2 Series,2019,21773,Automatic,123,Diesel,145,49.6,2.0 1691, 2 Series,2019,20638,Manual,123,Diesel,145,51.4,2.0 1692, 2 Series,2019,20638,Manual,123,Diesel,145,51.4,2.0 1693, 2 Series,2019,22773,Automatic,153,Diesel,145,49.6,2.0 1694, X4,2017,22973,Semi-Auto,46363,Diesel,145,54.3,2.0 1695, 5 Series,2017,21995,Automatic,18820,Diesel,145,65.7,2.0 1696, X1,2016,15500,Semi-Auto,52061,Diesel,30,65.7,2.0 1697, 1 Series,2019,25976,Manual,1357,Diesel,145,53.3,2.0 1698, X2,2019,28150,Semi-Auto,6950,Diesel,145,58.9,2.0 1699, X4,2019,37990,Automatic,8526,Diesel,145,40.9,3.0 1700, 2 Series,2019,21600,Semi-Auto,5000,Diesel,145,48.7,2.0 1701, 5 Series,2019,26566,Automatic,6384,Diesel,145,62.8,2.0 1702, 2 Series,2019,21460,Manual,7710,Diesel,145,60.1,2.0 1703, 1 Series,2014,9352,Manual,63669,Diesel,20,68.9,2.0 1704, X7,2019,76970,Semi-Auto,10,Diesel,145,31.4,3.0 1705, 2 Series,2020,23380,Semi-Auto,666,Diesel,145,51.4,2.0 1706, M4,2020,48630,Semi-Auto,99,Petrol,145,34.0,3.0 1707, 4 Series,2018,21792,Automatic,9807,Diesel,145,65.7,2.0 1708, 3 Series,2019,28013,Semi-Auto,7165,Petrol,145,41.5,2.0 1709, X3,2019,34222,Semi-Auto,2973,Petrol,145,30.4,2.0 1710, 2 Series,2019,21990,Semi-Auto,2500,Petrol,145,39.2,1.5 1711, 4 Series,2019,24990,Semi-Auto,1000,Petrol,145,48.7,2.0 1712, X3,2016,18995,Semi-Auto,34274,Diesel,145,54.3,2.0 1713, X3,2017,26692,Automatic,18673,Diesel,145,47.1,3.0 1714, 4 Series,2019,31175,Manual,123,Petrol,145,46.3,2.0 1715, 4 Series,2019,31356,Automatic,123,Petrol,145,48.7,2.0 1716, 1 Series,2017,15500,Manual,53248,Diesel,145,65.7,2.0 1717, 3 Series,2014,18000,Automatic,67455,Diesel,160,50.4,3.0 1718, 1 Series,2016,12965,Automatic,23899,Petrol,30,58.9,1.5 1719, 1 Series,2013,10965,Automatic,37808,Diesel,30,64.2,2.0 1720, 3 Series,2019,19965,Semi-Auto,14153,Diesel,145,64.2,2.0 1721, X1,2016,17498,Manual,19060,Diesel,125,58.9,2.0 1722, X1,2016,17367,Manual,18361,Diesel,125,58.9,2.0 1723, X1,2019,24790,Automatic,3414,Petrol,145,37.7,2.0 1724, 2 Series,2019,24240,Semi-Auto,1415,Diesel,145,49.6,2.0 1725, X3,2015,16680,Semi-Auto,70864,Diesel,150,54.3,2.0 1726, 1 Series,2017,12390,Semi-Auto,42852,Diesel,20,72.4,1.5 1727, 5 Series,2016,14890,Semi-Auto,29840,Diesel,30,65.7,2.0 1728, 1 Series,2019,22990,Manual,5023,Diesel,145,53.3,2.0 1729, 2 Series,2019,18260,Manual,5328,Petrol,145,44.1,1.5 1730, 1 Series,2019,24990,Automatic,8458,Diesel,145,51.4,2.0 1731, X6,2019,55990,Automatic,6222,Diesel,145,34.9,3.0 1732, 4 Series,2019,22810,Automatic,5984,Petrol,145,48.7,2.0 1733, 2 Series,2019,21390,Automatic,14380,Diesel,145,47.1,2.0 1734, 2 Series,2019,19850,Automatic,10649,Diesel,145,49.6,2.0 1735, 4 Series,2019,26820,Semi-Auto,8598,Diesel,145,60.1,2.0 1736, 3 Series,2019,27770,Semi-Auto,4050,Diesel,145,60.1,2.0 1737, 3 Series,2013,8480,Manual,48681,Petrol,150,47.9,1.6 1738, X1,2016,17490,Manual,20516,Diesel,125,58.9,2.0 1739, 1 Series,2017,17160,Automatic,26213,Petrol,145,47.9,2.0 1740, 2 Series,2017,16491,Semi-Auto,22080,Petrol,145,48.7,2.0 1741, 4 Series,2019,25910,Semi-Auto,5029,Petrol,145,48.7,2.0 1742, X1,2019,27380,Semi-Auto,1940,Diesel,145,65.7,2.0 1743, X6,2019,64690,Automatic,3000,Petrol,145,26.4,3.0 1744, M2,2019,48200,Automatic,1500,Petrol,145,29.1,3.0 1745, X6,2019,68522,Semi-Auto,11330,Diesel,145,33.2,3.0 1746, 3 Series,2019,25560,Semi-Auto,3000,Diesel,145,62.8,2.0 1747, 5 Series,2019,30570,Automatic,3067,Hybrid,145,49.6,2.0 1748, X2,2019,32690,Semi-Auto,3000,Diesel,145,58.9,2.0 1749, 3 Series,2019,27998,Semi-Auto,11658,Diesel,150,48.7,2.0 1750, 1 Series,2017,20500,Semi-Auto,25190,Petrol,145,39.8,3.0 1751, 1 Series,2017,21995,Semi-Auto,23000,Petrol,145,39.8,3.0 1752, 1 Series,2017,20998,Semi-Auto,14992,Petrol,145,39.8,3.0 1753, 3 Series,2015,16365,Semi-Auto,48812,Diesel,160,51.4,3.0 1754, 4 Series,2019,20995,Automatic,6004,Diesel,145,65.7,2.0 1755, X6,2013,15380,Semi-Auto,71522,Diesel,300,38.2,3.0 1756, 3 Series,2017,14691,Semi-Auto,38326,Petrol,145,51.4,2.0 1757, 1 Series,2014,9491,Manual,25174,Diesel,20,68.9,2.0 1758, 3 Series,2016,10591,Manual,62674,Diesel,20,72.4,2.0 1759, 2 Series,2018,15700,Manual,6889,Petrol,145,57.6,1.5 1760, 3 Series,2016,12207,Automatic,55293,Diesel,20,74.3,2.0 1761, 3 Series,2017,14430,Manual,26818,Petrol,145,49.6,1.5 1762, 3 Series,2017,19645,Semi-Auto,27900,Diesel,150,64.2,2.0 1763, 3 Series,2018,19765,Semi-Auto,24965,Petrol,145,48.7,2.0 1764, 3 Series,2015,12245,Semi-Auto,27721,Diesel,30,64.2,2.0 1765, 1 Series,2016,10950,Manual,30341,Diesel,20,72.4,1.5 1766, 1 Series,2013,6491,Manual,73000,Diesel,0,74.3,1.6 1767, 2 Series,2017,15991,Semi-Auto,12887,Petrol,145,55.4,1.5 1768, 2 Series,2014,13342,Manual,36849,Petrol,160,44.8,2.0 1769, 5 Series,2018,28000,Semi-Auto,25411,Diesel,145,60.1,3.0 1770, 3 Series,2014,10100,Manual,41738,Diesel,30,62.8,2.0 1771, X6,2020,65352,Semi-Auto,3158,Petrol,145,26.4,3.0 1772, X2,2019,31084,Semi-Auto,3096,Petrol,145,36.2,2.0 1773, 4 Series,2018,18210,Manual,17672,Petrol,145,46.3,2.0 1774, 4 Series,2016,19000,Manual,10267,Petrol,200,43.5,2.0 1775, X1,2016,17770,Semi-Auto,34290,Diesel,125,57.6,2.0 1776, X1,2019,19980,Manual,7113,Petrol,145,51.4,1.5 1777, 1 Series,2017,20750,Semi-Auto,16977,Petrol,200,39.8,3.0 1778, 5 Series,2016,13465,Semi-Auto,71203,Diesel,125,60.1,2.0 1779, 1 Series,2016,13998,Semi-Auto,35441,Diesel,30,65.7,2.0 1780, 3 Series,2017,14498,Manual,24719,Diesel,150,67.3,2.0 1781, 3 Series,2019,24998,Semi-Auto,13957,Diesel,150,52.3,2.0 1782, X1,2016,16000,Manual,37201,Diesel,125,58.9,2.0 1783, 3 Series,2017,17998,Semi-Auto,24253,Diesel,150,64.2,2.0 1784, 1 Series,2015,12998,Semi-Auto,32435,Diesel,20,68.9,1.5 1785, 2 Series,2015,16342,Semi-Auto,31383,Petrol,160,47.1,2.0 1786, X1,2014,10872,Manual,50716,Diesel,160,51.4,2.0 1787, 4 Series,2016,19642,Semi-Auto,23575,Diesel,125,60.1,2.0 1788, 7 Series,2017,33682,Semi-Auto,6431,Diesel,145,54.3,3.0 1789, 3 Series,2013,14612,Automatic,41114,Diesel,125,57.6,3.0 1790, 4 Series,2015,18272,Semi-Auto,33864,Diesel,125,60.1,2.0 1791, 2 Series,2017,19212,Automatic,13301,Diesel,145,57.7,2.0 1792, 3 Series,2014,11520,Manual,62828,Diesel,125,61.4,2.0 1793, 3 Series,2014,11128,Manual,67232,Diesel,125,57.6,2.0 1794, 1 Series,2015,9681,Manual,40176,Petrol,145,50.4,1.6 1795, 1 Series,2017,12290,Manual,31268,Diesel,150,72.4,1.5 1796, 2 Series,2016,16322,Semi-Auto,47254,Diesel,125,61.4,2.0 1797, 5 Series,2018,27750,Automatic,24460,Diesel,145,60.1,3.0 1798, X4,2019,42412,Semi-Auto,3414,Diesel,145,37.2,3.0 1799, M3,2017,37572,Semi-Auto,30573,Petrol,300,34.0,3.0 1800, 3 Series,2018,20732,Semi-Auto,7856,Diesel,145,64.2,2.0 1801, X3,2018,29022,Automatic,6716,Diesel,145,56.5,2.0 1802, X5,2016,33522,Automatic,51536,Diesel,235,42.8,3.0 1803, 1 Series,2019,31723,Semi-Auto,1129,Diesel,145,60.1,2.0 1804, 5 Series,2018,28992,Automatic,19625,Diesel,145,53.3,3.0 1805, 4 Series,2016,17782,Semi-Auto,34942,Diesel,30,65.7,2.0 1806, 2 Series,2016,10242,Manual,51577,Petrol,30,57.6,1.5 1807, X1,2017,17621,Semi-Auto,27531,Diesel,30,65.7,2.0 1808, 1 Series,2018,14012,Manual,17143,Petrol,150,38.7,1.5 1809, 5 Series,2019,27241,Semi-Auto,7657,Hybrid,150,49.6,2.0 1810, X5,2016,31581,Automatic,7658,Diesel,205,47.1,3.0 1811, 6 Series,2016,19916,Automatic,43525,Diesel,160,51.4,3.0 1812, 3 Series,2019,22780,Semi-Auto,11944,Petrol,145,44.8,2.0 1813, 8 Series,2019,88980,Semi-Auto,88,Petrol,145,24.4,4.4 1814, 4 Series,2019,22446,Automatic,10164,Diesel,145,65.7,2.0 1815, 4 Series,2019,24016,Automatic,4349,Diesel,145,60.1,2.0 1816, 3 Series,2017,19836,Automatic,28411,Diesel,145,51.4,3.0 1817, 2 Series,2017,15582,Semi-Auto,10556,Diesel,20,68.9,2.0 1818, 2 Series,2016,15342,Manual,37828,Petrol,205,42.8,2.0 1819, 2 Series,2019,26830,Semi-Auto,4789,Petrol,145,46.3,2.0 1820, 3 Series,2019,37980,Semi-Auto,3078,Petrol,145,34.9,3.0 1821, 4 Series,2019,22380,Semi-Auto,9846,Diesel,145,65.7,2.0 1822, X5,2019,44980,Semi-Auto,7383,Diesel,145,37.7,3.0 1823, 1 Series,2017,16980,Manual,24985,Diesel,145,70.6,1.5 1824, 2 Series,2019,23980,Semi-Auto,8452,Diesel,145,61.4,2.0 1825, 7 Series,2019,47980,Automatic,339,Petrol,145,34.5,3.0 1826, 1 Series,2018,18480,Semi-Auto,17402,Petrol,145,47.9,2.0 1827, 3 Series,2019,27280,Semi-Auto,7311,Petrol,145,42.2,2.0 1828, X1,2019,26280,Semi-Auto,3646,Petrol,145,48.7,2.0 1829, 2 Series,2019,18980,Manual,5500,Petrol,145,42.8,1.5 1830, X3,2019,35480,Semi-Auto,9000,Diesel,145,54.3,2.0 1831, 1 Series,2019,17250,Manual,6824,Petrol,145,53.3,1.5 1832, 1 Series,2019,17250,Manual,4028,Petrol,145,53.3,1.5 1833, 1 Series,2019,17250,Manual,4122,Petrol,145,53.3,1.5 1834, 1 Series,2019,17250,Manual,11699,Petrol,145,53.3,1.5 1835, 3 Series,2019,25780,Semi-Auto,7004,Petrol,145,45.6,2.0 1836, 5 Series,2019,26480,Semi-Auto,5130,Diesel,145,65.7,2.0 1837, 2 Series,2019,18980,Semi-Auto,5992,Petrol,145,50.4,2.0 1838, 3 Series,2019,40980,Semi-Auto,6250,Diesel,145,43.5,3.0 1839, 4 Series,2019,25780,Semi-Auto,9326,Diesel,145,65.7,2.0 1840, 4 Series,2019,25480,Semi-Auto,8042,Diesel,145,65.7,2.0 1841, 3 Series,2017,19480,Semi-Auto,17610,Petrol,145,48.7,2.0 1842, X3,2019,30980,Automatic,6332,Diesel,145,54.3,2.0 1843, 1 Series,2016,11980,Automatic,25204,Petrol,30,58.9,1.5 1844, X1,2017,17980,Semi-Auto,53850,Diesel,150,57.6,2.0 1845, 2 Series,2018,16980,Manual,19853,Diesel,150,64.2,2.0 1846, 3 Series,2020,39950,Semi-Auto,1204,Petrol,150,33.6,3.0 1847, 4 Series,2016,15980,Semi-Auto,66037,Diesel,30,65.7,2.0 1848, X7,2019,74480,Automatic,7278,Diesel,145,31.4,3.0 1849, X2,2019,28480,Semi-Auto,3282,Petrol,145,39.8,2.0 1850, 2 Series,2019,25780,Semi-Auto,4418,Diesel,150,48.7,2.0 1851, X1,2019,27280,Automatic,5231,Petrol,145,48.7,2.0 1852, 3 Series,2016,18980,Semi-Auto,29902,Diesel,145,53.3,3.0 1853, X3,2017,29980,Semi-Auto,25101,Diesel,150,47.9,3.0 1854, X1,2020,29970,Semi-Auto,1241,Diesel,145,60.1,2.0 1855, 1 Series,2020,28790,Semi-Auto,953,Diesel,145,51.4,2.0 1856, 1 Series,2019,24280,Manual,1947,Petrol,145,41.5,1.5 1857, 4 Series,2017,20480,Semi-Auto,26814,Diesel,145,55.4,3.0 1858, 1 Series,2016,14880,Manual,19882,Diesel,30,65.7,2.0 1859, 4 Series,2015,15480,Automatic,50145,Petrol,200,43.5,2.0 1860, 4 Series,2016,22480,Automatic,25742,Diesel,145,55.4,3.0 1861, 1 Series,2017,15280,Automatic,14709,Diesel,145,72.4,1.5 1862, 4 Series,2019,28170,Semi-Auto,9647,Diesel,145,58.9,2.0 1863, 5 Series,2017,22322,Semi-Auto,42295,Diesel,145,60.1,2.0 1864, 1 Series,2019,21670,Semi-Auto,7065,Petrol,145,42.8,1.5 1865, 1 Series,2013,11200,Semi-Auto,10239,Petrol,145,48.7,1.6 1867, X1,2017,20092,Semi-Auto,25610,Petrol,160,44.8,2.0 1868, 2 Series,2019,20190,Manual,4648,Petrol,145,42.8,1.5 1869, 3 Series,2019,32790,Automatic,3750,Diesel,145,52.3,2.0 1870, Z4,2019,32970,Automatic,467,Petrol,145,38.7,2.0 1871, 2 Series,2019,21205,Semi-Auto,9148,Petrol,145,50.4,1.5 1872, X2,2019,29325,Semi-Auto,8859,Diesel,145,50.4,2.0 1873, X1,2017,19832,Semi-Auto,15242,Diesel,145,57.6,2.0 1874, X5,2017,36980,Automatic,18231,Diesel,145,42.8,3.0 1875, X1,2015,14995,Manual,39000,Diesel,125,58.9,2.0 1876, 3 Series,2014,9698,Semi-Auto,62121,Diesel,125,60.1,2.0 1877, X1,2017,17998,Semi-Auto,41604,Diesel,150,55.4,2.0 1878, 1 Series,2017,20498,Semi-Auto,29319,Petrol,200,39.8,3.0 1879, X1,2017,22698,Automatic,3209,Petrol,160,44.8,2.0 1880, 5 Series,2014,15498,Semi-Auto,35822,Diesel,165,51.4,3.0 1881, X1,2017,20998,Semi-Auto,16216,Diesel,150,55.4,2.0 1882, X2,2019,31680,Semi-Auto,103,Diesel,145,58.9,2.0 1883, 1 Series,2019,31790,Semi-Auto,8211,Petrol,145,34.5,2.0 1884, 1 Series,2019,26413,Manual,12262,Petrol,145,41.5,1.5 1885, 5 Series,2019,32400,Semi-Auto,7111,Diesel,145,55.4,2.0 1886, X1,2019,24000,Semi-Auto,5547,Diesel,145,47.9,2.0 1887, 1 Series,2018,15291,Manual,16891,Petrol,150,53.3,1.5 1888, X4,2017,26191,Semi-Auto,37114,Diesel,200,47.9,3.0 1889, 3 Series,2018,17899,Semi-Auto,40500,Petrol,145,48.7,2.0 1890, 1 Series,2016,16117,Manual,25231,Petrol,300,35.3,3.0 1891, 3 Series,2017,19830,Semi-Auto,39664,Diesel,145,49.6,3.0 1892, 1 Series,2016,14017,Manual,12670,Diesel,20,70.6,1.5 1893, 1 Series,2017,16498,Manual,16706,Diesel,150,62.8,2.0 1894, 3 Series,2013,10298,Manual,60211,Diesel,125,60.1,2.0 1895, 2 Series,2018,16998,Manual,4302,Petrol,145,40.9,1.5 1896, 4 Series,2018,20998,Semi-Auto,18392,Diesel,150,65.7,2.0 1897, 1 Series,2014,13750,Semi-Auto,20000,Diesel,30,64.2,2.0 1898, 3 Series,2016,19250,Semi-Auto,37679,Diesel,150,53.3,3.0 1899, 3 Series,2015,18555,Semi-Auto,51416,Diesel,145,53.3,3.0 1900, 4 Series,2020,31003,Semi-Auto,2400,Diesel,145,50.4,3.0 1901, 4 Series,2020,27003,Semi-Auto,1816,Petrol,145,48.7,2.0 1902, 1 Series,2014,8690,Manual,51344,Diesel,30,65.7,2.0 1903, 2 Series,2019,21097,Semi-Auto,7947,Diesel,145,47.1,2.0 1904, 1 Series,2019,23997,Semi-Auto,8423,Petrol,145,39.8,3.0 1905, 7 Series,2019,49990,Semi-Auto,5364,Diesel,145,44.1,3.0 1906, 5 Series,2019,42650,Semi-Auto,4000,Petrol,145,50.4,2.0 1907, M5,2019,61797,Semi-Auto,4419,Petrol,145,26.9,4.4 1908, X3,2019,35991,Semi-Auto,8667,Diesel,150,54.3,2.0 1909, 1 Series,2017,21490,Semi-Auto,25954,Petrol,150,39.8,3.0 1910, 4 Series,2015,15361,Manual,43745,Diesel,125,60.1,2.0 1911, 3 Series,2015,12110,Manual,54905,Diesel,125,58.9,2.0 1912, 3 Series,2016,12180,Manual,56763,Diesel,20,68.9,2.0 1913, X1,2013,9527,Semi-Auto,60973,Diesel,145,56.5,2.0 1914, 1 Series,2017,19990,Automatic,27108,Petrol,145,39.8,3.0 1915, 3 Series,2014,11491,Manual,64021,Diesel,125,57.6,2.0 1916, 5 Series,2017,27399,Semi-Auto,23607,Diesel,145,51.4,3.0 1917, 5 Series,2016,17980,Semi-Auto,32205,Diesel,30,62.8,2.0 1918, X1,2020,25480,Semi-Auto,24,Diesel,145,60.1,2.0 1919, 2 Series,2020,20980,Semi-Auto,9,Petrol,145,50.4,1.5 1920, 2 Series,2020,20980,Semi-Auto,12,Petrol,145,50.4,1.5 1921, 1 Series,2019,21980,Manual,821,Diesel,145,72.4,1.5 1922, 6 Series,2020,33490,Semi-Auto,101,Petrol,145,42.8,2.0 1923, 3 Series,2020,26980,Semi-Auto,101,Diesel,145,62.8,2.0 1924, 3 Series,2019,22480,Semi-Auto,6191,Diesel,145,55.4,2.0 1925, 1 Series,2019,20980,Manual,8617,Petrol,145,44.1,1.5 1926, 1 Series,2019,17980,Semi-Auto,8211,Diesel,145,74.3,2.0 1927, Z4,2019,31990,Semi-Auto,9950,Petrol,145,38.7,2.0 1928, X2,2020,28993,Semi-Auto,101,Diesel,145,61.4,2.0 1929, M4,2020,49623,Semi-Auto,2024,Petrol,145,34.0,3.0 1930, X1,2020,27493,Manual,3609,Diesel,145,39.2,2.0 1931, 4 Series,2019,28000,Semi-Auto,6451,Diesel,145,58.9,2.0 1932, M4,2019,44500,Semi-Auto,5644,Petrol,145,34.0,3.0 1933, 2 Series,2019,19990,Manual,6361,Diesel,145,51.4,2.0 1934, 3 Series,2015,14391,Semi-Auto,56262,Diesel,30,62.8,2.0 1935, 5 Series,2018,23891,Semi-Auto,23652,Diesel,145,48.7,2.0 1936, X3,2019,30990,Semi-Auto,20423,Petrol,145,30.4,2.0 1937, X2,2019,31790,Semi-Auto,4169,Petrol,145,34.0,2.0 1938, X3,2020,36853,Semi-Auto,2479,Diesel,145,54.3,2.0 1939, Z4,2020,34993,Semi-Auto,3100,Petrol,145,38.7,2.0 1940, 5 Series,2020,35493,Semi-Auto,5658,Petrol,145,50.4,2.0 1941, 3 Series,2017,15890,Manual,34588,Diesel,145,64.2,2.0 1942, 2 Series,2018,20990,Semi-Auto,13268,Petrol,145,47.9,2.0 1943, 1 Series,2019,18990,Semi-Auto,4539,Diesel,145,70.6,2.0 1944, 3 Series,2019,31990,Semi-Auto,4893,Diesel,145,52.3,2.0 1945, X4,2016,25041,Semi-Auto,28480,Diesel,200,47.1,3.0 1946, 1 Series,2016,15690,Semi-Auto,26386,Diesel,20,67.3,2.0 1947, X1,2017,21050,Semi-Auto,18099,Diesel,145,57.6,2.0 1948, 1 Series,2017,14066,Semi-Auto,43260,Petrol,145,55.5,1.5 1949, 3 Series,2016,19581,Semi-Auto,26949,Diesel,160,51.4,3.0 1950, 3 Series,2015,16237,Semi-Auto,37466,Diesel,145,56.5,3.0 1951, 1 Series,2017,16995,Automatic,19654,Petrol,145,54.3,1.5 1952, 4 Series,2019,24491,Semi-Auto,6462,Diesel,150,58.9,2.0 1953, 2 Series,2017,16191,Semi-Auto,23295,Diesel,20,68.9,2.0 1954, X1,2016,19497,Semi-Auto,29959,Diesel,145,55.4,2.0 1955, X1,2019,24500,Semi-Auto,8410,Petrol,145,47.9,2.0 1956, 5 Series,2019,28991,Semi-Auto,4636,Petrol,145,50.4,2.0 1957, X2,2020,32403,Semi-Auto,2580,Petrol,145,39.8,2.0 1958, X7,2019,72430,Semi-Auto,6391,Diesel,145,33.6,3.0 1959, 4 Series,2014,13591,Manual,73417,Diesel,125,57.6,2.0 1960, 1 Series,2017,17490,Semi-Auto,10571,Diesel,30,65.7,2.0 1961, 3 Series,2017,16490,Semi-Auto,30835,Diesel,145,70.6,2.0 1962, 4 Series,2015,16678,Semi-Auto,37041,Diesel,125,57.6,2.0 1963, 1 Series,2017,19990,Automatic,26841,Petrol,145,39.8,3.0 1964, 1 Series,2018,17390,Semi-Auto,11690,Diesel,145,45.6,2.0 1965, 4 Series,2016,22991,Semi-Auto,25220,Diesel,160,49.6,3.0 1966, X2,2018,24297,Semi-Auto,13325,Diesel,145,58.9,2.0 1967, X3,2016,24390,Semi-Auto,45646,Diesel,200,47.1,3.0 1968, 4 Series,2017,20217,Manual,31959,Petrol,145,43.5,2.0 1969, 2 Series,2019,21980,Automatic,5913,Hybrid,135,148.7,1.5 1970, X1,2019,26480,Semi-Auto,9027,Diesel,145,50.4,2.0 1971, 2 Series,2019,25780,Semi-Auto,2859,Diesel,145,48.7,2.0 1972, X5,2019,49980,Semi-Auto,5041,Diesel,145,37.7,3.0 1973, 1 Series,2018,16980,Manual,20100,Petrol,150,37.2,1.5 1974, 1 Series,2019,26980,Automatic,1250,Petrol,145,40.4,1.5 1975, X3,2014,19295,Semi-Auto,18458,Diesel,145,54.3,2.0 1976, 5 Series,2015,14160,Automatic,41075,Diesel,30,62.8,2.0 1977, 4 Series,2015,13750,Manual,34457,Petrol,160,44.8,2.0 1978, 1 Series,2015,14391,Semi-Auto,42770,Diesel,125,61.4,2.0 1979, X3,2015,19540,Semi-Auto,39370,Diesel,145,54.3,2.0 1980, 3 Series,2015,12217,Manual,58943,Diesel,125,61.4,2.0 1981, 3 Series,2016,19400,Semi-Auto,19060,Diesel,145,53.3,3.0 1982, 3 Series,2018,19357,Semi-Auto,15893,Diesel,145,64.2,2.0 1983, 1 Series,2019,16980,Manual,4905,Petrol,145,53.3,1.5 1984, 3 Series,2019,26480,Semi-Auto,5500,Petrol,145,42.2,2.0 1985, 4 Series,2019,24780,Semi-Auto,6251,Petrol,145,48.7,2.0 1986, 3 Series,2019,27780,Automatic,4586,Diesel,145,52.3,2.0 1987, X1,2019,25280,Semi-Auto,6153,Petrol,145,35.3,2.0 1988, 2 Series,2019,25980,Semi-Auto,5072,Diesel,145,48.7,2.0 1989, 4 Series,2016,21280,Semi-Auto,16635,Diesel,160,50.4,3.0 1990, 3 Series,2018,22480,Semi-Auto,18620,Diesel,145,62.8,2.0 1991, X1,2018,22780,Semi-Auto,11520,Petrol,145,37.7,2.0 1992, 5 Series,2017,18980,Semi-Auto,43169,Petrol,145,48.7,2.0 1993, 3 Series,2019,25780,Semi-Auto,7254,Petrol,150,42.2,2.0 1994, 1 Series,2018,15980,Manual,19093,Diesel,150,50.4,2.0 1995, 3 Series,2019,33950,Semi-Auto,5039,Diesel,150,52.3,2.0 1996, X7,2020,71980,Semi-Auto,8695,Diesel,150,31.4,3.0 1997, 2 Series,2019,20450,Automatic,6269,Petrol,145,50.4,2.0 1998, 8 Series,2019,55980,Semi-Auto,3489,Diesel,145,39.8,3.0 1999, 1 Series,2017,16990,Manual,32000,Diesel,30,62.8,2.0 2000, 3 Series,2018,18980,Semi-Auto,19408,Diesel,150,65.7,2.0 2001, 1 Series,2016,12609,Manual,22991,Diesel,20,72.4,1.5 2002, 1 Series,2017,17894,Semi-Auto,14684,Petrol,145,54.3,1.5 2003, 4 Series,2015,17310,Semi-Auto,31911,Diesel,125,57.6,2.0 2004, 1 Series,2017,18890,Semi-Auto,21744,Diesel,150,65.7,2.0 2005, 3 Series,2019,25940,Semi-Auto,8646,Diesel,150,53.3,2.0 2006, 1 Series,2019,20440,Semi-Auto,3567,Petrol,150,47.9,2.0 2007, 1 Series,2019,18440,Semi-Auto,3605,Diesel,150,47.9,1.5 2008, 3 Series,2019,19750,Semi-Auto,5888,Petrol,150,51.4,1.5 2009, 3 Series,2019,25940,Semi-Auto,7779,Diesel,150,53.3,2.0 2010, 2 Series,2019,21450,Semi-Auto,3803,Petrol,145,39.2,1.5 2011, X2,2019,31970,Automatic,3740,Petrol,145,34.0,2.0 2012, 3 Series,2019,24997,Semi-Auto,6429,Diesel,145,64.2,2.0 2013, 2 Series,2020,25603,Semi-Auto,2880,Petrol,145,50.4,1.5 2014, 2 Series,2020,26883,Semi-Auto,101,Petrol,145,40.9,1.5 2015, 3 Series,2020,36693,Semi-Auto,2725,Petrol,145,40.4,2.0 2016, 4 Series,2016,21104,Semi-Auto,36741,Petrol,200,41.5,3.0 2017, M5,2019,58991,Semi-Auto,16529,Petrol,145,26.9,4.4 2018, 3 Series,2019,23480,Semi-Auto,4611,Diesel,150,65.7,2.0 2019, 8 Series,2019,51980,Semi-Auto,5529,Diesel,150,40.4,3.0 2020, X3,2019,32480,Semi-Auto,5495,Diesel,145,54.3,2.0 2021, 2 Series,2019,21850,Automatic,4389,Petrol,145,40.9,1.5 2022, 1 Series,2019,19980,Manual,2557,Petrol,145,44.1,1.5 2023, 3 Series,2019,28940,Automatic,1550,Petrol,145,42.2,2.0 2024, 2 Series,2019,22480,Automatic,105,Petrol,145,47.9,2.0 2025, 3 Series,2017,19980,Semi-Auto,10154,Diesel,145,56.5,3.0 2026, i8,2019,67940,Automatic,1110,Hybrid,135,141.2,1.5 2027, 2 Series,2018,18980,Manual,12769,Petrol,145,52.3,1.5 2028, X1,2019,26450,Semi-Auto,7835,Diesel,150,60.1,2.0 2029, 2 Series,2019,22480,Semi-Auto,5869,Diesel,150,51.4,2.0 2030, 1 Series,2019,17780,Manual,7287,Diesel,150,72.4,1.5 2031, 5 Series,2019,26380,Semi-Auto,8257,Petrol,150,50.4,2.0 2032, X3,2015,19795,Semi-Auto,51451,Diesel,200,47.1,3.0 2033, 5 Series,2017,21720,Automatic,26946,Diesel,145,65.7,2.0 2034, 3 Series,2013,7550,Manual,78650,Petrol,125,53.3,1.6 2035, 3 Series,2016,19367,Automatic,25666,Diesel,160,51.4,3.0 2036, X1,2016,18990,Automatic,18604,Diesel,145,55.4,2.0 2037, 1 Series,2014,10970,Automatic,26423,Diesel,30,64.2,2.0 2038, 4 Series,2018,21470,Automatic,40553,Petrol,145,41.5,3.0 2039, 5 Series,2020,33980,Semi-Auto,1500,Hybrid,135,156.9,2.0 2040, 4 Series,2016,19880,Semi-Auto,34171,Diesel,145,55.4,3.0 2041, 4 Series,2018,21064,Semi-Auto,19447,Diesel,145,65.7,2.0 2042, 3 Series,2016,15980,Semi-Auto,16000,Diesel,30,67.3,2.0 2043, 2 Series,2020,30980,Semi-Auto,1500,Petrol,145,42.2,1.5 2044, 2 Series,2019,22980,Automatic,2869,Diesel,145,49.6,2.0 2045, X1,2019,27980,Automatic,105,Petrol,145,40.9,1.5 2046, 1 Series,2019,23440,Manual,4729,Petrol,145,41.5,1.5 2047, 3 Series,2019,31980,Automatic,4869,Diesel,145,50.4,2.0 2048, 5 Series,2019,39480,Automatic,4859,Petrol,145,29.1,3.0 2049, 1 Series,2020,23980,Semi-Auto,1500,Petrol,145,40.4,1.5 2050, 1 Series,2020,30440,Semi-Auto,1500,Petrol,145,34.5,2.0 2051, 1 Series,2020,30440,Semi-Auto,1500,Petrol,145,34.5,2.0 2052, 4 Series,2018,22470,Semi-Auto,1998,Diesel,145,60.1,2.0 2053, 5 Series,2017,22980,Automatic,21687,Diesel,145,53.3,3.0 2054, 4 Series,2018,20980,Semi-Auto,11403,Petrol,145,48.7,2.0 2055, 4 Series,2016,18860,Semi-Auto,15422,Diesel,30,65.7,2.0 2056, 3 Series,2016,18656,Semi-Auto,27621,Diesel,145,56.5,3.0 2057, 3 Series,2016,20584,Semi-Auto,36137,Diesel,145,53.3,3.0 2058, 1 Series,2015,11180,Manual,43424,Diesel,20,72.4,1.5 2059, 3 Series,2020,34993,Semi-Auto,6250,Diesel,145,47.9,3.0 2060, 5 Series,2015,15995,Semi-Auto,31309,Diesel,30,62.8,2.0 2061, 4 Series,2016,22431,Semi-Auto,31663,Diesel,160,51.4,3.0 2062, X1,2016,19480,Semi-Auto,19829,Diesel,125,57.6,2.0 2063, 3 Series,2019,25780,Semi-Auto,9354,Petrol,145,45.6,2.0 2064, 5 Series,2019,26380,Semi-Auto,7609,Diesel,145,65.7,2.0 2065, X5,2019,56980,Semi-Auto,12173,Diesel,145,33.6,3.0 2066, 1 Series,2018,22761,Semi-Auto,24866,Petrol,150,32.5,3.0 2067, X5,2019,56980,Semi-Auto,9029,Diesel,145,33.6,3.0 2068, 2 Series,2018,16780,Semi-Auto,21204,Petrol,145,40.9,1.5 2069, 4 Series,2019,26990,Semi-Auto,4278,Diesel,150,52.3,3.0 2070, X1,2019,25990,Semi-Auto,8989,Diesel,150,60.1,2.0 2071, 2 Series,2019,24490,Manual,8615,Diesel,150,60.1,2.0 2072, X4,2019,36990,Semi-Auto,8454,Diesel,150,42.8,2.0 2073, M5,2019,63980,Semi-Auto,5000,Petrol,150,26.9,4.4 2074, 2 Series,2017,21000,Semi-Auto,25435,Petrol,200,39.8,3.0 2075, 3 Series,2016,16886,Automatic,24081,Diesel,145,54.3,3.0 2076, 1 Series,2016,18866,Automatic,20581,Petrol,200,39.8,3.0 2077, X4,2019,38182,Semi-Auto,2316,Diesel,145,42.8,2.0 2078, 3 Series,2018,21512,Automatic,21045,Diesel,145,62.8,2.0 2079, M4,2016,34932,Semi-Auto,23765,Petrol,300,34.0,3.0 2080, 1 Series,2014,12222,Semi-Auto,11463,Petrol,125,50.4,1.6 2081, 3 Series,2017,15652,Semi-Auto,68299,Diesel,150,62.8,2.0 2082, 5 Series,2018,22601,Semi-Auto,50628,Diesel,150,60.1,2.0 2083, 3 Series,2015,13990,Manual,30441,Diesel,30,64.2,2.0 2084, 4 Series,2019,32990,Semi-Auto,2403,Diesel,145,60.1,2.0 2085, X1,2017,17370,Manual,29575,Diesel,145,58.9,2.0 2086, X4,2015,18390,Manual,53197,Diesel,160,52.3,2.0 2087, 3 Series,2015,11560,Automatic,60803,Diesel,30,67.3,2.0 2088, 3 Series,2018,19990,Automatic,23494,Diesel,145,57.6,2.0 2089, 3 Series,2018,21232,Semi-Auto,16219,Diesel,145,64.2,2.0 2090, X1,2019,26190,Semi-Auto,7137,Diesel,145,65.7,2.0 2091, X3,2015,18192,Manual,33269,Diesel,160,52.3,2.0 2092, 7 Series,2017,30972,Semi-Auto,15405,Diesel,145,54.3,3.0 2093, X2,2019,25980,Semi-Auto,6521,Petrol,145,39.2,2.0 2094, X5,2016,21986,Automatic,54425,Diesel,200,47.9,3.0 2095, X4,2019,41376,Automatic,9095,Diesel,145,37.2,3.0 2096, X7,2019,69146,Automatic,2567,Petrol,145,24.8,3.0 2097, X3,2019,42836,Semi-Auto,6881,Diesel,145,36.7,3.0 2098, X4,2019,35694,Semi-Auto,4832,Diesel,145,42.8,2.0 2099, X1,2017,22052,Semi-Auto,13217,Petrol,145,44.8,2.0 2100, 4 Series,2017,19961,Semi-Auto,22100,Diesel,150,65.7,2.0 2101, 4 Series,2019,26592,Semi-Auto,7038,Diesel,150,52.3,3.0 2102, X5,2019,49991,Semi-Auto,6927,Diesel,150,37.7,3.0 2103, 1 Series,2015,13111,Manual,23320,Diesel,20,70.6,2.0 2104, 2 Series,2016,21211,Semi-Auto,26182,Petrol,260,37.2,3.0 2105, 3 Series,2017,19702,Semi-Auto,27225,Diesel,30,62.8,2.0 2106, 5 Series,2017,33122,Semi-Auto,11817,Diesel,145,51.4,3.0 2107, X3,2017,28562,Semi-Auto,14557,Diesel,145,47.9,3.0 2108, X6,2019,59990,Semi-Auto,2137,Diesel,145,34.9,3.0 2109, X2,2019,29990,Semi-Auto,4137,Petrol,145,39.2,2.0 2110, 2 Series,2019,25490,Automatic,3339,Diesel,145,49.6,2.0 2111, 3 Series,2016,18212,Semi-Auto,9020,Diesel,30,65.7,2.0 2112, 3 Series,2015,16276,Automatic,31238,Diesel,145,55.4,2.0 2113, X2,2020,34990,Automatic,2137,Petrol,145,34.0,2.0 2114, 5 Series,2020,42990,Semi-Auto,2137,Diesel,145,60.1,3.0 2115, X1,2016,19682,Semi-Auto,41455,Diesel,125,57.6,2.0 2116, X3,2020,54990,Semi-Auto,2137,Hybrid,135,5.5,2.0 2117, 3 Series,2013,8492,Manual,73428,Diesel,20,68.9,2.0 2118, 5 Series,2019,37540,Automatic,4562,Diesel,145,60.1,3.0 2119, X2,2019,29970,Automatic,3760,Petrol,145,36.2,2.0 2120, 1 Series,2019,29680,Automatic,8388,Diesel,145,48.7,2.0 2121, X2,2019,31980,Automatic,4804,Petrol,145,34.0,2.0 2122, 5 Series,2019,29140,Semi-Auto,1499,Petrol,145,47.9,2.0 2123, 4 Series,2019,33230,Semi-Auto,6427,Petrol,145,44.8,2.0 2124, 2 Series,2019,24110,Semi-Auto,4348,Diesel,145,49.6,2.0 2125, 3 Series,2019,32550,Automatic,10984,Diesel,145,49.6,2.0 2126, 3 Series,2017,19082,Semi-Auto,31144,Diesel,145,62.8,2.0 2127, 2 Series,2019,20896,Automatic,15462,Diesel,145,67.3,2.0 2128, X7,2019,62990,Semi-Auto,2137,Diesel,145,33.6,3.0 2129, 1 Series,2019,18840,Semi-Auto,10000,Petrol,145,54.3,1.5 2130, X5,2019,46440,Semi-Auto,1438,Diesel,145,37.7,3.0 2131, 3 Series,2019,25940,Semi-Auto,7821,Diesel,145,53.3,2.0 2132, X6,2020,52990,Semi-Auto,3200,Diesel,145,34.9,3.0 2133, 5 Series,2019,26980,Automatic,105,Petrol,145,50.4,2.0 2134, 3 Series,2019,37940,Semi-Auto,1581,Petrol,145,34.9,3.0 2135, X2,2020,33940,Automatic,2182,Petrol,145,34.0,2.0 2136, 2 Series,2019,20480,Automatic,8719,Diesel,145,52.3,2.0 2137, 3 Series,2019,26998,Semi-Auto,12327,Diesel,145,48.7,2.0 2138, 5 Series,2018,23998,Semi-Auto,31649,Diesel,145,45.6,2.0 2139, 3 Series,2018,15901,Manual,13759,Petrol,150,52.3,1.5 2140, X5,2017,26822,Automatic,25288,Diesel,145,50.4,2.0 2141, X1,2017,19912,Semi-Auto,25917,Diesel,125,57.6,2.0 2142, 1 Series,2019,21116,Semi-Auto,6742,Diesel,145,65.7,2.0 2143, X1,2014,12702,Automatic,28375,Diesel,160,52.3,2.0 2144, X3,2014,15112,Semi-Auto,69382,Diesel,145,54.3,2.0 2145, X4,2019,35109,Semi-Auto,509,Diesel,145,42.8,2.0 2146, X5,2016,28172,Automatic,69798,Diesel,200,47.1,3.0 2147, X1,2016,19391,Semi-Auto,20761,Diesel,125,60.1,2.0 2148, 2 Series,2017,16172,Manual,13357,Diesel,20,74.3,1.5 2149, 2 Series,2020,23990,Semi-Auto,10,Petrol,150,39.2,1.5 2150, X2,2020,24490,Semi-Auto,1,Diesel,145,52.3,2.0 2151, 1 Series,2019,18498,Manual,10624,Diesel,145,65.7,2.0 2152, 3 Series,2019,16698,Manual,12824,Diesel,150,67.3,2.0 2153, X3,2018,34990,Semi-Auto,16202,Petrol,145,34.5,3.0 2154, 3 Series,2019,28980,Semi-Auto,5441,Petrol,145,41.5,2.0 2155, 3 Series,2019,30690,Automatic,4404,Diesel,145,50.4,2.0 2156, 5 Series,2018,22912,Semi-Auto,16530,Diesel,145,68.9,2.0 2157, 1 Series,2018,23052,Semi-Auto,19959,Petrol,145,39.8,3.0 2158, 4 Series,2019,29540,Semi-Auto,14137,Diesel,145,49.6,3.0 2159, 3 Series,2019,36740,Automatic,4137,Petrol,145,39.8,2.0 2160, X1,2016,19752,Semi-Auto,18326,Diesel,125,57.6,2.0 2161, X5,2019,54550,Automatic,8143,Diesel,145,37.7,3.0 2162, 1 Series,2019,19798,Semi-Auto,16406,Diesel,150,67.3,2.0 2163, 3 Series,2019,22998,Semi-Auto,20175,Diesel,145,60.1,2.0 2164, 5 Series,2014,15995,Semi-Auto,28500,Diesel,160,51.4,3.0 2165, X1,2015,16250,Semi-Auto,46216,Diesel,125,57.6,2.0 2166, 4 Series,2016,20681,Semi-Auto,12531,Petrol,145,48.7,2.0 2167, 2 Series,2017,21862,Semi-Auto,29150,Petrol,200,39.8,3.0 2168, 1 Series,2017,19761,Semi-Auto,39681,Petrol,200,39.8,3.0 2169, X1,2016,19572,Semi-Auto,32603,Diesel,125,60.1,2.0 2170, X2,2018,32012,Semi-Auto,12652,Diesel,145,58.9,2.0 2171, 3 Series,2017,17701,Semi-Auto,51983,Diesel,145,62.8,2.0 2172, 4 Series,2015,15331,Manual,21324,Petrol,200,39.8,2.0 2173, X5,2016,41211,Semi-Auto,46180,Petrol,570,25.4,4.4 2174, X1,2016,18761,Semi-Auto,16755,Diesel,145,55.4,2.0 2175, X5,2016,27852,Automatic,57501,Hybrid,0,85.6,2.0 2176, 1 Series,2019,14498,Manual,15598,Diesel,150,72.4,1.5 2177, 1 Series,2014,8310,Manual,80664,Diesel,30,64.2,2.0 2178, 1 Series,2017,15490,Manual,25763,Petrol,145,46.3,2.0 2179, 3 Series,2014,11180,Automatic,60015,Diesel,30,62.8,2.0 2180, X3,2015,19370,Semi-Auto,41312,Diesel,145,54.3,2.0 2181, X1,2016,19158,Automatic,13090,Petrol,160,44.8,2.0 2182, X5,2015,24250,Automatic,42966,Diesel,200,47.1,3.0 2183, X5,2016,31990,Automatic,47814,Diesel,240,42.8,3.0 2184, 1 Series,2019,18499,Semi-Auto,748,Diesel,150,70.6,2.0 2185, 3 Series,2016,17980,Semi-Auto,33475,Diesel,30,64.2,2.0 2186, X2,2020,26780,Semi-Auto,1500,Diesel,145,61.4,2.0 2187, 2 Series,2019,18880,Manual,6225,Petrol,145,52.3,1.5 2188, X3,2019,31780,Semi-Auto,7281,Diesel,145,54.3,2.0 2189, 1 Series,2019,17980,Manual,8159,Diesel,145,70.6,1.5 2190, 3 Series,2019,27440,Semi-Auto,4376,Petrol,145,42.2,2.0 2191, 5 Series,2019,26850,Semi-Auto,7079,Diesel,145,65.7,2.0 2192, 2 Series,2019,18950,Manual,6311,Petrol,145,42.8,1.5 2193, 3 Series,2019,23980,Semi-Auto,1489,Petrol,145,47.9,2.0 2194, 3 Series,2019,24450,Semi-Auto,9522,Diesel,145,62.8,2.0 2195, 4 Series,2017,19000,Semi-Auto,26289,Petrol,145,48.7,2.0 2196, 1 Series,2017,18390,Automatic,4237,Petrol,145,54.3,1.5 2197, 3 Series,2016,17998,Semi-Auto,23106,Hybrid,0,134.5,2.0 2198, X2,2020,29990,Semi-Auto,5,Petrol,145,42.8,1.5 2199, M4,2020,45990,Semi-Auto,6,Petrol,145,34.0,3.0 2200, X3,2015,19990,Semi-Auto,53700,Diesel,145,54.3,2.0 2201, 2 Series,2018,31990,Semi-Auto,99,Petrol,145,38.2,3.0 2202, X1,2019,23980,Manual,2953,Petrol,145,51.4,1.5 2203, 1 Series,2016,11499,Semi-Auto,46327,Diesel,0,78.5,1.5 2204, 1 Series,2017,14999,Manual,32082,Diesel,145,70.6,1.5 2205, 3 Series,2015,10999,Automatic,90018,Diesel,20,70.6,2.0 2206, 1 Series,2018,12291,Manual,45228,Diesel,145,72.4,1.5 2207, 1 Series,2016,14830,Semi-Auto,18095,Diesel,30,65.7,2.0 2208, 1 Series,2016,12760,Manual,27759,Diesel,30,65.7,2.0 2209, 1 Series,2013,7131,Manual,73919,Diesel,30,65.7,2.0 2210, 4 Series,2019,24975,Semi-Auto,5866,Diesel,145,65.7,2.0 2211, 5 Series,2019,26350,Semi-Auto,3623,Diesel,145,65.7,2.0 2212, 1 Series,2016,12475,Manual,17550,Petrol,30,56.5,1.5 2213, 1 Series,2019,23780,Semi-Auto,5939,Petrol,145,40.4,1.5 2214, 3 Series,2019,24990,Manual,4850,Diesel,145,64.2,2.0 2215, 2 Series,2019,21945,Semi-Auto,10086,Petrol,145,47.9,2.0 2216, X1,2013,12490,Manual,33584,Diesel,165,51.4,2.0 2217, 3 Series,2016,14990,Manual,33201,Petrol,150,48.7,2.0 2218, X1,2016,17998,Semi-Auto,38565,Diesel,145,55.4,2.0 2219, 2 Series,2018,17498,Semi-Auto,18970,Petrol,145,51.4,1.5 2220, 5 Series,2015,16998,Semi-Auto,31322,Diesel,145,53.3,3.0 2221, 3 Series,2015,16298,Semi-Auto,22867,Diesel,145,56.5,3.0 2222, 3 Series,2019,24498,Semi-Auto,14897,Diesel,145,52.3,2.0 2223, 2 Series,2020,21890,Semi-Auto,11,Petrol,145,50.4,1.5 2224, 2 Series,2020,22980,Manual,10,Petrol,145,47.1,1.5 2225, 4 Series,2020,26990,Semi-Auto,5,Diesel,145,65.7,2.0 2226, 6 Series,2020,36850,Semi-Auto,6,Diesel,145,53.3,3.0 2227, 5 Series,2020,26990,Semi-Auto,13,Petrol,145,50.4,2.0 2228, 1 Series,2016,12990,Manual,22700,Diesel,20,72.4,1.5 2229, 1 Series,2016,12990,Semi-Auto,25843,Petrol,30,55.5,1.5 2230, 1 Series,2016,19290,Semi-Auto,32233,Petrol,200,39.8,3.0 2231, 2 Series,2019,23480,Manual,1500,Petrol,145,42.8,1.5 2232, 5 Series,2019,29980,Semi-Auto,1500,Petrol,145,50.4,2.0 2233, 4 Series,2019,30980,Semi-Auto,2649,Petrol,145,41.5,3.0 2234, 3 Series,2019,31450,Semi-Auto,4460,Petrol,145,40.9,2.0 2235, 3 Series,2019,24990,Manual,4293,Diesel,145,64.2,2.0 2236, 3 Series,2019,23990,Manual,5996,Diesel,145,67.3,2.0 2237, 3 Series,2019,29450,Semi-Auto,4250,Diesel,145,53.3,2.0 2238, 5 Series,2019,31875,Semi-Auto,15,Petrol,145,48.7,2.0 2239, 4 Series,2019,23980,Semi-Auto,14,Petrol,145,45.6,2.0 2240, 3 Series,2017,17990,Semi-Auto,28589,Diesel,145,62.8,2.0 2241, 4 Series,2019,29980,Semi-Auto,1737,Diesel,145,53.3,3.0 2242, 3 Series,2020,23990,Manual,18,Diesel,145,56.5,2.0 2243, 3 Series,2019,28450,Semi-Auto,7350,Diesel,145,48.7,2.0 2244, 5 Series,2019,26350,Semi-Auto,3753,Diesel,145,65.7,2.0 2245, 5 Series,2019,26350,Semi-Auto,7106,Diesel,145,65.7,2.0 2246, X1,2019,25450,Semi-Auto,5269,Petrol,145,40.9,1.5 2247, 4 Series,2016,15957,Manual,33805,Diesel,30,62.8,2.0 2248, 1 Series,2018,15224,Manual,12102,Petrol,145,37.7,1.5 2249, 3 Series,2019,24450,Manual,2323,Diesel,145,54.3,2.0 2250, 3 Series,2019,24450,Manual,3340,Diesel,145,54.3,2.0 2251, 5 Series,2020,36850,Semi-Auto,13,Hybrid,145,44.8,2.0 2252, X4,2019,37980,Semi-Auto,10797,Diesel,145,40.4,3.0 2253, M4,2019,48940,Semi-Auto,12,Petrol,145,32.5,3.0 2254, M4,2019,41945,Semi-Auto,12,Petrol,145,34.0,3.0 2255, X4,2019,35480,Semi-Auto,13142,Diesel,145,42.8,2.0 2256, 5 Series,2019,29450,Semi-Auto,5325,Diesel,145,60.1,2.0 2257, 3 Series,2019,29990,Semi-Auto,8235,Diesel,145,48.7,2.0 2258, 3 Series,2019,28450,Semi-Auto,8349,Petrol,145,43.5,2.0 2259, 4 Series,2019,24975,Semi-Auto,5022,Diesel,145,65.7,2.0 2260, 4 Series,2019,24975,Semi-Auto,11736,Diesel,145,65.7,2.0 2261, 5 Series,2020,31990,Semi-Auto,10,Petrol,145,50.4,2.0 2262, 5 Series,2020,32850,Semi-Auto,9,Hybrid,145,47.9,2.0 2263, Z4,2020,35850,Semi-Auto,5,Petrol,145,37.2,2.0 2264, Z4,2020,33450,Semi-Auto,5,Petrol,145,38.7,2.0 2265, 3 Series,2020,24490,Manual,5,Diesel,145,56.5,2.0 2266, 2 Series,2020,22990,Manual,12,Diesel,145,60.1,2.0 2267, 3 Series,2020,41990,Semi-Auto,9,Petrol,145,34.9,3.0 2268, X1,2019,24980,Manual,3730,Petrol,145,49.6,1.5 2269, X1,2019,28790,Semi-Auto,3740,Petrol,145,44.8,2.0 2270, 2 Series,2019,21945,Semi-Auto,8377,Petrol,145,47.9,2.0 2271, 4 Series,2019,24740,Semi-Auto,11,Petrol,145,48.7,2.0 2272, 5 Series,2015,16990,Semi-Auto,34250,Diesel,30,62.8,2.0 2273, 1 Series,2020,24980,Semi-Auto,5000,Petrol,145,42.8,1.5 2274, 4 Series,2016,16730,Manual,17309,Diesel,30,62.8,2.0 2275, 1 Series,2014,15965,Manual,30000,Petrol,305,35.3,3.0 2276, 4 Series,2015,17465,Semi-Auto,40500,Diesel,150,55.4,3.0 2277, 2 Series,2018,19240,Automatic,13077,Petrol,145,47.9,2.0 2278, X1,2017,15300,Manual,55426,Diesel,125,58.9,2.0 2279, 3 Series,2018,18650,Semi-Auto,29751,Diesel,145,60.1,2.0 2280, X1,2013,8562,Manual,67932,Diesel,165,51.4,2.0 2281, 4 Series,2014,14999,Semi-Auto,15056,Petrol,160,44.8,2.0 2282, 1 Series,2017,14780,Manual,23552,Diesel,145,72.4,1.5 2283, M4,2019,45475,Semi-Auto,24,Petrol,145,34.0,3.0 2284, 3 Series,2019,31450,Semi-Auto,4568,Petrol,145,41.5,2.0 2285, 1 Series,2019,16950,Semi-Auto,12345,Diesel,145,74.3,2.0 2286, 3 Series,2019,25750,Semi-Auto,12647,Diesel,145,52.3,2.0 2287, 3 Series,2019,25750,Semi-Auto,10568,Diesel,145,52.3,2.0 2288, X5,2019,46950,Semi-Auto,7246,Diesel,145,37.7,3.0 2289, 1 Series,2017,18480,Semi-Auto,14193,Petrol,145,54.3,1.5 2290, 5 Series,2019,26350,Semi-Auto,5453,Diesel,145,65.7,2.0 2291, 2 Series,2020,22450,Manual,10,Diesel,145,64.2,2.0 2292, 3 Series,2020,29990,Semi-Auto,12,Diesel,145,49.6,2.0 2293, 3 Series,2020,23850,Semi-Auto,15,Petrol,145,42.2,2.0 2294, Z4,2020,28990,Semi-Auto,5,Petrol,145,38.2,2.0 2295, 4 Series,2020,37450,Semi-Auto,11,Diesel,145,47.9,3.0 2296, Z4,2020,30990,Semi-Auto,10,Petrol,145,38.7,2.0 2297, Z4,2020,30990,Semi-Auto,12,Petrol,145,38.7,2.0 2298, 3 Series,2017,19895,Semi-Auto,11700,Diesel,145,64.2,2.0 2299, 3 Series,2019,23980,Semi-Auto,4063,Diesel,145,62.8,2.0 2300, 3 Series,2019,29990,Manual,10,Diesel,145,54.3,2.0 2301, 2 Series,2019,21480,Semi-Auto,1850,Petrol,145,50.4,1.5 2302, M2,2019,47980,Semi-Auto,100,Petrol,145,29.1,3.0 2303, 4 Series,2019,22480,Semi-Auto,4020,Diesel,145,60.1,2.0 2304, 2 Series,2019,20980,Semi-Auto,4691,Diesel,145,47.1,2.0 2305, 5 Series,2019,28990,Semi-Auto,5471,Petrol,145,48.7,2.0 2306, 5 Series,2019,31880,Semi-Auto,4669,Diesel,145,60.1,3.0 2307, 3 Series,2019,31450,Semi-Auto,4682,Petrol,145,40.9,2.0 2308, 2 Series,2019,23975,Manual,10,Diesel,145,60.1,2.0 2309, 2 Series,2019,23940,Semi-Auto,9,Diesel,145,62.8,2.0 2310, 5 Series,2019,31875,Semi-Auto,12,Petrol,145,48.7,2.0 2311, 2 Series,2017,19480,Semi-Auto,14612,Diesel,145,55.4,2.0 2312, 1 Series,2016,16280,Semi-Auto,5796,Petrol,125,54.3,1.5 2313, 4 Series,2019,26950,Semi-Auto,500,Diesel,145,65.7,2.0 2314, 3 Series,2017,17980,Semi-Auto,13350,Petrol,145,51.4,2.0 2315, X2,2019,44980,Semi-Auto,500,Diesel,145,58.9,2.0 2316, 4 Series,2019,25990,Semi-Auto,11,Diesel,145,58.9,2.0 2317, 3 Series,2019,24990,Manual,4229,Diesel,145,64.2,2.0 2318, X1,2017,21250,Semi-Auto,17961,Petrol,165,44.8,2.0 2319, 2 Series,2017,21000,Semi-Auto,29484,Petrol,145,39.8,3.0 2320, X3,2019,31000,Semi-Auto,6981,Petrol,145,30.4,2.0 2321, 4 Series,2019,25000,Semi-Auto,8592,Diesel,145,65.7,2.0 2322, 3 Series,2019,20900,Semi-Auto,30243,Petrol,145,48.7,2.0 2323, X3,2018,30000,Semi-Auto,71587,Diesel,145,54.3,2.0 2324, 1 Series,2016,11250,Manual,35447,Diesel,20,68.9,2.0 2325, 5 Series,2014,12891,Semi-Auto,72000,Diesel,125,57.6,2.0 2326, 4 Series,2017,15991,Semi-Auto,37847,Diesel,150,65.7,2.0 2327, 2 Series,2016,16195,Automatic,23594,Hybrid,0,141.2,1.5 2328, X1,2016,17980,Semi-Auto,39004,Petrol,160,44.8,2.0 2329, 4 Series,2018,20991,Manual,11455,Petrol,150,46.3,2.0 2330, 6 Series,2014,17791,Semi-Auto,45012,Diesel,165,49.6,3.0 2331, 1 Series,2015,11711,Manual,40560,Diesel,125,57.6,2.0 2332, 7 Series,2016,23995,Semi-Auto,23600,Petrol,200,41.5,3.0 2333, 4 Series,2016,15650,Manual,34236,Petrol,160,46.3,2.0 2334, 1 Series,2017,14397,Manual,9243,Petrol,145,52.3,1.5 2335, 1 Series,2017,11650,Manual,29116,Diesel,145,83.1,1.5 2336, 1 Series,2017,14420,Manual,17357,Diesel,20,70.6,1.5 2337, 4 Series,2018,21980,Semi-Auto,10146,Diesel,145,65.7,2.0 2338, 7 Series,2019,50980,Semi-Auto,7606,Diesel,145,44.8,3.0 2339, X1,2019,25745,Semi-Auto,4928,Diesel,145,60.1,2.0 2340, 4 Series,2020,32950,Semi-Auto,10,Petrol,145,41.5,3.0 2341, 4 Series,2020,27950,Semi-Auto,10,Petrol,145,45.6,2.0 2342, 4 Series,2020,27950,Manual,10,Diesel,145,62.8,2.0 2343, 4 Series,2020,26950,Semi-Auto,10,Petrol,145,48.7,2.0 2344, 1 Series,2016,13984,Manual,15445,Petrol,125,52.3,1.5 2345, 5 Series,2016,14280,Automatic,52889,Diesel,30,62.8,2.0 2346, 3 Series,2016,12600,Manual,19800,Petrol,125,52.3,1.5 2347, 3 Series,2015,13391,Manual,62354,Diesel,125,58.9,2.0 2348, X3,2017,23991,Semi-Auto,17205,Diesel,150,54.3,2.0 2349, 3 Series,2015,11491,Manual,55700,Diesel,125,60.1,2.0 2350, X5,2019,47480,Semi-Auto,5209,Diesel,145,37.7,3.0 2351, 5 Series,2015,12393,Semi-Auto,80582,Diesel,30,62.8,2.0 2353, 2 Series,2015,13521,Semi-Auto,55001,Diesel,20,68.9,2.0 2354, 1 Series,2017,14995,Manual,13472,Diesel,145,65.7,2.0 2355, 3 Series,2018,19498,Semi-Auto,32723,Petrol,150,48.7,2.0 2356, 4 Series,2018,23798,Semi-Auto,8781,Diesel,145,55.4,3.0 2357, 2 Series,2019,19741,Manual,4500,Petrol,150,52.3,1.5 2358, 1 Series,2017,20491,Manual,12000,Petrol,150,36.2,3.0 2359, 1 Series,2016,18991,Semi-Auto,16279,Petrol,240,37.7,3.0 2360, 1 Series,2015,13091,Manual,35000,Diesel,30,65.7,2.0 2361, 1 Series,2018,14491,Semi-Auto,28542,Diesel,150,48.7,1.5 2362, X1,2018,21991,Semi-Auto,27713,Diesel,150,60.1,2.0 2363, 7 Series,2014,14798,Semi-Auto,60697,Diesel,160,50.4,3.0 2364, 3 Series,2016,16498,Semi-Auto,22489,Hybrid,0,148.7,2.0 2365, 3 Series,2015,13798,Semi-Auto,59936,Diesel,125,58.9,2.0 2366, 1 Series,2016,14195,Semi-Auto,38094,Diesel,30,65.7,2.0 2367, 4 Series,2020,42194,Semi-Auto,101,Petrol,145,39.2,3.0 2368, 5 Series,2016,17330,Semi-Auto,31570,Diesel,30,62.8,2.0 2369, 1 Series,2016,13250,Manual,26625,Petrol,125,53.3,1.5 2370, 2 Series,2016,17699,Semi-Auto,32746,Petrol,265,37.2,3.0 2371, 4 Series,2020,36902,Semi-Auto,101,Diesel,145,58.9,2.0 2372, X2,2020,28279,Semi-Auto,101,Diesel,145,50.4,2.0 2373, X2,2020,30413,Semi-Auto,101,Petrol,145,39.2,2.0 2374, 1 Series,2020,31016,Semi-Auto,101,Diesel,145,48.7,2.0 2375, M4,2020,51402,Semi-Auto,101,Petrol,145,34.0,3.0 2376, 3 Series,2020,35158,Semi-Auto,101,Diesel,145,48.7,2.0 2377, 3 Series,2020,36402,Semi-Auto,101,Petrol,145,40.4,2.0 2378, Z4,2020,37975,Semi-Auto,101,Petrol,145,38.7,2.0 2379, 3 Series,2019,21000,Semi-Auto,10959,Diesel,145,64.2,2.0 2380, 5 Series,2018,29500,Semi-Auto,9629,Diesel,145,56.5,3.0 2381, X5,2016,26520,Automatic,59000,Diesel,200,47.1,3.0 2382, 3 Series,2018,19992,Semi-Auto,32456,Diesel,145,62.8,2.0 2383, 2 Series,2017,21012,Semi-Auto,36367,Petrol,200,39.8,3.0 2384, 2 Series,2017,21726,Semi-Auto,24442,Petrol,145,39.8,3.0 2385, 1 Series,2016,13158,Semi-Auto,31218,Diesel,20,70.6,2.0 2386, 5 Series,2015,15189,Semi-Auto,54636,Diesel,125,60.1,2.0 2387, 1 Series,2016,12741,Manual,42500,Diesel,20,68.9,2.0 2388, 3 Series,2016,19300,Semi-Auto,13500,Hybrid,0,134.5,2.0 2389, X3,2019,39991,Semi-Auto,1266,Diesel,145,54.3,2.0 2390, 1 Series,2015,14644,Manual,31900,Diesel,30,62.8,2.0 2391, 3 Series,2018,21560,Semi-Auto,36646,Diesel,145,53.3,3.0 2392, X3,2015,19498,Semi-Auto,30256,Diesel,145,54.3,2.0 2393, 1 Series,2017,21798,Semi-Auto,12967,Petrol,200,39.8,3.0 2394, 3 Series,2018,20498,Semi-Auto,19620,Petrol,145,48.7,2.0 2395, 3 Series,2016,15498,Semi-Auto,13377,Petrol,125,51.4,2.0 2396, 3 Series,2018,20298,Semi-Auto,26751,Petrol,145,48.7,2.0 2397, 3 Series,2018,20998,Semi-Auto,14486,Petrol,150,48.7,2.0 2398, X4,2019,38000,Semi-Auto,15118,Petrol,150,26.9,3.0 2399, X5,2018,37500,Automatic,6836,Diesel,150,47.1,3.0 2400, 4 Series,2016,18000,Automatic,15788,Diesel,30,65.7,2.0 2401, X5,2019,43750,Semi-Auto,10829,Diesel,145,37.7,3.0 2402, 3 Series,2016,19895,Semi-Auto,26200,Diesel,165,51.4,3.0 2403, 2 Series,2018,17798,Semi-Auto,9816,Petrol,150,38.2,2.0 2404, 3 Series,2017,14595,Automatic,24624,Petrol,145,51.4,2.0 2405, 3 Series,2019,28361,Semi-Auto,13547,Petrol,145,42.2,2.0 2406, 2 Series,2019,27416,Semi-Auto,2171,Diesel,145,64.2,2.0 2407, 5 Series,2017,22850,Semi-Auto,20951,Diesel,125,60.1,2.0 2408, 1 Series,2017,16250,Semi-Auto,35332,Diesel,150,60.1,2.0 2409, 5 Series,2019,40985,Semi-Auto,7998,Petrol,145,50.4,2.0 2410, X2,2019,29000,Semi-Auto,3351,Petrol,145,39.2,2.0 2411, 2 Series,2019,21300,Manual,2455,Diesel,145,51.4,2.0 2412, X1,2019,31200,Semi-Auto,2517,Diesel,145,36.7,2.0 2413, Z4,2019,34890,Semi-Auto,156,Petrol,145,38.7,2.0 2414, X2,2019,33800,Semi-Auto,4291,Petrol,145,34.0,2.0 2415, 2 Series,2019,21600,Manual,1455,Diesel,145,51.4,2.0 2416, 3 Series,2019,25330,Semi-Auto,2307,Diesel,145,65.7,2.0 2417, 3 Series,2016,14230,Manual,57736,Petrol,145,47.9,2.0 2418, X1,2019,30920,Manual,5234,Diesel,145,68.9,2.0 2419, 4 Series,2018,20750,Semi-Auto,7261,Diesel,145,60.1,2.0 2420, X4,2019,38500,Semi-Auto,10802,Diesel,145,37.2,3.0 2421, 7 Series,2019,48782,Semi-Auto,101,Diesel,145,41.5,3.0 2422, 5 Series,2019,42650,Semi-Auto,101,Petrol,145,50.4,2.0 2423, 3 Series,2016,22500,Semi-Auto,24079,Diesel,205,49.6,3.0 2424, 3 Series,2015,15000,Semi-Auto,47773,Diesel,125,58.9,2.0 2425, 4 Series,2019,24250,Automatic,5758,Diesel,145,65.7,2.0 2426, 3 Series,2019,24000,Automatic,12473,Diesel,145,52.3,2.0 2427, X5,2019,53500,Automatic,6601,Diesel,145,33.6,3.0 2428, 3 Series,2019,27850,Automatic,2965,Diesel,145,52.3,2.0 2429, 3 Series,2018,22900,Semi-Auto,27800,Petrol,145,48.7,2.0 2430, 4 Series,2019,25900,Semi-Auto,12202,Petrol,145,48.7,2.0 2431, 5 Series,2019,42650,Semi-Auto,101,Petrol,145,50.4,2.0 2432, 5 Series,2019,42400,Semi-Auto,101,Petrol,145,50.4,2.0 2433, 7 Series,2019,50390,Semi-Auto,2218,Petrol,145,33.6,3.0 2434, 7 Series,2019,46500,Semi-Auto,6249,Diesel,145,42.2,3.0 2435, 3 Series,2019,23298,Semi-Auto,15221,Diesel,145,62.8,2.0 2436, X1,2016,14998,Manual,52422,Diesel,125,58.9,2.0 2437, X1,2017,21350,Automatic,17877,Diesel,145,60.1,2.0 2438, 2 Series,2019,21500,Manual,6649,Petrol,145,42.2,1.5 2439, 7 Series,2019,52900,Semi-Auto,2919,Diesel,145,41.5,3.0 2440, 3 Series,2018,21397,Semi-Auto,5034,Diesel,145,62.8,2.0 2441, 2 Series,2019,26991,Manual,103,Diesel,145,51.4,2.0 2442, 2 Series,2019,27990,Semi-Auto,1614,Diesel,145,49.6,2.0 2443, 2 Series,2019,28361,Semi-Auto,101,Petrol,145,50.4,2.0 2444, 3 Series,2016,13298,Semi-Auto,62655,Diesel,30,64.2,2.0 2445, 4 Series,2016,19444,Semi-Auto,55297,Diesel,160,50.4,3.0 2446, X1,2017,21250,Semi-Auto,17962,Petrol,165,44.8,2.0 2447, 5 Series,2017,26500,Automatic,17766,Diesel,145,60.1,3.0 2448, 2 Series,2018,19000,Semi-Auto,9641,Petrol,145,38.2,2.0 2449, 3 Series,2019,26750,Semi-Auto,4327,Diesel,145,53.3,3.0 2450, 3 Series,2018,19900,Semi-Auto,12030,Diesel,145,64.2,2.0 2451, 3 Series,2017,14558,Semi-Auto,28487,Petrol,125,54.3,1.5 2452, X1,2016,16650,Semi-Auto,27843,Diesel,30,65.7,2.0 2453, 3 Series,2019,37991,Semi-Auto,7447,Petrol,150,34.9,3.0 2454, X5,2017,33991,Automatic,32771,Diesel,145,47.1,3.0 2455, X4,2019,38500,Semi-Auto,12733,Diesel,150,37.2,3.0 2456, 2 Series,2017,16991,Manual,20626,Diesel,30,62.8,2.0 2457, M3,2017,37591,Semi-Auto,15770,Petrol,305,34.0,3.0 2458, X7,2019,65050,Semi-Auto,3192,Diesel,145,33.6,3.0 2459, 5 Series,2019,28800,Semi-Auto,5360,Diesel,145,65.7,2.0 2460, 3 Series,2019,29480,Semi-Auto,2228,Diesel,145,52.3,2.0 2461, 1 Series,2019,16980,Manual,12,Diesel,145,68.9,2.0 2462, 4 Series,2019,24785,Semi-Auto,2924,Petrol,145,48.7,2.0 2463, 4 Series,2016,18490,Semi-Auto,38692,Diesel,30,65.7,2.0 2464, 3 Series,2018,19490,Semi-Auto,28816,Petrol,150,48.7,2.0 2465, 3 Series,2019,26260,Semi-Auto,14612,Petrol,145,41.5,3.0 2466, X5,2016,30991,Automatic,14286,Diesel,200,47.1,3.0 2467, 3 Series,2015,14531,Semi-Auto,41330,Diesel,125,61.4,2.0 2468, X5,2017,37500,Automatic,11261,Diesel,145,42.8,3.0 2469, 2 Series,2017,17858,Automatic,28561,Hybrid,0,135.5,1.5 2470, 7 Series,2016,29240,Semi-Auto,20619,Diesel,145,54.3,3.0 2471, 1 Series,2017,19991,Manual,20302,Petrol,145,36.2,3.0 2472, 3 Series,2019,27480,Manual,18,Diesel,145,54.3,2.0 2473, 4 Series,2019,29840,Semi-Auto,6011,Diesel,145,60.1,2.0 2474, 2 Series,2019,21480,Manual,3347,Diesel,145,61.4,2.0 2475, 2 Series,2019,19980,Manual,1900,Petrol,145,42.8,1.5 2476, 2 Series,2019,19980,Manual,10,Petrol,145,42.8,1.5 2477, X1,2019,25780,Semi-Auto,4224,Diesel,145,60.1,2.0 2478, 3 Series,2019,27480,Manual,4398,Diesel,145,54.3,2.0 2479, 2 Series,2020,21890,Semi-Auto,11,Petrol,150,50.4,1.5 2480, 3 Series,2019,26498,Semi-Auto,17794,Diesel,145,48.7,2.0 2481, 1 Series,2016,11491,Manual,36200,Diesel,0,83.1,1.5 2482, 1 Series,2013,15991,Semi-Auto,50039,Petrol,235,37.7,3.0 2483, 3 Series,2015,15991,Semi-Auto,48000,Diesel,150,53.3,3.0 2484, 5 Series,2018,29991,Semi-Auto,12000,Diesel,150,60.1,3.0 2485, 4 Series,2015,15991,Manual,28000,Petrol,165,44.8,2.0 2486, X3,2019,33990,Semi-Auto,3440,Diesel,150,54.3,2.0 2487, X3,2019,38990,Semi-Auto,5656,Diesel,150,36.7,3.0 2488, 3 Series,2020,30940,Semi-Auto,1586,Diesel,150,50.4,2.0 2489, 2 Series,2019,22990,Manual,8567,Diesel,150,51.4,2.0 2490, 1 Series,2020,29950,Semi-Auto,3422,Diesel,150,48.7,2.0 2491, 3 Series,2017,20990,Semi-Auto,6971,Diesel,125,60.1,2.0 2492, X1,2017,19990,Semi-Auto,18754,Diesel,150,65.7,2.0 2493, Z4,2020,33850,Semi-Auto,5,Petrol,150,38.7,2.0 2494, 3 Series,2014,13990,Semi-Auto,29046,Diesel,30,62.8,2.0 2495, 2 Series,2017,18990,Semi-Auto,31208,Diesel,150,65.7,2.0 2496, M4,2020,48950,Semi-Auto,17,Petrol,150,32.5,3.0 2497, 5 Series,2020,26990,Semi-Auto,14,Petrol,150,50.4,2.0 2498, 2 Series,2016,14490,Semi-Auto,40115,Diesel,30,64.2,2.0 2499, 3 Series,2015,13990,Semi-Auto,45116,Petrol,150,47.9,2.0 2500, 5 Series,2019,32990,Semi-Auto,4716,Diesel,150,53.3,3.0 2501, 2 Series,2019,20840,Semi-Auto,6050,Petrol,150,50.4,1.5 2502, 1 Series,2017,15450,Semi-Auto,19383,Diesel,150,72.4,1.5 2503, 1 Series,2017,20990,Semi-Auto,25249,Diesel,150,61.4,2.0 2504, 5 Series,2019,25490,Semi-Auto,5656,Petrol,150,50.4,2.0 2505, 3 Series,2019,37490,Semi-Auto,9565,Petrol,150,34.9,3.0 2506, 5 Series,2020,42124,Semi-Auto,101,Petrol,145,39.2,3.0 2507, X6,2016,27750,Semi-Auto,38680,Diesel,200,47.1,3.0 2508, X3,2019,31200,Semi-Auto,17173,Petrol,145,30.4,2.0 2509, 4 Series,2019,34885,Semi-Auto,4883,Diesel,145,60.1,2.0 2510, 1 Series,2019,32760,Semi-Auto,2690,Petrol,145,34.5,2.0 2511, 4 Series,2019,22690,Semi-Auto,4940,Diesel,150,65.7,2.0 2512, 4 Series,2019,22490,Semi-Auto,7949,Diesel,150,65.7,2.0 2513, X3,2020,32490,Semi-Auto,6565,Diesel,150,54.3,2.0 2514, 2 Series,2018,18990,Semi-Auto,13600,Petrol,150,38.2,2.0 2515, 3 Series,2017,20030,Semi-Auto,44751,Petrol,145,48.7,2.0 2516, 4 Series,2017,20385,Semi-Auto,19221,Diesel,145,65.7,2.0 2517, 3 Series,2018,21420,Semi-Auto,21328,Diesel,145,60.1,2.0 2518, 4 Series,2016,19972,Semi-Auto,15705,Petrol,145,48.7,2.0 2519, 4 Series,2018,21216,Semi-Auto,11685,Diesel,145,65.7,2.0 2520, 3 Series,2019,20298,Manual,6018,Diesel,145,64.2,2.0 2521, 4 Series,2019,32087,Semi-Auto,1678,Diesel,145,65.7,2.0 2522, X3,2019,34991,Semi-Auto,2549,Diesel,145,54.3,2.0 2523, 3 Series,2016,16200,Semi-Auto,17252,Diesel,30,62.8,2.0 2524, X4,2020,49481,Semi-Auto,101,Diesel,145,37.2,3.0 2525, X4,2020,41904,Semi-Auto,101,Diesel,145,42.8,2.0 2526, 1 Series,2020,26991,Semi-Auto,5,Petrol,145,40.4,1.5 2527, 3 Series,2017,17991,Semi-Auto,48356,Diesel,30,64.2,2.0 2528, 4 Series,2019,21990,Semi-Auto,9654,Diesel,150,65.7,2.0 2529, 4 Series,2019,24490,Manual,9232,Petrol,150,42.8,2.0 2530, 4 Series,2019,23490,Semi-Auto,8175,Diesel,150,65.7,2.0 2531, X2,2020,34990,Semi-Auto,10,Petrol,150,34.0,2.0 2532, Z4,2020,30990,Semi-Auto,100,Petrol,150,38.7,2.0 2533, 3 Series,2020,28990,Semi-Auto,14,Diesel,150,50.4,2.0 2534, 5 Series,2019,35840,Semi-Auto,11,Diesel,145,53.3,3.0 2535, 4 Series,2015,16990,Semi-Auto,24450,Petrol,205,42.8,2.0 2536, 5 Series,2018,31490,Semi-Auto,11798,Petrol,150,39.2,3.0 2537, 3 Series,2015,16990,Semi-Auto,29706,Diesel,30,62.8,2.0 2538, 1 Series,2017,14950,Manual,13971,Diesel,150,68.9,2.0 2539, X3,2017,22490,Semi-Auto,13697,Diesel,150,54.3,2.0 2540, 2 Series,2016,14990,Semi-Auto,16685,Petrol,125,53.3,1.5 2541, 2 Series,2017,14990,Manual,14643,Petrol,125,52.3,1.5 2542, X7,2020,77990,Semi-Auto,5656,Diesel,150,31.4,3.0 2543, X6,2020,67990,Semi-Auto,5656,Diesel,150,33.2,3.0 2544, X7,2019,77880,Semi-Auto,6506,Diesel,150,31.4,3.0 2545, 5 Series,2020,27990,Semi-Auto,9,Petrol,150,36.2,2.0 2546, 3 Series,2020,24990,Semi-Auto,22,Diesel,150,54.3,2.0 2547, 2 Series,2020,21890,Semi-Auto,10,Petrol,150,50.4,1.5 2548, 5 Series,2020,26990,Semi-Auto,6,Petrol,145,52.3,2.0 2549, 3 Series,2017,17490,Semi-Auto,18138,Diesel,145,64.2,2.0 2550, M4,2016,30490,Semi-Auto,38422,Petrol,300,34.0,3.0 2551, X5,2017,38990,Automatic,19094,Diesel,150,42.8,3.0 2552, 1 Series,2020,23490,Manual,6565,Diesel,150,53.3,2.0 2553, 2 Series,2020,22990,Semi-Auto,11,Petrol,150,47.9,2.0 2554, X4,2019,36490,Semi-Auto,4068,Diesel,150,40.9,3.0 2555, 1 Series,2019,24490,Semi-Auto,2036,Diesel,150,53.3,2.0 2556, 3 Series,2020,24990,Semi-Auto,16,Diesel,150,54.3,2.0 2557, 5 Series,2020,27990,Semi-Auto,9,Hybrid,150,49.6,2.0 2558, 4 Series,2019,28990,Semi-Auto,5656,Diesel,150,50.4,3.0 2559, X4,2019,34990,Semi-Auto,5656,Diesel,150,42.8,2.0 2560, 1 Series,2019,25490,Manual,10,Diesel,145,53.3,2.0 2561, 5 Series,2019,26350,Semi-Auto,10312,Diesel,145,65.7,2.0 2562, 1 Series,2019,29490,Semi-Auto,7656,Petrol,150,34.5,2.0 2563, 3 Series,2020,30850,Semi-Auto,5656,Diesel,150,48.7,2.0 2564, 2 Series,2019,24990,Semi-Auto,10,Petrol,145,50.4,2.0 2565, 1 Series,2019,24450,Manual,10,Petrol,145,41.5,1.5 2566, X7,2020,63990,Semi-Auto,6137,Diesel,145,33.6,3.0 2567, Z4,2020,29990,Semi-Auto,4646,Petrol,145,38.7,2.0 2568, 4 Series,2019,27890,Semi-Auto,2476,Petrol,145,48.7,2.0 2569, X2,2019,28490,Semi-Auto,2949,Diesel,145,61.4,2.0 2570, 4 Series,2019,26490,Semi-Auto,1652,Petrol,145,45.6,2.0 2571, 4 Series,2019,25850,Semi-Auto,2146,Diesel,145,65.7,2.0 2572, 4 Series,2019,25850,Semi-Auto,1980,Diesel,145,65.7,2.0 2573, 2 Series,2019,22650,Manual,100,Diesel,145,61.4,2.0 2574, 5 Series,2018,22600,Semi-Auto,14102,Diesel,145,68.9,2.0 2575, X1,2016,13991,Manual,46424,Diesel,125,60.1,2.0 2576, 3 Series,2019,23980,Semi-Auto,4628,Diesel,145,62.8,2.0 2577, 5 Series,2020,29990,Semi-Auto,10,Petrol,145,50.4,2.0 2578, X2,2020,23450,Manual,15,Diesel,145,55.4,2.0 2579, 4 Series,2020,25980,Manual,14,Petrol,145,46.3,2.0 2580, 1 Series,2020,20490,Manual,6262,Petrol,145,44.1,1.5 2581, 3 Series,2020,28990,Semi-Auto,5656,Diesel,145,52.3,2.0 2582, 3 Series,2020,30490,Semi-Auto,6565,Diesel,145,50.4,2.0 2583, 3 Series,2020,32790,Semi-Auto,5656,Diesel,145,47.9,3.0 2584, 1 Series,2020,30990,Semi-Auto,5656,Petrol,145,34.5,2.0 2585, 3 Series,2020,33990,Semi-Auto,5665,Petrol,145,40.4,2.0 2586, 4 Series,2019,23450,Semi-Auto,6900,Diesel,145,65.7,2.0 2587, 7 Series,2016,32990,Semi-Auto,21224,Petrol,300,35.3,4.4 2588, 2 Series,2015,17261,Manual,25637,Petrol,300,34.9,3.0 2589, X4,2019,36750,Semi-Auto,15508,Diesel,145,40.9,3.0 2590, X1,2016,17700,Semi-Auto,37326,Diesel,125,57.6,2.0 2591, 1 Series,2017,22991,Semi-Auto,15709,Petrol,145,39.8,3.0 2592, X4,2017,25990,Semi-Auto,25357,Diesel,200,47.9,3.0 2593, 4 Series,2018,24800,Semi-Auto,29435,Diesel,145,49.6,3.0 2594, 5 Series,2019,26350,Semi-Auto,4694,Diesel,145,65.7,2.0 2595, 3 Series,2019,28450,Semi-Auto,9809,Petrol,145,43.5,2.0 2596, 5 Series,2019,26350,Semi-Auto,6260,Diesel,145,65.7,2.0 2597, 5 Series,2019,26350,Semi-Auto,9334,Diesel,145,65.7,2.0 2598, 3 Series,2020,28990,Semi-Auto,4,Diesel,145,62.8,2.0 2599, 3 Series,2019,24450,Manual,4725,Diesel,145,54.3,2.0 2600, 3 Series,2019,27450,Semi-Auto,7827,Petrol,145,43.5,2.0 2601, 7 Series,2019,49990,Semi-Auto,10478,Petrol,145,33.6,3.0 2602, X7,2020,78490,Semi-Auto,4919,Diesel,145,31.4,3.0 2603, 5 Series,2019,26490,Semi-Auto,10656,Diesel,150,65.7,2.0 2604, 5 Series,2019,24397,Semi-Auto,10423,Diesel,145,65.7,2.0 2605, 4 Series,2019,28697,Semi-Auto,4927,Diesel,145,50.4,3.0 2606, X2,2019,29490,Semi-Auto,1155,Diesel,145,61.4,2.0 2607, 1 Series,2019,29950,Semi-Auto,10,Diesel,145,48.7,2.0 2608, 4 Series,2019,25450,Semi-Auto,1678,Petrol,145,48.7,2.0 2609, X7,2020,69990,Semi-Auto,5087,Diesel,145,33.6,3.0 2610, 1 Series,2019,27490,Semi-Auto,2270,Diesel,145,51.4,2.0 2611, 5 Series,2020,34850,Semi-Auto,16,Hybrid,145,44.8,2.0 2612, X2,2020,30990,Manual,6,Petrol,145,42.8,1.5 2613, 3 Series,2020,23490,Manual,15,Diesel,145,58.9,2.0 2614, X3,2017,25990,Semi-Auto,26325,Diesel,200,47.1,3.0 2615, 3 Series,2020,29990,Semi-Auto,9,Diesel,145,50.4,2.0 2616, 3 Series,2020,23990,Manual,13,Diesel,145,56.5,2.0 2617, 1 Series,2016,18897,Semi-Auto,32632,Petrol,200,39.8,3.0 2618, 3 Series,2019,27997,Semi-Auto,16330,Diesel,145,49.6,3.0 2619, 3 Series,2019,28497,Semi-Auto,9898,Diesel,145,49.6,3.0 2620, 3 Series,2019,24597,Semi-Auto,5574,Petrol,145,48.7,2.0 2621, 2 Series,2018,32271,Semi-Auto,103,Diesel,145,49.6,2.0 2622, X2,2019,32991,Semi-Auto,2899,Petrol,145,39.2,2.0 2623, 2 Series,2019,22991,Manual,103,Petrol,145,44.1,1.5 2624, X2,2018,24530,Semi-Auto,25660,Diesel,145,61.4,2.0 2625, X1,2019,23497,Semi-Auto,105,Petrol,145,37.7,2.0 2626, 2 Series,2019,22490,Manual,10,Petrol,145,52.3,1.5 2627, 1 Series,2019,22490,Manual,10,Petrol,145,44.1,1.5 2628, 1 Series,2019,27990,Semi-Auto,10,Diesel,145,51.4,2.0 2629, 1 Series,2019,23990,Manual,10,Petrol,145,41.5,1.5 2630, X2,2019,26490,Semi-Auto,10,Petrol,145,38.7,2.0 2631, 1 Series,2019,24990,Manual,10,Diesel,145,53.3,2.0 2632, 1 Series,2016,21990,Semi-Auto,10,Diesel,20,68.9,1.5 2633, 1 Series,2016,18990,Manual,10,Diesel,20,72.4,1.5 2634, 3 Series,2019,29990,Semi-Auto,7460,Diesel,145,48.7,2.0 2635, 3 Series,2019,28440,Semi-Auto,8788,Diesel,145,48.7,2.0 2636, 5 Series,2020,32850,Semi-Auto,5,Hybrid,145,62.8,2.0 2637, X2,2020,26890,Manual,9,Diesel,145,53.3,2.0 2638, 5 Series,2020,27990,Semi-Auto,8,Hybrid,145,52.3,2.0 2639, 4 Series,2020,33890,Semi-Auto,9,Diesel,145,51.4,3.0 2640, 5 Series,2017,23980,Semi-Auto,29539,Diesel,145,60.1,2.0 2641, 3 Series,2019,30326,Semi-Auto,3392,Petrol,145,41.5,2.0 2642, Z4,2020,35850,Semi-Auto,5,Petrol,145,37.2,2.0 2643, 3 Series,2020,22850,Semi-Auto,12,Petrol,145,43.5,2.0 2644, 5 Series,2016,16300,Semi-Auto,21464,Diesel,20,68.9,2.0 2645, M4,2016,31870,Semi-Auto,21533,Petrol,300,34.0,3.0 2646, X6,2016,32800,Semi-Auto,26615,Diesel,200,44.8,3.0 2647, X5,2017,57990,Automatic,10,Diesel,145,42.8,3.0 2648, 3 Series,2017,35990,Semi-Auto,112,Diesel,145,51.4,3.0 2649, 1 Series,2020,21940,Manual,514,Petrol,145,44.1,1.5 2650, 1 Series,2016,19490,Manual,10,Diesel,0,78.5,1.5 2651, 4 Series,2018,25945,Semi-Auto,20011,Petrol,145,41.5,3.0 2652, 3 Series,2018,22875,Semi-Auto,8973,Petrol,145,47.9,2.0 2653, 2 Series,2019,21945,Semi-Auto,11687,Petrol,145,47.9,2.0 2654, 2 Series,2019,22440,Manual,10,Petrol,145,52.3,1.5 2655, X1,2016,20845,Semi-Auto,17699,Petrol,160,44.8,2.0 2656, 3 Series,2019,31390,Semi-Auto,5029,Petrol,145,40.9,2.0 2657, 3 Series,2019,24990,Manual,4753,Diesel,145,64.2,2.0 2658, 3 Series,2019,24950,Manual,3238,Diesel,145,64.2,2.0 2659, 5 Series,2019,30980,Semi-Auto,9709,Diesel,145,56.5,3.0 2660, 3 Series,2019,23790,Semi-Auto,8178,Petrol,145,47.9,2.0 2661, 3 Series,2019,23980,Semi-Auto,2198,Petrol,145,47.9,2.0 2662, 4 Series,2019,24975,Semi-Auto,9533,Diesel,145,65.7,2.0 2663, 2 Series,2018,23110,Semi-Auto,19598,Petrol,145,39.8,3.0 2664, 4 Series,2016,17450,Semi-Auto,27089,Diesel,30,65.7,2.0 2665, 1 Series,2017,22490,Semi-Auto,23120,Petrol,145,39.8,3.0 2666, 2 Series,2015,16000,Semi-Auto,29788,Diesel,30,64.2,2.0 2667, 2 Series,2020,26095,Manual,101,Petrol,145,52.3,1.5 2668, 1 Series,2019,17697,Manual,3312,Petrol,145,52.3,1.5 2669, X5,2017,50990,Automatic,10,Diesel,145,47.1,3.0 2670, 1 Series,2017,24490,Manual,102,Diesel,145,65.7,2.0 2671, 1 Series,2016,19490,Manual,10,Diesel,20,72.4,1.5 2672, 1 Series,2016,19990,Manual,10,Petrol,125,53.3,1.5 2673, Z4,2020,33490,Semi-Auto,10,Petrol,145,38.7,2.0 2674, X1,2020,29450,Semi-Auto,10,Diesel,145,40.9,2.0 2675, X5,2017,51990,Automatic,10,Diesel,200,47.1,3.0 2676, 4 Series,2017,16900,Automatic,19834,Diesel,145,65.7,2.0 2677, 3 Series,2018,15620,Manual,19281,Diesel,145,60.1,2.0 2678, 2 Series,2020,24475,Manual,117,Diesel,145,51.4,2.0 2679, 2 Series,2020,23475,Semi-Auto,12,Petrol,145,50.4,1.5 2680, 4 Series,2018,22440,Semi-Auto,13673,Petrol,145,48.7,2.0 2681, X1,2019,25450,Semi-Auto,5021,Petrol,145,40.9,1.5 2682, 5 Series,2019,36875,Semi-Auto,10,Diesel,145,53.3,3.0 2683, 5 Series,2019,26350,Semi-Auto,9062,Diesel,145,65.7,2.0 2684, 1 Series,2016,20990,Manual,10,Diesel,20,68.9,2.0 2685, 2 Series,2019,22950,Semi-Auto,11,Diesel,145,64.2,2.0 2686, 2 Series,2019,23890,Semi-Auto,14,Diesel,145,62.8,2.0 2687, 4 Series,2019,33490,Semi-Auto,10,Diesel,145,51.4,3.0 2688, 5 Series,2019,35475,Semi-Auto,15,Diesel,145,53.3,3.0 2689, 3 Series,2019,23775,Semi-Auto,2552,Petrol,145,47.9,2.0 2690, 3 Series,2019,23775,Semi-Auto,2359,Petrol,145,47.9,2.0 2691, 5 Series,2014,12298,Semi-Auto,52598,Diesel,30,62.8,2.0 2692, 1 Series,2019,15995,Manual,5500,Diesel,145,68.9,2.0 2693, 1 Series,2014,8250,Manual,67654,Diesel,0,74.3,1.6 2694, 3 Series,2014,14894,Semi-Auto,36771,Diesel,125,57.6,3.0 2695, 3 Series,2016,18000,Semi-Auto,29978,Diesel,160,51.4,3.0 2696, 5 Series,2018,27980,Semi-Auto,29482,Diesel,145,53.3,3.0 2697, 4 Series,2016,24980,Manual,10,Petrol,160,46.3,2.0 2698, 4 Series,2017,41990,Automatic,10,Petrol,200,41.5,3.0 2699, X1,2017,25990,Manual,10,Diesel,20,68.9,2.0 2700, X1,2017,30980,Semi-Auto,10,Petrol,160,44.8,2.0 2701, 1 Series,2017,19490,Manual,10,Petrol,125,53.3,1.5 2702, X6,2020,49975,Semi-Auto,2950,Diesel,150,34.9,3.0 2703, 2 Series,2019,23975,Semi-Auto,3013,Diesel,150,64.2,2.0 2704, 4 Series,2019,28975,Semi-Auto,3783,Diesel,150,49.6,3.0 2705, 3 Series,2020,32475,Semi-Auto,12,Diesel,145,48.7,2.0 2706, 5 Series,2020,32475,Semi-Auto,12,Hybrid,145,49.6,2.0 2707, 3 Series,2020,33475,Semi-Auto,12,Diesel,145,48.7,2.0 2708, X6,2020,54975,Semi-Auto,1075,Petrol,150,26.4,3.0 2709, X2,2018,22470,Semi-Auto,10500,Diesel,145,61.4,2.0 2710, 3 Series,2015,14998,Semi-Auto,81455,Diesel,200,49.6,3.0 2711, 3 Series,2018,21998,Semi-Auto,17810,Diesel,145,60.1,2.0 2712, 3 Series,2018,19498,Semi-Auto,17686,Diesel,145,64.2,2.0 2713, X2,2019,27990,Semi-Auto,10,Petrol,145,38.7,2.0 2714, X5,2017,55990,Automatic,10,Diesel,145,47.1,3.0 2715, 2 Series,2017,21990,Manual,10,Diesel,145,64.2,2.0 2716, 2 Series,2017,20990,Semi-Auto,10,Petrol,145,52.3,1.5 2717, 3 Series,2019,26450,Manual,3055,Diesel,145,54.3,2.0 2718, 3 Series,2019,26450,Manual,3093,Diesel,145,54.3,2.0 2719, X1,2017,20375,Semi-Auto,28005,Diesel,125,57.6,2.0 2720, 1 Series,2016,20990,Manual,10,Diesel,20,68.9,2.0 2721, 4 Series,2019,23450,Semi-Auto,11,Diesel,145,65.7,2.0 2722, 5 Series,2019,35790,Semi-Auto,12,Diesel,145,53.3,3.0 2723, 5 Series,2019,35790,Semi-Auto,12,Diesel,145,53.3,3.0 2724, X6,2020,57990,Semi-Auto,3955,Diesel,145,34.9,3.0 2725, X5,2020,48490,Semi-Auto,5656,Diesel,145,37.7,3.0 2726, 1 Series,2017,20975,Semi-Auto,11932,Petrol,145,39.8,3.0 2727, 3 Series,2019,31440,Semi-Auto,4675,Petrol,145,40.9,2.0 2728, 3 Series,2019,23975,Semi-Auto,5749,Petrol,145,47.9,2.0 2729, X1,2019,24775,Manual,6786,Petrol,145,51.4,1.5 2730, X3,2019,32975,Semi-Auto,2715,Diesel,145,54.3,2.0 2731, 5 Series,2020,26990,Semi-Auto,11,Petrol,145,52.3,2.0 2732, 1 Series,2018,16275,Manual,12879,Petrol,145,53.3,1.5 2733, X2,2019,27275,Semi-Auto,5177,Diesel,145,48.7,2.0 2734, 3 Series,2019,24775,Manual,3368,Diesel,145,64.2,2.0 2735, 1 Series,2015,9730,Manual,26845,Diesel,0,78.5,1.5 2736, X1,2016,17410,Automatic,32123,Diesel,125,57.6,2.0 2737, X1,2016,17207,Automatic,42761,Diesel,145,55.4,2.0 2738, 3 Series,2014,11000,Semi-Auto,69382,Diesel,125,57.6,3.0 2739, 5 Series,2013,10037,Automatic,77262,Diesel,125,60.1,2.0 2740, 2 Series,2018,16419,Manual,11198,Petrol,145,42.2,1.5 2741, 3 Series,2019,24775,Manual,3758,Diesel,145,64.2,2.0 2742, 3 Series,2019,23990,Manual,4026,Diesel,145,64.2,2.0 2743, 3 Series,2019,31390,Semi-Auto,3097,Petrol,145,41.5,2.0 2744, X5,2019,44790,Semi-Auto,10776,Diesel,145,37.7,3.0 2745, 1 Series,2019,28975,Semi-Auto,7110,Petrol,150,34.5,2.0 2746, 3 Series,2019,25975,Semi-Auto,3119,Petrol,150,42.2,2.0 2747, X3,2019,38975,Semi-Auto,6436,Diesel,150,36.7,3.0 2748, 3 Series,2019,27975,Semi-Auto,8856,Diesel,150,52.3,2.0 2749, X4,2019,35480,Semi-Auto,10395,Diesel,150,42.8,2.0 2750, 2 Series,2020,23990,Semi-Auto,18,Diesel,150,49.6,2.0 2751, 2 Series,2020,21890,Semi-Auto,12,Petrol,150,50.4,1.5 2752, 4 Series,2020,25980,Semi-Auto,14,Diesel,145,65.7,2.0 2753, 3 Series,2013,9200,Automatic,83944,Diesel,125,60.1,2.0 2754, 3 Series,2019,31275,Semi-Auto,5494,Petrol,145,41.5,2.0 2755, 3 Series,2019,24275,Semi-Auto,10361,Diesel,145,62.8,2.0 2756, 4 Series,2019,24775,Semi-Auto,10535,Diesel,145,65.7,2.0 2757, 5 Series,2019,26275,Semi-Auto,7585,Diesel,145,65.7,2.0 2758, 5 Series,2019,33775,Semi-Auto,12900,Diesel,145,53.3,3.0 2759, 5 Series,2019,28975,Semi-Auto,2013,Diesel,145,60.1,2.0 2760, X1,2019,28790,Semi-Auto,3911,Petrol,145,38.7,2.0 2761, 4 Series,2020,25775,Semi-Auto,12,Diesel,150,65.7,2.0 2762, 1 Series,2014,10975,Manual,38000,Diesel,30,65.7,2.0 2763, 3 Series,2019,25950,Semi-Auto,3977,Petrol,145,43.5,2.0 2764, 5 Series,2019,26350,Semi-Auto,8324,Diesel,145,65.7,2.0 2765, 3 Series,2020,30990,Semi-Auto,3656,Diesel,150,50.4,2.0 2766, 3 Series,2020,27990,Semi-Auto,6565,Petrol,150,42.2,2.0 2767, X2,2020,28490,Semi-Auto,6565,Diesel,150,58.9,2.0 2768, 1 Series,2020,25450,Semi-Auto,6565,Diesel,150,51.4,2.0 2769, X1,2020,25490,Semi-Auto,5656,Diesel,150,47.9,2.0 2770, X2,2020,23990,Manual,15,Diesel,150,55.4,2.0 2771, X5,2020,48975,Semi-Auto,9998,Diesel,145,37.7,3.0 2772, 2 Series,2020,26475,Semi-Auto,12,Diesel,145,51.4,2.0 2773, 3 Series,2020,26490,Semi-Auto,14,Diesel,150,60.1,2.0 2774, 3 Series,2019,29975,Manual,1254,Diesel,145,54.3,2.0 2775, 3 Series,2019,27275,Manual,3377,Diesel,145,54.3,2.0 2776, 2 Series,2019,22275,Manual,12,Petrol,145,42.2,1.5 2777, 3 Series,2019,28775,Semi-Auto,5800,Diesel,145,52.3,2.0 2778, 3 Series,2019,24775,Manual,3043,Diesel,145,64.2,2.0 2779, M4,2019,39275,Semi-Auto,8787,Petrol,145,34.0,3.0 2780, M4,2019,42275,Semi-Auto,9403,Petrol,145,32.5,3.0 2781, 3 Series,2018,24475,Semi-Auto,10548,Petrol,145,46.3,2.0 2782, 3 Series,2018,24790,Semi-Auto,12,Petrol,145,48.7,2.0 2783, 3 Series,2018,27490,Semi-Auto,12,Diesel,145,57.7,2.0 2784, X1,2019,25450,Semi-Auto,6908,Petrol,145,40.9,1.5 2785, X3,2019,34440,Semi-Auto,11,Diesel,145,54.3,2.0 2786, X2,2020,22980,Semi-Auto,10,Petrol,145,43.5,1.5 2787, 3 Series,2020,29990,Semi-Auto,9,Diesel,145,51.4,2.0 2788, X2,2020,34450,Semi-Auto,14,Petrol,145,34.0,2.0 2789, 5 Series,2020,31450,Semi-Auto,8,Hybrid,145,60.1,2.0 2790, 5 Series,2020,29950,Semi-Auto,6,Hybrid,145,49.6,2.0 2791, X3,2020,39990,Semi-Auto,4773,Diesel,150,48.7,3.0 2792, 3 Series,2014,12475,Manual,51122,Diesel,30,62.8,2.0 2793, 2 Series,2020,26490,Semi-Auto,10,Diesel,150,47.1,2.0 2794, 4 Series,2018,22275,Semi-Auto,18243,Petrol,145,48.7,2.0 2795, 2 Series,2019,23775,Manual,34,Diesel,145,60.1,2.0 2796, 2 Series,2019,22775,Manual,10,Diesel,145,51.4,2.0 2797, 5 Series,2019,31475,Semi-Auto,12,Petrol,145,48.7,2.0 2798, 4 Series,2019,33975,Semi-Auto,11,Diesel,145,51.4,3.0 2799, 4 Series,2019,24275,Semi-Auto,13,Petrol,145,45.6,2.0 2800, 4 Series,2019,24275,Semi-Auto,12,Petrol,145,45.6,2.0 2801, 4 Series,2019,23975,Semi-Auto,13,Petrol,145,45.6,2.0 2802, X2,2018,28990,Manual,12,Diesel,145,52.3,2.0 2803, X3,2018,39650,Semi-Auto,12,Diesel,145,54.3,2.0 2804, 5 Series,2019,26350,Semi-Auto,14345,Diesel,145,65.7,2.0 2805, X1,2019,25999,Semi-Auto,4575,Diesel,145,60.1,2.0 2806, X1,2019,25999,Semi-Auto,2974,Diesel,145,60.1,2.0 2807, 4 Series,2016,18475,Semi-Auto,10545,Diesel,30,65.7,2.0 2808, 4 Series,2017,23475,Semi-Auto,29819,Diesel,145,50.4,3.0 2809, X4,2019,40775,Semi-Auto,5450,Petrol,145,26.9,3.0 2810, M4,2019,43950,Semi-Auto,19,Petrol,145,34.0,3.0 2811, 3 Series,2019,23980,Semi-Auto,2760,Diesel,145,62.8,2.0 2812, 1 Series,2019,18450,Semi-Auto,5882,Petrol,145,54.3,1.5 2813, X1,2019,25450,Semi-Auto,5863,Petrol,145,46.3,1.5 2814, 5 Series,2014,13775,Semi-Auto,51716,Diesel,30,62.8,2.0 2815, 2 Series,2019,21775,Semi-Auto,10570,Petrol,145,47.9,2.0 2816, 5 Series,2015,17970,Semi-Auto,29060,Diesel,145,53.3,3.0 2817, 2 Series,2019,21775,Semi-Auto,8878,Petrol,145,47.9,2.0 2818, X1,2018,21975,Semi-Auto,16719,Diesel,145,60.1,2.0 2819, X1,2017,20975,Semi-Auto,14063,Petrol,160,44.8,2.0 2820, 3 Series,2020,29990,Semi-Auto,12,Petrol,150,41.5,2.0 2821, 3 Series,2020,23990,Manual,5,Diesel,145,56.5,2.0 2822, 5 Series,2020,43990,Semi-Auto,10,Petrol,145,39.2,3.0 2823, 3 Series,2020,23850,Semi-Auto,23,Petrol,145,42.2,2.0 2824, X3,2019,47440,Semi-Auto,6570,Petrol,145,34.5,3.0 2825, 3 Series,2015,16799,Semi-Auto,35365,Diesel,145,57.6,2.0 2826, 3 Series,2015,13275,Manual,61062,Diesel,125,60.1,2.0 2827, 3 Series,2017,21275,Semi-Auto,14714,Diesel,160,51.4,3.0 2828, 3 Series,2015,13975,Manual,41655,Diesel,30,64.2,2.0 2829, X6,2016,29890,Semi-Auto,27838,Diesel,200,47.1,3.0 2830, 1 Series,2018,17975,Manual,12800,Diesel,145,50.4,1.5 2831, 3 Series,2020,23990,Manual,16,Diesel,145,56.5,2.0 2832, 3 Series,2020,24850,Semi-Auto,10,Diesel,145,52.3,2.0 2833, 4 Series,2014,16475,Semi-Auto,17500,Petrol,160,44.8,2.0 2834, X2,2020,30990,Semi-Auto,10,Petrol,145,42.8,1.5 2835, 4 Series,2020,38990,Semi-Auto,9,Diesel,145,47.9,3.0 2836, 5 Series,2020,36990,Semi-Auto,10,Diesel,145,60.1,3.0 2837, 5 Series,2020,32850,Semi-Auto,12,Hybrid,145,62.8,2.0 2838, 6 Series,2016,21975,Semi-Auto,28684,Diesel,160,51.4,3.0 2839, 1 Series,2019,18999,Semi-Auto,12011,Diesel,145,65.7,2.0 2840, 3 Series,2019,28950,Semi-Auto,5367,Diesel,145,52.3,2.0 2841, 1 Series,2018,16775,Manual,10842,Diesel,145,65.7,2.0 2842, X5,2019,46950,Semi-Auto,8105,Diesel,145,37.7,3.0 2843, 4 Series,2019,23750,Semi-Auto,9,Diesel,145,65.7,2.0 2844, 4 Series,2018,21975,Semi-Auto,18165,Petrol,145,48.7,2.0 2845, 5 Series,2019,27875,Semi-Auto,3905,Diesel,145,55.4,2.0 2846, 3 Series,2015,20440,Semi-Auto,39000,Petrol,200,41.5,3.0 2847, 7 Series,2019,47975,Semi-Auto,1075,Diesel,145,41.5,3.0 2848, 5 Series,2019,27998,Semi-Auto,6865,Diesel,145,60.1,2.0 2849, 1 Series,2019,19498,Semi-Auto,11602,Diesel,145,67.3,2.0 2850, 3 Series,2017,15498,Semi-Auto,43678,Diesel,150,60.1,2.0 2851, 3 Series,2015,16410,Automatic,35219,Diesel,145,56.5,3.0 2852, X6,2013,20510,Semi-Auto,63592,Diesel,325,36.7,3.0 2853, 7 Series,2014,13600,Automatic,78094,Diesel,160,50.4,3.0 2854, 2 Series,2017,13991,Manual,36045,Diesel,0,74.3,1.5 2855, 1 Series,2014,12111,Semi-Auto,57617,Diesel,125,60.1,2.0 2856, 3 Series,2016,15030,Semi-Auto,43482,Diesel,30,64.2,2.0 2857, 3 Series,2017,12791,Manual,37676,Diesel,30,64.2,2.0 2858, 5 Series,2018,26691,Automatic,28869,Petrol,145,37.7,3.0 2859, 4 Series,2016,17999,Manual,30055,Diesel,145,55.4,2.0 2860, X1,2013,10995,Manual,26642,Petrol,200,40.9,2.0 2861, 3 Series,2019,31880,Semi-Auto,5185,Diesel,145,44.1,3.0 2862, 3 Series,2016,20480,Semi-Auto,22834,Diesel,160,51.4,3.0 2863, X5,2016,24980,Automatic,68854,Diesel,200,47.1,3.0 2864, 3 Series,2013,10480,Manual,36494,Diesel,20,68.9,2.0 2865, 3 Series,2017,19490,Semi-Auto,41816,Diesel,145,64.2,2.0 2866, X3,2018,33980,Semi-Auto,18327,Diesel,145,48.7,3.0 2867, X3,2019,29480,Automatic,7164,Diesel,145,56.5,2.0 2868, X3,2016,22980,Semi-Auto,46389,Diesel,145,54.3,2.0 2869, X1,2017,20980,Semi-Auto,16717,Diesel,145,60.1,2.0 2870, 3 Series,2019,30990,Semi-Auto,1204,Diesel,145,49.6,2.0 2871, 3 Series,2019,27480,Semi-Auto,11103,Diesel,145,52.3,2.0 2872, 4 Series,2019,24250,Semi-Auto,110,Diesel,145,60.1,2.0 2873, 2 Series,2019,19975,Semi-Auto,9503,Diesel,145,49.6,2.0 2874, 5 Series,2019,25990,Semi-Auto,11114,Diesel,145,65.7,2.0 2875, 3 Series,2016,12480,Manual,51379,Diesel,20,68.9,2.0 2876, X4,2019,41980,Semi-Auto,6747,Petrol,145,26.9,3.0 2877, 4 Series,2019,26990,Semi-Auto,8722,Diesel,145,53.3,3.0 2878, 2 Series,2019,19880,Automatic,8556,Diesel,145,52.3,2.0 2879, 2 Series,2019,19980,Semi-Auto,11362,Petrol,145,40.9,1.5 2880, X1,2020,25980,Semi-Auto,19,Diesel,145,60.1,2.0 2881, Z4,2020,29980,Semi-Auto,10,Petrol,145,38.7,2.0 2882, 1 Series,2019,21490,Automatic,7314,Diesel,145,65.7,2.0 2883, 2 Series,2019,22480,Manual,6521,Diesel,145,60.1,2.0 2884, 3 Series,2019,27480,Semi-Auto,5090,Petrol,145,45.6,2.0 2885, 5 Series,2019,26480,Semi-Auto,8601,Petrol,145,50.4,2.0 2886, 4 Series,2019,24980,Semi-Auto,6917,Diesel,145,65.7,2.0 2887, 3 Series,2019,26990,Semi-Auto,7264,Diesel,145,48.7,2.0 2888, 3 Series,2019,27890,Semi-Auto,1984,Diesel,145,48.7,2.0 2889, X1,2019,24550,Manual,3228,Petrol,145,51.4,1.5 2890, X5,2018,44990,Semi-Auto,5321,Diesel,145,36.7,3.0 2891, 8 Series,2018,63980,Semi-Auto,3891,Petrol,145,26.9,4.4 2892, 5 Series,2019,27780,Semi-Auto,12182,Diesel,145,65.7,2.0 2893, 1 Series,2017,18290,Manual,21491,Petrol,260,36.2,3.0 2894, 2 Series,2019,22990,Semi-Auto,682,Petrol,145,47.9,2.0 2895, 1 Series,2020,21450,Manual,1905,Petrol,145,44.1,1.5 2896, X4,2019,41850,Automatic,5789,Petrol,145,26.9,3.0 2897, 3 Series,2019,37980,Semi-Auto,3766,Petrol,145,34.9,3.0 2898, 3 Series,2019,27980,Semi-Auto,5023,Petrol,145,45.6,2.0 2899, 3 Series,2019,37980,Semi-Auto,5470,Petrol,145,34.9,3.0 2900, 3 Series,2019,24450,Manual,3378,Diesel,145,64.2,2.0 2901, 3 Series,2019,24450,Manual,2912,Diesel,145,64.2,2.0 2902, 3 Series,2019,23990,Manual,4710,Diesel,145,54.3,2.0 2903, 3 Series,2019,26440,Manual,102,Diesel,145,54.3,2.0 2904, X2,2019,24990,Semi-Auto,1702,Diesel,145,47.9,2.0 2905, X2,2019,26790,Manual,103,Diesel,145,53.3,2.0 2906, 2 Series,2019,20990,Semi-Auto,1290,Petrol,145,50.4,1.5 2907, X3,2019,41450,Semi-Auto,5651,Diesel,145,36.7,3.0 2908, 3 Series,2018,23890,Semi-Auto,17240,Diesel,145,51.4,3.0 2909, M4,2017,89990,Semi-Auto,1336,Petrol,145,33.2,3.0 2910, 3 Series,2019,24450,Manual,3973,Diesel,145,64.2,2.0 2911, 3 Series,2019,24980,Semi-Auto,6941,Petrol,145,42.2,2.0 2912, 1 Series,2016,11980,Automatic,41081,Diesel,0,74.3,2.0 2913, X1,2019,24480,Semi-Auto,7895,Petrol,145,40.9,1.5 2914, 1 Series,2016,15480,Automatic,28883,Diesel,20,67.3,2.0 2915, 4 Series,2019,25980,Automatic,5577,Diesel,145,55.4,3.0 2916, 1 Series,2019,19980,Automatic,11303,Diesel,145,48.7,2.0 2917, 4 Series,2019,22450,Manual,115,Petrol,145,46.3,2.0 2918, 4 Series,2019,24450,Semi-Auto,8128,Diesel,145,65.7,2.0 2919, 2 Series,2018,16890,Semi-Auto,21688,Diesel,145,56.5,1.5 2920, 2 Series,2019,23450,Semi-Auto,9683,Diesel,145,57.7,2.0 2921, 7 Series,2019,52990,Semi-Auto,4884,Diesel,145,41.5,3.0 2922, X1,2019,24550,Manual,4957,Petrol,145,51.4,1.5 2923, 5 Series,2019,34990,Semi-Auto,101,Diesel,145,53.3,3.0 2924, 1 Series,2019,20875,Semi-Auto,4834,Diesel,145,67.3,2.0 2925, 1 Series,2020,23450,Manual,1524,Petrol,145,44.1,1.5 2926, 1 Series,2020,25890,Manual,1182,Diesel,145,53.3,2.0 2927, 2 Series,2016,13480,Manual,16600,Diesel,20,68.9,2.0 2928, 4 Series,2019,32880,Automatic,5000,Petrol,145,41.5,3.0 2929, 3 Series,2019,25350,Semi-Auto,22095,Diesel,145,52.3,2.0 2930, 3 Series,2019,33875,Semi-Auto,9389,Diesel,145,49.6,2.0 2931, 2 Series,2019,21945,Semi-Auto,9408,Petrol,145,47.9,2.0 2932, 1 Series,2019,17980,Manual,6756,Diesel,145,65.7,2.0 2933, 1 Series,2019,18975,Manual,5650,Diesel,145,65.7,2.0 2934, 1 Series,2019,19875,Semi-Auto,7044,Diesel,145,67.3,2.0 2935, 1 Series,2019,19475,Manual,4168,Petrol,145,52.3,1.5 2936, 1 Series,2019,18990,Manual,3423,Diesel,145,70.6,1.5 2937, 1 Series,2020,23450,Manual,1054,Petrol,145,41.5,1.5 2938, X7,2019,77880,Semi-Auto,6506,Diesel,145,31.4,3.0 2939, 4 Series,2020,30990,Semi-Auto,110,Petrol,145,41.5,3.0 2940, i8,2015,42890,Automatic,43102,Hybrid,0,134.5,1.5 2941, 1 Series,2017,13980,Manual,19484,Diesel,145,72.4,1.5 2942, 1 Series,2019,19975,Manual,5303,Diesel,145,65.7,2.0 2943, 1 Series,2019,18675,Manual,3382,Diesel,145,70.6,1.5 2944, 1 Series,2019,17480,Manual,5230,Diesel,145,68.9,2.0 2945, 3 Series,2019,28980,Automatic,6129,Diesel,145,50.4,2.0 2946, 1 Series,2016,13980,Semi-Auto,17533,Petrol,30,58.9,1.5 2947, 2 Series,2019,21980,Manual,8494,Diesel,145,64.2,2.0 2948, X2,2018,19240,Manual,18440,Diesel,145,55.4,2.0 2949, 3 Series,2014,13980,Manual,16376,Diesel,30,62.8,2.0 2950, 5 Series,2019,33980,Automatic,6000,Diesel,145,53.3,3.0 2951, 3 Series,2019,27980,Automatic,5000,Diesel,145,52.3,2.0 2952, 7 Series,2016,35480,Automatic,8814,Petrol,300,35.3,4.4 2953, 2 Series,2019,23480,Semi-Auto,112,Petrol,145,47.9,2.0 2954, 5 Series,2019,31875,Semi-Auto,114,Petrol,145,48.7,2.0 2955, 1 Series,2019,20875,Semi-Auto,5954,Diesel,145,67.3,2.0 2956, 4 Series,2019,33890,Semi-Auto,10,Diesel,145,51.4,3.0 2957, 4 Series,2019,33880,Automatic,11,Diesel,145,51.4,3.0 2958, 4 Series,2019,23990,Semi-Auto,120,Diesel,145,60.1,2.0 2959, 2 Series,2019,21480,Semi-Auto,11,Petrol,145,50.4,1.5 2960, X4,2019,35480,Semi-Auto,10755,Diesel,145,42.8,2.0 2961, 3 Series,2019,24690,Semi-Auto,5246,Petrol,145,47.9,2.0 2962, 3 Series,2019,23980,Semi-Auto,1051,Petrol,145,47.9,2.0 2963, 3 Series,2019,23980,Semi-Auto,2480,Petrol,145,47.9,2.0 2964, 2 Series,2017,16698,Automatic,27201,Diesel,145,64.2,2.0 2965, 1 Series,2014,13798,Manual,50026,Petrol,305,35.3,3.0 2966, 2 Series,2019,20750,Manual,110,Petrol,145,52.3,1.5 2967, 2 Series,2019,20450,Manual,10,Petrol,145,42.8,1.5 2968, 3 Series,2014,11698,Manual,21798,Diesel,20,68.9,2.0 2969, 3 Series,2016,18998,Semi-Auto,33087,Diesel,160,51.4,3.0 2970, 2 Series,2017,14998,Semi-Auto,38576,Diesel,145,68.9,1.5 2971, 1 Series,2017,21498,Semi-Auto,18836,Petrol,150,39.8,3.0 2972, 7 Series,2017,30998,Semi-Auto,22879,Petrol,205,40.4,3.0 2973, 1 Series,2016,18498,Semi-Auto,38964,Petrol,205,39.8,3.0 2974, 3 Series,2019,24998,Semi-Auto,11904,Diesel,145,60.1,2.0 2975, 1 Series,2019,19998,Semi-Auto,7222,Petrol,150,47.9,2.0 2976, 3 Series,2019,24450,Semi-Auto,8196,Diesel,145,62.8,2.0 2977, 3 Series,2019,22990,Manual,1122,Diesel,145,60.1,2.0 2978, 4 Series,2019,27990,Semi-Auto,9529,Diesel,145,60.1,2.0 2979, 3 Series,2019,28450,Semi-Auto,1951,Diesel,145,52.3,2.0 2980, 4 Series,2019,25490,Semi-Auto,3516,Petrol,145,48.7,2.0 2981, 5 Series,2019,33890,Semi-Auto,2096,Diesel,145,53.3,3.0 2982, 4 Series,2019,26450,Semi-Auto,2924,Petrol,145,48.7,2.0 2983, M4,2019,39990,Semi-Auto,7603,Petrol,145,32.5,3.0 2984, 4 Series,2019,24975,Semi-Auto,11324,Diesel,145,65.7,2.0 2985, 5 Series,2019,26790,Semi-Auto,10389,Diesel,145,65.7,2.0 2986, 5 Series,2019,26350,Semi-Auto,11301,Diesel,145,65.7,2.0 2987, X1,2019,25450,Semi-Auto,7549,Petrol,145,40.9,1.5 2988, 1 Series,2017,13995,Semi-Auto,39714,Diesel,145,67.3,2.0 2989, 2 Series,2019,21590,Semi-Auto,10199,Petrol,145,47.9,2.0 2990, 1 Series,2017,16480,Manual,21344,Diesel,145,62.8,2.0 2991, X1,2019,21480,Semi-Auto,7970,Petrol,145,46.3,1.5 2992, 1 Series,2020,23450,Manual,2400,Petrol,145,44.1,1.5 2993, 1 Series,2014,12991,Manual,71301,Petrol,300,35.3,3.0 2994, 4 Series,2014,11991,Manual,50757,Petrol,165,46.3,2.0 2995, 3 Series,2014,13950,Automatic,31098,Diesel,30,62.8,2.0 2996, 5 Series,2019,23775,Semi-Auto,4447,Petrol,145,50.4,2.0 2997, 1 Series,2019,18875,Semi-Auto,2406,Diesel,145,68.9,1.5 2998, X4,2018,43990,Semi-Auto,12,Diesel,145,42.8,2.0 2999, 3 Series,2019,24440,Semi-Auto,12,Diesel,145,64.2,2.0 3000, 3 Series,2019,24440,Semi-Auto,12,Diesel,145,60.1,2.0 3001, 1 Series,2019,29790,Semi-Auto,12,Petrol,145,39.8,3.0 3002, 1 Series,2019,29880,Semi-Auto,12,Petrol,145,39.8,3.0 3003, 5 Series,2018,30990,Semi-Auto,12,Diesel,145,49.6,2.0 3004, 1 Series,2019,15980,Manual,8359,Diesel,145,72.4,1.5 3005, 2 Series,2019,29975,Semi-Auto,8027,Petrol,145,38.2,3.0 3006, 4 Series,2019,23775,Manual,8293,Diesel,145,62.8,2.0 3007, 5 Series,2019,31775,Semi-Auto,579,Diesel,145,60.1,2.0 3008, Z4,2019,34980,Semi-Auto,8004,Petrol,145,37.2,2.0 3009, 5 Series,2019,26790,Semi-Auto,6110,Diesel,145,65.7,2.0 3010, X1,2018,21980,Semi-Auto,10708,Diesel,145,60.1,2.0 3011, 3 Series,2020,32990,Semi-Auto,1125,Diesel,145,50.4,2.0 3012, 7 Series,2019,48995,Semi-Auto,7315,Diesel,145,42.2,3.0 3013, 3 Series,2019,27450,Semi-Auto,6038,Petrol,145,42.2,2.0 3014, X3,2019,33990,Semi-Auto,2538,Diesel,145,54.3,2.0 3015, 3 Series,2019,17480,Semi-Auto,20671,Petrol,150,51.4,1.5 3016, 3 Series,2019,17480,Semi-Auto,22539,Petrol,150,51.4,1.5 3017, 3 Series,2019,21590,Semi-Auto,20000,Petrol,150,47.9,2.0 3018, 3 Series,2019,21590,Semi-Auto,23000,Petrol,150,44.8,2.0 3019, 1 Series,2020,23590,Manual,1104,Diesel,145,53.3,2.0 3020, X1,2017,20450,Semi-Auto,25725,Diesel,145,55.4,2.0 3021, M2,2019,44990,Semi-Auto,4358,Petrol,145,29.1,3.0 3022, 3 Series,2019,23990,Semi-Auto,8389,Petrol,145,47.9,2.0 3023, 3 Series,2016,13890,Semi-Auto,45252,Diesel,30,65.7,2.0 3024, X5,2019,46990,Semi-Auto,2754,Diesel,145,37.7,3.0 3025, 4 Series,2019,24450,Semi-Auto,10831,Diesel,145,65.7,2.0 3026, M4,2015,27590,Manual,27489,Petrol,325,31.0,3.0 3027, 2 Series,2014,11990,Semi-Auto,35000,Diesel,30,65.7,2.0 3028, X3,2017,17380,Semi-Auto,64648,Diesel,145,54.3,2.0 3029, 2 Series,2018,20380,Semi-Auto,4172,Petrol,145,47.9,2.0 3030, 3 Series,2019,21590,Semi-Auto,26000,Petrol,150,47.9,2.0 3031, 3 Series,2019,21590,Semi-Auto,23000,Petrol,150,44.8,2.0 3032, 3 Series,2019,21590,Semi-Auto,23000,Petrol,150,47.9,2.0 3033, 3 Series,2019,21590,Semi-Auto,27000,Petrol,150,47.9,2.0 3034, 4 Series,2019,19890,Semi-Auto,22000,Petrol,150,48.7,2.0 3035, 4 Series,2018,20590,Semi-Auto,17000,Petrol,150,48.7,2.0 3036, 3 Series,2019,26480,Semi-Auto,6012,Diesel,150,52.3,2.0 3037, 3 Series,2019,25900,Semi-Auto,6486,Petrol,150,42.2,2.0 3038, X1,2013,10295,Semi-Auto,63993,Diesel,160,52.3,2.0 3039, 4 Series,2015,15995,Automatic,47822,Diesel,30,65.7,2.0 3040, X1,2016,17998,Semi-Auto,34813,Diesel,145,55.4,2.0 3041, 1 Series,2017,21498,Semi-Auto,25630,Petrol,145,39.8,3.0 3042, 6 Series,2019,35980,Semi-Auto,8004,Diesel,145,47.9,3.0 3043, X3,2019,35980,Semi-Auto,8088,Diesel,145,54.3,2.0 3044, 5 Series,2018,26220,Semi-Auto,19504,Diesel,145,46.3,2.0 3045, X5,2020,59993,Semi-Auto,500,Diesel,145,37.7,3.0 3046, 2 Series,2020,28993,Semi-Auto,500,Diesel,145,67.3,2.0 3047, X2,2020,29993,Semi-Auto,500,Petrol,145,38.7,2.0 3048, 1 Series,2019,20980,Manual,2985,Petrol,150,44.1,1.5 3049, 1 Series,2019,20980,Manual,6553,Petrol,150,44.1,1.5 3050, 2 Series,2017,12900,Manual,47301,Diesel,20,74.3,1.5 3051, X1,2017,14600,Manual,39460,Diesel,150,68.9,2.0 3052, X1,2017,14600,Manual,41334,Diesel,20,68.9,2.0 3053, X3,2019,29980,Semi-Auto,6231,Diesel,145,54.3,2.0 3054, 1 Series,2019,15940,Manual,7913,Petrol,145,53.3,1.5 3055, 4 Series,2019,31480,Semi-Auto,7217,Diesel,145,47.9,3.0 3056, 1 Series,2015,16491,Manual,27411,Petrol,305,35.3,3.0 3057, X2,2019,30700,Semi-Auto,14352,Petrol,150,34.0,2.0 3058, 3 Series,2017,20999,Semi-Auto,27500,Diesel,145,56.5,3.0 3059, 2 Series,2020,32993,Semi-Auto,500,Diesel,145,47.1,2.0 3060, X3,2020,39993,Semi-Auto,500,Diesel,145,54.3,2.0 3061, X4,2020,48993,Semi-Auto,500,Petrol,145,26.9,3.0 3062, Z4,2020,33993,Semi-Auto,603,Petrol,145,38.7,2.0 3063, 2 Series,2019,20450,Semi-Auto,3422,Diesel,145,65.7,2.0 3064, 3 Series,2019,22480,Manual,5567,Diesel,145,56.5,2.0 3065, 3 Series,2019,24475,Semi-Auto,12991,Diesel,145,48.7,2.0 3066, 7 Series,2019,51990,Semi-Auto,4279,Diesel,145,41.5,3.0 3067, X7,2019,67990,Semi-Auto,6331,Petrol,145,24.8,3.0 3068, 4 Series,2019,24940,Semi-Auto,112,Petrol,145,45.6,2.0 3069, 2 Series,2019,23980,Manual,110,Diesel,145,60.1,2.0 3070, 3 Series,2013,11430,Semi-Auto,36578,Petrol,160,44.8,2.0 3071, 1 Series,2016,18998,Manual,13857,Petrol,260,36.2,3.0 3072, 3 Series,2019,28998,Manual,7441,Diesel,150,54.3,2.0 3073, 3 Series,2018,17998,Semi-Auto,54762,Petrol,150,48.7,2.0 3074, X1,2016,19998,Semi-Auto,11927,Diesel,150,55.4,2.0 3075, 3 Series,2019,17480,Semi-Auto,20410,Petrol,150,48.7,2.0 3076, 4 Series,2018,17980,Semi-Auto,27120,Petrol,150,48.7,2.0 3077, 4 Series,2017,23290,Semi-Auto,28893,Diesel,145,50.4,3.0 3078, 5 Series,2020,36993,Semi-Auto,500,Hybrid,145,49.6,2.0 3079, 5 Series,2016,18656,Semi-Auto,25695,Diesel,160,51.4,3.0 3080, X5,2016,29570,Automatic,33541,Diesel,200,47.1,3.0 3081, 3 Series,2016,20391,Semi-Auto,27547,Diesel,150,53.3,3.0 3082, 5 Series,2017,22430,Semi-Auto,11333,Diesel,150,65.7,2.0 3083, X1,2017,19371,Semi-Auto,21293,Diesel,150,60.1,2.0 3084, 4 Series,2019,24390,Semi-Auto,6018,Petrol,145,45.6,2.0 3085, 3 Series,2018,22110,Semi-Auto,26309,Diesel,145,51.4,3.0 3086, 4 Series,2019,26190,Semi-Auto,7350,Petrol,145,48.7,2.0 3087, 1 Series,2017,20990,Semi-Auto,17774,Petrol,200,39.8,3.0 3088, 1 Series,2016,17890,Manual,26193,Petrol,260,36.2,3.0 3089, 4 Series,2017,23760,Semi-Auto,17329,Diesel,160,50.4,3.0 3090, 2 Series,2019,22600,Semi-Auto,3574,Diesel,145,48.7,2.0 3091, 1 Series,2019,24500,Manual,4064,Diesel,145,57.7,1.5 3092, 3 Series,2015,15541,Semi-Auto,79978,Diesel,160,51.4,3.0 3093, 5 Series,2019,34500,Semi-Auto,1007,Hybrid,135,156.9,2.0 3094, 1 Series,2018,15291,Semi-Auto,19062,Diesel,150,44.1,2.0 3095, 1 Series,2016,12741,Manual,23114,Diesel,20,68.9,2.0 3096, 1 Series,2016,14991,Semi-Auto,17236,Diesel,20,68.9,1.5 3097, 5 Series,2019,32250,Semi-Auto,1400,Hybrid,135,156.9,2.0 3098, 1 Series,2017,18471,Semi-Auto,8500,Petrol,150,47.9,2.0 3099, 3 Series,2017,22290,Semi-Auto,19462,Diesel,145,56.5,3.0 3100, X7,2019,74140,Semi-Auto,3300,Diesel,145,33.6,3.0 3101, 2 Series,2019,18495,Semi-Auto,4568,Diesel,145,52.3,2.0 3102, 4 Series,2017,22990,Semi-Auto,29607,Diesel,160,50.4,3.0 3103, 1 Series,2019,26390,Semi-Auto,3667,Petrol,145,40.4,1.5 3104, 2 Series,2019,23290,Semi-Auto,2801,Petrol,145,47.9,2.0 3105, 4 Series,2019,30991,Semi-Auto,4762,Petrol,145,41.5,3.0 3106, X3,2019,33980,Semi-Auto,1962,Diesel,150,54.3,2.0 3107, 4 Series,2019,24490,Semi-Auto,7604,Diesel,150,65.7,2.0 3108, 4 Series,2019,25490,Semi-Auto,6782,Petrol,150,48.7,2.0 3109, 4 Series,2019,27290,Semi-Auto,4476,Diesel,145,58.9,2.0 3110, X1,2019,30990,Semi-Auto,7250,Diesel,145,36.7,2.0 3111, X2,2019,27990,Semi-Auto,4362,Petrol,145,39.2,2.0 3112, 4 Series,2018,20590,Semi-Auto,30000,Petrol,150,48.7,2.0 3113, 4 Series,2018,20590,Semi-Auto,16500,Petrol,150,48.7,2.0 3114, 4 Series,2018,20590,Semi-Auto,17000,Petrol,150,48.7,2.0 3115, X4,2019,37990,Semi-Auto,9168,Diesel,150,40.9,3.0 3116, X4,2019,35990,Semi-Auto,3098,Diesel,150,42.8,2.0 3117, i8,2018,64980,Automatic,4477,Hybrid,135,141.2,1.5 3118, M4,2015,29490,Semi-Auto,37724,Petrol,325,32.5,3.0 3119, 4 Series,2019,31980,Automatic,10,Petrol,145,45.6,2.0 3120, 3 Series,2019,25980,Semi-Auto,3317,Diesel,145,52.3,2.0 3121, X5,2019,51000,Semi-Auto,3536,Petrol,145,27.2,3.0 3122, M4,2019,46000,Semi-Auto,1501,Petrol,145,32.5,3.0 3123, 5 Series,2019,28790,Semi-Auto,5432,Diesel,145,60.1,2.0 3124, 5 Series,2019,26400,Semi-Auto,4237,Petrol,145,50.4,2.0 3125, 7 Series,2019,52490,Semi-Auto,3200,Diesel,145,44.1,3.0 3126, 8 Series,2019,59790,Semi-Auto,1600,Petrol,145,33.2,3.0 3127, X1,2015,17291,Semi-Auto,29135,Diesel,125,57.6,2.0 3128, 3 Series,2015,12567,Automatic,24619,Diesel,20,74.3,2.0 3129, 3 Series,2017,15460,Semi-Auto,24628,Petrol,145,47.9,2.0 3130, 1 Series,2016,18951,Semi-Auto,38478,Petrol,200,39.8,3.0 3131, 5 Series,2014,10270,Automatic,71302,Diesel,30,62.8,2.0 3132, 3 Series,2015,9802,Manual,61887,Diesel,30,62.8,2.0 3133, 2 Series,2018,16347,Manual,11141,Petrol,145,42.2,1.5 3134, 3 Series,2016,17498,Semi-Auto,28897,Diesel,145,54.3,3.0 3135, X5,2016,27980,Automatic,31664,Diesel,160,50.4,2.0 3136, X4,2017,26491,Semi-Auto,30485,Diesel,150,47.9,3.0 3137, 4 Series,2016,17340,Semi-Auto,33011,Diesel,30,65.7,2.0 3138, 3 Series,2019,35230,Semi-Auto,4602,Hybrid,135,8.8,2.0 3139, X6,2018,37980,Semi-Auto,11188,Diesel,150,40.9,3.0 3140, X3,2019,41980,Semi-Auto,6501,Diesel,150,36.7,3.0 3141, 3 Series,2019,29980,Semi-Auto,8127,Diesel,145,48.7,2.0 3142, 5 Series,2019,30980,Automatic,3718,Diesel,145,62.8,2.0 3143, X5,2019,49980,Automatic,3951,Diesel,145,37.7,3.0 3144, X1,2019,25480,Semi-Auto,5163,Petrol,145,39.2,2.0 3145, X2,2019,28980,Automatic,1325,Petrol,145,39.2,2.0 3146, 5 Series,2019,30980,Semi-Auto,2420,Hybrid,135,156.9,2.0 3147, 5 Series,2019,30980,Semi-Auto,2215,Hybrid,135,156.9,2.0 3148, 4 Series,2016,19480,Semi-Auto,52783,Petrol,235,38.2,3.0 3149, X1,2016,17980,Semi-Auto,28322,Diesel,125,57.6,2.0 3150, 1 Series,2016,14990,Manual,10937,Diesel,30,65.7,2.0 3151, X1,2017,20991,Semi-Auto,25839,Petrol,160,44.8,2.0 3152, 1 Series,2016,19290,Semi-Auto,21132,Petrol,235,37.7,3.0 3153, 2 Series,2016,15690,Semi-Auto,18586,Petrol,125,51.4,1.5 3154, X3,2019,32660,Semi-Auto,6962,Diesel,145,48.7,3.0 3155, M4,2015,29997,Semi-Auto,20100,Petrol,300,34.0,3.0 3156, 1 Series,2019,20980,Manual,4630,Petrol,145,44.1,1.5 3157, 2 Series,2019,21980,Automatic,6258,Hybrid,135,148.7,1.5 3158, 1 Series,2019,17980,Semi-Auto,10672,Diesel,145,74.3,2.0 3159, X3,2015,19980,Semi-Auto,37790,Diesel,150,54.3,2.0 3160, 7 Series,2019,47980,Semi-Auto,12038,Diesel,150,44.1,3.0 3161, X3,2019,32980,Semi-Auto,1961,Diesel,150,54.3,2.0 3162, 5 Series,2019,31480,Semi-Auto,4659,Diesel,150,60.1,3.0 3163, X1,2013,12680,Manual,32543,Petrol,200,40.9,2.0 3164, 1 Series,2016,16480,Semi-Auto,20308,Petrol,145,47.9,1.6 3165, X1,2019,27980,Semi-Auto,5845,Diesel,145,50.4,2.0 3166, 3 Series,2019,29480,Manual,2802,Diesel,145,54.3,2.0 3167, 5 Series,2017,24480,Semi-Auto,26971,Diesel,145,62.8,2.0 3168, 2 Series,2020,20980,Manual,10,Petrol,145,52.3,1.5 3169, 1 Series,2016,14480,Semi-Auto,37529,Diesel,20,68.9,1.5 3170, X4,2019,36980,Semi-Auto,2740,Diesel,145,42.8,2.0 3171, 5 Series,2019,31490,Semi-Auto,2019,Petrol,150,48.7,2.0 3172, 3 Series,2019,27480,Semi-Auto,9155,Petrol,145,41.5,2.0 3173, X1,2019,26490,Semi-Auto,9113,Diesel,145,50.4,2.0 3174, 3 Series,2020,31980,Semi-Auto,10,Diesel,145,50.4,2.0 3175, X5,2019,56980,Semi-Auto,11449,Diesel,145,33.6,3.0 3176, M2,2019,45980,Semi-Auto,1287,Petrol,145,29.1,3.0 3177, X2,2019,31980,Semi-Auto,1151,Diesel,145,50.4,2.0 3178, 6 Series,2019,33980,Semi-Auto,10813,Diesel,145,53.3,3.0 3179, 3 Series,2019,27480,Semi-Auto,6113,Petrol,145,42.2,2.0 3180, X3,2019,36490,Automatic,5277,Diesel,145,48.7,3.0 3181, X5,2019,47980,Automatic,8548,Diesel,145,37.7,3.0 3182, 1 Series,2019,19480,Automatic,6993,Diesel,145,67.3,2.0 3183, X5,2019,46980,Automatic,5073,Diesel,145,37.7,3.0 3184, 4 Series,2019,23480,Automatic,5738,Diesel,145,65.7,2.0 3185, X5,2019,46980,Semi-Auto,8371,Diesel,145,37.7,3.0 3186, 1 Series,2019,20990,Automatic,7990,Diesel,145,65.7,2.0 3187, 4 Series,2019,25990,Automatic,6519,Diesel,145,58.9,2.0 3188, 3 Series,2016,14250,Manual,27779,Diesel,30,64.2,2.0 3189, 3 Series,2016,17647,Automatic,20793,Diesel,145,56.5,3.0 3190, 3 Series,2015,18907,Automatic,27649,Petrol,260,36.7,3.0 3191, X1,2018,21947,Automatic,7283,Petrol,145,39.2,2.0 3192, Z4,2020,32490,Semi-Auto,10,Petrol,145,37.2,2.0 3193, X2,2020,24990,Semi-Auto,10,Diesel,145,47.9,2.0 3194, 2 Series,2020,20980,Semi-Auto,10,Petrol,145,50.4,1.5 3195, 2 Series,2020,20980,Semi-Auto,10,Petrol,145,50.4,1.5 3196, 1 Series,2018,17980,Manual,8067,Petrol,145,52.3,1.5 3197, 1 Series,2017,15490,Semi-Auto,28646,Diesel,145,68.9,2.0 3198, 5 Series,2017,25980,Semi-Auto,15856,Petrol,200,39.2,3.0 3199, X1,2017,20980,Semi-Auto,21330,Petrol,160,44.8,2.0 3200, 4 Series,2015,17980,Semi-Auto,35255,Petrol,160,44.1,2.0 3201, 1 Series,2017,18480,Manual,39201,Petrol,150,36.2,3.0 3202, X1,2019,26480,Semi-Auto,3737,Petrol,150,48.7,2.0 3203, 4 Series,2019,23480,Semi-Auto,7107,Petrol,150,48.7,2.0 3204, X1,2017,20980,Semi-Auto,31630,Diesel,150,55.4,2.0 3205, X6,2015,26980,Semi-Auto,51447,Diesel,205,47.1,3.0 3206, 4 Series,2018,24990,Semi-Auto,16790,Diesel,150,60.1,2.0 3207, 3 Series,2017,16690,Manual,14348,Petrol,150,48.7,2.0 3208, 1 Series,2013,8990,Manual,37233,Petrol,150,49.6,1.6 3209, 4 Series,2018,18797,Manual,9788,Diesel,145,62.8,2.0 3210, 4 Series,2018,18997,Manual,8269,Diesel,145,62.8,2.0 3211, 4 Series,2014,11870,Semi-Auto,77209,Diesel,125,60.1,2.0 3212, 5 Series,2014,14090,Semi-Auto,62890,Diesel,160,51.4,3.0 3213, 1 Series,2016,9891,Manual,49811,Diesel,0,83.1,1.5 3214, 6 Series,2020,37980,Semi-Auto,11,Diesel,145,53.3,3.0 3215, 3 Series,2019,27490,Semi-Auto,13994,Petrol,145,42.2,2.0 3216, 3 Series,2015,15980,Semi-Auto,30569,Diesel,30,62.8,2.0 3217, X1,2019,27980,Semi-Auto,3782,Petrol,145,48.7,2.0 3218, X1,2016,18187,Automatic,21225,Diesel,125,57.6,2.0 3219, X6,2019,58480,Semi-Auto,2018,Petrol,145,26.4,3.0 3220, X5,2014,23980,Automatic,51252,Diesel,200,45.6,3.0 3221, 6 Series,2020,34490,Semi-Auto,5,Petrol,145,42.8,2.0 3222, 3 Series,2016,13980,Semi-Auto,40146,Petrol,145,47.9,2.0 3223, 1 Series,2019,20980,Manual,3483,Petrol,145,44.1,1.5 3224, 3 Series,2019,26980,Semi-Auto,5966,Diesel,145,52.3,2.0 3225, 3 Series,2019,24480,Semi-Auto,5776,Diesel,145,55.4,2.0 3226, X2,2019,28490,Semi-Auto,4161,Diesel,145,58.9,2.0 3227, X1,2019,26480,Semi-Auto,2372,Petrol,150,48.7,2.0 3228, X2,2019,27980,Semi-Auto,3690,Petrol,150,39.2,2.0 3229, X1,2016,16150,Semi-Auto,36956,Diesel,30,65.7,2.0 3230, 1 Series,2018,16991,Manual,27500,Diesel,150,62.8,2.0 3231, X1,2016,14991,Manual,21242,Diesel,20,68.9,2.0 3232, X1,2017,22491,Semi-Auto,16578,Diesel,150,57.6,2.0 3233, 5 Series,2017,24171,Semi-Auto,10131,Diesel,125,60.1,2.0 3234, 3 Series,2017,16891,Manual,17907,Petrol,150,43.5,2.0 3235, 2 Series,2020,20980,Semi-Auto,9,Petrol,150,50.4,1.5 3236, 3 Series,2020,32450,Semi-Auto,104,Petrol,150,40.4,2.0 3237, 1 Series,2019,32990,Semi-Auto,3883,Petrol,145,34.5,2.0 3238, 5 Series,2019,34990,Semi-Auto,3425,Diesel,145,60.1,2.0 3239, 3 Series,2016,14920,Automatic,59695,Diesel,145,56.5,3.0 3240, 3 Series,2016,13207,Automatic,32672,Petrol,125,51.4,1.5 3241, 3 Series,2017,17710,Automatic,45646,Diesel,145,56.5,3.0 3242, X1,2018,23310,Automatic,12857,Diesel,145,60.1,2.0 3243, 5 Series,2018,25450,Automatic,19486,Hybrid,135,156.9,2.0 3244, 4 Series,2015,16514,Semi-Auto,33802,Diesel,30,65.7,2.0 3245, 1 Series,2016,13553,Manual,17787,Petrol,125,52.3,1.5 3246, X4,2019,37980,Semi-Auto,1852,Diesel,145,40.4,3.0 3247, 5 Series,2020,34840,Semi-Auto,105,Hybrid,145,44.8,2.0 3248, X4,2019,35480,Semi-Auto,7414,Diesel,145,42.8,2.0 3249, 5 Series,2015,18995,Semi-Auto,15804,Diesel,160,50.4,3.0 3250, X1,2016,17195,Manual,18960,Diesel,125,60.1,2.0 3251, 3 Series,2017,15995,Automatic,24624,Petrol,145,51.4,2.0 3252, 3 Series,2015,16350,Semi-Auto,21000,Petrol,160,43.5,2.0 3253, 2 Series,2017,15950,Semi-Auto,29000,Diesel,125,57.6,2.0 3254, 3 Series,2017,15995,Semi-Auto,34700,Diesel,150,64.2,2.0 3255, 4 Series,2016,17029,Automatic,35444,Diesel,30,65.7,2.0 3256, 4 Series,2018,18280,Manual,17024,Petrol,145,46.3,2.0 3257, 3 Series,2016,18080,Automatic,22186,Petrol,200,43.5,2.0 3258, 1 Series,2017,18690,Automatic,26140,Diesel,145,61.4,2.0 3259, X4,2019,40990,Semi-Auto,10,Diesel,145,40.9,3.0 3260, X3,2019,34990,Automatic,10,Diesel,145,54.3,2.0 3261, X3,2019,37990,Semi-Auto,3934,Diesel,145,54.3,2.0 3262, 3 Series,2019,39980,Semi-Auto,3007,Petrol,150,34.9,3.0 3263, 3 Series,2017,14990,Manual,18452,Diesel,30,67.3,2.0 3264, 2 Series,2017,13990,Semi-Auto,18847,Petrol,150,55.4,1.5 3265, X3,2020,42990,Semi-Auto,6235,Diesel,150,36.7,3.0 3266, 1 Series,2020,28990,Semi-Auto,1129,Diesel,150,51.4,2.0 3267, 5 Series,2019,26990,Semi-Auto,13929,Diesel,150,65.7,2.0 3268, X5,2019,51990,Semi-Auto,102,Diesel,150,37.7,3.0 3269, X5,2019,54995,Semi-Auto,102,Diesel,150,37.7,3.0 3270, 2 Series,2020,23990,Semi-Auto,105,Diesel,145,47.1,2.0 3271, Z4,2020,29990,Semi-Auto,11,Petrol,145,38.7,2.0 3272, 3 Series,2020,28990,Semi-Auto,14,Diesel,145,50.4,2.0 3273, 5 Series,2020,27980,Semi-Auto,105,Hybrid,145,52.3,2.0 3274, 5 Series,2020,28990,Semi-Auto,103,Petrol,145,50.4,2.0 3275, 3 Series,2018,18500,Semi-Auto,30749,Diesel,145,60.1,2.0 3276, 1 Series,2018,14724,Manual,24676,Diesel,145,62.8,2.0 3278, 2 Series,2014,17998,Semi-Auto,17787,Petrol,260,37.2,3.0 3279, 3 Series,2019,29998,Semi-Auto,8421,Diesel,150,52.3,2.0 3280, 4 Series,2019,24490,Automatic,4469,Petrol,145,48.7,2.0 3281, 2 Series,2019,19490,Manual,5512,Petrol,145,42.8,1.5 3282, 2 Series,2019,18480,Manual,10250,Petrol,145,42.2,1.5 3283, 4 Series,2018,21980,Semi-Auto,10030,Diesel,145,65.7,2.0 3284, 2 Series,2020,20980,Semi-Auto,13,Petrol,145,50.4,1.5 3285, M4,2019,49980,Semi-Auto,934,Petrol,150,34.0,3.0 3286, 1 Series,2016,18990,Semi-Auto,11538,Petrol,200,39.8,3.0 3287, 3 Series,2019,24990,Manual,3271,Diesel,145,64.2,2.0 3288, X5,2019,49990,Semi-Auto,102,Diesel,150,37.7,3.0 3289, 2 Series,2015,15980,Semi-Auto,38403,Diesel,125,58.9,2.0 3290, 3 Series,2020,24990,Manual,101,Diesel,150,56.5,2.0 3291, 5 Series,2020,33850,Semi-Auto,103,Hybrid,150,44.8,2.0 3292, 3 Series,2015,15990,Semi-Auto,46486,Petrol,150,48.7,2.0 3293, X2,2020,34990,Semi-Auto,103,Petrol,150,34.0,2.0 3294, Z4,2020,34990,Semi-Auto,101,Petrol,150,37.2,2.0 3295, 4 Series,2016,15990,Semi-Auto,39024,Diesel,30,65.7,2.0 3296, 4 Series,2018,21850,Semi-Auto,29101,Diesel,145,65.7,2.0 3297, 1 Series,2019,21990,Manual,1834,Diesel,145,56.5,2.0 3298, 2 Series,2017,17450,Manual,22661,Diesel,150,62.8,1.5 3299, X3,2019,35990,Semi-Auto,21767,Petrol,150,34.5,3.0 3300, 1 Series,2020,23990,Manual,3399,Diesel,150,53.3,2.0 3301, 5 Series,2020,27990,Semi-Auto,105,Hybrid,145,49.6,2.0 3302, 3 Series,2020,23990,Manual,105,Diesel,145,56.5,2.0 3303, 4 Series,2020,24490,Semi-Auto,105,Diesel,145,65.7,2.0 3304, 5 Series,2020,28990,Semi-Auto,103,Hybrid,145,62.8,2.0 3305, 3 Series,2019,28750,Semi-Auto,3858,Diesel,145,52.3,2.0 3306, 5 Series,2014,12995,Semi-Auto,38094,Diesel,30,62.8,2.0 3307, X1,2016,14990,Manual,31915,Diesel,20,68.9,2.0 3308, 4 Series,2015,15780,Manual,33636,Diesel,145,55.4,2.0 3309, 5 Series,2020,26990,Semi-Auto,104,Petrol,145,50.4,2.0 3310, 5 Series,2019,26790,Semi-Auto,9535,Diesel,145,65.7,2.0 3311, 4 Series,2015,16980,Semi-Auto,27142,Diesel,30,65.7,2.0 3312, 1 Series,2016,12990,Manual,37179,Diesel,30,65.7,2.0 3313, X2,2020,25990,Semi-Auto,101,Petrol,145,40.4,2.0 3314, 3 Series,2020,31490,Semi-Auto,105,Diesel,145,51.4,2.0 3315, M4,2020,47950,Semi-Auto,105,Petrol,145,32.5,3.0 3316, 1 Series,2019,23780,Semi-Auto,5831,Petrol,145,40.4,1.5 3317, 3 Series,2020,22990,Manual,101,Diesel,145,58.9,2.0 3318, Z4,2020,30990,Semi-Auto,105,Petrol,145,38.7,2.0 3319, X2,2020,26450,Semi-Auto,2095,Petrol,145,40.4,2.0 3320, 4 Series,2019,23995,Semi-Auto,2129,Petrol,145,45.6,2.0 3321, M4,2019,42485,Semi-Auto,5486,Petrol,145,34.0,3.0 3322, 6 Series,2016,26580,Semi-Auto,15668,Petrol,260,35.8,3.0 3323, X5,2019,50990,Semi-Auto,4729,Diesel,145,37.7,3.0 3324, 4 Series,2018,22440,Semi-Auto,18501,Petrol,145,48.7,2.0 3325, 3 Series,2019,23980,Semi-Auto,6251,Diesel,145,62.8,2.0 3326, 4 Series,2019,23750,Semi-Auto,2791,Petrol,145,45.6,2.0 3327, 2 Series,2020,23990,Semi-Auto,1743,Petrol,150,50.4,1.5 3328, X2,2020,23990,Semi-Auto,1576,Petrol,150,38.7,2.0 3329, 3 Series,2019,27450,Manual,2039,Diesel,145,54.3,2.0 3330, 3 Series,2019,28990,Manual,104,Diesel,145,54.3,2.0 3331, X1,2019,27490,Manual,105,Diesel,145,40.4,2.0 3332, Z4,2020,30990,Semi-Auto,101,Petrol,145,38.7,2.0 3333, X4,2020,45990,Semi-Auto,7724,Diesel,145,37.2,3.0 3334, 3 Series,2020,37990,Semi-Auto,5875,Diesel,145,45.6,3.0 3335, X6,2020,55890,Semi-Auto,3340,Diesel,145,34.9,3.0 3336, 4 Series,2019,24990,Semi-Auto,102,Diesel,145,65.7,2.0 3337, 2 Series,2019,20950,Semi-Auto,11757,Petrol,145,47.9,2.0 3338, 1 Series,2019,15990,Manual,10069,Diesel,145,72.4,1.5 3339, X2,2018,23450,Semi-Auto,11594,Diesel,145,58.9,2.0 3340, 5 Series,2017,22990,Semi-Auto,15985,Diesel,150,65.7,2.0 3341, 1 Series,2017,21980,Semi-Auto,16718,Petrol,150,39.8,3.0 3342, X3,2020,37990,Semi-Auto,6992,Diesel,150,54.3,2.0 3343, X6,2017,32990,Semi-Auto,19311,Diesel,150,47.1,3.0 3344, M2,2020,44995,Semi-Auto,101,Petrol,150,29.1,3.0 3345, 3 Series,2019,24950,Automatic,1241,Diesel,145,62.8,2.0 3346, X5,2019,44875,Automatic,11918,Diesel,145,37.7,3.0 3347, 3 Series,2019,28950,Semi-Auto,4416,Diesel,145,52.3,2.0 3348, 3 Series,2019,24990,Manual,4697,Diesel,145,64.2,2.0 3349, X3,2018,29980,Semi-Auto,5458,Diesel,145,56.5,2.0 3350, M4,2019,48940,Semi-Auto,13,Petrol,145,32.5,3.0 3351, 8 Series,2020,59990,Semi-Auto,5490,Petrol,145,31.7,3.0 3352, Z4,2020,33850,Semi-Auto,103,Petrol,145,37.2,2.0 3353, X2,2020,24850,Semi-Auto,101,Diesel,145,52.3,2.0 3354, 5 Series,2020,26990,Semi-Auto,102,Petrol,145,52.3,2.0 3355, 5 Series,2020,29990,Semi-Auto,103,Hybrid,145,60.1,2.0 3356, 3 Series,2019,24640,Semi-Auto,5627,Petrol,145,47.9,2.0 3357, 5 Series,2019,26350,Semi-Auto,8351,Diesel,145,65.7,2.0 3358, 5 Series,2019,26350,Semi-Auto,6360,Diesel,145,65.7,2.0 3359, 5 Series,2019,26350,Semi-Auto,12241,Diesel,145,65.7,2.0 3360, 4 Series,2019,24975,Semi-Auto,7670,Diesel,145,65.7,2.0 3361, X2,2019,24890,Semi-Auto,3616,Diesel,145,61.4,2.0 3362, X3,2016,24950,Semi-Auto,30205,Diesel,200,47.1,3.0 3363, 5 Series,2020,38990,Semi-Auto,105,Diesel,145,53.3,3.0 3364, X2,2019,23975,Semi-Auto,9872,Diesel,145,61.4,2.0 3365, X6,2018,37790,Semi-Auto,16334,Diesel,145,40.9,3.0 3366, 2 Series,2020,22990,Semi-Auto,13,Petrol,145,47.9,2.0 3367, 4 Series,2020,25980,Semi-Auto,101,Diesel,145,65.7,2.0 3368, X1,2019,28790,Semi-Auto,5628,Petrol,145,44.8,2.0 3369, 3 Series,2019,23980,Semi-Auto,1989,Petrol,145,47.9,2.0 3370, 5 Series,2019,26340,Semi-Auto,5441,Diesel,145,65.7,2.0 3371, 3 Series,2019,28450,Semi-Auto,8114,Diesel,145,48.7,2.0 3372, 5 Series,2019,26350,Semi-Auto,7460,Diesel,145,65.7,2.0 3373, X1,2019,28790,Semi-Auto,5559,Petrol,145,44.8,2.0 3374, 5 Series,2017,19990,Semi-Auto,36779,Diesel,145,62.8,2.0 3375, 3 Series,2017,23990,Semi-Auto,18224,Diesel,145,53.3,3.0 3376, X2,2019,24775,Semi-Auto,103,Petrol,145,39.2,2.0 3377, 3 Series,2019,31450,Semi-Auto,2804,Diesel,145,52.3,2.0 3378, 3 Series,2019,32990,Semi-Auto,4327,Diesel,145,49.6,2.0 3379, 5 Series,2020,33990,Semi-Auto,3704,Hybrid,145,49.6,2.0 3380, 3 Series,2020,42990,Semi-Auto,3698,Diesel,145,43.5,3.0 3381, 4 Series,2018,21980,Semi-Auto,17503,Petrol,145,48.7,2.0 3382, X1,2019,26950,Semi-Auto,4269,Diesel,145,60.1,2.0 3383, 2 Series,2019,23490,Semi-Auto,19,Diesel,145,49.6,2.0 3384, 5 Series,2019,31450,Automatic,13,Petrol,145,48.7,2.0 3385, 5 Series,2019,33950,Automatic,12,Diesel,145,53.3,3.0 3386, M4,2019,41945,Semi-Auto,102,Petrol,145,34.0,3.0 3387, X5,2020,52990,Semi-Auto,5899,Diesel,145,37.7,3.0 3388, X1,2016,17990,Semi-Auto,26656,Diesel,125,57.6,2.0 3389, X5,2013,17990,Automatic,53102,Diesel,300,38.2,3.0 3390, 3 Series,2019,31450,Semi-Auto,3965,Petrol,145,40.9,2.0 3391, X3,2013,12220,Semi-Auto,73312,Diesel,160,50.4,2.0 3392, 3 Series,2018,18998,Semi-Auto,35722,Diesel,150,62.8,2.0 3393, 1 Series,2019,15498,Manual,9391,Petrol,145,38.7,1.5 3394, 1 Series,2018,16998,Manual,11784,Diesel,145,49.6,2.0 3395, 1 Series,2019,17498,Manual,11211,Diesel,150,70.6,1.5 3396, 3 Series,2019,20147,Automatic,4393,Petrol,145,48.7,2.0 3397, 5 Series,2015,12950,Semi-Auto,54386,Diesel,30,62.8,2.0 3398, 3 Series,2015,15995,Automatic,33003,Diesel,145,56.5,3.0 3399, 4 Series,2017,19300,Semi-Auto,22945,Petrol,145,48.7,2.0 3400, 4 Series,2019,26980,Automatic,17,Diesel,145,55.4,3.0 3401, X6,2016,29980,Automatic,38494,Diesel,200,47.1,3.0 3402, X3,2019,30780,Automatic,4464,Diesel,145,54.3,2.0 3403, 3 Series,2019,38980,Semi-Auto,4025,Diesel,150,43.5,3.0 3404, Z4,2015,17990,Manual,18089,Petrol,205,41.5,2.0 3405, 2 Series,2019,24480,Semi-Auto,8950,Diesel,145,57.7,2.0 3406, 4 Series,2018,24980,Semi-Auto,32785,Petrol,145,41.5,3.0 3407, X1,2019,27890,Semi-Auto,4884,Petrol,145,44.8,2.0 3408, X1,2019,27890,Semi-Auto,5490,Petrol,145,44.8,2.0 3409, X5,2019,56980,Semi-Auto,9192,Diesel,145,33.6,3.0 3410, 1 Series,2014,13990,Semi-Auto,20402,Diesel,30,64.2,2.0 3411, X5,2017,32990,Automatic,31500,Diesel,145,47.1,3.0 3412, 6 Series,2020,34490,Semi-Auto,6,Petrol,145,42.8,2.0 3413, 3 Series,2019,26980,Semi-Auto,10405,Diesel,150,52.3,2.0 3414, 8 Series,2020,56990,Semi-Auto,3242,Petrol,150,33.6,3.0 3415, X3,2019,40990,Semi-Auto,9330,Diesel,150,36.7,3.0 3416, X4,2019,36980,Semi-Auto,2294,Diesel,150,40.9,3.0 3417, 4 Series,2019,30980,Semi-Auto,8215,Diesel,150,50.4,3.0 3418, 4 Series,2019,30490,Semi-Auto,4984,Diesel,150,49.6,3.0 3419, 4 Series,2019,23490,Semi-Auto,7041,Diesel,150,60.1,2.0 3420, X3,2019,34980,Semi-Auto,5253,Diesel,150,54.3,2.0 3421, X2,2019,28780,Semi-Auto,5321,Diesel,150,50.4,2.0 3422, 1 Series,2018,23990,Semi-Auto,4664,Petrol,150,39.8,3.0 3423, X4,2019,36490,Semi-Auto,8432,Diesel,150,42.8,2.0 3424, 1 Series,2019,19980,Manual,15,Diesel,145,72.4,1.5 3425, 1 Series,2019,20980,Manual,15,Diesel,145,68.9,2.0 3426, 2 Series,2019,24490,Semi-Auto,9531,Diesel,150,64.2,2.0 3427, 4 Series,2019,24490,Semi-Auto,4954,Diesel,150,65.7,2.0 3428, 4 Series,2019,28980,Semi-Auto,3169,Diesel,150,53.3,3.0 3429, 3 Series,2019,31990,Semi-Auto,6313,Petrol,150,41.5,2.0 3430, 4 Series,2019,25590,Semi-Auto,8268,Diesel,150,60.1,2.0 3431, X1,2019,25990,Semi-Auto,7164,Diesel,150,60.1,2.0 3432, X1,2019,26480,Semi-Auto,9385,Petrol,145,48.7,2.0 3433, X1,2019,26490,Semi-Auto,8785,Diesel,145,50.4,2.0 3434, X5,2019,48990,Semi-Auto,6046,Petrol,145,27.2,3.0 3435, M4,2019,41490,Automatic,123,Petrol,145,34.0,3.0 3436, 2 Series,2019,22980,Automatic,15,Petrol,145,53.3,1.5 3437, 4 Series,2019,24980,Semi-Auto,1652,Diesel,145,65.7,2.0 3438, M4,2015,29990,Semi-Auto,26637,Petrol,300,34.0,3.0 3439, 5 Series,2019,32980,Automatic,9509,Diesel,145,53.3,3.0 3440, 3 Series,2019,37890,Semi-Auto,4713,Petrol,145,34.9,3.0 3441, X2,2020,26980,Semi-Auto,2501,Petrol,150,38.7,2.0 3442, X3,2019,34980,Semi-Auto,5014,Diesel,150,54.3,2.0 3443, 1 Series,2019,24480,Semi-Auto,8026,Diesel,145,53.3,2.0 3444, 5 Series,2016,15990,Semi-Auto,31200,Diesel,20,68.9,2.0 3445, X1,2019,27990,Semi-Auto,4292,Petrol,145,48.7,2.0 3446, 5 Series,2015,15990,Semi-Auto,29952,Diesel,30,62.8,2.0 3447, X3,2019,33980,Semi-Auto,5427,Diesel,145,54.3,2.0 3448, X2,2020,25980,Semi-Auto,23,Diesel,145,61.4,2.0 3449, Z4,2020,29490,Semi-Auto,13,Petrol,145,38.7,2.0 3450, 1 Series,2014,12490,Semi-Auto,9024,Petrol,125,50.4,1.6 3451, X1,2016,20490,Automatic,30715,Diesel,125,57.6,2.0 3452, X5,2019,45980,Semi-Auto,9617,Diesel,145,37.7,3.0 3453, 5 Series,2018,23290,Semi-Auto,26715,Diesel,150,68.9,2.0 3454, 1 Series,2017,21980,Semi-Auto,24965,Petrol,150,39.8,3.0 3455, 4 Series,2019,23480,Semi-Auto,18980,Diesel,150,58.9,2.0 3456, 3 Series,2017,23990,Semi-Auto,40010,Diesel,150,49.6,3.0 3457, X3,2019,40980,Semi-Auto,3082,Diesel,150,36.7,3.0 3458, 1 Series,2019,29490,Semi-Auto,3069,Petrol,150,34.5,2.0 3459, 1 Series,2016,16490,Semi-Auto,27402,Petrol,150,47.9,2.0 3460, 3 Series,2019,38480,Automatic,4816,Diesel,145,43.5,3.0 3461, 8 Series,2019,58990,Automatic,3948,Petrol,145,33.2,3.0 3462, X2,2019,26980,Semi-Auto,4484,Petrol,145,39.2,2.0 3463, X2,2019,28990,Semi-Auto,2714,Petrol,145,39.2,2.0 3464, 3 Series,2019,31980,Automatic,123,Petrol,145,41.5,2.0 3465, 2 Series,2019,30480,Automatic,123,Petrol,145,38.2,3.0 3466, 4 Series,2016,23480,Automatic,27214,Petrol,200,41.5,3.0 3467, 1 Series,2019,18940,Semi-Auto,7632,Diesel,145,68.9,1.5 3468, 4 Series,2019,23490,Semi-Auto,6567,Petrol,145,48.7,2.0 3469, 3 Series,2019,25480,Semi-Auto,9309,Diesel,145,57.7,2.0 3470, 3 Series,2017,15490,Manual,22723,Petrol,150,48.7,2.0 3471, 1 Series,2019,18980,Manual,8328,Diesel,145,65.7,2.0 3472, 1 Series,2019,27480,Semi-Auto,1178,Diesel,145,51.4,2.0 3473, 3 Series,2019,25900,Semi-Auto,8010,Petrol,145,45.6,2.0 3474, X1,2019,27780,Semi-Auto,5490,Petrol,145,38.7,2.0 3475, 2 Series,2019,22990,Automatic,8452,Diesel,145,61.4,2.0 3476, 2 Series,2019,20490,Semi-Auto,8171,Diesel,145,51.4,2.0 3477, 2 Series,2019,20690,Semi-Auto,8841,Diesel,145,51.4,2.0 3478, 2 Series,2019,20490,Semi-Auto,3578,Diesel,145,51.4,2.0 3479, 3 Series,2019,24990,Semi-Auto,4990,Diesel,145,62.8,2.0 3480, 2 Series,2019,19780,Semi-Auto,12320,Petrol,145,40.9,1.5 3481, 2 Series,2019,19990,Semi-Auto,7891,Diesel,145,65.7,2.0 3482, 2 Series,2019,23490,Automatic,7561,Petrol,145,47.9,2.0 3483, X1,2019,29980,Automatic,11919,Diesel,145,60.1,2.0 3484, 1 Series,2019,18480,Manual,10302,Diesel,145,70.6,1.5 3485, 1 Series,2019,20980,Manual,6215,Petrol,145,44.1,1.5 3486, 2 Series,2020,20980,Semi-Auto,11,Petrol,145,50.4,1.5 3487, 1 Series,2019,19980,Semi-Auto,12166,Diesel,145,67.3,2.0 3488, 3 Series,2017,18490,Semi-Auto,32500,Diesel,150,64.2,2.0 3489, 3 Series,2016,18490,Semi-Auto,15634,Diesel,125,57.6,2.0 3490, 2 Series,2018,18480,Manual,3580,Petrol,145,52.3,1.5 3491, 5 Series,2019,30980,Semi-Auto,4003,Diesel,145,55.4,2.0 3492, 4 Series,2016,18990,Automatic,17944,Diesel,30,65.7,2.0 3493, 4 Series,2018,18990,Automatic,28970,Petrol,145,45.6,2.0 3494, 5 Series,2017,22998,Automatic,14459,Diesel,145,65.7,2.0 3495, 1 Series,2019,15980,Manual,4968,Petrol,145,53.3,1.5 3496, 3 Series,2019,26980,Semi-Auto,6506,Diesel,145,52.3,2.0 3497, X5,2019,72990,Semi-Auto,4799,Hybrid,140,188.3,3.0 3498, X5,2014,26990,Automatic,37563,Diesel,205,47.1,3.0 3499, 6 Series,2015,20490,Semi-Auto,46659,Diesel,160,49.6,3.0 3500, 5 Series,2017,24470,Semi-Auto,15335,Diesel,145,65.7,2.0 3501, X3,2019,30190,Semi-Auto,20792,Petrol,145,30.4,2.0 3502, 2 Series,2016,20701,Semi-Auto,27749,Petrol,200,39.8,3.0 3503, 3 Series,2018,19998,Semi-Auto,59348,Diesel,150,57.6,2.0 3504, 1 Series,2017,20998,Semi-Auto,15010,Petrol,145,39.8,3.0 3505, 1 Series,2017,19845,Semi-Auto,20000,Petrol,205,39.8,3.0 3506, X1,2016,19499,Automatic,12389,Diesel,125,57.6,2.0 3507, X2,2019,31800,Semi-Auto,2188,Petrol,150,34.9,2.0 3508, X1,2017,23680,Semi-Auto,6147,Diesel,145,60.1,2.0 3509, 5 Series,2019,26800,Semi-Auto,3979,Diesel,145,65.7,2.0 3510, X1,2019,25990,Semi-Auto,4357,Diesel,145,60.1,2.0 3511, 8 Series,2019,58940,Semi-Auto,1135,Diesel,145,40.4,3.0 3512, 1 Series,2016,11985,Manual,22054,Diesel,20,72.4,1.5 3513, X5,2016,27785,Automatic,49092,Diesel,200,47.1,3.0 3514, 5 Series,2016,20390,Semi-Auto,11454,Diesel,160,51.4,3.0 3515, 4 Series,2018,21415,Semi-Auto,14299,Petrol,145,48.7,2.0 3516, 1 Series,2016,14270,Manual,40358,Diesel,30,65.7,2.0 3517, X3,2019,31190,Semi-Auto,14594,Petrol,145,30.4,2.0 3518, X1,2019,26690,Semi-Auto,8140,Petrol,145,35.3,2.0 3519, 3 Series,2019,37980,Semi-Auto,2459,Petrol,145,34.9,3.0 3520, 3 Series,2019,26480,Manual,2236,Diesel,145,54.3,2.0 3521, 2 Series,2019,20980,Semi-Auto,6235,Petrol,145,50.4,1.5 3522, 7 Series,2019,52700,Semi-Auto,706,Diesel,145,44.1,3.0 3523, 1 Series,2019,24490,Manual,7645,Petrol,145,41.5,1.5 3524, 1 Series,2019,21990,Manual,7734,Petrol,145,41.5,1.5 3525, 2 Series,2019,17990,Semi-Auto,9401,Diesel,145,56.5,1.5 3526, X2,2019,24790,Semi-Auto,10058,Diesel,145,52.3,2.0 3527, 2 Series,2020,34975,Semi-Auto,5,Diesel,145,48.7,2.0 3528, 3 Series,2019,27480,Semi-Auto,3910,Petrol,145,42.2,2.0 3529, 3 Series,2019,25900,Semi-Auto,6930,Petrol,145,42.2,2.0 3530, 4 Series,2019,21970,Automatic,9846,Diesel,145,65.7,2.0 3531, 3 Series,2019,28480,Automatic,6178,Petrol,145,41.5,2.0 3532, 1 Series,2019,19490,Manual,7990,Diesel,145,65.7,2.0 3533, 3 Series,2017,18980,Semi-Auto,26284,Diesel,145,62.8,2.0 3534, X2,2019,23980,Automatic,6351,Diesel,145,61.4,2.0 3535, 3 Series,2019,26495,Semi-Auto,10922,Petrol,145,41.5,2.0 3536, 1 Series,2015,13440,Semi-Auto,66471,Petrol,145,47.9,1.6 3537, 2 Series,2017,19980,Automatic,25154,Petrol,200,39.8,3.0 3538, 3 Series,2019,26480,Semi-Auto,5983,Petrol,145,47.9,2.0 3539, X4,2019,41980,Automatic,5769,Diesel,145,37.2,3.0 3540, 3 Series,2019,21220,Semi-Auto,19494,Petrol,145,48.7,2.0 3541, X6,2019,61895,Semi-Auto,1629,Diesel,145,34.9,3.0 3542, X2,2020,40195,Semi-Auto,103,Petrol,145,34.0,2.0 3543, 3 Series,2020,45000,Semi-Auto,2500,Petrol,145,33.6,3.0 3544, X5,2019,61083,Semi-Auto,2151,Diesel,145,33.6,3.0 3545, X7,2019,65000,Semi-Auto,3670,Diesel,145,33.6,3.0 3546, 5 Series,2019,28000,Semi-Auto,3102,Petrol,145,50.4,2.0 3547, M4,2016,30990,Semi-Auto,27523,Petrol,300,34.0,3.0 3548, X1,2017,22310,Semi-Auto,17905,Diesel,145,57.6,2.0 3549, 2 Series,2017,16490,Semi-Auto,7910,Petrol,145,53.3,1.5 3550, 3 Series,2019,26480,Semi-Auto,4117,Petrol,145,47.9,2.0 3551, 1 Series,2019,19980,Manual,2568,Petrol,145,52.3,1.5 3552, X1,2019,25890,Semi-Auto,5385,Petrol,145,35.3,2.0 3553, X2,2019,27980,Semi-Auto,2055,Petrol,145,39.2,2.0 3554, 2 Series,2016,19780,Semi-Auto,14041,Petrol,160,45.6,2.0 3555, X2,2019,21480,Automatic,7141,Petrol,145,40.4,2.0 3556, 3 Series,2019,37980,Semi-Auto,4873,Petrol,145,34.9,3.0 3557, 1 Series,2016,13900,Manual,21291,Diesel,30,65.7,2.0 3558, 1 Series,2017,15995,Semi-Auto,19000,Diesel,20,68.9,1.5 3559, X3,2016,21550,Semi-Auto,42255,Diesel,200,47.9,3.0 3560, 4 Series,2017,19997,Semi-Auto,15333,Petrol,160,45.6,2.0 3561, 1 Series,2017,22490,Semi-Auto,15985,Petrol,145,39.8,3.0 3562, 4 Series,2019,22990,Semi-Auto,9420,Petrol,145,48.7,2.0 3563, 5 Series,2017,23490,Semi-Auto,24927,Diesel,145,53.3,3.0 3564, X3,2016,20695,Semi-Auto,44414,Diesel,145,54.3,2.0 3565, 4 Series,2016,24490,Semi-Auto,8814,Diesel,160,50.4,3.0 3566, 1 Series,2014,10995,Semi-Auto,75500,Petrol,160,44.8,2.0 3567, 2 Series,2016,13995,Manual,37648,Diesel,30,64.2,2.0 3568, 3 Series,2016,12995,Manual,41500,Petrol,145,48.7,2.0 3569, 4 Series,2016,15495,Manual,36800,Petrol,160,46.3,2.0 3570, 1 Series,2016,9895,Manual,61800,Diesel,20,72.4,1.5 3571, 3 Series,2016,11590,Automatic,86500,Diesel,20,70.6,2.0 3572, 1 Series,2013,6395,Manual,93000,Diesel,0,74.3,1.6 3573, 2 Series,2019,20975,Semi-Auto,5466,Petrol,145,39.2,1.5 3574, 1 Series,2017,15298,Manual,23205,Diesel,30,65.7,2.0 3575, 3 Series,2016,15998,Semi-Auto,46649,Hybrid,0,134.5,2.0 3576, 2 Series,2016,10170,Manual,32015,Diesel,20,74.3,1.5 3577, M4,2017,34890,Semi-Auto,32329,Petrol,145,34.0,3.0 3578, 2 Series,2016,14220,Semi-Auto,3866,Diesel,20,72.4,1.5 3579, 1 Series,2015,13491,Semi-Auto,38436,Diesel,125,60.1,2.0 3580, 3 Series,2015,10490,Manual,77963,Diesel,30,65.7,2.0 3581, 3 Series,2014,12681,Semi-Auto,54931,Diesel,125,60.1,2.0 3582, 1 Series,2013,10391,Manual,31144,Petrol,150,50.4,1.6 3583, 5 Series,2017,23495,Semi-Auto,8213,Diesel,150,62.8,2.0 3584, 1 Series,2016,16990,Manual,24618,Petrol,300,35.3,3.0 3585, X3,2016,20850,Automatic,44950,Diesel,200,47.1,3.0 3586, 1 Series,2015,17271,Semi-Auto,37873,Petrol,235,37.7,3.0 3587, 3 Series,2013,11280,Semi-Auto,29496,Petrol,200,43.5,2.0 3588, 1 Series,2014,9037,Manual,40175,Diesel,30,65.7,2.0 3589, X1,2013,9470,Manual,40812,Diesel,160,51.4,2.0 3590, 2 Series,2019,24450,Manual,1391,Diesel,145,60.1,2.0 3591, 4 Series,2019,28980,Automatic,5685,Diesel,145,52.3,3.0 3592, X3,2016,20490,Semi-Auto,34306,Diesel,145,54.3,2.0 3593, 5 Series,2018,24995,Semi-Auto,5823,Diesel,145,49.6,2.0 3594, 2 Series,2016,14990,Manual,24488,Petrol,125,53.3,1.5 3595, 2 Series,2017,23490,Semi-Auto,7918,Petrol,145,39.8,3.0 3596, 1 Series,2017,13659,Manual,30641,Diesel,20,70.6,1.5 3597, 4 Series,2016,17495,Automatic,20685,Diesel,30,65.7,2.0 3598, 4 Series,2016,16591,Semi-Auto,46500,Diesel,160,52.3,3.0 3599, 2 Series,2015,8691,Manual,70067,Diesel,20,68.9,2.0 3600, 6 Series,2013,16640,Semi-Auto,54483,Diesel,160,51.4,3.0 3601, 5 Series,2016,15230,Automatic,59058,Diesel,160,51.4,3.0 3602, X1,2016,15037,Manual,29890,Diesel,125,60.1,2.0 3603, 3 Series,2018,18250,Semi-Auto,26173,Diesel,145,60.1,2.0 3604, 3 Series,2016,12900,Automatic,42666,Diesel,0,74.3,2.0 3605, 2 Series,2020,24980,Manual,25,Petrol,145,52.3,1.5 3606, 2 Series,2020,24290,Manual,103,Petrol,145,52.3,1.5 3607, 3 Series,2019,29950,Semi-Auto,104,Diesel,145,52.3,2.0 3608, 2 Series,2019,21980,Automatic,3935,Diesel,145,68.9,2.0 3609, 2 Series,2019,22990,Automatic,2766,Petrol,145,50.4,2.0 3610, X1,2019,23975,Manual,6907,Diesel,145,68.9,2.0 3611, X1,2019,27480,Automatic,5241,Diesel,145,50.4,2.0 3612, 2 Series,2019,21975,Manual,3513,Petrol,145,52.3,1.5 3613, 3 Series,2015,8697,Manual,73785,Diesel,30,61.4,2.0 3614, 3 Series,2015,13995,Semi-Auto,37798,Diesel,30,64.2,2.0 3615, 1 Series,2016,18750,Semi-Auto,21105,Petrol,235,37.7,3.0 3616, 1 Series,2018,16695,Manual,7948,Diesel,145,65.7,2.0 3617, X3,2016,20090,Semi-Auto,45734,Diesel,145,54.3,2.0 3618, 3 Series,2016,13990,Manual,37550,Diesel,30,62.8,2.0 3619, 1 Series,2016,14490,Manual,25863,Petrol,125,52.3,1.5 3620, 1 Series,2017,15990,Manual,30800,Diesel,145,62.8,2.0 3621, X5,2015,26895,Automatic,35228,Diesel,160,50.4,2.0 3622, 4 Series,2019,23591,Semi-Auto,6100,Petrol,145,45.6,2.0 3623, 3 Series,2016,17391,Semi-Auto,54584,Diesel,160,51.4,3.0 3624, 3 Series,2019,23895,Semi-Auto,38231,Diesel,145,52.3,2.0 3625, 3 Series,2019,24895,Semi-Auto,21656,Diesel,145,52.3,2.0 3626, 4 Series,2018,21895,Semi-Auto,34384,Diesel,145,55.4,3.0 3627, 2 Series,2017,17895,Semi-Auto,15500,Petrol,150,48.7,2.0 3629, 3 Series,2015,18980,Semi-Auto,26762,Diesel,165,51.4,3.0 3630, 3 Series,2020,26480,Semi-Auto,13,Petrol,150,42.2,2.0 3631, 3 Series,2018,18980,Semi-Auto,1600,Petrol,150,51.4,2.0 3632, 2 Series,2018,25295,Semi-Auto,9500,Petrol,145,39.8,3.0 3633, 2 Series,2020,20980,Semi-Auto,10,Petrol,145,50.4,1.5 3634, 5 Series,2019,28990,Semi-Auto,5000,Petrol,145,48.7,2.0 3635, X5,2013,20140,Automatic,63583,Diesel,200,45.6,3.0 3636, X1,2018,22397,Semi-Auto,2570,Petrol,145,37.7,2.0 3637, X1,2016,17261,Manual,29863,Diesel,125,58.9,2.0 3639, 3 Series,2019,26922,Semi-Auto,3853,Petrol,145,41.5,2.0 3640, 3 Series,2016,14761,Automatic,14209,Diesel,0,74.3,2.0 3641, 5 Series,2016,14595,Semi-Auto,41695,Diesel,30,62.8,2.0 3642, 3 Series,2019,24895,Semi-Auto,21730,Diesel,145,52.3,2.0 3643, 3 Series,2017,11998,Manual,70067,Diesel,145,68.9,2.0 3644, 3 Series,2017,21298,Semi-Auto,25533,Petrol,145,48.7,2.0 3645, 2 Series,2016,13998,Manual,16260,Diesel,20,68.9,1.5 3646, 1 Series,2017,21498,Semi-Auto,26072,Petrol,200,39.8,3.0 3647, 4 Series,2019,21998,Semi-Auto,15856,Diesel,145,65.7,2.0 3648, 4 Series,2018,20498,Semi-Auto,22866,Petrol,145,48.7,2.0 3649, 2 Series,2015,17498,Semi-Auto,41896,Petrol,260,37.2,3.0 3650, 1 Series,2014,10998,Manual,61500,Diesel,30,62.8,2.0 3651, 2 Series,2018,17990,Semi-Auto,10600,Petrol,150,38.2,2.0 3652, 5 Series,2019,23990,Semi-Auto,9165,Petrol,145,50.4,2.0 3653, 2 Series,2017,16999,Semi-Auto,29000,Diesel,145,60.1,2.0 3654, X1,2017,18198,Semi-Auto,23380,Diesel,125,60.1,2.0 3655, M4,2020,59995,Semi-Auto,5,Petrol,145,34.0,3.0 3656, 3 Series,2020,36995,Manual,103,Diesel,145,54.3,2.0 3657, i8,2017,52495,Automatic,17580,Hybrid,0,134.5,1.5 3658, 5 Series,2019,30490,Semi-Auto,4754,Hybrid,140,156.9,2.0 3659, X6,2016,29480,Semi-Auto,24864,Diesel,205,47.1,3.0 3660, 1 Series,2019,16490,Manual,9010,Diesel,150,72.4,1.5 3661, X2,2019,24990,Manual,6764,Diesel,150,48.7,2.0 3662, 3 Series,2019,25780,Semi-Auto,68945,Petrol,150,45.6,2.0 3663, 4 Series,2017,18850,Automatic,26498,Diesel,145,65.7,2.0 3664, Z4,2013,13640,Semi-Auto,26356,Petrol,200,41.5,2.0 3665, 1 Series,2016,11991,Manual,22842,Diesel,20,68.9,2.0 3666, 2 Series,2019,20980,Manual,101,Petrol,145,52.3,1.5 3667, 2 Series,2019,20980,Manual,101,Petrol,145,52.3,1.5 3668, 4 Series,2019,30980,Automatic,500,Petrol,145,41.5,3.0 3669, 4 Series,2019,35980,Automatic,101,Diesel,145,50.4,3.0 3670, 1 Series,2017,14397,Manual,9243,Petrol,145,52.3,1.5 3671, 1 Series,2017,13040,Manual,20506,Diesel,145,68.9,2.0 3672, 1 Series,2019,19995,Semi-Auto,4371,Diesel,150,67.3,2.0 3673, 2 Series,2019,24495,Manual,7107,Diesel,150,60.1,2.0 3674, 1 Series,2017,14495,Semi-Auto,20031,Petrol,30,58.9,1.5 3675, X3,2019,30395,Semi-Auto,13563,Petrol,145,30.4,2.0 3676, 4 Series,2019,32790,Semi-Auto,8464,Diesel,145,50.4,3.0 3677, 4 Series,2019,29990,Semi-Auto,5496,Petrol,145,45.6,2.0 3678, X1,2019,26000,Semi-Auto,3085,Petrol,145,40.9,1.5 3679, X5,2019,48940,Semi-Auto,4544,Diesel,145,37.7,3.0 3680, 4 Series,2016,18584,Semi-Auto,30158,Diesel,125,60.1,2.0 3681, X7,2019,74980,Automatic,7901,Diesel,145,31.4,3.0 3682, 5 Series,2017,28980,Semi-Auto,26478,Petrol,145,39.2,3.0 3683, 3 Series,2019,30980,Semi-Auto,1500,Petrol,145,40.9,2.0 3684, 2 Series,2019,19980,Manual,102,Petrol,145,52.3,1.5 3685, X2,2019,25980,Automatic,5062,Diesel,145,61.4,2.0 3686, X2,2019,24480,Semi-Auto,2772,Petrol,145,38.7,2.0 3687, 1 Series,2017,21980,Semi-Auto,12869,Petrol,145,39.8,3.0 3688, 1 Series,2019,20780,Automatic,8245,Diesel,145,65.7,2.0 3689, 4 Series,2019,31495,Semi-Auto,4919,Diesel,150,51.4,3.0 3690, 3 Series,2019,28295,Manual,2179,Diesel,150,54.3,2.0 3691, 3 Series,2019,27975,Manual,3367,Diesel,150,54.3,2.0 3692, 2 Series,2019,23995,Semi-Auto,2279,Diesel,150,65.7,2.0 3693, 1 Series,2017,18995,Semi-Auto,17108,Diesel,145,61.4,2.0 3694, 4 Series,2020,25993,Semi-Auto,1705,Diesel,145,65.7,2.0 3695, 2 Series,2019,20980,Manual,1000,Petrol,145,52.3,1.5 3696, 2 Series,2019,20980,Manual,1000,Petrol,145,52.3,1.5 3697, 2 Series,2019,20980,Manual,1000,Petrol,145,52.3,1.5 3698, 3 Series,2019,31980,Automatic,4084,Diesel,145,49.6,2.0 3699, M4,2019,43480,Semi-Auto,152,Petrol,145,34.0,3.0 3700, M2,2019,43480,Automatic,2689,Petrol,145,29.1,3.0 3701, 3 Series,2019,32980,Automatic,1000,Diesel,145,47.9,3.0 3702, X3,2019,40980,Automatic,7439,Diesel,145,36.7,3.0 3703, 3 Series,2019,25480,Automatic,4080,Petrol,145,43.5,2.0 3704, 1 Series,2019,23980,Manual,2672,Petrol,145,41.5,1.5 3705, 3 Series,2019,28980,Semi-Auto,6093,Diesel,150,48.7,2.0 3706, 5 Series,2019,27980,Semi-Auto,5502,Diesel,150,62.8,2.0 3707, X3,2019,33980,Semi-Auto,6779,Diesel,150,54.3,2.0 3708, 3 Series,2019,25980,Semi-Auto,6382,Petrol,150,42.2,2.0 3709, 2 Series,2019,19980,Semi-Auto,8406,Petrol,150,40.9,1.5 3710, 3 Series,2019,24980,Semi-Auto,9122,Petrol,150,42.2,2.0 3711, 5 Series,2019,25980,Semi-Auto,5951,Petrol,150,50.4,2.0 3712, 3 Series,2019,24480,Semi-Auto,14444,Petrol,145,47.9,2.0 3713, 1 Series,2019,21480,Semi-Auto,8364,Petrol,145,47.9,2.0 3714, 2 Series,2019,20980,Manual,1000,Petrol,145,52.3,1.5 3715, 3 Series,2017,16980,Semi-Auto,39462,Hybrid,0,148.7,2.0 3716, 2 Series,2018,19980,Semi-Auto,28000,Petrol,145,47.9,2.0 3717, 4 Series,2016,18980,Manual,29614,Diesel,125,57.6,2.0 3718, 3 Series,2017,22980,Semi-Auto,12600,Diesel,160,51.4,3.0 3719, 6 Series,2015,19980,Semi-Auto,65185,Diesel,160,49.6,3.0 3720, 5 Series,2018,23980,Semi-Auto,24866,Diesel,145,49.6,2.0 3721, 3 Series,2019,30980,Automatic,1000,Diesel,145,50.4,2.0 3722, 5 Series,2019,33500,Semi-Auto,3215,Diesel,145,60.1,2.0 3723, 5 Series,2019,29480,Semi-Auto,1500,Petrol,145,50.4,2.0 3724, 2 Series,2019,21980,Manual,101,Petrol,145,52.3,1.5 3725, Z4,2019,29980,Semi-Auto,1817,Petrol,145,38.7,2.0 3726, 2 Series,2019,19480,Manual,152,Petrol,145,42.8,1.5 3727, 5 Series,2019,36980,Automatic,3622,Diesel,145,53.3,3.0 3728, 4 Series,2019,26480,Automatic,3146,Diesel,145,58.9,2.0 3729, 2 Series,2019,21980,Automatic,4481,Diesel,145,67.3,2.0 3730, 4 Series,2019,24480,Automatic,4429,Diesel,145,65.7,2.0 3731, 3 Series,2019,25980,Semi-Auto,5084,Diesel,150,52.3,2.0 3732, X4,2018,25980,Semi-Auto,21694,Diesel,150,54.3,2.0 3733, X3,2019,31980,Semi-Auto,9305,Diesel,150,54.3,2.0 3734, X5,2019,51980,Semi-Auto,4484,Diesel,150,33.6,3.0 3735, 3 Series,2019,25980,Semi-Auto,9666,Diesel,150,52.3,2.0 3736, 3 Series,2019,26480,Semi-Auto,6018,Diesel,150,52.3,2.0 3737, 1 Series,2019,22980,Semi-Auto,7729,Petrol,150,40.4,1.5 3738, 5 Series,2018,27980,Semi-Auto,5100,Diesel,150,46.3,2.0 3739, 2 Series,2019,20980,Semi-Auto,7532,Petrol,145,50.4,2.0 3740, 2 Series,2019,21980,Semi-Auto,13844,Petrol,145,50.4,2.0 3741, 3 Series,2019,22980,Semi-Auto,11571,Diesel,145,54.3,2.0 3742, X3,2019,31980,Semi-Auto,4609,Diesel,145,54.3,2.0 3743, 2 Series,2019,20980,Manual,1000,Petrol,145,52.3,1.5 3744, 3 Series,2018,18989,Automatic,23850,Diesel,145,60.1,2.0 3745, 4 Series,2017,20489,Automatic,14393,Petrol,145,48.7,2.0 3746, 3 Series,2018,17995,Semi-Auto,15588,Petrol,145,48.7,2.0 3747, 4 Series,2016,17600,Automatic,20444,Diesel,30,65.7,2.0 3748, 3 Series,2017,18730,Semi-Auto,23618,Diesel,145,62.8,2.0 3749, 2 Series,2019,22480,Automatic,7107,Diesel,145,49.6,2.0 3750, 2 Series,2019,21980,Automatic,7995,Diesel,145,65.7,2.0 3751, X5,2019,47980,Semi-Auto,11813,Diesel,145,37.7,3.0 3752, 1 Series,2019,18480,Automatic,10164,Diesel,145,68.9,1.5 3753, 3 Series,2019,20980,Semi-Auto,18000,Diesel,150,64.2,2.0 3754, 1 Series,2017,13980,Manual,38120,Diesel,30,65.7,2.0 3755, 1 Series,2018,23980,Semi-Auto,10812,Petrol,150,32.5,3.0 3756, 1 Series,2016,14980,Semi-Auto,28000,Diesel,20,68.9,1.5 3757, X1,2014,9530,Manual,47262,Diesel,165,51.4,2.0 3758, X1,2016,22260,Semi-Auto,4622,Petrol,165,44.8,2.0 3759, 2 Series,2015,10982,Manual,70000,Petrol,125,53.3,1.5 3760, 5 Series,2019,26400,Semi-Auto,3457,Petrol,145,50.4,2.0 3761, X1,2019,24490,Manual,3728,Petrol,145,51.4,1.5 3762, 1 Series,2018,13999,Manual,22492,Petrol,145,53.3,1.5 3763, 3 Series,2016,11995,Semi-Auto,70486,Diesel,20,74.3,2.0 3764, X4,2017,24500,Semi-Auto,22768,Diesel,145,54.3,2.0 3765, 3 Series,2015,12950,Manual,52338,Diesel,30,64.2,2.0 3766, 3 Series,2017,19495,Semi-Auto,17735,Petrol,150,48.7,2.0 3767, 1 Series,2019,17797,Manual,12266,Diesel,150,65.7,2.0 3768, 3 Series,2018,18991,Semi-Auto,21941,Diesel,150,64.2,2.0 3769, 3 Series,2016,14795,Automatic,42229,Diesel,20,74.3,2.0 3770, 3 Series,2017,13495,Semi-Auto,44247,Diesel,145,67.3,2.0 3771, X1,2018,20980,Semi-Auto,29757,Diesel,150,60.1,2.0 3772, 3 Series,2018,24980,Semi-Auto,6900,Diesel,150,51.4,3.0 3773, 2 Series,2019,21980,Semi-Auto,8000,Diesel,150,65.7,2.0 3774, 5 Series,2019,34980,Semi-Auto,9430,Diesel,150,53.3,3.0 3775, X5,2019,49980,Semi-Auto,9173,Diesel,150,37.7,3.0 3776, 1 Series,2019,31993,Semi-Auto,6000,Petrol,145,34.5,2.0 3777, 1 Series,2019,30123,Semi-Auto,7500,Petrol,145,34.5,2.0 3778, 2 Series,2019,25490,Semi-Auto,7466,Diesel,145,65.7,2.0 3779, M4,2016,32983,Automatic,33113,Petrol,300,34.0,3.0 3780, 4 Series,2015,14400,Automatic,63034,Diesel,30,65.7,2.0 3781, X1,2016,14200,Manual,51101,Diesel,125,60.1,2.0 3782, 1 Series,2016,11182,Manual,22499,Petrol,125,53.3,1.5 3783, 3 Series,2017,18900,Semi-Auto,28943,Hybrid,135,134.5,2.0 3784, 4 Series,2016,18400,Automatic,17944,Diesel,30,65.7,2.0 3785, 4 Series,2017,18991,Semi-Auto,31438,Diesel,145,58.9,2.0 3786, X1,2017,19000,Semi-Auto,33814,Diesel,145,57.7,2.0 3787, 2 Series,2019,25000,Semi-Auto,1061,Diesel,145,48.7,2.0 3788, 2 Series,2019,21490,Semi-Auto,3630,Diesel,145,51.4,2.0 3789, 2 Series,2019,25250,Semi-Auto,2640,Diesel,145,48.7,2.0 3790, 4 Series,2019,24970,Semi-Auto,101,Petrol,145,45.6,2.0 3791, X2,2019,27490,Semi-Auto,6036,Diesel,145,58.9,2.0 3792, 3 Series,2019,27790,Semi-Auto,103,Petrol,145,42.2,2.0 3793, 3 Series,2019,27790,Semi-Auto,103,Petrol,145,42.2,2.0 3794, X3,2019,31400,Semi-Auto,13191,Petrol,145,30.4,2.0 3795, X3,2019,31000,Semi-Auto,18720,Petrol,145,30.4,2.0 3796, X3,2019,31500,Semi-Auto,8438,Petrol,145,30.4,2.0 3797, 3 Series,2018,25991,Semi-Auto,22620,Petrol,150,41.5,3.0 3798, X3,2019,31800,Semi-Auto,6724,Petrol,150,30.4,2.0 3799, 5 Series,2019,25101,Semi-Auto,24143,Diesel,150,65.7,2.0 3800, 3 Series,2018,19575,Manual,26841,Diesel,150,64.2,2.0 3801, 4 Series,2019,26990,Semi-Auto,6188,Diesel,145,65.7,2.0 3802, 4 Series,2019,37990,Semi-Auto,590,Diesel,145,47.9,3.0 3803, 5 Series,2019,30490,Semi-Auto,5687,Hybrid,135,156.9,2.0 3804, X1,2019,25590,Semi-Auto,5354,Diesel,145,36.7,2.0 3805, X2,2019,26920,Semi-Auto,5060,Petrol,145,38.7,2.0 3806, M4,2019,41990,Semi-Auto,1348,Petrol,145,34.0,3.0 3807, X1,2013,8990,Manual,63000,Diesel,160,51.4,2.0 3808, 4 Series,2020,38000,Semi-Auto,101,Diesel,150,49.6,3.0 3809, 4 Series,2020,30403,Semi-Auto,2882,Petrol,145,41.5,3.0 3810, 3 Series,2018,20000,Semi-Auto,28596,Diesel,145,62.8,2.0 3811, 5 Series,2014,14790,Automatic,19503,Diesel,160,51.4,3.0 3812, X1,2013,9380,Manual,47485,Diesel,160,51.4,2.0 3813, 4 Series,2017,18990,Automatic,23163,Diesel,30,65.7,2.0 3814, 3 Series,2015,8190,Manual,92230,Diesel,30,65.7,2.0 3815, 3 Series,2014,15291,Semi-Auto,54859,Diesel,160,52.3,3.0 3816, 3 Series,2014,11474,Manual,53211,Diesel,30,61.4,2.0 3817, X3,2018,29357,Semi-Auto,12726,Diesel,150,54.3,2.0 3818, X1,2015,11141,Semi-Auto,64865,Diesel,165,52.3,2.0 3819, 2 Series,2019,23250,Semi-Auto,4627,Diesel,145,48.7,2.0 3820, 2 Series,2019,23250,Semi-Auto,4949,Diesel,145,48.7,2.0 3821, 4 Series,2014,17750,Semi-Auto,39801,Diesel,160,50.4,3.0 3822, X3,2019,31000,Semi-Auto,17355,Petrol,145,30.4,2.0 3823, X7,2019,64400,Semi-Auto,3003,Diesel,145,33.6,3.0 3824, 7 Series,2016,25750,Semi-Auto,34820,Diesel,145,54.3,3.0 3825, X1,2013,8990,Manual,63000,Diesel,160,51.4,2.0 3826, 4 Series,2017,20604,Semi-Auto,13191,Diesel,145,65.7,2.0 3827, 3 Series,2018,19125,Semi-Auto,23369,Diesel,145,64.2,2.0 3828, 3 Series,2017,19116,Semi-Auto,51260,Diesel,150,53.3,3.0 3829, X4,2015,19990,Semi-Auto,60059,Diesel,150,54.3,2.0 3830, 4 Series,2018,21991,Manual,11648,Petrol,150,43.5,2.0 3831, 5 Series,2016,14550,Automatic,56320,Diesel,30,62.8,2.0 3832, 3 Series,2017,16950,Semi-Auto,34110,Diesel,145,62.8,2.0 3833, 5 Series,2015,17830,Semi-Auto,33910,Diesel,160,51.4,3.0 3834, 3 Series,2017,23400,Automatic,17630,Diesel,145,49.6,3.0 3835, 3 Series,2015,14930,Automatic,33330,Diesel,125,60.1,2.0 3836, 3 Series,2016,17698,Semi-Auto,36764,Diesel,145,54.3,3.0 3837, X1,2017,19498,Semi-Auto,21346,Diesel,145,55.4,2.0 3838, 5 Series,2020,35500,Semi-Auto,101,Diesel,145,53.3,3.0 3839, 4 Series,2017,19000,Manual,19202,Diesel,145,60.1,2.0 3840, X5,2017,35470,Automatic,47717,Diesel,235,42.8,3.0 3841, 2 Series,2015,14120,Semi-Auto,29599,Petrol,145,50.4,2.0 3842, 1 Series,2019,23963,Manual,6317,Petrol,145,41.5,1.5 3843, 7 Series,2019,51500,Semi-Auto,561,Diesel,145,42.2,3.0 3844, 1 Series,2017,15980,Manual,17000,Diesel,145,65.7,2.0 3845, 3 Series,2016,14980,Semi-Auto,41492,Diesel,30,67.3,2.0 3846, 2 Series,2017,13980,Semi-Auto,27483,Petrol,30,55.4,1.5 3847, 5 Series,2019,26650,Semi-Auto,9440,Diesel,145,65.7,2.0 3848, 5 Series,2019,26650,Semi-Auto,7902,Diesel,145,65.7,2.0 3849, 3 Series,2017,17141,Semi-Auto,30171,Diesel,145,64.2,2.0 3850, X3,2015,20491,Semi-Auto,51111,Diesel,205,47.1,3.0 3851, 6 Series,2017,22991,Semi-Auto,23451,Diesel,200,49.6,3.0 3852, 4 Series,2020,31503,Semi-Auto,1418,Diesel,145,50.4,3.0 3853, 5 Series,2017,19000,Semi-Auto,48457,Diesel,145,68.9,2.0 3854, 4 Series,2019,28480,Semi-Auto,7384,Diesel,145,51.4,3.0 3855, 2 Series,2019,21980,Manual,9326,Diesel,145,60.1,2.0 3856, 2 Series,2020,21480,Semi-Auto,10,Diesel,145,53.3,2.0 3857, X1,2019,22450,Manual,5455,Petrol,150,39.8,1.5 3858, 4 Series,2017,17490,Semi-Auto,35519,Diesel,30,65.7,2.0 3859, M4,2016,29990,Semi-Auto,30241,Petrol,300,34.0,3.0 3860, 3 Series,2019,26950,Semi-Auto,4320,Petrol,145,42.2,2.0 3861, X3,2018,31500,Semi-Auto,35332,Petrol,145,34.5,3.0 3862, M4,2016,32998,Semi-Auto,23212,Petrol,300,34.0,3.0 3863, X1,2017,13500,Manual,50435,Diesel,20,68.9,2.0 3864, X5,2017,37498,Automatic,24498,Petrol,145,29.1,4.4 3865, 3 Series,2017,20998,Automatic,16678,Diesel,145,56.5,3.0 3866, 2 Series,2017,16498,Semi-Auto,2210,Petrol,150,55.4,1.5 3867, 3 Series,2017,12998,Semi-Auto,62576,Diesel,20,70.6,2.0 3868, 2 Series,2016,8498,Manual,83850,Diesel,0,74.3,1.5 3869, 2 Series,2018,19980,Semi-Auto,9933,Petrol,145,38.2,2.0 3870, 2 Series,2019,22980,Semi-Auto,2083,Petrol,145,50.4,2.0 3871, 2 Series,2019,23780,Semi-Auto,1223,Diesel,145,49.6,2.0 3872, 1 Series,2019,21980,Manual,2841,Petrol,145,44.1,1.5 3873, X2,2019,28500,Semi-Auto,2370,Diesel,145,48.7,2.0 3874, X5,2019,50980,Automatic,5720,Diesel,145,37.7,3.0 3875, 1 Series,2019,20440,Semi-Auto,9908,Petrol,150,47.9,2.0 3876, 1 Series,2019,18440,Manual,6088,Petrol,150,52.3,1.5 3877, 3 Series,2019,27440,Semi-Auto,4665,Diesel,150,52.3,2.0 3878, 7 Series,2019,44980,Semi-Auto,10135,Petrol,150,34.5,3.0 3879, 3 Series,2019,28440,Semi-Auto,2212,Diesel,150,48.7,2.0 3880, 8 Series,2019,53980,Semi-Auto,2395,Petrol,145,33.2,3.0 3881, X1,2020,28940,Semi-Auto,1550,Diesel,145,53.3,2.0 3882, 4 Series,2019,24250,Semi-Auto,10125,Diesel,145,58.9,2.0 3883, 3 Series,2018,21800,Semi-Auto,7673,Petrol,145,48.7,2.0 3884, X2,2019,28750,Semi-Auto,1914,Petrol,145,39.8,2.0 3885, 5 Series,2018,22490,Semi-Auto,10799,Diesel,145,72.4,2.0 3886, 3 Series,2019,29250,Semi-Auto,8190,Diesel,145,48.7,2.0 3887, 3 Series,2019,21400,Semi-Auto,16086,Petrol,145,48.7,2.0 3888, 3 Series,2019,23480,Semi-Auto,4394,Diesel,150,53.3,2.0 3889, 2 Series,2020,21950,Semi-Auto,15,Petrol,150,50.4,2.0 3890, 2 Series,2020,20480,Semi-Auto,10,Petrol,150,42.2,1.5 3891, 4 Series,2019,25440,Semi-Auto,101,Diesel,145,65.7,2.0 3892, 2 Series,2019,21950,Semi-Auto,101,Diesel,145,67.3,2.0 3893, X3,2019,36440,Semi-Auto,105,Diesel,145,54.3,2.0 3894, 3 Series,2017,19980,Semi-Auto,15762,Diesel,145,53.3,3.0 3895, 2 Series,2019,17980,Manual,7168,Petrol,145,52.3,1.5 3896, 1 Series,2016,12980,Manual,27696,Diesel,30,65.7,2.0 3897, 3 Series,2019,20440,Semi-Auto,6108,Petrol,145,51.4,1.5 3898, 1 Series,2019,17980,Manual,5869,Diesel,145,70.6,1.5 3899, 4 Series,2019,23850,Semi-Auto,7937,Diesel,145,65.7,2.0 3900, 3 Series,2019,27940,Semi-Auto,6865,Diesel,145,52.3,2.0 3901, 1 Series,2019,18440,Semi-Auto,4512,Diesel,145,68.9,1.5 3902, 3 Series,2019,25940,Semi-Auto,5915,Diesel,145,53.3,2.0 3903, 3 Series,2019,29440,Semi-Auto,7983,Diesel,145,48.7,2.0 3904, X5,2019,46440,Semi-Auto,1486,Diesel,145,37.7,3.0 3905, Z4,2019,27950,Semi-Auto,8998,Petrol,145,38.7,2.0 3906, X3,2019,30480,Automatic,5822,Petrol,145,30.4,2.0 3907, 2 Series,2017,15998,Manual,15926,Diesel,150,62.8,1.5 3908, X3,2018,29498,Semi-Auto,23206,Diesel,150,48.7,3.0 3909, 4 Series,2019,27480,Semi-Auto,101,Diesel,145,55.4,3.0 3910, i8,2019,64750,Automatic,2799,Hybrid,135,141.2,1.5 3911, 8 Series,2019,59000,Semi-Auto,5923,Diesel,150,39.8,3.0 3912, M2,2019,42351,Semi-Auto,1797,Petrol,145,29.1,3.0 3914, 4 Series,2016,17561,Semi-Auto,46435,Diesel,145,55.4,3.0 3915, 2 Series,2018,17750,Semi-Auto,16712,Diesel,145,62.8,2.0 3916, M4,2018,35750,Semi-Auto,8326,Petrol,145,34.0,3.0 3917, X7,2019,66000,Semi-Auto,2881,Diesel,145,33.6,3.0 3918, X1,2016,19498,Semi-Auto,21249,Diesel,145,55.4,2.0 3919, X1,2015,16998,Semi-Auto,25649,Diesel,125,57.6,2.0 3920, 3 Series,2016,18698,Semi-Auto,21500,Diesel,145,54.3,3.0 3921, 1 Series,2016,19798,Semi-Auto,24485,Petrol,200,39.8,3.0 3922, X3,2016,21798,Semi-Auto,29512,Diesel,145,54.3,2.0 3923, 2 Series,2019,21980,Semi-Auto,4170,Petrol,145,50.4,2.0 3924, 1 Series,2019,20980,Manual,4092,Petrol,145,44.1,1.5 3925, X3,2019,31980,Semi-Auto,4647,Diesel,145,54.3,2.0 3926, 1 Series,2019,18980,Semi-Auto,17950,Diesel,150,67.3,2.0 3927, X1,2018,22780,Semi-Auto,10147,Diesel,150,60.1,2.0 3928, 1 Series,2017,20480,Semi-Auto,34218,Petrol,205,39.8,3.0 3929, 4 Series,2016,23780,Semi-Auto,24441,Diesel,165,50.4,3.0 3930, X1,2017,21480,Semi-Auto,11857,Diesel,150,55.4,2.0 3931, 1 Series,2017,13990,Manual,34249,Petrol,150,53.3,1.5 3932, 1 Series,2017,15490,Manual,32811,Diesel,150,65.7,2.0 3933, X1,2019,28480,Semi-Auto,1805,Diesel,145,52.3,2.0 3934, 4 Series,2019,23440,Semi-Auto,23,Diesel,145,65.7,2.0 3935, 5 Series,2019,27440,Semi-Auto,5682,Diesel,145,62.8,2.0 3936, 5 Series,2019,27440,Semi-Auto,9131,Diesel,145,62.8,2.0 3937, X3,2019,39480,Semi-Auto,6012,Petrol,145,34.5,3.0 3938, 5 Series,2017,18990,Semi-Auto,46796,Diesel,145,62.8,2.0 3939, 1 Series,2018,19840,Semi-Auto,32151,Diesel,145,61.4,2.0 3940, 2 Series,2018,24940,Semi-Auto,5577,Petrol,145,32.5,3.0 3941, M4,2019,44980,Semi-Auto,9244,Petrol,145,32.5,3.0 3942, 1 Series,2015,12980,Manual,47863,Diesel,30,62.8,2.0 3943, 4 Series,2019,31480,Automatic,6822,Diesel,145,50.4,3.0 3944, M4,2020,49980,Semi-Auto,1000,Petrol,145,34.0,3.0 3945, X2,2020,32980,Semi-Auto,1500,Diesel,145,61.4,2.0 3946, 4 Series,2020,34980,Semi-Auto,1000,Petrol,145,48.7,2.0 3947, 1 Series,2019,19480,Manual,4707,Diesel,145,65.7,2.0 3948, 1 Series,2018,17480,Manual,13455,Petrol,145,52.3,1.5 3949, Z4,2015,15980,Semi-Auto,39887,Petrol,200,41.5,2.0 3950, 2 Series,2019,21980,Semi-Auto,1000,Petrol,145,50.4,1.5 3951, X2,2020,37480,Semi-Auto,1000,Petrol,145,34.0,2.0 3952, 4 Series,2016,17980,Semi-Auto,32863,Petrol,160,46.3,2.0 3953, X3,2019,54980,Semi-Auto,1525,Petrol,145,24.8,3.0 3954, 3 Series,2019,25480,Semi-Auto,5673,Diesel,145,57.7,2.0 3955, 1 Series,2019,20780,Automatic,8936,Diesel,145,65.7,2.0 3956, 2 Series,2019,21980,Semi-Auto,4887,Diesel,145,65.7,2.0 3957, 2 Series,2015,15980,Semi-Auto,41532,Diesel,125,61.4,2.0 3958, X3,2019,33480,Automatic,8345,Diesel,145,54.3,2.0 3959, 4 Series,2019,25980,Semi-Auto,2946,Diesel,145,65.7,2.0 3960, 2 Series,2019,20980,Manual,1000,Petrol,145,52.3,1.5 3961, 2 Series,2019,20980,Manual,1000,Petrol,145,52.3,1.5 3962, 2 Series,2019,20980,Manual,1000,Petrol,145,52.3,1.5 3963, 2 Series,2019,20980,Manual,1000,Petrol,145,52.3,1.5 3964, 2 Series,2019,20980,Manual,1000,Petrol,145,52.3,1.5 3965, 3 Series,2019,26980,Semi-Auto,9554,Diesel,145,56.5,3.0 3966, 1 Series,2017,22480,Semi-Auto,24552,Petrol,145,39.8,3.0 3967, 1 Series,2017,15980,Manual,22022,Petrol,145,47.1,2.0 3968, 5 Series,2019,25980,Semi-Auto,9630,Petrol,145,50.4,2.0 3969, 2 Series,2019,21980,Semi-Auto,5547,Petrol,145,50.4,2.0 3970, 5 Series,2019,32480,Semi-Auto,5612,Diesel,145,60.1,3.0 3971, 3 Series,2019,25980,Manual,3512,Diesel,145,54.3,2.0 3972, 2 Series,2019,19980,Manual,3459,Petrol,145,42.2,1.5 3973, X2,2019,24980,Manual,3189,Diesel,145,48.7,2.0 3974, X5,2019,49980,Automatic,4076,Diesel,145,37.7,3.0 3975, 3 Series,2019,25980,Manual,4903,Diesel,145,54.3,2.0 3976, 1 Series,2019,28980,Automatic,3855,Diesel,145,48.7,2.0 3977, 3 Series,2019,33570,Automatic,4253,Diesel,145,47.9,3.0 3978, 2 Series,2019,20980,Semi-Auto,7153,Petrol,145,50.4,1.5 3979, X5,2019,49980,Automatic,3080,Diesel,145,37.7,3.0 3980, 3 Series,2019,33580,Automatic,2856,Diesel,145,47.9,3.0 3981, 3 Series,2019,33480,Automatic,1000,Diesel,145,50.4,2.0 3982, 2 Series,2019,24980,Semi-Auto,2290,Petrol,145,47.9,2.0 3983, 1 Series,2019,22480,Manual,100,Petrol,145,44.1,1.5 3984, 4 Series,2019,28980,Automatic,6558,Diesel,145,53.3,3.0 3985, 1 Series,2019,17480,Semi-Auto,3583,Petrol,145,55.5,1.5 3986, 2 Series,2018,17480,Manual,13107,Petrol,145,52.3,1.5 3987, X6,2018,36480,Automatic,9135,Diesel,145,47.1,3.0 3988, X5,2019,49980,Automatic,4810,Diesel,145,37.7,3.0 3989, M4,2019,40980,Semi-Auto,4786,Petrol,145,34.0,3.0 3990, 3 Series,2019,28998,Semi-Auto,5568,Petrol,150,42.2,2.0 3991, X3,2017,21998,Semi-Auto,35734,Diesel,150,54.3,2.0 3992, X1,2017,18995,Semi-Auto,29647,Diesel,145,57.7,2.0 3993, X5,2019,50980,Semi-Auto,13863,Diesel,145,37.7,3.0 3994, X5,2019,49980,Automatic,6277,Diesel,145,37.7,3.0 3995, 3 Series,2017,18780,Semi-Auto,42359,Diesel,150,64.2,2.0 3996, X5,2019,49980,Semi-Auto,5881,Diesel,150,37.7,3.0 3997, 3 Series,2018,18990,Semi-Auto,17282,Diesel,150,64.2,2.0 3998, M5,2019,62980,Semi-Auto,3256,Petrol,145,26.9,4.4 3999, 2 Series,2019,27980,Semi-Auto,4859,Diesel,145,64.2,2.0 4000, 4 Series,2019,34680,Automatic,3428,Diesel,145,49.6,3.0 4001, 5 Series,2019,32780,Automatic,3774,Diesel,145,65.7,2.0 4002, 5 Series,2019,30980,Automatic,2386,Diesel,145,65.7,2.0 4003, 3 Series,2019,23980,Semi-Auto,1000,Diesel,145,62.8,2.0 4004, X5,2019,49980,Automatic,3981,Diesel,145,37.7,3.0 4005, 2 Series,2019,19980,Semi-Auto,3602,Diesel,145,52.3,2.0 4006, X1,2019,24680,Manual,1000,Diesel,145,68.9,2.0 4007, X5,2020,61980,Semi-Auto,3968,Diesel,145,33.6,3.0 4008, Z4,2020,31980,Semi-Auto,1000,Petrol,145,38.7,2.0 4009, X1,2019,23980,Manual,4649,Diesel,145,68.9,2.0 4010, X1,2019,29480,Automatic,4523,Diesel,145,36.7,2.0 4011, X1,2019,28780,Manual,1000,Diesel,145,48.7,2.0 4012, X5,2019,49980,Semi-Auto,8143,Diesel,150,37.7,3.0 4013, 2 Series,2019,20780,Manual,2896,Petrol,150,52.3,1.5 4014, 2 Series,2019,20980,Semi-Auto,3334,Petrol,145,50.4,1.5 4015, 8 Series,2019,55980,Automatic,10000,Diesel,145,40.4,3.0 4016, 1 Series,2018,14980,Semi-Auto,22368,Petrol,145,55.5,1.5 4017, X3,2015,18980,Semi-Auto,33122,Diesel,205,47.9,3.0 4018, 1 Series,2019,25980,Semi-Auto,100,Diesel,145,51.4,2.0 4019, X3,2018,37780,Semi-Auto,16509,Petrol,150,34.5,3.0 4020, 3 Series,2015,13260,Automatic,69820,Petrol,145,48.7,2.0 4021, 5 Series,2016,14470,Semi-Auto,51030,Diesel,30,62.8,2.0 4022, 1 Series,2018,14499,Manual,19947,Petrol,145,53.3,1.5 4023, 3 Series,2016,14999,Automatic,70054,Hybrid,0,148.7,2.0 4024, X1,2014,12999,Automatic,41200,Diesel,160,52.3,2.0 4025, 5 Series,2017,23999,Automatic,28628,Diesel,145,65.7,2.0 4026, 2 Series,2017,18999,Semi-Auto,25244,Diesel,145,65.7,2.0 4027, 7 Series,2017,29999,Automatic,36500,Diesel,145,57.6,3.0 4028, 1 Series,2018,15499,Manual,20814,Petrol,145,53.3,1.5 4029, 4 Series,2017,18241,Automatic,29322,Diesel,145,60.1,2.0 4030, 2 Series,2019,20780,Semi-Auto,105,Petrol,145,50.4,1.5 4031, 5 Series,2019,29840,Semi-Auto,101,Diesel,145,62.8,2.0 4032, 5 Series,2019,31480,Semi-Auto,105,Petrol,145,48.7,2.0 4033, 3 Series,2019,30980,Semi-Auto,105,Diesel,145,52.3,2.0 4034, X1,2016,18795,Manual,12370,Diesel,125,58.9,2.0 4035, X5,2019,53795,Semi-Auto,4792,Diesel,145,37.7,3.0 4036, X2,2019,36995,Semi-Auto,6523,Petrol,145,34.0,2.0 4037, 3 Series,2019,27440,Semi-Auto,1700,Diesel,145,52.3,2.0 4038, 4 Series,2019,26940,Semi-Auto,101,Diesel,145,65.7,2.0 4039, 3 Series,2019,30480,Semi-Auto,4609,Diesel,145,49.6,2.0 4040, X3,2019,36440,Semi-Auto,105,Diesel,145,54.3,2.0 4041, X2,2019,25840,Semi-Auto,105,Diesel,145,50.4,2.0 4042, 2 Series,2019,17980,Manual,1501,Diesel,145,55.4,2.0 4043, 2 Series,2020,26495,Semi-Auto,10,Petrol,145,40.9,1.5 4044, 3 Series,2020,36995,Semi-Auto,1523,Diesel,145,50.4,2.0 4045, X1,2017,19995,Semi-Auto,40779,Diesel,145,55.4,2.0 4046, 5 Series,2016,17995,Semi-Auto,19154,Petrol,145,47.1,2.0 4047, X1,2019,24725,Manual,20,Petrol,145,52.3,1.5 4048, 3 Series,2019,29995,Semi-Auto,1798,Petrol,145,42.2,2.0 4049, X1,2019,28995,Automatic,4237,Diesel,145,36.7,2.0 4050, 3 Series,2019,35995,Automatic,3306,Diesel,145,49.6,2.0 4051, 2 Series,2019,24995,Automatic,29,Diesel,145,51.4,2.0 4052, 1 Series,2019,23995,Semi-Auto,1527,Petrol,145,43.5,1.5 4053, 5 Series,2013,10780,Semi-Auto,84842,Diesel,145,55.4,2.0 4054, 1 Series,2015,10890,Semi-Auto,39157,Diesel,20,72.4,1.5 4055, 3 Series,2018,19495,Manual,30815,Diesel,145,64.2,2.0 4056, Z4,2019,32995,Automatic,11,Petrol,145,38.7,2.0 4057, 4 Series,2019,27940,Automatic,7102,Diesel,145,58.9,2.0 4058, X1,2019,32495,Automatic,6,Diesel,145,52.3,2.0 4059, X1,2019,28995,Semi-Auto,202,Diesel,150,60.1,2.0 4060, X3,2019,31995,Semi-Auto,4899,Petrol,145,30.4,2.0 4061, 5 Series,2019,30001,Semi-Auto,13000,Hybrid,140,156.9,2.0 4062, X3,2017,26001,Semi-Auto,21000,Diesel,145,54.3,2.0 4063, 3 Series,2013,11001,Manual,61000,Diesel,125,58.9,2.0 4064, 3 Series,2016,15701,Semi-Auto,59737,Diesel,145,53.3,3.0 4065, 3 Series,2015,14001,Semi-Auto,44237,Diesel,125,57.6,2.0 4066, 1 Series,2013,8999,Manual,31128,Diesel,30,62.8,2.0 4067, 2 Series,2020,32995,Semi-Auto,10,Petrol,145,36.2,2.0 4068, 3 Series,2019,29995,Automatic,5611,Diesel,145,52.3,2.0 4069, 5 Series,2016,14950,Automatic,49650,Diesel,30,62.8,2.0 4070, 5 Series,2016,16310,Semi-Auto,47640,Diesel,160,51.4,3.0 4071, 2 Series,2016,13300,Semi-Auto,45030,Diesel,30,67.3,2.0 4072, 3 Series,2017,18690,Automatic,40097,Diesel,145,64.2,2.0 4073, 4 Series,2017,23000,Automatic,13940,Diesel,145,49.6,3.0 4074, 3 Series,2017,20340,Semi-Auto,34390,Diesel,160,51.4,3.0 4075, 4 Series,2017,17420,Semi-Auto,47470,Diesel,125,60.1,2.0 4076, 4 Series,2016,13090,Semi-Auto,59907,Diesel,30,65.7,2.0 4077, 6 Series,2015,19990,Semi-Auto,40500,Diesel,165,49.6,3.0 4078, 3 Series,2015,11990,Manual,78053,Petrol,160,44.8,2.0 4079, 3 Series,2016,12495,Semi-Auto,63162,Diesel,0,74.3,2.0 4080, X5,2016,23937,Automatic,74141,Diesel,200,47.1,3.0 4081, 3 Series,2017,18341,Semi-Auto,51260,Diesel,150,53.3,3.0 4082, 3 Series,2016,17547,Automatic,13969,Hybrid,0,134.5,2.0 4083, 1 Series,2015,11721,Manual,40057,Diesel,30,65.7,2.0 4084, 1 Series,2017,15997,Automatic,21285,Diesel,30,65.7,2.0 4085, 2 Series,2018,18291,Semi-Auto,10028,Petrol,145,47.9,2.0 4086, X5,2017,32991,Automatic,16893,Diesel,145,47.1,3.0 4087, 1 Series,2015,8650,Manual,75638,Petrol,145,50.4,1.6 4088, 1 Series,2015,9981,Manual,71119,Diesel,30,62.8,2.0 4089, 1 Series,2013,11741,Semi-Auto,57000,Diesel,125,60.1,2.0 4090, 3 Series,2016,15491,Semi-Auto,42328,Diesel,30,62.8,2.0 4091, X6,2019,52995,Semi-Auto,3455,Diesel,150,34.9,3.0 4092, 5 Series,2019,25450,Automatic,11525,Petrol,145,50.4,2.0 4093, 2 Series,2016,14880,Manual,29370,Petrol,125,53.3,1.5 4094, 3 Series,2016,17110,Semi-Auto,16923,Diesel,125,60.1,2.0 4095, 5 Series,2016,12290,Manual,65747,Diesel,125,58.9,2.0 4096, 3 Series,2014,15690,Semi-Auto,45212,Diesel,150,54.3,3.0 4097, 5 Series,2015,14000,Semi-Auto,52281,Diesel,30,62.8,2.0 4098, X3,2018,26995,Semi-Auto,15000,Petrol,145,30.4,2.0 4099, 1 Series,2018,14495,Manual,24000,Petrol,145,53.3,1.5 4101, X1,2019,25995,Manual,1501,Petrol,150,51.4,1.5 4102, 3 Series,2020,30995,Semi-Auto,3872,Petrol,150,42.2,2.0 4103, M4,2019,53995,Semi-Auto,3452,Petrol,150,34.0,3.0 4104, 3 Series,2019,29990,Manual,16,Diesel,150,54.3,2.0 4105, 2 Series,2016,14995,Semi-Auto,12662,Petrol,125,50.4,2.0 4106, 1 Series,2018,24995,Semi-Auto,12386,Petrol,150,39.8,3.0 4107, 2 Series,2016,18995,Semi-Auto,29707,Petrol,205,43.5,2.0 4108, X3,2015,16998,Semi-Auto,71194,Diesel,150,54.3,2.0 4110, 3 Series,2013,11211,Semi-Auto,88400,Diesel,125,58.9,2.0 4111, 3 Series,2015,17491,Semi-Auto,44700,Petrol,265,37.2,3.0 4112, X3,2019,31840,Semi-Auto,5687,Diesel,145,54.3,2.0 4113, 1 Series,2019,23940,Manual,101,Petrol,145,41.5,1.5 4114, 5 Series,2019,28650,Semi-Auto,105,Diesel,145,60.1,2.0 4115, 2 Series,2020,22980,Semi-Auto,1550,Petrol,145,38.7,1.5 4116, X5,2020,51880,Semi-Auto,1501,Diesel,145,37.7,3.0 4117, 3 Series,2020,32940,Semi-Auto,1550,Diesel,145,50.4,2.0 4118, X3,2017,21480,Semi-Auto,34824,Diesel,145,54.3,2.0 4119, 2 Series,2019,19970,Manual,5076,Petrol,145,52.3,1.5 4120, 1 Series,2016,10016,Manual,45919,Petrol,125,53.3,1.5 4121, 3 Series,2014,12317,Automatic,49998,Diesel,145,57.6,2.0 4122, X3,2014,13350,Automatic,60850,Diesel,160,50.4,2.0 4123, 1 Series,2016,13457,Automatic,36670,Diesel,20,68.9,1.5 4124, 1 Series,2017,19260,Semi-Auto,29997,Petrol,200,39.8,3.0 4125, 3 Series,2013,7991,Manual,75000,Diesel,20,68.9,2.0 4126, 3 Series,2014,8991,Semi-Auto,81641,Diesel,20,68.9,2.0 4127, 3 Series,2014,13891,Semi-Auto,28173,Diesel,125,58.9,2.0 4128, 3 Series,2017,17980,Semi-Auto,32181,Diesel,150,57.6,2.0 4129, 4 Series,2015,16480,Automatic,31935,Diesel,30,65.7,2.0 4130, 3 Series,2019,28480,Semi-Auto,3838,Diesel,150,48.7,2.0 4131, 1 Series,2017,17695,Automatic,4632,Petrol,145,54.3,1.5 4132, X3,2019,35995,Semi-Auto,5904,Petrol,145,30.4,2.0 4133, X3,2019,35995,Semi-Auto,3986,Petrol,145,30.4,2.0 4134, X3,2019,34995,Automatic,6123,Diesel,145,54.3,2.0 4135, 3 Series,2019,30495,Automatic,8,Diesel,145,50.4,2.0 4136, X1,2019,26980,Semi-Auto,6744,Petrol,150,39.2,2.0 4137, X5,2019,59980,Semi-Auto,9257,Diesel,150,33.6,3.0 4138, 3 Series,2017,22480,Semi-Auto,31421,Diesel,150,53.3,3.0 4139, 2 Series,2017,18675,Automatic,13475,Diesel,145,62.8,2.0 4140, 1 Series,2013,10995,Semi-Auto,32514,Diesel,30,64.2,2.0 4141, X1,2015,16995,Automatic,33184,Diesel,125,60.1,2.0 4142, 3 Series,2017,13795,Manual,15467,Petrol,145,48.7,2.0 4143, 1 Series,2015,12250,Manual,34473,Petrol,125,52.3,1.5 4144, 1 Series,2016,11891,Manual,42964,Diesel,20,70.6,1.5 4145, 2 Series,2019,22995,Automatic,1247,Diesel,145,68.9,2.0 4146, 1 Series,2019,29995,Semi-Auto,4628,Petrol,145,34.5,2.0 4147, 2 Series,2016,14995,Automatic,59634,Diesel,145,55.4,2.0 4148, X1,2016,15995,Manual,46907,Diesel,125,58.9,2.0 4149, X7,2020,64995,Semi-Auto,3452,Diesel,150,33.6,3.0 4150, X1,2019,28995,Semi-Auto,4524,Petrol,150,40.9,1.5 4151, X1,2019,29995,Semi-Auto,2701,Petrol,150,39.8,2.0 4152, X5,2019,46995,Semi-Auto,5187,Diesel,145,37.7,3.0 4153, 3 Series,2017,17995,Manual,20438,Diesel,30,64.2,2.0 4154, 5 Series,2016,19495,Semi-Auto,74836,Diesel,200,47.9,3.0 4155, X1,2019,27995,Semi-Auto,4663,Petrol,145,37.7,1.5 4156, 1 Series,2015,12995,Semi-Auto,19022,Petrol,30,58.9,1.5 4157, 2 Series,2016,16495,Semi-Auto,23604,Petrol,30,55.4,1.5 4158, 3 Series,2016,17995,Semi-Auto,70538,Diesel,160,51.4,3.0 4159, 5 Series,2016,17995,Semi-Auto,52511,Diesel,125,60.1,2.0 4160, 5 Series,2018,24998,Semi-Auto,21756,Diesel,150,60.1,2.0 4161, X1,2018,19798,Semi-Auto,5666,Petrol,150,46.3,1.5 4162, 1 Series,2018,18698,Semi-Auto,9312,Diesel,150,65.7,2.0 4163, 4 Series,2017,18980,Semi-Auto,31250,Diesel,150,65.7,2.0 4164, 4 Series,2018,26980,Semi-Auto,11612,Petrol,150,41.5,3.0 4165, 1 Series,2018,17480,Manual,20376,Petrol,150,52.3,1.5 4166, 1 Series,2017,18980,Semi-Auto,42660,Petrol,150,39.8,3.0 4167, 4 Series,2018,26980,Semi-Auto,6173,Petrol,150,41.5,3.0 4168, 1 Series,2016,12980,Manual,18229,Petrol,125,53.3,1.5 4169, 2 Series,2016,14480,Semi-Auto,19821,Diesel,30,64.2,2.0 4170, 2 Series,2019,21980,Semi-Auto,7594,Diesel,150,51.4,2.0 4171, 2 Series,2019,20980,Semi-Auto,7494,Petrol,150,50.4,2.0 4172, 5 Series,2019,28980,Semi-Auto,3445,Diesel,150,60.1,2.0 4173, X3,2019,33980,Semi-Auto,9067,Diesel,150,54.3,2.0 4174, 4 Series,2019,24740,Semi-Auto,101,Diesel,145,60.1,2.0 4175, 4 Series,2019,27480,Semi-Auto,6196,Diesel,145,50.4,3.0 4176, 3 Series,2019,25970,Semi-Auto,1501,Diesel,145,52.3,2.0 4177, 2 Series,2017,13298,Semi-Auto,24536,Diesel,20,68.9,2.0 4178, 3 Series,2013,8298,Manual,63636,Diesel,20,68.9,2.0 4179, 2 Series,2018,17498,Semi-Auto,22480,Petrol,145,50.4,1.5 4180, 1 Series,2017,20298,Semi-Auto,31934,Petrol,200,39.8,3.0 4181, 2 Series,2017,15998,Semi-Auto,32377,Diesel,145,65.7,2.0 4182, 3 Series,2014,11998,Semi-Auto,59752,Petrol,205,43.5,2.0 4183, 2 Series,2017,17495,Semi-Auto,35128,Diesel,150,55.4,2.0 4184, 1 Series,2019,18480,Manual,5501,Diesel,150,70.6,1.5 4185, X5,2019,46980,Semi-Auto,2062,Diesel,150,37.7,3.0 4186, 4 Series,2019,25980,Semi-Auto,4963,Petrol,150,45.6,2.0 4187, 1 Series,2019,22980,Semi-Auto,5166,Petrol,150,40.4,1.5 4188, 4 Series,2019,22980,Semi-Auto,8672,Diesel,150,65.7,2.0 4189, 5 Series,2019,27980,Semi-Auto,5171,Diesel,150,65.7,2.0 4190, 5 Series,2017,26980,Semi-Auto,24891,Diesel,145,53.3,3.0 4191, 5 Series,2018,23980,Semi-Auto,19203,Diesel,145,65.7,2.0 4192, 3 Series,2018,23980,Semi-Auto,11717,Diesel,145,57.7,2.0 4193, 1 Series,2019,16480,Manual,1501,Diesel,145,68.9,2.0 4194, 1 Series,2019,16440,Manual,1501,Diesel,145,72.4,1.5 4195, 3 Series,2019,27440,Semi-Auto,15639,Diesel,145,52.3,2.0 4196, 1 Series,2019,16440,Manual,13461,Diesel,145,72.4,1.5 4197, 1 Series,2019,16380,Manual,101,Petrol,145,53.3,1.5 4198, 4 Series,2019,24970,Semi-Auto,101,Petrol,145,45.6,2.0 4199, 1 Series,2020,24880,Manual,1550,Diesel,145,53.3,2.0 4200, 6 Series,2017,27825,Semi-Auto,20643,Diesel,145,51.4,3.0 4201, 2 Series,2016,17495,Manual,31000,Petrol,260,36.2,3.0 4202, 7 Series,2019,37999,Semi-Auto,19423,Diesel,150,54.3,3.0 4203, 2 Series,2019,21980,Semi-Auto,5936,Petrol,145,50.4,2.0 4204, 2 Series,2019,21980,Semi-Auto,7315,Petrol,145,50.4,2.0 4205, 2 Series,2014,9480,Manual,46498,Diesel,20,68.9,2.0 4206, 2 Series,2019,22480,Semi-Auto,1000,Petrol,150,50.4,1.5 4207, 5 Series,2019,32980,Semi-Auto,8188,Diesel,150,51.4,3.0 4208, 5 Series,2019,25980,Semi-Auto,5389,Petrol,150,36.2,2.0 4209, 5 Series,2019,31980,Automatic,1980,Petrol,145,48.7,2.0 4210, X5,2016,27495,Automatic,57908,Hybrid,0,85.6,2.0 4212, 6 Series,2015,21298,Automatic,25757,Diesel,160,49.6,3.0 4213, 5 Series,2017,22998,Semi-Auto,27395,Diesel,145,60.1,2.0 4214, 5 Series,2015,15998,Semi-Auto,44436,Diesel,145,53.3,3.0 4215, 7 Series,2014,21498,Semi-Auto,24528,Petrol,300,32.8,4.4 4216, X3,2019,34980,Semi-Auto,2311,Diesel,145,54.3,2.0 4217, 3 Series,2014,11480,Manual,60301,Diesel,30,61.4,2.0 4218, 5 Series,2015,16980,Semi-Auto,36257,Diesel,145,53.3,3.0 4219, X1,2019,24980,Semi-Auto,5218,Petrol,145,35.3,2.0 4220, X1,2019,23700,Semi-Auto,5756,Diesel,145,60.1,2.0 4221, X2,2019,27000,Semi-Auto,4724,Diesel,145,58.9,2.0 4222, 1 Series,2019,29980,Automatic,3768,Diesel,145,48.7,2.0 4223, 5 Series,2019,36480,Automatic,6552,Diesel,145,53.3,3.0 4224, 4 Series,2019,26980,Automatic,101,Petrol,145,48.7,2.0 4225, 5 Series,2019,30980,Automatic,102,Petrol,145,50.4,2.0 4226, 5 Series,2019,32980,Automatic,101,Petrol,145,50.4,2.0 4227, M4,2019,41980,Semi-Auto,101,Petrol,145,34.0,3.0 4228, M4,2019,41980,Semi-Auto,101,Petrol,145,34.0,3.0 4229, M4,2019,41980,Semi-Auto,101,Petrol,145,34.0,3.0 4230, X4,2019,40980,Automatic,2526,Petrol,145,26.9,3.0 4231, X3,2019,47980,Automatic,5801,Diesel,145,48.7,3.0 4232, X5,2019,48980,Semi-Auto,9591,Diesel,145,37.7,3.0 4233, 4 Series,2019,31480,Automatic,5757,Diesel,145,47.9,3.0 4234, M3,2018,37991,Manual,18311,Petrol,150,32.1,3.0 4235, X3,2017,23282,Semi-Auto,30505,Diesel,145,54.3,2.0 4236, X5,2019,44800,Semi-Auto,12587,Diesel,145,37.7,3.0 4237, 5 Series,2017,21420,Semi-Auto,31569,Diesel,145,65.7,2.0 4238, 2 Series,2019,19980,Manual,5701,Diesel,145,64.2,2.0 4239, 3 Series,2018,22980,Semi-Auto,18286,Diesel,145,56.5,3.0 4240, 5 Series,2017,24480,Semi-Auto,49329,Diesel,145,60.1,3.0 4241, 2 Series,2019,20980,Manual,1000,Petrol,145,52.3,1.5 4242, 2 Series,2019,20980,Manual,1000,Petrol,145,52.3,1.5 4243, 2 Series,2019,20980,Manual,1000,Petrol,145,52.3,1.5 4244, 5 Series,2019,27490,Semi-Auto,7000,Petrol,145,50.4,2.0 4245, Z4,2020,50800,Semi-Auto,1142,Petrol,145,33.2,3.0 4246, 3 Series,2019,28400,Semi-Auto,7954,Diesel,145,49.6,3.0 4247, i8,2014,43497,Automatic,41237,Hybrid,0,134.5,1.5 4248, M5,2019,65000,Semi-Auto,4800,Petrol,145,26.9,4.4 4249, 1 Series,2016,13260,Manual,20702,Diesel,30,65.7,2.0 4250, X1,2019,25000,Manual,110,Diesel,145,60.1,2.0 4251, 3 Series,2015,14590,Semi-Auto,71902,Diesel,125,57.6,2.0 4252, 4 Series,2019,31480,Automatic,6035,Diesel,145,50.4,3.0 4253, 1 Series,2019,21480,Semi-Auto,8151,Petrol,145,47.9,2.0 4254, 1 Series,2016,13780,Manual,29993,Diesel,20,70.6,1.5 4255, 3 Series,2019,24980,Automatic,7249,Petrol,145,46.3,2.0 4256, 4 Series,2019,27980,Semi-Auto,8523,Diesel,145,50.4,3.0 4257, 2 Series,2019,21680,Semi-Auto,8994,Petrol,145,47.9,2.0 4258, 3 Series,2019,28710,Semi-Auto,4568,Diesel,145,52.3,2.0 4259, X3,2019,56000,Semi-Auto,4187,Petrol,145,24.8,3.0 4260, X5,2014,23557,Automatic,58577,Diesel,200,45.6,3.0 4261, X4,2019,34000,Semi-Auto,8515,Diesel,145,42.8,2.0 4262, 3 Series,2019,25000,Semi-Auto,19470,Diesel,145,51.4,3.0 4263, 1 Series,2019,38555,Semi-Auto,2195,Petrol,145,34.5,2.0 4264, 1 Series,2019,27515,Semi-Auto,3260,Petrol,145,42.8,1.5 4265, X4,2019,39950,Semi-Auto,5491,Petrol,145,26.9,3.0 4266, 1 Series,2018,15637,Manual,18021,Petrol,145,37.7,1.5 4267, 5 Series,2019,44190,Semi-Auto,6187,Petrol,145,37.7,3.0 4268, M3,2015,29991,Semi-Auto,41500,Petrol,305,34.0,3.0 4269, 1 Series,2019,21980,Manual,2921,Petrol,145,44.1,1.5 4270, 1 Series,2019,21980,Manual,2630,Petrol,145,44.1,1.5 4271, X3,2019,33980,Semi-Auto,7861,Diesel,145,54.3,2.0 4272, 3 Series,2018,25480,Semi-Auto,14951,Petrol,145,41.5,3.0 4273, 1 Series,2016,12556,Manual,39726,Diesel,20,72.4,1.5 4274, 5 Series,2015,19676,Semi-Auto,37749,Diesel,160,49.6,3.0 4275, 3 Series,2017,18970,Semi-Auto,35269,Diesel,145,56.5,3.0 4276, 1 Series,2019,21480,Semi-Auto,7796,Petrol,145,47.9,2.0 4277, 3 Series,2019,25480,Automatic,9839,Diesel,145,57.7,2.0 4278, 3 Series,2019,28980,Semi-Auto,7851,Petrol,145,42.2,2.0 4279, 4 Series,2016,19980,Semi-Auto,17117,Diesel,160,52.3,3.0 4280, 7 Series,2020,57980,Semi-Auto,3301,Diesel,145,41.5,3.0 4281, 5 Series,2020,33980,Semi-Auto,1175,Diesel,145,62.8,2.0 4282, 5 Series,2019,37980,Automatic,5265,Diesel,145,51.4,3.0 4283, 3 Series,2018,21805,Semi-Auto,28013,Diesel,145,53.3,3.0 4284, 1 Series,2019,21490,Semi-Auto,7801,Petrol,145,47.9,2.0 4285, X5,2019,47950,Semi-Auto,1080,Petrol,145,27.2,3.0 4286, X3,2020,51395,Semi-Auto,171,Diesel,145,48.7,3.0 4287, 3 Series,2020,43970,Semi-Auto,1381,Petrol,145,41.5,2.0 4288, X4,2019,39480,Automatic,3201,Diesel,145,40.4,3.0 4289, 3 Series,2018,19785,Semi-Auto,30187,Diesel,145,62.8,2.0 4290, X5,2016,26510,Automatic,66246,Diesel,200,47.1,3.0 4291, X3,2017,24991,Semi-Auto,27125,Diesel,150,54.3,2.0 4292, 3 Series,2016,12991,Manual,37594,Diesel,30,62.8,2.0 4293, 5 Series,2015,13740,Semi-Auto,56753,Diesel,30,62.8,2.0 4294, 4 Series,2020,25453,Semi-Auto,2540,Diesel,145,65.7,2.0 4295, 4 Series,2017,20945,Semi-Auto,34764,Diesel,145,52.3,3.0 4296, 4 Series,2019,23480,Automatic,6771,Petrol,145,48.7,2.0 4297, 1 Series,2019,22980,Manual,3744,Petrol,145,44.1,1.5 4298, 3 Series,2020,32980,Semi-Auto,1001,Diesel,145,50.4,2.0 4299, 3 Series,2020,32980,Semi-Auto,1000,Diesel,145,50.4,2.0 4300, 3 Series,2020,32980,Semi-Auto,1000,Diesel,145,50.4,2.0 4301, 2 Series,2017,22980,Semi-Auto,18688,Petrol,145,39.8,3.0 4302, 2 Series,2016,14980,Semi-Auto,43774,Diesel,30,64.2,2.0 4303, X5,2019,50480,Automatic,6215,Diesel,145,37.7,3.0 4304, X6,2019,40980,Automatic,4155,Diesel,145,44.8,3.0 4305, 2 Series,2019,21980,Automatic,2728,Petrol,145,50.4,2.0 4306, 3 Series,2019,32980,Automatic,2561,Diesel,145,49.6,2.0 4307, 2 Series,2019,34950,Manual,3254,Diesel,145,54.3,1.5 4308, 4 Series,2019,24480,Automatic,3106,Diesel,145,65.7,2.0 4309, X3,2019,30850,Semi-Auto,14260,Petrol,145,30.4,2.0 4310, 1 Series,2017,14127,Manual,43655,Diesel,20,68.9,2.0 4311, 5 Series,2017,20900,Semi-Auto,40910,Diesel,145,65.7,2.0 4312, 5 Series,2017,22695,Semi-Auto,14563,Diesel,145,65.7,2.0 4313, 1 Series,2017,13515,Manual,49335,Diesel,145,68.9,2.0 4314, 5 Series,2016,19370,Semi-Auto,47937,Diesel,160,51.4,3.0 4315, 1 Series,2016,14066,Manual,19023,Diesel,20,68.9,2.0 4316, 5 Series,2018,24600,Semi-Auto,20000,Diesel,150,68.9,2.0 4317, M4,2017,29991,Semi-Auto,60584,Petrol,150,34.0,3.0 4318, 1 Series,2018,23491,Manual,12139,Petrol,150,36.2,3.0 4319, 3 Series,2020,44320,Semi-Auto,160,Diesel,145,49.6,2.0 4320, 5 Series,2020,54845,Semi-Auto,450,Diesel,145,60.1,3.0 4321, 5 Series,2019,24990,Semi-Auto,6486,Diesel,145,62.8,2.0 4322, X1,2017,20950,Semi-Auto,31834,Petrol,160,44.8,2.0 4323, M4,2019,46000,Semi-Auto,1921,Petrol,145,32.5,3.0 4324, 2 Series,2015,18991,Semi-Auto,57003,Petrol,260,37.2,3.0 4325, 1 Series,2017,21800,Semi-Auto,16166,Petrol,145,39.8,3.0 4326, 5 Series,2019,30991,Semi-Auto,2435,Hybrid,135,156.9,2.0 4327, 1 Series,2017,16995,Semi-Auto,23426,Petrol,145,47.9,2.0 4328, 1 Series,2015,16495,Semi-Auto,22886,Diesel,125,61.4,2.0 4329, 3 Series,2019,26999,Semi-Auto,9000,Diesel,145,52.3,2.0 4330, 3 Series,2015,16299,Manual,24331,Petrol,200,41.5,2.0 4331, 4 Series,2016,19999,Semi-Auto,8147,Diesel,30,65.7,2.0 4332, 6 Series,2016,22500,Semi-Auto,39950,Diesel,205,49.6,3.0 4333, 1 Series,2019,17980,Manual,7103,Diesel,145,70.6,1.5 4334, 2 Series,2019,22950,Semi-Auto,3660,Diesel,145,61.4,2.0 4335, 3 Series,2019,24480,Semi-Auto,298,Diesel,145,53.3,2.0 4336, 1 Series,2019,19250,Semi-Auto,5298,Diesel,145,67.3,2.0 4337, 3 Series,2016,15991,Semi-Auto,53331,Diesel,30,64.2,2.0 4338, X4,2019,36900,Semi-Auto,12855,Diesel,145,40.4,3.0 4339, X5,2019,51250,Semi-Auto,3658,Diesel,145,37.7,3.0 4340, X6,2016,44160,Semi-Auto,25684,Petrol,570,25.4,4.4 4341, 1 Series,2018,22320,Semi-Auto,21341,Petrol,145,32.5,3.0 4342, 3 Series,2017,27490,Semi-Auto,25632,Diesel,145,49.6,3.0 4343, 4 Series,2017,19991,Semi-Auto,32351,Diesel,160,52.3,3.0 4344, 2 Series,2015,19140,Semi-Auto,12117,Petrol,260,35.8,3.0 4345, 2 Series,2016,16250,Semi-Auto,37014,Diesel,125,57.6,2.0 4346, M4,2018,34991,Semi-Auto,17923,Petrol,145,34.0,3.0 4347, 3 Series,2017,17000,Semi-Auto,22639,Petrol,150,48.7,2.0 4348, 2 Series,2018,19995,Semi-Auto,26101,Diesel,150,60.1,2.0 4349, M4,2018,55991,Semi-Auto,4000,Petrol,145,33.6,3.0 4350, X5,2019,59000,Semi-Auto,3276,Diesel,145,33.6,3.0 4351, 4 Series,2019,29000,Semi-Auto,2963,Diesel,145,60.1,2.0 4352, 8 Series,2019,54991,Semi-Auto,8966,Petrol,145,33.6,3.0 4353, 4 Series,2018,27000,Semi-Auto,14519,Diesel,145,50.4,3.0 4354, M2,2019,37990,Semi-Auto,19548,Petrol,145,29.1,3.0 4355, 1 Series,2016,11499,Manual,25000,Diesel,20,70.6,1.5 4356, 4 Series,2015,17495,Semi-Auto,12836,Diesel,30,65.7,2.0 4357, X5,2016,26995,Automatic,46126,Diesel,200,47.1,3.0 4358, 2 Series,2018,17495,Automatic,10526,Petrol,145,40.9,1.5 4359, X3,2016,20991,Semi-Auto,28737,Diesel,150,54.3,2.0 4360, 5 Series,2015,15990,Semi-Auto,17324,Diesel,30,62.8,2.0 4361, 3 Series,2018,21380,Semi-Auto,6641,Petrol,145,48.7,2.0 4362, 2 Series,2019,19950,Semi-Auto,8973,Diesel,145,49.6,2.0 4363, X3,2017,27980,Semi-Auto,14130,Diesel,150,48.7,3.0 4364, 4 Series,2016,17580,Semi-Auto,29387,Petrol,165,44.8,2.0 4365, 1 Series,2017,15490,Semi-Auto,57796,Diesel,150,67.3,2.0 4366, 1 Series,2017,15280,Manual,10191,Diesel,150,68.9,2.0 4367, 7 Series,2019,38980,Semi-Auto,11126,Diesel,150,58.9,3.0 4368, X2,2019,26950,Semi-Auto,7989,Petrol,150,39.2,2.0 4369, M4,2019,45940,Semi-Auto,3447,Petrol,145,34.0,3.0 4370, 1 Series,2018,17280,Semi-Auto,20033,Diesel,145,67.3,2.0 4371, X2,2019,22000,Manual,4931,Petrol,145,41.5,1.5 4372, 2 Series,2019,24590,Semi-Auto,3300,Diesel,145,48.7,2.0 4373, 5 Series,2019,28810,Semi-Auto,5211,Diesel,145,65.7,2.0 4374, 3 Series,2019,25000,Semi-Auto,3932,Diesel,145,62.8,2.0 4375, 2 Series,2020,28655,Manual,3297,Petrol,145,52.3,1.5 4376, X2,2020,34360,Semi-Auto,835,Petrol,145,38.7,2.0 4377, X1,2020,35040,Semi-Auto,562,Diesel,145,60.1,2.0 4378, 3 Series,2013,12480,Semi-Auto,37603,Diesel,30,62.8,2.0 4379, 2 Series,2019,18480,Semi-Auto,5356,Petrol,145,42.2,1.5 4380, 3 Series,2019,23980,Manual,2926,Diesel,145,56.5,2.0 4381, 1 Series,2017,13680,Manual,24780,Petrol,145,53.3,1.5 4382, X3,2014,19640,Semi-Auto,80078,Diesel,200,47.1,3.0 4383, 2 Series,2018,18791,Semi-Auto,11984,Petrol,145,48.7,2.0 4384, i8,2019,64750,Automatic,2277,Hybrid,140,141.2,1.5 4385, 1 Series,2019,22940,Semi-Auto,1320,Petrol,150,40.4,1.5 4386, 4 Series,2019,24970,Semi-Auto,4415,Petrol,145,45.6,2.0 4387, 1 Series,2019,19250,Semi-Auto,6173,Diesel,145,67.3,2.0 4388, Z4,2019,38850,Semi-Auto,1561,Petrol,150,33.2,3.0 4389, X2,2019,26940,Semi-Auto,6055,Diesel,150,58.9,2.0 4390, X2,2018,23000,Semi-Auto,10342,Petrol,145,39.2,2.0 4391, 1 Series,2017,16995,Automatic,13552,Diesel,145,68.9,1.5 4392, 1 Series,2016,11980,Manual,49629,Petrol,125,53.3,1.5 4393, 3 Series,2019,27940,Semi-Auto,4916,Petrol,145,45.6,2.0 4394, 1 Series,2019,18440,Semi-Auto,7561,Diesel,145,47.9,1.5 4395, 5 Series,2020,26450,Semi-Auto,25,Diesel,145,65.7,2.0 4396, X1,2019,25980,Semi-Auto,8083,Diesel,145,60.1,2.0 4397, 4 Series,2019,28970,Semi-Auto,11075,Diesel,145,50.4,3.0 4398, 5 Series,2019,28380,Semi-Auto,6,Diesel,145,65.7,2.0 4399, 3 Series,2019,25940,Semi-Auto,7726,Diesel,145,53.3,2.0 4400, X2,2019,29980,Semi-Auto,9882,Petrol,145,34.0,2.0 4401, 3 Series,2017,17490,Semi-Auto,29009,Diesel,150,64.2,2.0 4402, X5,2014,24480,Automatic,66088,Diesel,205,47.1,3.0 4403, 3 Series,2018,17290,Semi-Auto,8988,Diesel,150,68.9,2.0 4404, 3 Series,2018,24280,Semi-Auto,20606,Petrol,150,46.3,2.0 4405, 2 Series,2017,15480,Manual,23430,Petrol,150,55.4,1.5 4406, X2,2019,26940,Semi-Auto,6659,Diesel,150,58.9,2.0 4407, 5 Series,2019,27750,Semi-Auto,500,Hybrid,145,49.6,2.0 4408, 5 Series,2019,24980,Semi-Auto,5196,Diesel,145,65.7,2.0 4409, X3,2019,31940,Semi-Auto,4238,Petrol,145,30.4,2.0 4410, 3 Series,2020,28980,Semi-Auto,892,Petrol,145,42.2,2.0 4411, X3,2020,34440,Semi-Auto,105,Diesel,145,54.3,2.0 4412, X2,2020,26850,Semi-Auto,105,Diesel,145,50.4,2.0 4413, 3 Series,2019,32940,Semi-Auto,7258,Diesel,145,49.6,2.0 4414, 3 Series,2015,17990,Semi-Auto,31835,Diesel,145,56.5,3.0 4415, 1 Series,2017,19680,Semi-Auto,15385,Diesel,145,61.4,2.0 4416, 5 Series,2015,21857,Semi-Auto,44183,Diesel,160,49.6,3.0 4417, 5 Series,2017,28920,Semi-Auto,22158,Diesel,145,51.4,3.0 4418, X5,2019,46991,Semi-Auto,7260,Diesel,145,37.7,3.0 4419, X5,2019,46991,Semi-Auto,8778,Diesel,145,37.7,3.0 4420, 1 Series,2019,29980,Semi-Auto,5369,Petrol,150,34.5,2.0 4421, 2 Series,2018,18890,Semi-Auto,13472,Petrol,145,50.4,1.5 4422, 2 Series,2016,13998,Manual,18807,Diesel,20,74.3,1.5 4423, 2 Series,2018,16998,Semi-Auto,9511,Petrol,150,50.4,2.0 4424, X5,2019,47440,Semi-Auto,9415,Diesel,145,37.7,3.0 4425, 3 Series,2019,30650,Automatic,7491,Petrol,145,41.5,2.0 4426, X3,2019,34440,Semi-Auto,105,Diesel,145,54.3,2.0 4427, 3 Series,2013,10010,Semi-Auto,58916,Diesel,30,65.7,2.0 4428, 3 Series,2014,11471,Manual,24904,Petrol,165,44.8,2.0 4429, 1 Series,2017,21498,Manual,16273,Petrol,145,36.2,3.0 4430, 3 Series,2017,13298,Semi-Auto,60406,Diesel,145,74.3,2.0 4431, 3 Series,2017,13298,Semi-Auto,75418,Diesel,0,74.3,2.0 4432, 1 Series,2017,19798,Semi-Auto,35403,Petrol,145,39.8,3.0 4433, X1,2017,20260,Semi-Auto,21320,Diesel,145,57.6,2.0 4434, 3 Series,2014,12080,Automatic,76587,Diesel,125,57.6,3.0 4435, 2 Series,2018,16570,Manual,16404,Diesel,145,64.2,2.0 4436, 3 Series,2015,8691,Manual,73017,Diesel,20,68.9,2.0 4437, X7,2019,69940,Automatic,2689,Diesel,145,33.6,3.0 4438, 4 Series,2019,25850,Semi-Auto,101,Petrol,145,48.7,2.0 4439, 1 Series,2019,16380,Manual,5997,Petrol,145,53.3,1.5 4440, 4 Series,2015,17980,Manual,38500,Petrol,300,34.9,3.0 4441, 2 Series,2019,21880,Semi-Auto,1853,Petrol,145,40.9,1.5 4442, 2 Series,2019,21980,Semi-Auto,6093,Petrol,145,50.4,2.0 4443, 1 Series,2019,19940,Semi-Auto,2635,Petrol,145,54.3,1.5 4444, 3 Series,2013,9991,Semi-Auto,58974,Diesel,30,62.8,2.0 4445, X1,2016,18995,Automatic,14496,Diesel,125,57.6,2.0 4446, 1 Series,2019,17480,Manual,15953,Petrol,145,52.3,1.5 4447, 5 Series,2017,30950,Semi-Auto,20564,Petrol,145,37.7,3.0 4448, 4 Series,2017,19440,Semi-Auto,19025,Diesel,125,60.1,2.0 4449, 1 Series,2019,22940,Manual,5170,Petrol,145,41.5,1.5 4450, X5,2017,28980,Automatic,24749,Diesel,145,50.4,2.0 4451, 3 Series,2018,16980,Semi-Auto,31500,Diesel,145,74.3,2.0 4452, 3 Series,2019,25995,Semi-Auto,9913,Diesel,145,57.7,2.0 4453, 3 Series,2019,26995,Semi-Auto,9698,Diesel,145,53.3,2.0 4454, 5 Series,2019,34995,Semi-Auto,6523,Diesel,145,56.5,3.0 4455, 2 Series,2019,27995,Automatic,1501,Hybrid,135,113.0,1.5 4456, 4 Series,2019,28995,Semi-Auto,10000,Diesel,145,65.7,2.0 4457, X3,2019,37995,Semi-Auto,20467,Diesel,150,36.7,3.0 4458, 5 Series,2018,29995,Semi-Auto,28399,Petrol,150,39.2,3.0 4459, 2 Series,2018,24995,Semi-Auto,12793,Petrol,150,39.8,3.0 4460, Z4,2019,35995,Semi-Auto,1501,Petrol,145,37.2,2.0 4461, 5 Series,2014,14995,Semi-Auto,42749,Diesel,150,55.4,2.0 4462, X1,2019,25995,Semi-Auto,5200,Petrol,145,46.3,1.5 4463, 5 Series,2019,39995,Semi-Auto,1501,Petrol,145,39.2,3.0 4464, X5,2019,49995,Semi-Auto,1972,Diesel,145,37.7,3.0 4465, X6,2019,56995,Semi-Auto,2055,Diesel,145,34.9,3.0 4466, X5,2019,49995,Semi-Auto,4552,Diesel,145,37.7,3.0 4467, 2 Series,2019,21995,Manual,11,Petrol,145,42.2,1.5 4468, X5,2019,47995,Semi-Auto,12488,Petrol,145,27.2,3.0 4469, X3,2019,32995,Semi-Auto,1107,Petrol,145,30.4,2.0 4470, 1 Series,2017,21995,Semi-Auto,12729,Petrol,200,39.8,3.0 4471, 3 Series,2014,16495,Semi-Auto,27092,Diesel,125,58.9,2.0 4472, 5 Series,2017,23495,Semi-Auto,25544,Diesel,145,65.7,2.0 4473, 3 Series,2019,28495,Semi-Auto,11,Petrol,145,42.2,2.0 4474, 4 Series,2019,29995,Semi-Auto,11,Diesel,145,65.7,2.0 4475, X1,2019,25995,Manual,11,Diesel,145,36.7,2.0 4476, X3,2019,31995,Semi-Auto,11,Petrol,145,31.4,2.0 4477, 3 Series,2018,19495,Semi-Auto,12849,Diesel,145,64.2,2.0 4478, 4 Series,2019,29995,Semi-Auto,10,Petrol,145,48.7,2.0 4479, 4 Series,2019,29995,Semi-Auto,6592,Diesel,145,52.3,3.0 4480, X1,2014,9530,Manual,47262,Diesel,165,51.4,2.0 4481, 3 Series,2015,14107,Manual,30140,Diesel,30,64.2,2.0 4482, 3 Series,2015,11057,Manual,58696,Diesel,125,61.4,2.0 4483, 2 Series,2018,14157,Automatic,29590,Petrol,145,53.3,1.5 4484, 1 Series,2014,9650,Manual,54314,Diesel,30,64.2,2.0 4485, X1,2016,17900,Semi-Auto,34382,Diesel,125,57.6,2.0 4486, 4 Series,2018,19500,Semi-Auto,13368,Petrol,145,48.7,2.0 4487, X1,2014,10298,Manual,58630,Diesel,160,51.4,2.0 4488, X1,2016,18498,Semi-Auto,24952,Diesel,150,55.4,2.0 4489, 1 Series,2016,18698,Manual,18743,Petrol,260,36.2,3.0 4490, 1 Series,2017,19995,Manual,25645,Petrol,260,36.2,3.0 4491, X5,2019,49995,Semi-Auto,3724,Diesel,145,37.7,3.0 4492, 2 Series,2019,20995,Manual,1501,Petrol,145,44.1,1.5 4493, X1,2016,17498,Semi-Auto,26344,Diesel,145,55.4,2.0 4494, 5 Series,2013,15998,Semi-Auto,51063,Diesel,200,47.9,3.0 4495, 3 Series,2019,29498,Semi-Auto,7751,Petrol,145,41.5,2.0 4496, 1 Series,2014,14998,Semi-Auto,43525,Petrol,235,37.7,3.0 4497, 3 Series,2020,35995,Semi-Auto,11,Diesel,145,47.9,3.0 4498, 5 Series,2020,32995,Semi-Auto,11,Hybrid,145,49.6,2.0 4499, 3 Series,2020,33995,Semi-Auto,11,Diesel,145,50.4,2.0 4500, 3 Series,2019,27995,Semi-Auto,1501,Petrol,145,43.5,2.0 4501, X1,2019,28995,Semi-Auto,1501,Petrol,145,48.7,2.0 4502, X3,2019,34995,Semi-Auto,9719,Petrol,145,30.4,2.0 4503, 2 Series,2017,15995,Semi-Auto,26652,Diesel,20,68.9,2.0 4504, X2,2019,36995,Semi-Auto,3091,Petrol,145,34.0,2.0 4505, 3 Series,2019,29995,Semi-Auto,1928,Petrol,145,42.2,2.0 4506, X3,2019,31995,Semi-Auto,2498,Petrol,145,30.4,2.0 4507, 4 Series,2019,22498,Semi-Auto,17886,Diesel,145,65.7,2.0 4508, X1,2017,15401,Manual,20779,Diesel,20,68.9,2.0 4509, 1 Series,2016,14417,Automatic,22998,Diesel,30,65.7,2.0 4510, 4 Series,2017,17920,Manual,22956,Diesel,30,62.8,2.0 4511, 3 Series,2018,16498,Semi-Auto,33546,Diesel,145,67.3,2.0 4512, 2 Series,2017,15498,Manual,16134,Diesel,20,74.3,1.5 4513, 1 Series,2019,25995,Semi-Auto,10572,Petrol,145,39.8,3.0 4514, X7,2019,69995,Semi-Auto,4997,Diesel,145,31.4,3.0 4515, 5 Series,2019,39995,Semi-Auto,4242,Diesel,145,51.4,3.0 4516, 3 Series,2020,34495,Semi-Auto,1501,Diesel,145,50.4,2.0 4517, 3 Series,2020,35495,Semi-Auto,1501,Diesel,145,47.1,3.0 4518, 4 Series,2020,29995,Semi-Auto,1501,Diesel,145,58.9,2.0 4519, 4 Series,2020,30995,Semi-Auto,10,Diesel,145,60.1,2.0 4520, 2 Series,2016,18495,Manual,24452,Diesel,125,60.1,2.0 4521, X3,2016,20995,Semi-Auto,26531,Diesel,145,54.3,2.0 4522, 3 Series,2015,15495,Manual,31468,Diesel,30,61.4,2.0 4523, X3,2016,21600,Automatic,32330,Diesel,200,47.9,3.0 4524, 1 Series,2018,17850,Automatic,748,Petrol,145,47.9,2.0 4525, X1,2017,18200,Manual,21695,Diesel,125,58.9,2.0 4526, X7,2020,64995,Semi-Auto,1501,Diesel,145,33.6,3.0 4527, X6,2019,54995,Semi-Auto,3455,Diesel,145,34.9,3.0 4528, X1,2013,11995,Semi-Auto,64637,Diesel,160,51.4,2.0 4529, X2,2019,27995,Semi-Auto,1501,Diesel,145,50.4,2.0 4530, 5 Series,2019,31995,Semi-Auto,1912,Diesel,145,65.7,2.0 4531, 4 Series,2019,34995,Semi-Auto,11,Diesel,145,53.3,3.0 4532, X1,2019,27495,Semi-Auto,11,Diesel,145,60.1,2.0 4533, X1,2019,26995,Semi-Auto,11,Diesel,145,60.1,2.0 4534, 1 Series,2018,15250,Automatic,11487,Petrol,145,55.5,1.5 4535, 2 Series,2017,15800,Automatic,51468,Diesel,125,60.1,2.0 4536, 2 Series,2015,13500,Manual,24621,Petrol,145,47.9,2.0 4537, 3 Series,2013,8995,Manual,32939,Diesel,30,62.8,2.0 4538, 2 Series,2018,19000,Semi-Auto,7680,Petrol,145,39.2,1.5 4539, 3 Series,2017,15300,Semi-Auto,16935,Petrol,125,51.4,2.0 4540, X1,2017,14300,Manual,30533,Diesel,150,68.9,2.0 4541, X1,2019,25995,Manual,1501,Petrol,145,51.4,1.5 4542, 3 Series,2020,30995,Semi-Auto,1501,Petrol,145,42.2,2.0 4543, M4,2019,56995,Semi-Auto,1501,Petrol,145,34.0,3.0 4544, 3 Series,2020,30995,Semi-Auto,1501,Diesel,145,52.3,2.0 4545, M4,2019,49995,Semi-Auto,1501,Petrol,145,34.0,3.0 4546, 4 Series,2019,28995,Semi-Auto,1501,Diesel,145,65.7,2.0 4547, 3 Series,2020,34995,Semi-Auto,11,Diesel,145,49.6,2.0 4548, 2 Series,2017,16498,Semi-Auto,22919,Diesel,145,64.2,2.0 4549, X5,2018,37498,Automatic,25930,Petrol,145,29.1,4.4 4550, 3 Series,2019,26995,Semi-Auto,9907,Diesel,145,52.3,2.0 4551, 1 Series,2019,24995,Manual,1501,Petrol,145,41.5,1.5 4552, 2 Series,2019,27995,Semi-Auto,11,Petrol,145,39.8,3.0 4553, 1 Series,2017,20998,Semi-Auto,22018,Petrol,145,39.8,3.0 4554, X1,2016,17998,Semi-Auto,45944,Diesel,150,55.4,2.0 4555, 2 Series,2015,10998,Semi-Auto,51719,Diesel,20,68.9,2.0 4556, 5 Series,2017,23500,Semi-Auto,27726,Hybrid,135,156.9,2.0 4557, X1,2014,10295,Semi-Auto,55000,Diesel,150,56.5,2.0 4558, 1 Series,2016,12995,Semi-Auto,33291,Diesel,20,67.3,2.0 4559, 5 Series,2018,25995,Semi-Auto,30418,Diesel,145,60.1,3.0 4560, 3 Series,2019,36995,Semi-Auto,3040,Petrol,145,34.9,3.0 4561, 1 Series,2017,15995,Semi-Auto,21469,Diesel,20,70.6,2.0 4562, X5,2019,46995,Semi-Auto,5966,Diesel,145,37.7,3.0 4563, X5,2019,52995,Semi-Auto,6326,Diesel,145,37.7,3.0 4564, X5,2019,52995,Semi-Auto,6997,Diesel,145,37.7,3.0 4565, X1,2016,19495,Semi-Auto,38267,Petrol,160,44.8,2.0 4566, 1 Series,2019,19495,Manual,7753,Diesel,145,65.7,2.0 4567, 2 Series,2017,16498,Semi-Auto,26335,Diesel,145,64.2,2.0 4568, 5 Series,2018,25998,Semi-Auto,7776,Diesel,145,49.6,2.0 4569, 1 Series,2018,17991,Manual,7100,Petrol,145,37.2,1.5 4570, 1 Series,2017,12495,Manual,44506,Diesel,145,68.9,2.0 4571, 7 Series,2019,59995,Semi-Auto,1501,Diesel,145,41.5,3.0 4572, 1 Series,2014,9991,Manual,49064,Diesel,30,65.7,2.0 4573, 1 Series,2016,11470,Manual,18802,Diesel,0,83.1,1.5 4574, 3 Series,2017,14590,Manual,34552,Diesel,30,65.7,2.0 4575, 3 Series,2016,17991,Semi-Auto,30100,Diesel,145,53.3,3.0 4576, X4,2015,21437,Automatic,33289,Diesel,200,47.9,3.0 4577, 1 Series,2014,10540,Automatic,45263,Diesel,30,64.2,2.0 4578, 3 Series,2018,19998,Semi-Auto,23050,Petrol,145,48.7,2.0 4579, X1,2020,29995,Semi-Auto,1501,Diesel,145,50.4,2.0 4580, 5 Series,2020,31995,Semi-Auto,1501,Hybrid,145,49.6,2.0 4581, 4 Series,2020,27495,Semi-Auto,10,Diesel,145,65.7,2.0 4582, 4 Series,2020,27495,Semi-Auto,10,Petrol,145,48.7,2.0 4583, X2,2020,31995,Semi-Auto,1501,Diesel,145,61.4,2.0 4584, 2 Series,2020,32995,Semi-Auto,1501,Petrol,145,36.2,2.0 4585, 8 Series,2020,59995,Semi-Auto,1501,Petrol,145,31.7,3.0 4586, 2 Series,2020,28995,Semi-Auto,1501,Diesel,145,49.6,2.0 4587, 5 Series,2016,21298,Semi-Auto,40120,Diesel,200,47.9,3.0 4588, 2 Series,2017,16498,Semi-Auto,12458,Diesel,30,64.2,2.0 4589, 1 Series,2017,20698,Automatic,20763,Petrol,145,39.8,3.0 4590, 2 Series,2017,13998,Manual,23541,Diesel,20,68.9,1.5 4591, 3 Series,2018,20998,Semi-Auto,23833,Diesel,150,57.7,2.0 4592, 3 Series,2017,18698,Semi-Auto,40841,Diesel,150,64.2,2.0 4593, 2 Series,2017,16498,Semi-Auto,22645,Diesel,145,64.2,2.0 4594, 1 Series,2015,11995,Semi-Auto,23484,Diesel,30,64.2,2.0 4595, 3 Series,2016,12950,Manual,59833,Diesel,125,61.4,2.0 4596, 4 Series,2017,16507,Automatic,26800,Diesel,30,65.7,2.0 4597, 3 Series,2019,27995,Semi-Auto,3751,Diesel,145,52.3,2.0 4598, 4 Series,2019,27995,Semi-Auto,1501,Diesel,145,65.7,2.0 4599, X4,2019,33995,Semi-Auto,7141,Diesel,145,42.8,2.0 4600, 5 Series,2013,8997,Manual,82949,Diesel,30,62.8,2.0 4601, 3 Series,2016,16247,Automatic,28384,Diesel,125,60.1,2.0 4602, 5 Series,2016,16000,Semi-Auto,30070,Diesel,30,62.8,2.0 4603, X4,2016,18860,Semi-Auto,75680,Diesel,145,54.3,2.0 4604, X1,2016,17360,Semi-Auto,25710,Diesel,30,65.7,2.0 4605, 3 Series,2016,14050,Semi-Auto,45741,Hybrid,0,148.7,2.0 4606, 5 Series,2015,14495,Automatic,35980,Diesel,30,62.8,2.0 4607, 4 Series,2016,16550,Semi-Auto,31125,Petrol,165,46.3,2.0 4608, 3 Series,2016,17250,Automatic,31561,Hybrid,0,134.5,2.0 4609, X5,2019,47995,Semi-Auto,4339,Diesel,145,37.7,3.0 4610, 1 Series,2020,23995,Manual,1501,Diesel,145,57.7,1.5 4611, X7,2020,69995,Semi-Auto,1501,Diesel,145,33.6,3.0 4612, 1 Series,2015,15995,Semi-Auto,26629,Diesel,125,60.1,2.0 4613, 2 Series,2020,29995,Semi-Auto,1501,Diesel,145,49.6,2.0 4614, X4,2020,44995,Semi-Auto,11,Diesel,145,37.2,3.0 4615, Z4,2020,34995,Semi-Auto,1501,Petrol,145,38.7,2.0 4616, 5 Series,2017,21470,Semi-Auto,35138,Diesel,145,62.8,2.0 4617, 1 Series,2016,11497,Manual,52409,Diesel,30,65.7,2.0 4618, 3 Series,2015,14247,Automatic,51650,Diesel,145,56.5,2.0 4619, 2 Series,2019,23950,Semi-Auto,2918,Diesel,150,49.6,2.0 4620, X3,2017,20950,Semi-Auto,30148,Diesel,150,54.3,2.0 4621, X4,2020,44950,Semi-Auto,100,Petrol,150,26.9,3.0 4622, 5 Series,2019,36450,Semi-Auto,5700,Diesel,150,51.4,3.0 4623, 4 Series,2019,25450,Semi-Auto,9204,Petrol,150,46.3,2.0 4624, X1,2017,14500,Manual,28205,Diesel,150,68.9,2.0 4625, 2 Series,2018,18991,Semi-Auto,1100,Diesel,145,67.3,2.0 4626, 3 Series,2017,17997,Automatic,28379,Diesel,145,62.8,2.0 4627, X1,2018,18697,Automatic,45268,Diesel,145,57.6,2.0 4628, 3 Series,2014,11740,Manual,81838,Diesel,125,57.6,2.0 4629, 1 Series,2013,7991,Manual,49479,Petrol,125,51.4,1.6 4630, 2 Series,2017,16498,Semi-Auto,22056,Diesel,145,64.2,2.0 4631, 3 Series,2019,29950,Semi-Auto,4629,Diesel,150,48.7,2.0 4632, 1 Series,2019,30950,Semi-Auto,5453,Petrol,150,34.5,2.0 4633, X6,2016,32950,Semi-Auto,44914,Diesel,240,42.8,3.0 4634, 2 Series,2019,22950,Semi-Auto,7477,Petrol,150,47.9,2.0 4635, 5 Series,2019,27950,Semi-Auto,9239,Hybrid,150,62.8,2.0 4636, 1 Series,2017,15950,Manual,13261,Diesel,150,70.6,1.5 4637, 3 Series,2020,41950,Semi-Auto,8,Petrol,150,33.6,3.0 4638, 1 Series,2018,15950,Semi-Auto,17200,Diesel,150,44.1,2.0 4639, X5,2015,28950,Automatic,36439,Diesel,205,47.1,3.0 4640, X3,2020,34950,Semi-Auto,2500,Diesel,145,54.3,2.0 4641, 3 Series,2014,14950,Semi-Auto,66008,Diesel,150,54.3,3.0 4642, 3 Series,2020,37950,Semi-Auto,100,Diesel,145,47.9,3.0 4643, X3,2019,34950,Semi-Auto,5492,Diesel,145,54.3,2.0 4644, 1 Series,2015,9985,Manual,43834,Diesel,20,72.4,1.5 4645, 3 Series,2017,18738,Semi-Auto,20422,Diesel,150,60.1,2.0 4646, 2 Series,2015,10691,Manual,41347,Diesel,20,74.3,1.5 4647, X3,2013,12291,Semi-Auto,75395,Diesel,160,50.4,2.0 4648, 3 Series,2013,10991,Manual,68067,Diesel,125,57.6,2.0 4649, 1 Series,2016,14995,Semi-Auto,34700,Diesel,20,67.3,2.0 4650, 1 Series,2017,13495,Manual,25491,Diesel,150,68.9,2.0 4651, 3 Series,2017,18995,Automatic,49954,Diesel,200,49.6,3.0 4652, 1 Series,2014,9250,Manual,61490,Petrol,145,50.4,1.6 4653, 3 Series,2015,14950,Manual,44538,Diesel,125,57.6,2.0 4654, 2 Series,2020,35250,Semi-Auto,100,Diesel,150,49.6,2.0 4655, 1 Series,2019,19950,Semi-Auto,11686,Diesel,145,48.7,2.0 4656, X5,2019,56450,Semi-Auto,4445,Diesel,145,33.6,3.0 4657, X5,2019,52450,Semi-Auto,101,Diesel,145,37.7,3.0 4658, 2 Series,2017,16950,Semi-Auto,11569,Petrol,150,53.3,1.5 4659, 2 Series,2019,21950,Semi-Auto,15470,Diesel,150,47.1,2.0 4660, 3 Series,2015,17999,Semi-Auto,30760,Diesel,145,56.5,3.0 4661, 3 Series,2017,20799,Semi-Auto,19559,Petrol,145,48.7,2.0 4662, 4 Series,2018,21290,Automatic,3475,Petrol,145,45.6,2.0 4663, 1 Series,2017,13490,Manual,12312,Petrol,150,53.3,1.5 4664, 3 Series,2017,20400,Semi-Auto,28250,Diesel,145,51.4,3.0 4665, 1 Series,2019,19950,Semi-Auto,9119,Petrol,145,54.3,1.5 4666, 2 Series,2016,13950,Semi-Auto,35292,Diesel,125,61.4,2.0 4667, 1 Series,2017,17950,Semi-Auto,17988,Diesel,145,61.4,2.0 4668, 3 Series,2019,41450,Semi-Auto,423,Petrol,145,34.9,3.0 4669, 7 Series,2018,36450,Semi-Auto,17192,Petrol,145,35.3,4.4 4670, X2,2019,27950,Semi-Auto,7419,Diesel,145,58.9,2.0 4671, Z4,2019,31450,Semi-Auto,8626,Petrol,145,38.7,2.0 4672, 2 Series,2015,13450,Semi-Auto,21150,Petrol,30,55.4,1.5 4673, 1 Series,2014,14950,Semi-Auto,56355,Petrol,235,37.7,3.0 4674, 1 Series,2017,14950,Manual,9463,Diesel,145,72.4,1.5 4675, 3 Series,2017,15290,Semi-Auto,61610,Petrol,145,48.7,2.0 4676, 3 Series,2016,13240,Manual,23255,Petrol,150,48.7,2.0 4677, 4 Series,2017,16395,Semi-Auto,48360,Diesel,145,65.7,2.0 4678, X3,2016,23450,Semi-Auto,23961,Diesel,145,54.3,2.0 4679, X5,2017,34950,Automatic,32738,Diesel,200,47.1,3.0 4680, 2 Series,2020,19950,Manual,100,Petrol,145,52.3,1.5 4681, 5 Series,2019,32950,Semi-Auto,101,Diesel,145,55.4,2.0 4682, 5 Series,2019,30750,Semi-Auto,101,Diesel,145,60.1,2.0 4683, 5 Series,2019,31750,Semi-Auto,101,Hybrid,145,60.1,2.0 4684, 4 Series,2019,28750,Semi-Auto,101,Diesel,145,58.9,2.0 4685, 3 Series,2018,27450,Semi-Auto,12521,Petrol,145,41.5,3.0 4686, 4 Series,2020,26950,Semi-Auto,2755,Diesel,145,65.7,2.0 4687, 1 Series,2020,27950,Manual,1638,Petrol,145,41.5,1.5 4688, X1,2020,26950,Semi-Auto,811,Petrol,145,40.9,1.5 4689, 3 Series,2016,9250,Manual,79470,Diesel,20,72.4,2.0 4690, 2 Series,2017,16298,Semi-Auto,23388,Diesel,145,64.2,2.0 4691, X5,2018,37498,Automatic,25160,Petrol,145,29.1,4.4 4692, 2 Series,2018,21998,Automatic,9566,Hybrid,135,113.0,1.5 4693, 3 Series,2017,22798,Semi-Auto,16996,Diesel,145,56.5,3.0 4694, 1 Series,2019,20998,Semi-Auto,13942,Diesel,150,60.1,2.0 4695, X1,2014,11298,Semi-Auto,33046,Diesel,160,52.3,2.0 4696, Z4,2019,32950,Semi-Auto,8031,Petrol,145,37.2,2.0 4697, 1 Series,2019,19950,Semi-Auto,9859,Diesel,145,67.3,2.0 4698, 2 Series,2016,18990,Automatic,11854,Diesel,145,55.4,2.0 4699, 1 Series,2018,14980,Semi-Auto,20438,Petrol,145,55.5,1.5 4700, M5,2015,24310,Semi-Auto,42932,Petrol,555,28.5,4.4 4701, 5 Series,2019,28450,Semi-Auto,101,Petrol,145,50.4,2.0 4702, 2 Series,2019,21950,Manual,2639,Diesel,145,64.2,2.0 4703, X3,2019,32450,Semi-Auto,4125,Diesel,145,54.3,2.0 4704, 1 Series,2020,27950,Semi-Auto,100,Diesel,145,51.4,2.0 4705, X1,2019,28950,Semi-Auto,3759,Diesel,145,50.4,2.0 4706, 2 Series,2018,24950,Semi-Auto,14835,Petrol,145,32.5,3.0 4707, X5,2019,54750,Semi-Auto,18673,Diesel,145,33.6,3.0 4708, 5 Series,2019,36750,Semi-Auto,8027,Diesel,145,51.4,3.0 4709, 5 Series,2019,30950,Semi-Auto,3795,Diesel,145,55.4,2.0 4710, 3 Series,2019,30950,Semi-Auto,4112,Diesel,145,49.6,2.0 4711, X3,2016,19950,Semi-Auto,42379,Diesel,145,54.3,2.0 4712, 2 Series,2019,24950,Automatic,5042,Hybrid,135,113.0,1.5 4713, 1 Series,2019,16950,Semi-Auto,11794,Diesel,145,72.4,1.5 4714, 1 Series,2017,14030,Semi-Auto,40344,Diesel,145,68.9,1.5 4715, 1 Series,2017,13760,Manual,24389,Diesel,145,65.7,2.0 4716, 1 Series,2015,10430,Manual,29454,Petrol,30,56.5,1.5 4717, 4 Series,2019,28750,Semi-Auto,101,Diesel,145,58.9,2.0 4718, X5,2019,49950,Semi-Auto,7220,Diesel,145,37.7,3.0 4719, 5 Series,2019,29950,Semi-Auto,4043,Diesel,145,60.1,2.0 4720, 1 Series,2018,14995,Semi-Auto,17000,Diesel,145,67.3,2.0 4721, 3 Series,2018,18695,Automatic,25876,Diesel,145,64.2,2.0 4722, 3 Series,2018,18157,Automatic,28438,Diesel,145,62.8,2.0 4723, X1,2016,19100,Automatic,28785,Diesel,125,57.6,2.0 4724, 2 Series,2015,11837,Semi-Auto,27494,Diesel,20,68.9,2.0 4725, 4 Series,2017,18997,Semi-Auto,11328,Petrol,145,48.7,2.0 4726, 4 Series,2017,23497,Automatic,14584,Diesel,145,50.4,3.0 4727, 4 Series,2016,19950,Semi-Auto,37897,Diesel,125,60.1,2.0 4728, M4,2019,44950,Semi-Auto,4931,Petrol,150,34.0,3.0 4729, X2,2019,27950,Semi-Auto,7946,Diesel,150,58.9,2.0 4730, 1 Series,2020,32972,Semi-Auto,151,Petrol,150,34.5,2.0 4731, X3,2018,30980,Semi-Auto,4813,Diesel,145,54.3,2.0 4732, 1 Series,2016,11891,Manual,69219,Diesel,20,68.9,2.0 4733, 5 Series,2018,24999,Automatic,24501,Diesel,145,60.1,2.0 4734, 4 Series,2017,19491,Automatic,22771,Diesel,145,55.4,3.0 4735, 1 Series,2015,11999,Manual,36339,Diesel,30,62.8,2.0 4736, 4 Series,2016,10999,Manual,93421,Diesel,30,62.8,2.0 4737, 3 Series,2020,28950,Semi-Auto,300,Petrol,145,42.2,2.0 4738, Z4,2020,38950,Semi-Auto,100,Petrol,145,33.2,3.0 4739, X3,2014,19950,Semi-Auto,23693,Diesel,145,54.3,2.0 4740, 1 Series,2019,21950,Manual,5013,Petrol,145,44.1,1.5 4741, 5 Series,2019,31950,Semi-Auto,1355,Diesel,145,55.4,2.0 4742, 2 Series,2015,13950,Semi-Auto,68787,Diesel,125,57.6,2.0 4743, 1 Series,2019,18950,Semi-Auto,15028,Petrol,145,36.7,1.5 4744, 1 Series,2019,16950,Semi-Auto,11137,Diesel,145,72.4,1.5 4745, 3 Series,2019,23450,Semi-Auto,11629,Diesel,145,62.8,2.0 4746, 1 Series,2019,19950,Semi-Auto,10102,Diesel,145,48.7,2.0 4747, 3 Series,2019,21450,Semi-Auto,14009,Diesel,150,55.4,2.0 4748, 3 Series,2019,21450,Semi-Auto,11706,Diesel,150,55.4,2.0 4750, X5,2019,48950,Semi-Auto,8043,Diesel,150,37.7,3.0 4751, X4,2019,34950,Semi-Auto,5763,Diesel,150,42.8,2.0 4752, 2 Series,2015,17541,Semi-Auto,26035,Petrol,165,44.1,2.0 4753, X5,2013,26651,Automatic,47301,Diesel,205,45.6,3.0 4754, 3 Series,2016,18191,Semi-Auto,38882,Hybrid,0,134.5,2.0 4755, 3 Series,2019,39020,Semi-Auto,7537,Diesel,145,43.5,3.0 4756, 1 Series,2017,14951,Semi-Auto,18852,Diesel,150,70.6,2.0 4757, 3 Series,2018,22021,Semi-Auto,26821,Diesel,150,64.2,2.0 4758, 5 Series,2019,36951,Semi-Auto,7218,Petrol,150,46.3,2.0 4759, 2 Series,2016,15950,Semi-Auto,43911,Diesel,145,55.4,2.0 4760, 8 Series,2019,56950,Semi-Auto,9731,Diesel,145,39.8,3.0 4761, X3,2016,21950,Semi-Auto,45142,Diesel,200,47.9,3.0 4762, 2 Series,2019,20950,Manual,100,Petrol,145,52.3,1.5 4763, 2 Series,2020,22950,Manual,500,Petrol,145,42.8,1.5 4764, X1,2020,29950,Semi-Auto,35,Diesel,145,40.9,2.0 4765, 1 Series,2019,18950,Semi-Auto,9079,Diesel,145,47.9,1.5 4766, X5,2019,51950,Semi-Auto,101,Diesel,145,37.7,3.0 4767, X3,2019,31950,Semi-Auto,7721,Diesel,145,54.3,2.0 4768, X1,2019,26450,Semi-Auto,8643,Diesel,145,50.4,2.0 4769, X5,2019,57950,Semi-Auto,4897,Diesel,145,33.6,3.0 4770, 4 Series,2018,24401,Semi-Auto,9049,Diesel,150,58.9,2.0 4771, X2,2019,36451,Semi-Auto,2975,Petrol,150,34.0,2.0 4772, M4,2017,34221,Semi-Auto,63660,Petrol,150,32.5,3.0 4773, X2,2019,34910,Semi-Auto,4577,Petrol,145,39.2,2.0 4774, X1,2019,32940,Semi-Auto,5642,Petrol,145,37.7,2.0 4775, X6,2019,68300,Semi-Auto,3145,Petrol,145,26.4,3.0 4776, M5,2019,89900,Semi-Auto,2269,Petrol,145,24.1,4.4 4777, 3 Series,2018,16950,Manual,19041,Diesel,145,67.3,2.0 4778, 3 Series,2020,28450,Semi-Auto,101,Diesel,145,50.4,2.0 4779, 2 Series,2019,20450,Manual,101,Petrol,145,42.2,1.5 4780, 1 Series,2016,13950,Semi-Auto,54205,Diesel,20,68.9,1.5 4781, X3,2019,32509,Semi-Auto,9000,Diesel,145,54.3,2.0 4782, X3,2019,37963,Semi-Auto,4786,Diesel,145,48.7,3.0 4783, X2,2019,24543,Semi-Auto,3412,Petrol,145,38.7,2.0 4784, 4 Series,2016,13949,Automatic,70976,Diesel,30,65.7,2.0 4785, 1 Series,2017,16770,Automatic,22848,Petrol,145,47.9,2.0 4786, X1,2016,18727,Automatic,16318,Petrol,160,44.8,2.0 4787, 5 Series,2015,10400,Manual,73227,Diesel,125,61.4,2.0 4788, 1 Series,2015,9890,Automatic,58283,Diesel,30,64.2,2.0 4789, 4 Series,2014,15050,Semi-Auto,26973,Diesel,125,60.1,2.0 4790, 4 Series,2019,34360,Semi-Auto,3986,Diesel,145,51.4,3.0 4791, 1 Series,2019,33150,Semi-Auto,4902,Diesel,145,51.4,2.0 4792, 6 Series,2019,41980,Semi-Auto,4028,Diesel,145,42.2,2.0 4793, 2 Series,2019,31410,Semi-Auto,3104,Petrol,145,47.9,2.0 4794, X2,2019,29542,Semi-Auto,5564,Petrol,145,39.8,2.0 4795, 3 Series,2017,18741,Semi-Auto,27012,Diesel,30,64.2,2.0 4796, X6,2016,30572,Semi-Auto,40246,Diesel,200,44.8,3.0 4797, X7,2019,65520,Automatic,8574,Diesel,145,33.6,3.0 4798, X1,2015,10912,Semi-Auto,82455,Diesel,160,52.3,2.0 4799, 4 Series,2019,27125,Semi-Auto,5046,Diesel,145,65.7,2.0 4800, X3,2019,36203,Semi-Auto,3425,Diesel,145,48.7,3.0 4801, X3,2018,32340,Semi-Auto,10488,Diesel,145,48.7,3.0 4802, 4 Series,2014,18712,Automatic,43116,Diesel,160,50.4,3.0 4803, 6 Series,2015,20172,Semi-Auto,37175,Diesel,160,49.6,3.0 4804, 7 Series,2019,45640,Automatic,7689,Diesel,145,44.1,3.0 4805, 8 Series,2019,64103,Semi-Auto,1897,Diesel,145,39.8,3.0 4806, X6,2015,23162,Semi-Auto,55912,Diesel,200,47.1,3.0 4807, X1,2017,23032,Semi-Auto,19340,Diesel,145,57.6,2.0 4808, 3 Series,2017,23481,Semi-Auto,33093,Diesel,145,51.4,3.0 4809, 1 Series,2019,25362,Semi-Auto,9503,Petrol,145,39.8,3.0 4810, 2 Series,2019,25660,Automatic,8092,Petrol,145,39.8,3.0 4811, X1,2016,18211,Semi-Auto,52889,Diesel,125,57.6,2.0 4812, 1 Series,2016,12121,Manual,24516,Diesel,20,72.4,1.5 4813, 2 Series,2015,9852,Manual,43555,Petrol,30,57.6,1.5 4814, 3 Series,2013,12822,Manual,9276,Petrol,160,44.8,2.0 4815, 3 Series,2019,25842,Semi-Auto,4238,Diesel,145,52.3,2.0 4816, X1,2018,22632,Semi-Auto,14852,Diesel,145,60.1,2.0 4817, 1 Series,2017,15381,Semi-Auto,74652,Diesel,125,60.1,2.0 4818, 1 Series,2015,13391,Semi-Auto,49394,Diesel,30,64.2,2.0 4819, 4 Series,2019,27591,Manual,5303,Diesel,150,62.8,2.0 4820, 2 Series,2019,24196,Semi-Auto,2421,Petrol,145,47.9,2.0 4821, 5 Series,2017,27152,Semi-Auto,66068,Diesel,145,51.4,3.0 4822, 4 Series,2018,21302,Automatic,17768,Diesel,145,65.7,2.0 4823, 4 Series,2017,20062,Semi-Auto,46674,Diesel,145,55.4,3.0 4824, 3 Series,2017,20498,Semi-Auto,22271,Hybrid,0,134.5,2.0 4825, 1 Series,2016,11110,Manual,25073,Diesel,0,83.1,1.5 4826, 1 Series,2017,15870,Semi-Auto,28163,Petrol,150,54.3,1.5 4827, 1 Series,2017,14490,Manual,22137,Diesel,145,70.6,1.5 4828, 2 Series,2017,12999,Manual,42378,Petrol,125,53.3,1.5 4829, X3,2013,15341,Semi-Auto,68729,Diesel,165,50.4,2.0 4830, 3 Series,2015,14051,Semi-Auto,68704,Diesel,125,58.9,2.0 4831, 4 Series,2016,19216,Automatic,25798,Petrol,160,44.1,2.0 4832, 5 Series,2018,33066,Automatic,5595,Petrol,145,29.1,3.0 4833, M4,2019,58662,Automatic,3395,Petrol,145,34.0,3.0 4834, 5 Series,2017,21946,Automatic,38410,Petrol,145,48.7,2.0 4835, 4 Series,2015,17786,Automatic,45550,Petrol,260,37.2,3.0 4836, 4 Series,2019,22766,Automatic,5767,Petrol,145,48.7,2.0 4837, X5,2019,48836,Automatic,4553,Petrol,145,27.2,3.0 4838, 3 Series,2013,12262,Semi-Auto,44125,Diesel,30,62.8,2.0 4839, 1 Series,2013,10372,Manual,33940,Diesel,30,64.2,2.0 4840, X1,2019,22442,Manual,3991,Petrol,145,51.4,1.5 4841, 1 Series,2017,15672,Manual,20327,Petrol,125,52.3,1.5 4842, X3,2019,31683,Semi-Auto,8524,Petrol,145,30.4,2.0 4843, X3,2019,31903,Semi-Auto,7161,Petrol,145,30.4,2.0 4844, 3 Series,2016,12990,Semi-Auto,48788,Diesel,0,74.3,2.0 4845, X1,2018,19300,Manual,15209,Diesel,145,52.3,2.0 4846, 1 Series,2016,15480,Automatic,30900,Petrol,145,47.9,2.0 4847, 2 Series,2016,12368,Manual,30243,Petrol,125,50.4,1.5 4848, 2 Series,2016,15490,Semi-Auto,36924,Diesel,30,62.8,2.0 4849, 1 Series,2017,12942,Manual,36274,Diesel,145,70.6,1.5 4850, X5,2014,27498,Automatic,28056,Petrol,555,26.9,4.4 4851, 1 Series,2015,11933,Semi-Auto,19168,Petrol,145,49.6,1.6 4852, 4 Series,2018,19991,Semi-Auto,8018,Petrol,145,44.1,2.0 4853, 2 Series,2019,15630,Manual,20592,Petrol,145,40.9,1.5 4854, 2 Series,2017,20740,Manual,9885,Petrol,145,36.2,3.0 4855, 5 Series,2017,22899,Semi-Auto,33046,Diesel,145,64.2,2.0 4856, X1,2016,15500,Manual,37000,Diesel,125,60.1,2.0 4857, X1,2016,16700,Semi-Auto,44000,Diesel,145,55.4,2.0 4858, 2 Series,2017,14200,Semi-Auto,14500,Diesel,20,68.9,2.0 4859, X1,2017,18890,Semi-Auto,21113,Diesel,145,65.7,2.0 4860, 1 Series,2017,13500,Manual,34500,Diesel,150,65.7,2.0 4861, 1 Series,2017,15500,Manual,11500,Petrol,150,52.3,1.5 4862, X1,2016,18650,Automatic,29330,Diesel,145,55.4,2.0 4863, 5 Series,2019,31580,Automatic,8612,Petrol,145,48.7,2.0 4864, 3 Series,2019,27710,Semi-Auto,9545,Diesel,145,52.3,2.0 4865, 1 Series,2017,11799,Manual,10683,Petrol,30,56.5,1.5 4867, 1 Series,2017,15000,Semi-Auto,26488,Diesel,20,67.3,2.0 4868, 3 Series,2020,33995,Semi-Auto,10,Diesel,145,53.3,2.0 4869, 3 Series,2019,29990,Semi-Auto,5604,Petrol,145,40.9,2.0 4870, X1,2017,18995,Semi-Auto,32300,Diesel,150,57.6,2.0 4871, 2 Series,2017,12500,Manual,48839,Diesel,145,74.3,1.5 4872, 2 Series,2018,17000,Manual,19566,Diesel,145,54.3,2.0 4873, 5 Series,2017,30995,Semi-Auto,24000,Diesel,145,51.4,3.0 4874, 2 Series,2016,13699,Automatic,24849,Diesel,30,64.2,2.0 4875, 1 Series,2016,10690,Manual,41718,Petrol,125,53.3,1.5 4876, 1 Series,2015,8390,Manual,55825,Petrol,150,50.4,1.6 4877, 1 Series,2013,9444,Semi-Auto,44000,Petrol,145,48.7,1.6 4878, 3 Series,2018,20860,Semi-Auto,15388,Diesel,145,56.5,3.0 4879, 3 Series,2013,12077,Semi-Auto,21388,Diesel,30,62.8,2.0 4880, X1,2018,24081,Semi-Auto,13245,Diesel,150,60.1,2.0 4881, 5 Series,2019,37921,Semi-Auto,6311,Petrol,150,46.3,2.0 4882, 4 Series,2014,16612,Semi-Auto,48474,Diesel,160,52.3,3.0 4883, X5,2018,37692,Automatic,24786,Diesel,145,47.1,3.0 4884, X5,2019,48892,Automatic,7666,Diesel,145,37.7,3.0 4885, 1 Series,2019,30240,Automatic,7791,Petrol,145,34.5,2.0 4886, X4,2019,38980,Semi-Auto,6982,Diesel,145,40.9,3.0 4887, X3,2019,43740,Automatic,3280,Diesel,145,54.3,2.0 4888, 4 Series,2019,23270,Automatic,5865,Petrol,145,48.7,2.0 4889, 3 Series,2019,40406,Automatic,1683,Petrol,145,34.9,3.0 4890, 1 Series,2019,27190,Manual,5382,Diesel,145,53.3,2.0 4891, 1 Series,2019,31200,Automatic,9516,Diesel,145,48.7,2.0 4892, 2 Series,2019,29960,Semi-Auto,5720,Diesel,145,49.6,2.0 4893, 2 Series,2017,18100,Semi-Auto,20319,Petrol,145,48.7,2.0 4894, X1,2016,17500,Manual,26122,Diesel,20,68.9,2.0 4895, 3 Series,2018,18690,Semi-Auto,29748,Diesel,145,60.1,2.0 4896, 3 Series,2018,18500,Semi-Auto,26937,Diesel,145,64.2,2.0 4897, 3 Series,2013,8992,Manual,63969,Diesel,30,62.8,2.0 4898, 2 Series,2019,19949,Manual,14219,Diesel,145,51.4,2.0 4899, X1,2018,16500,Manual,27041,Diesel,145,68.9,2.0 4900, 3 Series,2019,27990,Manual,4465,Diesel,145,54.3,2.0 4901, 3 Series,2019,29995,Semi-Auto,1425,Petrol,145,42.2,2.0 4902, X1,2019,25995,Manual,3150,Petrol,145,52.3,1.5 4903, 3 Series,2019,27990,Semi-Auto,5600,Diesel,145,52.3,2.0 4904, 5 Series,2019,29990,Semi-Auto,3117,Petrol,145,50.4,2.0 4905, 2 Series,2020,30995,Semi-Auto,1501,Diesel,145,48.7,2.0 4906, 4 Series,2020,37995,Semi-Auto,1501,Diesel,145,58.9,2.0 4907, 5 Series,2020,33995,Semi-Auto,1501,Hybrid,145,49.6,2.0 4908, X1,2017,19790,Semi-Auto,22579,Petrol,160,44.8,2.0 4909, 5 Series,2015,19990,Semi-Auto,31567,Diesel,160,50.4,3.0 4910, 5 Series,2016,15990,Semi-Auto,21698,Diesel,30,62.8,2.0 4911, X5,2019,51990,Semi-Auto,7300,Diesel,150,33.6,3.0 4912, M3,2018,43990,Semi-Auto,12879,Petrol,150,34.0,3.0 4913, 3 Series,2019,31490,Manual,4503,Diesel,150,54.3,2.0 4914, 3 Series,2016,18990,Semi-Auto,45090,Diesel,165,51.4,3.0 4915, 1 Series,2018,17490,Semi-Auto,26232,Petrol,150,54.3,1.5 4916, 3 Series,2018,17490,Manual,12311,Diesel,150,62.8,2.0 4917, 2 Series,2020,26995,Semi-Auto,10,Petrol,145,42.2,1.5 4918, X1,2016,17990,Semi-Auto,25216,Diesel,125,60.1,2.0 4919, 1 Series,2019,26990,Semi-Auto,3660,Petrol,145,40.4,1.5 4920, 3 Series,2019,28990,Semi-Auto,6,Petrol,145,42.2,2.0 4921, 3 Series,2019,28990,Semi-Auto,7322,Diesel,145,52.3,2.0 4922, X3,2019,33990,Semi-Auto,38,Diesel,145,54.3,2.0 4923, 4 Series,2019,27990,Semi-Auto,6051,Diesel,145,65.7,2.0 4924, X5,2019,56990,Semi-Auto,8637,Diesel,145,33.6,3.0 4925, 1 Series,2019,24990,Manual,5846,Petrol,145,41.5,1.5 4926, X5,2019,54990,Semi-Auto,7153,Diesel,150,33.6,3.0 4927, 2 Series,2016,17240,Semi-Auto,25653,Diesel,125,60.1,2.0 4928, 1 Series,2019,24990,Semi-Auto,6377,Petrol,150,39.8,3.0 4929, 4 Series,2014,12990,Semi-Auto,52135,Diesel,125,61.4,2.0 4930, X5,2019,51990,Semi-Auto,5849,Diesel,150,37.7,3.0 4931, X5,2019,51990,Semi-Auto,5850,Diesel,150,37.7,3.0 4932, 3 Series,2019,29990,Semi-Auto,4210,Petrol,150,40.9,2.0 4933, 2 Series,2018,20360,Automatic,8370,Petrol,145,36.2,2.0 4934, 2 Series,2015,10860,Manual,46904,Diesel,20,74.3,1.5 4935, 1 Series,2017,14610,Semi-Auto,30939,Diesel,30,65.7,2.0 4936, 4 Series,2015,21491,Automatic,24421,Petrol,260,36.7,3.0 4937, X5,2014,23950,Automatic,67711,Diesel,200,47.1,3.0 4938, 1 Series,2015,11550,Semi-Auto,19886,Diesel,20,67.3,2.0 4939, 3 Series,2017,14000,Manual,22000,Petrol,150,52.3,1.5 4940, 4 Series,2016,19595,Semi-Auto,9647,Petrol,160,44.1,2.0 4941, 3 Series,2019,25595,Semi-Auto,2400,Petrol,150,41.5,3.0 4942, 3 Series,2014,17999,Semi-Auto,26311,Hybrid,135,47.9,3.0 4943, 4 Series,2018,23990,Semi-Auto,19438,Diesel,145,55.4,3.0 4944, 1 Series,2019,15990,Manual,5161,Petrol,145,53.3,1.5 4945, 2 Series,2020,32995,Semi-Auto,1501,Petrol,145,36.2,2.0 4946, 2 Series,2019,19990,Manual,3303,Petrol,145,42.8,1.5 4947, 3 Series,2019,32990,Semi-Auto,4758,Diesel,145,49.6,2.0 4948, X5,2019,50990,Semi-Auto,5925,Diesel,145,37.7,3.0 4949, 2 Series,2018,19990,Semi-Auto,21691,Petrol,145,47.9,2.0 4950, 3 Series,2018,24490,Semi-Auto,21110,Diesel,145,51.4,3.0 4951, 2 Series,2017,17990,Semi-Auto,8693,Petrol,145,50.4,2.0 4952, 3 Series,2019,30990,Semi-Auto,3165,Diesel,145,52.3,2.0 4953, 3 Series,2016,19995,Semi-Auto,34110,Diesel,160,51.4,3.0 4954, 2 Series,2017,15995,Semi-Auto,29006,Diesel,150,68.9,2.0 4955, 1 Series,2017,12995,Manual,25656,Diesel,150,72.4,1.5 4956, X5,2017,33500,Automatic,54000,Diesel,150,42.8,3.0 4957, 1 Series,2019,23500,Semi-Auto,11128,Petrol,150,39.8,3.0 4958, 4 Series,2017,19250,Semi-Auto,14500,Petrol,145,48.7,2.0 4959, 3 Series,2019,36990,Semi-Auto,4314,Petrol,145,40.4,2.0 4960, X3,2019,35990,Semi-Auto,15,Diesel,145,54.3,2.0 4961, 8 Series,2019,59990,Semi-Auto,5441,Diesel,145,40.4,3.0 4962, X3,2019,35995,Semi-Auto,4421,Diesel,145,54.3,2.0 4963, X4,2019,37995,Semi-Auto,5809,Diesel,145,42.8,2.0 4964, 3 Series,2019,28990,Semi-Auto,3811,Diesel,145,52.3,2.0 4965, 2 Series,2020,29995,Semi-Auto,1501,Petrol,145,47.9,2.0 4966, X2,2020,29995,Semi-Auto,1501,Petrol,145,38.7,2.0 4967, X1,2020,34995,Semi-Auto,1501,Diesel,145,50.4,2.0 4968, X1,2020,30995,Semi-Auto,1501,Diesel,145,50.4,2.0 4969, 4 Series,2019,25990,Semi-Auto,2028,Diesel,145,65.7,2.0 4970, X3,2020,42995,Semi-Auto,1501,Petrol,145,34.5,3.0 4971, 3 Series,2020,32995,Semi-Auto,1501,Diesel,145,50.4,2.0 4972, X1,2016,15995,Semi-Auto,50131,Diesel,125,60.1,2.0 4973, 1 Series,2016,12490,Manual,15210,Petrol,125,53.3,1.5 4974, 3 Series,2016,15750,Manual,34484,Diesel,125,58.9,2.0 4975, 3 Series,2016,19490,Semi-Auto,14302,Diesel,145,56.5,3.0 4976, X1,2017,18990,Semi-Auto,34697,Diesel,145,55.4,2.0 4977, X5,2016,30990,Automatic,39469,Hybrid,0,85.6,2.0 4978, 2 Series,2018,25990,Semi-Auto,3960,Petrol,145,32.5,3.0 4979, 3 Series,2020,35995,Semi-Auto,1501,Diesel,145,47.9,3.0 4980, 3 Series,2017,22950,Semi-Auto,28600,Diesel,145,51.4,3.0 4981, 2 Series,2019,21995,Semi-Auto,3682,Petrol,145,47.9,2.0 4982, X2,2020,28995,Semi-Auto,10,Diesel,145,58.9,2.0 4983, 4 Series,2017,17990,Manual,29926,Diesel,30,62.8,2.0 4984, X6,2019,52990,Semi-Auto,3086,Diesel,145,34.9,3.0 4985, 1 Series,2018,15990,Manual,13856,Petrol,145,53.3,1.5 4986, 2 Series,2019,24990,Semi-Auto,4155,Diesel,145,65.7,2.0 4987, X3,2019,35995,Automatic,3800,Diesel,145,54.3,2.0 4988, 1 Series,2019,18999,Manual,5623,Petrol,145,52.3,1.5 4989, X2,2018,22500,Semi-Auto,34697,Diesel,145,58.9,2.0 4990, 2 Series,2019,23222,Semi-Auto,5290,Petrol,145,48.7,1.5 4991, 3 Series,2019,33999,Semi-Auto,8680,Hybrid,135,8.8,2.0 4992, 5 Series,2019,34555,Semi-Auto,4592,Hybrid,135,156.9,2.0 4993, 3 Series,2019,27500,Semi-Auto,9262,Diesel,145,52.3,2.0 4994, 3 Series,2019,25444,Automatic,13033,Petrol,145,42.2,2.0 4995, 3 Series,2019,23250,Semi-Auto,11659,Diesel,145,55.4,2.0 4996, 3 Series,2019,23250,Semi-Auto,12045,Diesel,145,55.4,2.0 4997, 4 Series,2019,36999,Automatic,3500,Diesel,145,50.4,3.0 4998, 4 Series,2019,35999,Automatic,1500,Diesel,145,60.1,2.0 4999, 5 Series,2019,31950,Automatic,3500,Petrol,145,50.4,2.0 5000, 2 Series,2020,31820,Manual,1500,Petrol,145,43.5,1.5 5001, 1 Series,2020,27995,Manual,2500,Diesel,145,53.3,2.0 5002, 3 Series,2019,35995,Automatic,17188,Diesel,145,49.6,2.0 5003, 5 Series,2019,31950,Automatic,3500,Petrol,145,50.4,2.0 5004, X1,2019,31995,Automatic,9500,Diesel,145,52.3,2.0 5005, X1,2019,26999,Manual,4500,Petrol,145,49.6,1.5 5006, 3 Series,2019,28444,Automatic,5500,Petrol,145,42.2,2.0 5007, 2 Series,2019,19555,Manual,5500,Petrol,145,40.9,1.5 5008, 5 Series,2019,32499,Automatic,9222,Diesel,145,65.7,2.0 5009, 4 Series,2019,29999,Automatic,3403,Diesel,145,60.1,2.0 5010, 3 Series,2020,36650,Automatic,4500,Diesel,145,49.6,2.0 5011, 1 Series,2019,19999,Semi-Auto,5963,Petrol,145,54.3,1.5 5012, 1 Series,2019,18995,Semi-Auto,5354,Diesel,145,68.9,1.5 5013, 1 Series,2019,18995,Semi-Auto,5268,Diesel,145,68.9,1.5 5014, 2 Series,2019,22499,Manual,6772,Diesel,145,60.1,2.0 5015, 1 Series,2019,18495,Manual,7752,Diesel,145,70.6,1.5 5016, 3 Series,2019,27995,Semi-Auto,2317,Diesel,150,52.3,2.0 5017, 3 Series,2019,33444,Automatic,3725,Diesel,145,50.4,2.0 5018, 3 Series,2020,36995,Automatic,4500,Diesel,145,50.4,2.0 5019, 4 Series,2019,27995,Automatic,6514,Diesel,145,55.4,3.0 5020, 7 Series,2020,54995,Semi-Auto,1501,Diesel,145,42.2,3.0 5021, X3,2019,34995,Semi-Auto,8829,Petrol,145,30.4,2.0 5022, X3,2020,33995,Semi-Auto,1501,Diesel,145,54.3,2.0 5023, 4 Series,2019,26444,Automatic,6500,Diesel,145,65.7,2.0 5024, 4 Series,2019,29995,Automatic,4837,Diesel,145,65.7,2.0 5025, 4 Series,2019,30995,Automatic,4500,Diesel,145,58.9,2.0 5026, 4 Series,2019,29995,Automatic,4500,Diesel,145,58.9,2.0 5027, 3 Series,2019,30888,Automatic,6500,Diesel,145,52.3,2.0 5028, 4 Series,2019,27999,Automatic,5891,Diesel,145,65.7,2.0 5029, 2 Series,2019,25995,Automatic,6500,Diesel,145,46.3,2.0 5030, X1,2019,30995,Semi-Auto,1501,Diesel,145,52.3,2.0 5031, X4,2019,41995,Semi-Auto,1501,Diesel,145,40.9,3.0 5032, 3 Series,2017,19450,Semi-Auto,24701,Diesel,30,62.8,2.0 5033, 1 Series,2017,12450,Manual,43757,Diesel,150,72.4,1.5 5034, 3 Series,2019,29990,Manual,16,Diesel,145,54.3,2.0 5035, X3,2019,33990,Semi-Auto,5434,Diesel,145,54.3,2.0 5036, 4 Series,2020,36990,Semi-Auto,99,Diesel,145,47.9,3.0 5037, 3 Series,2017,19995,Semi-Auto,28243,Diesel,145,60.1,2.0 5038, 4 Series,2019,29999,Automatic,8914,Diesel,145,65.7,2.0 5039, 5 Series,2019,36995,Automatic,6814,Diesel,145,60.1,3.0 5040, 2 Series,2017,17990,Semi-Auto,15630,Diesel,145,62.8,2.0 5041, X5,2014,23000,Automatic,42310,Diesel,200,45.6,3.0 5042, X5,2017,30400,Automatic,24860,Diesel,145,47.1,3.0 5043, 4 Series,2019,35950,Automatic,9250,Diesel,145,50.4,3.0 5044, X3,2019,33450,Automatic,9641,Petrol,145,30.4,2.0 5045, 5 Series,2019,34995,Automatic,14500,Diesel,145,60.1,3.0 5046, 3 Series,2019,31995,Automatic,13978,Diesel,145,52.3,2.0 5047, 4 Series,2019,30995,Automatic,1500,Petrol,145,48.7,2.0 5048, X3,2019,38995,Automatic,6527,Diesel,145,54.3,2.0 5049, 1 Series,2016,12400,Manual,49315,Diesel,20,70.6,1.5 5050, 3 Series,2016,15740,Semi-Auto,39900,Diesel,30,62.8,2.0 5051, 5 Series,2016,12990,Manual,54820,Diesel,125,60.1,2.0 5052, 3 Series,2013,11900,Semi-Auto,17332,Petrol,165,47.1,2.0 5053, 3 Series,2019,31995,Semi-Auto,4995,Diesel,145,52.3,2.0 5054, 5 Series,2019,34990,Semi-Auto,1800,Petrol,145,47.9,2.0 5055, X5,2019,56990,Semi-Auto,8000,Diesel,145,33.6,3.0 5056, 4 Series,2019,25995,Semi-Auto,3144,Petrol,145,45.6,2.0 5057, 3 Series,2019,33690,Semi-Auto,8718,Diesel,145,47.9,3.0 5058, 3 Series,2019,35490,Semi-Auto,10130,Diesel,145,44.1,3.0 5059, 4 Series,2016,17995,Semi-Auto,36907,Diesel,30,65.7,2.0 5060, 4 Series,2016,18000,Semi-Auto,36660,Diesel,125,58.9,2.0 5061, 5 Series,2016,16890,Semi-Auto,22600,Diesel,30,62.8,2.0 5062, 3 Series,2019,23990,Semi-Auto,7015,Diesel,145,53.3,2.0 5063, X5,2017,36995,Automatic,42000,Diesel,145,42.8,3.0 5064, 3 Series,2017,17950,Manual,18799,Diesel,145,64.2,2.0 5065, 1 Series,2019,19999,Semi-Auto,16106,Diesel,145,67.3,2.0 5066, 4 Series,2018,22000,Semi-Auto,12490,Diesel,145,52.3,3.0 5067, 4 Series,2016,16440,Semi-Auto,40340,Petrol,145,48.7,2.0 5068, X1,2017,17037,Automatic,19838,Diesel,30,65.7,2.0 5069, 3 Series,2014,12890,Semi-Auto,52106,Diesel,30,62.8,2.0 5070, 3 Series,2015,17190,Semi-Auto,51050,Diesel,200,49.6,3.0 5071, 3 Series,2015,15100,Semi-Auto,34500,Petrol,160,46.3,2.0 5072, 3 Series,2016,18257,Automatic,19060,Diesel,145,53.3,3.0 5073, 1 Series,2016,11000,Manual,38810,Petrol,125,53.3,1.5 5074, X1,2019,24449,Semi-Auto,5336,Diesel,145,60.1,2.0 5075, X2,2019,28499,Semi-Auto,8550,Diesel,145,48.7,2.0 5076, Z4,2019,32449,Semi-Auto,2485,Petrol,145,38.7,2.0 5077, X4,2019,34999,Semi-Auto,9829,Diesel,145,42.8,2.0 5078, X4,2019,41999,Semi-Auto,6449,Diesel,145,37.2,3.0 5079, 1 Series,2019,22999,Manual,3641,Diesel,145,58.9,1.5 5080, X5,2019,49999,Semi-Auto,5681,Diesel,145,37.7,3.0 5081, X3,2019,36999,Semi-Auto,4494,Diesel,145,48.7,3.0 5082, X3,2019,31999,Semi-Auto,6624,Diesel,145,54.3,2.0 5083, X2,2019,22999,Semi-Auto,7255,Petrol,145,41.5,1.5 5084, 6 Series,2019,39999,Semi-Auto,1125,Petrol,145,34.5,3.0 5085, 5 Series,2019,37999,Semi-Auto,3709,Diesel,145,51.4,3.0 5086, M4,2019,45999,Semi-Auto,2373,Petrol,145,34.0,3.0 5087, X4,2019,40999,Semi-Auto,8023,Petrol,145,26.9,3.0 5088, 1 Series,2019,25995,Manual,500,Petrol,145,41.5,1.5 5089, X3,2019,31990,Semi-Auto,7115,Diesel,145,54.3,2.0 5090, Z4,2019,33990,Semi-Auto,8810,Petrol,145,37.2,2.0 5091, X1,2019,27990,Semi-Auto,8521,Diesel,145,60.1,2.0 5092, X5,2019,47990,Semi-Auto,5311,Diesel,145,37.7,3.0 5093, X5,2019,46990,Semi-Auto,10565,Diesel,145,37.7,3.0 5094, X2,2019,34995,Automatic,8728,Petrol,145,34.0,2.0 5095, 1 Series,2019,20222,Automatic,7407,Petrol,145,47.9,2.0 5096, 2 Series,2019,20850,Automatic,7234,Hybrid,135,148.7,1.5 5097, 2 Series,2019,20850,Automatic,12070,Hybrid,135,148.7,1.5 5098, X4,2019,39995,Automatic,5505,Diesel,145,42.8,2.0 5099, 3 Series,2019,32995,Automatic,4500,Diesel,145,50.4,2.0 5100, 3 Series,2019,35450,Automatic,6500,Diesel,145,50.4,2.0 5101, 3 Series,2019,22495,Semi-Auto,8886,Diesel,145,67.3,2.0 5102, 1 Series,2019,25995,Manual,1309,Petrol,145,41.5,1.5 5103, 1 Series,2017,17495,Semi-Auto,27756,Petrol,145,54.3,1.5 5104, X3,2019,54995,Semi-Auto,4490,Petrol,145,24.8,3.0 5105, 3 Series,2016,16995,Semi-Auto,20756,Diesel,30,64.2,2.0 5106, 5 Series,2016,17450,Semi-Auto,41123,Diesel,125,60.1,2.0 5107, X2,2019,29999,Automatic,6695,Diesel,145,58.9,2.0 5108, 1 Series,2019,17444,Automatic,5500,Diesel,145,72.4,1.5 5109, 3 Series,2019,28995,Automatic,16367,Diesel,145,52.3,2.0 5110, 1 Series,2019,31950,Semi-Auto,8600,Petrol,145,34.5,2.0 5111, X5,2019,52995,Semi-Auto,10100,Diesel,145,33.6,3.0 5112, 3 Series,2018,21495,Semi-Auto,23000,Diesel,145,62.8,2.0 5113, 2 Series,2016,16950,Semi-Auto,47385,Petrol,160,47.1,2.0 5114, 1 Series,2019,22995,Semi-Auto,8332,Petrol,150,42.8,1.5 5115, 3 Series,2019,27888,Semi-Auto,10268,Diesel,150,52.3,2.0 5116, 3 Series,2019,26995,Semi-Auto,11355,Diesel,150,52.3,2.0 5117, 1 Series,2019,23995,Manual,6196,Petrol,150,41.5,1.5 5118, 3 Series,2019,28995,Automatic,8446,Diesel,145,52.3,2.0 5119, X1,2018,23450,Automatic,18487,Diesel,145,60.1,2.0 5120, 3 Series,2019,35995,Automatic,5500,Petrol,145,39.8,2.0 5121, 4 Series,2019,38995,Automatic,5500,Petrol,145,41.5,3.0 5122, 3 Series,2020,36995,Automatic,3500,Diesel,145,45.6,3.0 5123, X3,2020,37495,Automatic,4500,Diesel,145,54.3,2.0 5124, 2 Series,2018,23999,Semi-Auto,14258,Petrol,150,32.5,3.0 5125, 4 Series,2019,27950,Semi-Auto,8028,Diesel,150,53.3,3.0 5126, 5 Series,2020,32495,Semi-Auto,931,Hybrid,145,49.6,2.0 5127, X1,2020,30495,Semi-Auto,3530,Diesel,145,40.9,2.0 5128, 3 Series,2020,36999,Semi-Auto,5500,Diesel,145,45.6,3.0 5129, 1 Series,2017,16444,Semi-Auto,20848,Petrol,145,48.7,2.0 5130, X3,2019,56950,Semi-Auto,6597,Petrol,145,24.8,3.0 5131, X6,2018,38995,Semi-Auto,18212,Diesel,145,40.9,3.0 5132, 1 Series,2015,11750,Manual,10889,Diesel,0,78.5,1.5 5133, X6,2015,25000,Semi-Auto,26100,Diesel,205,45.6,3.0 5134, 3 Series,2018,20995,Semi-Auto,19252,Diesel,145,64.2,2.0 5135, X1,2017,20495,Semi-Auto,16665,Diesel,125,57.6,2.0 5136, 5 Series,2019,29995,Semi-Auto,9848,Petrol,150,48.7,2.0 5137, 5 Series,2019,29999,Semi-Auto,6737,Petrol,150,48.7,2.0 5138, 3 Series,2019,27888,Semi-Auto,10430,Diesel,150,52.3,2.0 5139, 4 Series,2016,15500,Semi-Auto,59461,Diesel,30,65.7,2.0 5140, X5,2020,63995,Automatic,5000,Hybrid,135,188.3,3.0 5141, X4,2020,44495,Automatic,5000,Diesel,145,40.9,3.0 5142, 3 Series,2017,19995,Semi-Auto,20766,Hybrid,0,134.5,2.0 5143, 4 Series,2018,21250,Automatic,14238,Diesel,145,65.7,2.0 5144, 2 Series,2019,26995,Automatic,2630,Diesel,145,49.6,2.0 5145, X2,2019,35999,Automatic,6026,Petrol,145,34.0,2.0 5146, 5 Series,2019,31444,Automatic,2404,Diesel,145,65.7,2.0 5147, 5 Series,2019,34999,Automatic,7195,Diesel,145,60.1,2.0 5148, 3 Series,2019,26995,Semi-Auto,10624,Petrol,150,42.2,2.0 5149, 5 Series,2019,25995,Semi-Auto,7554,Petrol,150,50.4,2.0 5150, 3 Series,2019,26995,Semi-Auto,12399,Diesel,150,52.3,2.0 5151, 3 Series,2019,26995,Semi-Auto,8021,Diesel,150,52.3,2.0 5152, 3 Series,2019,27888,Semi-Auto,10622,Diesel,150,52.3,2.0 5153, 3 Series,2019,24500,Semi-Auto,10125,Petrol,150,47.9,2.0 5154, 3 Series,2019,24995,Semi-Auto,7585,Petrol,150,47.9,2.0 5155, 3 Series,2020,32995,Automatic,4000,Diesel,145,50.4,2.0 5156, 1 Series,2020,26995,Automatic,1500,Diesel,145,51.4,2.0 5157, X3,2020,37999,Automatic,2789,Diesel,145,54.3,2.0 5158, X1,2020,32995,Automatic,1593,Diesel,145,50.4,2.0 5159, 5 Series,2019,26990,Automatic,7824,Petrol,145,50.4,2.0 5160, X5,2019,44995,Automatic,6495,Diesel,145,36.7,3.0 5161, 1 Series,2019,16500,Manual,5500,Diesel,145,72.4,1.5 5162, 3 Series,2019,28888,Automatic,9267,Diesel,145,52.3,2.0 5163, X7,2019,62995,Automatic,11055,Diesel,145,33.6,3.0 5164, 2 Series,2019,21950,Manual,5500,Petrol,145,42.2,1.5 5165, 4 Series,2019,29999,Automatic,1500,Petrol,145,45.6,2.0 5166, 1 Series,2019,20999,Semi-Auto,7351,Diesel,145,68.9,2.0 5167, 2 Series,2015,14950,Manual,46555,Diesel,125,60.1,2.0 5168, 3 Series,2019,23450,Semi-Auto,13713,Petrol,150,48.7,2.0 5169, 3 Series,2020,33995,Automatic,10,Diesel,145,50.4,2.0 5170, 3 Series,2020,42995,Automatic,7500,Petrol,145,33.6,3.0 5171, 1 Series,2020,34999,Automatic,197,Diesel,145,48.7,2.0 5172, Z4,2020,35995,Automatic,2500,Petrol,145,38.7,2.0 5173, 8 Series,2020,74995,Semi-Auto,4500,Diesel,145,26.7,3.0 5174, 7 Series,2020,53995,Semi-Auto,3500,Diesel,145,42.2,3.0 5175, X3,2013,15000,Semi-Auto,54150,Diesel,165,50.4,2.0 5177, 1 Series,2018,23750,Semi-Auto,11941,Petrol,145,39.8,3.0 5178, 1 Series,2018,14999,Manual,12955,Diesel,145,51.4,1.5 5179, 1 Series,2017,15850,Manual,39806,Diesel,145,62.8,2.0 5180, 2 Series,2019,19495,Automatic,8500,Diesel,145,54.3,1.5 5181, 3 Series,2016,17297,Automatic,59300,Diesel,200,49.6,3.0 5182, X4,2019,34500,Semi-Auto,15411,Diesel,150,40.9,3.0 5183, X5,2018,33990,Automatic,29150,Diesel,150,47.1,3.0 5184, X1,2016,17360,Semi-Auto,25710,Diesel,30,65.7,2.0 5185, 4 Series,2019,28999,Automatic,8182,Diesel,145,52.3,3.0 5186, X1,2017,21995,Manual,15900,Diesel,145,60.1,2.0 5187, 5 Series,2020,42995,Automatic,7500,Hybrid,135,156.9,2.0 5188, 1 Series,2017,21140,Semi-Auto,27150,Petrol,145,39.8,3.0 5189, 1 Series,2017,16270,Semi-Auto,46440,Petrol,145,47.9,2.0 5190, X1,2016,15270,Manual,55000,Diesel,125,58.9,2.0 5191, 1 Series,2016,19950,Semi-Auto,23210,Petrol,200,39.8,3.0 5192, X1,2017,18990,Semi-Auto,32420,Diesel,145,55.4,2.0 5193, 3 Series,2013,12330,Semi-Auto,10050,Petrol,160,47.1,2.0 5194, X4,2015,19660,Semi-Auto,52020,Diesel,145,54.3,2.0 5195, 1 Series,2016,15090,Semi-Auto,30480,Petrol,125,54.3,1.5 5196, 5 Series,2016,17160,Semi-Auto,15830,Diesel,30,62.8,2.0 5197, 4 Series,2017,16507,Automatic,26800,Diesel,30,65.7,2.0 5198, 3 Series,2014,12890,Semi-Auto,52106,Diesel,30,62.8,2.0 5199, 4 Series,2013,12220,Semi-Auto,73023,Diesel,125,57.6,3.0 5200, 3 Series,2017,15290,Semi-Auto,61610,Petrol,150,48.7,2.0 5201, 4 Series,2016,18430,Semi-Auto,22220,Diesel,30,65.7,2.0 5202, 3 Series,2015,11990,Manual,78053,Petrol,165,44.8,2.0 5203, 3 Series,2018,18495,Semi-Auto,26231,Diesel,145,64.2,2.0 5204, X1,2016,17567,Manual,23557,Diesel,125,58.9,2.0 5205, 2 Series,2015,16950,Automatic,33300,Petrol,260,37.2,3.0 5206, 1 Series,2016,14652,Manual,9461,Diesel,20,70.6,1.5 5207, 3 Series,2019,39950,Semi-Auto,1341,Diesel,150,43.5,3.0 5208, 1 Series,2013,11450,Manual,66621,Petrol,205,42.8,2.0 5209, 5 Series,2020,35995,Automatic,2500,Hybrid,145,62.8,2.0 5210, 4 Series,2020,32583,Automatic,2500,Petrol,145,48.7,2.0 5211, M2,2020,46995,Automatic,4500,Petrol,145,29.1,3.0 5212, 1 Series,2020,32495,Automatic,10,Diesel,145,48.7,2.0 5213, X2,2020,34999,Automatic,1217,Diesel,145,58.9,2.0 5214, X4,2020,40995,Automatic,10,Diesel,145,42.8,2.0 5215, X2,2020,37995,Automatic,2500,Petrol,145,34.0,2.0 5216, 3 Series,2014,12990,Semi-Auto,67617,Diesel,125,57.6,3.0 5217, 3 Series,2017,17540,Automatic,35630,Diesel,145,62.8,2.0 5218, 1 Series,2017,14600,Semi-Auto,37566,Diesel,150,67.3,2.0 5219, 2 Series,2017,13591,Manual,15001,Diesel,145,74.3,1.5 5220, X1,2016,15991,Manual,39917,Diesel,125,58.9,2.0 5221, X1,2016,17900,Semi-Auto,18713,Diesel,150,55.4,2.0 5222, 4 Series,2016,19950,Automatic,20600,Diesel,125,60.1,2.0 5223, 4 Series,2019,27450,Semi-Auto,6124,Petrol,150,45.6,2.0 5224, X5,2019,51950,Semi-Auto,13,Diesel,150,37.7,3.0 5225, 4 Series,2017,20450,Semi-Auto,26680,Petrol,150,45.6,2.0 5226, 3 Series,2018,16950,Semi-Auto,27641,Diesel,150,65.7,2.0 5227, 3 Series,2019,25450,Semi-Auto,9368,Diesel,150,52.3,2.0 5228, 3 Series,2017,19450,Semi-Auto,31508,Diesel,150,62.8,2.0 5229, 2 Series,2019,23450,Semi-Auto,8371,Petrol,150,48.7,1.5 5230, X5,2019,47950,Semi-Auto,6960,Diesel,150,37.7,3.0 5231, 7 Series,2019,42950,Semi-Auto,19870,Petrol,150,33.6,3.0 5232, 1 Series,2020,27495,Semi-Auto,1500,Diesel,145,51.4,2.0 5233, 3 Series,2020,39995,Semi-Auto,5302,Diesel,145,45.6,3.0 5234, 3 Series,2020,33495,Semi-Auto,4500,Diesel,145,48.7,2.0 5235, X1,2017,18950,Semi-Auto,40519,Diesel,125,57.6,2.0 5236, 2 Series,2018,19950,Semi-Auto,27312,Diesel,145,57.6,2.0 5237, 3 Series,2015,17450,Semi-Auto,55109,Diesel,160,51.4,3.0 5238, 1 Series,2015,13950,Manual,36916,Petrol,150,50.4,1.6 5239, 1 Series,2018,18450,Semi-Auto,14324,Diesel,150,49.6,2.0 5240, 5 Series,2020,31995,Semi-Auto,6000,Hybrid,145,60.1,2.0 5241, 3 Series,2020,34995,Semi-Auto,10,Diesel,145,49.6,2.0 5242, X2,2020,32495,Semi-Auto,1255,Diesel,145,58.9,2.0 5243, 5 Series,2020,34995,Semi-Auto,10,Hybrid,145,49.6,2.0 5244, 1 Series,2020,31495,Semi-Auto,1250,Diesel,145,48.7,2.0 5245, 3 Series,2020,33995,Semi-Auto,4500,Diesel,145,50.4,2.0 5246, 3 Series,2020,36495,Semi-Auto,789,Diesel,145,49.6,2.0 5247, 2 Series,2020,22950,Manual,14,Petrol,145,52.3,1.5 5248, 1 Series,2019,22950,Manual,2181,Diesel,145,72.4,1.5 5249, 2 Series,2020,25450,Semi-Auto,6,Diesel,145,49.6,2.0 5250, 4 Series,2020,35450,Semi-Auto,10,Diesel,145,47.9,3.0 5251, 5 Series,2020,29950,Semi-Auto,9,Hybrid,145,49.6,2.0 5252, 3 Series,2019,25450,Semi-Auto,11208,Diesel,145,52.3,2.0 5253, 5 Series,2019,30450,Semi-Auto,10191,Hybrid,135,156.9,2.0 5254, X3,2019,34450,Semi-Auto,5015,Diesel,145,54.3,2.0 5255, X2,2019,31950,Semi-Auto,6801,Diesel,145,58.9,2.0 5256, 2 Series,2019,20450,Semi-Auto,7404,Petrol,145,53.3,1.5 5257, 3 Series,2016,14950,Semi-Auto,51741,Diesel,30,62.8,2.0 5258, 1 Series,2018,13450,Manual,33113,Diesel,150,68.9,2.0 5259, 3 Series,2019,31450,Semi-Auto,4618,Diesel,150,52.3,2.0 5260, X4,2019,42450,Semi-Auto,10910,Diesel,150,42.8,2.0 5261, 4 Series,2019,25950,Semi-Auto,11259,Diesel,150,60.1,2.0 5262, X3,2015,20950,Semi-Auto,28416,Diesel,150,54.3,2.0 5263, 3 Series,2018,21450,Semi-Auto,16244,Petrol,150,48.7,2.0 5264, 5 Series,2019,38450,Automatic,14522,Diesel,145,62.8,2.0 5265, 4 Series,2019,30999,Semi-Auto,8701,Petrol,145,41.5,3.0 5266, X3,2019,39999,Semi-Auto,3769,Petrol,145,34.5,3.0 5267, X5,2019,52999,Semi-Auto,6297,Petrol,145,27.2,3.0 5268, 3 Series,2019,22950,Semi-Auto,6414,Diesel,145,62.8,2.0 5269, 2 Series,2019,23450,Semi-Auto,3564,Petrol,145,50.4,2.0 5270, X1,2016,16950,Semi-Auto,35900,Diesel,125,60.1,2.0 5271, M4,2017,33450,Semi-Auto,25777,Petrol,145,34.0,3.0 5272, 4 Series,2017,19950,Semi-Auto,18801,Diesel,30,65.7,2.0 5273, 4 Series,2017,18700,Semi-Auto,21950,Diesel,145,65.7,2.0 5274, 3 Series,2017,17150,Semi-Auto,35825,Diesel,145,62.8,2.0 5275, X1,2018,16470,Manual,27041,Diesel,150,68.9,2.0 5276, X2,2019,26499,Manual,2424,Diesel,145,49.6,2.0 5277, 3 Series,2019,27999,Semi-Auto,7035,Diesel,145,48.7,2.0 5278, 2 Series,2019,21999,Semi-Auto,9957,Diesel,145,49.6,2.0 5279, 6 Series,2019,31999,Semi-Auto,7994,Petrol,145,42.8,2.0 5280, 2 Series,2019,23999,Semi-Auto,6883,Petrol,145,47.9,2.0 5281, 5 Series,2019,39999,Semi-Auto,5877,Diesel,145,60.1,2.0 5282, X3,2019,36999,Automatic,1500,Diesel,145,54.3,2.0 5283, 5 Series,2019,38995,Automatic,6500,Hybrid,135,156.9,2.0 5284, X3,2019,36999,Automatic,7105,Diesel,145,54.3,2.0 5285, 4 Series,2019,32995,Manual,3500,Petrol,145,46.3,2.0 5286, 2 Series,2019,22950,Semi-Auto,8539,Petrol,145,50.4,1.5 5287, 3 Series,2014,12450,Manual,56523,Diesel,125,57.6,2.0 5288, X3,2016,22950,Semi-Auto,9214,Diesel,150,54.3,2.0 5289, 5 Series,2018,28950,Semi-Auto,15878,Diesel,150,53.3,3.0 5290, 2 Series,2015,15950,Manual,25652,Petrol,125,53.3,1.5 5291, 4 Series,2019,26950,Semi-Auto,3849,Diesel,145,60.1,2.0 5292, X2,2019,26450,Manual,3172,Diesel,145,55.4,2.0 5293, 4 Series,2019,26950,Semi-Auto,4842,Diesel,145,60.1,2.0 5294, X1,2020,26950,Manual,18,Petrol,145,49.6,1.5 5295, 4 Series,2019,26950,Semi-Auto,8812,Diesel,145,60.1,2.0 5296, Z4,2019,27450,Semi-Auto,7363,Petrol,145,38.2,2.0 5297, 5 Series,2019,31950,Semi-Auto,10776,Diesel,145,60.1,3.0 5298, 4 Series,2019,33495,Automatic,99,Petrol,145,48.7,2.0 5299, X3,2019,36995,Automatic,3500,Diesel,145,54.3,2.0 5300, X3,2019,34950,Automatic,5325,Diesel,145,54.3,2.0 5301, X3,2019,36950,Automatic,2500,Diesel,145,54.3,2.0 5302, X3,2019,35999,Automatic,7000,Diesel,145,54.3,2.0 5303, 4 Series,2019,34995,Automatic,3999,Petrol,145,41.5,3.0 5304, Z4,2015,16450,Semi-Auto,22583,Petrol,200,41.5,2.0 5305, 2 Series,2019,20950,Manual,4434,Diesel,145,64.2,2.0 5306, 1 Series,2018,19950,Semi-Auto,9271,Petrol,145,47.9,2.0 5307, 1 Series,2016,12950,Manual,52647,Diesel,30,65.7,2.0 5308, X4,2016,21950,Semi-Auto,50944,Diesel,205,47.9,3.0 5309, 5 Series,2017,20950,Semi-Auto,37034,Diesel,150,65.7,2.0 5310, 5 Series,2020,29450,Semi-Auto,10,Petrol,145,36.2,2.0 5311, 3 Series,2020,22950,Manual,11,Diesel,145,58.9,2.0 5312, 2 Series,2020,23450,Semi-Auto,8,Diesel,145,67.3,2.0 5313, 3 Series,2020,29950,Semi-Auto,20,Petrol,145,41.5,2.0 5314, 2 Series,2020,23950,Semi-Auto,11,Petrol,145,50.4,1.5 5315, X3,2019,33450,Semi-Auto,2839,Diesel,145,54.3,2.0 5316, 5 Series,2019,30450,Semi-Auto,4885,Diesel,145,60.1,2.0 5317, 4 Series,2019,26450,Semi-Auto,3989,Petrol,145,45.6,2.0 5318, X5,2019,52950,Semi-Auto,3309,Petrol,145,27.2,3.0 5319, 1 Series,2019,22950,Semi-Auto,4811,Diesel,145,60.1,2.0 5320, 4 Series,2020,26950,Semi-Auto,10,Diesel,145,65.7,2.0 5321, 3 Series,2016,17450,Semi-Auto,16413,Diesel,30,62.8,2.0 5322, 3 Series,2019,31450,Semi-Auto,3000,Petrol,145,42.2,2.0 5323, 1 Series,2018,22950,Semi-Auto,14537,Diesel,150,60.1,2.0 5324, 2 Series,2019,24950,Semi-Auto,4534,Diesel,145,46.3,2.0 5325, X5,2017,31950,Automatic,27932,Diesel,145,47.1,3.0 5326, 1 Series,2019,18950,Semi-Auto,7990,Diesel,145,68.9,1.5 5327, X7,2019,73950,Semi-Auto,9121,Diesel,145,31.4,3.0 5328, 2 Series,2019,20450,Semi-Auto,3344,Diesel,145,49.6,2.0 5329, 4 Series,2019,26450,Semi-Auto,3376,Diesel,145,60.1,2.0 5330, 3 Series,2019,23950,Semi-Auto,5445,Diesel,145,62.8,2.0 5331, X6,2015,36950,Semi-Auto,22032,Petrol,570,25.4,4.4 5332, 3 Series,2019,25950,Semi-Auto,2344,Diesel,145,62.8,2.0 5333, 2 Series,2019,21950,Semi-Auto,9275,Petrol,145,40.9,1.5 5334, 2 Series,2019,18450,Manual,7293,Diesel,145,54.3,2.0 5335, 1 Series,2019,21950,Manual,101,Diesel,145,70.6,1.5 5336, 1 Series,2019,18950,Manual,6675,Diesel,145,70.6,1.5 5337, X4,2019,46450,Semi-Auto,9374,Diesel,145,37.2,3.0 5338, 1 Series,2019,22871,Manual,3000,Petrol,145,41.5,1.5 5339, X3,2019,31450,Semi-Auto,9053,Diesel,145,54.3,2.0 5340, X2,2019,26950,Semi-Auto,11386,Diesel,145,58.9,2.0 5341, 2 Series,2020,34950,Semi-Auto,1107,Diesel,145,62.8,2.0 5342, 2 Series,2020,32450,Semi-Auto,1118,Diesel,145,51.4,2.0 5343, 6 Series,2020,44950,Semi-Auto,1237,Diesel,145,44.1,2.0 5344, 2 Series,2019,22950,Manual,9688,Diesel,145,65.7,2.0 5345, 2 Series,2019,21950,Semi-Auto,7423,Diesel,145,65.7,2.0 5346, 2 Series,2019,24950,Semi-Auto,13,Diesel,145,62.8,2.0 5347, 2 Series,2019,25450,Semi-Auto,13,Diesel,145,62.8,2.0 5348, X3,2019,34950,Semi-Auto,14,Diesel,145,54.3,2.0 5349, 4 Series,2019,30950,Semi-Auto,6212,Petrol,145,44.8,2.0 5350, 2 Series,2019,20950,Semi-Auto,6418,Petrol,145,47.9,2.0 5351, 1 Series,2019,18450,Semi-Auto,8644,Diesel,145,47.9,1.5 5352, 2 Series,2019,21950,Manual,10,Diesel,145,64.2,2.0 5353, X2,2019,25450,Semi-Auto,9467,Diesel,145,50.4,2.0 5354, 3 Series,2019,28450,Semi-Auto,13998,Petrol,145,42.2,2.0 5355, 3 Series,2019,28450,Semi-Auto,14850,Diesel,145,48.7,2.0 5356, 1 Series,2019,19950,Manual,10,Petrol,145,53.3,1.5 5357, 3 Series,2019,33450,Semi-Auto,5004,Diesel,145,49.6,2.0 5358, Z4,2019,32450,Semi-Auto,9955,Petrol,145,38.7,2.0 5359, X2,2019,27450,Semi-Auto,14368,Diesel,145,58.9,2.0 5360, 3 Series,2019,33134,Semi-Auto,5,Diesel,145,52.3,2.0 5361, 1 Series,2018,20450,Semi-Auto,14602,Diesel,145,60.1,2.0 5362, M4,2016,99950,Automatic,771,Petrol,300,33.2,3.0 5363, X4,2017,23000,Semi-Auto,18441,Diesel,145,54.3,2.0 5364, 5 Series,2019,33495,Semi-Auto,4913,Diesel,145,51.4,3.0 5365, X5,2019,45000,Semi-Auto,9450,Diesel,145,37.7,3.0 5366, 1 Series,2015,16950,Semi-Auto,38178,Petrol,240,37.7,3.0 5367, 3 Series,2019,25950,Semi-Auto,3655,Diesel,150,52.3,2.0 5368, 2 Series,2016,12000,Manual,37847,Petrol,125,53.3,1.5 5369, 3 Series,2019,29500,Semi-Auto,5000,Diesel,145,48.7,2.0 5370, X4,2017,25000,Semi-Auto,18150,Diesel,200,47.9,3.0 5371, 5 Series,2017,24995,Semi-Auto,50195,Petrol,150,39.2,3.0 5372, 2 Series,2017,14000,Semi-Auto,19826,Petrol,150,55.4,1.5 5373, 2 Series,2016,14495,Semi-Auto,39326,Petrol,125,51.4,1.5 5374, 5 Series,2015,14789,Semi-Auto,44684,Diesel,125,60.1,2.0 5375, 3 Series,2015,17990,Automatic,27369,Diesel,160,51.4,3.0 5376, 2 Series,2018,19950,Semi-Auto,10206,Petrol,145,50.4,1.5 5377, 3 Series,2016,16950,Semi-Auto,28059,Diesel,30,62.8,2.0 5378, 2 Series,2017,17950,Semi-Auto,10816,Petrol,145,51.4,1.5 5379, 2 Series,2019,30450,Semi-Auto,20,Diesel,145,62.8,2.0 5380, X3,2019,35450,Semi-Auto,8891,Diesel,145,54.3,2.0 5381, 4 Series,2019,37450,Semi-Auto,10,Diesel,145,60.1,2.0 5382, X2,2020,36950,Semi-Auto,10,Diesel,145,50.4,2.0 5383, 5 Series,2019,31450,Semi-Auto,500,Diesel,145,62.8,2.0 5384, X1,2019,23450,Manual,10,Petrol,145,51.4,1.5 5385, 1 Series,2019,23450,Manual,10,Diesel,145,70.6,1.5 5386, 3 Series,2018,21450,Semi-Auto,5184,Diesel,145,64.2,2.0 5387, 2 Series,2020,29950,Semi-Auto,10,Diesel,145,48.7,2.0 5388, 1 Series,2020,26495,Semi-Auto,10,Petrol,145,42.8,1.5 5389, 3 Series,2020,39950,Semi-Auto,10,Diesel,145,48.7,2.0 5390, X2,2019,25450,Semi-Auto,5652,Diesel,145,47.9,2.0 5391, 2 Series,2020,26000,Semi-Auto,1501,Petrol,145,42.2,1.5 5392, 1 Series,2019,23000,Manual,2361,Petrol,145,41.5,1.5 5393, 3 Series,2019,31000,Semi-Auto,2974,Diesel,145,49.6,2.0 5394, 4 Series,2019,27000,Semi-Auto,100,Diesel,145,65.7,2.0 5395, 3 Series,2019,31000,Semi-Auto,100,Diesel,145,52.3,2.0 5396, 2 Series,2019,21000,Manual,50,Petrol,145,52.3,1.5 5397, 1 Series,2019,25000,Semi-Auto,1705,Diesel,145,51.4,2.0 5398, 1 Series,2019,15950,Manual,8004,Petrol,150,53.3,1.5 5399, 3 Series,2019,30950,Semi-Auto,3724,Diesel,145,52.3,2.0 5400, X5,2019,50950,Semi-Auto,4322,Diesel,150,37.7,3.0 5401, 2 Series,2019,21950,Semi-Auto,7211,Petrol,150,47.9,2.0 5402, 1 Series,2019,25950,Semi-Auto,6581,Diesel,145,67.3,2.0 5403, 3 Series,2019,29450,Semi-Auto,5392,Diesel,145,52.3,2.0 5404, X2,2020,31000,Semi-Auto,1121,Petrol,145,34.0,2.0 5405, Z4,2020,31000,Semi-Auto,1595,Petrol,145,38.7,2.0 5406, 1 Series,2019,18000,Manual,6097,Petrol,145,53.3,1.5 5407, 3 Series,2019,27000,Semi-Auto,4814,Diesel,145,52.3,2.0 5408, 3 Series,2020,34000,Semi-Auto,1595,Diesel,145,50.4,2.0 5409, X6,2020,55995,Semi-Auto,3291,Diesel,145,33.2,3.0 5410, 2 Series,2016,14995,Manual,13250,Diesel,20,68.9,2.0 5411, 1 Series,2013,8995,Manual,56361,Diesel,30,62.8,2.0 5412, X3,2015,17495,Semi-Auto,38013,Diesel,150,54.3,2.0 5413, 1 Series,2019,33000,Semi-Auto,2250,Petrol,150,34.5,2.0 5414, X3,2017,19000,Semi-Auto,33316,Diesel,150,54.3,2.0 5415, X3,2018,29500,Semi-Auto,28885,Diesel,150,48.7,3.0 5416, M3,2015,31000,Semi-Auto,16517,Petrol,305,34.0,3.0 5417, 2 Series,2016,15995,Semi-Auto,24735,Diesel,30,62.8,2.0 5418, 3 Series,2020,32000,Semi-Auto,1798,Diesel,145,52.3,2.0 5419, 3 Series,2018,22995,Semi-Auto,8259,Petrol,145,48.7,2.0 5420, 3 Series,2014,11650,Semi-Auto,89096,Diesel,145,55.4,2.0 5421, 1 Series,2016,10540,Manual,69981,Petrol,125,53.3,1.5 5422, 1 Series,2017,11030,Manual,35321,Diesel,145,83.1,1.5 5423, 3 Series,2014,12360,Semi-Auto,68469,Diesel,125,57.6,2.0 5424, 1 Series,2017,13700,Automatic,20574,Diesel,145,70.6,2.0 5425, X3,2017,19391,Semi-Auto,58044,Diesel,145,54.3,2.0 5426, 7 Series,2017,38950,Semi-Auto,7500,Petrol,150,35.3,4.4 5427, M4,2019,46950,Semi-Auto,4500,Petrol,150,32.5,3.0 5428, 1 Series,2019,18000,Manual,4696,Petrol,145,53.3,1.5 5429, 3 Series,2020,29999,Semi-Auto,9,Diesel,145,50.4,2.0 5430, 6 Series,2020,33999,Semi-Auto,11,Petrol,145,42.8,2.0 5431, 3 Series,2020,25999,Manual,4,Diesel,145,54.3,2.0 5432, 4 Series,2020,39225,Semi-Auto,10,Petrol,145,48.7,2.0 5433, 4 Series,2020,48155,Semi-Auto,10,Petrol,145,44.8,2.0 5434, X4,2019,45000,Semi-Auto,7815,Petrol,145,26.9,3.0 5435, 2 Series,2016,17450,Semi-Auto,31473,Diesel,145,55.4,2.0 5436, X3,2020,36000,Semi-Auto,3116,Diesel,145,54.3,2.0 5437, 2 Series,2020,28000,Semi-Auto,1501,Diesel,145,65.7,2.0 5438, 1 Series,2020,27000,Semi-Auto,1501,Diesel,145,51.4,2.0 5439, M2,2020,46000,Semi-Auto,1501,Petrol,145,29.1,3.0 5440, X1,2019,29500,Semi-Auto,6000,Diesel,145,60.1,2.0 5441, X1,2019,23000,Manual,1701,Petrol,145,51.4,1.5 5442, X1,2017,19995,Semi-Auto,20570,Diesel,145,55.4,2.0 5443, 3 Series,2019,28000,Manual,6899,Diesel,145,54.3,2.0 5444, 3 Series,2019,29000,Semi-Auto,8555,Petrol,145,40.9,2.0 5445, X1,2019,25000,Semi-Auto,8650,Diesel,145,60.1,2.0 5446, X5,2019,49000,Semi-Auto,6170,Diesel,145,37.7,3.0 5447, X1,2014,11000,Semi-Auto,50924,Diesel,160,52.3,2.0 5448, X7,2020,72000,Semi-Auto,3116,Diesel,145,31.4,3.0 5449, 3 Series,2018,19995,Semi-Auto,21657,Diesel,145,62.8,2.0 5450, 5 Series,2019,41070,Automatic,10,Diesel,145,65.7,2.0 5451, 2 Series,2019,33440,Automatic,10,Diesel,145,64.2,2.0 5452, 4 Series,2019,34995,Automatic,10,Petrol,145,45.6,2.0 5453, 4 Series,2019,34995,Automatic,10,Petrol,145,45.6,2.0 5454, 5 Series,2019,29888,Automatic,14139,Diesel,145,55.4,2.0 5455, X3,2019,42795,Semi-Auto,999,Diesel,145,48.7,3.0 5456, X5,2019,51995,Semi-Auto,11,Diesel,145,37.7,3.0 5457, 3 Series,2020,27999,Semi-Auto,6,Petrol,145,42.2,2.0 5458, X6,2020,58999,Semi-Auto,3,Petrol,145,26.4,3.0 5459, 2 Series,2016,13995,Semi-Auto,42569,Diesel,20,68.9,1.5 5460, 5 Series,2018,29995,Semi-Auto,39000,Diesel,150,51.4,3.0 5461, X6,2019,55000,Semi-Auto,2455,Diesel,145,34.9,3.0 5462, 4 Series,2020,48155,Semi-Auto,10,Petrol,145,44.8,2.0 5463, 1 Series,2017,14000,Manual,32380,Diesel,30,65.7,2.0 5464, X1,2019,23000,Manual,1571,Petrol,145,51.4,1.5 5465, 1 Series,2017,14500,Manual,13681,Diesel,145,65.7,2.0 5466, 2 Series,2015,13000,Semi-Auto,47555,Diesel,30,65.7,2.0 5467, 5 Series,2016,13995,Semi-Auto,45850,Diesel,20,68.9,2.0 5468, 2 Series,2017,15450,Manual,20663,Petrol,30,55.4,1.5 5469, 2 Series,2020,28950,Semi-Auto,10,Petrol,145,40.9,1.5 5470, 3 Series,2020,39950,Semi-Auto,10,Diesel,145,48.7,2.0 5471, X3,2019,41450,Semi-Auto,5425,Diesel,145,36.7,3.0 5472, 1 Series,2019,23500,Semi-Auto,3000,Petrol,145,40.4,1.5 5473, X3,2019,35564,Semi-Auto,642,Diesel,145,54.3,2.0 5474, 3 Series,2018,25450,Semi-Auto,16735,Diesel,145,51.4,3.0 5475, X1,2014,10950,Semi-Auto,52900,Diesel,160,52.3,2.0 5476, Z4,2019,31488,Automatic,3644,Petrol,145,38.7,2.0 5477, 1 Series,2019,16888,Automatic,11747,Diesel,145,72.4,1.5 5478, 5 Series,2019,39995,Automatic,10,Hybrid,135,156.9,2.0 5479, 4 Series,2019,33995,Automatic,10,Diesel,145,60.1,2.0 5480, 4 Series,2019,32995,Automatic,10,Petrol,145,48.7,2.0 5481, 4 Series,2019,39995,Automatic,10,Diesel,145,60.1,2.0 5482, 2 Series,2019,22995,Manual,10,Petrol,145,42.8,1.5 5483, 2 Series,2019,26972,Manual,10,Petrol,145,52.3,1.5 5484, X5,2019,46490,Semi-Auto,13015,Diesel,145,37.7,3.0 5485, 3 Series,2019,27495,Manual,1841,Diesel,145,54.3,2.0 5486, 4 Series,2019,34995,Automatic,10,Petrol,145,48.7,2.0 5487, 4 Series,2019,39995,Automatic,10,Diesel,145,50.4,3.0 5488, 1 Series,2019,16888,Automatic,8503,Diesel,145,72.4,1.5 5489, X1,2017,16995,Manual,19980,Diesel,20,68.9,2.0 5490, 1 Series,2016,18995,Semi-Auto,24075,Petrol,235,37.7,3.0 5491, 1 Series,2017,13995,Semi-Auto,42430,Diesel,145,70.6,2.0 5492, X3,2019,36990,Semi-Auto,5527,Diesel,145,48.7,3.0 5493, 3 Series,2014,13995,Semi-Auto,67319,Diesel,30,62.8,2.0 5494, X3,2019,36990,Semi-Auto,5104,Diesel,145,54.3,2.0 5495, X2,2019,27990,Semi-Auto,8592,Diesel,145,58.9,2.0 5496, 3 Series,2019,39995,Automatic,999,Petrol,145,34.9,3.0 5497, X1,2020,21999,Manual,18,Petrol,145,51.4,1.5 5498, 1 Series,2019,23295,Semi-Auto,4694,Diesel,150,57.7,1.5 5499, X5,2016,28995,Automatic,46085,Diesel,200,47.1,3.0 5500, 8 Series,2020,62995,Semi-Auto,11,Petrol,145,31.7,3.0 5501, 3 Series,2013,12995,Manual,37333,Diesel,150,55.4,2.0 5503, 1 Series,2016,13995,Semi-Auto,41397,Diesel,30,65.7,2.0 5504, M2,2020,42999,Semi-Auto,15,Petrol,150,29.1,3.0 5505, 3 Series,2017,20995,Semi-Auto,20400,Hybrid,140,134.5,2.0 5506, 4 Series,2018,20995,Semi-Auto,14972,Petrol,150,45.6,2.0 5507, 4 Series,2019,25488,Automatic,5627,Petrol,145,45.6,2.0 5508, M4,2019,47995,Automatic,999,Petrol,145,34.0,3.0 5509, 3 Series,2019,34995,Automatic,5873,Diesel,145,50.4,2.0 5510, 4 Series,2019,29995,Automatic,999,Diesel,145,53.3,3.0 5511, M2,2019,46995,Automatic,999,Petrol,145,29.1,3.0 5512, 1 Series,2019,27888,Automatic,999,Diesel,145,51.4,2.0 5513, 4 Series,2019,30450,Automatic,10638,Petrol,145,39.2,3.0 5514, X5,2019,44888,Automatic,12082,Diesel,145,37.7,3.0 5515, 3 Series,2019,33995,Semi-Auto,7974,Hybrid,135,8.8,2.0 5516, 3 Series,2016,19495,Semi-Auto,29125,Diesel,150,56.5,3.0 5517, 3 Series,2019,31995,Automatic,999,Petrol,145,42.2,2.0 5518, X3,2017,18995,Semi-Auto,60000,Diesel,150,54.3,2.0 5519, 1 Series,2017,19995,Manual,26574,Petrol,150,46.3,2.0 5520, 3 Series,2015,16995,Semi-Auto,67000,Diesel,200,49.6,3.0 5521, 1 Series,2017,23000,Semi-Auto,13783,Petrol,150,39.8,3.0 5522, 4 Series,2019,34590,Automatic,999,Petrol,145,45.6,2.0 5523, 1 Series,2019,19888,Manual,999,Diesel,145,72.4,1.5 5524, 3 Series,2016,18888,Automatic,17749,Diesel,145,56.5,3.0 5525, 1 Series,2017,15995,Manual,15992,Diesel,30,65.7,2.0 5526, 5 Series,2020,40995,Semi-Auto,2712,Hybrid,145,55.4,2.0 5527, 2 Series,2019,22995,Manual,999,Petrol,145,42.2,1.5 5528, X1,2019,27995,Automatic,999,Petrol,145,35.3,2.0 5529, 3 Series,2019,30888,Manual,999,Diesel,145,54.3,2.0 5530, 5 Series,2019,30995,Automatic,999,Diesel,145,65.7,2.0 5531, 3 Series,2019,33888,Automatic,999,Diesel,145,50.4,2.0 5532, 4 Series,2019,39891,Automatic,5806,Diesel,145,51.4,3.0 5533, 1 Series,2019,26991,Manual,3250,Petrol,145,41.5,1.5 5534, X6,2019,58990,Semi-Auto,3371,Diesel,145,34.9,3.0 5535, 5 Series,2019,31780,Semi-Auto,13384,Diesel,145,60.1,3.0 5536, 3 Series,2019,30761,Semi-Auto,3465,Diesel,150,52.3,2.0 5537, Z4,2014,3076,Manual,31074,Petrol,205,41.5,2.0 5538, 2 Series,2019,19350,Automatic,10500,Diesel,145,51.4,2.0 5539, X3,2018,29222,Semi-Auto,9406,Diesel,145,54.3,2.0 5540, 3 Series,2019,29754,Semi-Auto,8853,Diesel,145,52.3,2.0 5541, X5,2019,47990,Semi-Auto,7275,Diesel,145,37.7,3.0 5542, 1 Series,2017,21712,Automatic,25500,Petrol,145,39.8,3.0 5543, 2 Series,2019,23113,Semi-Auto,8039,Petrol,145,47.9,2.0 5544, 1 Series,2017,13831,Manual,20112,Petrol,150,53.3,1.5 5545, 1 Series,2017,20081,Semi-Auto,32000,Petrol,200,39.8,3.0 5546, 1 Series,2017,14995,Manual,16366,Diesel,150,65.7,2.0 5547, 3 Series,2019,21995,Semi-Auto,18000,Diesel,145,62.8,2.0 5548, 3 Series,2020,34995,Semi-Auto,11,Diesel,145,49.6,2.0 5549, 3 Series,2020,38555,Semi-Auto,11,Petrol,145,34.9,3.0 5550, X3,2019,35495,Semi-Auto,6156,Diesel,145,48.7,3.0 5551, 3 Series,2020,41555,Semi-Auto,9,Petrol,145,33.6,3.0 5552, X5,2019,46982,Semi-Auto,9820,Diesel,145,37.7,3.0 5553, 2 Series,2020,36771,Semi-Auto,485,Petrol,145,36.2,2.0 5554, 4 Series,2014,14941,Semi-Auto,49460,Petrol,165,44.1,2.0 5555, 3 Series,2014,12331,Semi-Auto,41000,Diesel,30,62.8,2.0 5556, X1,2019,25680,Automatic,1768,Diesel,145,65.7,2.0 5557, Z4,2019,31600,Automatic,2200,Petrol,145,37.2,2.0 5558, X1,2017,17861,Semi-Auto,20932,Diesel,30,65.7,2.0 5559, 2 Series,2018,16932,Semi-Auto,16132,Diesel,150,64.2,2.0 5560, X3,2019,34454,Semi-Auto,10032,Diesel,145,54.3,2.0 5561, 1 Series,2019,31791,Semi-Auto,6000,Petrol,150,34.5,2.0 5562, 2 Series,2018,24461,Semi-Auto,5190,Petrol,150,32.5,3.0 5563, X2,2019,36981,Semi-Auto,7197,Petrol,150,34.0,2.0 5564, 5 Series,2019,28370,Semi-Auto,6251,Petrol,145,50.4,2.0 5565, 3 Series,2019,32050,Automatic,4700,Diesel,145,52.3,2.0 5566, 1 Series,2019,30900,Automatic,5345,Petrol,145,34.5,2.0 5567, 3 Series,2019,41490,Automatic,4830,Diesel,145,43.5,3.0 5568, X3,2019,56322,Semi-Auto,4620,Petrol,145,24.8,3.0 5569, M4,2019,49010,Automatic,837,Petrol,145,34.0,3.0 5570, X5,2020,62991,Semi-Auto,123,Diesel,145,37.7,3.0 5571, 3 Series,2020,38991,Semi-Auto,132,Diesel,145,52.3,2.0 5572, X1,2020,36991,Semi-Auto,800,Diesel,145,60.1,2.0 5573, 6 Series,2020,44991,Semi-Auto,123,Diesel,145,42.2,2.0 5574, 3 Series,2015,13960,Automatic,33330,Diesel,125,60.1,2.0 5575, X3,2017,19950,Automatic,49100,Diesel,145,54.3,2.0 5576, 1 Series,2017,13720,Manual,9617,Petrol,150,53.3,1.5 5577, X2,2020,39991,Semi-Auto,700,Petrol,145,34.0,2.0 5578, 6 Series,2017,32023,Semi-Auto,3546,Diesel,145,48.7,3.0 5579, 5 Series,2018,36162,Semi-Auto,9270,Petrol,145,39.2,3.0 5580, X1,2019,26020,Automatic,3197,Diesel,145,65.7,2.0 5581, 4 Series,2019,29920,Semi-Auto,5732,Diesel,145,60.1,2.0 5582, 4 Series,2019,27970,Semi-Auto,7383,Petrol,145,48.7,2.0 5583, 1 Series,2015,11295,Automatic,27054,Diesel,20,72.4,1.5 5584, X5,2017,40162,Automatic,10914,Diesel,145,42.8,3.0 5585, X1,2018,22512,Semi-Auto,14100,Diesel,145,60.1,2.0 5586, Z4,2020,39991,Semi-Auto,202,Petrol,145,37.2,2.0 5587, 8 Series,2020,69991,Semi-Auto,419,Petrol,145,33.2,3.0 5588, 8 Series,2020,66991,Semi-Auto,123,Petrol,145,33.2,3.0 5589, X2,2019,23633,Manual,8100,Diesel,145,53.3,2.0 5590, 2 Series,2019,23872,Semi-Auto,1105,Diesel,145,52.3,2.0 5591, 2 Series,2019,23242,Manual,10,Petrol,145,52.3,1.5 5592, 2 Series,2019,22753,Semi-Auto,8020,Diesel,145,65.7,2.0 5593, 2 Series,2019,23722,Semi-Auto,123,Diesel,145,49.6,2.0 5594, 3 Series,2019,29822,Semi-Auto,1020,Diesel,145,52.3,2.0 5595, 1 Series,2019,29450,Semi-Auto,3743,Petrol,145,34.5,2.0 5596, 1 Series,2019,20172,Semi-Auto,5500,Petrol,145,54.3,1.5 5597, 3 Series,2013,14671,Semi-Auto,27604,Petrol,200,43.5,2.0 5598, M5,2018,61792,Automatic,5856,Petrol,145,26.9,4.4 5599, 2 Series,2017,18490,Semi-Auto,14440,Diesel,145,64.2,2.0 5600, X3,2019,32950,Semi-Auto,4953,Petrol,145,30.4,2.0 5601, 3 Series,2016,15290,Semi-Auto,42328,Diesel,30,62.8,2.0 5602, X3,2016,15495,Manual,60813,Diesel,160,52.3,2.0 5603, X1,2016,17450,Automatic,43475,Diesel,125,57.6,2.0 5604, X1,2017,18995,Semi-Auto,26249,Petrol,160,44.8,2.0 5605, 1 Series,2018,15495,Manual,7950,Petrol,145,37.7,1.5 5606, 4 Series,2017,19995,Semi-Auto,21888,Diesel,145,55.4,3.0 5607, X1,2017,19495,Semi-Auto,23397,Diesel,125,57.6,2.0 5608, X1,2016,18995,Semi-Auto,17604,Diesel,125,60.1,2.0 5609, 2 Series,2016,14995,Semi-Auto,56010,Diesel,125,57.6,2.0 5610, 3 Series,2019,21991,Semi-Auto,12245,Petrol,145,47.9,2.0 5611, 5 Series,2018,25995,Semi-Auto,15255,Hybrid,135,156.9,2.0 5612, 1 Series,2017,14650,Manual,12616,Diesel,30,65.7,2.0 5613, X1,2017,19540,Automatic,34240,Diesel,125,57.6,2.0 5614, 2 Series,2016,16110,Semi-Auto,28280,Petrol,125,53.3,1.5 5615, 3 Series,2016,14504,Manual,35210,Diesel,30,64.2,2.0 5616, 3 Series,2016,13987,Manual,22030,Petrol,150,49.6,1.5 5617, 1 Series,2016,14652,Manual,9461,Diesel,20,70.6,1.5 5618, 3 Series,2016,17640,Semi-Auto,28590,Diesel,145,56.5,3.0 5619, 5 Series,2017,22490,Semi-Auto,36549,Diesel,30,65.7,2.0 5621, X3,2016,19990,Semi-Auto,34325,Diesel,145,54.3,2.0 5622, 5 Series,2017,21790,Automatic,27744,Diesel,145,60.1,2.0 5623, 2 Series,2019,21990,Automatic,8351,Hybrid,135,148.7,1.5 5624, X5,2019,52990,Automatic,10,Diesel,145,37.7,3.0 5625, 2 Series,2019,22450,Automatic,11275,Hybrid,135,148.7,1.5 5626, 2 Series,2019,19490,Automatic,5809,Diesel,145,51.4,2.0 5627, 1 Series,2019,22890,Semi-Auto,1581,Diesel,145,74.3,2.0 5628, 1 Series,2019,21990,Semi-Auto,1540,Diesel,145,78.5,1.5 5629, X2,2020,31990,Semi-Auto,5,Petrol,145,39.8,2.0 5630, 2 Series,2016,12950,Manual,36633,Diesel,20,74.3,1.5 5631, X2,2018,25490,Semi-Auto,10597,Diesel,145,58.9,2.0 5632, 4 Series,2019,24888,Manual,8129,Petrol,145,46.3,2.0 5633, X4,2020,46995,Semi-Auto,999,Diesel,145,37.2,3.0 5634, X5,2018,34995,Automatic,26107,Hybrid,135,85.6,2.0 5635, 2 Series,2016,16990,Semi-Auto,27589,Diesel,30,62.8,2.0 5636, 3 Series,2019,31990,Automatic,9850,Diesel,145,52.3,2.0 5637, 3 Series,2019,34990,Automatic,7250,Diesel,145,49.6,2.0 5638, 2 Series,2019,25950,Automatic,5000,Diesel,145,48.7,2.0 5639, 3 Series,2019,31995,Automatic,7693,Diesel,145,52.3,2.0 5640, X1,2016,14995,Manual,30000,Diesel,20,68.9,2.0 5641, X1,2019,28383,Manual,999,Diesel,145,68.9,2.0 5642, X6,2019,42888,Automatic,10231,Diesel,145,44.8,3.0 5643, 4 Series,2019,30888,Automatic,3309,Diesel,145,60.1,2.0 5644, 1 Series,2018,22995,Semi-Auto,12537,Petrol,145,39.8,3.0 5645, Z4,2019,43995,Automatic,4401,Petrol,145,33.2,3.0 5646, 5 Series,2014,14790,Semi-Auto,40715,Diesel,30,62.8,2.0 5647, 3 Series,2017,15790,Manual,35238,Diesel,30,64.2,2.0 5648, X1,2017,19490,Automatic,19090,Diesel,145,65.7,2.0 5649, 2 Series,2017,21890,Semi-Auto,25223,Petrol,200,39.8,3.0 5650, 7 Series,2017,33990,Semi-Auto,28998,Petrol,300,35.3,4.4 5651, 3 Series,2019,29890,Automatic,5211,Diesel,145,52.3,2.0 5652, 3 Series,2019,31990,Automatic,5,Petrol,145,42.2,2.0 5653, 2 Series,2020,28995,Semi-Auto,5,Diesel,145,67.3,2.0 5654, 5 Series,2017,22490,Semi-Auto,26002,Diesel,145,68.9,2.0 5655, 2 Series,2020,28490,Semi-Auto,5,Petrol,145,50.4,2.0 5656, 1 Series,2020,32990,Semi-Auto,6870,Diesel,145,48.7,2.0 5657, X1,2020,28990,Semi-Auto,1981,Petrol,145,46.3,1.5 5658, 4 Series,2019,31990,Automatic,7800,Petrol,145,44.8,2.0 5659, 2 Series,2019,29990,Automatic,6300,Hybrid,135,113.0,1.5 5660, X2,2019,34490,Automatic,5730,Petrol,145,34.0,2.0 5661, X1,2017,19990,Semi-Auto,32000,Diesel,125,57.6,2.0 5662, 3 Series,2018,21990,Semi-Auto,8426,Petrol,145,48.7,2.0 5663, 4 Series,2018,21990,Semi-Auto,20611,Diesel,145,60.1,2.0 5664, 3 Series,2019,30950,Semi-Auto,7586,Petrol,145,41.5,2.0 5665, X3,2020,45991,Semi-Auto,120,Diesel,150,48.7,3.0 5666, X2,2019,36981,Semi-Auto,4497,Petrol,150,34.0,2.0 5667, 3 Series,2014,14882,Semi-Auto,63820,Diesel,165,49.6,3.0 5668, 3 Series,2019,35990,Automatic,6393,Diesel,145,52.3,2.0 5669, 3 Series,2019,29990,Automatic,7337,Diesel,145,52.3,2.0 5670, 1 Series,2019,33990,Automatic,9599,Petrol,145,34.5,2.0 5671, 3 Series,2019,32990,Automatic,9892,Diesel,145,48.7,2.0 5672, 1 Series,2019,31990,Automatic,4920,Petrol,145,34.5,2.0 5673, 3 Series,2019,39390,Automatic,8945,Diesel,145,43.5,3.0 5674, 4 Series,2019,30990,Automatic,9897,Diesel,145,53.3,3.0 5675, 4 Series,2020,26990,Semi-Auto,7,Petrol,145,48.7,2.0 5676, 3 Series,2020,34990,Semi-Auto,4100,Petrol,145,41.5,2.0 5677, 1 Series,2017,16790,Manual,15468,Petrol,145,46.3,2.0 5678, 3 Series,2020,36990,Semi-Auto,2475,Petrol,145,40.4,2.0 5679, X5,2017,34990,Automatic,27044,Diesel,145,47.1,3.0 5680, 1 Series,2020,32995,Semi-Auto,5,Diesel,145,48.7,2.0 5681, 3 Series,2014,13441,Manual,38000,Diesel,30,61.4,2.0 5682, 3 Series,2014,14522,Semi-Auto,67000,Diesel,125,58.9,2.0 5683, 2 Series,2016,13522,Manual,53207,Diesel,20,68.9,1.5 5684, X3,2016,20931,Semi-Auto,38489,Diesel,145,54.3,2.0 5685, 2 Series,2019,19870,Manual,123,Petrol,145,42.8,1.5 5686, X3,2019,34882,Semi-Auto,6000,Petrol,145,30.4,2.0 5687, 2 Series,2017,14690,Semi-Auto,24997,Diesel,20,68.9,2.0 5688, 1 Series,2015,10690,Manual,61676,Diesel,20,70.6,2.0 5689, 3 Series,2019,33990,Semi-Auto,9598,Diesel,150,47.9,3.0 5690, 1 Series,2019,22890,Manual,5463,Petrol,150,41.5,1.5 5691, 1 Series,2019,22890,Manual,5842,Petrol,150,41.5,1.5 5692, 1 Series,2019,22890,Manual,11506,Petrol,150,41.5,1.5 5693, X5,2019,51990,Semi-Auto,9607,Petrol,150,27.2,3.0 5694, X1,2019,27490,Semi-Auto,5742,Petrol,150,48.7,2.0 5695, X3,2019,38950,Semi-Auto,3290,Diesel,150,54.3,2.0 5696, 1 Series,2019,22500,Manual,7781,Petrol,150,41.5,1.5 5697, 3 Series,2019,42995,Automatic,1606,Petrol,145,34.9,3.0 5698, 5 Series,2020,30995,Semi-Auto,999,Hybrid,145,49.6,2.0 5699, X3,2020,35995,Semi-Auto,4373,Diesel,145,54.3,2.0 5700, 4 Series,2020,26750,Semi-Auto,2986,Diesel,150,65.7,2.0 5701, 2 Series,2020,27500,Semi-Auto,1086,Petrol,150,42.2,1.5 5702, X1,2019,26000,Semi-Auto,2400,Diesel,150,60.1,2.0 5703, 1 Series,2019,20750,Manual,4619,Petrol,150,44.1,1.5 5704, 3 Series,2019,33250,Semi-Auto,8496,Diesel,145,47.9,3.0 5705, 2 Series,2020,19500,Automatic,5746,Petrol,150,42.2,1.5 5706, 1 Series,2016,14250,Manual,18372,Petrol,125,52.3,1.5 5707, X3,2019,36500,Semi-Auto,7503,Petrol,150,34.5,3.0 5708, 3 Series,2015,12999,Semi-Auto,45191,Diesel,125,58.9,2.0 5709, 1 Series,2017,13888,Manual,40014,Diesel,20,70.6,1.5 5710, 3 Series,2019,32888,Automatic,13136,Petrol,145,42.2,2.0 5711, 5 Series,2019,34888,Automatic,948,Diesel,145,55.4,2.0 5712, 1 Series,2019,28888,Automatic,999,Diesel,145,48.7,2.0 5713, X6,2020,69995,Semi-Auto,999,Diesel,145,34.9,3.0 5714, 3 Series,2019,29888,Manual,2454,Diesel,145,54.3,2.0 5715, 4 Series,2019,29888,Manual,999,Petrol,145,46.3,2.0 5716, 2 Series,2016,11495,Manual,26883,Petrol,125,52.3,1.5 5717, 6 Series,2016,22990,Semi-Auto,21654,Diesel,200,49.6,3.0 5718, 1 Series,2016,11725,Manual,32000,Diesel,20,72.4,1.5 5719, X1,2017,21500,Automatic,25100,Diesel,145,57.6,2.0 5720, 2 Series,2016,10400,Manual,72890,Petrol,125,53.3,1.5 5721, 3 Series,2019,26450,Semi-Auto,2754,Diesel,150,52.3,2.0 5722, 3 Series,2019,27450,Semi-Auto,7491,Petrol,150,41.5,2.0 5723, 1 Series,2019,25990,Semi-Auto,6596,Diesel,150,51.4,2.0 5724, X1,2015,17990,Semi-Auto,10258,Diesel,30,65.7,2.0 5725, X1,2017,23990,Semi-Auto,1061,Petrol,165,44.8,2.0 5726, M3,2019,62995,Semi-Auto,5957,Petrol,145,33.2,3.0 5727, 1 Series,2017,15888,Automatic,20890,Diesel,145,68.9,2.0 5728, 3 Series,2020,31000,Semi-Auto,986,Diesel,150,50.4,2.0 5729, 3 Series,2020,35000,Semi-Auto,1986,Petrol,145,40.4,2.0 5730, 1 Series,2017,19000,Semi-Auto,42657,Petrol,200,39.8,3.0 5731, X5,2019,51500,Semi-Auto,10,Diesel,145,37.7,3.0 5732, 4 Series,2019,24750,Semi-Auto,4642,Petrol,145,45.6,2.0 5733, 2 Series,2017,16250,Semi-Auto,23374,Diesel,150,65.7,2.0 5734, 3 Series,2018,17995,Semi-Auto,40456,Diesel,145,64.2,2.0 5735, 3 Series,2019,25888,Automatic,2258,Diesel,145,62.8,2.0 5736, X5,2019,47995,Automatic,999,Diesel,145,37.7,3.0 5737, 1 Series,2019,17888,Automatic,999,Petrol,145,55.5,1.5 5738, 4 Series,2019,28888,Automatic,3419,Diesel,145,60.1,2.0 5739, 4 Series,2014,15888,Manual,38000,Diesel,125,57.6,2.0 5740, 3 Series,2018,24888,Semi-Auto,7298,Diesel,145,51.4,3.0 5741, X6,2020,56000,Automatic,7486,Diesel,145,34.9,3.0 5742, X2,2020,33000,Semi-Auto,3986,Petrol,145,34.0,2.0 5743, 3 Series,2020,34000,Semi-Auto,4986,Diesel,145,47.9,3.0 5744, 2 Series,2020,34000,Semi-Auto,2986,Petrol,145,36.2,2.0 5746, X1,2020,26750,Automatic,1000,Diesel,145,47.9,2.0 5747, M2,2019,46000,Manual,4534,Petrol,145,28.5,3.0 5748, 5 Series,2017,25000,Automatic,18677,Diesel,145,60.1,3.0 5749, X1,2019,22750,Manual,10879,Petrol,145,39.8,1.5 5750, 5 Series,2019,30500,Semi-Auto,8993,Hybrid,135,156.9,2.0 5751, X1,2016,20500,Semi-Auto,19010,Diesel,125,57.6,2.0 5752, 3 Series,2019,26000,Semi-Auto,4315,Petrol,145,42.2,2.0 5753, X1,2017,20000,Semi-Auto,24150,Diesel,145,57.6,2.0 5754, 3 Series,2019,26000,Semi-Auto,5358,Diesel,145,52.3,2.0 5755, 3 Series,2017,16500,Semi-Auto,38620,Diesel,150,64.2,2.0 5756, X3,2019,32250,Semi-Auto,4386,Diesel,150,54.3,2.0 5757, 5 Series,2015,13686,Automatic,77715,Diesel,160,52.3,3.0 5758, 2 Series,2018,20952,Semi-Auto,42912,Petrol,150,47.9,2.0 5759, 4 Series,2014,18062,Semi-Auto,49745,Diesel,165,50.4,3.0 5760, X1,2018,19921,Semi-Auto,25059,Diesel,150,60.1,2.0 5761, 1 Series,2019,20750,Manual,5692,Petrol,145,44.1,1.5 5762, X1,2019,23000,Manual,8561,Petrol,145,39.8,1.5 5763, 5 Series,2019,36500,Semi-Auto,1475,Petrol,150,39.2,3.0 5764, 1 Series,2019,20750,Manual,5225,Petrol,150,44.1,1.5 5765, 1 Series,2019,20750,Manual,6860,Petrol,150,44.1,1.5 5766, 1 Series,2020,27840,Semi-Auto,150,Diesel,145,51.4,2.0 5767, 4 Series,2019,32440,Manual,3792,Diesel,145,62.8,2.0 5768, 2 Series,2020,36840,Semi-Auto,2422,Petrol,145,36.2,2.0 5769, 4 Series,2020,39250,Semi-Auto,151,Diesel,150,47.9,3.0 5770, 1 Series,2013,10991,Semi-Auto,46439,Petrol,150,48.7,1.6 5771, 4 Series,2017,19350,Automatic,18399,Diesel,30,64.2,2.0 5772, 3 Series,2017,18391,Semi-Auto,31116,Hybrid,0,134.5,2.0 5773, X2,2018,22111,Semi-Auto,16708,Petrol,150,38.7,2.0 5774, 3 Series,2019,29464,Semi-Auto,4251,Petrol,145,42.2,2.0 5775, X2,2019,32130,Semi-Auto,11571,Petrol,145,34.0,2.0 5776, 1 Series,2019,30420,Semi-Auto,10159,Petrol,145,34.5,2.0 5777, X3,2019,55610,Automatic,3367,Petrol,145,24.8,3.0 5778, 3 Series,2017,16995,Manual,28700,Petrol,150,47.9,2.0 5779, 1 Series,2017,14500,Manual,13681,Diesel,150,65.7,2.0 5780, 2 Series,2019,19495,Manual,4824,Petrol,150,52.3,1.5 5781, 2 Series,2019,19495,Manual,7937,Petrol,150,54.3,1.5 5782, X1,2017,20722,Semi-Auto,22636,Petrol,160,44.8,2.0 5783, 2 Series,2019,28630,Semi-Auto,2564,Diesel,145,67.3,2.0 5784, X1,2019,25730,Semi-Auto,4495,Petrol,145,38.2,2.0 5785, X6,2015,26462,Semi-Auto,60930,Diesel,200,47.1,3.0 5786, 1 Series,2014,10462,Manual,29260,Petrol,145,50.4,1.6 5787, 1 Series,2016,14881,Manual,42452,Diesel,30,62.8,2.0 5788, X1,2017,19721,Semi-Auto,18800,Diesel,125,60.1,2.0 5789, X5,2016,23912,Automatic,89676,Diesel,200,47.1,3.0 5791, X6,2019,61854,Semi-Auto,1000,Diesel,145,34.9,3.0 5792, X1,2019,25843,Semi-Auto,7117,Diesel,145,60.1,2.0 5793, 3 Series,2015,14982,Automatic,45909,Diesel,30,62.8,2.0 5794, X5,2019,52004,Semi-Auto,4000,Diesel,145,37.7,3.0 5795, 4 Series,2016,19841,Semi-Auto,30968,Petrol,160,44.1,2.0 5796, X5,2019,52990,Semi-Auto,10,Diesel,150,37.7,3.0 5797, 1 Series,2019,22890,Manual,10927,Petrol,150,41.5,1.5 5798, X2,2018,24495,Semi-Auto,13147,Diesel,150,58.9,2.0 5799, 5 Series,2015,15499,Semi-Auto,43013,Diesel,30,62.8,2.0 5800, X5,2016,28140,Automatic,43003,Diesel,200,47.1,3.0 5801, X1,2017,21500,Semi-Auto,24814,Diesel,145,55.4,2.0 5802, X6,2016,20950,Semi-Auto,29211,Diesel,205,47.1,3.0 5803, X5,2014,20450,Automatic,89000,Diesel,205,45.6,3.0 5804, 4 Series,2016,22652,Semi-Auto,33766,Petrol,200,41.5,3.0 5805, 5 Series,2017,23941,Semi-Auto,23095,Diesel,125,60.1,2.0 5806, 2 Series,2015,18012,Semi-Auto,13642,Diesel,125,57.6,2.0 5807, 2 Series,2015,13881,Manual,25283,Petrol,150,47.9,2.0 5808, 3 Series,2019,27555,Manual,7887,Diesel,145,54.3,2.0 5809, X5,2019,55990,Semi-Auto,6007,Diesel,145,33.6,3.0 5810, X2,2019,29343,Semi-Auto,1644,Petrol,145,36.2,2.0 5811, 3 Series,2013,11072,Manual,78852,Diesel,30,62.8,2.0 5812, 3 Series,2015,19641,Semi-Auto,23503,Diesel,160,51.4,3.0 5813, X1,2019,25916,Automatic,4230,Diesel,145,60.1,2.0 5814, 2 Series,2019,21876,Automatic,7910,Diesel,145,64.2,2.0 5815, 4 Series,2016,18536,Automatic,32814,Petrol,145,48.7,2.0 5816, M4,2019,41986,Automatic,144,Petrol,145,34.0,3.0 5817, X5,2019,52990,Semi-Auto,10,Diesel,150,37.7,3.0 5818, X5,2019,47990,Semi-Auto,8481,Diesel,150,37.7,3.0 5819, 2 Series,2019,24690,Semi-Auto,7338,Petrol,150,47.9,2.0 5820, X5,2019,53850,Semi-Auto,16,Diesel,150,37.7,3.0 5821, 4 Series,2016,19990,Semi-Auto,35900,Diesel,125,60.1,2.0 5822, 3 Series,2017,20990,Semi-Auto,36000,Hybrid,135,134.5,2.0 5823, 4 Series,2020,27669,Manual,151,Diesel,150,62.8,2.0 5824, X5,2015,29241,Automatic,35552,Diesel,205,47.1,3.0 5825, 2 Series,2016,17965,Semi-Auto,20379,Diesel,125,60.1,2.0 5826, 3 Series,2014,9942,Manual,97185,Diesel,30,65.7,2.0 5827, 3 Series,2015,16641,Semi-Auto,49396,Petrol,160,44.1,2.0 5828, 3 Series,2019,21444,Semi-Auto,6329,Diesel,145,55.4,2.0 5829, 5 Series,2019,32600,Semi-Auto,8260,Hybrid,140,156.9,2.0 5830, 3 Series,2019,26500,Semi-Auto,7120,Petrol,150,47.9,2.0 5831, 3 Series,2018,16999,Manual,7000,Diesel,145,67.3,2.0 5832, 3 Series,2019,28999,Automatic,11681,Diesel,145,52.3,2.0 5833, 4 Series,2019,30140,Automatic,7583,Diesel,145,60.1,2.0 5834, 3 Series,2019,34700,Semi-Auto,6006,Diesel,145,49.6,2.0 5835, 4 Series,2019,31210,Automatic,4300,Diesel,145,53.3,3.0 5836, X1,2019,24850,Automatic,9784,Diesel,145,60.1,2.0 5837, 3 Series,2019,18999,Automatic,11749,Diesel,145,62.8,2.0 5838, 1 Series,2019,16555,Manual,9451,Diesel,145,68.9,2.0 5839, 1 Series,2019,18999,Automatic,1000,Diesel,145,70.6,2.0 5840, X6,2019,41780,Semi-Auto,13000,Diesel,145,44.8,3.0 5841, 4 Series,2019,29582,Automatic,5684,Petrol,145,41.5,3.0 5842, 4 Series,2019,27700,Manual,110,Petrol,145,46.3,2.0 5843, 1 Series,2017,14445,Automatic,21500,Diesel,145,72.4,1.5 5844, X3,2019,54999,Automatic,500,Petrol,145,24.8,3.0 5845, M2,2019,44500,Semi-Auto,4929,Petrol,150,29.1,3.0 5847, X1,2016,18500,Automatic,27000,Diesel,145,55.4,2.0 5848, 3 Series,2015,14995,Automatic,44000,Diesel,145,56.5,3.0 5849, M4,2017,35352,Semi-Auto,9215,Petrol,300,34.0,3.0 5850, X2,2019,35470,Automatic,1566,Diesel,145,58.9,2.0 5851, 1 Series,2016,15500,Semi-Auto,37753,Diesel,20,67.3,2.0 5852, 5 Series,2017,26000,Semi-Auto,43533,Diesel,150,53.3,3.0 5853, Z4,2020,44300,Semi-Auto,1801,Petrol,150,33.2,3.0 5854, M4,2018,39999,Semi-Auto,10809,Petrol,150,34.0,3.0 5855, 5 Series,2018,24999,Semi-Auto,17371,Diesel,145,62.8,2.0 5856, 3 Series,2019,27999,Automatic,9214,Diesel,145,52.3,2.0 5857, 5 Series,2019,28999,Automatic,13000,Petrol,145,47.9,2.0 5858, X3,2019,33790,Semi-Auto,3633,Petrol,145,30.4,2.0 5859, X4,2019,42550,Semi-Auto,8515,Petrol,145,26.9,3.0 5860, M2,2019,42110,Automatic,5644,Petrol,145,29.1,3.0 5861, 2 Series,2019,20860,Manual,5684,Petrol,145,42.8,1.5 5862, 2 Series,2019,20850,Manual,3993,Petrol,145,42.8,1.5 5863, 2 Series,2019,23150,Semi-Auto,5035,Diesel,145,49.6,2.0 5864, 2 Series,2019,20950,Manual,2178,Diesel,145,51.4,2.0 5865, 3 Series,2020,41995,Automatic,4300,Petrol,145,33.6,3.0 5866, 3 Series,2019,29999,Automatic,12143,Diesel,145,52.3,2.0 5867, X3,2019,34999,Automatic,12774,Diesel,145,54.3,2.0 5868, 2 Series,2019,27995,Automatic,110,Diesel,145,64.2,2.0 5869, 5 Series,2019,26888,Automatic,8070,Diesel,145,65.7,2.0 5870, 4 Series,2019,26995,Manual,110,Petrol,145,46.3,2.0 5871, 2 Series,2019,20555,Automatic,9736,Petrol,145,50.4,2.0 5872, 2 Series,2019,20999,Automatic,37,Petrol,145,47.9,2.0 5873, M3,2017,53995,Automatic,3824,Petrol,145,34.0,3.0 5874, X3,2019,31436,Automatic,6172,Diesel,145,54.3,2.0 5875, 4 Series,2019,22680,Automatic,9820,Petrol,145,45.6,2.0 5876, 3 Series,2019,35150,Automatic,5920,Diesel,145,47.9,3.0 5877, M5,2019,81140,Semi-Auto,551,Petrol,145,24.1,4.4 5878, X1,2019,31280,Semi-Auto,2865,Diesel,145,36.7,2.0 5879, X2,2019,32740,Automatic,3857,Petrol,145,39.2,2.0 5880, 3 Series,2019,31630,Automatic,4400,Diesel,145,52.3,2.0 5881, X6,2019,66750,Semi-Auto,2519,Petrol,145,26.4,3.0 5882, 3 Series,2019,28000,Semi-Auto,8653,Petrol,145,46.3,2.0 5883, X5,2019,51995,Semi-Auto,11,Diesel,145,37.7,3.0 5884, 3 Series,2019,32999,Automatic,4418,Diesel,145,49.6,2.0 5885, 4 Series,2019,31845,Semi-Auto,6155,Diesel,145,47.9,3.0 5886, 3 Series,2019,23222,Semi-Auto,11010,Diesel,145,54.3,2.0 5887, 5 Series,2019,29999,Automatic,3936,Petrol,145,47.9,2.0 5888, 2 Series,2019,20999,Semi-Auto,4923,Petrol,145,47.9,2.0 5889, 3 Series,2019,27999,Automatic,14590,Diesel,145,52.3,2.0 5890, X5,2019,50900,Automatic,99,Diesel,145,37.7,3.0 5891, X2,2019,38350,Automatic,99,Diesel,145,58.9,2.0 5892, 3 Series,2019,31995,Manual,894,Diesel,145,54.3,2.0 5893, X1,2019,27888,Manual,99,Diesel,145,48.7,2.0 5894, X1,2019,25999,Manual,99,Petrol,145,52.3,1.5 5895, X3,2019,34500,Automatic,1000,Diesel,145,54.3,2.0 5896, 2 Series,2019,27995,Automatic,99,Diesel,145,47.1,2.0 5897, M4,2019,45999,Automatic,99,Petrol,145,34.0,3.0 5898, M4,2019,57800,Automatic,99,Petrol,145,34.0,3.0 5899, 5 Series,2019,29995,Automatic,1000,Petrol,145,50.4,2.0 5900, 7 Series,2016,33995,Semi-Auto,15143,Diesel,160,52.3,3.0 5901, 5 Series,2020,29990,Semi-Auto,12,Hybrid,150,62.8,2.0 5902, 3 Series,2020,32995,Semi-Auto,10,Diesel,145,50.4,2.0 5903, X5,2019,58000,Automatic,4010,Diesel,145,33.6,3.0 5904, X3,2019,36222,Semi-Auto,4624,Diesel,145,48.7,3.0 5905, X3,2019,35600,Semi-Auto,1299,Diesel,145,54.3,2.0 5906, 5 Series,2019,33444,Semi-Auto,4118,Petrol,145,46.3,2.0 5907, 2 Series,2019,20999,Manual,4524,Petrol,145,57.6,1.5 5908, 1 Series,2019,21999,Semi-Auto,2040,Petrol,145,43.5,1.5 5909, 1 Series,2019,25999,Semi-Auto,575,Diesel,145,62.8,2.0 5910, 1 Series,2019,22222,Manual,397,Petrol,145,44.1,1.5 5911, 2 Series,2018,18999,Automatic,254,Petrol,145,38.2,2.0 5912, 4 Series,2019,28999,Semi-Auto,1000,Diesel,145,65.7,2.0 5913, X5,2019,73000,Automatic,5,Hybrid,135,188.3,3.0 5914, 3 Series,2019,29555,Automatic,5035,Diesel,145,50.4,2.0 5915, 4 Series,2019,31995,Manual,110,Diesel,145,55.4,2.0 5916, X1,2019,25999,Automatic,1100,Diesel,145,60.1,2.0 5917, 4 Series,2019,35000,Automatic,110,Diesel,145,65.7,2.0 5918, 4 Series,2019,22999,Automatic,1000,Diesel,145,60.1,2.0 5919, X3,2019,32250,Semi-Auto,4829,Diesel,150,54.3,2.0 5920, 5 Series,2015,16750,Semi-Auto,27563,Petrol,160,46.3,2.0 5921, 6 Series,2017,27000,Automatic,17942,Petrol,145,32.1,4.4 5922, X1,2017,19750,Semi-Auto,19159,Diesel,145,60.1,2.0 5923, 2 Series,2016,16995,Semi-Auto,37573,Diesel,145,55.4,2.0 5924, 1 Series,2013,9995,Manual,33731,Diesel,20,68.9,2.0 5925, 3 Series,2017,21995,Semi-Auto,25542,Diesel,160,51.4,3.0 5926, X5,2019,50995,Semi-Auto,4151,Diesel,145,37.7,3.0 5927, 3 Series,2019,34995,Semi-Auto,4255,Diesel,145,49.6,2.0 5928, 3 Series,2019,25995,Semi-Auto,5687,Diesel,145,52.3,2.0 5929, 3 Series,2015,14995,Semi-Auto,40781,Diesel,125,61.4,2.0 5930, X3,2019,36990,Semi-Auto,5922,Diesel,145,54.3,2.0 5931, 3 Series,2019,27990,Manual,3319,Diesel,145,54.3,2.0 5932, 1 Series,2019,21999,Semi-Auto,1591,Petrol,145,43.5,1.5 5933, 3 Series,2019,34999,Automatic,20329,Diesel,145,48.7,2.0 5934, 7 Series,2019,46999,Semi-Auto,10504,Petrol,145,34.5,3.0 5935, X2,2020,32540,Semi-Auto,99,Petrol,150,39.2,2.0 5936, X7,2019,72500,Automatic,5929,Diesel,145,31.4,3.0 5937, 3 Series,2016,14999,Manual,26307,Petrol,145,47.9,2.0 5938, 3 Series,2018,18700,Semi-Auto,42565,Diesel,145,64.2,2.0 5939, 3 Series,2018,27000,Semi-Auto,12513,Diesel,145,51.4,3.0 5940, 1 Series,2015,12295,Semi-Auto,56000,Diesel,20,67.3,2.0 5941, X3,2016,17495,Semi-Auto,31100,Diesel,145,54.3,2.0 5942, 1 Series,2016,13908,Semi-Auto,13708,Diesel,20,68.9,1.5 5943, 5 Series,2018,27500,Semi-Auto,3627,Hybrid,135,156.9,2.0 5944, 7 Series,2017,34000,Semi-Auto,34024,Hybrid,0,128.4,2.0 5945, 3 Series,2017,19500,Semi-Auto,9377,Hybrid,0,134.5,2.0 5946, 2 Series,2020,19500,Automatic,4330,Petrol,145,42.2,1.5 5947, 2 Series,2020,22000,Automatic,5436,Diesel,145,67.3,2.0 5948, 2 Series,2020,19500,Automatic,3622,Petrol,145,42.2,1.5 5949, 8 Series,2020,59995,Semi-Auto,700,Petrol,145,31.7,3.0 5950, 5 Series,2019,29555,Automatic,15094,Diesel,145,65.7,2.0 5951, X5,2019,51990,Semi-Auto,12,Diesel,145,37.7,3.0 5952, Z4,2016,16500,Semi-Auto,29850,Petrol,205,41.5,2.0 5953, 3 Series,2018,21500,Semi-Auto,13058,Diesel,150,60.1,2.0 5954, 3 Series,2015,15800,Manual,23293,Diesel,145,55.4,2.0 5955, 3 Series,2016,17995,Semi-Auto,43417,Diesel,160,51.4,3.0 5956, X2,2019,24995,Semi-Auto,4980,Diesel,145,52.3,2.0 5957, X6,2018,36555,Semi-Auto,17500,Diesel,145,40.9,3.0 5958, 4 Series,2020,29500,Semi-Auto,10,Petrol,145,48.7,2.0 5959, 3 Series,2019,28888,Automatic,10799,Diesel,145,52.3,2.0 5960, 3 Series,2019,33699,Semi-Auto,7736,Hybrid,135,8.8,2.0 5961, X3,2019,43500,Semi-Auto,5554,Petrol,145,34.5,3.0 5962, 5 Series,2019,34500,Automatic,99,Hybrid,135,156.9,2.0 5963, 1 Series,2019,19999,Semi-Auto,6386,Petrol,145,47.9,2.0 5964, 1 Series,2019,28500,Semi-Auto,9058,Diesel,150,51.4,2.0 5965, 3 Series,2017,20995,Semi-Auto,26810,Hybrid,0,134.5,2.0 5966, 2 Series,2019,18995,Semi-Auto,8157,Petrol,150,40.9,1.5 5967, 1 Series,2014,9799,Manual,46000,Petrol,145,50.4,1.6 5968, 3 Series,2017,11499,Manual,66488,Diesel,20,68.9,2.0 5969, 1 Series,2017,19950,Semi-Auto,30173,Petrol,205,39.8,3.0 5970, 2 Series,2017,17110,Semi-Auto,34032,Diesel,145,65.7,2.0 5971, 4 Series,2018,19370,Automatic,26739,Diesel,145,65.7,2.0 5972, 3 Series,2014,10800,Manual,50810,Diesel,30,61.4,2.0 5973, 4 Series,2019,27790,Semi-Auto,7298,Petrol,145,41.5,3.0 5974, 5 Series,2019,27990,Automatic,14541,Diesel,145,65.7,2.0 5975, X5,2019,52490,Semi-Auto,7443,Petrol,145,27.2,3.0 5976, X1,2020,31825,Semi-Auto,99,Diesel,145,47.9,2.0 5977, X5,2019,49490,Semi-Auto,3252,Diesel,145,37.7,3.0 5978, 1 Series,2019,25999,Semi-Auto,1356,Diesel,145,50.4,2.0 5979, X1,2019,25990,Semi-Auto,7333,Diesel,145,60.1,2.0 5980, 3 Series,2019,34990,Semi-Auto,8005,Petrol,145,40.4,2.0 5981, 1 Series,2016,13500,Automatic,34144,Diesel,20,68.9,1.5 5982, 3 Series,2016,16100,Automatic,45759,Diesel,145,56.5,3.0 5983, X3,2016,22450,Semi-Auto,22699,Diesel,200,47.9,3.0 5984, 4 Series,2016,17144,Manual,18250,Petrol,160,46.3,2.0 5985, 4 Series,2017,19494,Semi-Auto,14465,Diesel,145,65.7,2.0 5986, M5,2016,25999,Semi-Auto,49689,Petrol,565,28.5,4.4 5987, 1 Series,2013,9995,Manual,59995,Diesel,30,62.8,2.0 5988, 2 Series,2018,17745,Semi-Auto,17771,Diesel,150,62.8,2.0 5989, 5 Series,2017,28735,Semi-Auto,21638,Diesel,150,53.3,3.0 5990, 1 Series,2017,13888,Manual,15512,Petrol,150,53.3,1.5 5991, X1,2019,30555,Automatic,1000,Diesel,150,50.4,2.0 5992, 3 Series,2019,25490,Semi-Auto,6219,Petrol,150,42.2,2.0 5993, 3 Series,2019,26490,Semi-Auto,7385,Petrol,150,41.5,2.0 5994, X1,2019,21850,Automatic,6141,Petrol,145,46.3,1.5 5995, 2 Series,2017,17990,Semi-Auto,30488,Diesel,145,55.4,2.0 5996, 3 Series,2019,29990,Automatic,13376,Diesel,145,52.3,2.0 5997, X6,2016,28950,Semi-Auto,31585,Diesel,200,47.1,3.0 5998, 3 Series,2017,15500,Semi-Auto,47251,Diesel,30,64.2,2.0 5999, 1 Series,2018,12200,Semi-Auto,45648,Diesel,150,72.4,1.5 6000, 4 Series,2019,24990,Semi-Auto,8830,Petrol,145,48.7,2.0 6001, X3,2016,21990,Semi-Auto,28211,Diesel,150,54.3,2.0 6002, 3 Series,2017,13995,Semi-Auto,32871,Diesel,145,68.9,2.0 6003, 2 Series,2019,25480,Automatic,10,Hybrid,135,113.0,1.5 6004, X5,2019,48990,Semi-Auto,6439,Diesel,145,37.7,3.0 6005, 2 Series,2017,18990,Semi-Auto,20000,Petrol,150,50.4,1.5 6006, 1 Series,2017,14990,Semi-Auto,26525,Petrol,150,55.5,1.5 6007, 3 Series,2019,21990,Semi-Auto,10586,Diesel,145,55.4,2.0 6008, 1 Series,2019,23990,Manual,10,Petrol,145,44.1,1.5 6009, X3,2019,53990,Automatic,3961,Petrol,145,24.8,3.0 6010, X2,2019,27990,Automatic,9182,Petrol,145,39.8,2.0 6011, 2 Series,2019,20990,Semi-Auto,2139,Petrol,145,53.3,1.5 6012, 3 Series,2019,30990,Automatic,2579,Diesel,145,52.3,2.0 6013, X5,2019,48990,Automatic,8336,Diesel,145,37.7,3.0 6014, 3 Series,2019,41990,Automatic,10028,Diesel,145,43.5,3.0 6015, 4 Series,2018,23990,Semi-Auto,17592,Petrol,145,48.7,2.0 6016, 5 Series,2017,25990,Semi-Auto,48883,Diesel,145,53.3,3.0 6017, 5 Series,2017,21790,Semi-Auto,24794,Diesel,30,65.7,2.0 6018, X1,2017,18995,Semi-Auto,30872,Diesel,145,57.6,2.0 6019, 3 Series,2016,16995,Semi-Auto,22035,Diesel,30,62.8,2.0 6020, 5 Series,2015,18495,Semi-Auto,36200,Diesel,160,50.4,3.0 6021, 1 Series,2013,9995,Manual,56369,Diesel,125,58.9,2.0 6022, 1 Series,2017,13995,Manual,22119,Diesel,150,68.9,2.0 6023, 5 Series,2013,10000,Semi-Auto,87457,Diesel,145,56.5,2.0 6024, i8,2017,59950,Automatic,9992,Hybrid,135,134.5,1.5 6025, 3 Series,2020,30990,Semi-Auto,4506,Diesel,150,52.3,2.0 6026, 1 Series,2020,31990,Semi-Auto,3150,Petrol,150,34.5,2.0 6027, 3 Series,2018,19990,Manual,2459,Petrol,150,47.9,2.0 6028, 4 Series,2019,29990,Semi-Auto,9448,Petrol,145,41.5,3.0 6029, 2 Series,2015,17490,Semi-Auto,36000,Petrol,265,37.2,3.0 6030, X1,2018,21000,Semi-Auto,22964,Diesel,145,60.1,2.0 6031, 1 Series,2016,13800,Automatic,11510,Diesel,20,70.6,2.0 6032, X1,2016,19000,Automatic,13044,Diesel,125,57.6,2.0 6033, 5 Series,2019,30500,Semi-Auto,7536,Petrol,145,46.3,2.0 6034, 3 Series,2016,19490,Automatic,30088,Petrol,160,46.3,2.0 6035, X5,2017,32990,Automatic,39593,Diesel,200,47.1,3.0 6036, 5 Series,2017,23990,Semi-Auto,29283,Diesel,125,60.1,2.0 6037, 5 Series,2017,22490,Semi-Auto,32466,Diesel,145,60.1,2.0 6038, 5 Series,2016,16490,Semi-Auto,26037,Diesel,20,68.9,2.0 6039, 3 Series,2019,21790,Semi-Auto,8748,Petrol,145,44.8,2.0 6040, X1,2017,19995,Semi-Auto,48000,Diesel,125,57.6,2.0 6041, 6 Series,2018,28990,Semi-Auto,10250,Diesel,145,49.6,3.0 6042, 4 Series,2019,33990,Semi-Auto,5763,Petrol,145,39.2,3.0 6043, 1 Series,2019,18990,Semi-Auto,10746,Diesel,145,67.3,2.0 6044, 3 Series,2019,26990,Semi-Auto,7522,Petrol,145,41.5,2.0 6045, 4 Series,2019,25990,Semi-Auto,11555,Petrol,145,46.3,2.0 6046, M4,2020,49490,Semi-Auto,7,Petrol,145,32.5,3.0 6047, 2 Series,2020,23990,Semi-Auto,9,Petrol,145,47.9,2.0 6048, 3 Series,2020,31990,Semi-Auto,11,Petrol,145,40.4,2.0 6049, Z4,2020,31990,Semi-Auto,9,Petrol,145,38.7,2.0 6050, Z4,2020,33990,Semi-Auto,10,Petrol,145,37.2,2.0 6051, X3,2019,36500,Semi-Auto,5664,Diesel,145,54.3,2.0 6052, M4,2019,51000,Semi-Auto,1072,Petrol,145,34.0,3.0 6053, X3,2019,42000,Automatic,169,Diesel,145,54.3,2.0 6054, 4 Series,2016,20942,Automatic,39734,Petrol,260,37.2,3.0 6055, 4 Series,2019,27992,Semi-Auto,9756,Diesel,150,65.7,2.0 6056, X6,2019,66281,Semi-Auto,2710,Petrol,145,26.4,3.0 6057, X3,2019,36000,Semi-Auto,2864,Diesel,145,54.3,2.0 6058, X3,2019,35000,Automatic,6847,Diesel,145,54.3,2.0 6059, X1,2019,24500,Manual,1765,Petrol,145,51.4,1.5 6060, M5,2019,70000,Automatic,6568,Petrol,145,24.1,4.4 6061, 1 Series,2017,16000,Semi-Auto,45580,Diesel,125,61.4,2.0 6062, 3 Series,2019,23500,Semi-Auto,21,Diesel,145,70.6,2.0 6063, 4 Series,2015,14282,Semi-Auto,66453,Diesel,30,65.7,2.0 6064, 3 Series,2014,20412,Semi-Auto,30852,Diesel,160,52.3,3.0 6065, X1,2017,20995,Semi-Auto,20101,Diesel,145,57.6,2.0 6066, X1,2019,27672,Semi-Auto,2897,Petrol,145,35.3,2.0 6067, 2 Series,2019,19543,Manual,1996,Petrol,145,42.8,1.5 6068, X7,2019,64999,Semi-Auto,1500,Diesel,150,33.6,3.0 6069, 3 Series,2015,18981,Semi-Auto,40443,Diesel,165,51.4,3.0 6071, 3 Series,2018,20706,Automatic,11499,Diesel,145,62.8,2.0 6072, 5 Series,2018,34502,Automatic,13641,Diesel,145,51.4,3.0 6073, 2 Series,2019,20512,Semi-Auto,9114,Petrol,145,50.4,1.5 6074, 3 Series,2019,41513,Semi-Auto,4670,Petrol,145,34.9,3.0 6075, 3 Series,2014,15981,Manual,50100,Diesel,150,56.5,2.0 6076, 3 Series,2019,27781,Manual,11701,Diesel,150,54.3,2.0 6077, X1,2017,19981,Semi-Auto,24534,Diesel,150,55.4,2.0 6078, M2,2019,49999,Automatic,2935,Petrol,145,29.1,3.0 6079, 2 Series,2018,20981,Manual,15674,Petrol,150,47.1,1.5 6080, 3 Series,2017,22981,Semi-Auto,29994,Petrol,205,41.5,3.0 6081, 1 Series,2017,15981,Manual,44426,Petrol,150,52.3,1.5 6082, 5 Series,2015,17500,Manual,26355,Diesel,160,52.3,2.0 6083, 4 Series,2019,29000,Semi-Auto,2741,Diesel,145,60.1,2.0 6084, 5 Series,2019,27500,Semi-Auto,4207,Petrol,150,36.2,2.0 6085, M3,2018,42202,Semi-Auto,10222,Petrol,145,34.0,3.0 6086, X6,2018,40322,Semi-Auto,7531,Diesel,145,40.9,3.0 6087, X5,2017,31992,Automatic,39000,Diesel,200,47.1,3.0 6088, 1 Series,2016,18402,Manual,23139,Petrol,300,35.3,3.0 6089, X4,2014,20572,Semi-Auto,41773,Diesel,145,54.3,2.0 6090, 5 Series,2017,20995,Semi-Auto,23116,Diesel,30,62.8,2.0 6091, 2 Series,2017,16962,Semi-Auto,25252,Petrol,145,51.4,1.5 6092, 2 Series,2019,26991,Manual,2715,Diesel,145,61.4,2.0 6093, M4,2019,49999,Automatic,1466,Petrol,145,34.0,3.0 6094, 1 Series,2019,18380,Automatic,16899,Petrol,145,54.3,1.5 6095, 4 Series,2016,22932,Semi-Auto,18774,Diesel,160,49.6,3.0 6096, 4 Series,2019,29676,Automatic,7365,Petrol,145,41.5,3.0 6097, 3 Series,2017,17182,Manual,34687,Diesel,145,60.1,2.0 6098, X1,2019,29999,Semi-Auto,3333,Diesel,150,50.4,2.0 6099, 2 Series,2019,23230,Semi-Auto,6932,Petrol,145,50.4,2.0 6100, 4 Series,2019,29840,Automatic,6000,Diesel,145,60.1,2.0 6101, 5 Series,2019,27500,Semi-Auto,7095,Petrol,150,50.4,2.0 6102, X1,2017,18500,Semi-Auto,35065,Diesel,150,57.6,2.0 6103, 1 Series,2016,12000,Manual,30302,Diesel,20,68.9,2.0 6104, X1,2020,29000,Semi-Auto,9,Petrol,150,47.9,2.0 6105, Z4,2020,35000,Semi-Auto,5,Petrol,150,37.2,2.0 6106, X2,2020,27500,Semi-Auto,10,Petrol,150,39.2,2.0 6107, 4 Series,2020,27500,Semi-Auto,130,Petrol,145,45.6,2.0 6108, 4 Series,2020,36000,Semi-Auto,11,Diesel,145,50.4,3.0 6109, X2,2019,32000,Semi-Auto,5524,Petrol,145,34.0,2.0 6110, 1 Series,2019,22500,Semi-Auto,7188,Diesel,145,68.9,1.5 6111, 2 Series,2017,15952,Manual,17146,Petrol,145,55.4,1.5 6112, X6,2017,33542,Semi-Auto,16867,Diesel,145,47.1,3.0 6113, X1,2020,28999,Semi-Auto,243,Diesel,145,36.7,2.0 6114, 1 Series,2015,17962,Semi-Auto,36510,Petrol,235,37.7,3.0 6115, 8 Series,2020,79991,Semi-Auto,151,Diesel,145,26.7,3.0 6116, X3,2020,69991,Semi-Auto,10,Petrol,145,24.8,3.0 6117, 2 Series,2019,23810,Automatic,151,Diesel,145,49.6,2.0 6118, 2 Series,2019,19870,Manual,151,Petrol,145,42.8,1.5 6119, 1 Series,2019,21340,Automatic,4761,Petrol,145,42.8,1.5 6120, 4 Series,2019,25374,Automatic,151,Diesel,145,60.1,2.0 6121, 2 Series,2019,24230,Semi-Auto,4301,Petrol,145,48.7,2.0 6122, 1 Series,2019,22890,Manual,5397,Petrol,145,41.5,1.5 6123, 2 Series,2019,21980,Manual,5587,Petrol,145,52.3,1.5 6124, 5 Series,2019,28200,Automatic,7399,Petrol,145,50.4,2.0 6125, 1 Series,2019,30160,Automatic,7890,Petrol,145,34.5,2.0 6126, 3 Series,2019,27130,Automatic,5732,Petrol,145,42.2,2.0 6127, 1 Series,2019,22280,Manual,4710,Petrol,145,41.5,1.5 6128, 2 Series,2019,26496,Automatic,10843,Petrol,145,39.8,3.0 6129, 1 Series,2019,25500,Semi-Auto,4171,Petrol,150,39.8,3.0 6130, 2 Series,2017,16999,Semi-Auto,5000,Petrol,125,53.3,1.5 6131, 3 Series,2017,18999,Semi-Auto,28563,Diesel,150,64.2,2.0 6132, X3,2020,47000,Semi-Auto,1385,Hybrid,135,5.5,2.0 6133, 1 Series,2019,22750,Manual,8543,Diesel,145,70.6,1.5 6134, 1 Series,2019,22750,Manual,9345,Diesel,145,65.7,2.0 6135, X5,2020,65000,Semi-Auto,1435,Petrol,145,23.2,4.4 6136, 3 Series,2019,38500,Automatic,7699,Diesel,145,48.7,2.0 6137, 3 Series,2019,37000,Automatic,115,Diesel,145,49.6,2.0 6138, X7,2019,71000,Semi-Auto,5665,Diesel,145,31.4,3.0 6139, 2 Series,2015,14750,Semi-Auto,16073,Diesel,125,61.4,2.0 6140, Z4,2019,33500,Semi-Auto,434,Petrol,145,38.7,2.0 6141, X1,2016,20999,Semi-Auto,25778,Diesel,150,56.5,2.0 6142, X3,2017,20999,Semi-Auto,39181,Diesel,145,54.3,2.0 6143, 5 Series,2016,15495,Semi-Auto,26109,Diesel,30,65.7,2.0 6144, 3 Series,2019,28999,Semi-Auto,5000,Diesel,145,52.3,2.0 6145, 3 Series,2019,27999,Semi-Auto,5155,Diesel,145,52.3,2.0 6146, Z4,2019,35995,Semi-Auto,4586,Petrol,150,33.2,3.0 6147, 3 Series,2020,26999,Semi-Auto,570,Petrol,150,43.5,2.0 6148, 5 Series,2015,11950,Semi-Auto,71766,Diesel,30,62.8,2.0 6149, 4 Series,2016,17127,Semi-Auto,34479,Diesel,30,65.7,2.0 6150, 3 Series,2017,16840,Automatic,47439,Diesel,145,56.5,3.0 6151, 2 Series,2016,12347,Manual,24460,Diesel,30,65.7,2.0 6152, X3,2019,35750,Semi-Auto,6698,Diesel,145,54.3,2.0 6153, X3,2019,35750,Automatic,4466,Diesel,145,54.3,2.0 6154, 1 Series,2017,15000,Manual,39838,Diesel,145,62.8,2.0 6155, 3 Series,2018,24250,Semi-Auto,3552,Diesel,145,53.3,3.0 6156, X2,2019,32000,Automatic,2631,Petrol,145,34.0,2.0 6157, X5,2019,47500,Semi-Auto,6224,Diesel,145,36.7,3.0 6158, X3,2019,54000,Automatic,2209,Petrol,145,24.8,3.0 6159, 4 Series,2016,17500,Semi-Auto,33064,Diesel,30,65.7,2.0 6160, 5 Series,2019,36499,Semi-Auto,5000,Hybrid,135,156.9,2.0 6161, 3 Series,2020,35999,Semi-Auto,5000,Diesel,145,47.9,3.0 6162, 4 Series,2018,27995,Semi-Auto,4000,Diesel,145,58.9,2.0 6163, 4 Series,2014,13950,Semi-Auto,24649,Petrol,160,44.8,2.0 6164, 4 Series,2018,20400,Semi-Auto,22270,Diesel,145,60.1,2.0 6165, 1 Series,2016,13850,Semi-Auto,37398,Diesel,20,67.3,2.0 6166, 2 Series,2017,14340,Semi-Auto,20185,Petrol,150,50.4,1.5 6167, 6 Series,2016,20610,Automatic,47148,Diesel,200,49.6,3.0 6168, 1 Series,2017,20750,Semi-Auto,18635,Petrol,200,39.8,3.0 6169, 2 Series,2018,23750,Semi-Auto,16512,Petrol,145,39.8,3.0 6170, X1,2014,10422,Manual,29387,Diesel,160,51.4,2.0 6171, 3 Series,2020,31990,Semi-Auto,3450,Petrol,150,40.4,2.0 6172, X3,2020,42990,Semi-Auto,3245,Hybrid,140,5.5,2.0 6173, 1 Series,2019,23995,Semi-Auto,1491,Petrol,145,43.5,1.5 6174, 1 Series,2019,22995,Manual,1569,Diesel,145,70.6,2.0 6175, 3 Series,2019,27495,Semi-Auto,12897,Diesel,145,52.3,2.0 6176, 6 Series,2019,31999,Semi-Auto,3035,Diesel,150,44.1,2.0 6177, X6,2019,63999,Semi-Auto,4000,Petrol,145,26.4,3.0 6178, X2,2020,28999,Semi-Auto,5000,Diesel,145,47.9,2.0 6179, X7,2020,64999,Semi-Auto,4000,Diesel,145,33.6,3.0 6180, 2 Series,2020,29999,Semi-Auto,5000,Diesel,145,48.7,2.0 6181, 2 Series,2019,22999,Semi-Auto,5713,Petrol,145,50.4,1.5 6182, X1,2017,20990,Semi-Auto,25013,Diesel,145,57.6,2.0 6183, X3,2020,40990,Semi-Auto,2294,Diesel,145,36.7,3.0 6184, 2 Series,2017,14990,Automatic,17000,Petrol,125,48.7,2.0 6185, X5,2020,53990,Semi-Auto,6825,Diesel,150,37.7,3.0 6186, 3 Series,2019,41990,Semi-Auto,7825,Petrol,150,34.9,3.0 6187, Z4,2020,31990,Semi-Auto,4825,Petrol,150,38.7,2.0 6188, 3 Series,2019,32990,Semi-Auto,5869,Diesel,150,52.3,2.0 6189, 3 Series,2020,43990,Semi-Auto,2894,Petrol,150,33.6,3.0 6190, 7 Series,2019,46990,Semi-Auto,7515,Diesel,150,42.2,3.0 6191, 2 Series,2019,23999,Semi-Auto,5000,Petrol,145,40.9,1.5 6192, X1,2018,21999,Manual,2750,Petrol,145,40.9,1.5 6193, 5 Series,2019,37995,Semi-Auto,2723,Diesel,145,53.3,3.0 6194, 4 Series,2020,28300,Semi-Auto,20,Diesel,145,65.7,2.0 6195, 4 Series,2020,26500,Semi-Auto,37,Petrol,145,48.7,2.0 6196, 4 Series,2020,28995,Semi-Auto,121,Petrol,145,48.7,2.0 6197, 2 Series,2020,22999,Semi-Auto,5000,Petrol,145,50.4,1.5 6198, X3,2020,53995,Semi-Auto,2000,Hybrid,135,5.5,2.0 6199, 3 Series,2019,28995,Semi-Auto,4000,Diesel,145,52.3,2.0 6200, 3 Series,2018,19999,Manual,14875,Petrol,145,47.9,2.0 6201, 2 Series,2017,18490,Automatic,12941,Hybrid,0,141.2,1.5 6202, 1 Series,2016,11990,Manual,33779,Diesel,20,68.9,2.0 6203, 6 Series,2017,23990,Semi-Auto,25975,Diesel,160,51.4,3.0 6204, 2 Series,2016,17490,Semi-Auto,27484,Diesel,125,60.1,2.0 6205, 3 Series,2017,22790,Semi-Auto,24200,Diesel,145,53.3,3.0 6206, 3 Series,2020,27492,Semi-Auto,3500,Petrol,145,42.2,2.0 6207, 1 Series,2019,16450,Manual,7169,Diesel,145,72.4,1.5 6208, 3 Series,2019,26000,Automatic,4971,Diesel,145,52.3,2.0 6209, 3 Series,2019,25000,Semi-Auto,8158,Petrol,145,42.2,2.0 6210, 2 Series,2020,29500,Semi-Auto,10,Petrol,145,39.8,3.0 6211, X1,2017,22495,Semi-Auto,20470,Diesel,145,57.6,2.0 6212, 3 Series,2016,21499,Semi-Auto,34137,Diesel,200,49.6,3.0 6213, 4 Series,2016,20999,Semi-Auto,16210,Diesel,30,65.7,2.0 6214, 1 Series,2019,19895,Manual,6181,Petrol,145,52.3,1.5 6215, M4,2018,53999,Semi-Auto,8725,Petrol,145,33.6,3.0 6216, 2 Series,2019,22999,Semi-Auto,3880,Petrol,145,47.9,2.0 6217, 3 Series,2019,27490,Automatic,8410,Diesel,145,53.3,3.0 6218, 2 Series,2019,18500,Manual,7367,Petrol,145,40.4,1.5 6219, 2 Series,2019,21450,Automatic,7044,Hybrid,135,148.7,1.5 6220, X2,2019,28950,Semi-Auto,6086,Petrol,145,36.2,2.0 6221, X1,2019,25990,Automatic,15608,Petrol,150,46.3,1.5 6222, 2 Series,2017,24500,Semi-Auto,11901,Petrol,145,39.8,3.0 6223, 2 Series,2016,14500,Semi-Auto,20193,Diesel,125,57.6,2.0 6224, M3,2017,37970,Semi-Auto,21431,Petrol,150,34.0,3.0 6225, 4 Series,2018,21750,Semi-Auto,13754,Petrol,150,48.7,2.0 6226, 4 Series,2014,14550,Semi-Auto,39271,Petrol,165,44.1,2.0 6227, 1 Series,2017,20995,Semi-Auto,22000,Petrol,150,39.8,3.0 6228, 3 Series,2017,19250,Automatic,27323,Diesel,160,51.4,3.0 6229, X1,2013,10999,Semi-Auto,48058,Diesel,160,52.3,2.0 6230, X1,2019,25996,Semi-Auto,4850,Petrol,145,46.3,1.5 6231, 2 Series,2019,21250,Automatic,13186,Hybrid,135,148.7,1.5 6232, 2 Series,2019,21785,Automatic,10218,Hybrid,135,148.7,1.5 6233, 5 Series,2019,32000,Semi-Auto,8827,Hybrid,135,156.9,2.0 6234, 2 Series,2019,21450,Automatic,9181,Hybrid,135,148.7,1.5 6235, 4 Series,2018,24450,Automatic,28363,Petrol,145,41.5,3.0 6236, 3 Series,2017,25490,Semi-Auto,16363,Petrol,145,41.5,3.0 6237, 1 Series,2018,25995,Semi-Auto,15897,Petrol,150,32.5,3.0 6238, 2 Series,2019,24999,Semi-Auto,5208,Petrol,145,47.9,2.0 6239, 1 Series,2018,23499,Semi-Auto,12087,Petrol,145,39.8,3.0 6240, 2 Series,2019,24444,Semi-Auto,3550,Diesel,145,64.2,2.0 6241, 5 Series,2015,17999,Semi-Auto,38695,Diesel,145,53.3,3.0 6242, 2 Series,2019,23999,Semi-Auto,5000,Petrol,145,40.9,1.5 6243, 2 Series,2019,28995,Semi-Auto,5721,Petrol,145,38.2,3.0 6244, 5 Series,2019,30000,Automatic,6000,Diesel,145,60.1,2.0 6245, 5 Series,2019,30000,Automatic,6000,Petrol,145,46.3,2.0 6246, 5 Series,2016,20000,Semi-Auto,46367,Diesel,165,50.4,3.0 6247, 1 Series,2016,17000,Semi-Auto,21000,Diesel,125,61.4,2.0 6248, 5 Series,2020,34999,Semi-Auto,5000,Hybrid,150,49.6,2.0 6249, 4 Series,2020,33999,Semi-Auto,4000,Diesel,150,65.7,2.0 6250, 2 Series,2016,17000,Semi-Auto,22783,Diesel,30,62.8,2.0 6251, X2,2019,24450,Semi-Auto,2598,Petrol,145,42.2,1.5 6252, X2,2019,27750,Automatic,6012,Diesel,145,61.4,2.0 6253, 4 Series,2019,27950,Automatic,75,Petrol,145,45.6,2.0 6254, X3,2019,33750,Automatic,5000,Diesel,145,54.3,2.0 6255, X2,2019,27950,Automatic,8452,Diesel,145,58.9,2.0 6256, X3,2019,34000,Automatic,7465,Diesel,145,54.3,2.0 6257, 4 Series,2015,16990,Semi-Auto,45000,Petrol,160,44.1,2.0 6258, 5 Series,2020,29000,Semi-Auto,9,Petrol,150,50.4,2.0 6259, 8 Series,2019,57000,Semi-Auto,12,Diesel,150,39.8,3.0 6260, 3 Series,2019,26500,Semi-Auto,11812,Petrol,150,41.5,2.0 6261, 3 Series,2017,21000,Semi-Auto,19967,Hybrid,135,134.5,2.0 6262, X6,2020,55500,Semi-Auto,9612,Diesel,145,34.9,3.0 6263, 4 Series,2020,30000,Semi-Auto,10,Diesel,145,60.1,2.0 6264, X5,2019,44000,Automatic,9339,Diesel,145,37.7,3.0 6265, 2 Series,2017,14999,Semi-Auto,19760,Diesel,150,68.9,2.0 6266, 3 Series,2017,21999,Semi-Auto,17324,Diesel,165,51.4,3.0 6267, X4,2020,46999,Semi-Auto,4000,Diesel,150,40.9,3.0 6268, X1,2020,34999,Semi-Auto,5000,Diesel,150,47.9,2.0 6269, X1,2020,34999,Semi-Auto,3000,Diesel,150,52.3,2.0 6270, M4,2020,59999,Semi-Auto,3000,Petrol,150,28.5,3.0 6271, 3 Series,2018,22799,Semi-Auto,12492,Diesel,150,64.2,2.0 6272, 2 Series,2017,22152,Semi-Auto,27169,Petrol,200,39.8,3.0 6273, 7 Series,2019,48912,Semi-Auto,6516,Diesel,150,44.8,3.0 6274, 4 Series,2019,29882,Semi-Auto,3121,Petrol,150,45.6,2.0 6275, X3,2013,13991,Semi-Auto,72752,Diesel,165,50.4,2.0 6276, X1,2017,18661,Semi-Auto,45000,Diesel,150,57.6,2.0 6277, 3 Series,2016,16991,Semi-Auto,32857,Diesel,30,64.2,2.0 6278, X3,2018,36186,Automatic,6764,Petrol,145,34.5,3.0 6279, 1 Series,2019,22895,Manual,5000,Petrol,145,41.5,1.5 6281, X1,2014,10792,Semi-Auto,51483,Diesel,165,52.3,2.0 6282, X1,2017,23082,Semi-Auto,9076,Petrol,165,44.8,2.0 6283, X2,2019,28551,Semi-Auto,5282,Petrol,150,39.8,2.0 6284, 3 Series,2019,26991,Semi-Auto,8310,Diesel,150,52.3,2.0 6285, 4 Series,2019,25771,Semi-Auto,6459,Diesel,150,58.9,2.0 6286, 4 Series,2019,25881,Semi-Auto,2282,Petrol,150,44.8,2.0 6287, 1 Series,2017,15792,Semi-Auto,8789,Petrol,30,55.5,1.5 6288, 4 Series,2018,21712,Semi-Auto,17100,Diesel,145,60.1,2.0 6289, X3,2019,31551,Semi-Auto,13570,Diesel,150,54.3,2.0 6290, 2 Series,2019,24352,Semi-Auto,6052,Petrol,150,47.9,2.0 6291, 3 Series,2019,36532,Semi-Auto,318,Petrol,150,40.4,2.0 6292, 1 Series,2019,19812,Semi-Auto,7233,Diesel,150,68.9,1.5 6293, 3 Series,2015,14995,Semi-Auto,40321,Diesel,125,58.9,2.0 6294, 6 Series,2019,32785,Semi-Auto,6081,Diesel,150,42.2,2.0 6295, 7 Series,2020,52999,Semi-Auto,5000,Diesel,145,42.2,3.0 6296, 5 Series,2019,34995,Semi-Auto,7450,Hybrid,135,156.9,2.0 6297, 3 Series,2019,33995,Automatic,5000,Diesel,145,49.6,2.0 6298, 2 Series,2019,26910,Automatic,1250,Diesel,145,65.7,2.0 6299, 5 Series,2019,31460,Automatic,1200,Diesel,145,62.8,2.0 6300, 4 Series,2019,25070,Semi-Auto,3038,Diesel,145,65.7,2.0 6301, 1 Series,2016,15722,Semi-Auto,14871,Diesel,20,67.3,2.0 6302, X1,2017,19532,Semi-Auto,12566,Diesel,125,60.1,2.0 6303, X4,2019,38495,Semi-Auto,7356,Diesel,145,40.9,3.0 6304, 2 Series,2019,25995,Semi-Auto,2348,Diesel,145,64.2,2.0 6305, X2,2019,31310,Semi-Auto,4890,Diesel,145,58.9,2.0 6306, 1 Series,2019,30200,Automatic,7312,Petrol,145,34.5,2.0 6307, X4,2019,38150,Automatic,9921,Diesel,145,42.8,2.0 6308, X5,2019,47162,Automatic,9815,Diesel,145,37.7,3.0 6309, X2,2020,33400,Semi-Auto,1766,Diesel,145,58.9,2.0 6310, X5,2014,22991,Automatic,30422,Diesel,200,48.7,2.0 6311, X1,2014,15842,Semi-Auto,45671,Petrol,235,38.7,2.0 6312, 3 Series,2016,18331,Semi-Auto,33783,Diesel,125,60.1,2.0 6313, 1 Series,2015,13442,Semi-Auto,15200,Diesel,0,78.5,1.5 6314, X1,2018,19551,Manual,15898,Petrol,150,51.4,1.5 6315, X1,2019,27991,Semi-Auto,120,Diesel,150,36.7,2.0 6316, 3 Series,2018,21991,Semi-Auto,15027,Diesel,150,64.2,2.0 6317, 3 Series,2018,20000,Semi-Auto,23501,Petrol,145,46.3,2.0 6318, 2 Series,2019,21450,Automatic,8702,Hybrid,135,148.7,1.5 6319, 3 Series,2017,25000,Semi-Auto,28930,Diesel,145,49.6,3.0 6320, 4 Series,2017,24999,Semi-Auto,26763,Petrol,145,41.5,3.0 6321, 5 Series,2019,29999,Semi-Auto,10373,Diesel,150,65.7,2.0 6322, 4 Series,2019,28295,Semi-Auto,8235,Petrol,145,48.7,2.0 6323, 1 Series,2018,23999,Semi-Auto,17493,Petrol,150,39.8,3.0 6324, 3 Series,2018,20999,Semi-Auto,17101,Petrol,150,48.7,2.0 6325, X3,2017,25999,Semi-Auto,22749,Diesel,150,54.3,2.0 6326, 1 Series,2016,12895,Manual,14354,Diesel,0,78.5,1.5 6327, X1,2017,23995,Semi-Auto,15991,Diesel,150,55.4,2.0 6328, 4 Series,2015,16991,Semi-Auto,35300,Diesel,125,58.9,2.0 6329, 5 Series,2019,25551,Semi-Auto,7143,Petrol,150,50.4,2.0 6330, 5 Series,2019,29441,Semi-Auto,9631,Petrol,150,36.2,2.0 6331, X3,2019,34510,Automatic,8620,Diesel,145,54.3,2.0 6332, X5,2019,54991,Automatic,15,Diesel,145,37.7,3.0 6333, 4 Series,2020,31450,Semi-Auto,10,Diesel,145,60.1,2.0 6334, 4 Series,2019,28750,Automatic,2000,Diesel,145,60.1,2.0 6335, X1,2019,27000,Automatic,6000,Petrol,145,39.2,2.0 6336, X3,2019,34750,Semi-Auto,35,Diesel,145,54.3,2.0 6337, 2 Series,2019,21450,Automatic,8085,Hybrid,135,148.7,1.5 6338, 5 Series,2016,18990,Semi-Auto,19418,Petrol,145,47.1,2.0 6339, X3,2017,25950,Semi-Auto,19817,Diesel,145,54.3,2.0 6340, X2,2019,31991,Semi-Auto,650,Petrol,145,39.2,2.0 6341, X2,2019,28991,Semi-Auto,3901,Petrol,145,38.7,2.0 6342, X3,2019,38990,Semi-Auto,1858,Diesel,145,54.3,2.0 6343, 1 Series,2019,31771,Semi-Auto,1954,Diesel,145,48.7,2.0 6344, X1,2019,24712,Semi-Auto,9697,Petrol,145,39.8,1.5 6345, X1,2019,23652,Semi-Auto,12020,Petrol,145,46.3,1.5 6346, 1 Series,2019,24762,Semi-Auto,2487,Diesel,145,70.6,2.0 6347, 3 Series,2019,29994,Semi-Auto,2000,Petrol,145,42.2,2.0 6348, 1 Series,2017,16722,Semi-Auto,9063,Petrol,145,55.5,1.5 6349, 5 Series,2019,26771,Semi-Auto,6260,Petrol,150,50.4,2.0 6350, 1 Series,2020,24551,Semi-Auto,11512,Petrol,150,40.4,1.5 6351, 5 Series,2019,27551,Semi-Auto,5838,Petrol,150,50.4,2.0 6352, 3 Series,2019,23991,Semi-Auto,11748,Petrol,150,47.9,2.0 6353, X2,2019,28991,Semi-Auto,8384,Petrol,150,39.8,2.0 6354, 3 Series,2019,29661,Semi-Auto,4925,Petrol,150,43.5,2.0 6355, 5 Series,2017,22312,Automatic,16403,Diesel,145,65.7,2.0 6356, 2 Series,2016,12032,Manual,26884,Petrol,30,55.4,1.5 6357, X4,2016,20022,Semi-Auto,64000,Diesel,145,54.3,2.0 6358, X7,2019,73990,Semi-Auto,1657,Diesel,145,31.4,3.0 6359, 5 Series,2016,18496,Semi-Auto,8392,Petrol,200,43.5,2.0 6360, X6,2019,59990,Semi-Auto,2500,Petrol,145,26.4,3.0 6361, 3 Series,2019,29530,Semi-Auto,2203,Petrol,145,42.2,2.0 6362, 1 Series,2019,25290,Automatic,5511,Petrol,145,40.4,1.5 6363, 5 Series,2019,30000,Semi-Auto,1678,Petrol,145,50.4,2.0 6364, 2 Series,2019,26990,Automatic,4428,Petrol,145,50.4,1.5 6365, 3 Series,2019,28990,Semi-Auto,4100,Petrol,145,42.2,2.0 6366, 2 Series,2019,20460,Manual,1250,Diesel,145,51.4,2.0 6367, X5,2020,57990,Semi-Auto,1500,Diesel,145,37.7,3.0 6368, X5,2019,50882,Automatic,1764,Diesel,145,37.7,3.0 6369, Z4,2019,28450,Semi-Auto,5340,Petrol,145,38.2,2.0 6370, 3 Series,2019,28260,Automatic,4567,Diesel,145,52.3,2.0 6371, 2 Series,2018,26441,Semi-Auto,2772,Petrol,145,32.5,3.0 6372, X2,2019,28881,Semi-Auto,7922,Diesel,145,58.9,2.0 6373, 5 Series,2019,29982,Semi-Auto,3635,Petrol,145,47.9,2.0 6374, X5,2019,61682,Semi-Auto,10782,Diesel,145,33.6,3.0 6375, 5 Series,2019,27802,Semi-Auto,6891,Diesel,145,65.7,2.0 6376, 5 Series,2019,32102,Semi-Auto,11878,Diesel,145,60.1,3.0 6377, 5 Series,2014,14662,Semi-Auto,59317,Diesel,30,62.8,2.0 6378, 2 Series,2019,24160,Semi-Auto,2404,Diesel,145,65.7,2.0 6379, 2 Series,2019,19943,Manual,110,Petrol,145,42.8,1.5 6380, 2 Series,2019,19776,Manual,110,Petrol,145,42.8,1.5 6381, 2 Series,2019,23870,Semi-Auto,2513,Diesel,145,49.6,2.0 6382, 3 Series,2019,27180,Semi-Auto,3763,Petrol,145,42.2,2.0 6383, 1 Series,2019,25490,Semi-Auto,2510,Diesel,145,51.4,2.0 6384, X2,2019,27670,Semi-Auto,2480,Petrol,145,38.7,2.0 6385, 5 Series,2019,27840,Semi-Auto,3829,Petrol,145,50.4,2.0 6386, 2 Series,2019,24515,Semi-Auto,2501,Petrol,145,50.4,2.0 6387, 4 Series,2016,20832,Semi-Auto,12500,Diesel,125,60.1,2.0 6388, 1 Series,2019,20216,Automatic,7935,Diesel,145,65.7,2.0 6389, 3 Series,2017,23942,Automatic,16374,Petrol,145,47.1,2.0 6390, 4 Series,2017,19142,Semi-Auto,24471,Diesel,30,65.7,2.0 6391, 5 Series,2017,26262,Automatic,41074,Diesel,145,53.3,3.0 6392, M4,2015,30662,Semi-Auto,41120,Petrol,300,34.0,3.0 6393, 6 Series,2019,39146,Automatic,35,Petrol,145,29.1,3.0 6394, 4 Series,2015,22182,Semi-Auto,28373,Diesel,160,50.4,3.0 6395, 3 Series,2014,16882,Semi-Auto,41083,Diesel,125,57.6,3.0 6396, 3 Series,2019,26405,Semi-Auto,2000,Diesel,145,60.1,2.0 6397, X3,2019,34991,Semi-Auto,7646,Petrol,150,30.4,2.0 6398, 2 Series,2019,22991,Semi-Auto,7755,Diesel,150,65.7,2.0 6399, X3,2019,34551,Semi-Auto,7289,Petrol,150,30.4,2.0 6400, X2,2019,27685,Semi-Auto,9762,Diesel,145,50.4,2.0 6401, X5,2019,48602,Semi-Auto,7864,Diesel,145,37.7,3.0 6402, 2 Series,2019,26806,Semi-Auto,15,Petrol,145,47.9,2.0 6403, 2 Series,2019,25404,Semi-Auto,111,Diesel,145,65.7,2.0 6404, 1 Series,2016,14802,Semi-Auto,26804,Diesel,20,68.9,1.5 6405, 2 Series,2019,22594,Semi-Auto,8410,Diesel,145,48.7,2.0 6406, X2,2019,34173,Semi-Auto,4500,Petrol,145,34.0,2.0 6407, X3,2019,33292,Semi-Auto,6500,Diesel,145,54.3,2.0 6408, 2 Series,2019,24012,Semi-Auto,5000,Diesel,145,49.6,2.0 6409, 4 Series,2019,24522,Semi-Auto,11923,Petrol,145,48.7,2.0 6410, 4 Series,2019,27661,Semi-Auto,5452,Diesel,150,60.1,2.0 6411, Z4,2019,33991,Semi-Auto,10018,Petrol,150,37.2,2.0 6412, 2 Series,2019,23441,Semi-Auto,8683,Petrol,150,47.9,2.0 6413, X1,2017,16991,Semi-Auto,55535,Diesel,150,55.4,2.0 6414, 4 Series,2018,22500,Semi-Auto,6035,Diesel,145,65.7,2.0 6415, 3 Series,2018,22395,Semi-Auto,6502,Petrol,150,48.7,2.0 6416, X1,2019,24926,Automatic,4991,Diesel,145,60.1,2.0 6417, X2,2019,23726,Automatic,8848,Petrol,145,38.7,2.0 6418, 5 Series,2019,37376,Automatic,3348,Diesel,145,51.4,3.0 6419, 3 Series,2013,11632,Manual,27371,Petrol,160,44.8,2.0 6420, 3 Series,2018,22482,Automatic,8850,Diesel,145,60.1,2.0 6421, 3 Series,2017,21972,Semi-Auto,21870,Diesel,145,53.3,3.0 6422, 3 Series,2019,26484,Semi-Auto,10200,Petrol,145,41.5,2.0 6423, 4 Series,2018,24662,Semi-Auto,2422,Petrol,145,45.6,2.0 6424, 1 Series,2019,21145,Semi-Auto,6776,Petrol,145,47.9,2.0 6425, 2 Series,2019,23074,Semi-Auto,28,Petrol,145,50.4,1.5 6426, 2 Series,2019,22305,Semi-Auto,7978,Petrol,145,47.9,2.0 6427, 2 Series,2019,23806,Semi-Auto,8257,Petrol,145,47.9,2.0 6428, 2 Series,2019,24356,Automatic,7566,Petrol,145,47.9,2.0 6429, 3 Series,2019,24886,Automatic,7469,Petrol,145,43.5,2.0 6430, 2 Series,2019,24494,Semi-Auto,5499,Petrol,145,47.9,2.0 6431, 2 Series,2019,22406,Automatic,7899,Petrol,145,47.9,2.0 6432, 2 Series,2016,19995,Semi-Auto,15422,Petrol,205,43.5,2.0 6433, X5,2019,48995,Semi-Auto,6251,Diesel,150,37.7,3.0 6434, X6,2016,31995,Semi-Auto,39026,Diesel,205,47.1,3.0 6435, 2 Series,2019,23246,Semi-Auto,6139,Petrol,145,47.9,2.0 6436, X1,2019,24474,Semi-Auto,9044,Petrol,145,40.9,1.5 6437, X3,2019,34000,Automatic,5000,Diesel,145,54.3,2.0 6438, 3 Series,2019,29985,Automatic,5000,Diesel,145,52.3,2.0 6439, 3 Series,2019,29500,Automatic,3185,Petrol,145,42.2,2.0 6440, 5 Series,2020,35995,Semi-Auto,1000,Petrol,145,46.3,2.0 6441, X1,2019,28995,Semi-Auto,1000,Diesel,145,60.1,2.0 6442, 2 Series,2019,21274,Semi-Auto,9792,Petrol,145,38.7,1.5 6443, 2 Series,2019,21376,Automatic,8005,Petrol,145,38.7,1.5 6444, 2 Series,2019,25466,Automatic,6179,Diesel,145,46.3,2.0 6445, 8 Series,2019,63806,Automatic,1616,Diesel,145,39.8,3.0 6446, X7,2019,78386,Automatic,1793,Diesel,145,31.4,3.0 6447, 3 Series,2019,26524,Semi-Auto,11727,Petrol,145,41.5,2.0 6448, 5 Series,2019,28495,Automatic,677,Petrol,145,50.4,2.0 6449, X1,2016,18148,Semi-Auto,25401,Diesel,125,57.6,2.0 6450, 5 Series,2016,18672,Semi-Auto,25458,Diesel,145,55.4,3.0 6451, 1 Series,2020,11995,Semi-Auto,10,Petrol,150,34.5,2.0 6452, 4 Series,2016,15995,Semi-Auto,48552,Diesel,125,60.1,2.0 6453, 1 Series,2015,8998,Manual,51342,Diesel,0,83.1,1.5 6454, X1,2017,16333,Manual,24050,Diesel,125,58.9,2.0 6455, 3 Series,2019,28024,Semi-Auto,9665,Diesel,145,52.3,2.0 6456, 3 Series,2019,22482,Semi-Auto,10571,Diesel,145,62.8,2.0 6457, X2,2019,28874,Semi-Auto,5000,Diesel,145,58.9,2.0 6458, 3 Series,2019,24404,Semi-Auto,2571,Diesel,145,62.8,2.0 6459, 5 Series,2019,29042,Semi-Auto,3506,Diesel,145,62.8,2.0 6460, 3 Series,2019,23164,Semi-Auto,7749,Diesel,145,64.2,2.0 6461, 2 Series,2019,24054,Semi-Auto,7460,Petrol,145,47.9,2.0 6462, X1,2019,24485,Semi-Auto,9708,Petrol,145,46.3,1.5 6463, 3 Series,2019,29500,Automatic,5000,Petrol,145,42.2,2.0 6464, 3 Series,2019,31500,Automatic,9752,Diesel,145,49.6,2.0 6465, 1 Series,2019,31000,Semi-Auto,9888,Petrol,145,34.5,2.0 6466, 3 Series,2019,37750,Automatic,5000,Diesel,145,47.9,3.0 6467, M4,2019,48500,Semi-Auto,125,Petrol,145,32.5,3.0 6468, 2 Series,2019,25500,Automatic,5000,Petrol,145,40.9,1.5 6469, 4 Series,2017,22250,Semi-Auto,16613,Diesel,145,50.4,3.0 6470, X1,2019,25995,Semi-Auto,1000,Diesel,145,60.1,2.0 6471, 3 Series,2019,34995,Semi-Auto,2000,Diesel,145,47.9,3.0 6472, 4 Series,2020,35995,Semi-Auto,1000,Diesel,145,58.9,2.0 6473, 5 Series,2020,30995,Semi-Auto,1000,Diesel,145,65.7,2.0 6474, 5 Series,2019,32995,Automatic,2000,Diesel,145,60.1,2.0 6475, 3 Series,2015,14995,Automatic,34466,Petrol,125,51.4,2.0 6476, X1,2018,24995,Automatic,8493,Petrol,145,44.8,2.0 6477, 8 Series,2019,62995,Automatic,5883,Petrol,145,33.6,3.0 6478, 2 Series,2017,15995,Manual,30310,Petrol,125,52.3,1.5 6479, 1 Series,2013,10995,Semi-Auto,43818,Petrol,150,48.7,1.6 6480, 5 Series,2016,16495,Semi-Auto,40008,Diesel,30,62.8,2.0 6481, 3 Series,2019,26995,Automatic,2407,Diesel,145,57.6,2.0 6482, 5 Series,2019,28995,Automatic,13,Petrol,145,50.4,2.0 6483, 3 Series,2019,27995,Automatic,11204,Petrol,145,41.5,2.0 6484, 1 Series,2013,8555,Manual,55621,Diesel,30,62.8,2.0 6485, 3 Series,2015,12321,Semi-Auto,77241,Diesel,30,64.2,2.0 6486, M5,2016,30181,Semi-Auto,26000,Petrol,565,28.5,4.4 6487, 3 Series,2019,30962,Semi-Auto,3523,Diesel,145,48.7,2.0 6488, 5 Series,2017,26495,Semi-Auto,21704,Diesel,145,62.8,2.0 6489, 3 Series,2019,35995,Semi-Auto,2166,Hybrid,135,8.8,2.0 6490, 2 Series,2017,21995,Semi-Auto,22012,Petrol,200,39.8,3.0 6491, 1 Series,2015,14995,Manual,24470,Diesel,30,65.7,2.0 6492, 4 Series,2019,24995,Automatic,6963,Diesel,145,65.7,2.0 6493, 4 Series,2020,25995,Semi-Auto,100,Petrol,145,45.6,2.0 6494, 3 Series,2017,19995,Semi-Auto,9981,Diesel,150,62.8,2.0 6495, M3,2018,36995,Semi-Auto,28347,Petrol,150,34.0,3.0 6496, 5 Series,2017,19995,Semi-Auto,34828,Diesel,30,68.9,2.0 6497, X3,2017,24995,Semi-Auto,27782,Diesel,150,54.3,2.0 6498, 3 Series,2019,23995,Semi-Auto,9436,Diesel,150,67.3,2.0 6499, 3 Series,2019,26995,Semi-Auto,4183,Diesel,150,52.3,2.0 6500, 3 Series,2019,27995,Semi-Auto,10334,Diesel,150,52.3,2.0 6501, 5 Series,2019,38995,Semi-Auto,3383,Diesel,145,51.4,3.0 6502, 2 Series,2016,21995,Semi-Auto,22642,Petrol,260,35.8,3.0 6503, 5 Series,2017,28995,Semi-Auto,11035,Diesel,145,56.5,3.0 6504, 2 Series,2019,21995,Semi-Auto,3748,Petrol,145,47.9,2.0 6505, 1 Series,2019,30995,Semi-Auto,3244,Petrol,145,34.5,2.0 6506, 2 Series,2019,27995,Semi-Auto,3000,Diesel,145,47.1,2.0 6507, 1 Series,2019,22995,Manual,3000,Petrol,145,44.1,1.5 6508, X5,2016,28781,Automatic,35370,Diesel,205,47.1,3.0 6509, 2 Series,2017,13990,Manual,24893,Petrol,150,53.3,1.5 6510, 6 Series,2014,15750,Semi-Auto,62695,Diesel,165,51.4,3.0 6511, X5,2018,51999,Semi-Auto,15633,Petrol,145,25.4,4.4 6512, M5,2019,70686,Semi-Auto,3153,Petrol,145,24.1,4.4 6513, X3,2019,35215,Semi-Auto,4169,Petrol,145,30.4,2.0 6514, 2 Series,2019,23956,Automatic,10241,Diesel,145,49.6,2.0 6515, 5 Series,2019,32995,Semi-Auto,1000,Diesel,145,60.1,2.0 6516, X3,2019,59995,Semi-Auto,4741,Petrol,145,24.8,3.0 6517, 3 Series,2016,15995,Semi-Auto,39293,Diesel,30,62.8,2.0 6518, 2 Series,2019,21995,Semi-Auto,8640,Petrol,145,50.4,2.0 6519, 2 Series,2018,24995,Semi-Auto,10632,Petrol,145,39.8,3.0 6520, 3 Series,2016,21995,Semi-Auto,37625,Diesel,205,49.6,3.0 6521, 1 Series,2019,19995,Semi-Auto,17546,Diesel,150,68.9,1.5 6522, X4,2019,31995,Semi-Auto,7974,Diesel,150,42.8,2.0 6523, X1,2018,23995,Semi-Auto,14409,Petrol,150,40.9,1.5 6524, 4 Series,2020,29995,Semi-Auto,100,Diesel,145,55.4,3.0 6525, 3 Series,2020,32995,Manual,2356,Diesel,145,54.3,2.0 6526, 3 Series,2020,27995,Manual,1000,Diesel,145,54.3,2.0 6527, 5 Series,2017,29995,Semi-Auto,36107,Diesel,145,51.4,3.0 6528, 1 Series,2017,22995,Semi-Auto,24000,Petrol,145,39.8,3.0 6529, 3 Series,2017,16995,Semi-Auto,14404,Diesel,145,67.3,2.0 6530, M4,2020,45995,Semi-Auto,1500,Petrol,145,34.0,3.0 6531, 5 Series,2018,33995,Automatic,3001,Diesel,145,53.3,3.0 6532, 2 Series,2019,24995,Automatic,4740,Diesel,145,61.4,2.0 6533, 3 Series,2020,38995,Semi-Auto,1000,Diesel,145,49.6,2.0 6534, X6,2015,27995,Semi-Auto,40915,Diesel,200,44.8,3.0 6535, 3 Series,2019,33995,Semi-Auto,4953,Hybrid,135,8.8,2.0 6536, X5,2017,35995,Automatic,11197,Diesel,200,47.1,3.0 6537, 5 Series,2019,35995,Semi-Auto,11567,Hybrid,135,156.9,2.0 6538, 2 Series,2016,14995,Semi-Auto,42026,Petrol,145,48.7,2.0 6539, X4,2020,43995,Semi-Auto,2000,Petrol,145,26.9,3.0 6540, 2 Series,2020,25995,Semi-Auto,1000,Petrol,145,40.9,1.5 6541, 1 Series,2017,16995,Manual,34003,Petrol,145,46.3,2.0 6542, M6,2018,46995,Semi-Auto,8207,Petrol,145,28.5,4.4 6543, 1 Series,2017,23995,Semi-Auto,7409,Petrol,145,39.8,3.0 6544, 5 Series,2017,26995,Automatic,22379,Diesel,145,60.1,3.0 6545, 1 Series,2016,14995,Semi-Auto,15684,Petrol,30,55.5,1.5 6546, 2 Series,2019,26995,Automatic,8205,Petrol,145,32.5,3.0 6547, 5 Series,2019,31995,Automatic,10,Petrol,145,36.2,2.0 6548, 3 Series,2019,25995,Automatic,4258,Diesel,145,52.3,2.0 6549, X1,2018,23995,Semi-Auto,16876,Diesel,145,47.1,2.0 6550, X5,2016,36995,Automatic,36631,Diesel,235,42.8,3.0 6551, X3,2018,32995,Semi-Auto,30776,Diesel,145,48.7,3.0 6552, 1 Series,2017,21495,Semi-Auto,33311,Petrol,200,39.8,3.0 6553, 2 Series,2017,19995,Semi-Auto,20496,Petrol,30,55.4,1.5 6554, 1 Series,2017,12995,Manual,24263,Diesel,150,78.5,1.5 6555, X1,2018,25995,Automatic,17369,Diesel,145,60.1,2.0 6556, 4 Series,2019,25995,Automatic,1000,Diesel,145,65.7,2.0 6557, 1 Series,2017,17300,Manual,16127,Petrol,145,47.1,2.0 6558, X1,2016,21000,Automatic,13553,Petrol,160,44.8,2.0 6559, X6,2018,39994,Semi-Auto,15119,Diesel,145,40.9,3.0 6560, X2,2018,28494,Semi-Auto,13314,Diesel,145,58.9,2.0 6561, 3 Series,2017,17994,Semi-Auto,19452,Petrol,150,45.6,2.0 6562, 1 Series,2017,18494,Semi-Auto,17129,Petrol,150,47.9,2.0 6563, 1 Series,2017,21995,Semi-Auto,17820,Petrol,205,39.8,3.0 6564, X3,2015,17994,Semi-Auto,43626,Diesel,150,54.3,2.0 6565, 5 Series,2014,15995,Semi-Auto,34682,Diesel,125,60.1,2.0 6566, 7 Series,2016,24995,Semi-Auto,24446,Petrol,205,41.5,3.0 6567, 3 Series,2017,21500,Semi-Auto,47896,Diesel,200,49.6,3.0 6568, 1 Series,2017,19990,Automatic,24092,Petrol,145,39.8,3.0 6569, X3,2015,19599,Semi-Auto,44126,Diesel,200,47.1,3.0 6570, 4 Series,2018,26500,Semi-Auto,10305,Petrol,150,41.5,3.0 6571, 1 Series,2014,11995,Semi-Auto,23000,Petrol,125,50.4,1.6 6572, 3 Series,2015,11970,Semi-Auto,44533,Diesel,20,68.9,2.0 6573, 1 Series,2017,15495,Semi-Auto,6200,Petrol,145,55.5,1.5 6574, 1 Series,2019,18995,Semi-Auto,5975,Petrol,145,55.5,1.5 6575, 4 Series,2019,25995,Semi-Auto,13309,Diesel,145,60.1,2.0 6576, X2,2018,22995,Semi-Auto,24136,Petrol,145,38.7,2.0 6577, X5,2019,43716,Automatic,7163,Diesel,145,37.7,3.0 6578, 2 Series,2018,18216,Automatic,5193,Petrol,145,48.7,2.0 6579, 5 Series,2019,32896,Automatic,6071,Diesel,145,53.3,3.0 6580, X3,2019,31116,Automatic,8813,Diesel,145,54.3,2.0 6581, 5 Series,2019,30494,Semi-Auto,13098,Hybrid,135,156.9,2.0 6582, X5,2019,45994,Automatic,4943,Diesel,145,37.7,3.0 6583, 1 Series,2019,26995,Manual,2771,Petrol,150,41.5,1.5 6584, X1,2019,25406,Automatic,3796,Diesel,145,60.1,2.0 6585, 5 Series,2019,27916,Automatic,6456,Diesel,145,60.1,2.0 6586, X3,2019,31116,Automatic,8186,Diesel,145,54.3,2.0 6587, X5,2019,43796,Automatic,6742,Diesel,145,37.7,3.0 6588, X5,2019,43946,Automatic,6883,Diesel,145,37.7,3.0 6589, X5,2019,46740,Automatic,4399,Diesel,145,37.7,3.0 6590, 8 Series,2019,73890,Semi-Auto,3369,Petrol,150,26.7,4.4 6591, 3 Series,2019,37995,Semi-Auto,3437,Petrol,145,41.5,2.0 6592, M5,2019,70995,Semi-Auto,23,Petrol,145,24.1,4.4 6593, 3 Series,2019,33994,Semi-Auto,296,Diesel,145,49.6,2.0 6594, 3 Series,2019,41994,Semi-Auto,8754,Petrol,145,34.9,3.0 6595, 5 Series,2019,34994,Semi-Auto,1756,Diesel,145,51.4,3.0 6596, 2 Series,2019,26994,Automatic,13,Hybrid,135,113.0,1.5 6597, X5,2019,46666,Automatic,5127,Diesel,145,37.7,3.0 6598, X3,2019,31986,Automatic,8998,Diesel,145,54.3,2.0 6599, X5,2019,47156,Automatic,6480,Diesel,145,37.7,3.0 6600, 3 Series,2019,26826,Automatic,7015,Petrol,145,41.5,3.0 6601, 3 Series,2016,16500,Semi-Auto,41345,Diesel,150,56.5,3.0 6602, X1,2017,14600,Manual,40831,Diesel,145,68.9,2.0 6603, X5,2019,43706,Automatic,8093,Diesel,145,37.7,3.0 6604, X5,2019,43706,Automatic,8204,Diesel,145,37.7,3.0 6605, X5,2019,43716,Automatic,7329,Diesel,145,37.7,3.0 6606, X7,2019,67986,Automatic,5825,Petrol,145,24.8,3.0 6607, 1 Series,2019,20732,Semi-Auto,965,Petrol,145,54.3,1.5 6608, 4 Series,2019,26482,Semi-Auto,2124,Diesel,150,65.7,2.0 6609, 2 Series,2018,17995,Semi-Auto,17421,Diesel,145,60.1,2.0 6610, 6 Series,2016,22910,Semi-Auto,25596,Diesel,200,49.6,3.0 6611, 3 Series,2015,10370,Semi-Auto,75238,Petrol,125,54.3,1.5 6612, X1,2015,15560,Semi-Auto,40104,Diesel,125,57.6,2.0 6613, 4 Series,2013,11040,Manual,78402,Diesel,125,57.6,2.0 6614, 1 Series,2015,7540,Manual,79999,Diesel,0,83.1,1.5 6615, 1 Series,2017,17500,Semi-Auto,23863,Petrol,145,47.9,2.0 6616, X1,2016,21200,Automatic,6341,Petrol,160,44.8,2.0 6617, X4,2019,39990,Automatic,9210,Diesel,145,42.8,2.0 6618, X5,2019,47632,Semi-Auto,13156,Diesel,145,37.7,3.0 6619, X3,2019,33952,Semi-Auto,5974,Diesel,145,54.3,2.0 6620, 2 Series,2019,20263,Semi-Auto,5122,Petrol,145,53.3,1.5 6621, X5,2019,48143,Semi-Auto,9115,Diesel,145,37.7,3.0 6622, 1 Series,2016,17052,Semi-Auto,16264,Diesel,30,65.7,2.0 6623, X2,2019,24403,Manual,5884,Diesel,145,55.4,2.0 6624, X3,2019,33313,Semi-Auto,6224,Diesel,145,54.3,2.0 6625, 3 Series,2019,26103,Manual,6193,Diesel,145,54.3,2.0 6626, X5,2019,47712,Semi-Auto,11126,Diesel,145,37.7,3.0 6627, X3,2019,33262,Semi-Auto,8468,Diesel,145,54.3,2.0 6628, X5,2019,48422,Semi-Auto,7324,Diesel,145,37.7,3.0 6629, 3 Series,2019,30552,Semi-Auto,6294,Diesel,145,52.3,2.0 6630, X3,2019,35362,Semi-Auto,4186,Diesel,145,54.3,2.0 6631, X5,2019,51902,Semi-Auto,3224,Diesel,145,37.7,3.0 6632, 5 Series,2019,33562,Semi-Auto,2490,Diesel,145,60.1,2.0 6633, X5,2019,51232,Semi-Auto,5545,Diesel,145,37.7,3.0 6634, X5,2019,51822,Semi-Auto,3465,Diesel,145,37.7,3.0 6635, 3 Series,2019,28413,Semi-Auto,6223,Diesel,145,52.3,2.0 6636, X3,2019,35292,Semi-Auto,4599,Diesel,145,54.3,2.0 6637, 3 Series,2019,26836,Semi-Auto,6746,Diesel,145,52.3,2.0 6638, 2 Series,2019,23580,Semi-Auto,5122,Petrol,145,50.4,2.0 6639, 5 Series,2019,31995,Semi-Auto,6655,Diesel,145,60.1,2.0 6640, X5,2019,48766,Automatic,5701,Diesel,145,37.7,3.0 6641, 2 Series,2019,22490,Automatic,1500,Petrol,145,53.3,1.5 6642, X6,2019,64652,Automatic,4331,Petrol,145,26.4,3.0 6643, 4 Series,2019,30890,Semi-Auto,6100,Petrol,145,41.5,3.0 6644, X5,2019,45880,Semi-Auto,9000,Diesel,145,37.7,3.0 6645, 3 Series,2019,27195,Semi-Auto,4036,Diesel,145,52.3,2.0 6646, 1 Series,2019,19980,Semi-Auto,6102,Petrol,145,54.3,1.5 6647, 3 Series,2019,30052,Semi-Auto,6549,Diesel,145,52.3,2.0 6648, 3 Series,2019,30422,Semi-Auto,4429,Diesel,145,52.3,2.0 6649, 1 Series,2019,26991,Semi-Auto,2343,Petrol,145,40.4,1.5 6650, 5 Series,2019,31232,Semi-Auto,8691,Hybrid,150,60.1,2.0 6651, 5 Series,2019,30902,Semi-Auto,11421,Hybrid,150,60.1,2.0 6652, 1 Series,2019,18022,Semi-Auto,2501,Petrol,150,55.5,1.5 6653, X5,2019,50382,Semi-Auto,4846,Diesel,150,37.7,3.0 6654, X5,2019,43946,Automatic,5856,Diesel,145,37.7,3.0 6655, X5,2019,44266,Automatic,2308,Diesel,145,37.7,3.0 6656, X5,2019,43946,Automatic,5914,Diesel,145,37.7,3.0 6657, 1 Series,2019,30180,Automatic,5979,Diesel,145,48.7,2.0 6658, 4 Series,2019,30995,Automatic,1500,Petrol,145,41.5,3.0 6659, X5,2019,44866,Automatic,7259,Diesel,145,37.7,3.0 6660, X6,2019,58700,Automatic,9010,Diesel,145,34.9,3.0 6661, Z4,2016,17732,Semi-Auto,16761,Petrol,200,41.5,2.0 6662, 5 Series,2019,28110,Semi-Auto,6659,Diesel,145,65.7,2.0 6663, X3,2019,31736,Automatic,6579,Diesel,145,54.3,2.0 6664, X3,2019,31196,Automatic,10155,Diesel,145,54.3,2.0 6665, 3 Series,2019,33470,Semi-Auto,4500,Diesel,145,49.6,2.0 6666, 3 Series,2019,28220,Automatic,1500,Diesel,145,48.7,2.0 6667, 5 Series,2019,33900,Semi-Auto,3000,Diesel,145,56.5,3.0 6668, 5 Series,2019,28836,Automatic,2891,Diesel,145,60.1,2.0 6669, X4,2019,36390,Semi-Auto,8310,Diesel,145,42.8,2.0 6670, 5 Series,2019,27876,Automatic,11598,Diesel,145,60.1,2.0 6671, X3,2019,31826,Automatic,6314,Diesel,145,54.3,2.0 6672, X3,2019,32345,Semi-Auto,5865,Diesel,145,54.3,2.0 6673, X4,2019,42995,Automatic,5980,Diesel,145,37.2,3.0 6674, X4,2019,38995,Automatic,8610,Diesel,145,40.9,3.0 6675, 1 Series,2019,26580,Automatic,4604,Diesel,145,51.4,2.0 6676, X5,2019,44736,Semi-Auto,6056,Diesel,145,37.7,3.0 6677, X2,2019,27915,Semi-Auto,2946,Diesel,145,48.7,2.0 6678, X5,2019,46996,Automatic,6891,Diesel,145,37.7,3.0 6679, 4 Series,2019,27162,Automatic,4734,Petrol,145,48.7,2.0 6680, X1,2016,19161,Semi-Auto,21292,Diesel,125,57.6,2.0 6681, 5 Series,2016,15300,Semi-Auto,41052,Diesel,30,62.8,2.0 6682, X3,2019,33262,Semi-Auto,6792,Diesel,145,54.3,2.0 6683, X3,2019,33606,Automatic,6527,Diesel,145,54.3,2.0 6684, X5,2019,46496,Semi-Auto,11164,Diesel,145,37.7,3.0 6685, 2 Series,2019,21730,Automatic,5054,Petrol,145,39.2,1.5 6686, 3 Series,2019,24730,Semi-Auto,3049,Diesel,145,62.8,2.0 6687, X3,2019,33612,Semi-Auto,5852,Diesel,145,54.3,2.0 6688, X5,2019,47902,Semi-Auto,6171,Diesel,145,37.7,3.0 6689, X3,2019,33972,Semi-Auto,4809,Diesel,145,54.3,2.0 6690, 1 Series,2019,22491,Semi-Auto,8000,Petrol,145,48.7,2.0 6691, 5 Series,2019,30522,Semi-Auto,6371,Diesel,145,60.1,2.0 6692, 1 Series,2018,22072,Semi-Auto,7901,Diesel,145,47.9,2.0 6693, 3 Series,2019,28110,Automatic,1500,Petrol,145,42.2,2.0 6694, 2 Series,2019,28640,Semi-Auto,4400,Petrol,145,46.3,2.0 6695, X1,2019,31440,Semi-Auto,9507,Petrol,145,38.7,2.0 6696, 3 Series,2019,26782,Semi-Auto,5626,Petrol,150,42.2,2.0 6697, X2,2019,29991,Semi-Auto,3898,Petrol,150,39.2,2.0 6698, X1,2018,23961,Semi-Auto,21336,Petrol,150,44.8,2.0 6699, X5,2019,47213,Semi-Auto,9278,Diesel,145,37.7,3.0 6700, X5,2019,47123,Semi-Auto,8442,Diesel,145,37.7,3.0 6701, 1 Series,2015,13832,Semi-Auto,13600,Petrol,145,48.7,1.6 6702, X5,2019,48193,Semi-Auto,6776,Diesel,145,37.7,3.0 6703, X1,2014,12901,Semi-Auto,65912,Diesel,165,52.3,2.0 6704, 3 Series,2013,11511,Manual,68991,Diesel,125,58.9,2.0 6705, 1 Series,2019,24572,Semi-Auto,5916,Petrol,145,40.4,1.5 6706, X1,2017,20981,Semi-Auto,12224,Diesel,150,55.4,2.0 6707, 1 Series,2018,19381,Semi-Auto,4506,Petrol,150,48.7,2.0 6708, 2 Series,2017,15261,Manual,14143,Diesel,150,74.3,1.5 6709, X1,2014,12991,Semi-Auto,49445,Diesel,150,56.5,2.0 6710, 2 Series,2017,19994,Automatic,15076,Petrol,145,45.6,2.0 6711, 5 Series,2017,32995,Semi-Auto,23000,Diesel,150,51.4,3.0 6712, X5,2019,45463,Semi-Auto,5345,Diesel,145,37.7,3.0 6713, X5,2019,47193,Semi-Auto,6776,Diesel,145,37.7,3.0 6714, X3,2019,32302,Semi-Auto,4646,Diesel,145,54.3,2.0 6715, 5 Series,2019,32072,Semi-Auto,6215,Hybrid,145,60.1,2.0 6716, X5,2019,48302,Semi-Auto,7450,Diesel,145,37.7,3.0 6717, X5,2019,45152,Semi-Auto,7956,Diesel,145,37.7,3.0 6718, 3 Series,2015,21242,Semi-Auto,18283,Diesel,160,51.4,3.0 6719, X1,2019,23812,Automatic,15846,Petrol,145,37.7,2.0 6720, X6,2016,30891,Semi-Auto,21088,Diesel,200,47.1,3.0 6721, 1 Series,2019,24995,Manual,5085,Petrol,150,41.5,1.5 6722, X3,2019,37495,Semi-Auto,9250,Diesel,150,48.7,3.0 6723, 1 Series,2019,21995,Manual,4869,Petrol,150,44.8,1.5 6724, 1 Series,2019,17495,Semi-Auto,12375,Diesel,145,72.4,1.5 6725, 4 Series,2016,21000,Semi-Auto,37000,Petrol,200,41.5,3.0 6726, 4 Series,2015,18290,Semi-Auto,25000,Diesel,145,56.5,3.0 6727, X3,2014,14490,Semi-Auto,45000,Diesel,165,50.4,2.0 6728, X1,2016,20232,Semi-Auto,24592,Petrol,160,44.8,2.0 6729, X1,2019,29302,Semi-Auto,5795,Diesel,145,50.4,2.0 6730, X2,2019,21992,Manual,7189,Diesel,145,48.7,2.0 6731, X2,2018,20306,Manual,5438,Diesel,145,52.3,2.0 6732, X2,2019,24352,Semi-Auto,3011,Petrol,145,38.7,2.0 6733, M4,2018,39792,Semi-Auto,8797,Petrol,145,34.0,3.0 6734, X2,2018,23146,Manual,3752,Diesel,145,49.6,2.0 6735, 4 Series,2019,25400,Semi-Auto,7398,Petrol,145,48.7,2.0 6736, 4 Series,2019,25400,Semi-Auto,6370,Diesel,145,65.7,2.0 6737, M3,2015,32950,Semi-Auto,13537,Petrol,300,34.0,3.0 6738, X6,2019,66290,Automatic,1000,Petrol,145,26.4,3.0 6739, X4,2019,43995,Semi-Auto,4742,Diesel,145,40.9,3.0 6740, 2 Series,2019,21995,Semi-Auto,3000,Petrol,145,42.2,1.5 6741, X2,2019,29995,Semi-Auto,1920,Diesel,145,50.4,2.0 6742, 1 Series,2019,26880,Semi-Auto,4210,Diesel,145,51.4,2.0 6743, 3 Series,2013,16291,Semi-Auto,40900,Diesel,145,54.3,3.0 6744, 4 Series,2019,30532,Automatic,8402,Petrol,145,41.5,3.0 6745, 3 Series,2015,14952,Manual,31828,Petrol,200,43.5,2.0 6746, X7,2019,68720,Semi-Auto,5000,Diesel,145,33.6,3.0 6747, 1 Series,2019,21500,Manual,3251,Petrol,145,44.1,1.5 6748, X1,2016,21591,Semi-Auto,22070,Petrol,160,44.8,2.0 6749, X5,2019,56995,Automatic,3375,Diesel,145,37.7,3.0 6750, 1 Series,2020,32995,Semi-Auto,2797,Petrol,145,34.5,2.0 6751, X1,2020,28995,Semi-Auto,1600,Petrol,145,37.7,1.5 6752, 3 Series,2019,27980,Semi-Auto,7759,Petrol,145,42.2,2.0 6753, 1 Series,2019,24450,Manual,5793,Petrol,145,41.5,1.5 6754, X1,2019,27752,Semi-Auto,4475,Diesel,145,53.3,2.0 6755, 4 Series,2019,24622,Semi-Auto,2043,Diesel,145,65.7,2.0 6756, X1,2019,28950,Semi-Auto,3546,Diesel,145,60.1,2.0 6757, 1 Series,2019,24400,Manual,3024,Petrol,145,41.5,1.5 6758, X2,2019,30680,Automatic,1500,Diesel,145,58.9,2.0 6759, 4 Series,2020,42495,Semi-Auto,18,Diesel,150,58.9,2.0 6760, Z4,2019,28950,Automatic,8316,Petrol,145,38.7,2.0 6761, 2 Series,2018,17950,Semi-Auto,30000,Diesel,145,49.6,2.0 6762, X1,2017,20481,Semi-Auto,17285,Diesel,145,60.1,2.0 6763, 4 Series,2019,31260,Automatic,3000,Petrol,145,45.6,2.0 6764, M4,2019,45323,Semi-Auto,6397,Petrol,145,34.0,3.0 6765, 1 Series,2019,20330,Semi-Auto,9200,Diesel,145,67.3,2.0 6766, 1 Series,2019,19850,Semi-Auto,8000,Petrol,145,54.3,1.5 6767, 3 Series,2019,24591,Semi-Auto,9153,Diesel,145,60.1,2.0 6768, X2,2019,31991,Semi-Auto,8791,Diesel,145,61.4,2.0 6769, 6 Series,2019,31412,Semi-Auto,27713,Diesel,145,47.9,3.0 6770, 5 Series,2020,34795,Semi-Auto,102,Diesel,145,55.4,2.0 6771, M4,2017,34995,Semi-Auto,23250,Petrol,300,34.0,3.0 6772, 1 Series,2017,19295,Automatic,22595,Petrol,200,39.8,3.0 6773, 2 Series,2019,22894,Semi-Auto,5571,Petrol,145,39.2,1.5 6774, 4 Series,2017,25762,Automatic,23446,Diesel,145,49.6,3.0 6775, X5,2016,36602,Automatic,31525,Diesel,235,42.8,3.0 6776, X6,2017,48482,Semi-Auto,19924,Petrol,145,25.4,4.4 6777, 5 Series,2014,16402,Semi-Auto,21880,Diesel,125,57.6,2.0 6778, 2 Series,2016,17842,Automatic,31931,Diesel,145,55.4,2.0 6779, 3 Series,2017,19082,Automatic,17236,Petrol,145,48.7,2.0 6780, X1,2019,26786,Automatic,3012,Petrol,145,46.3,1.5 6781, X1,2017,19981,Semi-Auto,32286,Diesel,145,55.4,2.0 6782, 5 Series,2013,12732,Manual,28204,Diesel,30,62.8,2.0 6783, 1 Series,2019,24862,Semi-Auto,5810,Petrol,145,40.4,1.5 6784, 6 Series,2015,23552,Semi-Auto,26797,Diesel,160,49.6,3.0 6785, 2 Series,2018,21512,Semi-Auto,9005,Diesel,145,65.7,2.0 6786, X1,2018,24161,Semi-Auto,9261,Petrol,145,44.8,2.0 6787, 5 Series,2014,12941,Semi-Auto,68489,Diesel,125,57.6,2.0 6788, 1 Series,2017,15995,Semi-Auto,19164,Petrol,150,55.5,1.5 6789, X5,2020,63295,Semi-Auto,150,Diesel,150,33.6,3.0 6790, 4 Series,2017,18995,Manual,10594,Petrol,150,46.3,2.0 6791, 1 Series,2019,17990,Semi-Auto,5900,Diesel,150,72.4,1.5 6792, 5 Series,2019,24295,Semi-Auto,4982,Petrol,145,50.4,2.0 6793, X1,2017,21495,Semi-Auto,6550,Diesel,145,60.1,2.0 6794, X1,2016,20495,Semi-Auto,13200,Diesel,125,57.6,2.0 6795, 7 Series,2017,26995,Semi-Auto,25050,Diesel,145,57.6,3.0 6796, X6,2020,55890,Semi-Auto,9710,Diesel,145,34.9,3.0 6797, X2,2020,27890,Manual,10,Diesel,145,48.7,2.0 6798, 2 Series,2020,28890,Semi-Auto,6000,Petrol,145,39.8,3.0 6799, 3 Series,2020,43995,Semi-Auto,2252,Petrol,145,34.9,3.0 6800, X4,2019,39500,Automatic,155,Diesel,145,40.9,3.0 6801, 5 Series,2019,44995,Semi-Auto,1600,Diesel,145,51.4,3.0 6802, 5 Series,2019,26870,Semi-Auto,8560,Petrol,145,50.4,2.0 6803, X2,2019,27806,Semi-Auto,2198,Petrol,145,36.2,2.0 6804, X3,2019,55320,Automatic,7154,Petrol,145,24.8,3.0 6805, X2,2019,30960,Automatic,7021,Petrol,145,34.0,2.0 6806, X5,2014,27581,Automatic,35881,Diesel,240,44.8,3.0 6807, 1 Series,2016,11941,Manual,29378,Petrol,30,56.5,1.5 6808, 2 Series,2019,20746,Automatic,5063,Diesel,145,67.3,2.0 6809, X4,2019,34995,Semi-Auto,8098,Diesel,145,42.8,2.0 6810, X5,2018,50495,Semi-Auto,31855,Petrol,145,25.4,4.4 6811, 1 Series,2019,29995,Semi-Auto,4591,Petrol,145,34.5,2.0 6812, 2 Series,2019,19994,Automatic,2268,Petrol,145,42.2,1.5 6813, 1 Series,2019,27994,Semi-Auto,6879,Petrol,145,39.8,3.0 6815, X2,2019,27890,Semi-Auto,2724,Petrol,145,38.7,2.0 6816, 3 Series,2019,33995,Semi-Auto,3633,Petrol,145,41.5,2.0 6817, X3,2019,58994,Semi-Auto,3017,Petrol,145,24.8,3.0 6818, 1 Series,2019,28994,Semi-Auto,2973,Diesel,145,48.7,2.0 6819, 2 Series,2019,27016,Automatic,1402,Petrol,145,39.8,3.0 6820, 2 Series,2019,21576,Automatic,9794,Petrol,145,47.9,2.0 6821, X1,2016,21892,Semi-Auto,18307,Petrol,165,44.8,2.0 6822, 3 Series,2015,15482,Semi-Auto,22288,Diesel,125,58.9,2.0 6823, 2 Series,2017,14943,Automatic,15110,Petrol,145,55.4,1.5 6824, X1,2016,18101,Semi-Auto,33049,Diesel,125,57.6,2.0 6825, X4,2015,26332,Semi-Auto,8732,Diesel,205,47.9,3.0 6826, 1 Series,2017,16395,Semi-Auto,23400,Petrol,145,54.3,1.5 6827, 4 Series,2019,25995,Semi-Auto,7389,Petrol,145,48.7,2.0 6828, 3 Series,2016,16995,Semi-Auto,22594,Diesel,30,64.2,2.0 6829, 4 Series,2020,32995,Semi-Auto,10,Diesel,145,50.4,3.0 6830, 3 Series,2019,23295,Semi-Auto,4050,Petrol,145,47.9,2.0 6831, 1 Series,2019,26795,Semi-Auto,3788,Diesel,145,51.4,2.0 6832, 3 Series,2017,15295,Manual,41208,Diesel,30,67.3,2.0 6833, 5 Series,2018,25595,Semi-Auto,11646,Diesel,145,49.6,2.0 6834, 1 Series,2019,18995,Semi-Auto,5250,Petrol,145,55.5,1.5 6835, 1 Series,2019,21995,Semi-Auto,6441,Diesel,145,67.3,2.0 6836, X3,2013,16995,Semi-Auto,50567,Diesel,165,50.4,2.0 6837, 4 Series,2016,17994,Semi-Auto,21991,Petrol,150,48.7,2.0 6838, M5,2016,36494,Semi-Auto,25780,Petrol,565,28.5,4.4 6839, 2 Series,2018,20995,Semi-Auto,18000,Diesel,150,60.1,2.0 6840, 4 Series,2017,20995,Semi-Auto,17056,Diesel,150,65.7,2.0 6841, 2 Series,2017,22994,Semi-Auto,25219,Petrol,235,38.2,3.0 6842, 3 Series,2016,22494,Semi-Auto,24144,Diesel,160,51.4,3.0 6843, 1 Series,2020,27495,Semi-Auto,6000,Diesel,145,48.7,2.0 6844, 3 Series,2020,32890,Semi-Auto,6000,Diesel,145,49.6,2.0 6845, 1 Series,2020,33995,Semi-Auto,102,Petrol,145,34.5,2.0 6846, X1,2018,20995,Semi-Auto,8550,Diesel,145,60.1,2.0 6847, 1 Series,2017,20995,Semi-Auto,24650,Petrol,200,39.8,3.0 6848, X4,2017,26995,Semi-Auto,25350,Diesel,200,47.9,3.0 6849, X5,2015,25995,Automatic,46250,Diesel,200,47.1,3.0 6850, 2 Series,2016,20295,Semi-Auto,28271,Petrol,260,37.2,3.0 6851, 1 Series,2019,24795,Semi-Auto,11318,Petrol,145,39.8,3.0 6852, 2 Series,2018,20595,Semi-Auto,5500,Petrol,145,38.2,2.0 6853, 2 Series,2020,24995,Semi-Auto,2200,Petrol,145,50.4,2.0 6854, 5 Series,2019,33500,Automatic,3402,Diesel,145,60.1,3.0 6855, 3 Series,2019,30543,Semi-Auto,6294,Diesel,145,52.3,2.0 6856, 7 Series,2017,35495,Semi-Auto,14550,Petrol,145,35.3,4.4 6857, 6 Series,2016,25243,Semi-Auto,21050,Diesel,160,51.4,3.0 6858, X3,2017,24990,Semi-Auto,38350,Diesel,200,47.1,3.0 6859, X6,2019,69993,Semi-Auto,1402,Petrol,145,26.4,3.0 6860, X2,2020,38970,Semi-Auto,600,Diesel,145,58.9,2.0 6861, X3,2018,36995,Semi-Auto,9210,Petrol,145,34.5,3.0 6862, X3,2019,43863,Semi-Auto,4824,Petrol,145,34.5,3.0 6863, 4 Series,2016,19995,Semi-Auto,14530,Petrol,145,48.7,2.0 6864, X1,2016,20295,Semi-Auto,20800,Petrol,160,44.8,2.0 6865, 1 Series,2019,17695,Manual,3400,Petrol,145,52.3,1.5 6866, 4 Series,2020,42520,Semi-Auto,102,Diesel,145,65.7,2.0 6867, X1,2020,37320,Semi-Auto,102,Petrol,145,39.8,2.0 6868, X3,2020,35995,Semi-Auto,102,Diesel,145,54.3,2.0 6869, X5,2020,64995,Semi-Auto,102,Diesel,145,37.7,3.0 6870, 3 Series,2019,26989,Semi-Auto,4026,Diesel,145,53.3,3.0 6871, 1 Series,2019,19489,Manual,7931,Diesel,145,70.6,1.5 6872, X1,2017,17990,Semi-Auto,33000,Diesel,150,55.4,2.0 6873, 3 Series,2016,13990,Semi-Auto,68800,Diesel,30,64.2,2.0 6875, 1 Series,2015,11599,Manual,14714,Diesel,20,72.4,1.5 6877, X1,2016,17600,Semi-Auto,26382,Diesel,145,55.4,2.0 6878, 3 Series,2017,19460,Automatic,11076,Diesel,145,56.5,3.0 6879, 1 Series,2014,11200,Manual,45400,Diesel,30,64.2,2.0 6880, 6 Series,2016,23595,Semi-Auto,24600,Diesel,160,51.4,3.0 6881, X7,2019,72798,Semi-Auto,5349,Diesel,145,33.6,3.0 6882, 1 Series,2019,19895,Semi-Auto,5312,Petrol,145,54.3,1.5 6883, M4,2017,36595,Semi-Auto,10950,Petrol,145,34.0,3.0 6884, 8 Series,2020,61995,Semi-Auto,101,Diesel,145,40.4,3.0 6885, 2 Series,2019,21895,Semi-Auto,5536,Diesel,145,68.9,2.0 6886, 1 Series,2019,24990,Semi-Auto,3225,Petrol,145,40.4,1.5 6887, 5 Series,2019,34995,Semi-Auto,102,Petrol,145,50.4,2.0 6888, 4 Series,2019,25589,Automatic,4300,Petrol,145,48.7,2.0 6889, 1 Series,2019,18369,Manual,4410,Diesel,145,65.7,2.0 6890, X2,2019,27989,Semi-Auto,8942,Diesel,145,58.9,2.0 6891, 3 Series,2019,22869,Semi-Auto,11824,Diesel,145,54.3,2.0 6892, 3 Series,2019,26589,Semi-Auto,9988,Diesel,145,52.3,2.0 6893, 1 Series,2016,14589,Automatic,45000,Diesel,30,65.7,2.0 6894, X2,2020,38989,Semi-Auto,6000,Petrol,145,34.0,2.0 6895, 4 Series,2015,13950,Manual,25510,Petrol,160,46.3,2.0 6896, 1 Series,2020,25993,Semi-Auto,906,Petrol,145,40.4,1.5 6897, 2 Series,2018,23024,Semi-Auto,9579,Diesel,145,64.2,2.0 6898, X1,2017,19229,Semi-Auto,29866,Diesel,145,55.4,2.0 6899, 1 Series,2018,17995,Semi-Auto,14200,Petrol,145,36.7,1.5 6900, 3 Series,2019,32398,Semi-Auto,2150,Petrol,145,42.2,2.0 6901, 4 Series,2019,29641,Semi-Auto,6650,Petrol,145,48.7,2.0 6902, 1 Series,2019,19995,Semi-Auto,2604,Diesel,145,70.6,2.0 6903, X3,2016,21995,Semi-Auto,35700,Diesel,145,54.3,2.0 6904, M2,2019,40995,Semi-Auto,3500,Petrol,145,29.1,3.0 6905, 1 Series,2019,19689,Manual,1581,Diesel,145,70.6,1.5 6906, X7,2019,67989,Semi-Auto,17561,Petrol,145,24.8,3.0 6907, Z4,2019,30969,Automatic,5500,Petrol,145,38.7,2.0 6908, Z4,2019,32989,Semi-Auto,6000,Petrol,145,38.7,2.0 6909, X2,2019,30789,Semi-Auto,3795,Diesel,145,58.9,2.0 6910, 1 Series,2017,17985,Automatic,24229,Diesel,125,60.1,2.0 6911, X1,2017,20489,Automatic,6391,Diesel,145,65.7,2.0 6912, X2,2018,25969,Semi-Auto,12271,Diesel,145,61.4,2.0 6913, 3 Series,2020,34989,Semi-Auto,100,Diesel,145,50.4,2.0 6914, X4,2019,39450,Semi-Auto,7310,Diesel,145,40.9,3.0 6915, 3 Series,2019,34989,Semi-Auto,6000,Diesel,145,49.6,2.0 6916, 4 Series,2016,18669,Semi-Auto,16622,Petrol,160,44.8,2.0 6917, 1 Series,2016,19773,Semi-Auto,31661,Petrol,200,39.8,3.0 6918, X2,2019,27669,Semi-Auto,13440,Diesel,145,58.9,2.0 6919, 5 Series,2019,27489,Automatic,6499,Hybrid,135,156.9,2.0 6920, 4 Series,2019,25285,Semi-Auto,9212,Petrol,145,45.6,2.0 6921, X5,2019,44850,Automatic,12369,Diesel,145,37.7,3.0 6922, X5,2019,44850,Automatic,9740,Diesel,145,37.7,3.0 6923, X5,2019,44850,Semi-Auto,9341,Diesel,145,37.7,3.0 6924, X5,2019,44850,Automatic,12000,Diesel,145,37.7,3.0 6925, 5 Series,2019,30290,Automatic,5800,Hybrid,145,49.6,2.0 6926, 1 Series,2019,24850,Manual,3602,Petrol,145,41.5,1.5 6927, 1 Series,2019,30700,Automatic,7381,Petrol,145,34.5,2.0 6928, X5,2019,52995,Semi-Auto,5256,Petrol,145,27.2,3.0 6929, Z4,2020,32995,Semi-Auto,102,Petrol,145,38.7,2.0 6930, X5,2019,47975,Semi-Auto,6413,Diesel,145,37.7,3.0 6931, X3,2019,54595,Semi-Auto,1604,Petrol,145,24.8,3.0 6932, 3 Series,2020,37995,Semi-Auto,102,Petrol,145,40.4,2.0 6933, X4,2019,47541,Automatic,7555,Diesel,145,40.9,3.0 6934, X3,2019,40661,Automatic,3755,Diesel,145,54.3,2.0 6935, 2 Series,2019,29991,Automatic,1893,Petrol,145,47.9,2.0 6936, 1 Series,2019,23771,Manual,3559,Petrol,145,44.1,1.5 6937, 1 Series,2019,16995,Automatic,9399,Diesel,145,70.6,2.0 6938, 3 Series,2017,18489,Automatic,18374,Diesel,145,64.2,2.0 6939, 2 Series,2020,26989,Semi-Auto,3000,Petrol,145,47.9,2.0 6940, 7 Series,2020,55489,Semi-Auto,10300,Diesel,145,41.5,3.0 6941, X6,2020,59989,Semi-Auto,3000,Diesel,145,34.9,3.0 6942, 1 Series,2017,18642,Semi-Auto,28120,Diesel,125,60.1,2.0 6943, X5,2019,48190,Automatic,7580,Diesel,145,37.7,3.0 6944, 2 Series,2019,18580,Manual,6556,Petrol,145,40.9,1.5 6945, 3 Series,2019,31380,Automatic,7307,Diesel,145,49.6,2.0 6946, Z4,2019,29941,Semi-Auto,5465,Petrol,145,38.7,2.0 6947, 4 Series,2019,39200,Semi-Auto,6455,Petrol,145,39.2,3.0 6948, 1 Series,2019,23770,Automatic,7287,Petrol,145,42.8,1.5 6949, 5 Series,2019,31670,Automatic,11537,Diesel,145,62.8,2.0 6950, 4 Series,2019,25160,Semi-Auto,7208,Diesel,145,65.7,2.0 6951, 5 Series,2020,35793,Semi-Auto,15,Petrol,145,48.7,2.0 6952, 5 Series,2020,41995,Semi-Auto,100,Diesel,145,60.1,2.0 6953, 3 Series,2018,19895,Semi-Auto,13909,Diesel,145,60.1,2.0 6954, X3,2018,36451,Semi-Auto,10300,Diesel,145,48.7,3.0 6955, 2 Series,2020,33065,Semi-Auto,102,Diesel,145,49.6,2.0 6956, 3 Series,2020,42430,Semi-Auto,102,Diesel,145,50.4,2.0 6957, 1 Series,2018,17495,Semi-Auto,7700,Petrol,145,36.7,1.5 6958, X4,2020,60995,Semi-Auto,100,Petrol,145,24.8,3.0 6959, X1,2019,26995,Semi-Auto,4183,Diesel,145,65.7,2.0 6960, X2,2018,23995,Semi-Auto,21271,Diesel,145,58.9,2.0 6962, 3 Series,2020,39995,Semi-Auto,1898,Petrol,145,41.5,2.0 6963, 4 Series,2015,17995,Semi-Auto,44800,Diesel,145,53.3,3.0 6964, 2 Series,2019,28993,Semi-Auto,2236,Diesel,145,47.1,2.0 6965, X3,2020,52991,Semi-Auto,4360,Hybrid,135,5.5,2.0 6966, 2 Series,2019,24390,Semi-Auto,2469,Diesel,145,52.3,2.0 6967, X4,2019,38380,Automatic,3502,Diesel,145,42.8,2.0 6968, 2 Series,2019,19520,Automatic,2048,Diesel,145,51.4,2.0 6969, X2,2018,21726,Semi-Auto,5000,Diesel,145,50.4,2.0 6970, 1 Series,2018,17141,Semi-Auto,29869,Diesel,150,65.7,2.0 6971, 4 Series,2016,23671,Semi-Auto,26044,Diesel,205,47.9,3.0 6972, 4 Series,2018,21782,Semi-Auto,16701,Diesel,145,65.7,2.0 6973, 2 Series,2015,16922,Semi-Auto,29538,Petrol,200,43.5,2.0 6974, 7 Series,2019,55156,Automatic,4330,Diesel,145,41.5,3.0 6975, X3,2016,22981,Semi-Auto,33421,Diesel,150,54.3,2.0 6976, 3 Series,2018,21756,Automatic,7794,Petrol,145,47.9,2.0 6977, 6 Series,2016,26976,Automatic,17264,Petrol,325,32.1,4.4 6978, 3 Series,2015,22072,Semi-Auto,27536,Petrol,200,41.5,3.0 6979, 2 Series,2019,22160,Automatic,2000,Diesel,145,49.6,2.0 6980, X5,2019,43956,Semi-Auto,10175,Diesel,145,37.7,3.0 6981, Z4,2019,38156,Semi-Auto,3140,Petrol,145,33.2,3.0 6982, 3 Series,2019,38000,Automatic,7900,Petrol,145,34.9,3.0 6983, X1,2020,27995,Semi-Auto,2364,Diesel,145,65.7,2.0 6984, 3 Series,2020,34995,Semi-Auto,100,Petrol,145,42.2,2.0 6985, X5,2019,69995,Semi-Auto,1606,Hybrid,135,188.3,3.0 6986, 1 Series,2019,16695,Semi-Auto,5100,Diesel,145,72.4,1.5 6987, 2 Series,2019,21995,Semi-Auto,6100,Diesel,145,62.8,2.0 6988, 1 Series,2020,24995,Semi-Auto,102,Petrol,145,40.4,1.5 6989, 1 Series,2020,28455,Semi-Auto,102,Petrol,145,42.8,1.5 6990, 2 Series,2015,15882,Semi-Auto,23742,Petrol,125,51.4,1.5 6991, X1,2013,8595,Manual,72834,Diesel,160,51.4,2.0 6992, 5 Series,2014,11995,Automatic,36450,Diesel,30,62.8,2.0 6993, 2 Series,2018,19681,Semi-Auto,15609,Diesel,150,49.6,2.0 6994, 3 Series,2017,20991,Semi-Auto,26321,Diesel,150,56.5,3.0 6995, 5 Series,2015,16082,Semi-Auto,43836,Diesel,30,62.8,2.0 6996, 3 Series,2015,15981,Semi-Auto,33836,Diesel,125,60.1,2.0 6997, X2,2019,29960,Semi-Auto,6321,Diesel,145,58.9,2.0 6998, X5,2019,45840,Automatic,10923,Diesel,145,37.7,3.0 6999, 4 Series,2019,25866,Automatic,4767,Petrol,145,48.7,2.0 7000, X1,2019,27006,Automatic,3195,Diesel,145,60.1,2.0 7001, 3 Series,2019,33475,Semi-Auto,8576,Diesel,145,49.6,2.0 7002, 2 Series,2018,21991,Automatic,4828,Hybrid,135,113.0,1.5 7003, 3 Series,2017,18908,Semi-Auto,34134,Diesel,145,53.3,3.0 7004, 2 Series,2019,20000,Semi-Auto,10539,Petrol,145,47.9,2.0 7005, 2 Series,2019,26481,Manual,2033,Petrol,145,52.3,1.5 7006, 2 Series,2018,23702,Semi-Auto,25029,Petrol,145,39.8,3.0 7007, X5,2019,46756,Automatic,6650,Diesel,145,37.7,3.0 7008, 1 Series,2016,23412,Semi-Auto,9097,Petrol,200,39.8,3.0 7009, 1 Series,2019,32541,Automatic,4260,Diesel,145,48.7,2.0 7010, X6,2019,59991,Automatic,4509,Diesel,145,34.9,3.0 7011, X2,2019,33551,Automatic,4501,Petrol,145,39.2,2.0 7012, M5,2019,73990,Automatic,1501,Petrol,145,24.1,4.4 7013, X1,2019,34791,Semi-Auto,3796,Diesel,145,36.7,2.0 7014, X1,2015,12979,Semi-Auto,48102,Diesel,160,52.3,2.0 7015, 2 Series,2020,23789,Semi-Auto,1500,Petrol,150,50.4,1.5 7016, 1 Series,2014,14869,Semi-Auto,35093,Diesel,125,60.1,2.0 7017, 4 Series,2018,21789,Automatic,35423,Diesel,145,55.4,3.0 7018, 1 Series,2019,22949,Manual,1300,Petrol,145,44.1,1.5 7019, X2,2019,28980,Semi-Auto,14230,Diesel,145,58.9,2.0 7020, X1,2020,29476,Semi-Auto,100,Diesel,145,36.7,2.0 7021, X3,2019,54783,Semi-Auto,7536,Petrol,145,24.8,3.0 7022, 2 Series,2019,22395,Semi-Auto,2504,Diesel,145,68.9,2.0 7023, M4,2020,56995,Semi-Auto,1200,Petrol,145,32.5,3.0 7024, X7,2020,79566,Semi-Auto,1000,Petrol,145,24.8,3.0 7025, 1 Series,2019,17847,Manual,3731,Petrol,145,53.3,1.5 7026, 2 Series,2019,20657,Semi-Auto,4560,Petrol,145,50.4,1.5 7027, X5,2015,44814,Semi-Auto,22103,Petrol,570,25.4,4.4 7028, 1 Series,2019,35995,Semi-Auto,1000,Petrol,145,34.5,2.0 7029, 3 Series,2019,29995,Semi-Auto,1000,Petrol,150,42.2,2.0 7030, 3 Series,2016,20878,Semi-Auto,25145,Diesel,160,51.4,3.0 7031, 7 Series,2019,53000,Semi-Auto,3000,Diesel,145,41.5,3.0 7032, 4 Series,2017,21459,Semi-Auto,23039,Diesel,145,55.4,3.0 7033, 1 Series,2019,15495,Manual,2282,Petrol,145,53.3,1.5 7034, 2 Series,2019,22995,Manual,1000,Petrol,145,42.8,1.5 7035, 5 Series,2019,28395,Semi-Auto,1792,Diesel,145,62.8,2.0 7036, X1,2019,30995,Semi-Auto,1000,Diesel,145,60.1,2.0 7037, 4 Series,2019,30150,Semi-Auto,7701,Petrol,145,48.7,2.0 7038, 2 Series,2016,15591,Semi-Auto,68185,Diesel,125,60.1,2.0 7039, 1 Series,2014,11552,Semi-Auto,66449,Petrol,125,50.4,1.6 7040, 2 Series,2018,20642,Semi-Auto,6614,Petrol,145,36.2,2.0 7041, 1 Series,2017,15391,Semi-Auto,25131,Petrol,145,55.5,1.5 7042, X1,2015,15881,Semi-Auto,21992,Diesel,160,52.3,2.0 7043, X2,2019,40428,Semi-Auto,100,Petrol,145,34.0,2.0 7044, X7,2019,69995,Semi-Auto,5283,Diesel,145,33.6,3.0 7045, 6 Series,2016,26420,Semi-Auto,29403,Petrol,260,35.8,3.0 7046, 4 Series,2016,22540,Semi-Auto,24932,Diesel,160,49.6,3.0 7048, X1,2016,18286,Semi-Auto,35300,Diesel,125,57.6,2.0 7049, X5,2019,52995,Semi-Auto,5853,Diesel,145,37.7,3.0 7050, 7 Series,2017,35464,Semi-Auto,28338,Diesel,145,56.5,3.0 7051, X4,2016,26995,Semi-Auto,13005,Diesel,145,54.3,2.0 7052, X3,2016,21948,Semi-Auto,35621,Diesel,145,54.3,2.0 7053, 1 Series,2019,22995,Manual,1000,Petrol,145,44.1,1.5 7054, 3 Series,2017,15916,Manual,24669,Petrol,145,48.7,2.0 7055, X3,2016,24284,Semi-Auto,15497,Diesel,145,54.3,2.0 7056, 5 Series,2017,24908,Semi-Auto,8605,Diesel,145,65.7,2.0 7057, X3,2017,27947,Semi-Auto,33158,Diesel,200,47.1,3.0 7058, 2 Series,2016,15814,Semi-Auto,28966,Petrol,125,52.3,1.5 7059, 3 Series,2020,41755,Semi-Auto,1881,Petrol,150,34.9,3.0 7060, 3 Series,2020,32837,Semi-Auto,1370,Diesel,150,52.3,2.0 7061, M5,2018,59973,Semi-Auto,10455,Petrol,150,26.9,4.4 7062, 8 Series,2019,59694,Semi-Auto,2881,Petrol,150,31.7,3.0 7063, 2 Series,2019,29995,Semi-Auto,1089,Petrol,150,38.2,3.0 7064, M3,2015,34269,Semi-Auto,37249,Petrol,300,34.0,3.0 7065, 3 Series,2018,22978,Semi-Auto,8702,Petrol,145,46.3,2.0 7066, 1 Series,2017,21832,Semi-Auto,23114,Petrol,200,39.8,3.0 7067, 2 Series,2019,29995,Semi-Auto,460,Petrol,150,38.2,3.0 7068, 4 Series,2019,31995,Semi-Auto,1297,Diesel,145,58.9,2.0 7069, 4 Series,2019,31495,Semi-Auto,1133,Diesel,145,65.7,2.0 7070, X1,2018,25457,Semi-Auto,9421,Diesel,145,60.1,2.0 7071, X3,2019,35995,Semi-Auto,3708,Diesel,145,54.3,2.0 7072, 5 Series,2017,22993,Semi-Auto,23310,Diesel,160,51.4,2.0 7073, X5,2016,31929,Automatic,25701,Diesel,200,47.1,3.0 7074, X5,2015,27844,Automatic,44087,Diesel,200,47.1,3.0 7075, 3 Series,2017,18858,Semi-Auto,29190,Diesel,145,62.8,2.0 7076, 3 Series,2017,21472,Semi-Auto,43703,Diesel,160,51.4,3.0 7077, 2 Series,2017,19995,Semi-Auto,16266,Petrol,145,43.5,2.0 7078, 3 Series,2019,34836,Semi-Auto,8200,Diesel,145,48.7,2.0 7079, X6,2019,55995,Semi-Auto,1500,Diesel,145,34.9,3.0 7080, 1 Series,2019,18395,Semi-Auto,1060,Diesel,145,70.6,2.0 7081, 5 Series,2017,17659,Semi-Auto,31585,Diesel,30,62.8,2.0 7082, M4,2017,36820,Semi-Auto,27806,Petrol,145,34.0,3.0 7083, 2 Series,2016,17869,Semi-Auto,39955,Petrol,205,43.5,2.0 7085, 3 Series,2020,71990,Semi-Auto,150,Diesel,150,47.1,3.0 7086, 1 Series,2015,10250,Manual,35869,Petrol,125,53.3,1.5 7087, 3 Series,2017,23843,Semi-Auto,19888,Diesel,145,51.4,3.0 7088, 1 Series,2016,18854,Semi-Auto,21685,Diesel,125,60.1,2.0 7089, X1,2019,26468,Semi-Auto,4153,Diesel,145,65.7,2.0 7090, 5 Series,2019,31995,Semi-Auto,6111,Diesel,145,60.1,2.0 7091, 1 Series,2014,12995,Automatic,37390,Diesel,30,64.2,2.0 7092, 3 Series,2017,21495,Semi-Auto,47518,Diesel,160,51.4,3.0 7093, 3 Series,2018,24995,Semi-Auto,11350,Diesel,145,56.5,3.0 7094, X6,2020,55995,Semi-Auto,5000,Diesel,145,34.9,3.0 7095, 2 Series,2020,31995,Semi-Auto,1000,Diesel,145,62.8,2.0 7096, 2 Series,2020,29995,Semi-Auto,1000,Petrol,145,47.9,2.0 7097, Z4,2020,34995,Semi-Auto,1000,Petrol,145,38.7,2.0 7098, Z4,2020,32495,Semi-Auto,2200,Petrol,145,38.7,2.0 7099, 2 Series,2017,16990,Manual,13566,Diesel,30,64.2,2.0 7100, 3 Series,2018,22495,Automatic,13700,Diesel,145,62.8,2.0 7101, 3 Series,2017,20990,Semi-Auto,18309,Diesel,145,56.5,3.0 7102, 3 Series,2019,41995,Automatic,3000,Diesel,145,43.5,3.0 7103, 1 Series,2019,23450,Semi-Auto,5500,Petrol,145,42.8,1.5 7104, 3 Series,2020,33995,Semi-Auto,4000,Petrol,145,41.5,2.0 7105, 3 Series,2016,17995,Semi-Auto,56327,Diesel,145,53.3,3.0 7106, X5,2019,56995,Semi-Auto,3677,Diesel,145,33.6,3.0 7107, X4,2019,38997,Semi-Auto,10,Diesel,145,40.9,3.0 7108, 5 Series,2019,31990,Semi-Auto,14585,Hybrid,135,156.9,2.0 7109, 4 Series,2019,24995,Semi-Auto,1893,Diesel,145,60.1,2.0 7110, 2 Series,2019,22995,Semi-Auto,1000,Petrol,145,40.9,1.5 7111, 1 Series,2019,27995,Semi-Auto,101,Diesel,145,51.4,2.0 7112, X7,2020,77995,Semi-Auto,7500,Diesel,150,31.4,3.0 7113, 4 Series,2016,17995,Semi-Auto,24709,Diesel,30,65.7,2.0 7114, 2 Series,2020,30995,Semi-Auto,1000,Diesel,145,48.7,2.0 7115, 4 Series,2014,16995,Semi-Auto,25276,Diesel,145,56.5,2.0 7116, 1 Series,2013,8495,Manual,49711,Diesel,30,65.7,2.0 7117, 4 Series,2018,22995,Semi-Auto,7450,Diesel,145,55.4,3.0 7118, 4 Series,2015,21149,Semi-Auto,29627,Diesel,160,49.6,3.0 7119, 5 Series,2018,22495,Semi-Auto,19474,Diesel,145,62.8,2.0 7120, 1 Series,2019,18995,Semi-Auto,5955,Diesel,145,70.6,2.0 7121, 5 Series,2019,27995,Semi-Auto,15808,Petrol,145,48.7,2.0 7122, 5 Series,2014,14959,Semi-Auto,31039,Diesel,145,55.4,2.0 7123, 4 Series,2019,25995,Semi-Auto,1000,Diesel,145,60.1,2.0 7124, 1 Series,2019,24495,Manual,1000,Petrol,145,41.5,1.5 7125, 5 Series,2019,30995,Automatic,4000,Diesel,145,60.1,2.0 7126, 1 Series,2017,21995,Semi-Auto,15948,Petrol,200,39.8,3.0 7127, 1 Series,2020,36995,Semi-Auto,3000,Petrol,150,34.5,2.0 7128, X3,2019,32995,Semi-Auto,7200,Diesel,150,54.3,2.0 7129, X1,2017,24995,Semi-Auto,4645,Petrol,150,44.8,2.0 7130, 1 Series,2015,11995,Manual,30241,Diesel,20,72.4,1.5 7131, 3 Series,2016,13995,Manual,34328,Diesel,125,61.4,2.0 7132, 2 Series,2017,17495,Semi-Auto,15336,Petrol,125,48.7,2.0 7133, 1 Series,2018,17995,Manual,13132,Petrol,150,52.3,1.5 7134, 3 Series,2019,24995,Semi-Auto,7130,Petrol,150,47.9,2.0 7135, 4 Series,2019,23895,Semi-Auto,5630,Diesel,145,65.7,2.0 7136, 5 Series,2019,36995,Semi-Auto,6142,Petrol,145,39.2,3.0 7137, M4,2019,46995,Semi-Auto,5239,Petrol,145,34.0,3.0 7138, X7,2019,61875,Semi-Auto,5071,Diesel,145,33.6,3.0 7139, 3 Series,2018,21875,Semi-Auto,7509,Diesel,145,62.8,2.0 7140, 2 Series,2019,27995,Semi-Auto,7296,Petrol,145,39.8,3.0 7141, 3 Series,2017,16875,Semi-Auto,19493,Diesel,0,74.3,2.0 7142, X3,2015,21875,Semi-Auto,23000,Diesel,150,54.3,2.0 7143, 2 Series,2020,22875,Semi-Auto,8,Petrol,150,50.4,1.5 7144, 2 Series,2019,22475,Semi-Auto,5558,Petrol,150,50.4,2.0 7145, X1,2017,19875,Semi-Auto,26109,Diesel,145,55.4,2.0 7146, 3 Series,2018,21875,Semi-Auto,3582,Petrol,150,48.7,2.0 7147, 3 Series,2017,19875,Semi-Auto,20000,Diesel,150,64.2,2.0 7148, 5 Series,2019,26875,Semi-Auto,11794,Diesel,150,62.8,2.0 7149, 1 Series,2019,20875,Manual,7879,Petrol,145,44.1,1.5 7150, 1 Series,2019,20875,Manual,5599,Petrol,145,44.1,1.5 7151, 2 Series,2019,19875,Semi-Auto,17303,Diesel,145,51.4,2.0 7152, 4 Series,2018,20995,Automatic,3500,Diesel,145,55.4,3.0 7153, 1 Series,2014,13990,Manual,33580,Petrol,200,42.8,2.0 7154, X2,2019,29995,Semi-Auto,2315,Diesel,145,58.9,2.0 7155, 4 Series,2019,24990,Semi-Auto,1777,Diesel,145,58.9,2.0 7156, 2 Series,2016,14995,Automatic,35004,Diesel,30,64.2,2.0 7157, X1,2016,17995,Manual,31345,Diesel,125,60.1,2.0 7158, 3 Series,2018,24995,Semi-Auto,17173,Diesel,145,56.5,3.0 7159, X3,2016,21995,Automatic,41277,Diesel,145,54.3,2.0 7160, 4 Series,2015,16896,Semi-Auto,41000,Diesel,150,56.5,2.0 7161, 3 Series,2017,17995,Semi-Auto,27823,Petrol,150,44.1,2.0 7162, 2 Series,2019,20495,Manual,4467,Petrol,150,52.3,1.5 7163, 2 Series,2015,15995,Manual,19361,Diesel,30,64.2,2.0 7164, 3 Series,2020,34875,Semi-Auto,2000,Diesel,145,50.4,2.0 7165, X3,2020,35875,Semi-Auto,2000,Diesel,145,54.3,2.0 7166, 3 Series,2017,26475,Semi-Auto,28740,Diesel,200,49.6,3.0 7167, 2 Series,2019,22875,Semi-Auto,2144,Petrol,145,50.4,1.5 7168, 4 Series,2018,26875,Semi-Auto,6488,Diesel,145,51.4,3.0 7169, 1 Series,2017,16475,Manual,12194,Petrol,125,52.3,1.5 7170, 2 Series,2017,23875,Semi-Auto,16261,Petrol,145,39.8,3.0 7171, 3 Series,2018,21875,Semi-Auto,15769,Petrol,145,48.7,2.0 7172, 2 Series,2020,29995,Semi-Auto,1000,Petrol,145,47.9,2.0 7173, 1 Series,2017,14995,Semi-Auto,28921,Petrol,30,55.5,1.5 7174, 2 Series,2015,13000,Manual,24600,Petrol,145,47.9,2.0 7175, X5,2014,22150,Automatic,49450,Diesel,200,47.1,3.0 7176, 1 Series,2017,20495,Semi-Auto,27866,Petrol,145,39.8,3.0 7177, 1 Series,2019,17995,Manual,4658,Diesel,145,68.9,2.0 7178, X2,2018,21995,Semi-Auto,13056,Diesel,145,61.4,2.0 7179, 3 Series,2020,37875,Semi-Auto,2000,Diesel,145,47.9,3.0 7180, 2 Series,2019,20875,Manual,5907,Petrol,145,42.2,1.5 7181, 1 Series,2019,20875,Manual,8500,Petrol,145,44.1,1.5 7182, 1 Series,2019,20875,Manual,2832,Petrol,145,44.1,1.5 7183, 1 Series,2019,20875,Manual,4143,Petrol,145,44.1,1.5 7184, 1 Series,2019,20875,Manual,8464,Petrol,145,44.1,1.5 7185, 1 Series,2019,20875,Manual,5922,Petrol,145,44.1,1.5 7186, 1 Series,2019,20875,Manual,10532,Petrol,145,44.1,1.5 7187, 3 Series,2017,19875,Semi-Auto,16456,Petrol,145,46.3,2.0 7188, 6 Series,2017,29875,Semi-Auto,9769,Diesel,145,51.4,3.0 7189, 1 Series,2016,19875,Automatic,31800,Petrol,235,37.7,3.0 7190, X3,2018,29990,Semi-Auto,20087,Diesel,145,48.7,3.0 7191, 1 Series,2018,18000,Semi-Auto,7929,Petrol,150,36.7,1.5 7192, X3,2015,22000,Semi-Auto,26000,Diesel,205,47.9,3.0 7193, 4 Series,2018,22995,Automatic,18792,Petrol,145,45.6,2.0 7194, 2 Series,2019,29995,Semi-Auto,2069,Petrol,145,39.8,3.0 7195, 3 Series,2019,29495,Semi-Auto,5326,Diesel,145,53.3,3.0 7196, 1 Series,2019,21875,Manual,9086,Petrol,145,41.5,1.5 7197, 5 Series,2019,30875,Semi-Auto,2135,Petrol,145,48.7,2.0 7198, 1 Series,2020,28875,Semi-Auto,150,Petrol,145,42.8,1.5 7199, 3 Series,2020,29875,Semi-Auto,150,Petrol,145,42.2,2.0 7200, 5 Series,2016,22875,Semi-Auto,29286,Petrol,235,37.7,3.0 7201, 3 Series,2020,33875,Semi-Auto,2000,Petrol,145,40.4,2.0 7202, 3 Series,2020,34875,Semi-Auto,2000,Diesel,145,52.3,2.0 7203, X5,2020,44875,Semi-Auto,2000,Diesel,145,36.7,3.0 7204, 1 Series,2019,21875,Manual,9261,Petrol,145,41.5,1.5 7205, 1 Series,2017,15875,Manual,16000,Diesel,150,68.9,2.0 7206, 2 Series,2018,26875,Semi-Auto,8353,Petrol,150,32.5,3.0 7207, 2 Series,2019,20875,Manual,718,Petrol,150,54.3,1.5 7208, 1 Series,2019,23875,Semi-Auto,5693,Petrol,150,40.4,1.5 7209, X3,2019,39875,Semi-Auto,8988,Diesel,150,36.7,3.0 7210, X1,2019,27875,Semi-Auto,10001,Diesel,150,50.4,2.0 7211, 1 Series,2017,16185,Automatic,37834,Diesel,145,67.3,2.0 7212, 4 Series,2017,19485,Semi-Auto,40542,Diesel,30,65.7,2.0 7213, X1,2018,21995,Manual,7252,Petrol,145,51.4,1.5 7214, 3 Series,2018,20995,Semi-Auto,47386,Diesel,145,64.2,2.0 7215, 2 Series,2019,22495,Semi-Auto,5633,Diesel,145,49.6,2.0 7216, 3 Series,2015,16990,Semi-Auto,46890,Diesel,125,58.9,2.0 7217, 2 Series,2016,15062,Manual,19657,Diesel,20,68.9,1.5 7218, X5,2017,32990,Automatic,23010,Diesel,145,47.1,3.0 7219, 3 Series,2019,29995,Semi-Auto,3150,Petrol,145,42.2,2.0 7220, 2 Series,2020,22875,Semi-Auto,13,Petrol,150,50.4,1.5 7221, 1 Series,2019,20875,Manual,12845,Petrol,150,44.1,1.5 7222, 2 Series,2020,23985,Automatic,1968,Petrol,145,50.4,2.0 7223, 1 Series,2020,27445,Automatic,2047,Diesel,145,51.4,2.0 7224, 3 Series,2020,33285,Semi-Auto,4323,Diesel,145,50.4,2.0 7225, X3,2016,23875,Semi-Auto,31839,Diesel,145,54.3,2.0 7226, 2 Series,2020,26400,Semi-Auto,150,Petrol,145,42.2,1.5 7227, 2 Series,2019,21875,Semi-Auto,3995,Petrol,145,50.4,1.5 7228, 5 Series,2017,21295,Automatic,16774,Diesel,125,62.8,2.0 7229, 3 Series,2017,18495,Automatic,29681,Petrol,145,48.7,2.0 7230, 5 Series,2019,31485,Semi-Auto,3123,Diesel,150,60.1,3.0 7231, 3 Series,2020,34985,Semi-Auto,1987,Diesel,150,53.3,2.0 7232, 2 Series,2020,32895,Semi-Auto,1548,Petrol,150,36.2,2.0 7233, 2 Series,2019,22985,Semi-Auto,7836,Petrol,150,47.9,2.0 7234, Z4,2020,31895,Semi-Auto,10,Petrol,150,38.7,2.0 7235, 2 Series,2019,22895,Semi-Auto,8319,Diesel,150,51.4,2.0 7236, X5,2019,52875,Semi-Auto,10,Diesel,150,37.7,3.0 7237, X5,2019,52875,Semi-Auto,13,Diesel,150,37.7,3.0 7238, 2 Series,2020,21875,Semi-Auto,7,Petrol,150,50.4,1.5 7239, 1 Series,2019,21875,Manual,13252,Petrol,145,41.5,1.5 7240, X3,2019,40875,Semi-Auto,9045,Petrol,150,34.5,3.0 7241, 5 Series,2019,26875,Semi-Auto,12391,Diesel,150,62.8,2.0 7242, 3 Series,2018,20875,Semi-Auto,16969,Petrol,150,48.7,2.0 7243, 3 Series,2020,41485,Semi-Auto,2084,Diesel,145,43.5,3.0 7244, 3 Series,2019,34985,Automatic,2974,Diesel,145,47.9,3.0 7245, 3 Series,2019,34985,Automatic,10742,Diesel,145,48.7,2.0 7246, 2 Series,2020,25485,Semi-Auto,877,Diesel,145,64.2,2.0 7247, X1,2020,26895,Semi-Auto,1074,Diesel,145,40.9,2.0 7248, 2 Series,2019,19385,Automatic,8599,Petrol,145,40.9,1.5 7249, X3,2019,43875,Automatic,8200,Petrol,145,34.5,3.0 7250, X1,2019,28875,Semi-Auto,150,Petrol,145,35.3,2.0 7251, 5 Series,2017,19875,Semi-Auto,24655,Diesel,145,68.9,2.0 7252, 3 Series,2016,17875,Semi-Auto,27016,Hybrid,0,148.7,2.0 7253, 2 Series,2018,18475,Semi-Auto,14616,Petrol,145,50.4,1.5 7255, 1 Series,2018,14985,Manual,14530,Diesel,145,51.4,1.5 7256, 5 Series,2017,23895,Semi-Auto,24172,Hybrid,135,156.9,2.0 7257, 1 Series,2015,10485,Manual,66563,Diesel,20,68.9,2.0 7258, 1 Series,2018,15785,Semi-Auto,7229,Petrol,145,58.9,1.5 7259, X1,2017,20875,Semi-Auto,9637,Diesel,145,55.4,2.0 7260, 3 Series,2016,22475,Automatic,22533,Diesel,160,51.4,3.0 7261, i8,2018,55485,Automatic,13909,Hybrid,135,134.5,1.5 7262, 4 Series,2016,21985,Automatic,33074,Diesel,160,51.4,3.0 7263, 3 Series,2019,27285,Semi-Auto,11439,Petrol,145,40.9,2.0 7264, X1,2017,20685,Automatic,19116,Diesel,145,57.6,2.0 7265, 1 Series,2014,10985,Manual,42574,Diesel,30,64.2,2.0 7266, X1,2018,23485,Semi-Auto,11586,Diesel,145,60.1,2.0 7267, X1,2016,18895,Automatic,26083,Diesel,125,60.1,2.0 7268, 6 Series,2016,21485,Automatic,19411,Petrol,260,37.2,3.0 7269, 1 Series,2015,12285,Manual,42676,Diesel,30,65.7,2.0 7270, 1 Series,2016,15745,Automatic,17237,Petrol,125,54.3,1.5 7271, 3 Series,2020,28985,Semi-Auto,2958,Petrol,145,42.2,2.0 7272, 8 Series,2020,61485,Semi-Auto,6374,Diesel,145,26.7,3.0 7273, M4,2016,30485,Semi-Auto,32866,Petrol,300,34.0,3.0 7274, X1,2019,25285,Automatic,11884,Diesel,145,60.1,2.0 7275, X6,2020,55985,Semi-Auto,1365,Diesel,145,34.9,3.0 7276, 2 Series,2018,16875,Automatic,32618,Petrol,145,51.4,1.5 7277, X5,2019,46875,Semi-Auto,9438,Diesel,145,37.7,3.0 7278, X5,2019,46875,Semi-Auto,8318,Diesel,145,37.7,3.0 7279, 3 Series,2015,13875,Automatic,35697,Diesel,30,62.8,2.0 7280, X5,2019,46875,Semi-Auto,10834,Diesel,145,37.7,3.0 7281, 5 Series,2019,26875,Automatic,9029,Hybrid,135,156.9,2.0 7282, 5 Series,2019,26875,Automatic,10597,Hybrid,135,156.9,2.0 7283, 3 Series,2017,25475,Semi-Auto,27024,Diesel,145,51.4,3.0 7284, 5 Series,2002,1595,Automatic,115000,Petrol,325,28.5,2.2 7285, X3,2004,3495,Automatic,100000,Petrol,330,23.7,2.5 7286, 1 Series,2019,33400,Semi-Auto,3450,Petrol,145,34.5,2.0 7287, 3 Series,2019,30995,Semi-Auto,1000,Diesel,145,49.6,2.0 7288, X3,2019,38995,Semi-Auto,10,Diesel,145,54.3,2.0 7289, 3 Series,2017,17285,Manual,30761,Diesel,125,58.9,2.0 7290, 1 Series,2019,19895,Semi-Auto,13171,Diesel,150,67.3,2.0 7291, 3 Series,2007,8800,Manual,63000,Petrol,565,29.7,3.0 7292, 1 Series,2008,7475,Manual,59000,Diesel,110,58.9,2.0 7293, X1,2011,7498,Manual,69561,Diesel,160,49.6,2.0 7294, 1 Series,2017,21689,Automatic,17988,Petrol,145,39.8,3.0 7295, 5 Series,2019,29895,Semi-Auto,1000,Petrol,145,50.4,2.0 7296, 5 Series,2019,30995,Semi-Auto,1000,Diesel,145,60.1,2.0 7297, X6,2019,59995,Semi-Auto,101,Diesel,145,34.9,3.0 7298, 1 Series,2019,16695,Manual,4160,Petrol,145,53.3,1.5 7300, 4 Series,2016,18995,Semi-Auto,40340,Diesel,30,65.7,2.0 7301, 4 Series,2017,24295,Semi-Auto,27292,Diesel,160,49.6,3.0 7302, Z4,2015,22895,Semi-Auto,15768,Petrol,330,30.1,3.0 7303, 3 Series,2019,25895,Semi-Auto,7225,Diesel,150,52.3,2.0 7304, 3 Series,2019,23685,Semi-Auto,12288,Petrol,150,47.9,2.0 7305, 3 Series,2018,22895,Semi-Auto,33188,Diesel,150,53.3,3.0 7306, 4 Series,2020,29485,Semi-Auto,45,Diesel,150,52.3,3.0 7307, 7 Series,2014,18485,Semi-Auto,74269,Diesel,165,50.4,3.0 7308, 3 Series,2012,9995,Automatic,50000,Diesel,30,62.8,2.0 7309, 2 Series,2016,10700,Automatic,36500,Diesel,20,72.4,1.5 7310, 4 Series,2016,10995,Manual,103500,Diesel,30,67.3,2.0 7311, 5 Series,2016,15995,Automatic,23500,Diesel,20,68.9,2.0 7312, 5 Series,2019,30995,Semi-Auto,5271,Petrol,145,46.3,2.0 7313, 2 Series,2019,22995,Automatic,8646,Hybrid,135,148.7,1.5 7314, M4,2017,39950,Automatic,5735,Petrol,145,32.5,3.0 7315, 3 Series,2019,19995,Automatic,18253,Diesel,145,62.8,2.0 7316, M4,2018,51000,Automatic,3033,Petrol,145,33.6,3.0 7317, X5,2017,35995,Automatic,39060,Diesel,145,42.8,3.0 7318, 1 Series,2019,19995,Semi-Auto,11754,Diesel,145,68.9,1.5 7319, 1 Series,2019,23995,Manual,3148,Petrol,145,41.5,1.5 7320, 3 Series,2019,27990,Semi-Auto,12500,Diesel,145,48.7,2.0 7321, 2 Series,2020,26995,Semi-Auto,3500,Petrol,145,50.4,1.5 7322, 3 Series,2017,17495,Semi-Auto,23000,Petrol,145,48.7,2.0 7323, 3 Series,2020,37995,Semi-Auto,1000,Diesel,145,47.9,3.0 7324, X1,2016,13990,Manual,43529,Diesel,125,60.1,2.0 7325, 1 Series,2020,30995,Semi-Auto,1000,Diesel,145,48.7,2.0 7326, 3 Series,2019,29485,Semi-Auto,4686,Petrol,150,42.2,2.0 7327, 3 Series,2019,23285,Semi-Auto,11618,Diesel,150,54.3,2.0 7328, 3 Series,2019,21985,Semi-Auto,6659,Diesel,150,55.4,2.0 7329, 5 Series,2012,15000,Automatic,60300,Diesel,160,50.4,3.0 7330, 5 Series,2015,10995,Manual,94500,Diesel,125,58.9,2.0 7331, 3 Series,2019,25895,Semi-Auto,9754,Diesel,150,52.3,2.0 7332, 5 Series,2018,29895,Semi-Auto,1153,Petrol,150,37.7,2.0 7333, X1,2013,12685,Semi-Auto,60926,Diesel,160,52.3,2.0 7334, 5 Series,2020,30485,Semi-Auto,6,Petrol,145,50.4,2.0 7335, 5 Series,2019,30895,Semi-Auto,10707,Hybrid,135,156.9,2.0 7336, 1 Series,2019,18685,Semi-Auto,11423,Diesel,145,74.3,2.0 7337, X1,2015,8995,Manual,90000,Diesel,160,51.4,2.0 7338, 1 Series,2012,6795,Manual,75900,Diesel,30,62.8,2.0 7339, 3 Series,2011,4995,Manual,88850,Petrol,160,44.8,2.0 7340, 3 Series,2009,4500,Manual,97000,Diesel,125,58.9,2.0 7341, 3 Series,2009,3695,Automatic,123300,Petrol,200,44.1,2.0 7342, X3,2014,16250,Automatic,64500,Diesel,205,47.9,3.0 7343, X3,2011,9750,Automatic,71000,Diesel,165,50.4,2.0 7344, 1 Series,2013,6500,Manual,89000,Diesel,0,74.3,1.6 7345, 5 Series,2020,36985,Semi-Auto,12,Diesel,145,56.5,3.0 7346, 2 Series,2015,15685,Semi-Auto,24862,Diesel,30,64.2,2.0 7348, X1,2016,16690,Automatic,32333,Diesel,145,55.4,2.0 7349, 1 Series,2015,12990,Automatic,62338,Diesel,125,61.4,2.0 7350, X5,2016,29985,Automatic,80058,Diesel,235,42.8,3.0 7351, 3 Series,2019,23685,Semi-Auto,11454,Petrol,145,47.9,2.0 7352, 1 Series,2014,10285,Manual,41659,Petrol,145,50.4,1.6 7353, X1,2017,16485,Semi-Auto,56728,Diesel,145,65.7,2.0 7354, 3 Series,2014,14995,Manual,25372,Diesel,30,61.4,2.0 7355, 1 Series,2016,16195,Semi-Auto,21947,Diesel,20,68.9,1.5 7356, X1,2013,9695,Manual,44000,Diesel,125,57.6,2.0 7357, Z4,2006,3595,Manual,114000,Petrol,260,37.7,2.0 7358, 1 Series,2004,2495,Manual,112000,Diesel,200,49.6,2.0 7359, 1 Series,2019,17290,Automatic,17500,Diesel,150,68.9,1.5 7360, X5,2015,23990,Automatic,60749,Diesel,205,47.1,3.0 7361, 1 Series,2013,8977,Manual,63000,Diesel,0,74.3,1.6 7362, 1 Series,2018,13477,Manual,51000,Diesel,145,50.4,2.0 7363, 3 Series,2016,15995,Automatic,43000,Diesel,125,60.1,2.0 7364, 3 Series,2010,8399,Manual,45000,Diesel,195,49.6,3.0 7365, X4,2015,19290,Automatic,50323,Diesel,145,54.3,2.0 7366, 1 Series,2014,9290,Automatic,44446,Diesel,20,68.9,2.0 7367, X3,2006,4195,Manual,88000,Diesel,300,39.2,2.0 7368, 3 Series,2007,7995,Automatic,59000,Petrol,185,42.2,2.0 7369, 1 Series,2012,7995,Automatic,54792,Diesel,145,53.3,2.0 7370, X3,2016,23950,Automatic,20000,Diesel,145,54.3,2.0 7371, 2 Series,2019,17950,Manual,3387,Petrol,145,42.2,1.5 7372, 4 Series,2018,22950,Automatic,1300,Petrol,145,48.7,2.0 7373, 2 Series,2019,15750,Manual,9589,Petrol,145,40.9,1.5 7374, 4 Series,2015,13975,Automatic,70381,Diesel,145,55.4,3.0 7375, 6 Series,2015,31975,Automatic,38509,Petrol,555,28.5,4.4 7376, 4 Series,2017,17997,Automatic,20407,Diesel,145,65.7,2.0 7377, X1,2017,17795,Automatic,40787,Diesel,125,57.6,2.0 7378, 5 Series,2016,15475,Automatic,30227,Diesel,20,68.9,2.0 7379, 6 Series,2017,22475,Automatic,35357,Diesel,205,49.6,3.0 7380, 1 Series,2015,10875,Manual,35084,Diesel,20,68.9,2.0 7381, X1,2018,20950,Automatic,7000,Diesel,145,60.1,2.0 7382, 4 Series,2015,13495,Automatic,68787,Diesel,30,65.7,2.0 7383, 3 Series,2015,13675,Manual,34637,Petrol,200,41.5,2.0 7384, X5,2013,16975,Automatic,71098,Diesel,300,38.2,3.0 7385, 3 Series,2017,15475,Automatic,58913,Diesel,150,62.8,2.0 7386, 1 Series,2017,13975,Automatic,20206,Diesel,0,74.3,2.0 7387, X5,2017,29975,Automatic,23160,Diesel,150,47.1,3.0 7388, 1 Series,2016,14975,Automatic,25562,Diesel,20,68.9,1.5 7389, 1 Series,2019,16475,Manual,3510,Diesel,145,72.4,1.5 7390, X5,2011,10500,Automatic,87984,Diesel,305,38.2,3.0 7391, 1 Series,2011,4995,Manual,59326,Petrol,165,46.3,2.0 7392, 2 Series,2018,15995,Manual,28857,Diesel,150,54.3,1.5 7393, 3 Series,2015,8659,Manual,65412,Diesel,20,68.9,2.0 7394, M4,2016,76990,Automatic,4550,Petrol,300,33.2,3.0 7395, 5 Series,2016,13795,Automatic,65251,Diesel,125,60.1,2.0 7396, X4,2016,18995,Automatic,74001,Diesel,145,54.3,2.0 7397, 3 Series,2015,16995,Automatic,35973,Diesel,160,51.4,3.0 7398, 3 Series,2016,13995,Automatic,75179,Diesel,30,62.8,2.0 7399, 1 Series,2015,10775,Manual,40561,Diesel,20,68.9,2.0 7400, 1 Series,2016,17595,Automatic,51215,Petrol,205,39.8,3.0 7401, X5,2016,31950,Automatic,38000,Diesel,200,47.1,3.0 7402, X2,2019,25950,Automatic,3078,Petrol,145,36.2,2.0 7403, X3,2016,22950,Automatic,9000,Diesel,145,54.3,2.0 7404, 3 Series,2007,3495,Manual,130000,Petrol,200,44.8,2.0 7405, Z4,2003,3495,Automatic,70000,Petrol,325,29.7,3.0 7406, 1 Series,2014,12300,Automatic,41850,Diesel,30,64.2,2.0 7407, X1,2016,16700,Manual,30590,Diesel,125,60.1,2.0 7408, X4,2015,23500,Automatic,31723,Diesel,200,47.9,3.0 7409, 3 Series,2013,10500,Manual,68000,Diesel,30,61.4,2.0 7410, X3,2015,22250,Automatic,37000,Diesel,200,47.9,3.0 7411, 1 Series,2012,7500,Manual,62000,Petrol,145,49.6,1.6 7412, X1,2017,17599,Automatic,31691,Diesel,145,55.4,2.0 7413, 1 Series,2015,11000,Manual,37574,Diesel,20,72.4,1.5 7414, 4 Series,2015,16500,Automatic,29796,Diesel,30,65.7,2.0 7415, 4 Series,2015,21000,Automatic,21883,Petrol,260,37.2,3.0 7416, 1 Series,2015,12500,Manual,37584,Diesel,30,62.8,2.0 7417, 3 Series,2015,15500,Manual,23677,Diesel,125,60.1,2.0 7418, 3 Series,2015,14800,Manual,25481,Diesel,30,64.2,2.0 7419, 3 Series,2016,17400,Manual,21786,Petrol,125,45.6,2.0 7420, 1 Series,2017,14000,Manual,16791,Petrol,145,53.3,1.5 7421, X3,2016,22000,Automatic,34208,Diesel,145,54.3,2.0 7423, 3 Series,2016,13000,Manual,31474,Petrol,150,48.7,2.0 7424, X1,2017,17400,Automatic,18911,Diesel,145,65.7,2.0 7425, X1,2016,16000,Manual,20737,Diesel,125,60.1,2.0 7426, X1,2017,16395,Manual,25080,Diesel,125,58.9,2.0 7427, 3 Series,2008,5750,Automatic,100790,Diesel,165,51.4,2.0 7428, 3 Series,2006,2500,Manual,105000,Petrol,240,38.7,2.0 7429, 1 Series,2009,3500,Automatic,103735,Petrol,205,44.1,1.6 7430, 3 Series,2012,7000,Manual,94111,Diesel,30,62.8,2.0 7431, 3 Series,2010,6295,Manual,93261,Diesel,125,60.1,2.0 7432, 3 Series,2013,10750,Manual,56000,Diesel,125,60.1,2.0 7433, 3 Series,2016,17000,Automatic,48142,Diesel,145,53.3,3.0 7434, 2 Series,2017,18700,Automatic,17814,Petrol,145,47.9,2.0 7435, X1,2016,16000,Manual,47908,Diesel,125,60.1,2.0 7436, 2 Series,2017,16400,Automatic,22124,Hybrid,0,141.2,1.5 7437, 3 Series,2015,15000,Automatic,54593,Diesel,145,53.3,3.0 7438, 1 Series,2018,16500,Automatic,23011,Petrol,145,48.7,2.0 7439, X1,2016,16000,Manual,50402,Diesel,20,68.9,2.0 7440, 1 Series,2017,19700,Automatic,36069,Petrol,200,39.8,3.0 7441, 3 Series,2017,17600,Manual,9601,Diesel,145,64.2,2.0 7442, X1,2016,17200,Manual,26117,Diesel,125,60.1,2.0 7443, 2 Series,2016,13300,Manual,49753,Diesel,30,64.2,2.0 7444, 3 Series,2016,12600,Manual,47546,Diesel,30,67.3,2.0 7445, 3 Series,2017,20000,Automatic,29164,Hybrid,135,134.5,2.0 7446, 3 Series,2016,18000,Automatic,38984,Diesel,145,54.3,3.0 7447, 5 Series,2013,8595,Automatic,143624,Diesel,120,57.6,2.0 7448, X3,2006,3499,Manual,91000,Diesel,305,39.2,2.0 7449, 3 Series,2018,18480,Automatic,24043,Diesel,145,64.2,2.0 7450, 3 Series,2017,24950,Automatic,5000,Diesel,150,51.4,3.0 7451, 5 Series,2017,29250,Automatic,32000,Diesel,150,53.3,3.0 7453, 1 Series,2016,11675,Manual,28637,Petrol,125,53.3,1.5 7454, 3 Series,2017,14650,Automatic,64218,Diesel,30,64.2,2.0 7455, 4 Series,2015,18500,Manual,17000,Petrol,200,42.2,2.0 7456, 3 Series,2016,17500,Automatic,48000,Other,0,134.5,2.0 7457, X3,2016,18250,Automatic,68000,Diesel,145,54.3,2.0 7458, 3 Series,2017,19250,Automatic,69000,Diesel,160,51.4,3.0 7459, 2 Series,2016,20980,Automatic,17500,Petrol,200,39.8,3.0 7460, 1 Series,2015,10499,Manual,28200,Petrol,30,56.5,1.5 7461, 4 Series,2016,17999,Manual,11834,Diesel,125,57.6,2.0 7462, 1 Series,2013,7888,Manual,77419,Diesel,125,60.1,2.0 7463, 3 Series,2016,19950,Automatic,56000,Diesel,160,51.4,3.0 7464, 3 Series,2015,18500,Automatic,50000,Diesel,145,56.5,3.0 7465, 3 Series,2016,17150,Automatic,56000,Diesel,125,57.6,2.0 7466, X5,2014,18990,Automatic,97000,Diesel,200,47.9,3.0 7467, 1 Series,2017,15200,Manual,4000,Diesel,150,68.9,2.0 7468, 1 Series,2015,17500,Manual,42000,Petrol,305,35.3,3.0 7469, 3 Series,2009,4150,Manual,125000,Diesel,125,60.1,2.0 7470, X1,2015,14775,Manual,37679,Diesel,125,58.9,2.0 7471, 4 Series,2016,18475,Automatic,24650,Diesel,145,53.3,3.0 7472, 3 Series,2016,16775,Automatic,23442,Diesel,30,64.2,2.0 7473, X4,2017,22795,Automatic,40666,Diesel,145,54.3,2.0 7474, X6,2013,19795,Automatic,70650,Diesel,325,36.7,3.0 7475, X5,2014,19895,Automatic,40530,Diesel,200,45.6,3.0 7476, 1 Series,2013,9350,Manual,56000,Diesel,30,62.8,2.0 7477, 4 Series,2014,14950,Automatic,27000,Petrol,160,46.3,2.0 7478, M4,2017,35995,Manual,15500,Petrol,330,32.1,3.0 7479, 1 Series,2013,7488,Manual,89000,Diesel,30,65.7,2.0 7480, 1 Series,2013,10000,Manual,50248,Diesel,30,65.7,2.0 7481, 6 Series,2017,28900,Automatic,18000,Diesel,145,51.4,3.0 7482, 1 Series,2014,8400,Manual,81000,Diesel,30,65.7,2.0 7483, 1 Series,2016,11350,Manual,44000,Diesel,20,72.4,1.5 7484, X3,2016,20800,Manual,28000,Diesel,160,52.3,2.0 7485, X5,2012,19500,Automatic,37000,Diesel,300,37.7,3.0 7486, 3 Series,2009,6950,Manual,78000,Diesel,125,58.9,2.0 7487, 3 Series,2017,20950,Automatic,30000,Diesel,145,51.4,3.0 7488, X5,2015,22950,Automatic,80000,Diesel,200,47.1,3.0 7489, 5 Series,2017,21850,Automatic,33000,Diesel,145,65.7,2.0 7490, 3 Series,2011,9750,Automatic,44000,Diesel,145,53.3,2.0 7491, 4 Series,2017,13999,Manual,40000,Diesel,30,67.3,2.0 7492, 4 Series,2015,16000,Automatic,45000,Diesel,30,65.7,2.0 7493, 4 Series,2016,17500,Automatic,34993,Diesel,30,65.7,2.0 7494, 1 Series,2019,18500,Automatic,16189,Diesel,150,67.3,2.0 7495, 1 Series,2016,10850,Manual,44000,Petrol,125,53.3,1.5 7496, 1 Series,2016,11990,Manual,39000,Petrol,125,53.3,1.5 7497, 1 Series,2016,12500,Manual,32000,Petrol,125,53.3,1.5 7498, 5 Series,2014,12950,Automatic,53000,Diesel,125,60.1,2.0 7499, X3,2015,20500,Automatic,33000,Diesel,145,54.3,2.0 7500, 3 Series,2006,14500,Automatic,20000,Petrol,540,28.8,2.2 7501, 3 Series,2011,8500,Automatic,108000,Diesel,200,46.3,3.0 7502, 3 Series,2014,14000,Manual,41384,Petrol,200,41.5,2.0 7503, X5,2012,15500,Automatic,79100,Diesel,300,37.7,3.0 7504, 3 Series,2012,11500,Automatic,83850,Petrol,200,43.5,2.0 7505, 5 Series,2013,8500,Automatic,100400,Diesel,125,57.6,2.0 7506, 5 Series,2013,10750,Automatic,78500,Diesel,125,57.6,2.0 7507, X1,2014,8500,Manual,92500,Diesel,160,51.4,2.0 7508, 5 Series,2016,18250,Automatic,17000,Diesel,125,60.1,2.0 7509, X3,2015,20250,Automatic,42000,Diesel,145,54.3,2.0 7510, 5 Series,2010,9250,Automatic,105000,Diesel,235,43.5,3.0 7511, X3,2013,14750,Automatic,62000,Diesel,160,50.4,2.0 7512, 1 Series,2014,15750,Manual,53000,Petrol,300,35.3,3.0 7513, X3,2016,20750,Automatic,63000,Diesel,200,47.9,3.0 7514, X3,2015,19850,Automatic,54000,Diesel,145,54.3,2.0 7515, M3,2016,33750,Semi-Auto,33000,Petrol,300,34.0,3.0 7516, 2 Series,2016,13450,Manual,50000,Diesel,30,64.2,2.0 7517, 1 Series,2013,9750,Automatic,50000,Diesel,30,53.3,2.0 7518, 3 Series,2015,15450,Automatic,73000,Diesel,145,56.5,3.0 7519, 5 Series,2012,9250,Automatic,76000,Diesel,125,60.1,2.0 7520, 3 Series,2012,10500,Automatic,84000,Diesel,30,62.8,2.0 7521, 5 Series,2013,11550,Automatic,92000,Diesel,125,57.6,2.0 7522, 3 Series,2014,11750,Automatic,92000,Diesel,125,60.1,2.0 7523, 3 Series,2018,20800,Automatic,23217,Diesel,145,64.2,2.0 7524, 3 Series,2014,12800,Manual,51477,Diesel,125,57.6,2.0 7525, X4,2015,17000,Automatic,59016,Diesel,145,54.3,2.0 7526, 1 Series,2013,8700,Manual,57542,Diesel,30,62.8,2.0 7527, 3 Series,2018,21700,Automatic,20778,Diesel,145,57.7,2.0 7528, 1 Series,2015,14800,Automatic,40960,Diesel,125,61.4,2.0 7529, 3 Series,2017,24000,Automatic,28254,Diesel,145,51.4,3.0 7530, X1,2017,21800,Automatic,15313,Diesel,150,60.1,2.0 7531, 3 Series,2012,9990,Automatic,58000,Diesel,235,44.1,3.0 7532, 3 Series,2015,11490,Manual,26000,Diesel,30,67.3,2.0 7533, 4 Series,2015,15450,Automatic,67000,Diesel,30,65.7,2.0 7534, 3 Series,2013,10950,Automatic,58000,Diesel,145,53.3,2.0 7535, 1 Series,2013,9500,Manual,67000,Diesel,30,62.8,2.0 7536, X5,2015,25900,Automatic,50000,Diesel,200,47.1,3.0 7537, 5 Series,2012,9950,Manual,82000,Diesel,125,57.6,2.0 7538, 3 Series,2007,8750,Automatic,79000,Petrol,565,28.5,3.0 7539, 1 Series,2017,11950,Manual,53000,Diesel,20,72.4,1.5 7540, 3 Series,2017,19000,Automatic,30000,Diesel,145,64.2,2.0 7541, X5,2012,15900,Automatic,94000,Diesel,300,37.7,3.0 7542, 3 Series,2016,16500,Automatic,20000,Diesel,135,56.5,3.0 7543, 1 Series,2016,11750,Manual,43000,Diesel,0,83.1,1.5 7544, 2 Series,2015,14250,Manual,11000,Petrol,125,50.4,1.5 7545, 5 Series,2016,15750,Automatic,59000,Diesel,30,62.8,2.0 7546, X3,2015,20500,Automatic,35000,Diesel,145,54.3,2.0 7547, 3 Series,2016,10490,Manual,63000,Diesel,20,72.4,2.0 7548, 3 Series,2015,10990,Manual,50000,Diesel,30,67.3,2.0 7549, 3 Series,2015,14990,Automatic,66000,Diesel,145,53.3,3.0 7550, 1 Series,2015,9490,Manual,43000,Diesel,30,65.7,2.0 7551, 5 Series,2015,12490,Automatic,89000,Diesel,160,51.4,3.0 7552, 4 Series,2017,20490,Automatic,21000,Diesel,145,53.3,3.0 7553, 3 Series,2014,10490,Automatic,83000,Diesel,125,60.1,2.0 7554, 3 Series,2011,8500,Automatic,97000,Diesel,150,53.3,2.0 7555, 1 Series,2016,14250,Manual,40000,Petrol,125,52.3,1.5 7556, 3 Series,2016,15400,Manual,36000,Diesel,30,64.2,2.0 7557, 4 Series,2017,17500,Manual,30000,Diesel,145,62.8,2.0 7558, 5 Series,2003,14950,Automatic,37000,Petrol,325,26.4,3.0 7559, M3,2010,17750,Manual,79000,Petrol,570,22.8,4.0 7560, M3,2010,17650,Manual,81000,Petrol,570,22.8,4.0 7561, X3,2015,22950,Automatic,19000,Diesel,200,47.1,3.0 7562, M3,2004,14950,Automatic,55000,Petrol,315,23.3,3.2 7563, 4 Series,2015,15990,Automatic,36000,Petrol,160,46.3,2.0 7564, 3 Series,2013,11250,Automatic,94000,Diesel,150,55.4,2.0 7565, 1 Series,2010,7990,Automatic,60000,Diesel,145,53.3,2.0 7566, 5 Series,2015,12900,Automatic,82000,Diesel,30,62.8,2.0 7567, 3 Series,2016,17750,Automatic,28000,Diesel,30,64.2,2.0 7568, X1,2019,22500,Manual,7000,Petrol,150,51.4,1.5 7569, 3 Series,2016,16750,Automatic,46000,Diesel,30,64.2,2.0 7570, 4 Series,2016,14250,Automatic,57000,Diesel,30,65.7,2.0 7571, 1 Series,2015,10950,Manual,33000,Diesel,20,72.4,1.5 7572, M4,2016,39500,Automatic,800,Petrol,300,34.0,3.0 7573, 3 Series,2017,16500,Automatic,60000,Diesel,145,64.2,2.0 7574, 5 Series,2014,13990,Automatic,59000,Diesel,125,57.6,2.0 7575, 4 Series,2015,15490,Automatic,76000,Diesel,160,50.4,3.0 7576, X1,2015,12990,Automatic,57000,Diesel,160,51.4,2.0 7577, 1 Series,2015,8490,Manual,48000,Petrol,125,50.4,1.6 7578, X1,2013,8990,Manual,47000,Diesel,160,51.4,2.0 7579, 1 Series,2016,17990,Automatic,14000,Petrol,235,37.7,3.0 7580, 1 Series,2016,8990,Manual,45000,Diesel,20,72.4,1.5 7581, 1 Series,2016,11490,Manual,49000,Diesel,30,62.8,2.0 7582, 5 Series,2016,13990,Automatic,87000,Diesel,160,51.4,3.0 7583, 5 Series,2015,15490,Automatic,60000,Diesel,160,51.4,3.0 7584, X3,2012,10990,Automatic,90000,Diesel,160,50.4,2.0 7585, 3 Series,2016,15490,Automatic,44000,Diesel,30,62.8,2.0 7586, 1 Series,2015,8990,Manual,43000,Petrol,125,50.4,1.6 7587, 5 Series,2015,13990,Automatic,48000,Diesel,30,62.8,2.0 7588, 1 Series,2015,8990,Manual,39000,Petrol,30,56.5,1.5 7589, 5 Series,2015,13990,Automatic,25000,Diesel,20,68.9,2.0 7590, 1 Series,2015,9990,Manual,26000,Petrol,145,48.7,1.6 7591, 5 Series,2013,10490,Automatic,88000,Diesel,125,57.6,2.0 7592, 5 Series,2015,13490,Automatic,47000,Diesel,30,62.8,2.0 7593, 3 Series,2013,10990,Automatic,76000,Diesel,125,58.9,2.0 7594, X6,2013,16990,Automatic,80000,Diesel,300,37.7,3.0 7595, X3,2016,19990,Automatic,50000,Diesel,145,54.3,2.0 7596, 1 Series,2014,8490,Manual,59000,Diesel,30,65.7,2.0 7597, 5 Series,2014,12490,Automatic,59000,Diesel,125,57.6,2.0 7598, 5 Series,2014,13490,Automatic,39000,Diesel,125,57.6,2.0 7599, 5 Series,2012,11490,Automatic,82000,Diesel,160,51.4,3.0 7600, Z4,2014,12490,Manual,31000,Petrol,200,41.5,2.0 7601, 1 Series,2015,8490,Manual,49000,Petrol,125,50.4,1.6 7602, 3 Series,2011,6490,Manual,90000,Diesel,30,62.8,2.0 7603, 3 Series,2016,12990,Manual,53000,Diesel,30,64.2,2.0 7604, 3 Series,2013,9990,Manual,51000,Diesel,145,55.4,2.0 7605, 5 Series,2016,13990,Automatic,57000,Diesel,30,62.8,2.0 7606, 1 Series,2016,6990,Manual,86000,Diesel,20,68.9,2.0 7607, 1 Series,2015,8490,Manual,50000,Petrol,125,50.4,1.6 7608, 3 Series,2015,15990,Automatic,29000,Diesel,145,56.5,3.0 7609, 1 Series,2017,16490,Manual,31000,Petrol,260,36.2,3.0 7610, 3 Series,2012,8990,Manual,59000,Diesel,145,55.4,2.0 7611, 1 Series,2015,7490,Manual,83000,Diesel,20,68.9,2.0 7612, 7 Series,2015,25990,Automatic,52000,Diesel,145,56.5,3.0 7613, 5 Series,2015,13990,Automatic,64000,Diesel,145,56.5,2.0 7614, 2 Series,2016,18990,Automatic,22000,Petrol,235,38.2,3.0 7615, 4 Series,2017,17990,Manual,19000,Petrol,145,46.3,2.0 7616, 5 Series,2016,30990,Automatic,32000,Petrol,555,28.5,4.4 7617, 5 Series,2016,14990,Automatic,34000,Diesel,30,62.8,2.0 7618, 4 Series,2015,15490,Automatic,40000,Diesel,125,60.1,2.0 7619, 5 Series,2015,15990,Automatic,50000,Diesel,160,50.4,3.0 7620, X5,2013,20990,Automatic,81000,Diesel,200,45.6,3.0 7621, 1 Series,2017,15490,Automatic,26000,Diesel,125,61.4,2.0 7622, 3 Series,2016,20990,Automatic,35000,Diesel,160,51.4,3.0 7623, 5 Series,2016,15990,Automatic,53000,Diesel,160,51.4,3.0 7624, 1 Series,2015,7990,Manual,62000,Petrol,125,50.4,1.6 7625, 3 Series,2014,11490,Automatic,77000,Diesel,145,55.4,2.0 7626, 1 Series,2015,10490,Manual,30000,Diesel,20,70.6,1.5 7627, X3,2015,15490,Automatic,74000,Diesel,145,54.3,2.0 7628, 2 Series,2017,13490,Manual,28000,Diesel,125,60.1,2.0 7629, 3 Series,2012,8990,Manual,62000,Diesel,145,55.4,2.0 7630, 2 Series,2015,12990,Manual,36000,Petrol,145,47.1,1.5 7631, 5 Series,2017,24990,Automatic,42000,Diesel,145,53.3,3.0 7632, 2 Series,2016,16490,Manual,24000,Petrol,300,34.9,3.0 7633, 3 Series,2016,17990,Automatic,40000,Diesel,160,51.4,3.0 7634, 5 Series,2015,16490,Automatic,60000,Diesel,160,50.4,3.0 7635, 5 Series,2016,31990,Automatic,37000,Petrol,555,28.5,4.4 7636, 1 Series,2015,8990,Manual,74000,Diesel,30,65.7,2.0 7637, 1 Series,2012,7490,Automatic,75000,Diesel,30,62.8,2.0 7638, 3 Series,2014,11990,Automatic,91000,Diesel,145,55.4,2.0 7639, 3 Series,2015,10990,Automatic,68000,Diesel,20,70.6,2.0 7640, 3 Series,2011,7490,Manual,78000,Diesel,30,62.8,2.0 7641, 3 Series,2013,8990,Manual,80000,Diesel,125,60.1,2.0 7642, X5,2012,15490,Automatic,60000,Diesel,300,37.7,3.0 7643, Z4,2009,9490,Manual,76000,Petrol,325,30.1,3.0 7644, 3 Series,2015,10990,Automatic,85000,Diesel,125,61.4,2.0 7645, X3,2015,14490,Automatic,31000,Diesel,145,55.4,2.0 7646, 5 Series,2013,10490,Automatic,75000,Diesel,125,60.1,2.0 7647, 1 Series,2016,9490,Manual,42000,Petrol,125,53.3,1.5 7648, 3 Series,2011,9490,Automatic,59000,Diesel,235,44.1,3.0 7649, 4 Series,2015,14990,Automatic,41000,Diesel,30,65.7,2.0 7650, 1 Series,2016,8990,Manual,43000,Diesel,20,72.4,1.5 7651, 1 Series,2015,8990,Manual,47000,Petrol,125,53.3,1.5 7652, 3 Series,2016,13490,Manual,50000,Diesel,125,58.9,2.0 7653, 5 Series,2012,12990,Automatic,67000,Diesel,160,49.6,3.0 7654, 3 Series,2016,12490,Manual,25000,Diesel,30,67.3,2.0 7655, 4 Series,2016,32990,Automatic,28000,Petrol,300,34.0,3.0 7656, 3 Series,2012,10990,Automatic,47000,Diesel,235,44.1,3.0 7657, 1 Series,2015,8990,Manual,56000,Diesel,20,68.9,2.0 7658, 3 Series,2014,10990,Automatic,82000,Diesel,125,58.9,2.0 7659, X1,2013,7990,Manual,64000,Diesel,160,51.4,2.0 7660, 3 Series,2015,8490,Manual,83000,Diesel,125,62.8,2.0 7661, 4 Series,2017,15490,Automatic,51000,Diesel,30,65.7,2.0 7662, 5 Series,2015,15990,Automatic,56000,Diesel,160,50.4,3.0 7663, 3 Series,2013,11990,Automatic,73000,Diesel,125,57.6,3.0 7664, 3 Series,2013,8990,Automatic,75000,Diesel,145,53.3,2.0 7665, 1 Series,2015,8490,Manual,46000,Petrol,125,53.3,1.5 7666, 1 Series,2016,10490,Manual,51000,Diesel,20,70.6,1.5 7667, X1,2011,6990,Manual,92000,Diesel,145,54.3,2.0 7668, 5 Series,2013,10990,Automatic,75000,Diesel,125,57.6,2.0 7669, 1 Series,2012,6990,Manual,74000,Diesel,30,62.8,2.0 7670, 3 Series,2013,8990,Automatic,90000,Diesel,160,50.4,2.0 7671, X3,2011,8990,Automatic,90000,Diesel,160,50.4,2.0 7672, 5 Series,2015,11990,Automatic,76000,Diesel,30,62.8,2.0 7673, 1 Series,2016,10490,Manual,17000,Diesel,20,72.4,1.5 7674, 1 Series,2017,11990,Manual,12000,Diesel,145,72.4,1.5 7675, 5 Series,2014,11490,Automatic,73000,Diesel,125,57.6,2.0 7676, 1 Series,2015,10990,Manual,42000,Diesel,125,57.6,2.0 7677, 1 Series,2017,18490,Automatic,33000,Petrol,145,39.8,3.0 7678, 5 Series,2013,10990,Automatic,88000,Diesel,145,55.4,2.0 7679, 3 Series,2015,13490,Automatic,63000,Diesel,30,64.2,2.0 7680, 1 Series,2013,7990,Manual,65000,Diesel,30,65.7,2.0 7681, 5 Series,2016,13990,Automatic,37000,Diesel,30,62.8,2.0 7682, 1 Series,2016,9990,Manual,40000,Diesel,0,83.1,1.5 7683, 3 Series,2013,10990,Manual,98000,Diesel,30,62.8,2.0 7684, 3 Series,2014,12995,Manual,61000,Diesel,125,60.1,2.0 7685, 5 Series,2015,12490,Automatic,88000,Diesel,30,62.8,2.0 7686, 5 Series,2014,12490,Automatic,68000,Diesel,125,57.6,2.0 7687, X3,2012,12490,Automatic,70000,Diesel,160,50.4,2.0 7688, 5 Series,2017,20490,Automatic,33000,Diesel,145,65.7,2.0 7689, X5,2016,25990,Automatic,62000,Diesel,200,47.1,3.0 7690, 3 Series,2017,19990,Automatic,29000,Diesel,145,51.4,3.0 7691, 5 Series,2015,12990,Automatic,86000,Diesel,160,51.4,3.0 7692, 3 Series,2017,12490,Manual,26000,Petrol,125,52.3,1.5 7693, 1 Series,2015,9490,Manual,35000,Petrol,125,50.4,1.6 7694, 3 Series,2016,12490,Manual,32000,Diesel,30,67.3,2.0 7695, 3 Series,2014,10490,Automatic,76000,Diesel,30,62.8,2.0 7696, 4 Series,2014,9990,Manual,92000,Diesel,125,60.1,2.0 7697, 2 Series,2017,11990,Manual,22000,Petrol,145,52.3,1.5 7698, 5 Series,2015,13990,Automatic,52000,Diesel,30,62.8,2.0 7699, 3 Series,2017,21990,Automatic,24000,Diesel,145,49.6,3.0 7700, Z4,2014,11990,Manual,36000,Petrol,200,41.5,2.0 7701, 5 Series,2015,12990,Automatic,61000,Diesel,30,62.8,2.0 7702, 3 Series,2015,9490,Manual,76000,Diesel,20,68.9,2.0 7703, 1 Series,2016,16990,Automatic,26000,Petrol,235,37.7,3.0 7704, 5 Series,2016,12990,Automatic,80000,Diesel,30,62.8,2.0 7705, 5 Series,2015,10990,Automatic,96000,Diesel,30,62.8,2.0 7706, 3 Series,2016,17990,Automatic,36000,Diesel,160,51.4,3.0 7707, 1 Series,2015,10490,Manual,45000,Diesel,30,65.7,2.0 7708, 1 Series,2016,16990,Manual,23000,Petrol,260,36.2,3.0 7709, 2 Series,2015,11490,Manual,76000,Diesel,30,64.2,2.0 7710, 5 Series,2016,14490,Automatic,47000,Diesel,30,62.8,2.0 7711, 5 Series,2016,13990,Automatic,57000,Diesel,30,62.8,2.0 7712, 5 Series,2013,10490,Automatic,74000,Diesel,125,57.6,2.0 7713, X5,2016,24990,Automatic,34000,Diesel,200,47.9,3.0 7714, 3 Series,2013,10490,Automatic,95000,Diesel,125,58.9,2.0 7715, 3 Series,2011,7490,Manual,78000,Diesel,125,60.1,2.0 7716, 5 Series,2016,14490,Automatic,50000,Diesel,30,62.8,2.0 7717, 3 Series,2016,13990,Automatic,46000,Diesel,30,64.2,2.0 7718, X5,2015,24990,Automatic,48000,Diesel,200,47.1,3.0 7719, 3 Series,2012,8990,Manual,64000,Diesel,145,55.4,2.0 7720, 1 Series,2016,10490,Manual,36000,Diesel,20,68.9,2.0 7721, 1 Series,2016,11490,Manual,40000,Diesel,30,65.7,2.0 7722, 1 Series,2015,8990,Manual,40000,Diesel,20,72.4,1.5 7723, 6 Series,2016,20990,Automatic,34000,Diesel,200,49.6,3.0 7724, X1,2014,9490,Manual,50000,Diesel,160,51.4,2.0 7725, 1 Series,2015,10490,Manual,43000,Petrol,145,49.6,1.6 7726, 3 Series,2012,8990,Manual,65000,Diesel,125,60.1,2.0 7727, 3 Series,2015,12990,Manual,62000,Diesel,145,55.4,2.0 7728, 3 Series,2016,14990,Automatic,63000,Diesel,125,57.6,2.0 7729, X5,2015,22990,Automatic,53000,Diesel,200,47.1,3.0 7730, 1 Series,2013,9490,Automatic,63000,Diesel,160,51.4,2.0 7731, 3 Series,2016,18990,Automatic,38000,Diesel,160,51.4,3.0 7732, 5 Series,2016,12990,Automatic,89000,Diesel,125,60.1,2.0 7733, 3 Series,2013,7490,Manual,93000,Petrol,145,47.9,1.6 7734, X5,2015,24990,Automatic,60000,Diesel,200,47.1,3.0 7735, X5,2011,14990,Automatic,70000,Diesel,300,37.7,3.0 7736, X5,2012,12990,Automatic,92000,Diesel,300,38.2,3.0 7737, 3 Series,2011,7490,Manual,84000,Diesel,125,60.1,2.0 7738, 1 Series,2016,10490,Manual,25000,Diesel,20,72.4,1.5 7739, 3 Series,2013,10990,Automatic,62000,Diesel,30,62.8,2.0 7740, X5,2010,12990,Automatic,77000,Diesel,300,37.7,3.0 7741, 3 Series,2012,7490,Manual,81000,Diesel,30,61.4,2.0 7742, 3 Series,2010,9990,Automatic,55000,Diesel,235,44.1,3.0 7743, 3 Series,2016,9490,Manual,69000,Diesel,20,68.9,2.0 7744, 3 Series,2011,9990,Automatic,77000,Diesel,200,45.6,3.0 7745, 3 Series,2013,9490,Automatic,60000,Diesel,30,62.8,2.0 7746, 4 Series,2014,12490,Automatic,72000,Diesel,125,60.1,2.0 7747, X1,2014,9990,Automatic,68000,Diesel,145,56.5,2.0 7748, 1 Series,2013,6990,Manual,66000,Diesel,125,60.1,2.0 7749, X5,2019,47250,Automatic,3330,Diesel,150,37.7,3.0 7750, 8 Series,2019,65000,Automatic,11111,Petrol,150,26.9,4.4 7751, 2 Series,2015,12490,Manual,33000,Diesel,30,64.2,2.0 7752, 1 Series,2016,7490,Manual,84000,Diesel,20,72.4,1.5 7753, 1 Series,2016,11490,Manual,35000,Petrol,125,52.3,1.5 7754, 3 Series,2011,10490,Automatic,73000,Diesel,235,42.8,3.0 7755, 1 Series,2014,7990,Manual,42000,Petrol,145,50.4,1.6 7756, 5 Series,2015,15990,Automatic,38000,Diesel,160,51.4,3.0 7757, 5 Series,2015,15490,Automatic,45000,Diesel,160,51.4,3.0 7758, 5 Series,2019,31550,Automatic,1550,Hybrid,140,156.9,2.0 7759, X5,2019,49750,Automatic,5800,Diesel,150,37.7,3.0 7760, X5,2019,52500,Automatic,6283,Petrol,145,27.2,3.0 7761, 7 Series,2019,50850,Automatic,4202,Diesel,145,41.5,3.0 7762, 1 Series,2016,17950,Automatic,46704,Petrol,205,39.8,3.0 7763, 5 Series,2020,34750,Automatic,101,Diesel,145,60.1,3.0 7764, 2 Series,2016,11850,Manual,42281,Diesel,20,68.9,2.0 7765, 1 Series,2019,15750,Manual,8910,Diesel,145,78.5,1.5 7766, 3 Series,2019,26750,Automatic,6579,Petrol,150,42.2,2.0 7767, X3,2019,33350,Automatic,4020,Diesel,150,54.3,2.0 7768, X5,2019,61550,Automatic,11311,Diesel,150,33.6,3.0 7769, 3 Series,2015,13950,Automatic,71501,Diesel,145,56.5,3.0 7770, 5 Series,2014,11990,Automatic,85000,Diesel,125,57.6,2.0 7771, 5 Series,2020,26750,Automatic,101,Diesel,145,52.3,2.0 7772, 1 Series,2019,22500,Manual,2252,Petrol,145,41.5,1.5 7773, 3 Series,2020,41850,Automatic,101,Diesel,145,44.1,3.0 7774, Z4,2020,28500,Automatic,101,Petrol,145,38.7,2.0 7775, 7 Series,2019,51950,Automatic,1775,Diesel,145,41.5,3.0 7776, 3 Series,2019,30850,Automatic,7624,Diesel,145,48.7,2.0 7777, 5 Series,2017,21850,Automatic,34704,Diesel,150,65.7,2.0 7778, 3 Series,2014,13990,Automatic,85000,Diesel,145,55.4,2.0 7779, 3 Series,2010,8300,Manual,67000,Diesel,125,60.1,2.0 7780, 5 Series,2015,13990,Automatic,37000,Diesel,30,62.8,2.0 7781, 7 Series,2016,29990,Automatic,33000,Diesel,145,54.3,3.0 7782, 1 Series,2017,11490,Manual,31000,Diesel,20,68.9,2.0 7783, 1 Series,2015,8490,Manual,50000,Petrol,125,50.4,1.6 7784, 4 Series,2017,22500,Automatic,25168,Diesel,160,51.4,3.0 7785, X1,2019,30850,Automatic,6300,Diesel,145,50.4,2.0 7786, 5 Series,2017,27750,Automatic,15899,Diesel,145,57.7,2.0 7787, 2 Series,2015,10990,Automatic,30000,Petrol,125,53.3,1.5 7788, 1 Series,2017,11490,Manual,16000,Diesel,145,72.4,1.5 7789, 5 Series,2013,11990,Automatic,56000,Diesel,125,57.6,2.0 7790, 1 Series,2015,13490,Automatic,45000,Diesel,125,60.1,2.0 7791, 1 Series,2016,12490,Automatic,43000,Diesel,30,65.7,2.0 7792, 3 Series,2016,13990,Automatic,45000,Diesel,30,64.2,2.0 7793, 5 Series,2014,14490,Automatic,62000,Diesel,160,51.4,3.0 7794, 1 Series,2015,8990,Manual,39000,Diesel,20,72.4,1.5 7795, 5 Series,2016,14490,Automatic,52000,Diesel,30,62.8,2.0 7797, 5 Series,2019,31550,Automatic,18733,Hybrid,140,141.3,2.0 7798, 5 Series,2017,23950,Automatic,28629,Diesel,125,60.1,2.0 7799, 3 Series,2019,18950,Automatic,22500,Petrol,150,51.4,1.5 7800, 5 Series,2019,28950,Automatic,6800,Petrol,145,50.4,2.0 7801, 5 Series,2019,30850,Automatic,6000,Diesel,145,62.8,2.0 7802, X7,2019,62850,Automatic,9811,Diesel,145,33.6,3.0 7803, 5 Series,2019,38500,Automatic,7390,Petrol,145,39.2,3.0 7804, 5 Series,2019,30000,Automatic,16267,Hybrid,140,156.9,2.0 7805, X3,2015,20850,Automatic,36054,Diesel,145,54.3,2.0 7806, 6 Series,2017,26500,Automatic,31328,Diesel,145,51.4,3.0 7807, X2,2020,30000,Automatic,101,Petrol,145,42.2,1.5 7808, 5 Series,2019,31550,Automatic,1550,Hybrid,140,156.9,2.0 7809, 6 Series,2020,36550,Automatic,101,Petrol,145,42.8,2.0 7810, X3,2019,36750,Automatic,9701,Diesel,145,48.7,3.0 7811, X5,2019,51950,Automatic,5984,Petrol,145,27.2,3.0 7812, Z4,2019,32550,Automatic,824,Petrol,145,38.7,2.0 7813, 5 Series,2020,34550,Automatic,110,Diesel,145,44.8,2.0 7814, 2 Series,2019,25850,Automatic,5560,Diesel,150,48.7,2.0 7815, 5 Series,2019,28850,Automatic,1565,Diesel,145,60.1,2.0 7816, 5 Series,2019,28850,Automatic,1647,Diesel,145,60.1,2.0 7817, 5 Series,2019,28000,Automatic,1651,Diesel,145,65.7,2.0 7818, 5 Series,2019,32500,Automatic,7000,Diesel,145,55.4,2.0 7819, 3 Series,2019,33950,Automatic,9903,Diesel,145,47.9,3.0 7820, 7 Series,2019,55000,Automatic,8546,Diesel,145,41.5,3.0 7821, 5 Series,2019,34850,Automatic,1524,Hybrid,135,141.3,2.0 7822, 5 Series,2019,34850,Automatic,1522,Hybrid,135,141.3,2.0 7823, 5 Series,2019,34850,Automatic,1516,Hybrid,135,141.3,2.0 7824, X1,2019,31850,Automatic,3500,Petrol,145,38.7,2.0 7825, X5,2019,60000,Automatic,8700,Diesel,145,37.7,3.0 7826, 1 Series,2019,16450,Automatic,9964,Diesel,145,78.5,1.5 7827, Z4,2019,38250,Automatic,3066,Petrol,145,33.2,3.0 7828, 1 Series,2017,18500,Automatic,20148,Diesel,150,60.1,2.0 7829, 5 Series,2019,28000,Automatic,1662,Diesel,145,65.7,2.0 7830, 5 Series,2019,37950,Automatic,3141,Petrol,145,29.1,3.0 7831, 3 Series,2017,24750,Automatic,29449,Diesel,145,49.6,3.0 7832, X3,2018,30850,Automatic,6293,Diesel,145,56.5,2.0 7833, X3,2019,53950,Automatic,3512,Petrol,145,24.8,3.0 7834, 3 Series,2019,40000,Automatic,9735,Diesel,145,45.6,3.0 7835, 4 Series,2019,25950,Automatic,101,Petrol,145,48.7,2.0 7836, 3 Series,2019,30850,Automatic,6272,Diesel,145,48.7,2.0 7837, 6 Series,2019,32750,Automatic,9205,Diesel,145,44.1,2.0 7838, Z4,2020,31350,Automatic,111,Petrol,145,38.7,2.0 7839, X1,2019,29750,Automatic,6695,Diesel,150,50.4,2.0 7840, X2,2019,23950,Manual,4242,Petrol,150,42.8,1.5 7841, 3 Series,2016,20000,Automatic,39510,Petrol,205,41.5,3.0 7842, 5 Series,2016,15000,Automatic,33476,Diesel,20,68.9,2.0 7843, 1 Series,2017,14950,Manual,12519,Diesel,30,65.7,2.0 7844, 1 Series,2019,19850,Automatic,1555,Petrol,145,54.3,1.5 7845, 4 Series,2019,32000,Automatic,5177,Petrol,145,39.2,3.0 7846, 1 Series,2019,27750,Automatic,1947,Diesel,145,48.7,2.0 7847, X4,2019,40000,Automatic,3170,Petrol,145,26.9,3.0 7848, X3,2019,36500,Automatic,9770,Diesel,145,48.7,3.0 7849, 5 Series,2019,29450,Automatic,2701,Diesel,145,62.8,2.0 7850, 5 Series,2019,29550,Automatic,2220,Diesel,145,62.8,2.0 7851, 5 Series,2019,29850,Automatic,1550,Diesel,145,62.8,2.0 7852, 3 Series,2019,26750,Automatic,6504,Petrol,150,42.2,2.0 7853, 3 Series,2019,28500,Automatic,5513,Petrol,150,42.2,2.0 7854, 2 Series,2019,21750,Automatic,4416,Diesel,150,65.7,2.0 7855, 4 Series,2019,25850,Automatic,8675,Diesel,145,60.1,2.0 7856, 3 Series,2019,26850,Automatic,5900,Diesel,145,62.8,2.0 7857, 4 Series,2017,19950,Manual,19506,Petrol,145,40.9,2.0 7858, 3 Series,2018,26750,Automatic,8482,Petrol,145,41.5,3.0 7859, 5 Series,2019,28500,Automatic,9676,Hybrid,135,156.9,2.0 7860, 1 Series,2017,17350,Automatic,14386,Petrol,145,54.3,1.5 7861, Z4,2020,30000,Automatic,110,Petrol,145,38.7,2.0 7862, 5 Series,2018,20850,Automatic,22247,Diesel,145,68.9,2.0 7863, 2 Series,2015,13450,Manual,36359,Diesel,20,68.9,1.5 7864, 1 Series,2019,20950,Automatic,5573,Diesel,145,65.7,2.0 7865, 1 Series,2019,15750,Manual,9943,Diesel,145,78.5,1.5 7866, 2 Series,2019,21550,Automatic,6498,Diesel,150,67.3,2.0 7867, M5,2019,68850,Automatic,4359,Petrol,150,24.1,4.4 7868, 3 Series,2019,18550,Manual,7478,Petrol,150,49.6,1.5 7869, 7 Series,2019,53950,Automatic,8652,Diesel,145,41.5,3.0 7870, X5,2019,47500,Automatic,14391,Petrol,150,27.2,3.0 7871, X2,2018,25950,Automatic,10429,Diesel,145,58.9,2.0 7872, 3 Series,2016,20000,Automatic,51497,Diesel,160,51.4,3.0 7873, 2 Series,2019,30000,Automatic,4900,Diesel,145,62.8,2.0 7874, 7 Series,2017,30850,Automatic,19812,Diesel,145,53.3,3.0 7875, 1 Series,2019,19750,Automatic,7841,Diesel,145,67.3,2.0 7876, 2 Series,2019,18950,Manual,9806,Petrol,145,40.4,1.5 7877, 6 Series,2017,35000,Automatic,11541,Petrol,145,31.0,4.4 7878, 2 Series,2019,19750,Automatic,5141,Petrol,145,39.2,1.5 7879, 3 Series,2019,22750,Automatic,7005,Petrol,145,44.8,2.0 7880, 7 Series,2017,27500,Automatic,20671,Diesel,125,57.6,3.0 7881, 4 Series,2017,18950,Automatic,30145,Diesel,145,58.9,2.0 7882, X1,2019,25000,Automatic,4534,Petrol,145,46.3,1.5 7883, 1 Series,2019,20000,Automatic,5011,Diesel,145,67.3,2.0 7884, 1 Series,2017,17500,Automatic,9020,Diesel,150,65.7,2.0 7885, 3 Series,2016,20550,Automatic,26047,Petrol,200,41.5,3.0 7886, X3,2016,21950,Automatic,27702,Diesel,145,54.3,2.0 7887, 4 Series,2017,17500,Manual,39256,Diesel,145,62.8,2.0 7888, 4 Series,2019,25950,Automatic,296,Petrol,145,48.7,2.0 7889, 3 Series,2019,25950,Automatic,1517,Diesel,145,64.2,2.0 7890, 3 Series,2020,41850,Automatic,111,Petrol,145,34.9,3.0 7891, 1 Series,2019,15989,Automatic,7892,Petrol,145,55.5,1.5 7892, 6 Series,2014,16999,Automatic,29178,Diesel,160,50.4,3.0 7893, 2 Series,2019,25000,Automatic,4000,Petrol,145,47.9,2.0 7894, 4 Series,2019,30000,Automatic,4500,Diesel,145,60.1,2.0 7895, X2,2019,29950,Automatic,4300,Petrol,145,39.2,2.0 7896, 5 Series,2019,30000,Automatic,6172,Diesel,145,62.8,2.0 7897, 8 Series,2019,60000,Automatic,8000,Petrol,145,33.6,3.0 7898, 3 Series,2020,37250,Automatic,101,Diesel,145,47.9,3.0 7899, 2 Series,2020,25000,Automatic,101,Petrol,145,47.9,2.0 7900, 3 Series,2016,12878,Automatic,49620,Diesel,20,74.3,2.0 7901, 4 Series,2016,19999,Automatic,14408,Petrol,145,48.7,2.0 7902, 3 Series,2015,11309,Automatic,64797,Diesel,0,74.3,2.0 7903, 3 Series,2019,26950,Automatic,12777,Diesel,145,53.3,3.0 7904, X3,2016,20000,Automatic,43025,Diesel,200,47.9,3.0 7905, 2 Series,2015,16950,Automatic,22876,Petrol,160,44.1,2.0 7906, 3 Series,2017,22150,Automatic,6272,Diesel,145,51.4,3.0 7907, 3 Series,2019,19850,Automatic,11505,Petrol,145,51.4,1.5 7908, Z4,2019,40000,Automatic,2756,Petrol,145,33.2,3.0 7909, 5 Series,2019,26550,Automatic,10770,Diesel,145,62.8,2.0 7910, 3 Series,2015,10999,Manual,57693,Petrol,160,44.1,2.0 7911, 3 Series,2016,10200,Manual,60465,Diesel,20,68.9,2.0 7912, X1,2017,19750,Automatic,13733,Diesel,145,60.1,2.0 7913, X1,2017,13999,Manual,54650,Diesel,20,68.9,2.0 7914, X3,2019,32850,Automatic,4250,Petrol,145,30.4,2.0 7915, 3 Series,2017,21150,Automatic,17059,Hybrid,135,134.5,2.0 7916, X3,2018,30000,Automatic,9854,Diesel,145,56.5,2.0 7917, X1,2016,18500,Automatic,27418,Petrol,160,44.8,2.0 7918, 4 Series,2016,19500,Automatic,41553,Diesel,160,50.4,3.0 7919, 1 Series,2016,10494,Manual,41399,Diesel,20,72.4,1.5 7920, 1 Series,2016,10648,Manual,36669,Diesel,0,83.1,1.5 7921, 3 Series,2016,13042,Automatic,53760,Diesel,20,70.6,2.0 7922, 4 Series,2019,27950,Automatic,4900,Petrol,145,48.7,2.0 7923, 4 Series,2019,27950,Automatic,4700,Diesel,145,58.9,2.0 7924, X3,2019,36750,Automatic,9002,Diesel,145,54.3,2.0 7925, 4 Series,2019,26750,Automatic,8018,Petrol,145,45.6,2.0 7926, X2,2019,27950,Automatic,7971,Diesel,150,58.9,2.0 7927, 2 Series,2019,23450,Automatic,6127,Diesel,145,49.6,2.0 7928, X5,2019,47250,Automatic,6174,Diesel,145,37.7,3.0 7929, 1 Series,2019,14950,Manual,14735,Diesel,145,78.5,1.5 7930, 4 Series,2017,20999,Automatic,23312,Diesel,145,55.4,3.0 7931, 3 Series,2017,19499,Automatic,24472,Diesel,30,62.8,2.0 7932, 3 Series,2017,19299,Automatic,33206,Diesel,160,51.4,3.0 7933, 4 Series,2016,16689,Automatic,44982,Petrol,145,48.7,2.0 7934, 4 Series,2016,17499,Manual,26031,Diesel,30,62.8,2.0 7935, 2 Series,2014,11647,Manual,43960,Diesel,30,62.8,2.0 7936, 2 Series,2015,14908,Automatic,21062,Petrol,200,43.5,2.0 7937, 3 Series,2015,16559,Automatic,42199,Diesel,160,49.6,3.0 7938, 5 Series,2013,10999,Automatic,89693,Diesel,125,57.6,2.0 7939, 5 Series,2018,28500,Automatic,11162,Diesel,145,60.1,3.0 7940, 5 Series,2016,15797,Automatic,33689,Diesel,30,62.8,2.0 7941, 3 Series,2014,12692,Manual,33179,Petrol,200,43.5,2.0 7942, 3 Series,2017,16220,Manual,28796,Petrol,125,45.6,2.0 7943, 2 Series,2014,13227,Automatic,29236,Petrol,145,47.1,2.0 7944, 3 Series,2019,28500,Automatic,6072,Petrol,145,45.6,2.0 7945, 3 Series,2017,20950,Automatic,26916,Diesel,125,57.6,2.0 7946, 4 Series,2019,25000,Automatic,8016,Diesel,145,60.1,2.0 7947, Z4,2019,31500,Automatic,1682,Petrol,145,38.7,2.0 7948, 3 Series,2017,20500,Automatic,28580,Diesel,145,51.4,3.0 7949, X5,2019,52350,Automatic,4158,Petrol,145,27.2,3.0 7950, 1 Series,2016,10499,Manual,24877,Diesel,0,83.1,1.5 7951, 4 Series,2017,17557,Automatic,36564,Diesel,145,65.7,2.0 7952, X4,2019,38750,Automatic,9793,Diesel,145,42.8,2.0 7953, M6,2015,33500,Automatic,28314,Petrol,555,28.5,4.4 7954, 5 Series,2019,25850,Automatic,7999,Petrol,145,50.4,2.0 7955, 3 Series,2019,23950,Automatic,7951,Petrol,150,47.9,2.0 7956, 3 Series,2019,28500,Automatic,5109,Petrol,150,42.2,2.0 7957, 3 Series,2014,13350,Automatic,42686,Diesel,125,60.1,2.0 7958, X5,2016,29999,Automatic,36996,Diesel,200,47.1,3.0 7959, X5,2016,28299,Automatic,40732,Hybrid,0,85.6,2.0 7960, 6 Series,2017,23750,Automatic,39890,Diesel,145,49.6,3.0 7961, 1 Series,2014,9600,Manual,60586,Diesel,125,58.9,2.0 7962, 1 Series,2012,6500,Manual,58480,Diesel,125,58.9,2.0 7963, 4 Series,2015,14699,Manual,28334,Diesel,125,58.9,2.0 7964, 1 Series,2017,14275,Automatic,9078,Diesel,145,72.4,1.5 7965, 1 Series,2016,10999,Automatic,65141,Diesel,0,74.3,2.0 7966, 1 Series,2013,9899,Manual,32102,Petrol,145,50.4,1.6 7967, 1 Series,2013,9145,Manual,48399,Diesel,30,65.7,2.0 7968, 3 Series,2016,17850,Automatic,28702,Hybrid,0,134.5,2.0 7969, 1 Series,2018,15881,Manual,9774,Petrol,145,37.2,1.5 7970, 3 Series,2016,13999,Automatic,32986,Diesel,0,74.3,2.0 7971, X1,2017,16699,Manual,51835,Diesel,145,58.9,2.0 7972, 1 Series,2019,15989,Automatic,7880,Petrol,145,55.5,1.5 7973, 3 Series,2017,15899,Automatic,33642,Diesel,30,64.2,2.0 7974, 4 Series,2016,16299,Automatic,73740,Diesel,145,55.4,3.0 7975, 3 Series,2015,13999,Automatic,30585,Petrol,160,45.6,1.6 7976, 2 Series,2014,16999,Automatic,39573,Petrol,260,37.2,3.0 7977, 3 Series,2018,17399,Automatic,29433,Diesel,145,62.8,2.0 7978, 5 Series,2015,16899,Automatic,18641,Petrol,200,43.5,2.0 7979, 5 Series,2015,11999,Automatic,71973,Diesel,30,62.8,2.0 7980, 5 Series,2018,23200,Automatic,9621,Diesel,145,68.9,2.0 7981, 1 Series,2015,17999,Automatic,8064,Petrol,235,37.7,3.0 7982, X3,2014,17899,Automatic,55147,Diesel,200,47.1,3.0 7983, 4 Series,2016,17799,Automatic,20986,Diesel,125,60.1,2.0 7984, 4 Series,2014,16399,Automatic,58488,Diesel,160,50.4,3.0 7985, 1 Series,2018,14399,Manual,16518,Petrol,145,37.7,1.5 7986, 3 Series,2018,19999,Automatic,22510,Diesel,145,64.2,2.0 7987, 3 Series,2016,16479,Automatic,25709,Diesel,125,60.1,2.0 7988, 3 Series,2016,13799,Automatic,47262,Diesel,30,62.8,2.0 7989, 4 Series,2016,17999,Automatic,21280,Petrol,145,48.7,2.0 7990, 5 Series,2016,15995,Automatic,28608,Diesel,30,62.8,2.0 7991, 3 Series,2016,16699,Automatic,45089,Hybrid,0,134.5,2.0 7992, 3 Series,2018,17699,Automatic,23814,Diesel,145,64.2,2.0 7993, 1 Series,2017,11999,Manual,32140,Diesel,145,72.4,1.5 7994, X1,2016,20000,Automatic,18829,Petrol,160,44.8,2.0 7995, 3 Series,2016,13999,Manual,52713,Diesel,30,64.2,2.0 7996, 1 Series,2019,15199,Manual,8807,Petrol,145,53.3,1.5 7997, 5 Series,2013,11982,Automatic,60702,Diesel,125,57.6,2.0 7998, 1 Series,2013,9765,Automatic,52799,Diesel,30,64.2,2.0 7999, 2 Series,2018,20000,Automatic,18673,Diesel,145,47.1,2.0 8000, 4 Series,2018,20499,Automatic,9629,Petrol,145,45.6,2.0 8001, 3 Series,2015,11999,Automatic,29595,Diesel,30,62.8,2.0 8002, 3 Series,2016,13699,Automatic,72111,Diesel,30,62.8,2.0 8003, 3 Series,2018,22425,Automatic,4136,Petrol,145,46.3,2.0 8004, 6 Series,2013,17512,Automatic,43186,Diesel,160,49.6,3.0 8005, 3 Series,2017,17999,Automatic,31621,Diesel,145,53.3,3.0 8006, 3 Series,2014,10399,Manual,62714,Diesel,30,62.8,2.0 8007, X4,2017,18999,Automatic,68689,Diesel,145,54.3,2.0 8008, 5 Series,2014,13541,Automatic,67000,Diesel,145,55.4,2.0 8009, 3 Series,2016,13941,Automatic,41969,Diesel,30,67.3,2.0 8010, 5 Series,2013,11599,Automatic,58995,Diesel,200,48.7,3.0 8011, 5 Series,2016,16499,Automatic,33370,Diesel,125,60.1,2.0 8012, 3 Series,2016,11299,Manual,54662,Diesel,30,67.3,2.0 8013, 1 Series,2019,15989,Automatic,5553,Petrol,145,55.5,1.5 8014, 3 Series,2013,11385,Manual,46417,Diesel,30,62.8,2.0 8015, 2 Series,2018,14999,Manual,18483,Petrol,145,50.4,1.5 8016, X1,2016,19000,Automatic,27673,Diesel,145,55.4,2.0 8017, 2 Series,2017,15999,Automatic,63039,Hybrid,0,135.5,1.5 8018, 4 Series,2017,15600,Automatic,43290,Diesel,30,65.7,2.0 8019, 4 Series,2015,15700,Automatic,30401,Diesel,145,53.3,3.0 8020, 1 Series,2015,12399,Manual,25651,Petrol,125,52.3,1.5 8021, 1 Series,2014,10999,Manual,42169,Petrol,145,50.4,1.6 8022, 3 Series,2015,12999,Automatic,49018,Diesel,20,70.6,2.0 8023, 1 Series,2018,15999,Automatic,18899,Diesel,145,49.6,2.0 8024, 3 Series,2013,10699,Automatic,40022,Diesel,30,62.8,2.0 8025, 1 Series,2016,11800,Manual,43334,Diesel,30,65.7,2.0 8026, 3 Series,2014,12523,Automatic,31028,Petrol,200,43.5,2.0 8027, 3 Series,2018,18511,Automatic,19857,Petrol,145,48.7,2.0 8028, 2 Series,2014,11799,Manual,14264,Petrol,160,44.8,2.0 8029, 1 Series,2016,12392,Automatic,27986,Diesel,20,70.6,2.0 8030, 3 Series,2017,19299,Automatic,15873,Diesel,145,54.3,3.0 8031, X5,2014,21499,Automatic,47683,Diesel,200,49.6,2.0 8032, 1 Series,2019,22699,Automatic,14754,Petrol,145,39.8,3.0 8033, 7 Series,2016,26149,Automatic,26093,Diesel,145,53.3,3.0 8034, 1 Series,2015,8999,Manual,59828,Diesel,20,72.4,1.5 8035, X5,2018,30999,Automatic,31016,Diesel,145,47.1,3.0 8036, 1 Series,2016,11545,Manual,22780,Diesel,0,83.1,1.5 8037, 3 Series,2016,14999,Automatic,48380,Diesel,30,64.2,2.0 8038, 1 Series,2017,15214,Manual,16002,Petrol,145,52.3,1.5 8039, 1 Series,2018,19499,Automatic,8316,Diesel,145,44.1,2.0 8040, 1 Series,2015,10999,Manual,17544,Petrol,125,53.3,1.5 8041, 3 Series,2013,10559,Manual,64107,Diesel,30,61.4,2.0 8042, 4 Series,2017,19600,Automatic,19293,Diesel,145,65.7,2.0 8043, 1 Series,2015,15642,Automatic,47361,Petrol,235,37.7,3.0 8044, 5 Series,2016,15499,Automatic,34599,Diesel,30,62.8,2.0 8045, X1,2015,11399,Automatic,51526,Diesel,160,52.3,2.0 8046, X1,2018,22499,Automatic,11124,Diesel,145,60.1,2.0 8047, 5 Series,2017,20999,Automatic,35431,Diesel,145,65.7,2.0 8048, 3 Series,2015,14199,Automatic,62051,Diesel,145,56.5,3.0 8049, 3 Series,2017,18500,Automatic,29130,Hybrid,135,148.7,2.0 8050, X3,2015,16348,Automatic,88187,Diesel,200,47.1,3.0 8051, 3 Series,2015,10145,Manual,55851,Diesel,20,68.9,2.0 8052, 3 Series,2016,14596,Manual,18271,Petrol,160,45.6,2.0 8053, 3 Series,2016,14022,Automatic,72820,Hybrid,0,134.5,2.0 8054, 3 Series,2013,8999,Automatic,69172,Diesel,20,68.9,2.0 8055, 2 Series,2015,11499,Manual,48937,Diesel,30,62.8,2.0 8056, X3,2013,9549,Manual,67652,Diesel,160,50.4,2.0 8057, 5 Series,2016,13254,Automatic,68816,Diesel,30,62.8,2.0 8058, X6,2013,17999,Automatic,44176,Diesel,300,37.7,3.0 8059, X4,2017,23299,Automatic,53888,Diesel,145,47.9,3.0 8060, 1 Series,2015,10499,Manual,23893,Diesel,0,83.1,1.5 8061, 1 Series,2017,13799,Manual,22072,Diesel,145,65.7,2.0 8062, 3 Series,2012,8545,Manual,78112,Diesel,30,61.4,2.0 8063, 1 Series,2015,11499,Manual,53716,Diesel,30,62.8,2.0 8064, X1,2017,12899,Manual,66243,Diesel,145,68.9,2.0 8065, 2 Series,2016,12148,Manual,21752,Petrol,125,52.3,1.5 8066, 5 Series,2017,18220,Automatic,83352,Diesel,145,65.7,2.0 8067, 1 Series,2015,12099,Manual,31321,Diesel,30,64.2,2.0 8068, 4 Series,2016,20999,Automatic,30040,Diesel,160,50.4,3.0 8069, X1,2014,11499,Automatic,58599,Diesel,160,51.4,2.0 8070, 4 Series,2017,17999,Automatic,26839,Diesel,30,65.7,2.0 8071, 1 Series,2016,10699,Manual,47210,Diesel,0,83.1,1.5 8072, 1 Series,2014,9099,Manual,75924,Diesel,30,65.7,2.0 8073, 5 Series,2018,23699,Automatic,16042,Diesel,145,68.9,2.0 8074, 5 Series,2016,14499,Automatic,35644,Diesel,20,68.9,2.0 8075, X1,2016,21000,Automatic,7390,Petrol,160,44.8,2.0 8076, 2 Series,2014,12499,Manual,36479,Diesel,125,58.9,2.0 8077, 1 Series,2019,15989,Automatic,5504,Petrol,145,55.5,1.5 8078, 1 Series,2015,9699,Manual,36713,Diesel,0,78.5,1.5 8079, 1 Series,2016,17500,Automatic,24299,Petrol,235,37.7,3.0 8080, 4 Series,2014,12699,Manual,50348,Diesel,125,58.9,2.0 8081, 4 Series,2016,17199,Automatic,31919,Diesel,30,65.7,2.0 8082, X1,2017,18199,Automatic,29825,Diesel,145,65.7,2.0 8083, 1 Series,2018,20999,Automatic,24205,Petrol,145,39.8,3.0 8084, X1,2012,9199,Automatic,47152,Diesel,200,45.6,2.0 8085, Z4,2009,7999,Automatic,63179,Petrol,300,33.2,2.5 8086, 5 Series,2018,23399,Automatic,20093,Diesel,145,68.9,2.0 8087, 3 Series,2018,20599,Automatic,22478,Petrol,145,47.9,2.0 8088, 3 Series,2015,14499,Manual,28656,Petrol,145,47.9,2.0 8089, 1 Series,2016,14699,Automatic,22190,Diesel,20,68.9,1.5 8090, 2 Series,2015,11399,Manual,32940,Diesel,30,62.8,2.0 8091, 5 Series,2014,12500,Automatic,35677,Diesel,30,62.8,2.0 8092, 3 Series,2016,13787,Automatic,46735,Diesel,30,65.7,2.0 8093, 5 Series,2015,12899,Automatic,76096,Diesel,125,60.1,2.0 8094, 1 Series,2016,11799,Manual,37549,Diesel,20,70.6,1.5 8095, 1 Series,2012,5999,Manual,70876,Diesel,145,56.5,2.0 8096, 6 Series,2015,20000,Automatic,40517,Petrol,260,36.2,3.0 8097, X5,2016,26000,Automatic,47026,Hybrid,0,85.6,2.0 8098, 6 Series,2016,20999,Automatic,45360,Diesel,200,49.6,3.0 8099, 3 Series,2016,12761,Manual,34239,Diesel,20,72.4,2.0 8100, 6 Series,2015,19199,Automatic,22797,Diesel,160,49.6,3.0 8101, 3 Series,2013,10688,Automatic,43771,Diesel,30,62.8,2.0 8102, 6 Series,2008,8490,Automatic,72000,Diesel,260,40.9,3.0 8103, 1 Series,2013,6450,Manual,90000,Diesel,30,65.7,2.0 8104, 3 Series,2010,6490,Automatic,81000,Diesel,145,53.3,2.0 8105, 3 Series,2010,5490,Manual,77523,Diesel,30,62.8,2.0 8106, 1 Series,2013,8490,Manual,70160,Diesel,125,60.1,2.0 8107, 3 Series,2015,9990,Manual,44000,Diesel,20,68.9,2.0 8108, 3 Series,2011,7990,Manual,34915,Petrol,165,44.8,2.0 8109, 3 Series,2018,19999,Automatic,16882,Diesel,145,62.8,2.0 8110, 3 Series,2013,11470,Manual,37030,Diesel,30,62.8,2.0 8111, 4 Series,2017,17940,Automatic,38013,Diesel,145,60.1,2.0 8112, 2 Series,2016,12940,Manual,55272,Diesel,30,64.2,2.0 8113, 4 Series,2018,23470,Automatic,15307,Diesel,145,52.3,3.0 8114, 1 Series,2012,7240,Manual,89462,Diesel,30,62.8,2.0 8115, 1 Series,2012,7940,Manual,54811,Diesel,125,60.1,2.0 8116, X4,2016,20470,Automatic,52131,Diesel,150,54.3,2.0 8117, 1 Series,2014,9990,Manual,48165,Diesel,30,64.2,2.0 8118, X1,2013,8790,Automatic,78661,Diesel,165,52.3,2.0 8119, 3 Series,2011,6290,Manual,72082,Diesel,125,60.1,2.0 8120, 3 Series,2015,14699,Automatic,64523,Diesel,160,51.4,3.0 8121, 5 Series,2019,21000,Automatic,20789,Petrol,145,50.4,2.0 8122, 4 Series,2017,20000,Automatic,14282,Petrol,145,48.7,2.0 8123, 3 Series,2016,15899,Automatic,27562,Diesel,145,56.5,3.0 8124, 5 Series,2018,24299,Automatic,9273,Diesel,145,68.9,2.0 8125, 5 Series,2017,23000,Automatic,10740,Diesel,145,65.7,2.0 8126, 5 Series,2013,10100,Automatic,89028,Diesel,125,57.6,2.0 8127, 4 Series,2015,16999,Automatic,46028,Diesel,125,58.9,2.0 8128, 3 Series,2013,9943,Manual,52438,Diesel,125,60.1,2.0 8129, 1 Series,2018,14000,Manual,8228,Diesel,145,68.9,2.0 8130, 2 Series,2016,9989,Manual,43201,Diesel,20,68.9,2.0 8131, 5 Series,2015,11930,Automatic,89986,Diesel,125,60.1,2.0 8132, 2 Series,2015,11940,Automatic,78913,Diesel,30,62.8,2.0 8133, 1 Series,2010,7450,Automatic,75000,Diesel,165,52.3,2.0 8134, 1 Series,2017,14940,Manual,13000,Petrol,150,52.3,1.5 8135, 1 Series,2015,9834,Manual,55018,Diesel,20,65.7,2.0 8136, X1,2016,12940,Automatic,81240,Diesel,30,65.7,2.0 8137, 5 Series,2015,13440,Automatic,59775,Diesel,30,62.8,2.0 8138, 1 Series,2013,7940,Manual,67916,Diesel,30,65.7,2.0 8139, 5 Series,2010,9249,Automatic,94938,Diesel,240,43.5,3.0 8140, 2 Series,2016,12540,Manual,81145,Diesel,30,62.8,2.0 8141, 4 Series,2017,12789,Manual,85366,Diesel,145,62.8,2.0 8142, 5 Series,2016,16440,Automatic,37323,Diesel,125,60.1,2.0 8143, 2 Series,2015,14470,Automatic,16000,Diesel,30,67.3,2.0 8144, 5 Series,2018,21940,Automatic,53519,Other,135,156.9,2.0 8145, 1 Series,2008,3940,Manual,68000,Petrol,150,48.7,1.6 8146, 1 Series,2013,7440,Manual,75323,Petrol,145,49.6,1.6 8147, 1 Series,2013,7340,Manual,85871,Petrol,145,49.6,1.6 8148, 1 Series,2016,8940,Manual,79675,Diesel,0,83.1,1.5 8149, X1,2017,15640,Automatic,89232,Diesel,145,65.7,2.0 8150, 1 Series,2015,8869,Manual,62574,Diesel,0,83.1,1.5 8151, 3 Series,2016,18439,Automatic,32731,Hybrid,0,134.5,2.0 8152, 1 Series,2017,12338,Manual,15770,Diesel,0,83.1,1.5 8153, 4 Series,2015,17899,Automatic,23413,Petrol,235,38.2,3.0 8154, 5 Series,2016,16695,Automatic,39727,Diesel,125,60.1,2.0 8155, Z4,2012,10199,Manual,49289,Petrol,200,41.5,2.0 8156, 1 Series,2016,10250,Manual,46717,Petrol,125,53.3,1.5 8157, 1 Series,2015,10790,Manual,29550,Petrol,125,53.3,1.5 8158, 1 Series,2017,11250,Manual,30846,Petrol,125,53.3,1.5 8159, 1 Series,2017,11750,Manual,12600,Petrol,125,53.3,1.5 8160, 1 Series,2012,6950,Automatic,96596,Diesel,30,64.2,2.0 8161, 4 Series,2015,12970,Manual,40276,Diesel,30,67.3,2.0 8162, 3 Series,2014,10230,Automatic,98381,Diesel,125,60.1,2.0 8163, 2 Series,2018,13470,Automatic,67062,Diesel,145,51.4,2.0 8164, 3 Series,2013,9490,Automatic,56000,Diesel,30,62.8,2.0 8165, X1,2017,14930,Manual,77484,Diesel,20,68.9,2.0 8166, 5 Series,2007,6470,Automatic,75000,Diesel,330,35.8,2.5 8167, X5,2011,14970,Automatic,69987,Diesel,300,37.7,3.0 8168, 4 Series,2016,17430,Automatic,55381,Diesel,145,53.3,3.0 8169, 2 Series,2016,13940,Automatic,79983,Diesel,20,68.9,2.0 8170, 2 Series,2017,12440,Manual,32218,Diesel,145,65.7,1.5 8171, 4 Series,2015,11570,Manual,78217,Diesel,30,67.3,2.0 8172, 5 Series,2016,12980,Automatic,60337,Diesel,20,68.9,2.0 8173, 3 Series,2018,16940,Manual,10000,Petrol,150,52.3,1.5 8174, 4 Series,2016,18640,Automatic,21000,Diesel,150,55.4,3.0 8175, 3 Series,2013,14440,Automatic,48000,Diesel,125,57.6,3.0 8176, 1 Series,2016,14670,Automatic,26000,Petrol,125,54.3,1.5 8177, 1 Series,2017,9970,Manual,82000,Diesel,150,72.4,1.5 8178, 3 Series,2013,9940,Manual,83000,Diesel,30,61.4,2.0 8179, 5 Series,2016,15940,Automatic,66652,Diesel,160,51.4,3.0 8180, 3 Series,2011,8470,Manual,67869,Diesel,125,60.1,2.0 8181, 1 Series,2009,4490,Manual,79903,Diesel,30,62.8,2.0 8182, X5,2017,29440,Automatic,40070,Diesel,205,47.1,3.0 8183, 3 Series,2012,10240,Automatic,37089,Petrol,160,47.1,2.0 8184, 3 Series,2017,12440,Manual,59158,Diesel,30,67.3,2.0 8185, 6 Series,2012,12970,Automatic,50319,Diesel,160,51.4,3.0 8186, 1 Series,2016,12340,Manual,51727,Petrol,125,52.3,1.5 8187, X1,2013,10440,Automatic,46217,Diesel,165,52.3,2.0 8189, 4 Series,2016,15440,Manual,24083,Petrol,160,46.3,2.0 8190, X1,2017,14940,Manual,64235,Diesel,125,60.1,2.0 8191, 3 Series,2015,11690,Automatic,69002,Diesel,125,60.1,2.0 8192, 3 Series,2017,15940,Automatic,32997,Diesel,145,67.3,2.0 8193, 3 Series,2018,15490,Manual,38631,Diesel,145,62.8,2.0 8194, 1 Series,2013,9270,Automatic,53000,Diesel,30,62.8,2.0 8195, 2 Series,2016,14990,Manual,46527,Diesel,125,60.1,2.0 8196, 3 Series,2015,11970,Automatic,89001,Diesel,30,64.2,2.0 8197, 1 Series,2016,9440,Manual,71000,Diesel,0,83.1,1.5 8198, 3 Series,2016,9790,Manual,76218,Diesel,30,64.2,2.0 8199, X5,2016,25940,Automatic,76544,Diesel,200,47.1,3.0 8200, 3 Series,2017,11490,Manual,65386,Petrol,125,52.3,1.5 8201, 3 Series,2018,17240,Automatic,40739,Diesel,145,64.2,2.0 8202, 3 Series,2015,12189,Manual,33902,Diesel,30,65.7,2.0 8203, 1 Series,2016,13299,Manual,39077,Diesel,30,65.7,2.0 8204, 1 Series,2017,12415,Manual,17724,Diesel,145,83.1,1.5 8205, 1 Series,2013,13999,Automatic,48828,Petrol,235,37.7,3.0 8206, 3 Series,2016,17940,Automatic,28136,Diesel,145,53.3,3.0 8207, 4 Series,2016,18970,Automatic,43306,Diesel,160,51.4,3.0 8208, 3 Series,2015,16940,Automatic,41115,Diesel,165,51.4,3.0 8209, 5 Series,2014,13290,Automatic,62125,Diesel,150,55.4,2.0 8210, X1,2016,13490,Manual,78256,Diesel,20,68.9,2.0 8211, Z4,2010,9440,Manual,68090,Petrol,305,33.2,2.5 8212, 3 Series,2018,19940,Automatic,27246,Diesel,145,64.2,2.0 8213, 3 Series,2017,21299,Automatic,19351,Diesel,145,51.4,3.0 8214, 3 Series,2014,12579,Automatic,50750,Diesel,125,57.6,2.0 8215, 1 Series,2018,22000,Automatic,18225,Petrol,145,32.5,3.0 8216, X1,2016,17000,Manual,31327,Diesel,125,58.9,2.0 8217, X1,2017,17500,Automatic,27753,Diesel,145,65.7,2.0 8218, X5,2016,31499,Automatic,34367,Hybrid,0,85.6,2.0 8219, 4 Series,2016,17940,Automatic,27069,Petrol,165,45.6,2.0 8220, X1,2017,14470,Automatic,80591,Diesel,30,65.7,2.0 8221, 3 Series,2017,17650,Manual,17170,Diesel,150,60.1,2.0 8222, 1 Series,2014,9250,Manual,55760,Diesel,30,65.7,2.0 8223, 3 Series,2015,16970,Automatic,42938,Diesel,200,49.6,3.0 8224, 1 Series,2014,10670,Automatic,53436,Diesel,30,64.2,2.0 8225, 4 Series,2017,19970,Automatic,44558,Diesel,145,50.4,3.0 8226, 2 Series,2017,17940,Manual,9369,Diesel,145,60.1,2.0 8227, 5 Series,2010,5970,Automatic,116882,Diesel,150,54.3,2.0 8228, 1 Series,2015,9270,Manual,62346,Diesel,0,78.5,1.5 8229, 6 Series,2016,17490,Automatic,62156,Diesel,200,49.6,3.0 8230, 5 Series,2011,8470,Automatic,84726,Diesel,145,54.3,2.0 8231, 5 Series,2019,24970,Automatic,10628,Petrol,150,47.9,2.0 8232, 1 Series,2016,15997,Automatic,52874,Petrol,235,37.7,3.0 8233, 1 Series,2017,11997,Manual,10624,Diesel,0,83.1,1.5 8234, 3 Series,2015,13940,Automatic,69986,Diesel,145,53.3,3.0 8235, X1,2018,22470,Automatic,9365,Petrol,145,44.8,2.0 8236, 3 Series,2016,18770,Automatic,26108,Diesel,145,53.3,3.0 8237, 2 Series,2018,16470,Semi-Auto,18323,Diesel,145,56.5,1.5 8238, 5 Series,2012,9690,Automatic,71375,Diesel,125,57.6,2.0 8239, 4 Series,2018,22770,Automatic,13623,Diesel,145,58.9,2.0 8240, 3 Series,2016,12970,Manual,32046,Diesel,20,68.9,2.0 8241, 3 Series,2017,14497,Manual,61093,Petrol,150,45.6,2.0 8242, 1 Series,2013,11497,Manual,72000,Petrol,305,35.3,3.0 8243, X1,2017,17890,Automatic,33124,Diesel,125,60.1,2.0 8244, 2 Series,2017,13970,Manual,27034,Petrol,150,48.7,1.5 8245, X2,2019,23240,Manual,4507,Petrol,150,41.5,1.5 8246, X5,2015,25470,Automatic,54000,Diesel,200,47.1,3.0 8247, 2 Series,2017,14270,Manual,10874,Petrol,125,50.4,1.5 8248, 1 Series,2016,10340,Manual,38936,Diesel,20,72.4,1.5 8249, X4,2017,22670,Automatic,41543,Diesel,150,54.3,2.0 8250, 7 Series,2017,31250,Automatic,27791,Diesel,145,53.3,3.0 8251, X1,2018,22950,Automatic,14968,Diesel,150,60.1,2.0 8252, 3 Series,2016,13190,Manual,19871,Diesel,20,72.4,2.0 8253, 3 Series,2015,14495,Automatic,43838,Diesel,125,61.4,2.0 8254, 3 Series,2009,5995,Manual,47125,Diesel,125,58.9,2.0 8255, 1 Series,2015,10990,Manual,69000,Diesel,30,62.8,2.0 8256, 1 Series,2010,4990,Manual,83844,Diesel,30,62.8,2.0 8257, X3,2016,20940,Automatic,19000,Diesel,150,54.3,2.0 8258, X3,2011,11940,Automatic,72000,Diesel,165,50.4,2.0 8259, 3 Series,2019,24850,Automatic,7438,Petrol,145,42.2,2.0 8260, 3 Series,2019,24450,Automatic,23150,Diesel,150,52.3,2.0 8261, X3,2018,28950,Automatic,13200,Petrol,150,30.4,2.0 8262, X1,2018,22900,Automatic,10923,Petrol,150,37.7,2.0 8263, 2 Series,2019,22950,Automatic,8225,Diesel,150,61.4,2.0 8264, 2 Series,2018,19250,Automatic,20682,Hybrid,140,135.5,1.5 8265, X5,2018,34650,Automatic,15245,Diesel,150,47.1,3.0 8266, 3 Series,2019,27750,Automatic,4879,Petrol,150,41.5,2.0 8267, 3 Series,2015,14250,Automatic,40528,Diesel,30,62.8,2.0 8268, 5 Series,2017,22350,Automatic,30141,Diesel,145,60.1,2.0 8269, 2 Series,2017,15250,Automatic,13311,Petrol,145,61.4,2.0 8270, X1,2019,24950,Automatic,7542,Diesel,145,60.1,2.0 8271, 4 Series,2019,23250,Automatic,10847,Diesel,145,65.7,2.0 8272, X1,2019,24950,Automatic,9412,Diesel,145,60.1,2.0 8273, 4 Series,2019,23350,Automatic,9564,Diesel,145,65.7,2.0 8274, X1,2019,24950,Automatic,7032,Diesel,145,60.1,2.0 8275, X2,2019,26750,Automatic,2077,Diesel,150,58.9,2.0 8276, X3,2015,18950,Automatic,15131,Diesel,150,54.3,2.0 8277, 3 Series,2016,14950,Automatic,49967,Diesel,30,62.8,2.0 8278, X1,2019,24950,Automatic,5217,Diesel,145,60.1,2.0 8279, 1 Series,2018,16139,Manual,5531,Petrol,145,37.2,1.5 8280, 3 Series,2016,15300,Automatic,46626,Hybrid,0,134.5,2.0 8281, 5 Series,2019,22900,Automatic,12568,Petrol,145,47.9,2.0 8282, 2 Series,2017,15950,Automatic,39758,Diesel,145,62.8,2.0 8283, 5 Series,2019,36250,Automatic,8062,Diesel,145,51.4,3.0 8284, 1 Series,2017,13450,Automatic,35835,Diesel,150,70.6,2.0 8285, 1 Series,2019,23450,Automatic,12725,Petrol,145,39.8,3.0 8286, X5,2016,30850,Automatic,44316,Hybrid,0,85.6,2.0 8287, 2 Series,2019,18350,Manual,16606,Petrol,150,52.3,1.5 8288, Z4,2013,13700,Automatic,35554,Petrol,205,41.5,2.0 8289, 2 Series,2017,16512,Automatic,21284,Petrol,145,48.7,2.0 8290, 4 Series,2018,19495,Manual,7621,Diesel,150,62.8,2.0 8291, 3 Series,2018,17488,Manual,29384,Petrol,145,47.9,2.0 8292, 1 Series,2019,23499,Automatic,9112,Petrol,145,39.8,3.0 8293, 3 Series,2014,11205,Manual,47735,Petrol,160,44.8,2.0 8294, 1 Series,2016,10989,Manual,31319,Diesel,20,72.4,1.5 8295, 5 Series,2013,11899,Automatic,38705,Diesel,125,60.1,2.0 8296, X1,2016,14999,Manual,26436,Diesel,20,68.9,2.0 8297, 3 Series,2017,17541,Automatic,24536,Petrol,145,48.7,2.0 8298, X1,2012,5994,Manual,130000,Diesel,160,51.4,2.0 8299, X1,2019,24950,Automatic,9469,Diesel,145,60.1,2.0 8300, X1,2019,24800,Automatic,10577,Diesel,145,60.1,2.0 8301, 4 Series,2017,22995,Automatic,29989,Diesel,150,49.6,3.0 8302, X5,2015,21990,Automatic,94643,Diesel,205,47.1,3.0 8303, 1 Series,2014,5490,Manual,131347,Diesel,0,74.3,1.6 8304, 3 Series,2017,17490,Manual,23828,Diesel,145,64.2,2.0 8305, 1 Series,2016,8788,Manual,81750,Diesel,20,72.4,1.5 8306, 3 Series,2017,14495,Automatic,23123,Petrol,145,54.3,1.5 8307, 3 Series,2004,2888,Manual,133175,Petrol,300,36.2,2.0 8308, X3,2012,8799,Automatic,98123,Diesel,160,50.4,2.0 8309, 1 Series,2015,10490,Manual,21563,Petrol,150,50.4,1.6 8310, 1 Series,2017,11991,Automatic,108000,Petrol,150,47.9,2.0 8311, X1,2012,5994,Manual,130000,Diesel,165,51.4,2.0 8312, 1 Series,2016,8393,Manual,82000,Diesel,0,83.1,1.5 8313, 3 Series,2011,3493,Manual,190000,Diesel,20,68.9,2.0 8314, 1 Series,2015,9991,Automatic,94000,Diesel,30,62.8,2.0 8315, 2 Series,2018,13895,Manual,49631,Diesel,145,64.2,2.0 8316, 3 Series,2015,17450,Automatic,45000,Diesel,160,51.4,3.0 8317, X1,2019,24800,Automatic,10576,Diesel,145,60.1,2.0 8318, X1,2019,24950,Automatic,9849,Diesel,145,60.1,2.0 8319, X1,2019,24950,Automatic,9564,Diesel,145,60.1,2.0 8320, 4 Series,2019,23250,Automatic,10324,Diesel,145,65.7,2.0 8321, 4 Series,2013,13499,Automatic,32247,Petrol,160,44.8,2.0 8322, 6 Series,2014,17000,Automatic,64674,Diesel,160,49.6,3.0 8323, 4 Series,2015,19995,Automatic,36710,Petrol,265,37.2,3.0 8324, 3 Series,2008,6985,Automatic,98630,Petrol,240,39.2,3.0 8325, 2 Series,2020,28950,Manual,1688,Petrol,145,43.5,1.5 8326, 2 Series,2020,35950,Automatic,4597,Petrol,145,36.2,2.0 8327, 3 Series,2019,40000,Automatic,9991,Diesel,150,43.5,3.0 8328, 4 Series,2016,16150,Automatic,46545,Diesel,30,65.7,2.0 8329, 3 Series,2018,18199,Manual,13503,Diesel,145,64.2,2.0 8330, 3 Series,2016,12999,Manual,52224,Diesel,125,62.8,2.0 8331, 3 Series,2016,17532,Automatic,36157,Hybrid,0,134.5,2.0 8332, 1 Series,2014,14450,Automatic,59198,Petrol,235,37.7,3.0 8333, X5,2017,29450,Automatic,35032,Diesel,145,47.1,3.0 8334, 4 Series,2019,23350,Automatic,9189,Diesel,145,65.7,2.0 8335, X1,2016,19499,Automatic,21822,Diesel,125,60.1,2.0 8336, 1 Series,2016,10499,Manual,40428,Diesel,0,78.5,1.5 8337, 1 Series,2014,10999,Manual,47208,Diesel,30,62.8,2.0 8338, 3 Series,2016,11299,Manual,54788,Diesel,20,68.9,2.0 8339, 3 Series,2017,14999,Automatic,78446,Hybrid,0,134.5,2.0 8340, X1,2016,17499,Automatic,45234,Diesel,125,60.1,2.0 8341, 3 Series,2016,16899,Automatic,72974,Diesel,160,51.4,3.0 8342, 6 Series,2016,19999,Automatic,41963,Diesel,160,51.4,3.0 8343, 1 Series,2015,8999,Manual,58918,Diesel,0,83.1,1.5 8344, 1 Series,2016,10699,Manual,35845,Diesel,0,83.1,1.5 8345, 5 Series,2014,12899,Automatic,85547,Diesel,160,51.4,3.0 8346, 3 Series,2016,10499,Manual,68738,Diesel,20,68.9,2.0 8347, 1 Series,2015,9399,Manual,84179,Diesel,30,65.7,2.0 8348, 5 Series,2016,15999,Automatic,28084,Diesel,30,62.8,2.0 8349, 2 Series,2018,13299,Manual,45166,Diesel,145,65.7,2.0 8350, X5,2016,23699,Automatic,74765,Hybrid,0,85.6,2.0 8351, 2 Series,2016,21499,Automatic,17173,Petrol,200,39.8,3.0 8352, 1 Series,2017,11349,Manual,33215,Diesel,0,78.5,1.5 8353, 2 Series,2017,21499,Automatic,19502,Petrol,145,39.8,3.0 8354, 3 Series,2016,14399,Manual,34278,Diesel,30,64.2,2.0 8355, 3 Series,2019,24850,Automatic,10633,Petrol,145,42.2,2.0 8356, 3 Series,2016,19399,Automatic,22317,Hybrid,0,134.5,2.0 8357, 2 Series,2016,17299,Automatic,27519,Petrol,160,44.1,2.0 8358, 2 Series,2016,13675,Automatic,36792,Petrol,125,51.4,1.5 8359, X3,2016,18675,Automatic,65392,Diesel,200,47.9,3.0 8360, 2 Series,2017,16499,Automatic,12301,Petrol,145,51.4,1.5 8361, 3 Series,2016,17980,Automatic,48947,Hybrid,0,134.5,2.0 8362, X3,2015,14999,Automatic,85938,Diesel,145,54.3,2.0 8363, 4 Series,2014,12499,Automatic,80450,Diesel,145,56.5,2.0 8364, 4 Series,2016,15499,Automatic,78792,Diesel,30,65.7,2.0 8365, 3 Series,2013,9999,Automatic,86364,Diesel,145,55.4,3.0 8366, 6 Series,2013,15499,Automatic,58024,Diesel,160,51.4,3.0 8367, 3 Series,2013,12799,Automatic,29500,Diesel,30,62.8,2.0 8368, 1 Series,2016,13089,Automatic,29657,Diesel,20,67.3,2.0 8369, X1,2018,16999,Automatic,35077,Diesel,145,65.7,2.0 8370, 1 Series,2016,18999,Automatic,19908,Petrol,235,37.7,3.0 8371, X1,2017,17299,Automatic,9799,Diesel,30,65.7,2.0 8372, 5 Series,2016,10117,Manual,94419,Diesel,30,65.7,2.0 8373, 4 Series,2017,14899,Manual,42560,Diesel,30,62.8,2.0 8374, 1 Series,2013,9899,Manual,56370,Petrol,145,50.4,1.6 8376, X1,2016,20295,Automatic,16917,Diesel,145,55.4,2.0 8377, 5 Series,2017,22119,Automatic,25399,Diesel,145,65.7,2.0 8378, 1 Series,2014,8149,Manual,69190,Diesel,30,65.7,1.6 8379, 1 Series,2017,14011,Manual,22677,Diesel,145,65.7,2.0 8380, 1 Series,2016,13235,Automatic,54013,Diesel,30,62.8,2.0 8381, 5 Series,2013,11850,Automatic,65359,Diesel,125,57.6,2.0 8382, 3 Series,2015,10999,Manual,39245,Diesel,20,68.9,2.0 8383, 3 Series,2017,10875,Automatic,95521,Diesel,145,70.6,2.0 8384, X1,2014,10999,Automatic,45740,Diesel,160,52.3,2.0 8385, 3 Series,2015,13399,Manual,40219,Diesel,125,61.4,2.0 8386, 2 Series,2017,13499,Manual,44011,Petrol,125,50.4,1.5 8387, 2 Series,2016,11499,Manual,37537,Petrol,125,52.3,1.5 8388, 3 Series,2015,13699,Automatic,85188,Diesel,145,53.3,3.0 8389, 1 Series,2016,13499,Manual,29690,Petrol,125,52.3,1.5 8390, 1 Series,2016,8454,Manual,76241,Diesel,0,83.1,1.5 8391, 1 Series,2018,15899,Manual,25791,Petrol,145,52.3,1.5 8392, 1 Series,2016,11399,Manual,24820,Diesel,0,78.5,1.5 8393, 3 Series,2016,10999,Automatic,79248,Diesel,0,74.3,2.0 8394, 1 Series,2016,9999,Manual,50232,Diesel,0,83.1,1.5 8395, X1,2016,13099,Manual,56046,Diesel,20,68.9,2.0 8396, 2 Series,2016,11999,Manual,56953,Diesel,30,64.2,2.0 8397, X5,2015,21250,Automatic,78902,Diesel,160,50.4,2.0 8398, 5 Series,2017,22499,Automatic,13022,Diesel,145,60.1,3.0 8399, 3 Series,2011,6500,Manual,70418,Petrol,160,44.8,2.0 8401, 3 Series,2016,13199,Manual,42170,Diesel,30,67.3,2.0 8402, 2 Series,2017,18299,Automatic,22502,Diesel,145,55.4,2.0 8403, 1 Series,2016,13580,Manual,36994,Petrol,125,52.3,1.5 8404, 1 Series,2016,11299,Manual,29374,Petrol,125,53.3,1.5 8405, 1 Series,2016,14499,Manual,13388,Petrol,125,52.3,1.5 8406, 1 Series,2016,12869,Manual,23954,Petrol,125,52.3,1.5 8407, 3 Series,2016,18899,Automatic,19300,Diesel,160,51.4,3.0 8408, 2 Series,2016,10799,Manual,53653,Diesel,30,65.7,2.0 8409, 2 Series,2016,11699,Manual,29719,Diesel,0,74.3,1.5 8410, 3 Series,2014,8999,Manual,70968,Diesel,20,68.9,2.0 8411, 4 Series,2016,15500,Automatic,67429,Petrol,145,48.7,2.0 8412, 3 Series,2016,14887,Automatic,45716,Hybrid,0,134.5,2.0 8413, 4 Series,2016,13899,Automatic,34990,Diesel,30,65.7,2.0 8414, 1 Series,2012,9440,Automatic,48220,Diesel,30,62.8,2.0 8415, 1 Series,2015,9799,Manual,49096,Diesel,20,68.9,2.0 8416, X1,2013,9499,Manual,45750,Diesel,160,51.4,2.0 8417, 3 Series,2016,17106,Automatic,22019,Hybrid,0,148.7,2.0 8418, 1 Series,2016,11759,Manual,55987,Diesel,20,70.6,1.5 8419, 4 Series,2015,15999,Automatic,32558,Diesel,145,55.4,3.0 8420, 3 Series,2018,17799,Automatic,18506,Diesel,145,64.2,2.0 8421, 2 Series,2015,12449,Manual,23195,Diesel,20,74.3,1.5 8422, 3 Series,2016,9449,Manual,97758,Diesel,20,72.4,2.0 8423, X1,2016,16995,Automatic,44016,Diesel,150,55.4,2.0 8424, X1,2015,7492,Manual,104000,Diesel,30,62.8,2.0 8425, X3,2015,11793,Automatic,113000,Diesel,145,54.3,2.0 8426, X3,2015,10991,Automatic,130000,Diesel,145,54.3,2.0 8427, 1 Series,2014,5993,Manual,113000,Diesel,0,74.3,1.6 8428, 4 Series,2017,21499,Automatic,16389,Diesel,145,51.4,3.0 8429, X5,2015,26500,Automatic,31885,Diesel,160,52.3,2.0 8430, 3 Series,2016,13795,Automatic,57851,Diesel,30,64.2,2.0 8431, 2 Series,2015,10706,Manual,27562,Diesel,20,68.9,2.0 8432, 5 Series,2017,16610,Automatic,43316,Diesel,30,65.7,2.0 8433, 4 Series,2016,14999,Automatic,48891,Diesel,30,62.8,2.0 8434, 1 Series,2019,15989,Automatic,11153,Petrol,145,55.5,1.5 8435, 4 Series,2017,19352,Automatic,36220,Diesel,145,65.7,2.0 8436, X5,2018,36000,Automatic,33000,Diesel,150,47.1,3.0 8437, 4 Series,2018,20000,Automatic,35042,Diesel,145,65.7,2.0 8438, 1 Series,2019,19000,Automatic,14759,Diesel,150,67.3,2.0 8439, 3 Series,2018,21000,Automatic,15871,Diesel,150,64.2,2.0 8440, X3,2017,28399,Automatic,13955,Diesel,145,47.9,3.0 8441, 3 Series,2009,4495,Manual,138026,Petrol,205,42.8,2.0 8442, 2 Series,2016,13790,Manual,27255,Petrol,125,50.4,1.5 8443, 1 Series,2016,9749,Manual,57277,Diesel,0,78.5,1.5 8444, 3 Series,2015,9210,Automatic,98503,Diesel,30,65.7,2.0 8445, 1 Series,2016,9699,Manual,52811,Diesel,0,83.1,1.5 8446, 2 Series,2017,19559,Automatic,10131,Diesel,145,60.1,2.0 8447, 3 Series,2018,19988,Manual,10877,Petrol,150,47.9,2.0 8448, X3,2015,22666,Automatic,32988,Diesel,205,47.1,3.0 8449, X5,2016,32499,Automatic,27851,Diesel,205,47.1,3.0 8450, X6,2015,29889,Automatic,31100,Diesel,205,44.8,3.0 8451, 4 Series,2018,27989,Automatic,10077,Petrol,150,39.2,3.0 8452, 2 Series,2015,13000,Automatic,38500,Diesel,20,68.9,2.0 8453, X1,2017,16888,Automatic,30687,Diesel,30,65.7,2.0 8454, 1 Series,2017,15000,Automatic,46222,Petrol,145,47.9,2.0 8455, X5,2017,32000,Automatic,41567,Diesel,200,47.1,3.0 8456, X4,2016,26000,Automatic,27580,Diesel,205,47.9,3.0 8457, 3 Series,2012,13900,Automatic,52000,Petrol,205,43.5,2.0 8458, 3 Series,2019,34000,Automatic,4000,Diesel,150,47.9,3.0 8459, 1 Series,2015,9700,Manual,48258,Diesel,30,65.7,2.0 8460, 1 Series,2019,23000,Manual,5121,Petrol,145,44.1,1.5 8461, X2,2019,28000,Automatic,4773,Diesel,145,58.9,2.0 8462, X1,2019,24899,Manual,5322,Petrol,145,51.4,1.5 8463, 3 Series,2014,10147,Manual,55150,Diesel,30,61.4,2.0 8464, X1,2016,14999,Manual,32794,Diesel,20,68.9,2.0 8465, X1,2016,16595,Manual,25913,Diesel,125,58.9,2.0 8466, 5 Series,2016,15395,Automatic,33953,Diesel,30,62.8,2.0 8467, 2 Series,2016,15299,Automatic,21594,Petrol,125,51.4,1.5 8468, 4 Series,2014,12199,Manual,68000,Diesel,125,58.9,2.0 8469, 4 Series,2016,15499,Manual,55802,Diesel,30,62.8,2.0 8470, X3,2016,21999,Automatic,25291,Diesel,145,54.3,2.0 8471, 1 Series,2015,9890,Manual,30416,Diesel,0,78.5,1.5 8472, 3 Series,2016,18790,Automatic,31000,Diesel,200,49.6,3.0 8473, 1 Series,2014,8590,Manual,52447,Petrol,150,50.4,1.6 8474, 2 Series,2017,14295,Manual,31453,Diesel,20,68.9,1.5 8475, X2,2018,19999,Automatic,27359,Diesel,145,52.3,2.0 8476, 1 Series,2018,19995,Automatic,14449,Diesel,145,48.7,2.0 8477, X1,2016,18000,Automatic,32624,Diesel,125,57.6,2.0 8478, Z4,2017,17979,Automatic,21779,Petrol,200,41.5,2.0 8479, 3 Series,2015,12237,Manual,56111,Diesel,30,64.2,2.0 8480, 2 Series,2016,13995,Manual,38412,Diesel,30,64.2,2.0 8481, 2 Series,2018,17999,Automatic,5301,Petrol,145,36.7,1.5 8482, 2 Series,2015,12405,Automatic,39132,Petrol,125,53.3,1.5 8483, 1 Series,2016,9977,Manual,47905,Diesel,0,78.5,1.5 8484, 3 Series,2015,11699,Manual,42831,Diesel,20,68.9,2.0 8485, 3 Series,2015,9773,Manual,71339,Diesel,30,67.3,2.0 8486, X7,2019,59988,Automatic,7791,Diesel,145,33.6,3.0 8487, X4,2016,23700,Automatic,30241,Diesel,200,47.9,3.0 8488, X3,2016,23000,Automatic,41462,Diesel,200,47.1,3.0 8489, 1 Series,2015,16900,Automatic,39687,Petrol,235,37.7,3.0 8490, 1 Series,2017,14925,Automatic,23786,Diesel,20,67.3,2.0 8491, 6 Series,2015,16250,Automatic,72720,Diesel,160,49.6,3.0 8492, 5 Series,2014,14717,Automatic,60389,Diesel,145,55.4,2.0 8493, 1 Series,2017,12199,Manual,22361,Diesel,0,83.1,1.5 8494, 5 Series,2015,15999,Automatic,55673,Diesel,160,49.6,3.0 8495, M4,2019,48989,Automatic,19,Petrol,145,32.5,3.0 8496, X4,2019,43500,Automatic,2380,Petrol,145,26.9,3.0 8497, M4,2019,46000,Automatic,2460,Petrol,145,34.0,3.0 8498, 5 Series,2018,29000,Automatic,6500,Hybrid,140,156.9,2.0 8499, 3 Series,2016,14599,Automatic,54518,Diesel,30,64.2,2.0 8500, X1,2016,15999,Manual,44434,Diesel,125,58.9,2.0 8501, 4 Series,2016,15999,Manual,19684,Diesel,145,55.4,2.0 8502, 1 Series,2015,14249,Automatic,24214,Diesel,30,64.2,2.0 8503, 4 Series,2018,19999,Automatic,11631,Petrol,145,45.6,2.0 8504, 1 Series,2011,20999,Manual,14200,Petrol,145,36.2,3.0 8505, 3 Series,2015,13000,Automatic,45064,Diesel,20,74.3,2.0 8506, 3 Series,2017,18000,Automatic,29000,Diesel,145,62.8,2.0 8507, 1 Series,2017,19888,Automatic,17760,Diesel,145,61.4,2.0 8508, X3,2011,14000,Automatic,69117,Diesel,165,50.4,2.0 8509, 3 Series,2015,14000,Automatic,66355,Diesel,125,60.1,2.0 8510, 5 Series,2016,14373,Automatic,34424,Diesel,30,62.8,2.0 8511, 5 Series,2016,14595,Automatic,37472,Diesel,20,68.9,2.0 8512, 1 Series,2016,12349,Automatic,79212,Diesel,20,68.9,1.5 8513, 1 Series,2015,10388,Manual,28640,Diesel,0,83.1,1.5 8514, 2 Series,2016,15167,Automatic,27381,Diesel,20,68.9,1.5 8515, 5 Series,2018,23200,Automatic,11868,Diesel,145,68.9,2.0 8516, 3 Series,2016,16899,Automatic,15659,Hybrid,0,148.7,2.0 8517, 3 Series,2016,10000,Manual,86800,Diesel,30,67.3,2.0 8518, 5 Series,2014,11295,Automatic,96850,Diesel,160,51.4,2.0 8519, 3 Series,2018,18799,Automatic,31150,Diesel,145,62.8,2.0 8520, 2 Series,2018,20000,Automatic,20915,Diesel,145,49.6,2.0 8521, 1 Series,2015,12999,Automatic,28571,Diesel,20,67.3,2.0 8522, 1 Series,2014,8890,Manual,38484,Petrol,145,50.4,1.6 8523, 2 Series,2017,15499,Automatic,17931,Diesel,30,67.3,2.0 8524, X3,2019,56000,Automatic,3771,Petrol,145,24.8,3.0 8525, 1 Series,2019,31000,Automatic,2922,Petrol,145,34.5,2.0 8526, 3 Series,2017,17895,Automatic,17088,Diesel,145,62.8,2.0 8527, 1 Series,2018,22499,Automatic,9193,Petrol,145,32.5,3.0 8528, 3 Series,2014,10795,Automatic,101040,Diesel,165,52.3,3.0 8529, 5 Series,2015,11500,Automatic,79340,Diesel,30,62.8,2.0 8530, 4 Series,2016,13795,Automatic,80950,Diesel,30,65.7,2.0 8531, 3 Series,2015,11999,Manual,40461,Diesel,20,72.4,2.0 8532, 5 Series,2015,14195,Automatic,46140,Diesel,30,62.8,2.0 8533, 3 Series,2014,13000,Automatic,94450,Diesel,160,52.3,3.0 8534, 1 Series,2014,7295,Manual,72910,Diesel,20,68.9,2.0 8535, 2 Series,2016,11795,Automatic,67370,Petrol,125,50.4,2.0 8536, X3,2014,14000,Automatic,60590,Diesel,160,50.4,2.0 8537, 1 Series,2015,10795,Manual,55820,Diesel,20,70.6,1.5 8538, 4 Series,2015,10195,Automatic,110720,Diesel,125,61.4,2.0 8539, 3 Series,2015,12500,Automatic,70620,Diesel,125,60.1,2.0 8540, 4 Series,2015,14800,Automatic,33627,Diesel,145,56.5,2.0 8541, 2 Series,2016,13200,Automatic,28918,Petrol,125,53.3,1.5 8542, 3 Series,2016,15799,Manual,27218,Petrol,235,38.7,2.0 8543, 4 Series,2017,21699,Automatic,13907,Diesel,145,55.4,3.0 8544, 4 Series,2016,17499,Automatic,35399,Diesel,145,55.4,3.0 8545, 5 Series,2016,15699,Automatic,34609,Diesel,30,62.8,2.0 8546, X1,2013,10899,Automatic,42073,Diesel,160,52.3,2.0 8547, 1 Series,2012,7400,Automatic,43835,Petrol,145,48.7,1.6 8548, 2 Series,2018,13799,Manual,13369,Diesel,145,65.7,1.5 8549, 1 Series,2016,13600,Automatic,19277,Diesel,30,62.8,2.0 8550, 3 Series,2015,14500,Automatic,54305,Diesel,125,60.1,2.0 8551, 2 Series,2016,13500,Automatic,62140,Hybrid,0,141.2,1.5 8552, 2 Series,2016,13699,Manual,62379,Diesel,30,62.8,2.0 8553, 2 Series,2016,12000,Automatic,78459,Diesel,20,68.9,2.0 8554, 2 Series,2017,14299,Automatic,69241,Diesel,125,60.1,2.0 8555, 5 Series,2015,9500,Manual,91498,Diesel,125,61.4,2.0 8556, 2 Series,2017,15000,Automatic,49186,Petrol,145,50.4,1.5 8557, 1 Series,2018,12499,Manual,26146,Diesel,145,78.5,1.5 8558, 4 Series,2015,14725,Automatic,49256,Diesel,125,60.1,2.0 8559, X4,2015,19500,Manual,39824,Diesel,160,52.3,2.0 8560, 6 Series,2013,16200,Automatic,36049,Diesel,160,49.6,3.0 8561, 3 Series,2015,12920,Automatic,48250,Diesel,30,64.2,2.0 8562, X3,2016,19200,Automatic,46837,Diesel,200,47.9,3.0 8563, 3 Series,2016,15325,Automatic,20889,Hybrid,0,148.7,2.0 8564, 3 Series,2015,10225,Manual,91246,Diesel,125,61.4,2.0 8565, 4 Series,2015,21000,Automatic,17006,Petrol,235,38.2,3.0 8566, 2 Series,2015,10395,Manual,63980,Diesel,20,74.3,1.5 8567, 4 Series,2016,14000,Automatic,89200,Diesel,30,65.7,2.0 8568, X3,2015,13295,Automatic,110860,Diesel,145,54.3,2.0 8569, 1 Series,2017,10500,Manual,81980,Diesel,30,65.7,2.0 8570, 1 Series,2015,15750,Automatic,44715,Petrol,235,37.7,3.0 8571, 3 Series,2014,14500,Automatic,10303,Diesel,30,62.8,2.0 8572, 3 Series,2017,18499,Automatic,10501,Hybrid,135,148.7,2.0 8573, 1 Series,2016,11726,Manual,34240,Diesel,20,68.9,2.0 8574, 1 Series,2013,7500,Manual,63861,Diesel,30,65.7,2.0 8575, 1 Series,2016,11000,Manual,56121,Petrol,125,52.3,1.5 8576, 5 Series,2013,9299,Automatic,88004,Diesel,125,57.6,2.0 8577, 4 Series,2015,13000,Automatic,106220,Diesel,160,51.4,3.0 8578, 5 Series,2014,12000,Automatic,73500,Diesel,30,62.8,2.0 8579, 5 Series,2015,10000,Automatic,131520,Diesel,125,60.1,2.0 8580, 3 Series,2011,6395,Automatic,79210,Diesel,145,53.3,2.0 8581, 2 Series,2016,11000,Manual,79060,Diesel,30,64.2,2.0 8582, 4 Series,2016,13295,Automatic,84140,Diesel,30,65.7,2.0 8583, 1 Series,2018,12299,Manual,38164,Diesel,145,78.5,1.5 8584, 1 Series,2013,7699,Manual,51988,Diesel,0,74.3,1.6 8585, 3 Series,2013,7999,Manual,76429,Diesel,20,68.9,2.0 8586, 1 Series,2013,10000,Automatic,60260,Diesel,30,64.2,2.0 8587, 1 Series,2014,11000,Automatic,71700,Diesel,125,60.1,2.0 8588, 2 Series,2015,9495,Automatic,91620,Diesel,30,61.4,2.0 8589, X1,2014,9500,Manual,54630,Diesel,160,51.4,2.0 8590, 1 Series,2016,14499,Manual,17467,Diesel,30,62.8,2.0 8591, 1 Series,2016,10514,Manual,39512,Diesel,0,78.5,1.5 8592, 1 Series,2015,10348,Automatic,57570,Diesel,0,74.3,2.0 8593, X1,2017,19085,Automatic,36983,Diesel,145,57.6,2.0 8594, 3 Series,2017,16746,Automatic,32230,Diesel,30,64.2,2.0 8595, 3 Series,2017,16500,Automatic,42205,Diesel,150,62.8,2.0 8596, 1 Series,2014,15000,Manual,44514,Petrol,305,35.3,3.0 8597, 3 Series,2017,19500,Automatic,35303,Hybrid,0,134.5,2.0 8598, X1,2018,21800,Automatic,10947,Diesel,145,60.1,2.0 8600, X1,2018,21800,Automatic,12208,Diesel,150,60.1,2.0 8601, 5 Series,2015,12700,Automatic,50000,Diesel,20,68.9,2.0 8602, 3 Series,2017,17000,Automatic,45000,Other,140,134.5,2.0 8603, 4 Series,2015,16300,Automatic,57920,Diesel,165,51.4,3.0 8604, 5 Series,2016,17500,Automatic,36155,Diesel,160,51.4,3.0 8605, 3 Series,2016,16500,Automatic,23340,Diesel,30,64.2,2.0 8606, 1 Series,2016,11900,Manual,26093,Petrol,125,53.3,1.5 8607, 1 Series,2016,13300,Automatic,32404,Petrol,30,55.5,1.5 8608, 1 Series,2015,11200,Automatic,48282,Diesel,20,70.6,2.0 8609, 4 Series,2017,14000,Automatic,53639,Diesel,145,70.6,2.0 8610, 2 Series,2017,14300,Automatic,7861,Petrol,30,55.4,1.5 8611, 1 Series,2016,9400,Manual,58719,Diesel,20,72.4,1.5 8612, X5,2017,29700,Automatic,31000,Diesel,150,47.1,3.0 8613, 4 Series,2016,16000,Automatic,39708,Diesel,30,65.7,2.0 8614, X5,2015,23800,Automatic,54248,Diesel,200,47.1,3.0 8615, X5,2018,32700,Automatic,17552,Diesel,145,45.6,3.0 8616, 5 Series,2017,22500,Automatic,25000,Diesel,150,62.8,2.0 8617, 5 Series,2018,22500,Automatic,34000,Diesel,150,62.8,2.0 8618, 1 Series,2014,12000,Manual,15520,Diesel,30,64.2,2.0 8619, 1 Series,2018,13100,Automatic,33372,Petrol,145,58.9,1.5 8621, 1 Series,2017,11400,Manual,37000,Petrol,125,53.3,1.5 8622, 1 Series,2015,13800,Automatic,29867,Diesel,30,65.7,2.0 8623, 2 Series,2018,14995,Automatic,13889,Petrol,145,55.4,1.5 8624, 3 Series,2016,12600,Automatic,52125,Diesel,20,70.6,2.0 8625, 2 Series,2016,11300,Automatic,34090,Diesel,20,72.4,1.5 8626, 1 Series,2016,9800,Manual,57178,Diesel,20,72.4,1.5 8627, X1,2017,15200,Manual,24607,Diesel,125,60.1,2.0 8628, 1 Series,2013,10400,Automatic,35000,Diesel,30,64.2,2.0 8629, 3 Series,2017,14200,Manual,18059,Petrol,150,48.7,2.0 8630, 1 Series,2018,16200,Automatic,9856,Petrol,145,55.5,1.5 8631, 3 Series,2016,15600,Automatic,26267,Diesel,20,70.6,2.0 8632, 4 Series,2015,19200,Automatic,41670,Diesel,200,47.9,3.0 8633, 1 Series,2013,7500,Manual,67708,Diesel,0,74.3,1.6 8634, 5 Series,2013,10800,Automatic,73000,Diesel,125,57.6,2.0 8635, 2 Series,2016,12500,Manual,22500,Petrol,30,57.6,1.5 8636, 1 Series,2018,12800,Automatic,38527,Petrol,145,58.9,1.5 8637, 1 Series,2017,15200,Automatic,26660,Diesel,20,67.3,2.0 8638, 1 Series,2016,15200,Automatic,23377,Diesel,30,65.7,2.0 8639, 5 Series,2016,13500,Automatic,61425,Diesel,125,60.1,2.0 8640, 4 Series,2016,18100,Automatic,39891,Diesel,145,53.3,3.0 8641, 1 Series,2015,15500,Manual,45853,Petrol,300,35.3,3.0 8642, X3,2017,21800,Automatic,35428,Diesel,145,54.3,2.0 8643, 3 Series,2017,14300,Automatic,36178,Diesel,150,70.6,2.0 8644, 1 Series,2015,12300,Automatic,32694,Diesel,20,72.4,1.5 8645, 1 Series,2017,11800,Manual,38356,Diesel,145,83.1,1.5 8646, 1 Series,2016,12300,Manual,16483,Petrol,125,53.3,1.5 8647, 1 Series,2016,12700,Manual,14634,Petrol,125,53.3,1.5 8648, 1 Series,2017,13700,Manual,14232,Petrol,125,53.3,1.5 8649, 4 Series,2016,17800,Automatic,24085,Diesel,30,65.7,2.0 8650, 1 Series,2014,11700,Automatic,29626,Petrol,125,50.4,1.6 8651, 5 Series,2017,22300,Automatic,12727,Diesel,150,65.7,2.0 8652, 1 Series,2018,14300,Manual,13778,Petrol,150,53.3,1.5 8653, 3 Series,2018,21300,Automatic,11258,Diesel,145,64.2,2.0 8654, 3 Series,2018,16100,Automatic,44155,Diesel,145,60.1,2.0 8655, X1,2018,22600,Automatic,11070,Petrol,145,44.8,2.0 8656, 1 Series,2016,10700,Manual,27382,Diesel,0,83.1,1.5 8657, 1 Series,2013,9700,Manual,58689,Petrol,145,47.9,1.6 8658, 5 Series,2012,11300,Automatic,47185,Diesel,125,57.6,2.0 8659, 1 Series,2015,12450,Automatic,54789,Diesel,30,65.7,2.0 8660, 3 Series,2015,12700,Automatic,49122,Diesel,30,67.3,2.0 8661, 3 Series,2016,14500,Automatic,52000,Diesel,30,64.2,2.0 8662, 3 Series,2016,17400,Automatic,61852,Diesel,200,49.6,3.0 8663, 4 Series,2017,20500,Automatic,24231,Diesel,145,55.4,3.0 8664, 2 Series,2016,15000,Manual,14395,Petrol,145,47.1,1.5 8665, 1 Series,2015,16300,Manual,34271,Petrol,300,35.3,3.0 8666, 3 Series,2014,9500,Manual,58470,Diesel,30,62.8,2.0 8667, X4,2016,24000,Automatic,25465,Diesel,200,47.9,3.0 8668, 3 Series,2016,16500,Automatic,36584,Diesel,30,62.8,2.0 8669, 4 Series,2017,19500,Automatic,32632,Diesel,125,58.9,2.0 8670, 3 Series,2019,16800,Manual,13648,Diesel,145,62.8,2.0 8671, 3 Series,2015,14000,Manual,33021,Diesel,125,60.1,2.0 8672, X5,2016,29000,Automatic,20851,Diesel,200,47.1,3.0 8673, X3,2016,21000,Automatic,31955,Diesel,150,54.3,2.0 8674, 3 Series,2017,14400,Manual,14358,Petrol,150,48.7,2.0 8675, 4 Series,2017,17000,Manual,21869,Petrol,150,46.3,2.0 8676, 1 Series,2012,6985,Manual,72300,Diesel,30,62.8,2.0 8677, 3 Series,2014,9995,Automatic,103000,Diesel,125,60.1,2.0 8678, 2 Series,2017,14200,Manual,7329,Petrol,125,52.3,1.5 8679, 4 Series,2018,18000,Automatic,27000,Petrol,150,48.7,2.0 8680, 2 Series,2016,12250,Manual,20905,Petrol,125,52.3,1.5 8681, 1 Series,2017,11850,Manual,29227,Petrol,125,53.3,1.5 8682, X3,2017,19800,Automatic,38636,Diesel,145,54.3,2.0 8683, 4 Series,2018,21000,Automatic,15865,Petrol,145,48.7,2.0 8684, 1 Series,2014,16700,Automatic,32271,Petrol,235,37.7,3.0 8685, 2 Series,2016,15400,Manual,6593,Diesel,20,68.9,1.5 8686, 1 Series,2015,12100,Manual,15113,Diesel,20,72.4,1.5 8687, 3 Series,2016,14500,Automatic,30284,Diesel,30,65.7,2.0 8688, 5 Series,2017,22000,Automatic,38002,Diesel,145,60.1,2.0 8689, 4 Series,2017,18800,Automatic,19708,Diesel,145,65.7,2.0 8690, 6 Series,2017,23400,Automatic,23954,Petrol,260,36.7,3.0 8691, 5 Series,2016,18000,Automatic,32868,Diesel,125,60.1,2.0 8692, 3 Series,2018,18000,Manual,45344,Diesel,145,64.2,2.0 8693, 3 Series,2018,21000,Automatic,17932,Diesel,145,64.2,2.0 8694, 1 Series,2019,17600,Automatic,12839,Diesel,145,70.6,2.0 8695, 1 Series,2019,16000,Automatic,9119,Petrol,150,38.7,1.5 8696, 4 Series,2016,16000,Manual,33650,Petrol,160,44.8,2.0 8698, 1 Series,2016,12000,Manual,30445,Petrol,125,53.3,1.5 8700, 4 Series,2017,17000,Manual,36163,Diesel,145,62.8,2.0 8702, X3,2011,9995,Automatic,76000,Diesel,165,50.4,2.0 8703, 3 Series,2016,14800,Automatic,65000,Diesel,125,57.6,2.0 8704, 4 Series,2016,13950,Manual,43480,Diesel,30,62.8,2.0 8705, 3 Series,2018,20000,Automatic,27725,Diesel,145,64.2,2.0 8706, 3 Series,2015,14500,Automatic,16255,Diesel,30,65.7,2.0 8707, 1 Series,2016,11000,Manual,34683,Diesel,0,83.1,1.5 8709, 1 Series,2016,13700,Manual,36948,Diesel,30,62.8,2.0 8711, M4,2015,28500,Semi-Auto,40000,Petrol,305,34.0,3.0 8712, 2 Series,2017,13300,Manual,19029,Petrol,150,52.3,1.5 8713, 2 Series,2017,14400,Automatic,25975,Petrol,150,53.3,1.5 8714, 1 Series,2016,12500,Manual,11734,Petrol,125,53.3,1.5 8715, X1,2016,15000,Manual,13449,Diesel,20,68.9,2.0 8716, 1 Series,2017,11400,Manual,40000,Diesel,20,72.4,1.5 8717, 2 Series,2019,19250,Automatic,13414,Petrol,150,50.4,1.5 8718, 3 Series,2016,19000,Automatic,26114,Diesel,145,53.3,3.0 8719, 4 Series,2015,15200,Automatic,49450,Diesel,20,62.8,2.0 8720, 1 Series,2018,15800,Manual,2901,Petrol,145,37.7,1.5 8721, 3 Series,2016,13800,Manual,19401,Diesel,30,67.3,2.0 8722, 3 Series,2017,19000,Automatic,19345,Diesel,150,64.2,2.0 8723, 1 Series,2017,13000,Manual,24104,Petrol,125,53.3,1.5 8724, 3 Series,2016,18500,Automatic,24585,Diesel,145,56.5,3.0 8725, 1 Series,2016,12300,Manual,30856,Diesel,20,68.9,2.0 8726, 3 Series,2018,16200,Automatic,40151,Diesel,145,67.3,2.0 8727, 3 Series,2018,20500,Automatic,28918,Diesel,145,64.2,2.0 8728, 1 Series,2018,15300,Manual,36469,Diesel,150,50.4,1.5 8729, 2 Series,2018,17000,Automatic,20000,Petrol,150,50.4,1.5 8730, 5 Series,2019,26000,Automatic,13000,Diesel,145,65.7,2.0 8731, 1 Series,2019,18000,Automatic,11961,Diesel,145,47.9,1.5 8732, 1 Series,2015,13800,Automatic,39141,Diesel,30,65.7,2.0 8733, 1 Series,2014,12800,Manual,10503,Petrol,145,50.4,1.6 8734, 1 Series,2019,14500,Manual,30372,Petrol,145,53.3,1.5 8736, 1 Series,2017,15000,Automatic,17392,Petrol,30,55.5,1.5 8737, 3 Series,2018,15800,Manual,27692,Diesel,145,68.9,2.0 8738, X1,2015,17700,Automatic,27460,Diesel,125,57.6,2.0 8739, 2 Series,2017,17000,Automatic,33000,Diesel,145,65.7,2.0 8740, 3 Series,2017,13500,Automatic,48704,Petrol,125,51.4,2.0 8741, X1,2017,16300,Manual,27473,Diesel,125,58.9,2.0 8742, 2 Series,2017,12700,Manual,22397,Petrol,125,52.3,1.5 8743, 1 Series,2018,14700,Automatic,16313,Petrol,145,55.5,1.5 8744, X2,2018,20500,Automatic,6471,Diesel,145,52.3,2.0 8745, 3 Series,2017,16600,Automatic,50000,Other,0,134.5,2.0 8746, 3 Series,2015,20990,Manual,17620,Petrol,265,36.7,3.0 8747, 1 Series,2016,19290,Automatic,28451,Petrol,240,37.7,3.0 8748, 1 Series,2017,16800,Automatic,22396,Petrol,145,54.3,1.5 8749, 3 Series,2016,16900,Automatic,38480,Hybrid,0,148.7,2.0 8750, 3 Series,2016,16500,Automatic,42298,Diesel,125,60.1,2.0 8751, 3 Series,2015,15600,Automatic,33452,Diesel,30,64.2,2.0 8752, X1,2016,15000,Manual,32313,Diesel,20,68.9,2.0 8753, 1 Series,2018,12700,Automatic,35742,Petrol,145,58.9,1.5 8754, 3 Series,2017,13750,Manual,27779,Petrol,150,48.7,2.0 8755, X1,2017,15400,Manual,18000,Diesel,20,68.9,2.0 8756, 2 Series,2017,13400,Automatic,49264,Diesel,150,62.8,2.0 8757, 1 Series,2015,12800,Manual,37391,Diesel,30,65.7,2.0 8758, 3 Series,2016,16700,Automatic,52880,Hybrid,0,134.5,2.0 8759, 3 Series,2016,12300,Manual,32759,Diesel,20,72.4,2.0 8760, 1 Series,2015,15490,Automatic,31141,Diesel,30,64.2,2.0 8761, 5 Series,2014,14990,Automatic,55306,Diesel,125,57.6,2.0 8762, X1,2016,17000,Manual,41377,Diesel,125,58.9,2.0 8763, 4 Series,2017,19800,Automatic,23609,Diesel,125,60.1,2.0 8764, 1 Series,2016,15700,Manual,19732,Diesel,30,62.8,2.0 8765, 1 Series,2017,12900,Automatic,42159,Diesel,150,70.6,2.0 8766, 2 Series,2017,12000,Automatic,39370,Diesel,150,68.9,2.0 8767, 2 Series,2017,15000,Automatic,36729,Diesel,30,67.3,2.0 8768, 2 Series,2016,15200,Automatic,24146,Diesel,30,65.7,2.0 8769, 1 Series,2019,17800,Manual,7218,Petrol,150,52.3,1.5 8770, X1,2017,17000,Manual,18000,Diesel,125,58.9,2.0 8771, 8 Series,2019,73900,Automatic,953,Petrol,145,26.9,4.4 8772, 4 Series,2019,26490,Automatic,6751,Petrol,145,48.7,2.0 8773, 3 Series,2018,19800,Automatic,29473,Diesel,145,64.2,2.0 8774, 1 Series,2014,12000,Automatic,34795,Diesel,30,64.2,2.0 8775, 3 Series,2013,8500,Manual,49884,Petrol,145,47.9,1.6 8776, 2 Series,2017,16300,Automatic,36869,Petrol,145,47.9,2.0 8777, 3 Series,2016,16600,Automatic,31741,Diesel,20,65.7,2.0 8778, 3 Series,2015,15700,Automatic,42492,Diesel,145,56.5,3.0 8779, 2 Series,2018,19600,Manual,15621,Diesel,145,60.1,2.0 8780, X5,2017,30000,Automatic,23882,Diesel,145,47.1,3.0 8781, 1 Series,2018,19990,Automatic,20022,Diesel,150,48.7,2.0 8782, 1 Series,2017,21400,Automatic,23000,Petrol,205,39.8,3.0 8783, 2 Series,2017,16400,Automatic,8012,Petrol,150,53.3,1.5 8784, 3 Series,2018,17995,Automatic,17500,Petrol,150,54.3,1.5 8785, 4 Series,2019,28500,Automatic,5123,Petrol,145,48.7,2.0 8786, 3 Series,2020,32400,Automatic,2121,Diesel,145,52.3,2.0 8787, X3,2019,35900,Automatic,4078,Petrol,145,30.4,2.0 8788, 4 Series,2016,19290,Automatic,44675,Diesel,125,58.9,2.0 8789, X5,2015,35400,Automatic,27947,Diesel,235,42.8,3.0 8790, 2 Series,2019,21990,Manual,1243,Petrol,145,42.2,1.5 8791, 2 Series,2015,13290,Automatic,27419,Diesel,30,55.4,2.0 8792, X1,2017,22000,Automatic,14105,Diesel,150,60.1,2.0 8793, X1,2017,22000,Automatic,10048,Diesel,150,60.1,2.0 8794, X1,2017,18300,Automatic,43147,Diesel,145,57.6,2.0 8795, 1 Series,2013,11000,Manual,37012,Diesel,30,62.8,2.0 8796, 1 Series,2018,17500,Manual,4971,Petrol,150,52.3,1.5 8797, 1 Series,2017,15000,Automatic,15592,Petrol,30,55.5,1.5 8798, 2 Series,2016,19700,Automatic,26193,Petrol,260,37.2,3.0 8799, 2 Series,2016,13400,Manual,35437,Diesel,30,64.2,2.0 8800, 1 Series,2015,12000,Manual,48489,Diesel,30,65.7,2.0 8801, 2 Series,2014,13990,Manual,42947,Petrol,205,42.8,2.0 8802, X5,2016,26900,Automatic,17303,Diesel,205,47.9,3.0 8803, 3 Series,2018,18990,Automatic,42967,Petrol,150,48.7,2.0 8804, 2 Series,2015,13900,Automatic,29867,Diesel,30,68.9,2.0 8805, 3 Series,2016,17400,Automatic,32500,Diesel,30,64.2,2.0 8806, 1 Series,2017,16990,Automatic,23000,Diesel,30,65.7,2.0 8807, 2 Series,2018,19800,Automatic,10764,Petrol,145,47.9,2.0 8808, X3,2017,23100,Automatic,35903,Diesel,145,54.3,2.0 8809, 1 Series,2017,12988,Manual,42069,Diesel,20,68.9,2.0 8810, 1 Series,2013,11400,Manual,59824,Diesel,125,58.9,2.0 8811, 3 Series,2014,15690,Automatic,44900,Diesel,125,58.9,2.0 8812, 1 Series,2014,12990,Manual,34902,Petrol,145,50.4,1.6 8813, 2 Series,2016,20600,Automatic,22901,Petrol,260,37.2,3.0 8814, 5 Series,2017,26990,Automatic,20508,Diesel,145,56.5,3.0 8815, 1 Series,2017,15400,Automatic,57414,Diesel,145,68.9,1.5 8816, 1 Series,2013,14490,Manual,34628,Petrol,145,52.3,1.6 8817, 4 Series,2015,18990,Automatic,24102,Diesel,145,56.5,2.0 8818, 3 Series,2019,31489,Automatic,7834,Diesel,145,49.6,2.0 8819, X4,2020,44899,Automatic,100,Petrol,145,26.9,3.0 8820, 3 Series,2020,34900,Automatic,100,Diesel,145,50.4,2.0 8821, 3 Series,2020,39900,Automatic,13,Diesel,145,44.1,3.0 8822, X6,2019,58900,Automatic,15,Diesel,145,34.9,3.0 8823, 3 Series,2016,12000,Manual,42119,Diesel,30,67.3,2.0 8824, 5 Series,2014,13500,Automatic,41522,Diesel,30,62.8,2.0 8825, 1 Series,2015,13600,Automatic,38046,Diesel,20,67.3,2.0 8826, 1 Series,2017,15800,Automatic,30257,Diesel,145,68.9,2.0 8827, X4,2018,27800,Automatic,17878,Diesel,145,54.3,2.0 8828, 4 Series,2016,17300,Automatic,32837,Diesel,30,65.7,2.0 8829, 3 Series,2015,13100,Manual,36801,Diesel,30,61.4,2.0 8830, X1,2016,17400,Manual,28999,Diesel,125,58.9,2.0 8831, 5 Series,2017,22400,Automatic,16942,Petrol,145,48.7,2.0 8832, 3 Series,2018,22800,Automatic,18627,Petrol,145,47.9,2.0 8833, 2 Series,2018,18490,Automatic,7913,Diesel,145,56.5,1.5 8834, 4 Series,2015,16900,Automatic,57317,Petrol,160,44.8,2.0 8836, X3,2018,30990,Automatic,13034,Diesel,145,54.3,2.0 8837, 1 Series,2017,21990,Automatic,13905,Petrol,145,39.8,3.0 8838, 3 Series,2014,15490,Manual,47701,Diesel,145,55.4,2.0 8839, 1 Series,2015,11490,Manual,62538,Petrol,30,56.5,1.5 8840, 4 Series,2018,22900,Automatic,15814,Petrol,145,48.7,2.0 8841, X1,2019,26990,Automatic,7288,Petrol,145,39.8,2.0 8842, Z4,2020,39990,Automatic,1784,Petrol,150,33.2,3.0 8843, 2 Series,2015,12690,Manual,29400,Diesel,20,68.9,2.0 8844, 3 Series,2019,33890,Automatic,2993,Diesel,150,47.9,3.0 8845, 1 Series,2018,18995,Automatic,11885,Petrol,150,36.7,2.0 8846, X1,2020,33400,Manual,321,Diesel,145,50.4,2.0 8847, 3 Series,2020,43900,Automatic,11,Petrol,145,34.9,3.0 8848, i8,2015,44990,Automatic,43323,Hybrid,0,134.5,1.5 8849, 3 Series,2014,9500,Automatic,75083,Diesel,20,68.9,2.0 8850, 3 Series,2015,13000,Manual,34533,Diesel,125,60.1,2.0 8851, 3 Series,2016,10000,Automatic,84878,Diesel,0,74.3,2.0 8852, 3 Series,2015,19690,Automatic,47741,Diesel,200,49.6,3.0 8853, 6 Series,2015,18990,Automatic,62953,Diesel,160,51.4,3.0 8854, 3 Series,2016,20400,Automatic,40421,Diesel,160,51.4,3.0 8855, 2 Series,2019,23900,Automatic,2426,Diesel,145,47.1,2.0 8856, 3 Series,2016,15400,Manual,21854,Petrol,145,48.7,2.0 8857, 2 Series,2018,19990,Automatic,19234,Diesel,145,47.1,2.0 8858, X3,2016,21990,Automatic,35121,Diesel,145,54.3,2.0 8859, 3 Series,2014,14500,Automatic,45140,Diesel,125,57.6,3.0 8860, 3 Series,2016,10000,Automatic,104720,Petrol,125,51.4,1.5 8861, 4 Series,2016,13000,Automatic,129590,Petrol,150,48.7,2.0 8862, 2 Series,2016,13995,Manual,36250,Diesel,30,64.2,2.0 8863, 3 Series,2007,5795,Automatic,83350,Petrol,325,31.4,3.0 8864, 3 Series,2020,29490,Automatic,12,Petrol,145,42.2,2.0 8865, 3 Series,2019,26899,Automatic,11512,Diesel,145,52.3,2.0 8866, 1 Series,2019,26989,Automatic,5444,Diesel,145,51.4,2.0 8867, 3 Series,2020,34900,Automatic,10,Petrol,145,40.4,2.0 8868, 3 Series,2018,20690,Automatic,16986,Diesel,145,64.2,2.0 8869, 2 Series,2016,13900,Manual,38811,Diesel,20,68.9,1.5 8870, 5 Series,2016,14499,Automatic,53689,Diesel,30,62.8,2.0 8871, 2 Series,2014,11000,Manual,37148,Diesel,30,62.8,2.0 8872, 1 Series,2014,9500,Manual,36672,Diesel,30,65.7,2.0 8873, X1,2016,13999,Manual,30466,Diesel,20,68.9,2.0 8874, 2 Series,2016,11999,Automatic,68945,Diesel,20,68.9,1.5 8875, 1 Series,2016,17199,Manual,18706,Petrol,260,36.2,3.0 8876, 3 Series,2012,7500,Manual,75453,Diesel,30,62.8,2.0 8877, 2 Series,2017,16500,Manual,66410,Petrol,260,36.2,3.0 8878, 5 Series,2014,11695,Automatic,65520,Diesel,30,62.8,2.0 8879, 3 Series,2014,14500,Automatic,48760,Diesel,125,57.6,3.0 8880, 1 Series,2014,6795,Manual,102520,Diesel,30,62.8,2.0 8881, 3 Series,2015,12500,Automatic,107940,Diesel,145,56.5,3.0 8882, 4 Series,2016,12000,Automatic,117230,Diesel,30,65.7,2.0 8883, X3,2015,13000,Manual,105320,Diesel,160,52.3,2.0 8884, 1 Series,2016,8000,Manual,101980,Diesel,20,68.9,2.0 8885, 2 Series,2015,7395,Manual,100230,Diesel,20,68.9,2.0 8886, 4 Series,2015,14000,Automatic,58900,Diesel,30,65.7,2.0 8887, 3 Series,2015,13295,Automatic,76720,Diesel,165,51.4,3.0 8888, 1 Series,2018,13425,Manual,22045,Petrol,150,53.3,1.5 8889, 3 Series,2016,11250,Automatic,70600,Diesel,30,70.6,2.0 8890, 3 Series,2016,14195,Automatic,56140,Hybrid,0,148.7,2.0 8891, 5 Series,2016,12295,Automatic,97930,Diesel,125,60.1,2.0 8892, 2 Series,2016,10500,Manual,83200,Diesel,30,64.2,2.0 8893, 3 Series,2017,13999,Manual,23608,Petrol,150,48.7,2.0 8894, 1 Series,2013,10125,Manual,61040,Petrol,205,42.8,2.0 8895, 7 Series,2006,4995,Automatic,81000,Diesel,325,34.4,3.0 8896, 3 Series,2009,4195,Manual,70000,Petrol,165,47.9,2.0 8897, 1 Series,2014,10395,Manual,25000,Diesel,0,74.3,1.6 8898, 3 Series,2017,15350,Automatic,40244,Diesel,30,64.2,2.0 8899, 1 Series,2016,11500,Manual,54156,Diesel,30,65.7,2.0 8900, 1 Series,2018,13750,Manual,17613,Petrol,145,37.7,1.5 8901, X1,2016,17225,Manual,17531,Diesel,125,58.9,2.0 8902, 3 Series,2017,8795,Manual,108190,Diesel,30,62.8,2.0 8903, 1 Series,2015,10695,Automatic,52770,Petrol,145,48.7,1.6 8904, 3 Series,2014,8000,Manual,99920,Diesel,125,58.9,2.0 8905, 3 Series,2016,14295,Automatic,94810,Hybrid,0,134.5,2.0 8906, 3 Series,2014,8795,Manual,130340,Diesel,145,55.4,2.0 8907, 5 Series,2016,11000,Automatic,100170,Diesel,20,68.9,2.0 8908, 3 Series,2016,19495,Automatic,27500,Diesel,160,51.4,3.0 8909, 3 Series,2014,11295,Automatic,52117,Diesel,30,62.8,2.0 8910, 3 Series,2015,13980,Automatic,36816,Diesel,30,70.6,2.0 8911, 3 Series,2009,5695,Semi-Auto,110931,Diesel,160,51.4,2.0 8912, 4 Series,2015,14995,Manual,51611,Diesel,125,58.9,2.0 8913, 7 Series,2014,13999,Automatic,53329,Diesel,160,50.4,3.0 8914, X1,2017,17299,Automatic,35779,Diesel,145,55.4,2.0 8915, 3 Series,2015,8500,Manual,71915,Diesel,20,68.9,2.0 8916, 2 Series,2017,16350,Automatic,13750,Diesel,145,62.8,2.0 8917, X1,2013,9995,Manual,44013,Diesel,160,51.4,2.0 8918, 3 Series,2015,10000,Automatic,99530,Diesel,30,67.3,2.0 8919, 3 Series,2016,14295,Automatic,86060,Hybrid,0,134.5,2.0 8920, 3 Series,2015,9500,Manual,128850,Diesel,145,56.5,2.0 8921, X3,2016,15500,Manual,72070,Diesel,160,52.3,2.0 8922, X3,2016,16295,Automatic,81050,Diesel,150,54.3,2.0 8923, 5 Series,2016,9000,Manual,93240,Diesel,30,65.7,2.0 8924, 1 Series,2015,11695,Automatic,58620,Diesel,20,67.3,2.0 8925, 3 Series,2010,3800,Manual,156800,Diesel,125,58.9,2.0 8926, 3 Series,2012,8985,Automatic,67458,Diesel,30,62.8,2.0 8927, 4 Series,2014,13991,Automatic,44042,Diesel,125,57.7,2.0 8928, X1,2012,7985,Automatic,82570,Diesel,150,56.5,2.0 8929, X3,2015,13985,Automatic,77120,Diesel,150,54.3,2.0 8930, X5,2013,21000,Automatic,52000,Diesel,200,45.6,3.0 8931, 3 Series,2013,9489,Manual,52757,Diesel,30,62.8,2.0 8932, 3 Series,2017,18999,Automatic,24658,Hybrid,0,134.5,2.0 8933, 5 Series,2016,15499,Automatic,35487,Diesel,30,65.7,2.0 8935, 2 Series,2016,14999,Manual,21985,Petrol,160,44.1,2.0 8936, 5 Series,2013,11299,Automatic,73876,Diesel,145,55.4,3.0 8937, 1 Series,2016,10399,Manual,33546,Diesel,0,83.1,1.5 8938, 3 Series,2013,10995,Manual,45883,Diesel,30,62.8,2.0 8939, 3 Series,2016,16995,Automatic,14867,Diesel,145,56.5,3.0 8940, 5 Series,2014,13995,Automatic,48280,Diesel,30,62.8,2.0 8941, 1 Series,2015,10495,Manual,27000,Diesel,0,78.5,1.5 8942, 5 Series,2016,12494,Automatic,49305,Diesel,20,68.9,2.0 8943, 5 Series,2016,13699,Automatic,36813,Diesel,20,68.9,2.0 8944, X1,2016,15994,Manual,24984,Diesel,125,58.9,2.0 8945, X5,2018,47994,Automatic,19750,Diesel,140,47.1,3.0 8946, 3 Series,2007,5994,Automatic,118000,Diesel,300,38.2,3.0 8947, 2 Series,2016,9799,Automatic,67170,Diesel,20,72.4,1.5 8948, 3 Series,2015,13999,Manual,40430,Diesel,145,56.5,2.0 8949, 5 Series,2015,11999,Automatic,74014,Diesel,30,62.8,2.0 8950, 3 Series,2017,18999,Automatic,29528,Diesel,145,64.2,2.0 8951, 3 Series,2015,11999,Manual,40814,Diesel,20,68.9,2.0 8952, 4 Series,2016,18499,Automatic,60018,Diesel,160,49.6,3.0 8953, 4 Series,2016,15499,Manual,32157,Petrol,200,42.8,2.0 8954, 3 Series,2018,21200,Automatic,13590,Diesel,150,64.2,2.0 8956, 2 Series,2015,8995,Automatic,64888,Diesel,20,68.9,2.0 8957, 3 Series,2016,16999,Manual,18520,Petrol,200,43.5,2.0 8958, 1 Series,2015,9499,Manual,54228,Diesel,0,83.1,1.5 8959, 1 Series,2013,7399,Manual,58149,Diesel,0,74.3,1.6 8960, 5 Series,2017,24999,Automatic,5336,Hybrid,135,156.9,2.0 8961, 4 Series,2015,15499,Manual,32423,Diesel,145,53.3,2.0 8962, 5 Series,2017,22199,Automatic,21319,Diesel,145,62.8,2.0 8963, 5 Series,2014,14750,Automatic,20741,Diesel,30,62.8,2.0 8964, 1 Series,2015,12059,Automatic,69758,Diesel,125,60.1,2.0 8965, 2 Series,2017,14000,Manual,18234,Petrol,145,52.3,1.5 8966, 1 Series,2016,10599,Manual,27636,Diesel,0,83.1,1.5 8967, 3 Series,2011,4994,Manual,112000,Diesel,30,62.8,2.0 8968, 5 Series,2013,11000,Automatic,86000,Diesel,160,51.4,2.0 8969, 1 Series,2012,6500,Manual,93000,Diesel,30,62.8,2.0 8970, 1 Series,2017,19750,Automatic,29000,Petrol,205,39.8,3.0 8971, 5 Series,2014,11500,Automatic,92000,Diesel,125,57.6,2.0 8972, 1 Series,2013,8000,Manual,50000,Petrol,145,49.6,1.6 8973, 3 Series,2017,13199,Automatic,54962,Diesel,145,74.3,2.0 8974, 5 Series,2016,16399,Automatic,45036,Petrol,160,44.8,2.0 8975, 2 Series,2016,10725,Manual,45930,Petrol,145,48.7,1.5 8976, X1,2016,15199,Automatic,41571,Diesel,125,60.1,2.0 8977, 4 Series,2016,13999,Manual,45253,Diesel,30,67.3,2.0 8978, 1 Series,2014,9999,Manual,63169,Diesel,30,64.2,2.0 8979, 3 Series,2017,15349,Automatic,53347,Hybrid,0,148.7,2.0 8980, 1 Series,2016,10699,Manual,34933,Diesel,0,83.1,1.5 8981, 1 Series,2013,9999,Manual,48279,Petrol,145,50.4,1.6 8982, 3 Series,2017,13499,Automatic,52716,Diesel,145,70.6,2.0 8983, X3,2014,14999,Automatic,47925,Diesel,160,50.4,2.0 8984, X3,2015,18699,Automatic,24288,Diesel,145,54.3,2.0 8985, 3 Series,2018,16200,Automatic,10591,Diesel,145,67.3,2.0 8986, 2 Series,2017,16499,Automatic,16888,Petrol,145,51.4,1.5 8987, 2 Series,2017,15887,Automatic,46827,Hybrid,135,141.2,1.5 8988, X1,2013,10299,Automatic,33412,Diesel,160,52.3,2.0 8989, 4 Series,2015,15699,Automatic,33689,Diesel,20,70.6,2.0 8990, 1 Series,2016,12599,Manual,29752,Diesel,20,70.6,1.5 8991, 4 Series,2014,14999,Automatic,32463,Petrol,200,43.5,2.0 8992, X1,2017,15399,Manual,18097,Diesel,145,68.9,2.0 8993, 3 Series,2016,15499,Manual,42571,Diesel,125,58.9,2.0 8994, 5 Series,2015,10699,Automatic,93056,Diesel,20,68.9,2.0 8995, 3 Series,2015,13999,Automatic,46531,Diesel,125,61.4,2.0 8996, 1 Series,2012,7899,Manual,85827,Diesel,30,62.8,2.0 8997, 1 Series,2017,14599,Automatic,15361,Diesel,145,72.4,1.5 8998, X5,2017,30999,Automatic,32812,Diesel,145,47.1,3.0 8999, 1 Series,2018,12399,Manual,23635,Diesel,145,72.4,1.5 9000, 5 Series,2016,13119,Manual,51780,Diesel,125,60.1,2.0 9001, 2 Series,2015,10999,Manual,54050,Diesel,20,74.3,1.5 9002, 1 Series,2016,11299,Manual,24441,Diesel,0,78.5,1.5 9003, 3 Series,2015,18499,Automatic,31047,Diesel,160,51.4,3.0 9004, 1 Series,2014,13999,Manual,53832,Petrol,300,35.3,3.0 9005, 2 Series,2017,15999,Automatic,29122,Petrol,125,51.4,1.5 9006, 1 Series,2016,10199,Manual,58305,Diesel,0,83.1,1.5 9007, 3 Series,2014,8199,Manual,94347,Diesel,30,65.7,2.0 9008, 1 Series,2018,14399,Manual,13094,Petrol,145,37.7,1.5 9009, 1 Series,2015,11499,Manual,50127,Diesel,125,57.6,2.0 9010, 3 Series,2013,9999,Manual,74947,Diesel,30,62.8,2.0 9011, 2 Series,2017,14495,Manual,28180,Petrol,125,53.3,1.5 9012, 4 Series,2016,20499,Automatic,16955,Diesel,145,53.3,3.0 9013, 1 Series,2018,21999,Automatic,30400,Petrol,145,39.8,3.0 9014, 4 Series,2016,15499,Automatic,64997,Diesel,145,55.4,3.0 9015, 3 Series,2013,12299,Automatic,43425,Diesel,125,57.6,3.0 9016, 4 Series,2016,11250,Manual,97706,Diesel,30,62.8,2.0 9017, 3 Series,2016,11750,Automatic,50318,Diesel,30,67.3,2.0 9018, 3 Series,2015,13350,Automatic,51126,Diesel,125,57.6,2.0 9019, 4 Series,2015,14999,Automatic,73150,Diesel,160,50.4,3.0 9020, 3 Series,2017,18299,Automatic,32185,Hybrid,135,134.5,2.0 9021, 3 Series,2015,9667,Automatic,80739,Diesel,30,62.8,2.0 9022, 4 Series,2017,22550,Automatic,25328,Diesel,145,50.4,3.0 9023, 3 Series,2015,9350,Automatic,91969,Diesel,20,68.9,2.0 9024, 3 Series,2013,8399,Manual,65001,Diesel,20,68.9,2.0 9025, 3 Series,2017,16550,Automatic,20771,Diesel,145,64.2,2.0 9026, 1 Series,2014,8092,Manual,66995,Diesel,30,65.7,2.0 9027, 5 Series,2016,13499,Automatic,72095,Diesel,30,62.8,2.0 9028, 5 Series,2016,13999,Automatic,71353,Diesel,145,56.5,2.0 9029, 1 Series,2017,12499,Automatic,27656,Diesel,145,72.4,1.5 9030, 1 Series,2016,11999,Manual,15066,Diesel,0,83.1,1.5 9031, 3 Series,2014,14250,Automatic,65033,Diesel,160,52.3,3.0 9032, 5 Series,2014,14199,Automatic,30749,Diesel,125,57.6,2.0 9033, 2 Series,2016,18999,Automatic,35159,Petrol,260,37.2,3.0 9034, X1,2014,10999,Manual,26742,Diesel,160,51.4,2.0 9035, 4 Series,2016,10899,Manual,76280,Diesel,30,67.3,2.0 9036, 1 Series,2012,7149,Manual,71842,Diesel,30,62.8,2.0 9037, 1 Series,2016,10299,Manual,36007,Diesel,0,83.1,1.5 9038, X5,2016,27499,Automatic,46720,Hybrid,0,85.6,2.0 9039, 2 Series,2016,14879,Automatic,20937,Petrol,125,51.4,1.5 9040, 2 Series,2016,8999,Manual,80051,Diesel,0,74.3,1.5 9041, 1 Series,2015,15499,Automatic,48916,Petrol,235,37.7,3.0 9042, 1 Series,2017,11861,Manual,23268,Diesel,0,78.5,1.5 9043, 1 Series,2016,10849,Manual,32690,Diesel,0,78.5,1.5 9044, 3 Series,2016,16529,Automatic,63679,Hybrid,0,134.5,2.0 9045, 5 Series,2016,14999,Automatic,64231,Diesel,145,53.3,3.0 9046, 2 Series,2015,7999,Manual,89569,Diesel,30,62.8,2.0 9047, 2 Series,2017,19350,Automatic,18455,Hybrid,135,135.5,1.5 9048, X1,2014,11499,Automatic,46000,Diesel,160,52.3,2.0 9049, 5 Series,2015,12450,Automatic,79315,Diesel,30,62.8,2.0 9050, 1 Series,2016,11557,Manual,26146,Petrol,125,53.3,1.5 9051, 1 Series,2019,15199,Manual,7565,Petrol,145,53.3,1.5 9052, 1 Series,2016,9995,Manual,49782,Diesel,0,78.5,1.5 9053, 1 Series,2014,13083,Automatic,48343,Diesel,125,60.1,2.0 9054, 1 Series,2015,9500,Manual,56941,Diesel,0,83.1,1.5 9055, 2 Series,2015,11399,Automatic,65033,Diesel,20,68.9,2.0 9056, 5 Series,2015,11399,Automatic,92428,Diesel,30,62.8,2.0 9057, 1 Series,2016,10607,Manual,90868,Petrol,125,52.3,1.5 9058, X3,2017,18250,Automatic,36204,Diesel,145,54.3,2.0 9059, 3 Series,2014,10375,Manual,66919,Diesel,125,57.6,2.0 9060, 4 Series,2015,12499,Manual,50452,Diesel,30,62.8,2.0 9061, 1 Series,2016,9899,Manual,47325,Diesel,0,83.1,1.5 9062, 5 Series,2015,14499,Automatic,29269,Diesel,20,68.9,2.0 9063, 1 Series,2016,10999,Manual,35898,Diesel,0,83.1,1.5 9064, 1 Series,2015,10000,Manual,35259,Diesel,0,83.1,1.5 9065, 2 Series,2016,15499,Manual,11448,Petrol,145,47.1,1.5 9066, 5 Series,2016,15999,Automatic,28774,Diesel,30,62.8,2.0 9067, 3 Series,2016,16212,Automatic,31499,Diesel,145,54.3,3.0 9068, 4 Series,2017,14778,Automatic,56292,Diesel,145,70.6,2.0 9069, 1 Series,2014,11250,Automatic,17408,Diesel,20,67.3,2.0 9070, 1 Series,2019,15199,Manual,10844,Petrol,145,53.3,1.5 9071, 1 Series,2016,9349,Manual,71381,Diesel,0,78.5,1.5 9072, 1 Series,2015,12999,Automatic,34267,Diesel,20,70.6,2.0 9073, 3 Series,2010,3690,Manual,96000,Diesel,30,62.8,2.0 9074, X1,2016,18899,Automatic,22780,Petrol,160,44.8,2.0 9075, X1,2016,17499,Automatic,35421,Diesel,145,55.4,2.0 9076, 4 Series,2014,10991,Manual,81978,Diesel,125,60.1,2.0 9077, 3 Series,2013,8991,Manual,64377,Diesel,20,68.9,2.0 9078, 3 Series,2014,9991,Automatic,44287,Diesel,20,68.9,2.0 9079, 6 Series,2017,29991,Automatic,28879,Petrol,145,31.0,4.4 9080, 3 Series,2015,15491,Automatic,35248,Diesel,30,64.2,2.0 9081, X5,2016,25991,Automatic,62756,Diesel,200,47.1,3.0 9082, 3 Series,2017,17488,Automatic,15537,Diesel,30,64.2,2.0 9083, X5,2018,51988,Automatic,9691,Petrol,150,25.4,4.4 9084, 5 Series,2019,28488,Automatic,205,Diesel,145,65.7,2.0 9085, 3 Series,2019,29488,Automatic,7935,Diesel,145,48.7,2.0 9086, 4 Series,2017,16488,Manual,27599,Diesel,150,62.8,2.0 9087, 5 Series,2016,21988,Automatic,29314,Diesel,165,51.4,3.0 9088, 2 Series,2017,17988,Manual,19837,Petrol,150,47.1,1.5 9089, X5,2018,39988,Automatic,16933,Hybrid,140,85.6,2.0 9090, X5,2020,53988,Automatic,5000,Diesel,145,37.7,3.0 9091, 2 Series,2019,23447,Automatic,2231,Petrol,145,50.4,2.0 9092, M4,2020,52988,Automatic,10,Petrol,150,34.0,3.0 9093, M4,2020,45488,Automatic,10,Petrol,150,34.0,3.0 9094, M4,2020,49488,Automatic,10,Petrol,150,34.0,3.0 9095, 3 Series,2016,13988,Automatic,42102,Petrol,125,51.4,2.0 9096, M4,2020,45488,Automatic,10,Petrol,150,34.0,3.0 9097, 4 Series,2017,25488,Automatic,23910,Petrol,145,41.5,3.0 9098, 1 Series,2019,16499,Automatic,7559,Petrol,145,55.5,1.5 9099, X3,2015,18999,Automatic,21512,Diesel,145,54.3,2.0 9100, 2 Series,2016,12150,Manual,57417,Petrol,125,50.4,1.5 9101, 1 Series,2013,12250,Automatic,48491,Diesel,125,60.1,2.0 9102, 5 Series,2012,8499,Manual,77201,Diesel,30,62.8,2.0 9103, 1 Series,2016,11999,Automatic,38204,Diesel,0,78.5,1.5 9104, 1 Series,2016,10550,Manual,40313,Diesel,0,78.5,1.5 9105, 1 Series,2015,9750,Manual,48534,Diesel,20,72.4,1.5 9106, 1 Series,2016,10999,Manual,27681,Diesel,0,83.1,1.5 9107, X1,2016,14499,Manual,27795,Diesel,20,68.9,2.0 9108, 4 Series,2018,26488,Automatic,21770,Petrol,145,41.5,3.0 9109, 5 Series,2018,28988,Automatic,40820,Petrol,145,39.2,3.0 9110, X3,2020,34988,Automatic,5000,Diesel,145,54.3,2.0 9111, 3 Series,2019,28988,Automatic,4673,Diesel,145,48.7,2.0 9112, 4 Series,2019,25988,Automatic,5000,Diesel,145,65.7,2.0 9113, 1 Series,2019,27988,Automatic,3574,Petrol,145,40.4,1.5 9114, 1 Series,2019,28488,Automatic,6744,Petrol,145,40.4,1.5 9115, 3 Series,2019,28488,Automatic,5741,Diesel,145,48.7,2.0 9116, X5,2019,49488,Automatic,6560,Petrol,145,27.2,3.0 9117, 6 Series,2019,35988,Automatic,3693,Diesel,145,47.9,3.0 9118, X5,2019,49488,Automatic,6748,Petrol,145,27.2,3.0 9119, 3 Series,2020,53988,Automatic,5000,Petrol,145,34.9,3.0 9120, M4,2020,53988,Automatic,5000,Petrol,145,34.0,3.0 9121, X1,2020,28488,Manual,5000,Diesel,145,40.4,2.0 9122, 3 Series,2016,18788,Automatic,49477,Diesel,145,53.3,3.0 9123, 3 Series,2017,23488,Automatic,16730,Diesel,145,51.4,3.0 9124, 2 Series,2016,14718,Manual,23130,Petrol,145,47.1,1.5 9125, 3 Series,2017,18999,Manual,28772,Diesel,145,60.1,2.0 9126, 1 Series,2016,12199,Manual,41621,Diesel,30,65.7,2.0 9127, 3 Series,2016,18988,Automatic,32722,Hybrid,0,134.5,2.0 9128, X3,2019,33988,Automatic,7765,Diesel,145,54.3,2.0 9129, 3 Series,2018,22988,Automatic,21276,Diesel,145,56.5,3.0 9130, X6,2019,58988,Automatic,5000,Petrol,145,26.4,3.0 9131, 5 Series,2017,27488,Automatic,23500,Petrol,145,39.2,3.0 9132, 1 Series,2016,12999,Automatic,68949,Petrol,200,43.5,2.0 9133, 2 Series,2016,12799,Manual,57561,Diesel,30,67.3,1.5 9134, 5 Series,2017,25176,Automatic,34640,Diesel,145,60.1,3.0 9135, 4 Series,2015,14750,Manual,38974,Petrol,200,42.8,2.0 9136, X1,2016,12999,Manual,58557,Diesel,20,68.9,2.0 9137, 1 Series,2016,11788,Manual,17084,Diesel,0,78.5,1.5 9138, 3 Series,2016,16999,Automatic,23157,Hybrid,0,134.5,2.0 9139, 3 Series,2019,24988,Automatic,6332,Diesel,145,54.3,2.0 9140, 1 Series,2019,30488,Automatic,5000,Petrol,145,34.5,2.0 9141, 1 Series,2019,26988,Automatic,5000,Diesel,145,51.4,2.0 9142, M4,2019,44988,Automatic,5000,Petrol,145,34.0,3.0 9143, M5,2019,74988,Automatic,2684,Petrol,145,24.1,4.4 9144, X2,2019,28988,Automatic,9401,Diesel,145,58.9,2.0 9145, X7,2020,66988,Automatic,5000,Diesel,145,33.6,3.0 9146, 1 Series,2020,25988,Automatic,5000,Petrol,145,40.4,1.5 9147, 3 Series,2017,24488,Automatic,24122,Diesel,145,51.4,3.0 9148, 1 Series,2019,24488,Automatic,7932,Petrol,145,47.9,2.0 9149, 1 Series,2017,21988,Manual,10417,Petrol,145,36.2,3.0 9150, 3 Series,2017,26488,Automatic,16074,Diesel,145,49.6,3.0 9151, M4,2018,36991,Manual,9662,Petrol,145,31.0,3.0 9152, M4,2016,31491,Semi-Auto,27817,Petrol,305,34.0,3.0 9153, Z4,2016,15991,Manual,25921,Petrol,205,41.5,2.0 9154, 3 Series,2017,12991,Automatic,46567,Diesel,30,67.3,2.0 9155, X1,2017,17988,Automatic,44775,Diesel,125,57.6,2.0 9156, 3 Series,2018,24988,Automatic,23288,Diesel,145,51.4,3.0 9157, X2,2019,27988,Automatic,5599,Petrol,145,39.2,2.0 9158, 2 Series,2020,26988,Automatic,5000,Petrol,145,47.9,2.0 9159, 4 Series,2016,20991,Automatic,14613,Diesel,125,60.1,2.0 9160, X3,2011,10991,Automatic,29670,Diesel,165,50.4,2.0 9161, 1 Series,2014,10400,Automatic,25975,Petrol,145,48.7,1.6 9162, 1 Series,2016,10990,Manual,36681,Diesel,0,83.1,1.5 9163, 2 Series,2016,16181,Manual,28895,Diesel,125,60.1,2.0 9164, 2 Series,2020,34988,Automatic,5000,Petrol,145,36.2,2.0 9165, X1,2016,18988,Automatic,38635,Diesel,145,55.4,2.0 9166, 2 Series,2020,26988,Automatic,1221,Diesel,145,49.6,2.0 9167, 2 Series,2017,10000,Manual,85600,Petrol,145,55.4,1.5 9168, 2 Series,2016,8500,Manual,79460,Diesel,20,68.9,2.0 9169, 3 Series,2015,11295,Automatic,94590,Diesel,30,62.8,2.0 9170, 1 Series,2016,11988,Manual,20698,Diesel,0,78.5,1.5 9171, X5,2016,34488,Automatic,48761,Diesel,235,42.8,3.0 9172, 2 Series,2020,24988,Automatic,5000,Diesel,145,48.7,2.0 9173, 2 Series,2019,27988,Automatic,2290,Petrol,145,46.3,2.0 9174, 3 Series,2015,10695,Automatic,105090,Diesel,30,62.8,2.0 9175, 5 Series,2015,10295,Automatic,101030,Diesel,20,68.9,2.0 9176, 3 Series,2016,16000,Automatic,51440,Diesel,165,49.6,3.0 9177, X1,2011,7950,Automatic,70582,Diesel,200,45.6,2.0 9178, X1,2012,7999,Manual,88706,Diesel,160,51.4,2.0 9179, 6 Series,2006,4999,Automatic,126054,Petrol,555,29.7,3.0 9180, 3 Series,2015,8799,Manual,92468,Diesel,20,68.9,2.0 9181, X3,2014,11000,Manual,109450,Diesel,165,52.3,2.0 9182, 5 Series,2016,12795,Automatic,64470,Diesel,30,62.8,2.0 9183, 2 Series,2015,9295,Manual,71670,Diesel,20,68.9,2.0 9184, X1,2016,11495,Manual,110710,Diesel,125,60.1,2.0 9185, 2 Series,2016,11500,Automatic,83280,Diesel,30,65.7,2.0 9186, X3,2017,28988,Automatic,22800,Diesel,150,48.7,3.0 9187, M4,2020,47488,Automatic,10,Petrol,150,34.0,3.0 9188, 1 Series,2016,14988,Automatic,25633,Diesel,30,65.7,2.0 9189, X1,2016,13500,Manual,75220,Diesel,125,58.9,2.0 9190, X3,2014,12795,Automatic,72430,Diesel,145,54.3,2.0 9191, 4 Series,2014,8500,Manual,141300,Diesel,125,58.9,2.0 9192, X3,2016,15795,Automatic,73850,Diesel,200,47.9,3.0 9193, X3,2016,13795,Automatic,110390,Diesel,145,54.3,2.0 9194, 3 Series,2016,14795,Automatic,70250,Hybrid,0,134.5,2.0 9195, 5 Series,2014,10295,Automatic,103230,Diesel,125,60.1,2.0 9196, 2 Series,2015,7195,Manual,92920,Diesel,20,68.9,2.0 9197, X3,2015,12000,Automatic,126700,Diesel,150,54.3,2.0 9198, 2 Series,2017,12000,Automatic,88100,Hybrid,0,141.2,1.5 9199, 5 Series,2015,14500,Automatic,30310,Diesel,30,62.8,2.0 9200, X1,2016,12795,Manual,71720,Diesel,20,68.9,2.0 9201, 1 Series,2017,9500,Manual,72120,Diesel,20,72.4,1.5 9202, X1,2017,19488,Automatic,34959,Petrol,150,44.8,2.0 9203, 3 Series,2017,21988,Automatic,41741,Diesel,150,51.4,3.0 9204, 3 Series,2014,15680,Semi-Auto,64260,Diesel,165,52.3,3.0 9205, X1,2016,16799,Automatic,50296,Diesel,145,55.4,2.0 9206, 6 Series,2008,8499,Automatic,94000,Diesel,305,39.2,3.0 9207, 3 Series,2016,10695,Automatic,100680,Diesel,125,60.1,2.0 9208, 4 Series,2016,13500,Automatic,100550,Diesel,125,58.9,2.0 9209, 3 Series,2014,9295,Manual,103260,Diesel,125,58.9,2.0 9210, 3 Series,2016,8695,Manual,101930,Diesel,20,72.4,2.0 9211, 3 Series,2014,12295,Manual,56300,Diesel,125,58.9,2.0 9212, X4,2014,18500,Automatic,67210,Diesel,200,47.9,3.0 9213, 1 Series,2017,12295,Automatic,52810,Diesel,20,68.9,2.0 9214, 1 Series,2016,8795,Manual,98210,Diesel,30,65.7,2.0 9215, 5 Series,2016,10000,Automatic,124840,Diesel,30,62.8,2.0 9216, 3 Series,2014,9000,Automatic,155790,Diesel,145,54.3,3.0 9217, 3 Series,2018,19995,Manual,22000,Diesel,145,61.4,2.0 9218, Z3,2002,14995,Automatic,16500,Petrol,325,29.4,2.2 9219, X1,2018,21995,Automatic,2500,Petrol,150,46.3,1.5 9220, 3 Series,2007,2375,Manual,94000,Petrol,240,38.7,2.0 9221, X4,2015,19799,Automatic,51536,Diesel,200,47.9,3.0 9222, 3 Series,2011,5975,Manual,51000,Diesel,125,60.1,2.0 9223, X1,2010,6695,Manual,64000,Diesel,145,54.3,2.0 9224, 1 Series,2009,2995,Manual,120000,Diesel,30,62.8,2.0 9225, 1 Series,2016,7999,Manual,80103,Diesel,0,83.1,1.5 9226, 3 Series,2012,8499,Manual,41000,Petrol,200,42.8,2.0 9227, 1 Series,2014,8290,Manual,65106,Petrol,145,50.4,1.6 9228, 5 Series,2014,14695,Automatic,56000,Diesel,145,53.3,3.0 9229, M6,2006,12495,Semi-Auto,89000,Petrol,570,19.1,5.0 9230, 3 Series,2016,13495,Automatic,74000,Diesel,30,64.2,2.0 9231, 1 Series,2015,11485,Manual,23460,Petrol,300,35.3,3.0 9232, 1 Series,2017,15750,Manual,6290,Petrol,145,36.2,3.0 9233, M3,2004,16950,Manual,80000,Petrol,330,23.7,3.2 9234, 1 Series,2017,19988,Automatic,30139,Petrol,200,39.8,3.0 9235, X5,2016,28488,Automatic,49880,Diesel,200,47.1,3.0 9236, X2,2019,28988,Automatic,7893,Diesel,145,58.9,2.0 9237, 1 Series,2019,24488,Automatic,7488,Diesel,145,61.4,2.0 9238, 3 Series,2017,17950,Automatic,43000,Diesel,145,53.3,3.0 9239, Z4,2012,10595,Manual,47800,Petrol,200,41.5,2.0 9240, 5 Series,2013,10995,Automatic,45464,Diesel,125,60.1,2.0 9241, M6,2014,28490,Automatic,53249,Petrol,565,28.5,4.4 9242, 5 Series,2019,25450,Automatic,23000,Diesel,150,65.7,2.0 9243, 3 Series,2015,12400,Manual,48402,Diesel,30,62.8,2.0 9244, 7 Series,2015,17950,Automatic,65397,Diesel,160,49.6,3.0 9245, M4,2018,34990,Automatic,9210,Petrol,145,34.0,3.0 9246, 3 Series,2017,15000,Automatic,85070,Hybrid,135,134.5,2.0 9247, X5,2015,17500,Automatic,116130,Diesel,200,47.9,3.0 9248, 1 Series,2006,2990,Manual,88000,Petrol,260,37.7,1.6 9249, 1 Series,2013,7675,Manual,60000,Diesel,30,65.7,2.0 9250, 3 Series,2009,4975,Manual,80000,Petrol,160,45.6,2.0 9251, 1 Series,2013,7990,Manual,46057,Diesel,20,68.9,2.0 9252, 3 Series,2012,8995,Automatic,53333,Diesel,20,68.9,2.0 9253, 3 Series,2015,12350,Manual,52507,Diesel,125,57.6,2.0 9254, 5 Series,2013,12950,Automatic,57604,Diesel,150,55.4,3.0 9255, 3 Series,2010,2995,Manual,101104,Petrol,165,44.8,2.0 9256, 1 Series,2014,8990,Manual,77424,Diesel,30,65.7,2.0 9257, 5 Series,2010,7990,Automatic,85724,Diesel,200,46.3,3.0 9258, 3 Series,2015,11000,Automatic,83590,Diesel,30,62.8,2.0 9260, 4 Series,2015,12695,Automatic,105730,Diesel,125,58.9,2.0 9261, 4 Series,2017,16000,Automatic,50390,Diesel,145,65.7,2.0 9262, 1 Series,2014,8000,Manual,94420,Diesel,30,65.7,2.0 9263, 5 Series,2015,10795,Automatic,91360,Diesel,30,62.8,2.0 9264, X1,2015,10795,Manual,22580,Diesel,125,57.6,2.0 9265, 3 Series,2017,15500,Automatic,54590,Petrol,150,47.9,2.0 9266, 5 Series,2012,9990,Automatic,48417,Diesel,125,60.1,2.0 9267, 3 Series,2012,7275,Automatic,80000,Diesel,165,52.3,2.0 9268, 1 Series,2013,8990,Manual,62635,Diesel,30,64.2,2.0 9269, 1 Series,2013,7475,Manual,65000,Petrol,150,49.6,1.6 9270, 1 Series,2013,7990,Manual,60000,Diesel,30,65.7,1.6 9271, 1 Series,2013,6990,Manual,84000,Diesel,20,68.9,2.0 9272, 3 Series,2014,9990,Manual,70643,Diesel,30,62.8,2.0 9273, 1 Series,2008,3975,Manual,79000,Diesel,30,62.8,2.0 9274, 1 Series,2014,7990,Manual,73824,Diesel,30,65.7,2.0 9275, 1 Series,2015,8290,Manual,35000,Petrol,125,51.4,1.6 9276, 3 Series,2009,4675,Manual,70000,Petrol,165,47.9,2.0 9277, 5 Series,2013,8975,Manual,65000,Diesel,125,58.9,2.0 9278, 5 Series,2011,9975,Automatic,74000,Diesel,145,53.3,2.0 9279, 1 Series,2012,7375,Manual,60000,Petrol,145,49.6,1.6 9280, 5 Series,2015,10499,Automatic,82375,Diesel,20,68.9,2.0 9281, 5 Series,2015,9899,Manual,83643,Diesel,125,60.1,2.0 9282, 3 Series,2012,8275,Automatic,75000,Diesel,160,52.3,2.0 9283, 4 Series,2014,12975,Automatic,65000,Diesel,125,60.1,2.0 9284, 3 Series,2005,4375,Manual,55000,Diesel,160,50.4,2.0 9285, 5 Series,2010,7475,Manual,75000,Diesel,145,55.4,2.0 9286, 5 Series,2014,10675,Automatic,64221,Diesel,30,62.8,2.0 9287, 3 Series,2013,8990,Manual,76247,Diesel,30,61.4,2.0 9288, 1 Series,2012,10975,Manual,45000,Diesel,145,56.5,2.0 9289, 3 Series,2008,2675,Manual,130000,Petrol,155,46.3,2.0 9290, 1 Series,2016,11499,Manual,14668,Diesel,20,72.4,1.5 9291, 1 Series,2018,21999,Automatic,16475,Petrol,145,39.8,3.0 9292, 2 Series,2016,11499,Manual,49636,Petrol,125,53.3,1.5 9293, 1 Series,2016,10599,Manual,39779,Diesel,0,83.1,1.5 9294, 6 Series,2014,18999,Automatic,27782,Diesel,160,50.4,3.0 9295, 4 Series,2015,13500,Manual,44748,Diesel,145,53.3,2.0 9296, 5 Series,2008,6795,Automatic,61442,Petrol,260,37.7,2.5 9297, 3 Series,2015,7995,Manual,101215,Diesel,30,65.7,2.0 9298, X1,2016,13495,Manual,47000,Diesel,20,68.9,2.0 9299, 3 Series,2012,6995,Manual,81000,Diesel,30,62.8,2.0 9300, 5 Series,2008,5475,Automatic,65000,Diesel,160,50.4,2.0 9301, 6 Series,2010,8995,Automatic,92642,Diesel,260,40.9,3.0 9302, X3,2013,10795,Automatic,94853,Diesel,160,50.4,2.0 9303, X5,2012,12995,Automatic,110394,Diesel,300,37.7,3.0 9304, 1 Series,2008,4795,Manual,89241,Petrol,200,42.8,2.0 9305, 4 Series,2016,16299,Automatic,52070,Diesel,30,65.7,2.0 9306, 4 Series,2015,14999,Automatic,19887,Diesel,30,64.2,2.0 9307, 5 Series,2013,9950,Manual,70000,Diesel,145,55.4,2.0 9308, 5 Series,2010,7975,Automatic,70000,Diesel,145,54.3,2.0 9309, 3 Series,2016,14975,Manual,49000,Diesel,120,60.1,2.0 9310, 1 Series,2013,7475,Manual,70000,Diesel,0,74.3,1.6 9311, X3,2009,7675,Manual,70000,Diesel,195,45.6,2.0 9312, 3 Series,2013,9975,Manual,70000,Diesel,125,58.9,2.0 9313, 3 Series,2012,7475,Automatic,70000,Diesel,160,52.3,2.0 9314, 5 Series,2018,25999,Automatic,30972,Hybrid,135,156.9,2.0 9315, 1 Series,2016,8999,Manual,69647,Diesel,0,78.5,1.5 9316, X1,2017,22999,Automatic,25190,Petrol,145,44.8,2.0 9317, 3 Series,2016,18789,Automatic,33078,Hybrid,0,134.5,2.0 9318, 5 Series,2014,6995,Manual,127798,Diesel,125,57.6,2.0 9319, 5 Series,2011,11995,Automatic,85896,Diesel,165,50.4,3.0 9320, 1 Series,2008,3995,Manual,107407,Diesel,150,54.3,2.0 9321, 1 Series,2005,3795,Automatic,63547,Diesel,265,42.8,2.0 9322, M5,2015,29795,Automatic,28500,Petrol,565,28.5,4.4 9323, 4 Series,2015,14999,Manual,36781,Diesel,145,53.3,2.0 9324, 2 Series,2016,12350,Manual,29460,Petrol,125,50.4,1.5 9325, 7 Series,2017,25599,Automatic,25014,Diesel,145,57.6,3.0 9326, X1,2016,13999,Manual,37840,Diesel,20,68.9,2.0 9327, 2 Series,2017,15699,Automatic,45061,Hybrid,135,141.2,1.5 9328, 1 Series,2018,17999,Automatic,9945,Petrol,145,36.7,1.5 9329, 1 Series,2017,20999,Automatic,15887,Petrol,145,39.8,3.0 9330, 5 Series,2017,19499,Automatic,21728,Diesel,145,65.7,2.0 9331, 2 Series,2018,18999,Automatic,3924,Petrol,145,50.4,1.5 9332, 3 Series,2018,17199,Automatic,13138,Petrol,145,54.3,1.5 9333, 3 Series,2015,11906,Automatic,50713,Petrol,125,51.4,2.0 9334, 2 Series,2016,12306,Manual,18840,Petrol,125,52.3,1.5 9335, 1 Series,2019,15989,Automatic,5771,Petrol,145,55.5,1.5 9336, 1 Series,2013,16299,Automatic,31086,Petrol,235,37.7,3.0 9337, 1 Series,2016,11799,Manual,19568,Diesel,0,78.5,1.5 9338, 1 Series,2014,14099,Manual,53050,Petrol,300,35.3,3.0 9339, 3 Series,2013,8999,Manual,58223,Diesel,20,68.9,2.0 9340, X3,2015,17999,Automatic,39744,Diesel,145,54.3,2.0 9341, 1 Series,2015,10899,Manual,64716,Diesel,30,65.7,2.0 9342, 2 Series,2016,12000,Automatic,30857,Diesel,20,68.9,2.0 9343, X5,2016,25000,Automatic,52816,Diesel,160,50.4,2.0 9344, 3 Series,2018,17399,Automatic,29065,Diesel,145,64.2,2.0 9345, 1 Series,2010,6275,Manual,60000,Diesel,125,60.1,2.0 9346, 2 Series,2016,13999,Automatic,11576,Diesel,30,64.2,2.0 9347, 2 Series,2015,17799,Automatic,38902,Petrol,260,37.2,3.0 9348, M4,2015,26499,Automatic,35284,Petrol,300,34.0,3.0 9349, 4 Series,2017,19999,Automatic,26162,Diesel,145,58.9,2.0 9350, 5 Series,2016,18749,Automatic,41431,Diesel,160,51.4,3.0 9351, 1 Series,2013,10599,Automatic,21061,Petrol,145,48.7,1.6 9352, X5,2016,29250,Automatic,41464,Hybrid,0,85.6,2.0 9353, 4 Series,2016,16099,Manual,37683,Diesel,30,62.8,2.0 9354, 2 Series,2016,16359,Automatic,17748,Diesel,125,57.6,2.0 9355, 4 Series,2016,13699,Automatic,77784,Diesel,30,65.7,2.0 9356, X4,2016,19250,Automatic,43751,Diesel,145,54.3,2.0 9357, 1 Series,2016,12350,Manual,47324,Diesel,30,65.7,2.0 9358, 1 Series,2016,10499,Manual,36240,Diesel,0,83.1,1.5 9359, 1 Series,2015,12270,Automatic,38573,Diesel,20,68.9,1.5 9360, 5 Series,2016,15850,Automatic,33740,Diesel,30,65.7,2.0 9361, 1 Series,2016,11125,Manual,33149,Diesel,0,78.5,1.5 9362, 3 Series,2014,14500,Automatic,70796,Diesel,160,50.4,3.0 9363, 3 Series,2016,14699,Manual,38206,Diesel,30,64.2,2.0 9364, 5 Series,2015,12999,Manual,52217,Diesel,125,60.1,2.0 9365, 3 Series,2016,16199,Automatic,45223,Hybrid,0,134.5,2.0 9366, 6 Series,2017,24499,Automatic,28062,Diesel,145,48.7,3.0 9367, 3 Series,2016,16099,Automatic,40217,Hybrid,0,148.7,2.0 9368, 1 Series,2013,10999,Manual,32097,Petrol,145,50.4,1.6 9369, 2 Series,2017,15099,Manual,16309,Diesel,145,65.7,2.0 9370, 1 Series,2016,12369,Manual,46170,Diesel,20,70.6,1.5 9371, 5 Series,2018,26495,Automatic,23640,Hybrid,135,156.9,2.0 9372, 3 Series,2016,12999,Automatic,33332,Petrol,125,54.3,1.5 9373, X1,2013,11056,Automatic,49599,Diesel,160,52.3,2.0 9374, 1 Series,2016,17499,Automatic,26855,Petrol,235,37.7,3.0 9375, 1 Series,2016,11001,Manual,31615,Diesel,0,78.5,1.5 9376, 1 Series,2014,8499,Manual,63299,Diesel,20,68.9,2.0 9377, 1 Series,2015,10999,Manual,23905,Diesel,20,72.4,1.5 9378, X1,2014,9999,Manual,42023,Diesel,160,51.4,2.0 9379, X1,2017,15999,Automatic,60703,Diesel,145,65.7,2.0 9380, X5,2016,25449,Automatic,46683,Diesel,200,47.1,3.0 9381, 2 Series,2014,10999,Manual,61819,Diesel,30,62.8,2.0 9382, 2 Series,2016,11999,Manual,32878,Petrol,125,52.3,1.5 9383, 2 Series,2017,15499,Manual,4240,Petrol,30,55.4,1.5 9384, 6 Series,2016,19899,Automatic,50475,Diesel,200,49.6,3.0 9385, X5,2016,24499,Automatic,57146,Diesel,160,50.4,2.0 9386, 1 Series,2017,13499,Automatic,14597,Diesel,145,72.4,1.5 9387, 4 Series,2017,17499,Automatic,33711,Diesel,145,65.7,2.0 9388, 3 Series,2016,11999,Automatic,92300,Hybrid,0,148.7,2.0 9389, 2 Series,2016,16279,Automatic,17574,Petrol,125,51.4,1.5 9390, 1 Series,2012,5995,Manual,98000,Diesel,125,58.9,2.0 9391, 6 Series,2005,4995,Automatic,84000,Petrol,305,24.6,4.4 9392, M3,2013,25945,Semi-Auto,30500,Petrol,570,24.6,4.0 9393, 3 Series,2001,3050,Automatic,90000,Petrol,325,27.7,3.0 9394, 3 Series,2016,16499,Automatic,24500,Hybrid,0,134.5,2.0 9395, 1 Series,2016,11499,Manual,27199,Diesel,0,83.1,1.5 9396, 1 Series,2012,7950,Manual,40488,Diesel,30,62.8,2.0 9397, 3 Series,2016,12450,Automatic,66986,Diesel,30,65.7,2.0 9398, 3 Series,2017,17694,Manual,19400,Diesel,145,64.2,2.0 9399, 3 Series,2015,12212,Automatic,59799,Diesel,30,62.8,2.0 9400, 3 Series,2013,9174,Automatic,79144,Diesel,30,62.8,2.0 9401, X4,2016,19999,Manual,23553,Diesel,160,52.3,2.0 9402, 1 Series,2017,11999,Manual,19108,Petrol,145,56.5,1.5 9403, X5,2016,28999,Automatic,41972,Hybrid,0,85.6,2.0 9404, 3 Series,2014,10399,Manual,47059,Diesel,30,61.4,2.0 9405, 5 Series,2016,15699,Automatic,30767,Diesel,30,62.8,2.0 9406, 5 Series,2000,1699,Manual,99209,Petrol,265,29.4,2.0 9407, 1 Series,2016,10699,Manual,35417,Diesel,0,78.5,1.5 9408, 1 Series,2014,14799,Manual,31914,Petrol,300,35.3,3.0 9409, 4 Series,2016,14799,Manual,57876,Diesel,125,57.6,2.0 9410, X5,2015,29949,Automatic,21500,Diesel,190,47.1,3.0 9411, 7 Series,2012,8750,Automatic,134000,Diesel,250,41.5,3.0 9412, X1,2013,8999,Automatic,60665,Diesel,160,52.3,2.0 9413, 1 Series,2015,13500,Automatic,82876,Petrol,235,37.7,3.0 9414, 5 Series,2013,8999,Automatic,178987,Hybrid,190,40.4,3.0 9415, 1 Series,2011,6000,Manual,80183,Diesel,145,55.4,2.0 9416, 3 Series,2010,5999,Automatic,118000,Petrol,260,35.8,3.0 9417, 1 Series,2017,13995,Manual,14646,Diesel,30,65.7,2.0 9418, 3 Series,2007,2995,Automatic,124200,Diesel,260,40.9,2.0 9419, X5,2012,7250,Automatic,214000,Diesel,300,37.7,3.0 9420, 3 Series,2009,6495,Automatic,122144,Petrol,300,34.0,3.0 9421, 4 Series,2016,17995,Automatic,27203,Diesel,125,58.9,2.0 9422, 3 Series,2011,6495,Manual,66400,Diesel,125,58.9,2.0 9423, X1,2016,13299,Manual,45795,Diesel,20,68.9,2.0 9424, 2 Series,2017,10999,Automatic,79715,Diesel,125,60.1,2.0 9425, 2 Series,2016,14412,Automatic,31838,Petrol,125,51.4,1.5 9426, 3 Series,2015,13695,Manual,30000,Diesel,125,60.1,2.0 9427, 5 Series,2015,13999,Automatic,50700,Diesel,125,60.1,2.0 9428, 3 Series,2002,3999,Automatic,85452,Petrol,330,33.6,2.0 9429, 1 Series,2012,5995,Manual,92000,Petrol,145,49.6,1.6 9430, 1 Series,2016,13995,Automatic,62000,Petrol,235,37.7,3.0 9431, 1 Series,2018,15499,Manual,14287,Diesel,145,65.7,2.0 9432, 5 Series,2016,14999,Automatic,42803,Diesel,30,62.8,2.0 9433, 3 Series,2017,19899,Automatic,28091,Hybrid,135,134.5,2.0 9434, 4 Series,2016,15689,Automatic,60464,Diesel,30,65.7,2.0 9435, 6 Series,2012,17199,Automatic,27352,Diesel,160,51.4,3.0 9436, 3 Series,2016,14399,Automatic,68458,Hybrid,0,148.7,2.0 9437, 1 Series,2017,13999,Manual,16398,Diesel,20,70.6,1.5 9438, 3 Series,2018,17399,Automatic,32117,Diesel,145,64.2,2.0 9439, 1 Series,2016,10899,Manual,23407,Diesel,0,78.5,1.5 9440, 4 Series,2017,14999,Automatic,62111,Diesel,20,70.6,2.0 9441, 5 Series,2016,13299,Automatic,80823,Diesel,30,62.8,2.0 9442, 1 Series,2017,9199,Manual,83923,Diesel,145,83.1,1.5 9443, 1 Series,2016,10070,Manual,47413,Diesel,0,83.1,1.5 9444, X1,2013,9999,Automatic,53540,Diesel,160,52.3,2.0 9445, 2 Series,2016,12500,Automatic,30626,Diesel,20,72.4,1.5 9446, 4 Series,2016,13399,Automatic,60975,Diesel,20,70.6,2.0 9447, 1 Series,2015,10899,Manual,56278,Diesel,20,70.6,1.5 9448, 2 Series,2015,11499,Automatic,90836,Diesel,30,62.8,2.0 9449, 4 Series,2015,15599,Automatic,54213,Diesel,30,65.7,2.0 9450, 2 Series,2016,15199,Automatic,66543,Diesel,145,55.4,2.0 9451, 2 Series,2016,17099,Automatic,31540,Diesel,30,62.8,2.0 9452, 5 Series,2012,11400,Automatic,86674,Diesel,235,43.5,3.0 9453, 2 Series,2016,11299,Automatic,49981,Diesel,20,72.4,1.5 9454, 4 Series,2017,19399,Automatic,30949,Diesel,30,65.7,2.0 9455, 1 Series,2016,11899,Manual,40911,Diesel,20,70.6,1.5 9456, 1 Series,2016,12999,Manual,20467,Diesel,20,70.6,1.5 9457, 4 Series,2018,18899,Manual,12086,Petrol,145,46.3,2.0 9458, 3 Series,2016,15999,Automatic,43527,Diesel,125,60.1,2.0 9459, 1 Series,2017,20299,Automatic,12952,Petrol,200,39.8,3.0 9460, 2 Series,2016,12599,Manual,18933,Petrol,125,52.3,1.5 9461, 3 Series,2015,9299,Manual,65412,Diesel,20,68.9,2.0 9462, 7 Series,2015,23499,Automatic,65218,Diesel,145,54.3,3.0 9463, X4,2016,20000,Automatic,52135,Diesel,145,54.3,2.0 9464, 2 Series,2016,12357,Manual,17994,Petrol,125,52.3,1.5 9465, 4 Series,2016,15399,Automatic,54055,Diesel,125,60.1,2.0 9466, 4 Series,2016,15699,Manual,41993,Diesel,30,62.8,2.0 9467, X5,2016,31999,Automatic,26185,Hybrid,0,85.6,2.0 9468, 3 Series,2018,17250,Automatic,15189,Diesel,145,67.3,2.0 9469, 4 Series,2017,18499,Automatic,29383,Diesel,145,65.7,2.0 9470, 1 Series,2016,9999,Manual,46620,Diesel,0,83.1,1.5 9471, Z4,2016,14799,Manual,20266,Petrol,200,41.5,2.0 9472, 2 Series,2015,11999,Manual,19893,Diesel,30,65.7,2.0 9473, 4 Series,2015,14299,Automatic,80614,Diesel,125,58.9,2.0 9474, 3 Series,2017,14999,Manual,27890,Diesel,145,57.6,2.0 9475, 4 Series,2017,17999,Automatic,26807,Diesel,125,60.1,2.0 9476, 3 Series,2013,13999,Automatic,35688,Diesel,125,58.9,2.0 9477, 1 Series,2016,11199,Manual,31095,Diesel,0,83.1,1.5 9478, 3 Series,2016,19499,Automatic,29789,Hybrid,0,134.5,2.0 9479, 5 Series,2016,15999,Automatic,31228,Diesel,30,62.8,2.0 9480, X1,2017,18499,Automatic,32236,Diesel,145,65.7,2.0 9481, 2 Series,2016,15149,Manual,34608,Petrol,200,42.8,2.0 9482, 3 Series,2016,11269,Automatic,86128,Diesel,30,65.7,2.0 9483, 1 Series,2016,10799,Manual,37087,Diesel,0,83.1,1.5 9484, 3 Series,2016,12789,Manual,74020,Diesel,30,64.2,2.0 9485, 2 Series,2016,12499,Manual,17586,Petrol,125,52.3,1.5 9486, X1,2017,18499,Automatic,41326,Diesel,125,60.1,2.0 9487, X1,2016,14799,Manual,37032,Diesel,125,60.1,2.0 9488, X4,2015,15199,Automatic,95408,Diesel,145,54.3,2.0 9489, 2 Series,2017,14020,Manual,35732,Diesel,145,64.2,2.0 9490, 3 Series,2016,14000,Manual,23323,Diesel,30,62.8,2.0 9491, 3 Series,2016,18599,Automatic,30333,Hybrid,0,134.5,2.0 9492, X1,2016,18199,Automatic,30405,Diesel,125,57.6,2.0 9493, 3 Series,2016,16500,Automatic,53867,Hybrid,0,134.5,2.0 9494, 4 Series,2015,12999,Automatic,90734,Diesel,30,65.7,2.0 9495, 6 Series,2013,16199,Automatic,62068,Diesel,160,49.6,3.0 9496, 3 Series,2012,9199,Automatic,62616,Diesel,30,62.8,2.0 9497, 2 Series,2016,8750,Manual,97147,Diesel,20,68.9,1.5 9498, 3 Series,2016,10740,Automatic,91855,Diesel,0,74.3,2.0 9499, 3 Series,2012,9000,Automatic,75840,Diesel,145,53.3,2.0 9500, 3 Series,2017,15599,Automatic,38070,Diesel,145,64.2,2.0 9501, 1 Series,2016,12299,Manual,27545,Diesel,30,65.7,2.0 9502, 2 Series,2015,11999,Automatic,41704,Diesel,30,61.4,2.0 9503, 2 Series,2014,10360,Automatic,45868,Petrol,145,47.1,2.0 9504, 1 Series,2016,10999,Manual,21964,Diesel,0,78.5,1.5 9505, 1 Series,2013,7999,Manual,61295,Diesel,0,74.3,1.6 9506, 5 Series,2017,21999,Automatic,30990,Diesel,145,62.8,2.0 9507, 2 Series,2014,15399,Automatic,72203,Petrol,260,37.2,3.0 9508, 1 Series,2017,13899,Manual,19300,Diesel,20,70.6,1.5 9509, 3 Series,2016,18299,Automatic,25431,Hybrid,0,134.5,2.0 9510, 5 Series,2016,15599,Automatic,37786,Diesel,30,62.8,2.0 9511, X1,2016,17499,Automatic,44890,Diesel,125,57.6,2.0 9512, 2 Series,2016,12999,Automatic,24479,Petrol,125,53.3,1.5 9513, 5 Series,2016,14499,Automatic,48863,Diesel,30,62.8,2.0 9514, 1 Series,2016,11399,Manual,26231,Diesel,0,78.5,1.5 9515, 3 Series,2016,16399,Automatic,30894,Diesel,30,64.2,2.0 9516, 1 Series,2016,11899,Manual,25281,Petrol,125,53.3,1.5 9517, 1 Series,2015,8999,Manual,60761,Diesel,30,65.7,2.0 9518, 3 Series,2015,12999,Automatic,27153,Diesel,30,62.8,2.0 9519, 1 Series,2017,13399,Automatic,72814,Petrol,125,54.3,1.5 9520, 2 Series,2016,12699,Manual,13267,Petrol,125,52.3,1.5 9521, 1 Series,2014,9999,Manual,42994,Petrol,145,50.4,1.6 9522, X3,2017,21299,Automatic,33610,Diesel,145,54.3,2.0 9523, 3 Series,2014,13499,Automatic,54842,Diesel,30,62.8,2.0 9524, X4,2016,24999,Automatic,28466,Diesel,200,47.9,3.0 9525, X5,2016,31200,Automatic,23747,Hybrid,0,85.6,2.0 9526, X5,2016,27799,Automatic,31903,Hybrid,0,85.6,2.0 9527, 2 Series,2016,12700,Automatic,48841,Petrol,145,46.3,2.0 9528, X4,2017,24999,Automatic,35351,Diesel,200,47.1,3.0 9529, 5 Series,2016,12199,Automatic,79234,Diesel,20,67.3,2.0 9530, 5 Series,2016,19999,Automatic,22312,Diesel,160,51.4,3.0 9531, 5 Series,2017,19099,Automatic,37401,Diesel,145,68.9,2.0 9532, 1 Series,2017,11099,Manual,62495,Diesel,145,78.5,1.5 9533, 5 Series,2016,17499,Automatic,30754,Diesel,30,62.8,2.0 9534, 3 Series,2016,11099,Manual,88192,Diesel,30,65.7,2.0 9535, X5,2016,23499,Automatic,59154,Diesel,200,47.1,3.0 9536, 3 Series,2012,9999,Manual,36529,Diesel,30,61.4,2.0 9537, X1,2014,9999,Automatic,74012,Diesel,160,52.3,2.0 9538, X5,2017,31499,Automatic,23646,Diesel,145,47.1,3.0 9539, 1 Series,2017,19499,Automatic,24482,Petrol,200,39.8,3.0 9540, 3 Series,2013,11599,Manual,54374,Diesel,125,57.6,2.0 9541, M3,2013,19699,Automatic,58125,Petrol,570,25.2,4.0 9542, 3 Series,2016,13899,Automatic,62816,Hybrid,0,148.7,2.0 9543, 3 Series,2016,10599,Automatic,95217,Diesel,0,74.3,2.0 9544, 5 Series,2016,17199,Automatic,14005,Diesel,30,62.8,2.0 9545, 2 Series,2016,9499,Manual,68848,Diesel,0,74.3,1.5 9546, 4 Series,2016,16299,Manual,24280,Diesel,30,62.8,2.0 9547, 4 Series,2016,15199,Manual,51194,Diesel,30,62.8,2.0 9548, 3 Series,2014,14449,Automatic,51062,Diesel,125,58.9,2.0 9549, X3,2012,11753,Automatic,73701,Diesel,160,50.4,2.0 9550, 3 Series,2018,18899,Automatic,25127,Diesel,145,62.8,2.0 9551, 5 Series,2014,14299,Automatic,34758,Diesel,125,57.6,2.0 9552, 1 Series,2016,13499,Automatic,30925,Diesel,20,68.9,2.0 9553, 1 Series,2019,15989,Automatic,12212,Petrol,145,55.5,1.5 9554, 1 Series,2007,1500,Manual,167000,Diesel,125,57.6,2.0 9555, Z3,1999,3995,Manual,74282,Petrol,245,35.3,1.9 9556, 3 Series,2015,9299,Manual,98819,Diesel,20,72.4,2.0 9557, 3 Series,2017,20499,Automatic,14500,Hybrid,0,134.5,2.0 9558, 1 Series,2014,8499,Manual,43248,Diesel,20,68.9,2.0 9559, 2 Series,2016,8999,Automatic,87743,Diesel,20,72.4,1.5 9560, Z3,1999,3995,Manual,51949,Petrol,255,35.3,1.9 9561, 1 Series,2012,7995,Manual,63635,Diesel,30,62.8,2.0 9562, 1 Series,2017,10999,Manual,46147,Diesel,0,83.1,1.5 9563, 3 Series,2016,15699,Automatic,50310,Diesel,30,64.2,2.0 9564, 1 Series,2016,10999,Manual,31847,Diesel,0,78.5,1.5 9565, X2,2018,23465,Automatic,11941,Diesel,145,58.9,2.0 9566, 1 Series,2016,10899,Manual,46035,Diesel,20,70.6,1.5 9567, 3 Series,2016,12299,Automatic,72280,Diesel,20,70.6,2.0 9568, 3 Series,2016,18995,Automatic,23110,Diesel,125,57.6,2.0 9569, 5 Series,2016,12639,Automatic,72924,Diesel,20,68.9,2.0 9570, 5 Series,2019,22495,Automatic,21101,Petrol,150,50.4,2.0 9571, 4 Series,2016,17975,Manual,14000,Petrol,160,46.3,2.0 9572, 3 Series,2017,16745,Automatic,50000,Other,135,148.7,2.0 9573, 3 Series,2016,15099,Automatic,33158,Diesel,30,67.3,2.0 9574, 3 Series,2013,11199,Manual,49720,Diesel,30,61.4,2.0 9575, X3,2014,15159,Automatic,77129,Diesel,145,54.3,2.0 9576, 5 Series,2016,14079,Automatic,74322,Diesel,30,62.8,2.0 9577, 5 Series,2015,13999,Automatic,50558,Diesel,30,62.8,2.0 9578, 4 Series,2017,19259,Automatic,29871,Diesel,145,65.7,2.0 9579, 1 Series,2016,9749,Manual,56044,Diesel,0,78.5,1.5 9580, 1 Series,2016,13499,Manual,40855,Diesel,30,65.7,2.0 9581, 6 Series,2016,20999,Automatic,45140,Diesel,200,49.6,3.0 9582, 2 Series,2017,13799,Manual,14980,Petrol,125,52.3,1.5 9583, 4 Series,2018,19000,Automatic,7970,Petrol,145,44.1,2.0 9584, 3 Series,2012,8750,Manual,54000,Diesel,30,61.4,2.0 9586, 6 Series,2008,9495,Semi-Auto,67000,Diesel,265,40.9,3.0 9587, M4,2015,28995,Semi-Auto,35000,Petrol,330,32.5,3.0 9588, 1 Series,2016,9995,Manual,30000,Diesel,0,83.1,1.5 9589, 4 Series,2016,15999,Automatic,29041,Diesel,30,65.7,2.0 9590, 4 Series,2015,14799,Automatic,51873,Diesel,160,52.3,3.0 9591, 3 Series,2018,18999,Automatic,15377,Diesel,145,56.5,3.0 9592, 1 Series,2017,11339,Manual,41925,Diesel,0,78.5,1.5 9593, 2 Series,2016,10949,Manual,34489,Diesel,0,74.3,1.5 9594, 3 Series,2016,13969,Automatic,41317,Diesel,20,74.3,2.0 9595, 4 Series,2016,19199,Automatic,25000,Diesel,160,52.3,3.0 9596, 1 Series,2017,12499,Manual,20064,Petrol,145,53.3,1.5 9597, 4 Series,2016,14389,Automatic,61688,Diesel,20,70.6,2.0 9598, 1 Series,2015,11699,Manual,33826,Diesel,30,65.7,2.0 9599, X3,2017,23499,Automatic,26986,Diesel,145,54.3,2.0 9600, 2 Series,2016,13899,Manual,24169,Petrol,125,50.4,1.5 9601, X5,2008,7998,Automatic,86800,Diesel,325,34.9,3.0 9602, 6 Series,2013,16600,Automatic,57000,Diesel,165,49.6,3.0 9603, 7 Series,2012,10990,Automatic,76000,Diesel,260,41.5,3.0 9604, 1 Series,2015,10569,Manual,27667,Diesel,30,65.7,2.0 9605, 1 Series,2016,13639,Manual,26016,Diesel,20,70.6,1.5 9606, 1 Series,2016,11469,Manual,33578,Diesel,0,83.1,1.5 9607, 1 Series,2016,10939,Manual,33243,Diesel,0,78.5,1.5 9608, 1 Series,2016,11819,Manual,26141,Diesel,0,78.5,1.5 9609, 3 Series,2014,11999,Manual,49969,Diesel,30,61.4,2.0 9610, 2 Series,2018,15199,Manual,14228,Petrol,145,52.3,1.5 9611, 1 Series,2016,9699,Manual,59751,Diesel,0,83.1,1.5 9612, 3 Series,2012,8569,Automatic,85118,Diesel,30,62.8,2.0 9613, 1 Series,2016,11799,Manual,18644,Diesel,0,78.5,1.5 9614, 1 Series,2014,10999,Automatic,38809,Petrol,145,48.7,1.6 9615, 6 Series,2016,20999,Automatic,43483,Diesel,200,49.6,3.0 9616, 1 Series,2017,20299,Automatic,35259,Petrol,145,39.8,3.0 9617, 3 Series,2015,16189,Automatic,30345,Diesel,125,58.9,2.0 9618, 2 Series,2016,19849,Automatic,41248,Petrol,260,37.2,3.0 9619, X1,2014,10295,Automatic,65000,Diesel,160,52.3,2.0 9620, 5 Series,2013,11995,Automatic,70000,Diesel,145,55.4,2.0 9621, X5,2013,15995,Automatic,76000,Diesel,300,37.7,3.0 9622, 1 Series,2013,7995,Manual,56000,Diesel,30,64.2,2.0 9623, 1 Series,2016,15495,Automatic,31000,Petrol,145,43.5,2.0 9624, 2 Series,2017,14750,Automatic,10000,Petrol,145,55.4,1.5 9625, 5 Series,1996,5995,Automatic,36000,Petrol,270,26.4,2.8 9626, 1 Series,2019,15989,Automatic,9567,Petrol,145,55.5,1.5 9627, 3 Series,2015,14999,Automatic,78680,Diesel,160,52.3,3.0 9628, 1 Series,2019,15199,Manual,10374,Petrol,145,53.3,1.5 9629, 3 Series,2015,11999,Manual,44379,Diesel,30,61.4,2.0 9630, X1,2017,14226,Manual,41950,Diesel,20,68.9,2.0 9631, X4,2015,17399,Manual,70601,Diesel,160,52.3,2.0 9632, X3,2016,14299,Automatic,83354,Diesel,145,54.3,2.0 9633, 5 Series,2013,14195,Automatic,38000,Diesel,150,55.4,2.0 9634, 3 Series,2014,13299,Automatic,41363,Diesel,125,60.1,2.0 9635, 5 Series,2015,13279,Automatic,50355,Diesel,30,62.8,2.0 9636, 5 Series,2016,11799,Automatic,97290,Diesel,30,62.8,2.0 9637, 3 Series,2016,16895,Automatic,46003,Diesel,160,51.4,3.0 9638, 1 Series,2017,12399,Manual,22449,Diesel,145,78.5,1.5 9639, 1 Series,2019,15199,Manual,10514,Petrol,145,53.3,1.5 9640, 1 Series,2019,15989,Automatic,12192,Petrol,145,55.5,1.5 9641, 3 Series,2015,11249,Manual,49520,Diesel,30,67.3,2.0 9642, 6 Series,2013,17339,Automatic,52635,Diesel,160,49.6,3.0 9643, 2 Series,2016,11899,Manual,41312,Diesel,30,65.7,2.0 9644, 1 Series,2016,10799,Manual,37025,Diesel,0,83.1,1.5 9645, 1 Series,2016,12299,Automatic,57701,Diesel,30,62.8,2.0 9646, Z4,2014,13499,Automatic,44027,Petrol,200,41.5,2.0 9647, 3 Series,2017,16899,Automatic,24501,Diesel,30,64.2,2.0 9648, X3,2015,13999,Manual,51715,Diesel,160,52.3,2.0 9649, 5 Series,2007,3995,Manual,150000,Diesel,205,46.3,2.0 9650, 7 Series,2017,29995,Automatic,73348,Diesel,145,54.3,3.0 9651, 3 Series,2016,16995,Automatic,54153,Diesel,30,62.8,2.0 9652, 1 Series,2013,7295,Manual,71000,Diesel,30,64.2,2.0 9653, 3 Series,2016,14199,Manual,51098,Diesel,30,64.2,2.0 9654, 1 Series,2019,15199,Manual,11191,Petrol,145,53.3,1.5 9655, 3 Series,2014,9499,Manual,67911,Diesel,30,62.8,2.0 9656, 3 Series,2015,10999,Manual,55988,Diesel,20,72.4,2.0 9657, 1 Series,2016,13949,Manual,20867,Diesel,20,70.6,1.5 9658, 1 Series,2013,7579,Automatic,81796,Diesel,30,62.8,2.0 9659, 3 Series,2014,13499,Automatic,61829,Diesel,125,57.6,3.0 9660, 2 Series,2016,12299,Manual,39613,Diesel,30,65.7,2.0 9661, 5 Series,2016,19799,Automatic,20724,Diesel,160,51.4,3.0 9662, 4 Series,2018,23999,Automatic,9544,Petrol,145,48.7,2.0 9663, 2 Series,2016,8500,Manual,80250,Diesel,20,68.9,2.0 9664, 3 Series,2016,12295,Automatic,72390,Hybrid,0,148.7,2.0 9665, 4 Series,2014,17490,Automatic,20030,Petrol,165,44.1,2.0 9666, 2 Series,2019,19718,Manual,7378,Petrol,150,52.3,1.5 9667, 5 Series,2014,12500,Automatic,42007,Diesel,20,68.9,2.0 9668, 1 Series,2017,15595,Automatic,24693,Petrol,145,54.3,1.5 9669, 1 Series,2018,18999,Automatic,13760,Diesel,145,49.6,2.0 9670, 2 Series,2016,12299,Manual,11656,Petrol,125,52.3,1.5 9671, 3 Series,2013,7999,Manual,86000,Diesel,125,57.6,2.0 9672, 4 Series,2014,10599,Manual,105850,Diesel,125,58.9,2.0 9673, 5 Series,2015,12500,Automatic,106170,Diesel,160,51.4,3.0 9674, 3 Series,2016,13695,Automatic,64590,Hybrid,0,148.7,2.0 9675, 1 Series,2016,10795,Manual,56800,Diesel,20,70.6,1.5 9676, 1 Series,2008,4695,Manual,101000,Diesel,125,58.9,2.0 9677, 3 Series,2012,8495,Automatic,84000,Diesel,145,53.3,2.0 9678, 1 Series,2006,2995,Manual,90000,Diesel,200,49.6,2.0 9679, X5,2016,27950,Automatic,37900,Diesel,200,47.1,3.0 9680, 3 Series,2016,9500,Manual,88090,Diesel,20,72.4,2.0 9681, 4 Series,2015,10000,Manual,99340,Diesel,30,62.8,2.0 9682, 3 Series,2016,12795,Automatic,75400,Hybrid,0,148.7,2.0 9683, 3 Series,2016,16899,Automatic,30803,Hybrid,0,134.5,2.0 9684, 3 Series,2016,16899,Automatic,45587,Diesel,145,53.3,3.0 9685, 1 Series,2016,10637,Manual,40245,Diesel,0,83.1,1.5 9686, 1 Series,2014,8299,Manual,80207,Diesel,30,62.8,2.0 9687, 1 Series,2014,11999,Automatic,12528,Petrol,125,50.4,1.6 9688, 1 Series,2016,17499,Automatic,42355,Petrol,235,37.7,3.0 9689, 4 Series,2016,17199,Automatic,41589,Diesel,160,49.6,3.0 9690, 3 Series,2014,11399,Automatic,41700,Diesel,125,58.9,2.0 9691, 3 Series,2017,23999,Automatic,19500,Diesel,205,49.6,3.0 9692, X3,2015,18999,Automatic,42400,Diesel,150,54.3,2.0 9693, X1,2018,22490,Automatic,11592,Petrol,145,44.8,2.0 9694, X5,2009,13190,Automatic,68000,Diesel,325,34.0,3.0 9695, 3 Series,2008,4250,Automatic,141000,Petrol,235,39.8,3.0 9696, 3 Series,2004,1445,Manual,162000,Diesel,205,49.6,2.0 9697, X3,2019,33928,Automatic,1799,Diesel,150,54.3,2.0 9698, 1 Series,2019,18989,Manual,20442,Diesel,150,70.6,1.5 9699, 5 Series,2017,21582,Automatic,34179,Diesel,150,65.7,2.0 9700, 4 Series,2019,25449,Automatic,6890,Diesel,145,65.7,2.0 9701, 2 Series,2019,22079,Automatic,3980,Diesel,145,67.3,2.0 9702, 2 Series,2019,21540,Automatic,4802,Diesel,145,48.7,2.0 9703, 3 Series,2017,19799,Automatic,15668,Diesel,145,64.2,2.0 9704, 4 Series,2016,20641,Automatic,24939,Diesel,160,50.4,3.0 9705, 6 Series,2017,22449,Automatic,14400,Diesel,160,51.4,3.0 9706, X3,2019,31449,Automatic,4726,Diesel,145,54.3,2.0 9707, 4 Series,2016,22632,Automatic,31910,Petrol,200,41.5,3.0 9708, 4 Series,2019,24607,Automatic,3480,Diesel,145,58.9,2.0 9709, 2 Series,2020,27989,Manual,3890,Petrol,145,43.5,1.5 9710, 2 Series,2020,37989,Automatic,3890,Petrol,145,36.2,2.0 9711, 5 Series,2017,22971,Automatic,16151,Diesel,150,65.7,2.0 9712, X1,2018,21309,Manual,1794,Petrol,150,51.4,1.5 9713, 1 Series,2016,10989,Manual,49761,Diesel,0,83.1,1.5 9714, 2 Series,2017,14485,Automatic,21697,Petrol,30,55.4,1.5 9715, 2 Series,2015,14145,Automatic,24322,Petrol,125,50.4,2.0 9716, X3,2019,32281,Automatic,2593,Diesel,145,54.3,2.0 9717, 3 Series,2019,28348,Automatic,4884,Petrol,145,41.5,2.0 9718, 1 Series,2016,11495,Automatic,54075,Diesel,20,70.6,2.0 9719, 5 Series,2017,16490,Automatic,54678,Diesel,125,60.1,2.0 9720, 5 Series,2016,17338,Automatic,34143,Diesel,160,51.4,3.0 9721, 5 Series,2017,19917,Automatic,31996,Diesel,145,65.7,2.0 9722, 4 Series,2016,16107,Automatic,46000,Diesel,30,65.7,2.0 9723, X5,2019,51399,Automatic,9803,Diesel,150,37.7,3.0 9724, 1 Series,2017,13806,Manual,20038,Petrol,125,53.3,1.5 9725, 1 Series,2016,19989,Manual,24322,Petrol,265,36.2,3.0 9726, 4 Series,2017,18299,Automatic,19330,Petrol,150,44.8,2.0 9727, 3 Series,2015,16275,Automatic,37676,Diesel,145,53.3,3.0 9728, X5,2014,20995,Automatic,72442,Diesel,200,47.1,3.0 9729, 3 Series,2016,13995,Automatic,62730,Diesel,125,57.6,2.0 9730, 3 Series,2012,9975,Automatic,64191,Diesel,160,50.4,2.0 9731, 1 Series,2013,7995,Manual,76941,Diesel,125,60.1,2.0 9732, 7 Series,2014,19995,Automatic,51932,Hybrid,195,41.5,3.0 9733, 3 Series,2016,14475,Automatic,78878,Other,0,134.5,2.0 9734, 3 Series,2017,14500,Automatic,74930,Hybrid,0,134.5,2.0 9735, 1 Series,2015,9795,Manual,61140,Diesel,125,58.9,2.0 9736, 2 Series,2016,10500,Automatic,115470,Hybrid,0,141.2,1.5 9737, 5 Series,2015,11795,Automatic,110540,Diesel,145,53.3,3.0 9738, 3 Series,2016,9195,Manual,93760,Diesel,20,72.4,2.0 9739, 3 Series,2013,9195,Manual,82260,Diesel,30,62.8,2.0 9740, 2 Series,2016,8500,Manual,94790,Diesel,0,74.3,1.5 9741, 1 Series,2014,9500,Automatic,54020,Diesel,30,64.2,2.0 9742, 3 Series,2013,9000,Manual,73070,Diesel,30,61.4,2.0 9743, X3,2012,11995,Automatic,72040,Diesel,160,50.4,2.0 9744, 3 Series,1999,1200,Automatic,82000,Petrol,245,31.0,2.8 9745, 1 Series,2012,10995,Manual,28000,Diesel,125,58.9,2.0 9746, 3 Series,2016,12000,Automatic,97600,Diesel,30,64.2,2.0 9747, 2 Series,2015,10295,Manual,102900,Diesel,30,64.2,2.0 9748, X1,2016,13295,Manual,71300,Diesel,125,58.9,2.0 9749, X5,2011,11450,Automatic,90734,Diesel,305,38.2,3.0 9750, 1 Series,2010,4995,Manual,93800,Diesel,30,62.8,2.0 9751, 1 Series,2014,10695,Manual,53310,Diesel,30,62.8,2.0 9752, 5 Series,2015,10395,Automatic,114890,Diesel,125,60.1,2.0 9753, 3 Series,2014,7795,Automatic,147110,Diesel,30,62.8,2.0 9754, 1 Series,2014,10695,Automatic,64690,Diesel,30,64.2,2.0 9755, 4 Series,2017,14500,Manual,46350,Diesel,30,62.8,2.0 9756, 6 Series,2014,17500,Automatic,51920,Diesel,160,49.6,3.0 9757, 3 Series,2017,15795,Automatic,64000,Hybrid,0,134.5,2.0 9758, 5 Series,2013,11295,Automatic,76290,Diesel,145,55.4,2.0 9759, 5 Series,2016,11795,Automatic,96620,Diesel,30,62.8,2.0 9760, 2 Series,2016,11295,Manual,68940,Diesel,30,64.2,2.0 9761, 2 Series,2015,5895,Manual,133670,Diesel,20,68.9,2.0 9762, 1 Series,2016,9295,Manual,60740,Diesel,0,83.1,1.5 9763, 4 Series,2016,14795,Automatic,80380,Diesel,125,58.9,2.0 9764, 3 Series,2015,14000,Automatic,75800,Diesel,145,55.4,2.0 9765, 3 Series,2011,11995,Manual,48000,Diesel,145,55.4,2.0 9766, X1,2013,11995,Manual,32000,Diesel,125,57.6,2.0 9767, 1 Series,2012,8995,Manual,41000,Diesel,30,62.8,2.0 9768, Z4,2012,12495,Manual,40000,Petrol,200,41.5,2.0 9769, M5,2012,23995,Automatic,51000,Petrol,555,28.5,4.4 9770, Z4,2011,12995,Manual,26000,Petrol,300,33.2,2.5 9771, 1 Series,2014,14995,Automatic,46000,Petrol,235,37.7,3.0 9772, 1 Series,2017,16000,Manual,16758,Diesel,150,62.8,2.0 9773, X3,2019,34000,Automatic,2483,Petrol,145,30.4,2.0 9774, 2 Series,2019,18250,Manual,6685,Diesel,150,65.7,2.0 9775, X3,2019,38000,Automatic,8794,Diesel,145,36.7,3.0 9776, M4,2019,44889,Automatic,299,Petrol,145,32.5,3.0 9777, 2 Series,2018,16500,Manual,17123,Petrol,150,52.3,1.5 9778, X1,2016,17000,Automatic,46968,Diesel,125,57.6,2.0 9779, X1,2019,20000,Manual,12159,Petrol,150,51.4,1.5 9780, X3,2019,35000,Automatic,3252,Petrol,150,30.4,2.0 9781, 5 Series,2019,32490,Automatic,5134,Hybrid,140,156.9,2.0 9782, 4 Series,2018,21000,Automatic,18000,Diesel,150,65.7,2.0 9783, 1 Series,2017,12250,Manual,24757,Petrol,150,56.5,1.5 9784, X5,2017,38000,Automatic,9038,Petrol,150,29.1,4.4 9785, 2 Series,2019,21975,Automatic,9434,Diesel,145,48.7,2.0 9786, X2,2019,23250,Automatic,8579,Petrol,145,42.2,1.5 9787, X3,2019,30900,Automatic,2682,Petrol,145,30.4,2.0 9788, X3,2019,30000,Automatic,6797,Petrol,145,30.4,2.0 9789, 4 Series,2019,23500,Automatic,8509,Diesel,145,65.7,2.0 9790, 2 Series,2017,15750,Automatic,23200,Diesel,145,68.9,2.0 9791, 5 Series,2019,39889,Automatic,6890,Diesel,145,53.3,3.0 9792, X7,2019,64789,Automatic,3890,Diesel,145,33.6,3.0 9793, 3 Series,2019,25229,Automatic,6890,Diesel,145,48.7,2.0 9794, 2 Series,2019,25449,Automatic,3890,Diesel,145,48.7,2.0 9795, 4 Series,2019,24229,Automatic,3890,Diesel,145,60.1,2.0 9796, 5 Series,2019,28789,Automatic,3890,Diesel,145,60.1,2.0 9797, 4 Series,2019,25449,Automatic,6890,Diesel,145,65.7,2.0 9798, 5 Series,2019,28749,Automatic,6890,Diesel,145,62.8,2.0 9800, 3 Series,2011,3500,Manual,149958,Diesel,30,62.8,2.0 9801, 3 Series,2016,11000,Automatic,111160,Hybrid,0,148.7,2.0 9802, 4 Series,2017,13500,Automatic,68410,Diesel,30,65.7,2.0 9803, 4 Series,2016,10695,Manual,85520,Diesel,30,67.3,2.0 9804, 1 Series,2012,5295,Manual,95360,Diesel,30,62.8,2.0 9805, 2 Series,2017,15999,Manual,24216,Diesel,30,64.2,2.0 9806, 5 Series,2014,12999,Automatic,43208,Diesel,125,57.6,2.0 9807, 5 Series,2018,19999,Automatic,31905,Diesel,145,68.9,2.0 9808, X4,2016,19490,Automatic,59000,Diesel,145,54.3,2.0 9809, 1 Series,2016,13490,Automatic,40000,Diesel,30,65.7,2.0 9810, 3 Series,2013,9490,Automatic,46000,Petrol,145,47.9,1.6 9811, 1 Series,2014,9790,Automatic,59000,Diesel,30,64.2,2.0 9812, 5 Series,2013,14490,Automatic,38000,Petrol,200,43.5,2.0 9813, X3,2016,20990,Automatic,23000,Diesel,145,54.3,2.0 9814, X1,2010,6495,Manual,87300,Diesel,165,49.6,2.0 9815, 5 Series,2016,18759,Automatic,10098,Diesel,125,60.1,2.0 9816, 3 Series,2017,19799,Automatic,27273,Diesel,145,56.5,3.0 9817, X1,2016,13899,Manual,38775,Diesel,20,68.9,2.0 9818, 5 Series,2016,17999,Automatic,27193,Diesel,160,50.4,3.0 9819, 5 Series,2015,13999,Automatic,59420,Diesel,30,62.8,2.0 9820, 3 Series,2016,15199,Automatic,84252,Hybrid,0,134.5,2.0 9821, 3 Series,2016,13849,Manual,20640,Diesel,30,67.3,2.0 9822, 2 Series,2017,17000,Automatic,36824,Diesel,150,60.1,2.0 9823, Z4,2008,14000,Manual,63000,Petrol,325,31.7,3.0 9824, Z3,2001,5950,Manual,60000,Petrol,325,30.7,2.2 9825, 4 Series,2019,25500,Automatic,3250,Petrol,145,48.7,2.0 9826, M4,2019,40000,Automatic,1326,Petrol,145,34.0,3.0 9827, 3 Series,2020,37000,Automatic,4691,Hybrid,135,8.8,2.0 9828, i8,2019,72000,Automatic,176,Hybrid,135,141.2,1.5 9829, X1,2019,26899,Automatic,3980,Diesel,145,60.1,2.0 9830, 4 Series,2019,25949,Automatic,1510,Petrol,145,48.7,2.0 9831, 2 Series,2019,26750,Automatic,4259,Petrol,145,39.8,3.0 9832, 1 Series,2019,30000,Automatic,8501,Petrol,145,34.5,2.0 9833, 3 Series,2016,16995,Automatic,61630,Diesel,145,53.3,3.0 9834, 1 Series,2012,6995,Manual,93697,Diesel,125,60.1,2.0 9835, 1 Series,2013,6990,Manual,68000,Petrol,125,52.3,1.6 9836, M3,2004,17850,Manual,60000,Petrol,325,23.3,3.2 9837, M3,2004,19500,Manual,46000,Petrol,325,23.3,3.2 9838, Z4,2004,8750,Manual,39000,Petrol,330,31.0,3.0 9839, Z4,2011,10450,Manual,64250,Petrol,305,33.2,2.5 9840, 3 Series,2014,10750,Manual,59000,Diesel,125,58.9,2.0 9841, Z3,1997,3950,Manual,49000,Petrol,270,35.3,1.9 9842, Z3,1998,3950,Manual,56500,Petrol,270,35.3,1.9 9843, 4 Series,2019,24900,Automatic,4980,Petrol,145,45.6,2.0 9844, X1,2016,17100,Automatic,24999,Diesel,125,57.6,2.0 9845, 1 Series,2017,13000,Manual,46000,Petrol,125,52.3,1.5 9846, 1 Series,2017,14925,Manual,31000,Petrol,145,46.3,2.0 9847, 4 Series,2014,19725,Automatic,19500,Diesel,160,50.4,3.0 9848, 1 Series,2017,21100,Automatic,11360,Petrol,145,39.8,3.0 9849, X6,2017,36000,Automatic,31931,Petrol,145,29.1,4.4 9850, 2 Series,2019,21250,Automatic,10440,Diesel,145,62.8,2.0 9851, 4 Series,2016,15750,Automatic,37484,Diesel,30,65.7,2.0 9852, X5,2017,32000,Automatic,29183,Diesel,150,47.1,3.0 9853, X3,2017,20500,Automatic,30448,Diesel,150,54.3,2.0 9854, 3 Series,2018,19250,Automatic,28935,Diesel,145,64.2,2.0 9855, 3 Series,2015,13150,Automatic,54204,Diesel,125,61.4,2.0 9856, 5 Series,2002,6990,Automatic,78316,Petrol,325,23.7,3.5 9857, 7 Series,2016,23990,Automatic,34000,Diesel,125,57.6,3.0 9858, X5,2015,25990,Automatic,47000,Diesel,200,47.1,3.0 9859, X4,2015,17990,Automatic,66000,Diesel,145,54.3,2.0 9860, X5,2016,28990,Automatic,29000,Diesel,205,47.1,3.0 9861, 1 Series,2012,8990,Automatic,64000,Diesel,165,51.4,2.0 9862, X1,2017,20990,Automatic,8000,Diesel,150,60.1,2.0 9863, 3 Series,2016,18990,Automatic,26000,Other,0,134.5,2.0 9864, 1 Series,2017,21990,Automatic,18000,Petrol,205,39.8,3.0 9865, X6,2017,31990,Automatic,42000,Diesel,150,42.8,3.0 9866, 4 Series,2017,18000,Automatic,22462,Diesel,150,65.7,2.0 9867, X5,2017,27500,Automatic,9748,Diesel,150,47.9,3.0 9868, X3,2017,23250,Automatic,10897,Diesel,150,54.3,2.0 9869, 1 Series,2017,19450,Automatic,45000,Petrol,150,39.8,3.0 9870, 3 Series,2014,14990,Manual,27000,Diesel,150,55.4,2.0 9871, M5,2016,35995,Automatic,39200,Petrol,555,28.5,4.4 9872, 3 Series,2008,3990,Automatic,123023,Petrol,200,42.2,2.0 9873, 3 Series,2008,5990,Manual,108000,Petrol,235,38.7,3.0 9874, 3 Series,2002,2990,Manual,121821,Petrol,330,29.4,2.5 9875, 3 Series,2004,3990,Manual,82785,Petrol,330,29.4,2.5 9876, 3 Series,2014,5990,Manual,138750,Diesel,30,65.7,2.0 9877, 3 Series,2014,12990,Manual,30000,Petrol,160,44.8,2.0 9878, 1 Series,2016,11990,Manual,39000,Diesel,20,70.6,1.5 9879, 3 Series,2015,14990,Automatic,26000,Diesel,30,64.2,2.0 9880, M5,2014,23490,Automatic,55241,Petrol,555,28.5,4.4 9881, 4 Series,2014,18250,Automatic,18000,Diesel,160,50.4,3.0 9882, X3,2017,20500,Automatic,32248,Diesel,145,54.3,2.0 9883, 3 Series,2016,18990,Automatic,30000,Diesel,145,56.5,3.0 9884, 2 Series,2017,18990,Automatic,14000,Diesel,145,65.7,2.0 9885, X6,2018,34990,Automatic,40000,Diesel,145,40.9,3.0 9886, 3 Series,2017,21990,Automatic,24000,Diesel,145,51.4,3.0 9887, X4,2019,34990,Automatic,7000,Diesel,150,42.8,2.0 9888, X1,2016,19990,Automatic,20000,Diesel,150,56.5,2.0 9889, 4 Series,2015,22995,Automatic,20454,Petrol,260,37.2,3.0 9890, 5 Series,2018,29995,Automatic,9034,Diesel,145,60.1,3.0 9891, X4,2016,23995,Automatic,44572,Diesel,200,47.9,3.0 9892, 5 Series,2017,30995,Automatic,38089,Petrol,145,39.2,3.0 9893, 2 Series,2016,19995,Automatic,53472,Petrol,200,39.8,3.0 9894, 3 Series,2016,24495,Automatic,45853,Diesel,200,49.6,3.0 9895, 3 Series,2015,18995,Automatic,31500,Diesel,140,56.5,3.0 9896, 5 Series,2017,27495,Automatic,43503,Diesel,145,53.3,3.0 9897, 3 Series,2014,10950,Automatic,42000,Diesel,30,62.8,2.0 9898, X5,2016,40950,Automatic,20000,Petrol,570,25.4,4.4 9899, M4,2019,40950,Semi-Auto,12000,Petrol,145,34.0,3.0 9900, 1 Series,2014,11990,Automatic,24500,Petrol,145,48.7,1.6 9901, 4 Series,2013,16990,Automatic,47770,Petrol,165,44.1,2.0 9902, 3 Series,2012,11500,Automatic,41600,Diesel,160,50.4,2.0 9903, X6,2014,16750,Automatic,68787,Diesel,305,37.7,3.0 9904, 1 Series,2017,21490,Automatic,20000,Petrol,150,39.8,3.0 9905, 3 Series,2014,13695,Manual,51000,Diesel,125,57.6,2.0 9906, 4 Series,2016,37940,Semi-Auto,21600,Petrol,300,34.0,3.0 9907, 1 Series,2013,9950,Automatic,62000,Diesel,30,64.2,2.0 9908, X7,2019,67950,Automatic,15000,Diesel,145,31.4,3.0 9909, 1 Series,2012,6990,Manual,58000,Diesel,30,62.8,2.0 9910, 5 Series,2012,11990,Automatic,84000,Diesel,165,51.4,3.0 9911, 1 Series,2010,5995,Manual,106000,Diesel,150,56.5,2.0 9912, 1 Series,2012,6750,Manual,60000,Diesel,125,58.9,2.0 9913, 3 Series,2017,15200,Automatic,19147,Petrol,145,47.9,2.0 9914, 3 Series,2007,3885,Automatic,97284,Diesel,260,42.2,2.0 9915, X5,2014,20985,Automatic,40000,Diesel,200,47.9,3.0 9916, 1 Series,2013,8485,Manual,36075,Diesel,30,62.8,2.0 9917, 2 Series,2018,18400,Automatic,12004,Petrol,145,50.4,1.5 9918, 1 Series,2010,2450,Manual,117454,Diesel,30,62.8,2.0 9919, 3 Series,2012,7000,Manual,93819,Diesel,20,68.9,2.0 9920, 3 Series,2017,17650,Automatic,29426,Petrol,200,43.5,2.0 9921, 3 Series,2013,9900,Automatic,89543,Diesel,125,60.1,2.0 9922, 1 Series,2013,15300,Manual,39872,Petrol,300,33.2,3.0 9923, X1,2015,16600,Automatic,44105,Diesel,125,57.6,2.0 9925, X3,2016,19000,Automatic,22492,Diesel,145,54.3,2.0 9926, X3,2013,15500,Automatic,30000,Diesel,165,50.4,2.0 9927, X5,2016,26250,Automatic,29614,Diesel,205,47.1,3.0 9928, 6 Series,2014,16500,Automatic,59295,Diesel,160,49.6,3.0 9929, 7 Series,2019,49000,Automatic,2000,Hybrid,135,113.0,2.0 9930, X5,2017,27000,Automatic,21470,Diesel,145,45.6,3.0 9931, i8,2015,37995,Automatic,48800,Other,0,134.5,1.5 9932, X5,2014,24999,Automatic,52484,Diesel,200,47.1,3.0 9933, 3 Series,2013,7499,Manual,112000,Diesel,20,68.9,2.0 9934, 1 Series,2016,8999,Manual,94300,Diesel,0,83.1,1.5 9935, 3 Series,2016,17999,Automatic,45000,Diesel,160,49.6,3.0 9936, 1 Series,2016,8999,Manual,106600,Diesel,0,83.1,1.5 9937, 1 Series,2016,12499,Manual,42150,Petrol,125,53.3,1.5 9938, Z3,1999,3950,Manual,58000,Petrol,270,35.3,1.9 9939, M3,2009,16950,Manual,65000,Petrol,580,21.9,4.0 9940, M3,2009,16950,Manual,65000,Petrol,580,21.9,4.0 9941, 3 Series,2008,5985,Automatic,76000,Petrol,235,39.2,3.0 9942, 3 Series,2013,10985,Automatic,70000,Diesel,165,50.4,2.0 9943, 3 Series,2013,10985,Automatic,70000,Diesel,165,50.4,2.0 9944, 5 Series,2017,15995,Automatic,59069,Diesel,30,68.9,2.0 9945, 3 Series,2013,11650,Manual,50708,Petrol,200,41.5,2.0 9946, 1 Series,2015,11995,Automatic,32840,Petrol,125,50.4,1.6 9947, 2 Series,2016,15495,Automatic,34391,Diesel,20,68.9,1.5 9948, X1,2015,13495,Automatic,30951,Diesel,165,52.3,2.0 9949, 1 Series,2014,15295,Automatic,28893,Petrol,235,37.7,3.0 9950, X1,2012,8999,Manual,41000,Diesel,160,51.4,2.0 9951, 1 Series,2015,15499,Automatic,32000,Petrol,235,37.7,3.0 9952, 3 Series,2013,11999,Manual,40000,Diesel,125,57.6,2.0 9953, X5,2014,19999,Automatic,80000,Diesel,200,47.9,2.0 9954, X3,2014,13999,Automatic,106870,Diesel,150,54.3,2.0 9955, 1 Series,2016,9999,Manual,82850,Diesel,0,83.1,1.5 9956, 4 Series,2016,13999,Manual,43000,Diesel,30,67.3,2.0 9957, X3,2011,9999,Automatic,72500,Diesel,165,50.4,2.0 9958, 1 Series,2016,9495,Manual,49000,Petrol,30,56.5,1.5 9959, 3 Series,2009,6695,Manual,77000,Diesel,145,53.3,2.0 9960, 5 Series,2004,4250,Automatic,90000,Petrol,325,26.6,4.4 9961, 5 Series,2012,9499,Automatic,129000,Diesel,165,51.4,3.0 9962, 5 Series,2012,8950,Manual,56700,Diesel,30,62.8,2.0 9963, Z4,2004,1995,Manual,114000,Petrol,325,32.1,2.2 9964, X3,2017,19980,Automatic,55780,Diesel,150,54.3,2.0 9965, 3 Series,2018,24000,Automatic,15331,Petrol,145,40.4,3.0 9966, X5,2019,44000,Automatic,11900,Diesel,145,37.7,3.0 9967, X5,2017,31000,Automatic,30749,Diesel,145,47.1,3.0 9968, 1 Series,2013,7500,Manual,29000,Diesel,120,58.9,2.0 9969, 1 Series,2009,5295,Manual,77000,Petrol,205,42.8,2.0 9970, 6 Series,2016,21795,Automatic,27483,Diesel,200,49.6,3.0 9971, 3 Series,2013,9295,Manual,55125,Diesel,30,62.8,2.0 9972, 1 Series,2012,5495,Manual,73853,Diesel,125,60.1,2.0 9973, 1 Series,2013,14999,Automatic,45000,Petrol,235,37.7,3.0 9974, X5,2017,34999,Automatic,30000,Other,130,85.6,2.0 9975, 1 Series,2013,8999,Manual,57000,Diesel,30,65.7,2.0 9976, 1 Series,2015,8999,Manual,97800,Diesel,0,83.1,1.5 9977, 3 Series,2014,11490,Automatic,51783,Diesel,125,60.1,2.0 9978, X4,2016,22490,Automatic,57000,Diesel,205,47.1,3.0 9979, 3 Series,2009,5999,Automatic,120000,Petrol,305,34.0,3.0 9980, X5,2017,29950,Automatic,23000,Diesel,145,50.4,2.0 9982, Z4,2016,18948,Automatic,10000,Petrol,205,41.5,2.0 9983, M5,2018,65948,Automatic,13500,Petrol,150,24.1,4.4 9984, M5,2019,69948,Automatic,13000,Petrol,150,24.1,4.4 9985, 1 Series,2017,17448,Automatic,8000,Petrol,150,54.3,1.5 9986, X5,2013,19948,Automatic,43000,Diesel,305,38.2,3.0 9987, X3,2014,15995,Automatic,35000,Diesel,160,50.4,2.0 9988, X5,2009,10890,Automatic,71000,Diesel,330,34.4,3.0 9989, 7 Series,2007,5200,Automatic,83000,Diesel,325,34.4,2.5 9990, 1 Series,2008,2999,Manual,92000,Petrol,200,44.1,2.0 9991, 3 Series,2016,15495,Automatic,32000,Other,0,148.7,2.0 9992, 1 Series,2012,6495,Manual,78600,Petrol,145,49.6,1.6 9993, M5,2019,69995,Automatic,3700,Petrol,145,24.1,4.4 9994, 2 Series,2016,12695,Manual,42000,Petrol,125,53.3,1.5 9995, X3,2007,4990,Automatic,100000,Diesel,555,32.8,3.0 9996, 3 Series,2012,11490,Automatic,89977,Diesel,125,60.1,2.0 9997, 1 Series,2012,7000,Manual,68397,Diesel,30,62.8,2.0 9998, X3,2012,10800,Automatic,62335,Diesel,160,50.4,2.0 9999, X4,2015,21800,Automatic,26722,Diesel,205,47.9,3.0 10000, Z4,2014,13200,Manual,37957,Petrol,200,41.5,2.0 10001, M2,2018,23495,Automatic,17000,Petrol,145,39.8,3.0 10002, M2,2018,39995,Semi-Auto,6120,Petrol,150,29.1,3.0 10003, 3 Series,2011,7495,Automatic,102000,Diesel,200,46.3,3.0 10004, 5 Series,2010,6980,Automatic,164500,Diesel,140,53.3,2.0 10005, 3 Series,2012,6480,Manual,112000,Diesel,30,61.4,2.0 10006, 3 Series,2000,1550,Automatic,93000,Petrol,270,29.7,2.5 10007, 1 Series,2018,14750,Automatic,24791,Petrol,150,55.5,1.5 10008, X1,2017,16780,Manual,33941,Diesel,125,58.9,2.0 10009, 3 Series,2002,2350,Manual,99000,Petrol,325,30.1,2.2 10010, X5,2011,15980,Automatic,46000,Petrol,570,22.6,4.4 10011, X1,2013,7640,Manual,67000,Diesel,160,51.4,2.0 10012, X3,2014,9990,Automatic,107000,Diesel,165,50.4,2.0 10013, 5 Series,2012,11440,Automatic,71000,Diesel,240,43.5,3.0 10014, X3,2011,8440,Automatic,85000,Diesel,165,50.4,2.0 10015, M4,2018,36440,Automatic,16000,Petrol,150,34.0,3.0 10016, 3 Series,2009,4740,Manual,91000,Diesel,125,57.6,2.0 10017, 3 Series,2009,3490,Manual,89000,Petrol,165,47.9,2.0 10018, 5 Series,2013,6990,Automatic,108000,Diesel,125,57.6,2.0 10019, 3 Series,2006,2795,Manual,76000,Diesel,160,50.4,2.0 10020, 1 Series,2010,3350,Manual,93890,Diesel,30,62.8,2.0 10021, 3 Series,2007,2550,Manual,103000,Diesel,205,49.6,2.0 10022, X2,2019,28000,Automatic,2920,Diesel,150,58.9,2.0 10023, X1,2016,21390,Automatic,22595,Petrol,160,44.8,2.0 10024, 5 Series,2017,21390,Automatic,33543,Diesel,150,65.7,2.0 10025, 3 Series,2012,7999,Automatic,85000,Diesel,20,68.9,2.0 10026, 1 Series,2013,11999,Automatic,33000,Diesel,30,64.2,2.0 10027, 5 Series,2010,11999,Automatic,55000,Petrol,555,27.2,4.4 10028, 5 Series,2007,2499,Automatic,129000,Diesel,330,35.8,2.5 10029, 5 Series,2010,6500,Automatic,129000,Diesel,205,46.3,3.0 10030, 7 Series,2012,12495,Automatic,41000,Diesel,260,41.5,3.0 10031, 3 Series,2013,11495,Automatic,62000,Diesel,30,62.8,2.0 10032, M4,2017,32000,Automatic,24905,Petrol,150,34.0,3.0 10033, 5 Series,2018,26790,Automatic,20000,Hybrid,140,156.9,2.0 10034, 5 Series,2017,23880,Automatic,6002,Hybrid,140,156.9,2.0 10035, X4,2019,55000,Automatic,2233,Petrol,145,24.8,3.0 10036, 2 Series,2019,19190,Automatic,12790,Diesel,145,51.4,2.0 10037, 1 Series,2015,14000,Automatic,17543,Diesel,20,70.6,2.0 10038, 3 Series,2018,20490,Automatic,12054,Diesel,150,64.2,2.0 10039, 1 Series,2017,14290,Manual,23674,Petrol,125,52.3,1.5 10040, 1 Series,2015,7740,Manual,85000,Diesel,0,83.1,1.5 10041, X1,2018,19250,Automatic,4972,Diesel,145,60.1,2.0 10042, X2,2019,21400,Automatic,11151,Petrol,145,40.4,2.0 10043, 5 Series,2018,19500,Automatic,37281,Petrol,145,50.4,2.0 10044, 5 Series,2018,19500,Automatic,42226,Petrol,145,50.4,2.0 10045, 1 Series,2017,14000,Automatic,40511,Diesel,145,62.8,2.0 10046, X1,2017,16400,Automatic,29657,Diesel,145,65.7,2.0 10047, 3 Series,2018,17000,Automatic,10877,Petrol,145,54.3,1.5 10048, 1 Series,2016,13000,Manual,21909,Petrol,125,52.3,1.5 10049, 1 Series,2017,21880,Automatic,25611,Petrol,145,39.8,3.0 10050, X5,2019,48000,Automatic,7513,Diesel,150,37.7,3.0 10051, X5,2019,65000,Automatic,7374,Hybrid,140,188.3,3.0 10052, 1 Series,2016,11200,Manual,17863,Diesel,0,83.1,1.5 10053, 1 Series,2017,12000,Manual,41927,Diesel,145,68.9,2.0 10054, 3 Series,2015,15300,Automatic,51344,Diesel,165,52.3,3.0 10055, X6,2019,57000,Automatic,8480,Diesel,150,34.9,3.0 10056, 2 Series,2018,17890,Automatic,9370,Petrol,150,40.9,1.5 10057, 2 Series,2020,31590,Manual,980,Petrol,145,43.5,1.5 10058, 1 Series,2013,9880,Automatic,53346,Petrol,145,48.7,1.6 10059, X1,2017,19490,Automatic,27988,Diesel,145,57.6,2.0 10060, 2 Series,2016,13790,Manual,11338,Diesel,30,65.7,2.0 10061, X2,2018,23000,Automatic,10369,Diesel,145,58.9,2.0 10062, 6 Series,2016,18450,Automatic,32449,Diesel,160,51.4,3.0 10063, 4 Series,2016,15750,Automatic,62046,Diesel,30,65.7,2.0 10064, 5 Series,2015,13600,Automatic,60892,Diesel,125,60.1,2.0 10065, 2 Series,2020,25000,Automatic,2980,Petrol,145,40.9,1.5 10066, X1,2014,12880,Automatic,38206,Diesel,145,56.5,2.0 10067, 2 Series,2016,12590,Automatic,45458,Diesel,20,68.9,2.0 10068, 3 Series,2018,26000,Automatic,11261,Petrol,145,41.5,3.0 10069, 2 Series,2017,15000,Automatic,41419,Other,0,141.2,1.5 10070, 3 Series,2017,18000,Automatic,24599,Diesel,150,62.8,2.0 10071, 4 Series,2015,13000,Automatic,56131,Diesel,30,62.8,2.0 10072, X4,2016,21400,Automatic,44352,Diesel,150,54.3,2.0 10073, X4,2017,23900,Automatic,23604,Diesel,150,54.3,2.0 10074, X3,2016,16250,Automatic,74838,Diesel,145,54.3,2.0 10075, 3 Series,2016,11000,Manual,68052,Diesel,20,68.9,2.0 10076, 5 Series,2017,16400,Automatic,39728,Diesel,125,60.1,2.0 10077, 3 Series,2017,14200,Manual,24589,Diesel,150,67.3,2.0 10078, X3,2016,19300,Manual,29281,Diesel,165,52.3,2.0 10079, 1 Series,2019,16900,Automatic,4176,Petrol,145,55.5,1.5 10081, 1 Series,2019,18700,Automatic,9520,Petrol,150,54.3,1.5 10082, X1,2017,17500,Automatic,44882,Petrol,165,44.8,2.0 10083, 3 Series,2016,14300,Manual,20955,Petrol,205,40.4,2.0 10084, X3,2013,13100,Automatic,63505,Diesel,165,50.4,2.0 10085, 3 Series,2017,16400,Automatic,66782,Other,140,134.5,2.0 10087, 4 Series,2018,18300,Automatic,37491,Petrol,145,45.6,2.0 10088, 3 Series,2017,16700,Automatic,61968,Other,140,134.5,2.0 10089, X5,2016,24000,Automatic,72219,Diesel,205,47.1,3.0 10090, 3 Series,2018,18600,Automatic,33254,Diesel,150,64.2,2.0 10091, 3 Series,2016,12700,Automatic,47266,Diesel,30,65.7,2.0 10092, 1 Series,2013,9000,Manual,39856,Diesel,125,58.9,2.0 10093, 3 Series,2016,13850,Automatic,32869,Diesel,30,67.3,2.0 10094, 1 Series,2017,11700,Automatic,69643,Diesel,30,62.8,2.0 10095, 1 Series,2015,12950,Automatic,74238,Diesel,125,60.1,2.0 10096, 1 Series,2015,11000,Manual,40829,Diesel,20,70.6,1.5 10097, 3 Series,2018,15000,Automatic,39758,Petrol,145,51.4,2.0 10098, 5 Series,2017,16400,Automatic,67287,Diesel,20,68.9,2.0 10099, 1 Series,2017,13200,Automatic,24614,Petrol,150,58.9,1.5 10100, 5 Series,2016,16600,Automatic,21166,Diesel,30,62.8,2.0 10101, X1,2017,12700,Manual,62344,Diesel,150,68.9,2.0 10102, X3,2015,12250,Automatic,91083,Diesel,150,54.3,2.0 10103, X1,2014,11000,Automatic,37905,Diesel,165,52.3,2.0 10104, 3 Series,2016,14750,Automatic,67801,Diesel,125,60.1,2.0 10105, 3 Series,2016,11300,Automatic,73178,Diesel,20,70.6,2.0 10106, 2 Series,2015,10500,Automatic,44056,Petrol,30,55.4,1.5 10107, 5 Series,2016,12250,Automatic,83189,Diesel,20,68.9,2.0 10108, X2,2020,33890,Automatic,1980,Petrol,145,34.0,2.0 10109, X5,2019,51890,Automatic,5980,Diesel,145,37.7,3.0 10110, X7,2019,69880,Automatic,3980,Diesel,145,31.4,3.0 10111, 5 Series,2015,13400,Automatic,56889,Diesel,30,62.8,2.0 10112, 5 Series,2017,15750,Automatic,28762,Diesel,30,62.8,2.0 10113, X3,2016,18850,Automatic,56782,Diesel,145,54.3,2.0 10114, 3 Series,2020,43880,Automatic,5980,Hybrid,135,8.8,2.0 10115, 2 Series,2019,21390,Automatic,9490,Petrol,145,39.2,1.5 10116, X6,2019,56290,Automatic,5980,Diesel,145,34.9,3.0 10117, 7 Series,2019,47890,Automatic,7414,Diesel,145,44.8,3.0 10118, X3,2017,24390,Automatic,23389,Diesel,150,54.3,2.0 10119, 2 Series,2017,15100,Manual,31265,Petrol,145,47.1,1.5 10120, X3,2016,13400,Automatic,85575,Diesel,150,54.3,2.0 10121, X3,2017,21700,Automatic,21617,Diesel,150,54.3,2.0 10122, 5 Series,2017,14200,Automatic,65319,Diesel,125,60.1,2.0 10123, 3 Series,2016,13000,Automatic,34303,Petrol,125,54.3,1.5 10124, 1 Series,2016,10500,Manual,45340,Diesel,0,83.1,1.5 10125, X1,2016,11950,Automatic,89114,Diesel,30,65.7,2.0 10126, 3 Series,2013,10200,Automatic,74561,Diesel,30,62.8,2.0 10127, 3 Series,2017,12750,Manual,41732,Petrol,145,48.7,2.0 10128, X1,2016,16400,Automatic,47406,Diesel,125,57.6,2.0 10129, 7 Series,2016,26800,Automatic,30194,Diesel,150,54.3,3.0 10130, 1 Series,2016,9800,Manual,33835,Petrol,30,56.5,1.5 10131, 5 Series,2016,14000,Automatic,48403,Diesel,30,62.8,2.0 10132, 3 Series,2013,8800,Manual,60863,Diesel,125,57.6,2.0 10133, 2 Series,2017,13000,Manual,28706,Petrol,125,52.3,1.5 10134, 5 Series,2017,16700,Automatic,36164,Diesel,125,60.1,2.0 10135, 4 Series,2016,16700,Automatic,43463,Diesel,30,65.7,2.0 10136, 2 Series,2015,13700,Automatic,52541,Diesel,125,57.6,2.0 10137, X1,2016,14500,Automatic,51505,Diesel,30,65.7,2.0 10138, 1 Series,2016,13000,Automatic,24297,Diesel,20,72.4,1.5 10139, 3 Series,2016,16000,Automatic,34383,Diesel,30,64.2,2.0 10140, 3 Series,2017,13300,Automatic,41685,Diesel,145,67.3,2.0 10141, X1,2017,13400,Manual,44580,Diesel,150,68.9,2.0 10142, 2 Series,2018,17400,Automatic,7209,Petrol,150,40.9,1.5 10143, 1 Series,2014,9000,Manual,39719,Diesel,30,65.7,2.0 10144, 5 Series,2015,13450,Automatic,64560,Diesel,30,62.8,2.0 10145, X4,2016,21900,Automatic,20737,Diesel,145,54.3,2.0 10146, 1 Series,2017,13900,Automatic,31672,Diesel,20,67.3,2.0 10147, 3 Series,2016,15800,Automatic,16319,Diesel,30,64.2,2.0 10148, 4 Series,2019,25995,Automatic,5000,Petrol,150,45.6,2.0 10149, 2 Series,2017,14300,Manual,22445,Petrol,125,50.4,1.5 10150, 1 Series,2016,12200,Manual,17941,Petrol,125,53.3,1.5 10151, 1 Series,2017,10500,Manual,48781,Diesel,145,68.9,2.0 10152, 5 Series,2014,11700,Manual,50347,Diesel,125,57.6,2.0 10153, 5 Series,2017,13900,Automatic,69110,Diesel,125,60.1,2.0 10154, 3 Series,2016,13800,Manual,15539,Diesel,30,67.3,2.0 10155, 5 Series,2017,18700,Automatic,28893,Diesel,150,68.9,2.0 10156, 5 Series,2017,15000,Automatic,41026,Diesel,30,62.8,2.0 10157, X5,2016,22900,Automatic,42421,Diesel,160,50.4,2.0 10158, 2 Series,2017,11800,Manual,31601,Diesel,150,74.3,1.5 10159, X5,2015,21000,Automatic,32352,Diesel,150,53.3,2.0 10160, 3 Series,2013,6995,Manual,93729,Petrol,125,53.3,1.6 10161, 3 Series,2012,7995,Automatic,77028,Diesel,30,62.8,2.0 10162, 3 Series,2006,4000,Automatic,61808,Petrol,305,35.8,2.0 10163, X1,2010,6495,Automatic,90000,Diesel,200,45.6,2.0 10164, 3 Series,2014,13200,Automatic,58436,Diesel,145,56.5,2.0 10165, 2 Series,2016,12200,Manual,33764,Diesel,20,74.3,1.5 10166, 1 Series,2017,11850,Manual,32285,Diesel,150,68.9,2.0 10167, 1 Series,2016,10800,Manual,27109,Petrol,125,53.3,1.5 10168, 5 Series,2019,24400,Automatic,32025,Petrol,150,47.9,2.0 10169, 7 Series,2017,23800,Automatic,22363,Diesel,150,60.1,3.0 10170, 2 Series,2017,14600,Automatic,24170,Petrol,145,53.3,1.5 10171, 3 Series,2012,8500,Automatic,73575,Diesel,30,62.8,2.0 10172, 3 Series,2014,15300,Automatic,36846,Diesel,125,57.6,3.0 10173, 3 Series,2016,12400,Manual,34657,Diesel,20,68.9,2.0 10174, 3 Series,2017,12000,Manual,57363,Diesel,20,68.9,2.0 10175, 1 Series,2015,8800,Manual,59496,Diesel,0,83.1,1.5 10176, 5 Series,2016,13000,Manual,39178,Diesel,30,65.7,2.0 10177, 2 Series,2017,12900,Automatic,22920,Diesel,20,68.9,2.0 10178, 3 Series,2015,9600,Manual,56398,Diesel,20,68.9,2.0 10179, 1 Series,2017,16700,Automatic,25076,Diesel,125,60.1,2.0 10180, 4 Series,2016,13800,Automatic,68589,Diesel,30,65.7,2.0 10181, 1 Series,2018,16700,Manual,16411,Diesel,145,49.6,2.0 10182, 1 Series,2016,11900,Manual,23109,Petrol,125,53.3,1.5 10183, 1 Series,2016,9100,Automatic,81751,Diesel,0,78.5,1.5 10184, 3 Series,2016,12100,Manual,53855,Diesel,30,62.8,2.0 10185, 1 Series,2014,8800,Manual,35974,Diesel,0,74.3,1.6 10186, 7 Series,2012,12500,Automatic,66294,Diesel,160,50.4,3.0 10187, 3 Series,2016,10800,Automatic,80077,Diesel,20,70.6,2.0 10188, 5 Series,2015,14500,Automatic,33731,Diesel,30,62.8,2.0 10189, X3,2016,20800,Automatic,26464,Diesel,145,54.3,2.0 10190, 2 Series,2016,12300,Manual,24073,Petrol,30,55.4,1.5 10191, 5 Series,2017,13800,Automatic,81749,Diesel,30,62.8,2.0 10192, 5 Series,2017,16850,Automatic,30262,Diesel,125,60.1,2.0 10193, 3 Series,2018,17400,Automatic,32663,Diesel,145,64.2,2.0 10194, 1 Series,2017,14300,Manual,21323,Petrol,145,52.3,1.5 10195, 2 Series,2016,12400,Automatic,44511,Diesel,30,64.2,2.0 10196, 1 Series,2015,10200,Manual,61296,Diesel,30,65.7,2.0 10197, X3,2016,18800,Automatic,46911,Diesel,150,54.3,2.0 10198, 1 Series,2016,10600,Manual,35590,Diesel,20,72.4,1.5 10199, 4 Series,2017,16500,Automatic,62368,Diesel,150,58.9,2.0 10200, 1 Series,2012,8400,Manual,31609,Diesel,30,62.8,2.0 10201, 5 Series,2016,13500,Automatic,91587,Diesel,165,51.4,3.0 10202, 5 Series,2016,16100,Automatic,28344,Diesel,30,62.8,2.0 10203, 3 Series,2017,11700,Manual,39461,Diesel,145,64.2,2.0 10204, 1 Series,2017,9400,Manual,65681,Diesel,20,70.6,2.0 10205, 4 Series,2016,13300,Automatic,83259,Diesel,30,65.7,2.0 10206, 1 Series,2016,9900,Manual,41475,Diesel,0,78.5,1.5 10207, 2 Series,2017,9800,Manual,51594,Diesel,0,74.3,1.5 10208, 1 Series,2018,14800,Manual,22961,Petrol,145,37.2,1.5 10209, 3 Series,2017,12300,Manual,40982,Diesel,145,67.3,2.0 10210, 2 Series,2016,12600,Manual,21819,Diesel,20,74.3,1.5 10211, 1 Series,2017,13900,Manual,18716,Diesel,145,65.7,2.0 10212, 5 Series,2017,13200,Automatic,74619,Diesel,125,60.1,2.0 10213, X4,2014,16700,Manual,44678,Diesel,160,52.3,2.0 10214, 1 Series,2014,11100,Automatic,35051,Diesel,30,64.2,2.0 10215, 1 Series,2015,9000,Manual,46295,Diesel,0,83.1,1.5 10216, 3 Series,2014,11400,Automatic,38055,Diesel,30,62.8,2.0 10217, 3 Series,2013,8995,Manual,51000,Diesel,30,62.8,2.0 10218, 3 Series,2015,13400,Automatic,24741,Diesel,30,62.8,2.0 10219, 3 Series,2016,12300,Manual,33038,Diesel,20,72.4,2.0 10220, 3 Series,2013,9500,Manual,32122,Petrol,145,47.9,1.6 10221, 1 Series,2017,11500,Manual,23574,Diesel,0,83.1,1.5 10222, X1,2016,12600,Manual,71848,Diesel,125,58.9,2.0 10223, X5,2015,22100,Automatic,65879,Diesel,200,47.1,3.0 10224, 3 Series,2017,12200,Manual,50649,Petrol,145,48.7,2.0 10225, 4 Series,2017,20900,Automatic,18098,Petrol,145,48.7,2.0 10226, 1 Series,2015,11500,Manual,21565,Diesel,30,64.2,2.0 10227, 3 Series,2016,14500,Automatic,55927,Diesel,30,62.8,2.0 10228, 1 Series,2017,13100,Manual,28850,Diesel,145,70.6,1.5 10229, 3 Series,2017,15800,Manual,28588,Petrol,145,45.6,2.0 10230, 1 Series,2016,12400,Manual,42309,Diesel,30,65.7,2.0 10231, 5 Series,2016,11000,Manual,89823,Diesel,30,62.8,2.0 10232, 3 Series,2016,16600,Automatic,23114,Diesel,145,53.3,3.0 10233, 3 Series,2016,13900,Manual,59341,Diesel,30,64.2,2.0 10234, 1 Series,2016,8495,Manual,83830,Diesel,20,72.4,1.5 10235, 5 Series,2014,7995,Automatic,126100,Diesel,30,62.8,2.0 10236, 3 Series,2011,4990,Manual,131000,Diesel,30,62.8,2.0 10237, 3 Series,2008,8790,Manual,85000,Petrol,555,28.5,3.0 10238, 3 Series,2006,5690,Automatic,95000,Petrol,555,29.7,3.0 10239, 3 Series,2010,5290,Manual,80000,Petrol,165,44.8,2.0 10240, 1 Series,2017,12400,Manual,40461,Diesel,30,62.8,2.0 10241, 1 Series,2016,13800,Automatic,31715,Diesel,20,67.3,2.0 10242, X4,2015,19700,Automatic,59975,Diesel,200,47.9,3.0 10243, 3 Series,2016,15600,Automatic,45900,Diesel,145,53.3,3.0 10244, 5 Series,2013,12200,Automatic,62009,Diesel,145,55.4,2.0 10245, 5 Series,2015,11500,Manual,56203,Diesel,30,62.8,2.0 10246, X5,2016,18700,Automatic,87467,Diesel,160,50.4,2.0 10247, 3 Series,2013,9400,Automatic,46577,Petrol,150,47.9,1.6 10248, 3 Series,2014,8600,Automatic,78871,Diesel,30,62.8,2.0 10249, 3 Series,2017,17300,Automatic,27288,Petrol,150,46.3,2.0 10250, 2 Series,2016,11000,Automatic,50791,Diesel,20,68.9,2.0 10251, 5 Series,2016,14200,Automatic,55573,Diesel,30,62.8,2.0 10252, 5 Series,2016,13600,Automatic,64598,Diesel,30,62.8,2.0 10253, X1,2013,8100,Manual,48532,Diesel,160,51.4,2.0 10254, X1,2017,16400,Automatic,64842,Diesel,145,57.6,2.0 10255, 2 Series,2016,10400,Manual,37567,Diesel,0,74.3,1.5 10256, 5 Series,2017,13700,Automatic,54589,Diesel,20,68.9,2.0 10257, 5 Series,2016,13900,Automatic,60187,Diesel,30,62.8,2.0 10258, 1 Series,2016,11100,Manual,31029,Petrol,125,53.3,1.5 10259, 1 Series,2017,13200,Manual,18638,Diesel,145,65.7,2.0 10260, 1 Series,2016,9700,Manual,37680,Diesel,0,83.1,1.5 10261, 3 Series,2017,12300,Manual,47308,Diesel,145,72.4,2.0 10262, 3 Series,2017,13600,Automatic,53208,Diesel,145,70.6,2.0 10263, 3 Series,2017,16600,Manual,21478,Diesel,145,58.9,2.0 10264, 1 Series,2014,7999,Manual,67610,Diesel,0,74.3,1.6 10265, 1 Series,2017,13000,Manual,26050,Diesel,145,68.9,2.0 10266, 1 Series,2016,11100,Manual,26589,Diesel,0,83.1,1.5 10267, 5 Series,2012,9800,Manual,73350,Diesel,125,57.6,2.0 10268, 3 Series,2017,18000,Automatic,12099,Diesel,145,64.2,2.0 10269, 1 Series,2017,15000,Automatic,29828,Diesel,20,67.3,2.0 10270, X3,2017,14900,Automatic,53325,Diesel,145,54.3,2.0 10271, 1 Series,2015,10300,Automatic,44033,Diesel,20,72.4,1.5 10272, 2 Series,2015,12700,Manual,54813,Diesel,30,60.1,2.0 10273, 3 Series,2017,16000,Automatic,53055,Other,0,134.5,2.0 10274, 2 Series,2016,10400,Manual,68489,Diesel,30,64.2,2.0 10275, 1 Series,2016,15100,Automatic,21748,Diesel,20,67.3,2.0 10276, 5 Series,2017,17900,Automatic,41284,Diesel,20,68.9,2.0 10277, 5 Series,2017,16600,Automatic,37139,Diesel,125,60.1,2.0 10278, 4 Series,2016,17000,Automatic,43283,Diesel,125,58.9,2.0 10279, 1 Series,2017,11500,Manual,54883,Diesel,150,65.7,2.0 10280, 1 Series,2017,16450,Automatic,20194,Petrol,150,47.9,2.0 10281, 1 Series,2017,14450,Manual,31727,Diesel,145,62.8,2.0 10282, 1 Series,2017,11500,Manual,47674,Diesel,145,68.9,2.0 10283, X1,2012,9500,Automatic,53524,Diesel,165,52.3,2.0 10284, 5 Series,2017,21300,Automatic,28935,Diesel,150,65.7,2.0 10285, 4 Series,2017,16500,Manual,38840,Diesel,125,60.1,2.0 10286, 4 Series,2018,18500,Automatic,21387,Petrol,150,48.7,2.0 10287, X3,2015,12200,Manual,69197,Diesel,160,52.3,2.0 10288, X1,2017,16400,Automatic,24852,Diesel,150,65.7,2.0 10289, 3 Series,2016,15800,Automatic,25598,Diesel,150,54.3,3.0 10290, 1 Series,2017,10700,Manual,37487,Diesel,0,78.5,1.5 10291, 3 Series,2016,15600,Automatic,31940,Diesel,30,64.2,2.0 10292, 3 Series,2017,12300,Manual,29783,Petrol,125,52.3,1.5 10293, 3 Series,2015,8700,Manual,71636,Diesel,20,68.9,2.0 10294, X3,2017,16950,Automatic,51206,Diesel,145,54.3,2.0 10295, 3 Series,2017,15000,Manual,39497,Diesel,30,64.2,2.0 10296, X1,2018,17900,Automatic,38209,Petrol,150,46.3,1.5 10297, 2 Series,2017,14000,Manual,33859,Diesel,30,64.2,2.0 10298, 1 Series,2016,13900,Automatic,20544,Petrol,125,54.3,1.5 10299, 1 Series,2017,13100,Automatic,55415,Diesel,145,67.3,2.0 10300, 3 Series,2014,9000,Manual,73766,Diesel,30,61.4,2.0 10301, 5 Series,2016,15450,Automatic,39995,Diesel,125,60.1,2.0 10302, 3 Series,2017,17700,Automatic,22457,Diesel,160,49.6,3.0 10303, 1 Series,2016,11300,Manual,33725,Diesel,0,83.1,1.5 10304, X3,2016,19950,Automatic,33309,Diesel,145,54.3,2.0 10305, 3 Series,2017,13300,Manual,20983,Petrol,145,52.3,1.5 10306, 3 Series,2017,15000,Automatic,14173,Petrol,145,54.3,1.5 10307, 3 Series,2014,9999,Manual,59776,Petrol,165,44.8,2.0 10308, 1 Series,2017,13000,Manual,39374,Diesel,145,65.7,2.0 10309, 3 Series,2017,17000,Automatic,23243,Petrol,165,44.8,2.0 10310, 5 Series,2014,12700,Automatic,59239,Diesel,150,55.4,2.0 10311, 3 Series,2017,15200,Automatic,41162,Other,135,148.7,2.0 10312, X3,2016,19000,Automatic,14739,Diesel,145,54.3,2.0 10313, X4,2015,22800,Automatic,32101,Diesel,200,47.9,3.0 10314, 3 Series,2017,18400,Automatic,28571,Diesel,145,53.3,3.0 10315, X3,2013,11500,Automatic,78855,Diesel,160,50.4,2.0 10316, 3 Series,2018,16600,Automatic,36287,Petrol,145,48.7,2.0 10317, 3 Series,2017,10600,Manual,65213,Petrol,125,52.3,1.5 10318, 3 Series,2017,21000,Automatic,21877,Diesel,150,51.4,3.0 10319, 5 Series,2016,15950,Automatic,33472,Diesel,30,62.8,2.0 10320, X3,2017,19450,Automatic,17504,Diesel,145,54.3,2.0 10321, X3,2014,13750,Automatic,70114,Diesel,160,50.4,2.0 10322, 3 Series,2017,11900,Manual,45616,Diesel,20,68.9,2.0 10323, 1 Series,2017,11500,Manual,23787,Diesel,0,83.1,1.5 10324, 4 Series,2015,14000,Automatic,76660,Diesel,125,57.6,2.0 10326, 4 Series,2016,17950,Automatic,34938,Petrol,160,45.6,2.0 10327, 4 Series,2013,15200,Automatic,34704,Petrol,160,44.1,2.0 10328, 5 Series,2016,13000,Automatic,57784,Diesel,20,68.9,2.0 10329, 4 Series,2016,11600,Automatic,89849,Diesel,20,70.6,2.0 10330, 1 Series,2016,11500,Manual,27848,Petrol,125,53.3,1.5 10331, X1,2017,16500,Manual,21600,Diesel,145,68.9,2.0 10332, 4 Series,2014,16100,Automatic,62768,Petrol,235,38.2,3.0 10333, 4 Series,2018,17900,Automatic,9482,Petrol,145,48.7,2.0 10334, X4,2015,19500,Automatic,51532,Diesel,145,54.3,2.0 10335, 1 Series,2018,14400,Automatic,9086,Petrol,145,37.2,1.5 10336, 3 Series,2017,21400,Automatic,22865,Diesel,145,49.6,3.0 10337, 1 Series,2017,14500,Manual,25510,Diesel,30,62.8,2.0 10338, X6,2013,15800,Automatic,77014,Diesel,300,38.2,3.0 10339, 3 Series,2018,17500,Automatic,19662,Diesel,145,64.2,2.0 10340, 3 Series,2017,11300,Automatic,83055,Petrol,125,51.4,1.5 10341, 1 Series,2016,12300,Manual,28072,Diesel,30,65.7,2.0 10342, 2 Series,2017,13700,Automatic,20996,Diesel,20,68.9,2.0 10343, 1 Series,2018,20600,Automatic,32383,Petrol,145,32.5,3.0 10344, 3 Series,2019,39590,Automatic,8426,Petrol,145,34.9,3.0 10345, X3,2017,19500,Manual,30483,Diesel,160,52.3,2.0 10346, M6,2014,29000,Automatic,34000,Petrol,565,28.5,4.4 10347, 3 Series,2017,19600,Automatic,28140,Diesel,160,51.4,3.0 10348, 5 Series,2016,15000,Automatic,49313,Diesel,125,60.1,2.0 10349, 3 Series,2017,15300,Automatic,39428,Other,0,148.7,2.0 10350, X1,2017,18000,Automatic,22461,Diesel,145,65.7,2.0 10351, X5,2014,18400,Automatic,59307,Diesel,160,50.4,2.0 10352, X1,2016,13750,Manual,32776,Diesel,20,68.9,2.0 10353, 1 Series,2016,10300,Manual,45820,Petrol,125,53.3,1.5 10354, 5 Series,2015,12200,Automatic,86151,Diesel,145,53.3,3.0 10355, 1 Series,2017,11000,Manual,47747,Diesel,20,68.9,2.0 10356, 4 Series,2017,17100,Automatic,18295,Petrol,145,48.7,2.0 10357, 1 Series,2016,13700,Automatic,22322,Petrol,30,55.5,1.5 10358, 3 Series,2017,13100,Manual,32903,Petrol,145,48.7,2.0 10359, 1 Series,2016,12200,Manual,32268,Petrol,125,52.3,1.5 10360, 3 Series,2016,15000,Manual,27663,Diesel,30,64.2,2.0 10361, X5,2013,18400,Automatic,42815,Diesel,300,37.7,3.0 10362, 5 Series,2006,4290,Automatic,97000,Petrol,565,29.7,2.5 10363, 3 Series,2014,11880,Automatic,28000,Diesel,30,62.8,2.0 10364, 4 Series,2014,12980,Automatic,82000,Diesel,160,52.3,3.0 10365, X3,2014,13800,Automatic,76748,Diesel,145,54.3,2.0 10366, X3,2016,14100,Automatic,74659,Diesel,145,54.3,2.0 10367, 5 Series,2017,18900,Automatic,62352,Diesel,145,65.7,2.0 10368, X3,2017,19800,Automatic,44132,Diesel,145,54.3,2.0 10369, 1 Series,2017,10600,Manual,50927,Diesel,145,72.4,1.5 10370, X4,2017,24100,Automatic,44397,Diesel,200,47.1,3.0 10371, 4 Series,2018,16100,Automatic,48052,Petrol,145,48.7,2.0 10372, 5 Series,2015,11600,Automatic,45065,Diesel,20,68.9,2.0 10373, X4,2016,22750,Automatic,24881,Diesel,145,54.3,2.0 10374, 1 Series,2016,10700,Manual,33489,Diesel,0,83.1,1.5 10375, X5,2016,31790,Automatic,35499,Diesel,200,47.1,3.0 10376, 3 Series,2014,12390,Manual,63728,Diesel,125,58.9,2.0 10377, 1 Series,2016,15390,Automatic,14072,Diesel,20,68.9,1.5 10378, 4 Series,2017,18790,Automatic,36207,Diesel,145,65.7,2.0 10379, X1,2016,18000,Automatic,36721,Diesel,125,57.6,2.0 10380, M4,2017,28590,Automatic,52911,Petrol,300,34.0,3.0 10381, 3 Series,2017,26590,Automatic,21337,Diesel,200,49.6,3.0 10382, 1 Series,2016,10000,Manual,29246,Petrol,125,53.3,1.5 10383, 1 Series,2017,11300,Manual,44210,Diesel,145,68.9,2.0 10384, 1 Series,2017,12600,Manual,32363,Diesel,20,70.6,1.5 10385, 5 Series,2015,9400,Manual,85725,Diesel,30,65.7,2.0 10386, 3 Series,2013,9200,Manual,88592,Diesel,125,58.9,2.0 10387, 1 Series,2016,10100,Manual,44028,Diesel,20,72.4,1.5 10388, 1 Series,2017,11300,Manual,41462,Diesel,20,68.9,2.0 10389, 5 Series,2014,13800,Automatic,69722,Diesel,160,51.4,3.0 10390, 2 Series,2015,17480,Manual,13000,Petrol,300,34.9,3.0 10391, 2 Series,2015,14860,Automatic,26000,Petrol,160,47.1,2.0 10392, 4 Series,2015,14990,Automatic,35000,Diesel,30,65.7,2.0 10393, 3 Series,2013,8980,Automatic,102000,Diesel,30,62.8,2.0 10394, X6,2011,13440,Automatic,96000,Diesel,300,37.7,3.0 10395, 1 Series,2017,15600,Automatic,29019,Diesel,145,65.7,2.0 10396, 1 Series,2013,7300,Manual,67444,Petrol,145,50.4,1.6 10397, 1 Series,2017,13300,Automatic,25933,Diesel,20,72.4,1.5 10398, 3 Series,2016,13800,Automatic,55100,Diesel,145,54.3,3.0 10399, 1 Series,2015,8700,Manual,61959,Diesel,20,68.9,2.0 10400, 3 Series,2016,15000,Automatic,53745,Diesel,145,54.3,3.0 10401, X1,2018,22000,Automatic,20017,Petrol,145,44.8,2.0 10402, 3 Series,2013,8950,Manual,96308,Diesel,125,60.1,2.0 10403, 3 Series,2017,13750,Automatic,33131,Petrol,125,54.3,1.5 10404, 2 Series,2017,15200,Automatic,23610,Petrol,150,51.4,1.5 10405, 1 Series,2017,12100,Manual,36642,Diesel,150,68.9,2.0 10406, 3 Series,2016,12350,Automatic,59434,Diesel,20,70.6,2.0 10407, 3 Series,2016,13500,Manual,45799,Diesel,30,64.2,2.0 10408, 1 Series,2014,9999,Automatic,42927,Petrol,150,48.7,1.6 10409, 1 Series,2017,12000,Manual,37842,Diesel,145,68.9,2.0 10410, 3 Series,2017,13400,Manual,36504,Diesel,30,67.3,2.0 10411, 3 Series,2017,15000,Automatic,36226,Other,140,148.7,2.0 10412, X3,2016,16800,Automatic,43956,Diesel,145,54.3,2.0 10413, 3 Series,2017,15400,Manual,22712,Diesel,30,64.2,2.0 10414, 5 Series,2017,24200,Automatic,21236,Diesel,145,60.1,3.0 10415, 4 Series,2016,12200,Automatic,77969,Diesel,20,70.6,2.0 10416, 5 Series,2012,10750,Automatic,53632,Diesel,125,57.6,2.0 10417, 5 Series,2016,15000,Automatic,55120,Diesel,30,62.8,2.0 10418, 4 Series,2018,17500,Automatic,50159,Petrol,150,48.7,2.0 10419, 1 Series,2018,15750,Automatic,8404,Petrol,150,37.2,1.5 10420, X1,2017,16900,Automatic,48364,Diesel,150,55.4,2.0 10421, 3 Series,2013,9200,Manual,50139,Diesel,30,62.8,2.0 10422, X1,2016,11000,Manual,88387,Diesel,20,68.9,2.0 10423, X1,2018,22500,Automatic,19063,Petrol,145,44.8,2.0 10424, 1 Series,2015,7500,Manual,81750,Diesel,0,74.3,1.6 10425, 3 Series,2016,12950,Manual,33301,Petrol,145,49.6,1.5 10426, 3 Series,2015,14500,Automatic,27152,Diesel,125,58.9,2.0 10427, X3,2015,15450,Automatic,42437,Diesel,145,54.3,2.0 10428, 1 Series,2018,15000,Automatic,8303,Petrol,145,37.2,1.5 10429, X3,2016,18450,Automatic,25752,Diesel,145,54.3,2.0 10430, 3 Series,2016,14000,Automatic,91707,Diesel,150,53.3,3.0 10431, X1,2016,17500,Automatic,17151,Diesel,30,65.7,2.0 10432, 1 Series,2017,11400,Manual,26505,Diesel,0,83.1,1.5 10433, 2 Series,2016,10000,Manual,37351,Diesel,20,68.9,2.0 10434, 4 Series,2018,21300,Automatic,20024,Petrol,145,45.6,2.0 10435, 5 Series,2016,16900,Automatic,16095,Diesel,30,62.8,2.0 10436, 3 Series,2016,12700,Automatic,40128,Diesel,30,64.2,2.0 10437, 3 Series,2017,10700,Automatic,88227,Petrol,125,54.3,1.5 10438, 5 Series,2017,16950,Automatic,64845,Diesel,150,68.9,2.0 10439, 1 Series,2016,13200,Manual,17705,Petrol,125,52.3,1.5 10440, 6 Series,2017,20500,Automatic,27828,Diesel,200,49.6,3.0 10441, 3 Series,2017,16000,Automatic,47495,Other,135,134.5,2.0 10442, 1 Series,2016,10200,Manual,49199,Diesel,0,83.1,1.5 10443, X3,2015,21000,Automatic,34835,Diesel,200,47.1,3.0 10444, 3 Series,2017,12600,Manual,44596,Petrol,150,48.7,2.0 10445, 3 Series,2015,12100,Manual,52663,Diesel,30,61.4,2.0 10446, 5 Series,2017,17000,Automatic,24212,Diesel,125,60.1,2.0 10447, 1 Series,2016,12000,Manual,38700,Petrol,125,52.3,1.5 10448, 1 Series,2015,9600,Manual,30755,Diesel,0,83.1,1.5 10449, 1 Series,2017,11000,Manual,30393,Diesel,0,78.5,1.5 10450, X1,2016,15000,Manual,35746,Diesel,20,68.9,2.0 10451, 3 Series,2015,11300,Automatic,74317,Diesel,150,55.4,2.0 10452, 2 Series,2016,8450,Manual,72422,Diesel,20,68.9,2.0 10453, X3,2017,21500,Automatic,35902,Diesel,150,54.3,2.0 10454, 2 Series,2016,9800,Manual,56812,Diesel,20,68.9,2.0 10455, 3 Series,2015,11000,Manual,58878,Diesel,20,72.4,2.0 10456, 4 Series,2017,18300,Automatic,23772,Petrol,145,45.6,2.0 10457, 4 Series,2016,15500,Automatic,35376,Diesel,30,65.7,2.0 10458, X3,2015,16750,Automatic,58802,Diesel,145,54.3,2.0 10459, 2 Series,2017,14500,Automatic,24194,Petrol,145,53.3,1.5 10460, 1 Series,2018,15500,Automatic,9877,Petrol,145,37.2,1.5 10461, 7 Series,2013,13950,Automatic,81035,Diesel,160,50.4,3.0 10462, 3 Series,2017,15500,Manual,32068,Diesel,30,64.2,2.0 10463, X5,2014,23000,Automatic,56232,Diesel,205,45.6,3.0 10464, 3 Series,2016,10000,Manual,90161,Diesel,30,67.3,2.0 10465, 3 Series,2014,13000,Automatic,37334,Diesel,30,62.8,2.0 10466, 1 Series,2017,12000,Manual,21166,Diesel,150,72.4,1.5 10467, 3 Series,2012,9250,Manual,55810,Petrol,160,44.8,2.0 10468, X1,2017,15500,Automatic,40243,Diesel,150,60.1,2.0 10469, 2 Series,2017,13100,Automatic,31096,Diesel,150,68.9,2.0 10470, 3 Series,2017,15900,Automatic,68875,Other,140,134.5,2.0 10471, X1,2013,8750,Manual,72565,Diesel,125,57.6,2.0 10472, 1 Series,2016,13000,Manual,32325,Diesel,30,62.8,2.0 10473, X5,2019,43500,Automatic,15753,Petrol,145,27.2,3.0 10474, X3,2016,16000,Automatic,80895,Diesel,145,54.3,2.0 10475, 5 Series,2016,12500,Automatic,57232,Diesel,20,68.9,2.0 10476, X1,2017,13500,Manual,38310,Diesel,20,68.9,2.0 10477, 2 Series,2015,12400,Automatic,20452,Diesel,20,68.9,2.0 10478, 4 Series,2016,14000,Manual,19415,Diesel,30,65.7,2.0 10479, 3 Series,2016,12400,Manual,33270,Petrol,150,48.7,2.0 10480, 1 Series,2016,11000,Manual,36615,Petrol,125,53.3,1.5 10481, X3,2013,13000,Automatic,63023,Diesel,165,50.4,2.0 10482, 3 Series,2016,12800,Automatic,58174,Diesel,30,67.3,2.0 10483, 3 Series,2016,10650,Manual,88378,Diesel,30,68.9,2.0 10484, 4 Series,2016,15400,Automatic,57991,Diesel,30,65.7,2.0 10485, 3 Series,2015,15500,Automatic,61980,Diesel,125,57.6,2.0 10486, 1 Series,2016,10250,Manual,68332,Diesel,20,68.9,2.0 10487, 1 Series,2016,15000,Automatic,16426,Diesel,30,62.8,2.0 10488, 5 Series,2013,10850,Automatic,76541,Diesel,150,55.4,2.0 10489, 1 Series,2016,12450,Automatic,34922,Diesel,20,70.6,2.0 10490, 1 Series,2018,20800,Automatic,20819,Petrol,150,39.8,3.0 10491, X1,2016,14800,Automatic,62562,Diesel,30,65.7,2.0 10492, 3 Series,2016,9400,Manual,82156,Petrol,125,52.3,1.5 10493, 3 Series,2017,14500,Manual,33600,Diesel,30,64.2,2.0 10494, 2 Series,2016,12700,Manual,30183,Diesel,30,65.7,2.0 10495, 2 Series,2016,12800,Manual,48551,Petrol,145,47.1,1.5 10496, 5 Series,2016,16000,Automatic,33527,Diesel,30,62.8,2.0 10497, X6,2014,18000,Automatic,34990,Diesel,305,38.2,3.0 10498, 4 Series,2015,13500,Automatic,92236,Diesel,150,51.4,3.0 10499, 1 Series,2016,12500,Automatic,32734,Diesel,20,70.6,2.0 10500, 1 Series,2016,11850,Manual,19259,Petrol,125,53.3,1.5 10501, 5 Series,2016,15850,Automatic,27710,Diesel,30,62.8,2.0 10502, X4,2015,20250,Automatic,54116,Diesel,205,47.9,3.0 10503, 1 Series,2017,16000,Automatic,31834,Diesel,125,60.1,2.0 10504, X1,2017,15200,Automatic,34525,Diesel,30,65.7,2.0 10505, X1,2017,14000,Manual,24690,Diesel,20,68.9,2.0 10506, X1,2017,15000,Automatic,37869,Diesel,30,65.7,2.0 10507, 3 Series,2014,8800,Manual,84392,Diesel,30,62.8,2.0 10508, X1,2016,14950,Manual,35481,Diesel,20,68.9,2.0 10509, 3 Series,2018,17500,Automatic,23449,Diesel,145,64.2,2.0 10510, 1 Series,2017,10400,Manual,46130,Diesel,0,78.5,1.5 10511, 5 Series,2016,16750,Automatic,32344,Diesel,125,60.1,2.0 10512, 3 Series,2017,12750,Manual,45462,Diesel,145,67.3,2.0 10513, 1 Series,2016,10800,Manual,27920,Petrol,125,53.3,1.5 10514, X1,2017,17000,Automatic,41890,Diesel,145,65.7,2.0 10515, X3,2018,24400,Automatic,30847,Diesel,145,54.3,2.0 10516, 3 Series,2014,8900,Automatic,79809,Diesel,20,68.9,2.0 10517, X1,2017,14100,Manual,46134,Diesel,150,68.9,2.0 10518, 1 Series,2017,8500,Manual,85940,Diesel,0,83.1,1.5 10519, X3,2016,16900,Automatic,64833,Diesel,145,54.3,2.0 10520, 1 Series,2017,13700,Automatic,8946,Diesel,145,70.6,2.0 10521, 3 Series,2017,13500,Automatic,52872,Diesel,150,74.3,2.0 10522, 3 Series,2012,8450,Manual,79480,Diesel,125,58.9,2.0 10523, 3 Series,2017,16000,Manual,34098,Diesel,145,64.2,2.0 10524, X1,2017,18500,Automatic,25683,Diesel,150,57.6,2.0 10525, X3,2017,20600,Automatic,36818,Diesel,145,54.3,2.0 10526, 1 Series,2017,12800,Manual,18825,Petrol,125,53.3,1.5 10527, 1 Series,2015,10500,Manual,36383,Petrol,125,53.3,1.5 10528, 4 Series,2016,18000,Automatic,41838,Diesel,145,54.3,2.0 10529, 5 Series,2017,16850,Automatic,30379,Diesel,125,60.1,2.0 10531, 3 Series,2017,16000,Automatic,63887,Diesel,125,57.6,2.0 10532, X3,2017,17500,Automatic,75786,Diesel,145,54.3,2.0 10533, 3 Series,2016,14750,Automatic,64447,Diesel,125,60.1,2.0 10534, 3 Series,2016,15950,Manual,24160,Diesel,125,58.9,2.0 10535, 1 Series,2018,15500,Automatic,8604,Petrol,145,37.2,1.5 10536, 3 Series,2016,15500,Manual,27796,Petrol,205,43.5,2.0 10537, 1 Series,2018,13100,Manual,21076,Petrol,145,47.1,2.0 10538, 1 Series,2017,11800,Manual,37337,Diesel,20,70.6,1.5 10539, 5 Series,2016,12400,Automatic,69736,Diesel,30,62.8,2.0 10540, 1 Series,2018,12700,Manual,21593,Petrol,145,53.3,1.5 10541, 3 Series,2016,14500,Manual,27399,Petrol,145,47.9,2.0 10542, 1 Series,2016,10400,Manual,30902,Diesel,20,72.4,1.5 10543, 3 Series,2016,11400,Automatic,59201,Diesel,20,70.6,2.0 10544, X1,2017,18100,Automatic,28161,Diesel,125,57.6,2.0 10545, 5 Series,2015,12900,Automatic,60337,Diesel,30,62.8,2.0 10546, 3 Series,2017,15500,Automatic,34298,Diesel,30,64.2,2.0 10547, 3 Series,2016,12200,Automatic,37170,Diesel,30,65.7,2.0 10548, 3 Series,2016,14400,Automatic,19786,Diesel,30,67.3,2.0 10549, X1,2017,13000,Manual,46912,Diesel,145,68.9,2.0 10550, 3 Series,2016,15000,Automatic,66173,Diesel,125,60.1,2.0 10551, 3 Series,2015,11500,Automatic,86731,Diesel,145,55.4,2.0 10552, 3 Series,2017,17100,Automatic,44255,Diesel,145,54.3,3.0 10553, X3,2016,18000,Automatic,37075,Diesel,200,47.9,3.0 10554, 3 Series,2017,16000,Automatic,35134,Diesel,145,64.2,2.0 10555, 6 Series,2014,16500,Automatic,67476,Diesel,160,49.6,3.0 10556, 3 Series,2017,13400,Automatic,49373,Diesel,145,70.6,2.0 10557, 1 Series,2015,12900,Automatic,33449,Diesel,20,68.9,1.5 10558, 1 Series,2016,11600,Manual,9803,Petrol,125,53.3,1.5 10559, 1 Series,2017,10700,Manual,38664,Diesel,0,83.1,1.5 10560, 1 Series,2016,10800,Manual,31469,Diesel,20,68.9,2.0 10561, 1 Series,2017,10900,Manual,36811,Diesel,20,72.4,1.5 10562, 1 Series,2017,12800,Manual,40160,Diesel,30,62.8,2.0 10563, 1 Series,2015,10600,Manual,25997,Diesel,20,68.9,2.0 10564, X1,2016,15800,Automatic,22177,Diesel,125,60.1,2.0 10565, 5 Series,2015,10750,Manual,68310,Diesel,30,65.7,2.0 10566, X1,2017,18700,Automatic,18404,Diesel,145,60.1,2.0 10567, 3 Series,2016,11200,Manual,39313,Diesel,30,62.8,2.0 10568, 5 Series,2016,12800,Automatic,57790,Diesel,30,65.7,2.0 10569, 5 Series,2017,15500,Automatic,39773,Diesel,125,60.1,2.0 10570, 1 Series,2016,13900,Manual,8411,Diesel,30,65.7,2.0 10571, 3 Series,2016,14700,Automatic,42043,Diesel,125,60.1,2.0 10572, 3 Series,2019,21250,Automatic,10206,Petrol,145,47.9,2.0 10573, 2 Series,2017,14000,Automatic,17740,Diesel,150,68.9,2.0 10574, 1 Series,2016,10900,Manual,29733,Petrol,125,53.3,1.5 10575, 5 Series,2016,18500,Automatic,37933,Diesel,165,50.4,3.0 10576, 1 Series,2014,9600,Automatic,29432,Diesel,20,68.9,2.0 10577, 4 Series,2017,19800,Automatic,27846,Diesel,160,49.6,3.0 10578, X1,2016,14400,Manual,41694,Diesel,125,60.1,2.0 10579, X3,2016,18000,Automatic,43211,Diesel,200,47.9,3.0 10580, X1,2016,13400,Manual,29541,Diesel,125,60.1,2.0 10581, 3 Series,2017,17200,Automatic,34544,Diesel,145,56.5,3.0 10582, 3 Series,2017,18300,Automatic,39594,Diesel,160,51.4,3.0 10583, 1 Series,2018,12700,Manual,20758,Petrol,145,53.3,1.5 10584, 1 Series,2017,10800,Manual,60281,Diesel,20,70.6,1.5 10585, 3 Series,2016,13100,Manual,47821,Diesel,30,64.2,2.0 10586, 1 Series,2016,12900,Manual,23533,Diesel,30,65.7,2.0 10587, 5 Series,2018,26450,Automatic,16455,Petrol,145,37.7,2.0 10588, 3 Series,2016,14000,Manual,30937,Diesel,30,64.2,2.0 10589, X4,2015,20600,Automatic,26928,Diesel,200,47.9,3.0 10590, 2 Series,2016,13000,Manual,25525,Diesel,125,61.4,2.0 10591, 3 Series,2014,11300,Automatic,65423,Diesel,125,58.9,2.0 10592, 4 Series,2017,18000,Automatic,63197,Diesel,160,49.6,3.0 10593, 1 Series,2017,12900,Manual,18942,Petrol,145,53.3,1.5 10594, X3,2017,20700,Automatic,39809,Diesel,145,54.3,2.0 10595, X3,2017,19100,Automatic,44585,Diesel,145,54.3,2.0 10596, X1,2017,15500,Automatic,35451,Diesel,145,65.7,2.0 10597, X3,2017,22000,Automatic,27385,Diesel,145,54.3,2.0 10598, 1 Series,2018,15000,Automatic,9951,Petrol,145,37.2,1.5 10599, 4 Series,2016,14600,Automatic,30556,Diesel,30,62.8,2.0 10600, X5,2013,16500,Automatic,59187,Diesel,300,38.2,3.0 10601, 4 Series,2016,13300,Automatic,83359,Diesel,30,65.7,2.0 10602, 3 Series,2013,10500,Manual,78090,Diesel,145,56.5,2.0 10603, 1 Series,2016,14900,Manual,10063,Petrol,145,46.3,2.0 10604, X1,2017,17800,Automatic,45915,Petrol,165,44.8,2.0 10605, X1,2017,15900,Automatic,26573,Diesel,150,65.7,2.0 10606, X1,2016,16450,Automatic,45880,Diesel,30,65.7,2.0 10607, 3 Series,2014,11400,Automatic,74534,Diesel,125,58.9,2.0 10608, 3 Series,2017,14200,Manual,27393,Diesel,30,64.2,2.0 10609, 3 Series,2017,18000,Automatic,41387,Diesel,160,51.4,3.0 10610, X3,2016,20100,Automatic,36157,Diesel,200,47.9,3.0 10611, 3 Series,2015,11800,Manual,30661,Diesel,30,67.3,2.0 10612, 5 Series,2015,13400,Manual,23932,Diesel,125,60.1,2.0 10613, 3 Series,2016,14300,Manual,27184,Diesel,125,58.9,2.0 10614, 3 Series,2017,12500,Automatic,86735,Diesel,30,64.2,2.0 10615, 3 Series,2015,12300,Manual,46015,Diesel,125,58.9,2.0 10616, 1 Series,2017,10800,Manual,38872,Diesel,145,68.9,2.0 10617, 1 Series,2016,10200,Manual,44384,Diesel,20,68.9,2.0 10618, 1 Series,2016,9500,Manual,45719,Diesel,0,83.1,1.5 10619, X5,2017,28400,Automatic,35061,Diesel,145,47.1,3.0 10620, X3,2016,21000,Automatic,24435,Diesel,200,47.9,3.0 10621, X5,2016,24500,Automatic,57605,Other,0,85.6,2.0 10622, 3 Series,2015,14100,Automatic,62139,Petrol,200,41.5,2.0 10623, 4 Series,2015,12800,Manual,56741,Diesel,30,62.8,2.0 10624, X3,2016,16900,Automatic,70232,Diesel,200,47.9,3.0 10625, 3 Series,2015,12500,Automatic,47404,Petrol,160,45.6,2.0 10626, X1,2016,16500,Automatic,15777,Diesel,30,65.7,2.0 10627, 1 Series,2015,11000,Automatic,25345,Petrol,145,48.7,1.6 10628, 5 Series,2019,23000,Automatic,9420,Petrol,145,50.4,2.0 10629, 1 Series,2017,12400,Manual,19454,Diesel,145,72.4,1.5 10630, 1 Series,2016,9500,Manual,59137,Diesel,20,68.9,2.0 10631, X1,2017,18950,Automatic,19785,Diesel,145,60.1,2.0 10632, X1,2016,14700,Manual,21876,Diesel,125,60.1,2.0 10633, 5 Series,2014,11900,Automatic,46042,Diesel,20,68.9,2.0 10634, 1 Series,2017,11100,Manual,28507,Diesel,145,72.4,1.5 10635, X3,2016,17800,Automatic,47452,Diesel,145,54.3,2.0 10636, 3 Series,2017,19500,Automatic,15939,Diesel,145,64.2,2.0 10637, X3,2013,13100,Automatic,64455,Diesel,160,50.4,2.0 10638, 3 Series,2016,13300,Manual,19655,Petrol,145,48.7,2.0 10639, 1 Series,2016,10350,Manual,31517,Petrol,30,56.5,1.5 10640, 1 Series,2019,17900,Automatic,8285,Petrol,145,36.7,1.5 10641, 5 Series,2016,15250,Automatic,28217,Diesel,30,62.8,2.0 10642, 5 Series,2019,23000,Automatic,11476,Petrol,145,50.4,2.0 10643, 3 Series,2016,14100,Manual,43015,Diesel,145,56.5,2.0 10644, 1 Series,2016,10500,Manual,34775,Petrol,125,53.3,1.5 10645, X1,2017,18700,Automatic,25227,Petrol,160,44.8,2.0 10646, X1,2016,14200,Automatic,45356,Diesel,125,60.1,2.0 10647, 3 Series,2016,10600,Automatic,83465,Petrol,125,51.4,2.0 10648, 1 Series,2015,9000,Manual,48746,Diesel,20,72.4,1.5 10649, 3 Series,2015,9500,Automatic,85314,Diesel,20,70.6,2.0 10650, 4 Series,2017,17450,Automatic,25220,Diesel,30,65.7,2.0 10651, X4,2016,20500,Automatic,42576,Diesel,200,47.9,3.0 10652, 3 Series,2016,16500,Automatic,38438,Other,0,134.5,2.0 10653, 3 Series,2017,17400,Automatic,34437,Diesel,145,56.5,3.0 10654, 1 Series,2017,12400,Manual,11185,Diesel,145,72.4,1.5 10655, 3 Series,2015,12600,Automatic,44621,Diesel,125,58.9,2.0 10656, 1 Series,2017,9600,Manual,58023,Diesel,20,68.9,2.0 10657, X3,2009,7495,Automatic,95000,Diesel,260,42.2,2.0 10658, 1 Series,2014,16495,Manual,20000,Petrol,280,35.3,3.0 10659, 1 Series,2009,3995,Manual,103000,Petrol,160,46.3,2.0 10660, 3 Series,2010,4995,Manual,119000,Petrol,160,44.8,2.0 10661, X1,2016,20999,Automatic,8000,Petrol,160,44.8,2.0 10662, X1,2017,18495,Automatic,8000,Diesel,30,65.7,2.0 10663, 2 Series,2019,19995,Automatic,1000,Petrol,145,50.4,2.0 10664, 3 Series,2016,11495,Automatic,103000,Diesel,30,64.2,2.0 10665, 3 Series,2014,12000,Manual,47318,Diesel,125,58.9,2.0 10666, 3 Series,2016,14500,Manual,25385,Petrol,160,42.2,2.0 10667, 1 Series,2017,11400,Manual,27038,Diesel,145,78.5,1.5 10668, 3 Series,2014,13000,Automatic,36034,Diesel,30,62.8,2.0 10669, 4 Series,2015,16990,Automatic,23000,Diesel,145,56.5,2.0 10670, 1 Series,2018,23499,Automatic,4666,Petrol,145,32.5,3.0 10671, 1 Series,2014,10999,Manual,29824,Petrol,150,48.7,1.6 10672, 3 Series,2016,15490,Automatic,35090,Diesel,30,62.8,2.0 10673, 3 Series,2015,9000,Automatic,89343,Diesel,30,62.8,2.0 10674, 3 Series,2015,12300,Automatic,38998,Diesel,30,62.8,2.0 10675, 3 Series,2016,13750,Manual,59222,Diesel,125,60.1,2.0 10676, X3,2016,19750,Automatic,35671,Diesel,145,54.3,2.0 10677, 3 Series,2016,12000,Manual,57918,Diesel,125,58.9,2.0 10678, X4,2017,26400,Automatic,13200,Diesel,145,47.9,3.0 10679, 1 Series,2017,15000,Manual,14526,Petrol,125,52.3,1.5 10680, 2 Series,2016,15995,Automatic,67000,Petrol,160,46.3,2.0 10681, 2 Series,2019,21491,Automatic,10000,Petrol,145,47.9,2.0 10682, 1 Series,2016,13450,Manual,33043,Diesel,30,62.8,2.0 10683, 4 Series,2017,17000,Automatic,61355,Diesel,160,51.4,3.0 10684, X4,2017,22000,Automatic,58056,Diesel,145,54.3,2.0 10685, 1 Series,2016,10500,Manual,36792,Diesel,20,68.9,2.0 10686, X1,2017,16500,Automatic,47047,Diesel,145,55.4,2.0 10687, 4 Series,2016,18750,Automatic,26194,Petrol,160,45.6,2.0 10688, 3 Series,2015,11950,Manual,32412,Petrol,125,52.3,1.5 10689, X1,2016,14200,Manual,45479,Diesel,125,58.9,2.0 10690, 5 Series,2019,21950,Automatic,12541,Petrol,145,50.4,2.0 10691, 2 Series,2016,14495,Automatic,22500,Diesel,30,67.3,2.0 10692, X6,2016,32000,Automatic,33500,Diesel,240,42.8,3.0 10693, 4 Series,2015,15000,Automatic,39000,Diesel,30,65.7,2.0 10694, 3 Series,2016,24995,Automatic,19500,Petrol,205,40.4,3.0 10695, 3 Series,2017,26995,Automatic,22300,Diesel,205,49.6,3.0 10696, 3 Series,2015,16295,Manual,37500,Petrol,205,42.8,2.0 10697, 3 Series,2015,18995,Automatic,43000,Diesel,160,51.4,3.0 10698, 1 Series,2016,16295,Automatic,36500,Petrol,145,47.9,2.0 10699, 1 Series,2016,14995,Manual,30000,Diesel,30,62.8,2.0 10700, 3 Series,2015,19495,Automatic,36000,Diesel,160,52.3,3.0 10701, X3,2016,19995,Automatic,41000,Diesel,150,54.3,2.0 10702, 3 Series,2017,24995,Automatic,28000,Diesel,205,49.6,3.0 10703, 4 Series,2017,17000,Automatic,27000,Petrol,150,48.7,2.0 10704, 3 Series,2010,9000,Automatic,59777,Petrol,265,35.8,3.0 10705, 1 Series,2013,9000,Automatic,24000,Petrol,205,40.9,2.0 10706, 3 Series,2017,21000,Automatic,15000,Diesel,145,51.4,3.0 10707, X6,2014,18000,Automatic,35269,Diesel,300,38.2,3.0 10708, 3 Series,2009,4890,Manual,125000,Petrol,240,39.8,3.0 10709, 1 Series,2018,24500,Automatic,7574,Petrol,145,39.8,3.0 10710, 3 Series,2018,22999,Automatic,8721,Petrol,145,43.5,2.0 10711, 3 Series,2017,16499,Automatic,22248,Diesel,150,64.2,2.0 10712, 2 Series,2019,19999,Manual,313,Petrol,150,39.8,1.5 10713, 3 Series,2020,23899,Automatic,1255,Petrol,150,47.9,2.0 10714, 3 Series,2005,2499,Manual,130000,Petrol,315,31.4,2.5 10715, X5,2015,26495,Automatic,47000,Diesel,200,47.1,3.0 10716, X3,2015,17000,Automatic,36275,Diesel,145,54.3,2.0 10717, 1 Series,2016,13600,Automatic,25138,Diesel,20,67.3,2.0 10718, 1 Series,2016,8800,Manual,61786,Diesel,0,83.1,1.5 10719, 3 Series,2017,13400,Automatic,49877,Diesel,145,65.7,2.0 10720, X1,2017,22500,Automatic,11000,Diesel,150,60.1,2.0 10721, 1 Series,2011,7750,Manual,78889,Diesel,150,55.4,2.0 10722, 1 Series,2010,5990,Manual,69000,Diesel,125,57.6,2.0 10723, 3 Series,2014,13990,Automatic,45000,Diesel,30,62.8,2.0 10724, M3,2005,10999,Manual,115000,Petrol,315,20.8,3.2 10725, 1 Series,2017,13500,Automatic,47477,Diesel,145,65.7,2.0 10726, 1 Series,2014,8500,Manual,39390,Diesel,30,65.7,2.0 10727, 3 Series,2017,18400,Automatic,27232,Other,135,134.5,2.0 10728, X1,2015,14900,Automatic,44978,Diesel,125,57.6,2.0 10729, 1 Series,2016,9400,Manual,41103,Diesel,0,83.1,1.5 10730, 5 Series,2018,17700,Automatic,51413,Diesel,145,68.9,2.0 10731, 1 Series,2016,14750,Automatic,29878,Diesel,30,65.7,2.0 10732, 5 Series,2013,12950,Automatic,33279,Diesel,120,60.1,2.0 10733, 2 Series,2014,10990,Manual,57000,Diesel,125,58.9,2.0 10734, M3,2015,29750,Automatic,42000,Petrol,300,34.0,3.0 10735, 1 Series,2015,7495,Manual,91000,Diesel,0,74.3,1.6 10736, X1,2010,8995,Automatic,51000,Diesel,200,45.6,2.0 10737, 3 Series,2014,17499,Automatic,48100,Diesel,160,52.3,3.0 10738, 1 Series,2016,10999,Manual,24380,Petrol,125,53.3,1.5 10739, 3 Series,2019,23987,Automatic,1049,Petrol,150,47.9,2.0 10740, 3 Series,2019,23454,Automatic,3551,Petrol,150,47.9,2.0 10741, 3 Series,2019,23599,Automatic,2784,Petrol,145,47.9,2.0 10742, 3 Series,2019,23499,Automatic,5634,Petrol,145,47.9,2.0 10743, X1,2016,18750,Automatic,13165,Diesel,145,55.4,2.0 10744, X5,2015,21500,Automatic,80600,Diesel,200,47.1,3.0 10745, 2 Series,2016,14950,Automatic,49756,Diesel,30,62.8,2.0 10746, 1 Series,2016,11000,Manual,44295,Diesel,20,68.9,2.0 10747, X3,2016,17600,Automatic,43410,Diesel,145,54.3,2.0 10748, 5 Series,2009,5995,Automatic,87000,Diesel,160,50.4,2.0 10749, 1 Series,2012,9995,Manual,47000,Diesel,135,56.5,2.0 10750, 2 Series,2014,15995,Automatic,58000,Petrol,265,37.2,3.0 10751, 3 Series,2013,10295,Automatic,31850,Petrol,145,47.9,1.6 10752, 3 Series,2010,7995,Automatic,41500,Petrol,200,41.5,2.0 10753, X1,2011,7295,Manual,70760,Diesel,160,49.6,2.0 10754, 3 Series,2013,14950,Automatic,66500,Diesel,160,52.3,3.0 10755, 2 Series,2019,18887,Automatic,13955,Petrol,145,50.4,1.5 10756, 3 Series,2005,5678,Automatic,63000,Diesel,260,42.2,2.0 10757, 3 Series,2012,9999,Automatic,52000,Diesel,160,50.4,2.0 10758, X3,2014,14400,Automatic,43307,Diesel,145,54.3,2.0 10759, 1 Series,2016,11200,Manual,54008,Diesel,30,62.8,2.0 10760, 1 Series,2016,9600,Manual,65435,Diesel,30,65.7,2.0 10761, X1,2016,17200,Automatic,34769,Diesel,125,57.6,2.0 10762, 1 Series,2016,9100,Manual,53177,Diesel,0,78.5,1.5 10763, 1 Series,2016,8500,Manual,68810,Diesel,0,83.1,1.5 10764, 1 Series,2016,9100,Manual,54596,Diesel,0,83.1,1.5 10765, 3 Series,2016,17700,Automatic,20670,Other,0,134.5,2.0 10766, 1 Series,2016,8700,Manual,54987,Diesel,0,83.1,1.5 10767, 3 Series,2016,13000,Manual,58727,Diesel,125,60.1,2.0 10768, X1,2016,13700,Manual,26018,Diesel,20,68.9,2.0 10769, 3 Series,2015,12300,Manual,39347,Diesel,125,60.1,2.0 10770, 7 Series,2008,6480,Automatic,70500,Diesel,325,35.3,3.0 10771, 5 Series,2015,11700,Automatic,106000,Diesel,160,51.4,2.0 10772, 1 Series,2017,10200,Manual,41435,Diesel,0,83.1,1.5 10773, X1,2017,15900,Automatic,60372,Diesel,125,57.6,2.0 10774, 5 Series,2016,14300,Automatic,67530,Diesel,30,62.8,2.0 10775, X4,2015,20000,Automatic,44147,Diesel,200,47.9,3.0 10776, X3,2016,19000,Automatic,40818,Diesel,150,54.3,2.0 10777, 5 Series,2016,14600,Automatic,42947,Diesel,125,60.1,2.0 10778, 3 Series,2017,13100,Manual,25468,Petrol,200,42.8,2.0 10779, 1 Series,2014,9930,Automatic,45000,Diesel,30,64.2,2.0 10780, X1,2017,15981,Automatic,59432,Diesel,125,57.6,2.0 ================================================ FILE: docs/third-party/data-science/files/matplotlib/bmw_plot.py ================================================ import matplotlib.pyplot as plt import pandas as pd df = pd.read_csv('pypi/datascience/files/bmw-clean.csv') fig, ax = plt.subplots(figsize=(6, 4), dpi=100) x = df['mpg'] y = df['price'] colors = df['year'] p = ax.scatter( x, y, s=30, c=colors, cmap='plasma_r', vmin=colors.min(), vmax=colors.max(), # normalización de colores alpha=0.7, edgecolors='none', ) cb = fig.colorbar(p, ax=ax, label='Año', extend='max') cb.outline.set_visible(False) ax.set_xlabel('Consumo (mpg)') ax.set_ylabel('Precio (€)') ax.spines['right'].set_visible(False) ax.spines['top'].set_visible(False) fig.tight_layout() ================================================ FILE: docs/third-party/data-science/files/matplotlib/eth-usd.csv ================================================ Date,Open,High,Low,Close,Adj Close,Volume 2015-08-07,2.831620,3.536610,2.521120,2.772120,2.772120,164329 2015-08-08,2.793760,2.798810,0.714725,0.753325,0.753325,674188 2015-08-09,0.706136,0.879810,0.629191,0.701897,0.701897,532170 2015-08-10,0.713989,0.729854,0.636546,0.708448,0.708448,405283 2015-08-11,0.708087,1.131410,0.663235,1.067860,1.067860,1463100 2015-08-12,1.058750,1.289940,0.883608,1.217440,1.217440,2150620 2015-08-13,1.222240,1.965070,1.171990,1.827670,1.827670,4068680 2015-08-14,1.810920,2.261880,1.754750,1.827870,1.827870,4637030 2015-08-15,1.802890,1.877240,1.570980,1.688900,1.688900,2554360 2015-08-16,1.684350,1.695240,1.089810,1.566030,1.566030,3550790 2015-08-17,1.581190,1.581190,1.185340,1.203610,1.203610,1942830 2015-08-18,1.215300,1.331160,1.087050,1.087050,1.087050,1485680 2015-08-19,1.166930,1.317990,1.166930,1.258860,1.258860,1486240 2015-08-20,1.251180,1.533300,1.248330,1.464920,1.464920,2843760 2015-08-21,1.477520,1.556420,1.352800,1.395290,1.395290,2020970 2015-08-22,1.396290,1.476410,1.352680,1.379230,1.379230,948310 2015-08-23,1.375000,1.409700,1.297770,1.352590,1.352590,1589300 2015-08-24,1.345590,1.362780,1.231270,1.231270,1.231270,924920 2015-08-25,1.228610,1.241820,1.128650,1.140190,1.140190,1307180 2015-08-26,1.132790,1.202480,1.061830,1.159980,1.159980,1056750 2015-08-27,1.169810,1.188830,1.137290,1.147700,1.147700,686662 2015-08-28,1.147660,1.207790,1.120500,1.191380,1.191380,721872 2015-08-29,1.193530,1.207210,1.149490,1.182550,1.182550,375377 2015-08-30,1.182990,1.367990,1.170610,1.319270,1.319270,1337650 2015-08-31,1.321380,1.396150,1.201010,1.358240,1.358240,1447180 2015-09-01,1.353480,1.392740,1.336630,1.351610,1.351610,778862 2015-09-02,1.351570,1.354910,1.264620,1.294790,1.294790,883769 2015-09-03,1.295190,1.309990,1.211030,1.264930,1.264930,702991 2015-09-04,1.264930,1.302520,1.236810,1.274410,1.274410,474391 2015-09-05,1.280560,1.342300,1.271190,1.338810,1.338810,448453 2015-09-06,1.338010,1.373640,1.294250,1.295830,1.295830,491968 2015-09-07,1.295900,1.305480,1.237850,1.246650,1.246650,489014 2015-09-08,1.246650,1.282380,1.230610,1.242430,1.242430,427892 2015-09-09,1.239350,1.260480,1.201840,1.206510,1.206510,366748 2015-09-10,1.207610,1.221570,1.136150,1.165770,1.165770,662782 2015-09-11,1.164970,1.169070,0.940675,0.982978,0.982978,1942600 2015-09-12,0.987228,1.114890,0.969780,1.038740,1.038740,772430 2015-09-13,1.041780,1.042700,0.902832,0.936003,0.936003,644138 2015-09-14,0.940566,0.949387,0.871760,0.875622,0.875622,741085 2015-09-15,0.875189,1.045540,0.875189,0.944410,0.944410,703390 2015-09-16,0.941977,0.952698,0.901639,0.907175,0.907175,615593 2015-09-17,0.906865,0.909204,0.831132,0.874231,0.874231,897940 2015-09-18,0.874574,0.888102,0.833908,0.853685,0.853685,484622 2015-09-19,0.849603,0.911883,0.833784,0.882391,0.882391,386988 2015-09-20,0.881191,0.947741,0.873205,0.938445,0.938445,508314 2015-09-21,0.941496,0.957326,0.878301,0.919047,0.919047,424039 2015-09-22,0.919337,0.919337,0.865225,0.901796,0.901796,487914 2015-09-23,0.903560,0.908910,0.885136,0.893406,0.893406,200541 2015-09-24,0.896796,0.908571,0.793460,0.813610,0.813610,842505 2015-09-25,0.820031,0.825665,0.712745,0.736223,0.736223,903457 2015-09-26,0.737630,0.787544,0.709328,0.785964,0.785964,369620 2015-09-27,0.791277,0.791277,0.719169,0.720839,0.720839,413801 2015-09-28,0.723715,0.725677,0.557062,0.582886,0.582886,1320890 2015-09-29,0.579414,0.675830,0.558346,0.661146,0.661146,913992 2015-09-30,0.661192,0.746722,0.635861,0.738644,0.738644,619926 2015-10-01,0.734307,0.734307,0.655906,0.690215,0.690215,596084 2015-10-02,0.683732,0.691120,0.654605,0.678574,0.678574,219318 2015-10-03,0.678783,0.709204,0.675482,0.687171,0.687171,163326 2015-10-04,0.686343,0.693126,0.660716,0.668379,0.668379,103497 2015-10-05,0.666784,0.674438,0.624450,0.628643,0.628643,234263 2015-10-06,0.622218,0.653944,0.606230,0.650645,0.650645,262674 2015-10-07,0.650515,0.656301,0.602423,0.609388,0.609388,218327 2015-10-08,0.609501,0.633138,0.591971,0.621716,0.621716,310266 2015-10-09,0.655084,0.692296,0.632116,0.650628,0.650628,386420 2015-10-10,0.641187,0.649022,0.624374,0.627857,0.627857,141555 2015-10-11,0.627461,0.639506,0.618335,0.634963,0.634963,102128 2015-10-12,0.634515,0.657789,0.626030,0.626030,0.626030,109567 2015-10-13,0.627943,0.630240,0.599214,0.607655,0.607655,303044 2015-10-14,0.612240,0.612240,0.483974,0.522968,0.522968,971664 2015-10-15,0.523278,0.572714,0.514730,0.561878,0.561878,371022 2015-10-16,0.562593,0.568861,0.522533,0.536495,0.536495,249891 2015-10-17,0.534117,0.563460,0.526961,0.547178,0.547178,313860 2015-10-18,0.547913,0.552234,0.512861,0.517734,0.517734,133690 2015-10-19,0.517621,0.521546,0.480994,0.489014,0.489014,243742 2015-10-20,0.489629,0.501898,0.431648,0.434829,0.434829,383921 2015-10-21,0.431589,0.482988,0.420897,0.447329,0.447329,609085 2015-10-22,0.444988,0.619466,0.420991,0.567702,0.567702,924822 2015-10-23,0.566370,0.611743,0.504284,0.539657,0.539657,878822 2015-10-24,0.539681,0.577396,0.518688,0.563590,0.563590,258356 2015-10-25,0.563207,0.688192,0.561383,0.616039,0.616039,635384 2015-10-26,0.619743,0.757517,0.597098,0.731317,0.731317,1089120 2015-10-27,0.708890,0.898172,0.708890,0.869641,0.869641,1846370 2015-10-28,0.870938,1.055790,0.807857,1.002480,1.002480,2373050 2015-10-29,1.005250,1.206660,0.947374,1.206660,1.206660,2279240 2015-10-30,1.209200,1.345050,0.968160,1.041220,1.041220,2429200 2015-10-31,1.046580,1.056380,0.900171,0.916627,0.916627,673892 2015-11-01,0.920847,1.076740,0.899082,1.055670,1.055670,588913 2015-11-02,1.057970,1.099790,0.953647,0.989789,0.989789,1145200 2015-11-03,0.994568,1.070440,0.936615,1.013360,1.013360,1907690 2015-11-04,1.010650,1.038720,0.725665,0.899050,0.899050,3060340 2015-11-05,0.900699,0.991259,0.860382,0.895637,0.895637,1179840 2015-11-06,0.904772,0.989848,0.852929,0.926032,0.926032,913666 2015-11-07,0.923732,0.943787,0.863539,0.927974,0.927974,890187 2015-11-08,0.915661,1.032680,0.915661,1.027470,1.027470,1021460 2015-11-09,1.032530,1.106420,0.945263,0.999278,0.999278,2045290 2015-11-10,1.001260,1.053040,0.920968,0.934348,0.934348,854581 2015-11-11,0.941296,0.945278,0.729775,0.791829,0.791829,1278580 2015-11-12,0.796455,0.913919,0.763510,0.895711,0.895711,806156 2015-11-13,0.907722,0.917309,0.846023,0.904096,0.904096,543671 2015-11-14,0.905469,0.906113,0.876908,0.888812,0.888812,372514 2015-11-15,0.891217,0.921516,0.874957,0.906368,0.906368,411848 2015-11-16,0.906166,0.944732,0.891971,0.928962,0.928962,620945 2015-11-17,0.924948,1.032950,0.905794,1.007980,1.007980,1145440 2015-11-18,0.993214,1.011570,0.940516,0.993319,0.993319,681104 2015-11-19,0.988713,1.007970,0.937498,0.955532,0.955532,443528 2015-11-20,0.955735,0.955735,0.898576,0.924920,0.924920,614335 2015-11-21,0.928758,0.978743,0.920940,0.976140,0.976140,455976 2015-11-22,0.979765,0.984132,0.958982,0.968018,0.968018,372173 2015-11-23,0.967493,0.969057,0.933870,0.946969,0.946969,441875 2015-11-24,0.946442,0.948055,0.895931,0.900191,0.900191,524195 2015-11-25,0.893827,0.899493,0.851106,0.863537,0.863537,622991 2015-11-26,0.863273,0.903643,0.804360,0.884183,0.884183,947473 2015-11-27,0.882100,0.900051,0.860695,0.867951,0.867951,403813 2015-11-28,0.868102,0.929293,0.862122,0.915703,0.915703,462464 2015-11-29,0.914144,0.914153,0.860533,0.878614,0.878614,448358 2015-11-30,0.879951,0.895054,0.847696,0.873119,0.873119,784439 2015-12-01,0.878316,0.886736,0.853937,0.874800,0.874800,652857 2015-12-02,0.873171,0.878017,0.818924,0.821210,0.821210,506307 2015-12-03,0.818546,0.837664,0.785086,0.812143,0.812143,539969 2015-12-04,0.812082,0.859575,0.802373,0.840041,0.840041,241278 2015-12-05,0.841195,0.872821,0.824444,0.862438,0.862438,232743 2015-12-06,0.866417,0.882436,0.833115,0.835500,0.835500,443608 2015-12-07,0.836322,0.850791,0.787650,0.811264,0.811264,520409 2015-12-08,0.806024,0.823645,0.782328,0.822118,0.822118,445903 2015-12-09,0.824454,0.824454,0.770488,0.792167,0.792167,624221 2015-12-10,0.795590,0.861590,0.787291,0.840396,0.840396,369589 2015-12-11,0.839995,0.929762,0.819789,0.929762,0.929762,801072 2015-12-12,0.931196,1.045370,0.928546,0.976973,0.976973,1376280 2015-12-13,0.971538,0.989394,0.937438,0.952884,0.952884,273614 2015-12-14,0.956620,1.013100,0.950178,0.993022,0.993022,563436 2015-12-15,0.990589,1.028840,0.982240,1.014150,1.014150,578618 2015-12-16,1.017110,1.018030,0.974927,0.991182,0.991182,320767 2015-12-17,0.993043,0.997611,0.911807,0.940701,0.940701,640765 2015-12-18,0.938327,0.939493,0.908081,0.920127,0.920127,300787 2015-12-19,0.921524,0.925874,0.888916,0.908072,0.908072,343535 2015-12-20,0.908240,0.943185,0.899441,0.903885,0.903885,472164 2015-12-21,0.906065,0.917390,0.891182,0.900771,0.900771,549113 2015-12-22,0.894973,0.909526,0.862059,0.864202,0.864202,454249 2015-12-23,0.861782,0.882940,0.856065,0.858077,0.858077,334993 2015-12-24,0.859433,0.882818,0.847600,0.863262,0.863262,354646 2015-12-25,0.861993,0.882556,0.861993,0.870363,0.870363,187114 2015-12-26,0.870766,0.897453,0.838314,0.854603,0.854603,425282 2015-12-27,0.853166,0.861538,0.841151,0.856365,0.856365,164565 2015-12-28,0.856356,0.872394,0.832932,0.845005,0.845005,235134 2015-12-29,0.843835,0.873054,0.833232,0.873054,0.873054,215742 2015-12-30,0.874258,0.941099,0.866647,0.911958,0.911958,604078 2015-12-31,0.912098,0.975414,0.910277,0.933542,0.933542,663994 2016-01-01,0.933712,0.954822,0.931442,0.948024,0.948024,206062 2016-01-02,0.947401,0.969637,0.936560,0.937124,0.937124,255504 2016-01-03,0.938430,0.991362,0.934313,0.971905,0.971905,407632 2016-01-04,0.972045,0.976438,0.929835,0.954480,0.954480,346245 2016-01-05,0.953147,0.970597,0.946543,0.950176,0.950176,219833 2016-01-06,0.950028,0.960659,0.935708,0.950860,0.950860,308791 2016-01-07,0.955801,0.974623,0.935830,0.942005,0.942005,647462 2016-01-08,0.942752,0.991825,0.939715,0.986789,0.986789,545600 2016-01-09,0.985501,0.992345,0.973600,0.986833,0.986833,226281 2016-01-10,0.985557,1.001030,0.975099,0.999231,0.999231,390888 2016-01-11,0.999216,1.069910,0.999216,1.061600,1.061600,1011920 2016-01-12,1.066100,1.282830,1.050090,1.141000,1.141000,2898760 2016-01-13,1.135470,1.152180,1.077030,1.125200,1.125200,1005910 2016-01-14,1.122100,1.189590,1.103190,1.189590,1.189590,751961 2016-01-15,1.184440,1.319380,1.142930,1.208010,1.208010,3910550 2016-01-16,1.220460,1.308160,1.168010,1.220290,1.220290,2462630 2016-01-17,1.221470,1.328830,1.207770,1.327470,1.327470,1171150 2016-01-18,1.332310,1.542900,1.322220,1.426340,1.426340,4278930 2016-01-19,1.422610,1.464690,1.305010,1.371390,1.371390,2446740 2016-01-20,1.363180,1.619240,1.353710,1.531820,1.531820,2933220 2016-01-21,1.532700,1.585490,1.486690,1.553570,1.553570,1614960 2016-01-22,1.547030,1.581460,1.465880,1.501270,1.501270,1567240 2016-01-23,1.504120,2.030120,1.496050,1.972670,1.972670,7370980 2016-01-24,1.900540,2.298420,1.900540,2.141200,2.141200,9669770 2016-01-25,2.147640,2.662580,2.056140,2.499270,2.499270,10739300 2016-01-26,2.532740,2.836990,1.994770,2.276370,2.276370,13939200 2016-01-27,2.247440,2.594940,2.188650,2.388550,2.388550,6961080 2016-01-28,2.406450,2.684670,2.342030,2.526490,2.526490,4903850 2016-01-29,2.542980,2.606770,2.303900,2.494960,2.494960,6662340 2016-01-30,2.507720,2.611810,2.398920,2.445060,2.445060,3725080 2016-01-31,2.443150,2.530970,2.186350,2.306040,2.306040,5847500 2016-02-01,2.319690,2.319690,2.116310,2.211690,2.211690,3994100 2016-02-02,2.215190,2.448980,2.157200,2.439640,2.439640,3451270 2016-02-03,2.431930,2.540170,2.341620,2.528690,2.528690,3987750 2016-02-04,2.529030,2.629540,2.436460,2.578040,2.578040,3552320 2016-02-05,2.570350,2.606180,2.470920,2.538990,2.538990,2636700 2016-02-06,2.533820,2.561150,2.472010,2.534460,2.534460,1921240 2016-02-07,2.536410,3.058190,2.536380,2.964340,2.964340,7007060 2016-02-08,2.973000,3.274280,2.875370,3.179790,3.179790,9725690 2016-02-09,3.174990,4.044640,3.168750,4.044640,4.044640,17954000 2016-02-10,4.000550,4.861440,3.783100,4.436260,4.436260,28640400 2016-02-11,4.496820,6.292230,4.338300,6.013100,6.013100,26408200 2016-02-12,5.946150,6.582750,5.070760,5.546980,5.546980,23360800 2016-02-13,5.685050,5.719540,4.190000,5.385320,5.385320,24218800 2016-02-14,5.404330,5.465060,4.445710,5.239730,5.239730,11226500 2016-02-15,5.330530,5.886990,5.018560,5.288350,5.288350,13934200 2016-02-16,5.328320,5.474860,4.033840,4.315290,4.315290,15889100 2016-02-17,4.289170,4.767070,3.497370,3.757240,3.757240,15451000 2016-02-18,3.774700,4.770570,3.420880,4.399130,4.399130,17054000 2016-02-19,4.384790,4.793220,4.274690,4.737890,4.737890,7666320 2016-02-20,4.682200,4.754060,4.127070,4.341330,4.341330,8631090 2016-02-21,4.360550,4.711510,4.227610,4.653620,4.653620,6413550 2016-02-22,4.664950,5.645710,4.635250,5.616500,5.616500,15056200 2016-02-23,5.684930,5.947640,5.387820,5.586210,5.586210,13380600 2016-02-24,5.604050,6.236470,5.509250,6.236470,6.236470,11426500 2016-02-25,6.186710,6.647410,5.551240,6.104800,6.104800,21471800 2016-02-26,6.037830,6.268750,5.739050,5.921670,5.921670,9526860 2016-02-27,5.963080,6.526920,5.920520,6.425860,6.425860,8903210 2016-02-28,6.405510,6.619340,6.238370,6.468350,6.468350,9851660 2016-02-29,6.455650,6.614510,6.054290,6.336990,6.336990,7648020 2016-03-01,6.319310,7.908640,6.308850,7.653690,7.653690,23098100 2016-03-02,7.633030,8.753460,7.371300,8.465390,8.465390,29130200 2016-03-03,8.442290,10.097400,8.332030,9.294150,9.294150,40314900 2016-03-04,9.240560,10.406000,8.479420,10.406000,10.406000,35520100 2016-03-05,10.370300,12.274000,9.972900,11.003700,11.003700,56439600 2016-03-06,11.204000,11.836000,9.993610,11.382900,11.382900,39112000 2016-03-07,11.428800,11.651900,9.309490,9.552630,9.552630,34085100 2016-03-08,9.582140,10.166400,8.815770,9.847210,9.847210,25524300 2016-03-09,9.792420,12.054700,9.670990,11.898000,11.898000,27540500 2016-03-10,11.881500,12.239300,10.991100,11.305000,11.305000,26851500 2016-03-11,11.221600,11.599900,10.393700,11.082800,11.082800,21002700 2016-03-12,11.130700,13.533300,11.087700,13.533300,13.533300,48957300 2016-03-13,13.510200,15.257100,13.467400,14.475000,14.475000,43915100 2016-03-14,14.512200,15.013000,11.582100,12.452600,12.452600,58385100 2016-03-15,13.001700,13.197800,12.046800,13.010000,13.010000,28404500 2016-03-16,13.021600,13.730700,12.495400,12.520900,12.520900,24335500 2016-03-17,12.558700,12.643500,10.442600,11.081500,11.081500,41650600 2016-03-18,11.109100,11.178800,8.524520,10.998100,10.998100,53956800 2016-03-19,11.203700,11.203700,9.776630,10.530700,10.530700,26735700 2016-03-20,10.516300,10.903800,9.570400,10.319800,10.319800,17651100 2016-03-21,10.303700,12.014900,10.161600,11.864100,11.864100,28572600 2016-03-22,11.879200,12.025200,11.177000,11.274800,11.274800,19730300 2016-03-23,11.327900,12.432600,11.237100,12.416700,12.416700,19353200 2016-03-24,12.442200,12.501600,10.803500,11.235000,11.235000,26081800 2016-03-25,11.260300,11.372900,10.527200,10.743200,10.743200,13782000 2016-03-26,10.767900,11.180800,10.589200,10.974000,10.974000,9425480 2016-03-27,10.986100,11.054200,10.112100,10.419200,10.419200,16744800 2016-03-28,10.431400,11.861300,10.407500,11.665600,11.665600,23188300 2016-03-29,11.752700,11.913600,11.349800,11.656400,11.656400,17684200 2016-03-30,11.605300,12.178500,11.469200,11.952900,11.952900,19351200 2016-03-31,11.919800,12.011900,11.315700,11.403500,11.403500,14966700 2016-04-01,11.400600,11.850400,11.400600,11.663600,11.663600,11373100 2016-04-02,11.630600,11.688800,11.398800,11.598900,11.598900,8682620 2016-04-03,11.628300,11.706400,11.508700,11.618300,11.618300,5580550 2016-04-04,11.615800,11.615800,11.016300,11.157300,11.157300,9599070 2016-04-05,11.212500,11.212500,10.134700,10.438100,10.438100,20557300 2016-04-06,10.449800,10.970000,10.277300,10.685400,10.685400,16997100 2016-04-07,10.695200,10.809700,9.953630,10.069700,10.069700,13464500 2016-04-08,10.077400,10.387500,9.655580,9.719590,9.719590,14660600 2016-04-09,9.694230,10.088900,9.068140,9.150620,9.150620,16194800 2016-04-10,9.149850,9.224720,7.455640,8.936340,8.936340,42613400 2016-04-11,8.942780,8.946640,8.003180,8.643790,8.643790,15138100 2016-04-12,8.639470,8.639470,7.154160,7.442310,7.442310,23190100 2016-04-13,7.441360,8.719770,7.069220,8.044420,8.044420,31403300 2016-04-14,8.075170,8.757040,8.021520,8.387240,8.387240,13590700 2016-04-15,8.386060,8.616200,8.097330,8.242780,8.242780,12179000 2016-04-16,8.235880,8.649760,8.114440,8.609500,8.609500,9888460 2016-04-17,8.623190,9.702000,8.560780,9.309100,9.309100,24619600 2016-04-18,9.332730,9.506660,8.496870,9.036000,9.036000,21084100 2016-04-19,9.075330,9.306240,8.595460,8.714880,8.714880,12899100 2016-04-20,8.688190,8.825390,8.313760,8.465790,8.465790,15634700 2016-04-21,8.453460,8.721830,7.962220,8.102170,8.102170,13355400 2016-04-22,8.149920,8.272320,7.668480,7.821260,7.821260,13309300 2016-04-23,7.791830,8.552930,7.737740,8.294790,8.294790,14565200 2016-04-24,8.293430,8.473970,7.959810,8.001350,8.001350,10786400 2016-04-25,8.007770,8.094600,7.236510,7.554340,7.554340,18239900 2016-04-26,7.526550,7.551820,7.058980,7.397040,7.397040,17667300 2016-04-27,7.388390,7.967740,7.319690,7.759970,7.759970,19254500 2016-04-28,7.740690,7.913070,7.166400,7.172530,7.172530,11576000 2016-04-29,7.207030,7.730960,7.171890,7.457290,7.457290,8762080 2016-04-30,7.453910,9.366500,7.453910,8.813980,8.813980,36573300 2016-05-01,8.775080,9.011780,8.432360,8.846500,8.846500,16713800 2016-05-02,8.894240,10.321500,8.850720,10.163200,10.163200,41019200 2016-05-03,10.165100,10.165100,9.279800,9.311270,9.311270,21463900 2016-05-04,9.382870,10.034100,9.267520,9.413770,9.413770,17622400 2016-05-05,9.396730,10.046000,9.292120,9.826100,9.826100,18296200 2016-05-06,9.809610,9.952190,9.037010,9.346640,9.346640,21510600 2016-05-07,9.315650,9.475790,9.212100,9.370510,9.370510,10806500 2016-05-08,9.372900,9.597500,8.926860,9.482930,9.482930,15031000 2016-05-09,9.494040,9.641160,9.203700,9.297730,9.297730,13085300 2016-05-10,9.282650,9.479020,9.261360,9.361520,9.361520,9321790 2016-05-11,9.431430,10.011900,9.389260,9.996280,9.996280,15267500 2016-05-12,9.995110,10.506300,9.856410,10.057800,10.057800,24137700 2016-05-13,10.062300,11.052800,10.018400,10.506600,10.506600,31276900 2016-05-14,10.505100,10.615000,9.807920,10.239700,10.239700,18808000 2016-05-15,10.238600,10.444500,9.926420,9.962350,9.962350,9218400 2016-05-16,9.968700,11.440300,9.968700,11.171300,11.171300,29079900 2016-05-17,11.193200,12.487000,11.152600,12.198800,12.198800,37198700 2016-05-18,12.179300,14.259000,12.179300,13.558600,13.558600,65389900 2016-05-19,13.542800,14.872800,13.337600,14.769700,14.769700,53757500 2016-05-20,14.853200,15.048200,13.384200,13.635600,13.635600,50544100 2016-05-21,13.689700,14.051200,13.119000,14.015000,14.015000,24648400 2016-05-22,14.040500,14.346400,13.765800,14.286100,14.286100,17938900 2016-05-23,14.279800,14.492400,13.192200,13.461500,13.461500,23842800 2016-05-24,13.305400,13.774300,12.014100,12.732300,12.732300,41560600 2016-05-25,12.793200,12.898400,11.766600,12.526000,12.526000,27444700 2016-05-26,12.516100,12.986600,12.059200,12.430400,12.430400,20764000 2016-05-27,12.389400,12.389400,10.502700,11.295800,11.295800,57496400 2016-05-28,11.333200,12.363300,10.373400,11.892900,11.892900,47274800 2016-05-29,12.112200,12.690800,11.776800,12.350400,12.350400,28598400 2016-05-30,12.325300,12.880600,12.265800,12.725300,12.725300,14733800 2016-05-31,12.743500,14.267300,12.642200,14.077300,14.077300,42433400 2016-06-01,14.109800,14.315500,13.438900,14.001500,14.001500,22471300 2016-06-02,13.991700,14.048400,13.629200,13.738000,13.738000,10477200 2016-06-03,13.742900,13.873800,13.254300,13.846700,13.846700,22981500 2016-06-04,13.864300,13.945400,13.421800,13.740400,13.740400,15792400 2016-06-05,13.762500,14.072200,13.567800,13.975000,13.975000,11088400 2016-06-06,14.000700,14.058500,13.734900,13.934100,13.934100,8720400 2016-06-07,13.945300,14.512000,13.814600,14.512000,14.512000,21421600 2016-06-08,14.507900,14.779600,14.275200,14.417700,14.417700,16941800 2016-06-09,14.430600,14.567200,14.340200,14.398600,14.398600,8256830 2016-06-10,14.375900,14.431800,13.820700,13.908600,13.908600,11312900 2016-06-11,13.909100,14.191600,13.720300,14.191600,14.191600,12176500 2016-06-12,14.186400,15.900000,14.186400,15.743700,15.743700,38210300 2016-06-13,15.772300,17.644199,15.719600,17.602699,17.602699,38023400 2016-06-14,17.612801,19.273500,17.298599,18.893200,18.893200,64412200 2016-06-15,18.905300,18.905300,17.709499,18.354300,18.354300,19393400 2016-06-16,18.362801,20.829700,18.362801,20.588600,20.588600,38531000 2016-06-17,20.650900,21.522699,13.567600,15.376800,15.376800,199408000 2016-06-18,15.378600,15.378600,9.963640,11.330700,11.330700,133937000 2016-06-19,11.167300,13.182100,10.635600,12.234200,12.234200,69783600 2016-06-20,12.236900,12.448300,10.524700,11.839500,11.839500,58143600 2016-06-21,11.819800,13.420400,11.291800,13.306700,13.306700,69245600 2016-06-22,13.199700,15.785600,13.095100,13.095100,13.095100,96994096 2016-06-23,13.215600,13.791100,12.564000,13.676200,13.676200,30806400 2016-06-24,13.682100,14.567300,13.219400,14.332100,14.332100,33332900 2016-06-25,14.302800,14.581900,14.017000,14.283000,14.283000,15383100 2016-06-26,14.261100,14.373900,13.656500,13.850200,13.850200,14747600 2016-06-27,13.808200,14.121100,13.749300,13.883900,13.883900,10994700 2016-06-28,13.927600,13.981500,11.718000,12.175600,12.175600,43436600 2016-06-29,12.174200,13.038000,11.685400,12.611200,12.611200,26982800 2016-06-30,12.602900,12.741900,12.253600,12.461500,12.461500,15801300 2016-07-01,12.438100,12.491300,11.733500,12.199500,12.199500,17236500 2016-07-02,12.216000,12.220900,11.950200,12.128400,12.128400,8987070 2016-07-03,12.120800,12.145200,11.589100,11.720200,11.720200,10588700 2016-07-04,11.696100,11.880200,11.389500,11.471000,11.471000,12943500 2016-07-05,11.457400,11.517800,9.576260,10.611400,10.611400,45526900 2016-07-06,10.575800,11.105600,10.280800,10.528900,10.528900,18137300 2016-07-07,10.535900,10.565800,9.803210,10.109400,10.109400,15407200 2016-07-08,10.115300,11.524800,9.961260,11.394600,11.394600,20039800 2016-07-09,11.417700,11.456700,10.729500,10.965500,10.965500,17254800 2016-07-10,10.960400,11.013700,10.782200,10.947600,10.947600,5479240 2016-07-11,10.941100,11.009300,10.260200,10.459000,10.459000,13098000 2016-07-12,10.447000,10.762000,10.425800,10.516100,10.516100,11127700 2016-07-13,10.506600,10.589500,10.403900,10.500500,10.500500,6715660 2016-07-14,10.596900,11.681900,10.596900,11.513200,11.513200,23621900 2016-07-15,11.499100,12.431300,11.490000,11.951600,11.951600,26838900 2016-07-16,11.919400,11.935900,11.592400,11.652800,11.652800,10445700 2016-07-17,11.623500,11.670300,11.007400,11.158700,11.158700,17921600 2016-07-18,11.173000,11.610100,10.948300,11.034400,11.034400,15931900 2016-07-19,11.046600,12.013900,11.010300,11.619100,11.619100,21730000 2016-07-20,11.590200,12.991400,11.566900,12.450600,12.450600,60226100 2016-07-21,12.460100,12.710300,11.993700,12.650700,12.650700,24636900 2016-07-22,12.657500,14.813400,12.539900,14.661900,14.661900,74779504 2016-07-23,14.665500,14.898900,14.049700,14.299700,14.299700,32489700 2016-07-24,14.295800,14.437400,12.316100,12.749500,12.749500,77750800 2016-07-25,12.743400,13.857000,12.683800,13.836100,13.836100,36673800 2016-07-26,13.816100,13.851100,11.727200,11.989500,11.989500,94428800 2016-07-27,12.050500,13.311900,11.835700,12.972800,12.972800,58278800 2016-07-28,12.979100,12.988200,12.492700,12.843600,12.843600,24603900 2016-07-29,12.836400,12.870600,12.554200,12.794600,12.794600,14082300 2016-07-30,12.797400,12.801300,12.461000,12.461000,12.461000,9047810 2016-07-31,12.439700,12.509800,11.547200,11.875900,11.875900,25441400 2016-08-01,11.894800,12.013700,10.941600,10.941600,10.941600,23999500 2016-08-02,10.948500,11.137200,8.200980,8.787280,8.787280,88803296 2016-08-03,8.876800,10.418000,8.876800,10.293900,10.293900,53979400 2016-08-04,10.311000,11.291200,10.156400,11.042800,11.042800,38151400 2016-08-05,11.019000,11.176400,10.763200,10.925400,10.925400,15487900 2016-08-06,10.916700,10.937600,10.285800,10.881100,10.881100,16712600 2016-08-07,10.859200,11.089600,10.780000,10.911600,10.911600,16551000 2016-08-08,10.913500,11.328800,10.859000,11.245400,11.245400,14956700 2016-08-09,11.274600,12.454600,11.200000,12.244300,12.244300,36656600 2016-08-10,12.229800,12.457800,11.982500,12.143200,12.143200,28096300 2016-08-11,12.138200,12.272400,11.633800,11.690900,11.690900,17505000 2016-08-12,11.688900,12.041600,11.635100,11.778500,11.778500,13690100 2016-08-13,11.770400,11.791100,11.511800,11.571300,11.571300,7539490 2016-08-14,11.583300,11.694600,11.099100,11.194800,11.194800,8680160 2016-08-15,11.201700,11.310800,11.000100,11.218400,11.218400,7500840 2016-08-16,11.228700,11.237300,11.002800,11.139700,11.139700,7051510 2016-08-17,11.133200,11.154800,10.748600,10.752800,10.752800,8833760 2016-08-18,10.747500,11.009100,10.744800,10.756100,10.756100,6935800 2016-08-19,10.746300,10.801100,10.727900,10.748700,10.748700,5390850 2016-08-20,10.750100,11.300700,10.749100,11.247400,11.247400,7443540 2016-08-21,11.253300,11.253800,10.993900,11.179200,11.179200,4355660 2016-08-22,11.185100,11.340800,11.075000,11.120900,11.120900,6588920 2016-08-23,11.137000,11.230000,10.898000,11.030600,11.030600,6489380 2016-08-24,11.024300,11.154600,11.009500,11.036000,11.036000,4423420 2016-08-25,11.031300,11.385100,11.016800,11.357400,11.357400,8552380 2016-08-26,11.352400,11.445400,11.211300,11.295400,11.295400,5857850 2016-08-27,11.294000,11.294000,11.139500,11.148200,11.148200,15108400 2016-08-28,11.147000,11.147000,10.920000,10.929300,10.929300,5303040 2016-08-29,10.915100,11.146200,10.789800,10.983800,10.983800,8130540 2016-08-30,10.992100,11.303600,10.958800,11.228900,11.228900,7221260 2016-08-31,11.238600,11.680200,11.183900,11.672400,11.672400,11073700 2016-09-01,11.670500,12.581500,11.648500,11.994900,11.994900,24051500 2016-09-02,11.964200,12.313300,11.882400,12.113000,12.113000,9368300 2016-09-03,12.112900,12.363600,11.347200,11.758700,11.758700,13358800 2016-09-04,11.754100,11.793600,11.473900,11.679900,11.679900,7220550 2016-09-05,11.680500,11.806600,11.594000,11.717000,11.717000,5724100 2016-09-06,11.725400,11.728400,11.472800,11.689100,11.689100,6346330 2016-09-07,11.694500,11.726300,11.515000,11.547900,11.547900,6115050 2016-09-08,11.545800,11.701400,11.252400,11.345900,11.345900,11535000 2016-09-09,11.412500,11.680000,11.386900,11.652800,11.652800,6109200 2016-09-10,11.662300,12.215100,11.543700,12.168500,12.168500,7220300 2016-09-11,12.207900,12.207900,11.589700,11.638400,11.638400,8791180 2016-09-12,11.643000,11.947000,11.613600,11.893700,11.893700,7478080 2016-09-13,11.888700,12.085600,11.880800,11.918700,11.918700,11704300 2016-09-14,11.904600,11.997200,11.855900,11.923200,11.923200,5694820 2016-09-15,11.943100,12.135400,11.922700,11.937000,11.937000,7309090 2016-09-16,11.959600,12.748600,11.902900,12.555800,12.555800,17421500 2016-09-17,12.558200,12.763000,12.442400,12.698600,12.698600,7446610 2016-09-18,12.686400,12.987300,12.155500,12.431200,12.431200,22433300 2016-09-19,12.436000,13.189000,12.417500,13.189000,13.189000,13838800 2016-09-20,13.213900,14.430300,13.119800,14.430300,14.430300,31929100 2016-09-21,14.434100,14.434100,13.170200,13.768500,13.768500,28645000 2016-09-22,13.665000,13.665000,12.478600,13.247600,13.247600,27382800 2016-09-23,13.208000,13.446900,13.101600,13.331300,13.331300,9166430 2016-09-24,13.322300,13.343000,12.681700,12.877900,12.877900,9824880 2016-09-25,12.852500,13.107500,12.797500,13.100900,13.100900,5283440 2016-09-26,13.169600,13.169600,12.740200,12.823100,12.823100,7213070 2016-09-27,12.863900,13.211400,12.855900,13.098300,13.098300,6831070 2016-09-28,13.107400,13.483800,13.081300,13.274800,13.274800,10239000 2016-09-29,13.276800,13.336100,13.073400,13.073400,13.073400,5990630 2016-09-30,13.076000,13.342700,13.024500,13.224800,13.224800,5950840 2016-10-01,13.203200,13.309100,13.045600,13.172700,13.172700,6331160 2016-10-02,13.180200,13.295900,13.143100,13.199700,13.199700,4079660 2016-10-03,13.203000,13.485200,13.187200,13.452400,13.452400,7458320 2016-10-04,13.450500,13.531000,13.211500,13.277000,13.277000,8348280 2016-10-05,13.283400,13.346700,13.035700,13.035700,13.035700,9881370 2016-10-06,13.026300,13.143600,12.686800,12.854300,12.854300,12044800 2016-10-07,12.851600,12.990200,12.534700,12.667100,12.667100,8933050 2016-10-08,12.674000,12.686900,12.045500,12.219100,12.219100,11611200 2016-10-09,12.215600,12.357100,11.979500,12.053700,12.053700,7208480 2016-10-10,12.060700,12.062200,11.624000,11.755500,11.755500,10809200 2016-10-11,11.762400,12.160900,11.751300,11.785700,11.785700,11727700 2016-10-12,11.784600,12.072000,11.707200,11.933500,11.933500,9694640 2016-10-13,11.909200,12.131200,11.783700,11.963000,11.963000,8665190 2016-10-14,11.989100,12.074000,11.895900,11.938200,11.938200,4333510 2016-10-15,11.936100,11.996200,11.776800,11.983400,11.983400,4991840 2016-10-16,11.981700,12.009700,11.933200,11.951600,11.951600,3617280 2016-10-17,11.955600,12.033900,11.861300,12.005000,12.005000,5724440 2016-10-18,11.995900,12.927800,11.995900,12.588500,12.588500,18864200 2016-10-19,12.592600,12.619100,11.908500,12.022600,12.022600,10576200 2016-10-20,12.046300,12.288800,11.997200,12.099000,12.099000,8170760 2016-10-21,12.129700,12.205400,12.023400,12.175400,12.175400,5676920 2016-10-22,12.180400,12.190200,11.954100,12.071500,12.071500,7583820 2016-10-23,12.130400,12.143100,11.939200,12.036000,12.036000,5774660 2016-10-24,12.037200,12.100700,11.909100,11.969000,11.969000,5739690 2016-10-25,11.967600,11.993400,11.147500,11.414000,11.414000,19316000 2016-10-26,11.384100,11.662500,11.384100,11.532000,11.532000,10221800 2016-10-27,11.531200,11.606500,11.263500,11.499700,11.499700,13255400 2016-10-28,11.474900,11.578400,10.953900,11.085100,11.085100,13971500 2016-10-29,11.100300,11.198500,9.563270,10.444600,10.444600,27070400 2016-10-30,10.428200,11.453700,10.294900,11.182800,11.182800,16694900 2016-10-31,11.229600,11.498500,10.935200,10.998200,10.998200,13393900 2016-11-01,10.957800,11.179700,10.304100,10.766100,10.766100,22901300 2016-11-02,10.773500,11.160400,10.692500,10.752600,10.752600,11691700 2016-11-03,10.797700,11.107500,10.762400,10.801000,10.801000,15228600 2016-11-04,10.817500,11.122200,10.817500,11.090700,11.090700,9958040 2016-11-05,11.094800,11.236600,10.883400,11.002500,11.002500,5502670 2016-11-06,10.991700,11.245400,10.852000,10.873500,10.873500,5688710 2016-11-07,10.903700,10.956700,10.784300,10.808800,10.808800,5992480 2016-11-08,10.850600,10.924300,10.739800,10.833700,10.833700,6258150 2016-11-09,10.819900,10.834900,10.222900,10.655500,10.655500,14606600 2016-11-10,10.674700,10.677100,10.513300,10.524500,10.524500,4253980 2016-11-11,10.514000,10.572700,10.257000,10.289900,10.289900,6056300 2016-11-12,10.292400,10.336200,9.697310,9.877960,9.877960,10052500 2016-11-13,9.887650,10.412700,9.841760,10.101500,10.101500,8227770 2016-11-14,10.098200,10.157100,9.956040,9.966480,9.966480,3573250 2016-11-15,9.971940,10.321900,9.851440,10.217500,10.217500,6557550 2016-11-16,10.217000,10.326600,9.931430,10.059100,10.059100,9533550 2016-11-17,10.059600,10.190200,9.920250,9.991180,9.991180,6984700 2016-11-18,9.988350,10.006100,9.476160,9.476160,9.476160,10816100 2016-11-19,9.482820,9.745820,9.482080,9.662760,9.662760,5186540 2016-11-20,9.661210,9.711090,9.520170,9.579280,9.579280,5173420 2016-11-21,9.580160,9.637790,9.541690,9.620820,9.620820,3663210 2016-11-22,9.625760,10.238800,9.591100,9.905720,9.905720,11284400 2016-11-23,9.919770,9.959260,9.763790,9.843620,9.843620,4812310 2016-11-24,9.846030,9.852600,8.928610,9.231670,9.231670,15987800 2016-11-25,9.228530,9.752520,9.211230,9.402050,9.402050,7669720 2016-11-26,9.416430,9.501030,9.310750,9.328110,9.328110,3505990 2016-11-27,9.312020,9.333520,8.775500,8.998470,8.998470,8707660 2016-11-28,8.998440,9.011680,8.723610,8.724820,8.724820,6046890 2016-11-29,8.728700,8.744430,7.875730,8.174120,8.174120,17000400 2016-11-30,8.155480,8.751130,8.155480,8.587540,8.587540,10626600 2016-12-01,8.601620,8.646030,8.359060,8.452500,8.452500,5882340 2016-12-02,8.455570,8.455570,7.417800,7.759960,7.759960,18579800 2016-12-03,7.766330,8.151170,7.668240,7.921340,7.921340,12112100 2016-12-04,7.903430,7.947770,7.443680,7.443680,7.443680,8450790 2016-12-05,7.410590,7.638860,6.655500,6.821660,6.821660,17344500 2016-12-06,6.804600,7.922680,5.978870,7.868930,7.868930,50671200 2016-12-07,7.894830,8.540840,7.328440,8.381480,8.381480,22229600 2016-12-08,8.383500,8.861330,8.230510,8.230510,8.230510,16042700 2016-12-09,8.168140,8.674090,8.054330,8.446010,8.446010,12916300 2016-12-10,8.438370,8.528410,8.016770,8.125160,8.125160,8108370 2016-12-11,8.126410,8.268560,8.102990,8.193620,8.193620,5545500 2016-12-12,8.192360,8.606330,8.165080,8.522210,8.522210,9119700 2016-12-13,8.520400,8.530890,8.345720,8.422850,8.422850,4486190 2016-12-14,8.451500,8.518650,8.248870,8.265230,8.265230,7337220 2016-12-15,8.235330,8.235330,7.722410,7.828470,7.828470,13184400 2016-12-16,7.859040,7.934770,7.804470,7.858210,7.858210,5178610 2016-12-17,7.855690,7.899110,7.520570,7.876590,7.876590,8502620 2016-12-18,7.860520,7.932860,7.719480,7.865320,7.865320,5890020 2016-12-19,7.869430,7.869430,7.625190,7.643820,7.643820,5894760 2016-12-20,7.633680,7.745900,7.571600,7.660040,7.660040,6313550 2016-12-21,7.663660,7.943600,7.662860,7.914400,7.914400,9393550 2016-12-22,7.899040,7.905860,7.501710,7.585000,7.585000,16376700 2016-12-23,7.576950,7.691740,7.161140,7.166150,7.166150,19613100 2016-12-24,7.152420,7.405430,7.152420,7.265770,7.265770,7626020 2016-12-25,7.264850,7.341660,7.138860,7.175080,7.175080,8671840 2016-12-26,7.132100,7.333820,7.047510,7.274090,7.274090,5836810 2016-12-27,7.276370,7.322580,7.090470,7.170820,7.170820,8778610 2016-12-28,7.148950,7.624060,7.082250,7.520110,7.520110,17453300 2016-12-29,7.539130,8.527410,7.539130,8.284160,8.284160,27543800 2016-12-30,8.289880,8.466090,8.054680,8.159980,8.159980,13909900 2016-12-31,8.151150,8.158560,7.909380,7.969100,7.969100,9066800 2017-01-01,7.982310,8.471230,7.982310,8.172570,8.172570,14731700 2017-01-02,8.170870,8.436330,8.054410,8.378510,8.378510,14579600 2017-01-03,8.374580,9.996800,8.317170,9.725250,9.725250,33625200 2017-01-04,9.709290,11.276400,9.559810,11.251600,11.251600,41051200 2017-01-05,11.286800,11.890900,9.402680,10.254400,10.254400,41557400 2017-01-06,10.285800,10.629200,9.627290,10.254700,10.254700,29471800 2017-01-07,10.240900,10.280400,9.585850,9.867190,9.867190,23153600 2017-01-08,9.872580,10.394800,9.828900,10.289800,10.289800,16676600 2017-01-09,10.313800,10.783800,10.136600,10.325600,10.325600,25718300 2017-01-10,10.369500,10.689800,10.289800,10.549600,10.549600,10879700 2017-01-11,10.541500,10.663900,9.456800,9.717760,9.717760,26823500 2017-01-12,9.721390,10.084000,9.175580,9.861330,9.861330,30453800 2017-01-13,9.827220,9.853820,9.514380,9.769500,9.769500,25066600 2017-01-14,9.786450,9.890840,9.443980,9.646660,9.646660,20085800 2017-01-15,9.829200,9.999620,9.597410,9.904260,9.904260,14837900 2017-01-16,9.883530,9.925920,9.583570,9.636500,9.636500,14937400 2017-01-17,9.639620,10.610400,9.544620,10.302300,10.302300,18391900 2017-01-18,10.296400,10.516800,9.935290,10.227800,10.227800,10788200 2017-01-19,10.240500,10.444000,10.178900,10.397200,10.397200,8347550 2017-01-20,10.386800,10.762700,10.352100,10.600600,10.600600,10992800 2017-01-21,10.595500,10.977800,10.580000,10.909200,10.909200,11937600 2017-01-22,10.910100,10.971800,10.576300,10.703200,10.703200,8678620 2017-01-23,10.709900,10.844700,10.669000,10.820800,10.820800,7267210 2017-01-24,10.727900,10.772300,10.571300,10.632500,10.632500,8327330 2017-01-25,10.618500,10.618500,10.484000,10.570500,10.570500,6751450 2017-01-26,10.567200,10.667700,10.513500,10.589100,10.589100,8465020 2017-01-27,10.584100,10.607000,10.442300,10.537300,10.537300,7189170 2017-01-28,10.538300,10.583200,10.429300,10.565000,10.565000,6580700 2017-01-29,10.561700,10.569700,10.451700,10.484000,10.484000,4689950 2017-01-30,10.493800,10.714000,10.466500,10.571200,10.571200,8042180 2017-01-31,10.564200,10.748700,10.545000,10.727500,10.727500,11648700 2017-02-01,10.741300,10.847200,10.556600,10.732100,10.732100,12852200 2017-02-02,10.735500,10.888100,10.551900,10.821400,10.821400,10172500 2017-02-03,10.812500,11.114500,10.755000,11.114500,11.114500,12897800 2017-02-04,11.128700,11.501500,11.128700,11.433500,11.433500,14139500 2017-02-05,11.442200,11.486100,11.316900,11.353000,11.353000,5942960 2017-02-06,11.353900,11.475400,11.344600,11.389400,11.389400,5695440 2017-02-07,11.425300,11.609800,11.415000,11.515300,11.515300,7629640 2017-02-08,11.540200,11.630400,11.243400,11.431200,11.431200,9688630 2017-02-09,11.435900,11.598000,10.674500,11.032200,11.032200,18400300 2017-02-10,11.045000,11.344700,10.781200,11.278900,11.278900,11914200 2017-02-11,11.290800,11.431800,11.242400,11.349500,11.349500,7544520 2017-02-12,11.353300,11.401300,11.304000,11.399200,11.399200,6264900 2017-02-13,11.383600,11.394900,11.174100,11.269500,11.269500,7216520 2017-02-14,11.286400,13.330700,11.286400,13.025200,13.025200,42911500 2017-02-15,13.039700,13.039700,12.637100,12.919700,12.919700,18464700 2017-02-16,12.921000,12.921000,12.544700,12.903700,12.903700,38002600 2017-02-17,12.898500,12.908100,12.664600,12.676500,12.676500,11636500 2017-02-18,12.708400,12.825800,12.678800,12.810200,12.810200,9370010 2017-02-19,12.817600,12.873300,12.714400,12.758500,12.758500,7799740 2017-02-20,12.765200,12.896700,12.430100,12.430100,12.430100,12994400 2017-02-21,12.342200,12.770900,12.210100,12.668400,12.668400,15183300 2017-02-22,12.687200,12.762500,12.552600,12.599700,12.599700,10360900 2017-02-23,12.598100,13.207800,12.563800,13.119400,13.119400,14522300 2017-02-24,13.134300,13.232300,12.882800,13.069200,13.069200,19574400 2017-02-25,13.063800,13.723900,12.980700,13.548700,13.548700,18533900 2017-02-26,13.517700,14.543100,13.395300,14.520000,14.520000,20307500 2017-02-27,14.505800,15.675200,14.274000,15.396500,15.396500,31667000 2017-02-28,15.450700,16.059401,15.123300,15.817200,15.817200,65478900 2017-03-01,15.847200,17.371099,15.558900,17.349701,17.349701,44927500 2017-03-02,17.355301,19.353001,16.954000,19.030199,19.030199,83627104 2017-03-03,19.042801,20.667400,18.411200,19.459000,19.459000,95863400 2017-03-04,19.517099,20.055000,18.618900,18.618900,18.618900,27341900 2017-03-05,18.502800,19.423201,18.232300,19.302299,19.302299,26816300 2017-03-06,19.282301,20.102301,19.114799,19.605700,19.605700,32432700 2017-03-07,19.579100,19.629900,18.642599,18.888599,18.888599,37972200 2017-03-08,18.882500,18.882500,16.651300,16.651300,16.651300,44304600 2017-03-09,16.640100,17.872601,16.366501,17.754700,17.754700,31418400 2017-03-10,17.740900,19.658800,17.677299,19.332300,19.332300,87506800 2017-03-11,19.374599,21.588200,19.007000,21.472500,21.472500,69150096 2017-03-12,21.464899,23.437700,21.379499,23.437700,23.437700,74628896 2017-03-13,23.504900,30.603800,23.504900,28.592899,28.592899,255488000 2017-03-14,28.571899,29.932899,27.315300,28.654600,28.654600,101797000 2017-03-15,28.645100,35.055901,28.433201,35.055901,35.055901,170344000 2017-03-16,35.357300,47.169800,35.357300,46.345798,46.345798,454417984 2017-03-17,45.929501,55.114700,38.207001,46.827999,46.827999,497534016 2017-03-18,46.874199,46.874199,31.702101,34.160198,34.160198,262180000 2017-03-19,35.529701,46.995998,35.341599,44.740101,44.740101,239430000 2017-03-20,44.833599,46.228901,42.444698,43.390202,43.390202,154700992 2017-03-21,43.509800,44.262299,42.370701,43.145100,43.145100,91265400 2017-03-22,43.122501,43.518700,39.687801,42.342098,42.342098,113952000 2017-03-23,42.565201,44.754799,41.302502,43.678398,43.678398,100724000 2017-03-24,43.638000,54.144798,43.205700,53.107498,53.107498,297046016 2017-03-25,53.575901,53.575901,48.311699,51.250000,51.250000,223059008 2017-03-26,50.769901,51.802898,49.283901,50.521599,50.521599,106859000 2017-03-27,51.312099,52.460899,48.929798,49.666901,49.666901,118978000 2017-03-28,49.710400,50.956299,49.145100,50.774899,50.774899,97745296 2017-03-29,50.569302,53.868999,50.548500,53.126099,53.126099,144998000 2017-03-30,53.124500,53.313999,51.866798,52.205799,52.205799,86885696 2017-03-31,51.753700,51.768299,47.380299,50.037300,50.037300,151416000 2017-04-01,50.033699,51.928299,48.875301,50.699501,50.699501,92461904 2017-04-02,50.738400,51.274502,45.425800,48.748699,48.748699,134604000 2017-04-03,48.821201,48.821201,43.409698,44.356400,44.356400,190512992 2017-04-04,43.921799,45.739601,41.721802,44.641899,44.641899,157568000 2017-04-05,44.661098,47.843399,44.538101,45.304001,45.304001,119733000 2017-04-06,45.220501,45.641899,40.901100,43.242100,43.242100,147120000 2017-04-07,42.865101,44.037498,41.646000,42.162601,42.162601,81474704 2017-04-08,41.798401,45.205299,41.730801,44.307098,44.307098,74138800 2017-04-09,44.280399,44.490501,42.892799,43.266998,43.266998,55143000 2017-04-10,43.277599,44.135899,42.415401,43.435200,43.435200,44061500 2017-04-11,43.501400,44.252800,43.299702,43.407200,43.407200,38303300 2017-04-12,43.462799,47.231998,43.110001,46.287300,46.287300,88045696 2017-04-13,46.310600,50.913799,46.310600,50.219398,50.219398,157200000 2017-04-14,49.971401,50.050098,46.762501,47.574100,47.574100,91674400 2017-04-15,47.653702,49.570000,47.175400,49.101501,49.101501,66207800 2017-04-16,49.037800,49.143101,48.187302,48.718498,48.718498,31343800 2017-04-17,48.659698,48.745399,48.051800,48.304600,48.304600,44013300 2017-04-18,48.319000,51.030201,48.297100,50.707500,50.707500,78748496 2017-04-19,50.729000,50.948002,47.260502,48.305302,48.305302,76281000 2017-04-20,48.132301,49.988998,48.132301,49.672199,49.672199,79600896 2017-04-21,49.643299,49.661701,48.140301,48.224400,48.224400,45048300 2017-04-22,48.182400,48.742100,48.173100,48.553001,48.553001,37357600 2017-04-23,48.592499,48.885601,48.168098,48.489300,48.489300,36234000 2017-04-24,48.866699,50.181400,48.866699,50.031502,50.031502,55580600 2017-04-25,50.074600,50.303600,49.806900,49.891201,49.891201,38264600 2017-04-26,49.909401,53.436798,49.909401,52.720299,52.720299,104884000 2017-04-27,52.805698,62.167702,52.288601,62.167702,62.167702,246775008 2017-04-28,62.226898,70.846497,62.133202,70.159203,70.159203,346545984 2017-04-29,71.389603,71.904900,66.778900,68.376900,68.376900,165448000 2017-04-30,68.540604,79.021202,68.347702,79.021202,79.021202,229944992 2017-05-01,79.321602,82.523903,73.086601,76.296997,76.296997,376841984 2017-05-02,76.653397,79.353302,74.376801,77.263802,77.263802,193772992 2017-05-03,77.253998,80.095299,75.763397,79.718201,79.718201,141922000 2017-05-04,79.720398,97.561897,79.431099,96.981400,96.981400,366847008 2017-05-05,96.734703,103.233002,92.220398,94.398499,94.398499,331928000 2017-05-06,94.912102,97.875900,90.950104,97.813499,97.813499,151462000 2017-05-07,97.869400,98.239098,89.866402,94.007301,94.007301,183295008 2017-05-08,93.747002,95.136902,89.514603,91.420403,91.420403,231344000 2017-05-09,91.227997,93.056702,80.389900,91.162903,91.162903,363433984 2017-05-10,91.151100,92.846901,85.286301,89.524902,89.524902,145602000 2017-05-11,89.770699,102.547997,88.475899,89.879700,89.879700,132722000 2017-05-12,89.428596,93.123100,88.655403,88.655403,88.655403,145824992 2017-05-13,88.694397,93.812302,86.660202,90.835403,90.835403,88742200 2017-05-14,90.871597,91.248299,89.606003,90.786499,90.786499,66046600 2017-05-15,90.784103,95.430496,86.829201,92.414902,92.414902,170999008 2017-05-16,92.387703,93.555099,89.117599,89.438004,89.438004,152284992 2017-05-17,89.250298,91.269203,84.430000,89.860397,89.860397,183031008 2017-05-18,89.840401,97.368599,89.840401,96.906303,96.906303,196236992 2017-05-19,97.052803,133.561996,97.052803,129.526993,129.526993,626945024 2017-05-20,129.222000,133.641006,124.702003,126.521004,126.521004,331455008 2017-05-21,127.537003,159.026001,125.889000,157.936996,157.936996,570361024 2017-05-22,158.173004,201.746002,152.473999,174.261002,174.261002,1188909952 2017-05-23,170.817993,183.548996,169.932007,181.951996,181.951996,530708992 2017-05-24,182.649002,228.373993,182.447006,190.046005,190.046005,561014016 2017-05-25,189.848999,210.983994,170.507004,174.445999,174.445999,943636992 2017-05-26,175.216995,193.688004,150.278000,160.403000,160.403000,792457984 2017-05-27,159.817001,166.951996,120.443001,157.757996,157.757996,1217059968 2017-05-28,158.817001,179.934998,157.604004,170.511002,170.511002,717971008 2017-05-29,170.134995,197.126007,164.529999,194.908997,194.908997,718828032 2017-05-30,195.613007,233.710007,189.292999,231.910995,231.910995,1586669952 2017-05-31,231.578003,236.964996,215.567993,230.669006,230.669006,1271600000 2017-06-01,230.886002,236.220993,214.479996,222.238998,222.238998,812924032 2017-06-02,222.285995,229.410995,219.584000,223.774994,223.774994,469532000 2017-06-03,223.464005,225.973007,219.419006,224.376007,224.376007,427896000 2017-06-04,224.117004,250.410004,223.981003,245.332001,245.332001,753820032 2017-06-05,245.261993,249.468994,243.048996,248.464005,248.464005,435660000 2017-06-06,248.598999,267.514008,246.839005,264.466003,264.466003,741553024 2017-06-07,264.260010,264.674011,254.039993,258.071014,258.071014,461648992 2017-06-08,257.990997,262.252014,253.975006,261.665985,261.665985,385494016 2017-06-09,261.748993,282.760986,261.748993,281.737000,281.737000,557985984 2017-06-10,282.014008,350.260986,282.014008,337.667999,337.667999,1611629952 2017-06-11,338.794006,353.010986,318.170990,340.609009,340.609009,1373219968 2017-06-12,341.164001,414.756012,341.164001,401.489990,401.489990,2882650112 2017-06-13,395.686005,411.178009,370.057007,397.536987,397.536987,1717379968 2017-06-14,397.588989,399.324005,342.214996,359.053009,359.053009,1272579968 2017-06-15,358.506989,364.438995,300.700012,361.933014,361.933014,2463450112 2017-06-16,361.182007,373.054993,341.416992,370.226990,370.226990,1096280064 2017-06-17,369.882996,379.414001,364.002014,379.414001,379.414001,904652992 2017-06-18,379.519012,390.580994,368.843994,371.458008,371.458008,904702976 2017-06-19,371.864014,377.114990,369.763000,370.056000,370.056000,685171968 2017-06-20,370.326996,377.968994,350.941986,359.005005,359.005005,1020390016 2017-06-21,359.540009,361.342987,319.479004,336.872009,336.872009,1420130048 2017-06-22,337.733002,342.027008,330.622009,336.371002,336.371002,925766976 2017-06-23,336.484985,348.006012,334.989990,341.739014,341.739014,593206976 2017-06-24,341.625000,343.621002,322.087006,323.696014,323.696014,673585024 2017-06-25,323.466003,332.791992,284.645996,303.247986,303.247986,1186880000 2017-06-26,302.954987,311.458008,238.649002,272.691986,272.691986,2081810048 2017-06-27,272.691986,293.088013,227.136993,293.088013,293.088013,1973869952 2017-06-28,293.041992,333.104004,276.414001,327.927002,327.927002,2056550016 2017-06-29,328.365997,330.708008,297.372986,302.882996,302.882996,1508579968 2017-06-30,303.152008,315.171997,288.442993,294.915985,294.915985,1011800000 2017-07-01,293.352997,293.747986,268.617004,274.601013,274.601013,1089200000 2017-07-02,275.122986,295.509003,262.519989,287.987000,287.987000,1123330048 2017-07-03,288.414001,291.104004,281.175995,282.898010,282.898010,851408000 2017-07-04,282.191010,287.388000,273.110992,273.303009,273.303009,687691008 2017-07-05,273.098999,275.125000,261.446991,268.773987,268.773987,790256000 2017-07-06,268.858002,278.476013,265.511993,270.549011,270.549011,623080000 2017-07-07,270.350006,273.942993,244.173996,245.990997,245.990997,687251968 2017-07-08,245.889999,273.476990,236.550995,251.697006,251.697006,754958016 2017-07-09,251.822006,255.104996,242.136993,242.136993,242.136993,505118016 2017-07-10,243.011002,243.070999,196.964996,215.356995,215.356995,937219008 2017-07-11,211.524994,220.291000,183.391998,197.404007,197.404007,1440950016 2017-07-12,197.151993,230.774002,189.589005,230.774002,230.774002,1241190016 2017-07-13,231.811996,231.811996,200.065002,209.733002,209.733002,828489024 2017-07-14,209.529007,211.100998,187.373993,199.662003,199.662003,749382016 2017-07-15,199.709000,200.160995,170.654999,170.654999,170.654999,810451968 2017-07-16,169.574005,172.014008,133.723007,157.363007,157.363007,1516889984 2017-07-17,159.990997,194.753006,158.044006,193.423996,193.423996,1669500032 2017-07-18,195.026993,267.985992,182.059006,234.391006,234.391006,2709260032 2017-07-19,234.940994,245.651001,191.744995,199.703003,199.703003,2328790016 2017-07-20,205.421997,233.904007,203.216003,227.264999,227.264999,2224999936 2017-07-21,226.061005,235.117996,213.009995,218.304993,218.304993,1006129984 2017-07-22,217.860001,232.695999,216.867996,229.475998,229.475998,618259968 2017-07-23,229.123001,231.679993,217.722000,225.951004,225.951004,649614976 2017-07-24,226.285004,227.537994,222.453003,224.710999,224.710999,431691008 2017-07-25,224.373001,225.324005,195.845001,206.710007,206.710007,1095760000 2017-07-26,207.085999,210.766998,194.783997,203.953003,203.953003,717692032 2017-07-27,204.856003,206.444000,201.259995,204.317993,204.317993,393283008 2017-07-28,204.324997,204.897003,192.304001,193.123001,193.123001,562571008 2017-07-29,193.341003,208.679001,179.647003,205.789001,205.789001,824355008 2017-07-30,206.735992,208.541000,196.149002,197.977997,197.977997,596233984 2017-07-31,197.404999,203.871002,193.410995,203.871002,203.871002,569414016 2017-08-01,204.688004,227.744003,204.688004,226.768997,226.768997,1585330048 2017-08-02,227.005997,229.511993,218.117996,219.951996,219.951996,632606016 2017-08-03,220.179993,228.292007,219.888000,225.341995,225.341995,557217024 2017-08-04,225.307999,227.621002,222.057007,223.072998,223.072998,539782976 2017-08-05,222.852005,256.506989,221.951996,256.506989,256.506989,1332999936 2017-08-06,256.419006,271.049011,252.852005,261.566986,261.566986,1482979968 2017-08-07,261.237000,271.963013,256.688995,269.179993,269.179993,935726976 2017-08-08,269.100006,298.907013,266.795990,296.769012,296.769012,1502409984 2017-08-09,297.631989,318.716003,276.690002,296.027008,296.027008,2638579968 2017-08-10,296.960999,306.592987,289.925995,295.891998,295.891998,1076819968 2017-08-11,294.494995,309.209015,294.494995,308.864014,308.864014,953576000 2017-08-12,308.709991,317.559998,307.895996,310.601013,310.601013,1111650048 2017-08-13,310.365997,310.816010,289.313995,298.063995,298.063995,1369369984 2017-08-14,298.031006,306.807007,296.411987,300.096985,300.096985,864390976 2017-08-15,299.951996,300.408997,279.326996,289.817993,289.817993,1051800000 2017-08-16,289.819000,303.412994,285.385010,302.266998,302.266998,967643008 2017-08-17,302.804993,311.028015,300.250000,301.457001,301.457001,909494016 2017-08-18,301.696991,307.959991,292.498993,295.589996,295.589996,936160000 2017-08-19,296.181000,301.666992,286.183014,297.470001,297.470001,860201984 2017-08-20,296.644012,301.428009,291.579987,301.428009,301.428009,571947008 2017-08-21,300.476013,347.049011,297.234009,321.591003,321.591003,2448969984 2017-08-22,321.054993,327.360992,297.912994,314.785004,314.785004,1336400000 2017-08-23,315.265991,324.209991,314.539001,317.519012,317.519012,811990016 2017-08-24,317.447998,327.959991,317.080994,325.610992,325.610992,697665024 2017-08-25,326.109009,336.398010,325.795990,331.915009,331.915009,760329024 2017-08-26,331.989990,334.984985,327.919006,333.881989,333.881989,514180992 2017-08-27,334.356995,347.893005,334.356995,347.893005,347.893005,633369984 2017-08-28,350.042999,352.053986,338.407013,347.747009,347.747009,854318976 2017-08-29,347.964996,373.763000,347.790009,370.666992,370.666992,1220029952 2017-08-30,369.472992,388.747986,361.971008,378.484985,378.484985,1333319936 2017-08-31,378.441010,386.139008,376.354004,383.041992,383.041992,706254016 2017-09-01,383.467010,390.044006,383.467010,387.740997,387.740997,874222016 2017-09-02,387.824005,389.352997,328.095001,348.984009,348.984009,1483600000 2017-09-03,350.229004,366.487000,332.231995,347.484009,347.484009,986265984 2017-09-04,347.132996,347.132996,279.938995,295.170990,295.170990,1801689984 2017-09-05,297.566986,318.571991,268.285004,312.988007,312.988007,1551049984 2017-09-06,313.802002,334.657990,313.489990,334.338013,334.338013,1058830016 2017-09-07,333.519012,333.519012,319.938995,329.428009,329.428009,718624000 2017-09-08,329.635986,329.635986,285.157013,296.497009,296.497009,1098780032 2017-09-09,296.169006,299.890991,287.220001,294.404999,294.404999,528620992 2017-09-10,294.063995,294.764008,268.972992,288.747009,288.747009,698326016 2017-09-11,289.744995,300.687988,286.684998,294.532013,294.532013,571307008 2017-09-12,294.630005,311.195007,287.227997,291.463989,291.463989,753144000 2017-09-13,291.122009,291.122009,260.609985,277.112000,277.112000,921692032 2017-09-14,276.587006,280.839996,213.908005,213.908005,213.908005,1184589952 2017-09-15,215.220993,258.654999,195.035004,250.464005,250.464005,1935699968 2017-09-16,250.865997,262.592987,238.223007,246.522003,246.522003,711737024 2017-09-17,245.848999,256.996002,235.240005,251.748993,251.748993,427452000 2017-09-18,252.227005,293.497009,252.227005,293.497009,293.497009,1127750016 2017-09-19,293.656006,295.768005,274.484009,282.803986,282.803986,646908992 2017-09-20,282.015015,290.885986,278.049011,283.742004,283.742004,421404000 2017-09-21,283.263000,286.609985,255.016006,258.579987,258.579987,601265984 2017-09-22,258.114014,270.540009,256.217987,264.309998,264.309998,430080992 2017-09-23,264.598999,286.167999,261.119995,286.167999,286.167999,450934016 2017-09-24,286.213989,292.947998,278.131989,282.483002,282.483002,571411008 2017-09-25,282.217987,293.515015,281.876007,292.332001,292.332001,483160992 2017-09-26,292.346008,293.750000,287.019989,287.437988,287.437988,345800992 2017-09-27,287.019989,308.015015,286.820007,306.467010,306.467010,550243968 2017-09-28,306.471008,307.197998,295.470001,299.154999,299.154999,501894016 2017-09-29,299.119995,299.924011,279.773010,291.467010,291.467010,541374976 2017-09-30,291.476990,303.963989,291.112000,301.464996,301.464996,332439008 2017-10-01,301.546997,303.192993,295.061005,302.337006,302.337006,306184992 2017-10-02,302.481995,302.920013,294.582001,297.475006,297.475006,339443008 2017-10-03,297.483002,300.110992,288.132996,292.463013,292.463013,321680000 2017-10-04,292.753998,299.394012,290.894989,292.657990,292.657990,257906000 2017-10-05,292.773010,298.040985,288.839996,295.863007,295.863007,253747008 2017-10-06,295.154999,308.839996,294.947998,308.588013,308.588013,318664000 2017-10-07,308.891998,313.130005,304.975006,311.123993,311.123993,342204992 2017-10-08,311.058990,312.541992,308.028015,308.608002,308.608002,293167008 2017-10-09,308.666992,309.312988,288.184998,297.391998,297.391998,559467008 2017-10-10,297.601013,306.153992,293.173004,299.869995,299.869995,359705984 2017-10-11,301.181000,304.390015,299.096008,303.455994,303.455994,264146000 2017-10-12,303.497986,309.151001,303.290009,304.135986,304.135986,527556992 2017-10-13,304.079010,348.596008,299.657013,338.756989,338.756989,1304359936 2017-10-14,338.851990,347.975006,334.697998,339.627991,339.627991,516561984 2017-10-15,339.528992,342.717010,320.427002,336.595001,336.595001,635406976 2017-10-16,336.710999,349.345001,332.041992,333.384003,333.384003,692884992 2017-10-17,333.484009,333.484009,311.786987,317.082001,317.082001,509924000 2017-10-18,316.944000,317.235992,290.635986,314.319000,314.319000,606113984 2017-10-19,314.537994,316.713989,305.828003,308.088013,308.088013,349830016 2017-10-20,308.045990,311.437988,303.493988,304.006012,304.006012,396672992 2017-10-21,303.571991,303.929993,291.768005,300.187012,300.187012,408014016 2017-10-22,300.549011,305.502014,292.813995,295.446014,295.446014,327387008 2017-10-23,295.096008,295.747986,277.575012,286.950012,286.950012,482336000 2017-10-24,287.119995,311.958008,282.657990,298.328003,298.328003,684281024 2017-10-25,298.437012,301.848999,290.717987,297.924988,297.924988,325040000 2017-10-26,298.022003,301.066010,295.222992,296.527008,296.527008,270272992 2017-10-27,296.507996,299.256012,294.058990,297.423004,297.423004,257168992 2017-10-28,297.915009,300.356995,293.584991,296.298004,296.298004,264424000 2017-10-29,296.381012,313.755005,296.381012,305.088013,305.088013,551752000 2017-10-30,304.782013,310.496002,304.351990,307.751007,307.751007,331441984 2017-10-31,307.377991,310.548004,305.878998,305.878998,305.878998,369583008 2017-11-01,305.761993,306.401001,290.583008,291.694000,291.694000,553864000 2017-11-02,290.725006,293.907013,281.171997,287.428986,287.428986,904900992 2017-11-03,288.497009,308.312988,287.692993,305.710999,305.710999,646339968 2017-11-04,305.480988,305.480988,295.802002,300.468994,300.468994,416479008 2017-11-05,300.036987,301.371002,295.117004,296.263000,296.263000,337657984 2017-11-06,296.427002,305.415009,293.717010,298.891998,298.891998,579358976 2017-11-07,298.567993,304.842010,290.766998,294.658997,294.658997,540766016 2017-11-08,294.270996,318.701996,293.102997,309.070007,309.070007,967955968 2017-11-09,308.644989,329.451996,307.056000,320.884003,320.884003,893249984 2017-11-10,320.670990,324.717987,294.541992,299.252991,299.252991,885985984 2017-11-11,298.585999,319.453003,298.191986,314.681000,314.681000,842300992 2017-11-12,314.690002,319.153015,298.513000,307.907990,307.907990,1613479936 2017-11-13,307.024994,328.415009,307.024994,316.716003,316.716003,1041889984 2017-11-14,316.763000,340.177002,316.763000,337.631012,337.631012,1069680000 2017-11-15,337.963989,340.911987,329.812988,333.356995,333.356995,722665984 2017-11-16,333.442993,336.158997,323.605988,330.924011,330.924011,797254016 2017-11-17,330.166992,334.963989,327.523010,332.394012,332.394012,621732992 2017-11-18,331.980011,349.615997,327.687012,347.612000,347.612000,649638976 2017-11-19,347.401001,371.290985,344.739990,354.385986,354.385986,1181529984 2017-11-20,354.093994,372.136993,353.289001,366.730011,366.730011,807027008 2017-11-21,367.442993,372.470001,350.692993,360.401001,360.401001,949912000 2017-11-22,360.312012,381.420013,360.147003,380.652008,380.652008,800819008 2017-11-23,381.438995,425.548004,376.088013,410.165985,410.165985,1845680000 2017-11-24,412.501007,480.972992,402.757996,474.911011,474.911011,2292829952 2017-11-25,475.675995,485.191986,461.053009,466.276001,466.276001,1422080000 2017-11-26,465.973999,472.722992,451.605988,471.329987,471.329987,1197779968 2017-11-27,471.531006,493.404999,468.484985,480.355011,480.355011,1396480000 2017-11-28,480.518005,482.480011,466.346985,472.902008,472.902008,1346499968 2017-11-29,473.281006,522.307007,425.071014,427.523010,427.523010,2675940096 2017-11-30,431.214996,465.497009,401.243011,447.114014,447.114014,1903040000 2017-12-01,445.209015,472.609009,428.312012,466.540009,466.540009,1247879936 2017-12-02,466.851013,476.239014,456.653015,463.449005,463.449005,943649984 2017-12-03,463.704987,482.813995,451.851990,465.852997,465.852997,990556992 2017-12-04,466.053986,474.777008,453.312012,470.204010,470.204010,1005550016 2017-12-05,470.294006,473.558014,457.660004,463.281006,463.281006,1216720000 2017-12-06,462.604004,462.708008,420.209991,428.588013,428.588013,1998259968 2017-12-07,426.368988,441.397003,414.411011,434.407990,434.407990,2129570048 2017-12-08,434.989014,466.062012,422.367004,456.031006,456.031006,2336379904 2017-12-09,457.343994,504.147003,456.252991,473.502014,473.502014,2003849984 2017-12-10,472.789001,472.789001,429.514008,441.721008,441.721008,1404179968 2017-12-11,440.358002,516.968994,439.104004,515.135986,515.135986,1771440000 2017-12-12,522.286011,657.317993,504.493988,651.431030,651.431030,5179829760 2017-12-13,644.906006,747.992981,597.797974,702.767029,702.767029,4524539904 2017-12-14,700.593994,753.120972,664.989014,695.815979,695.815979,3821580032 2017-12-15,696.375977,697.132019,621.060974,684.447998,684.447998,2758710016 2017-12-16,686.192017,718.385010,680.786011,696.208984,696.208984,2165690112 2017-12-17,696.237000,735.825012,696.237000,719.974976,719.974976,2147389952 2017-12-18,721.731995,803.927979,689.231018,794.645020,794.645020,3249230080 2017-12-19,793.901001,881.943970,785.341980,826.822998,826.822998,4096549888 2017-12-20,827.515991,845.062012,756.004028,819.085999,819.085999,3969939968 2017-12-21,820.236023,880.543030,792.689026,821.062988,821.062988,3569060096 2017-12-22,822.643005,827.682983,543.762024,674.859985,674.859985,4977710080 2017-12-23,681.315979,763.895020,679.731018,719.387024,719.387024,2480339968 2017-12-24,721.768982,721.768982,614.921997,694.148010,694.148010,2300549888 2017-12-25,698.869995,782.520996,698.869995,765.833984,765.833984,2491760128 2017-12-26,763.369995,786.789978,760.934998,773.835999,773.835999,2201159936 2017-12-27,774.969971,789.252991,738.413025,762.841980,762.841980,2100029952 2017-12-28,762.208008,763.318970,701.187012,737.023010,737.023010,2389149952 2017-12-29,740.388977,770.117004,729.607971,753.591980,753.591980,2648969984 2017-12-30,753.815002,753.815002,685.231018,717.257019,717.257019,3187780096 2017-12-31,712.211975,760.348022,710.119019,756.732971,756.732971,2554269952 2018-01-01,755.757019,782.530029,742.004028,772.640991,772.640991,2595760128 2018-01-02,772.346008,914.830017,772.346008,884.443970,884.443970,5783349760 2018-01-03,886.000000,974.471008,868.450989,962.719971,962.719971,5093159936 2018-01-04,961.713013,1045.079956,946.085999,980.921997,980.921997,6502859776 2018-01-05,975.750000,1075.390015,956.325012,997.719971,997.719971,6683149824 2018-01-06,995.153992,1060.709961,994.622009,1041.680054,1041.680054,4662219776 2018-01-07,1043.010010,1153.170044,1043.010010,1153.170044,1153.170044,5569880064 2018-01-08,1158.260010,1266.930054,1016.049988,1148.530029,1148.530029,8450970112 2018-01-09,1146.000000,1320.979980,1145.489990,1299.739990,1299.739990,7965459968 2018-01-10,1300.339966,1417.380005,1226.599976,1255.819946,1255.819946,9214950400 2018-01-11,1268.089966,1337.300049,1135.170044,1154.930054,1154.930054,7235899904 2018-01-12,1158.290039,1296.040039,1120.089966,1273.199951,1273.199951,5222300160 2018-01-13,1270.469971,1432.880005,1270.469971,1396.420044,1396.420044,5746760192 2018-01-14,1397.479980,1400.560059,1286.209961,1366.770020,1366.770020,4841630208 2018-01-15,1365.209961,1390.589966,1290.599976,1291.920044,1291.920044,4781100032 2018-01-16,1292.630005,1292.630005,875.544983,1053.689941,1053.689941,8405139968 2018-01-17,1061.339966,1090.229980,780.921997,1014.250000,1014.250000,8545160192 2018-01-18,1016.440002,1100.310059,967.758972,1036.280029,1036.280029,5938319872 2018-01-19,1028.819946,1093.219971,1003.710022,1039.099976,1039.099976,4084450048 2018-01-20,1044.949951,1167.109985,1044.949951,1155.150024,1155.150024,3975190016 2018-01-21,1155.680054,1155.680054,1021.500000,1049.579956,1049.579956,3378089984 2018-01-22,1055.349976,1089.099976,930.741028,1003.260010,1003.260010,3810099968 2018-01-23,1004.169983,1023.229980,920.539978,986.229004,986.229004,3556699904 2018-01-24,987.476990,1062.439941,965.807983,1058.780029,1058.780029,3944039936 2018-01-25,1063.219971,1104.660034,1034.739990,1056.030029,1056.030029,4050190080 2018-01-26,1052.699951,1080.599976,996.783997,1055.170044,1055.170044,3617690112 2018-01-27,1055.750000,1121.979980,1042.119995,1107.069946,1107.069946,3002870016 2018-01-28,1111.780029,1257.770020,1111.780029,1246.010010,1246.010010,5372329984 2018-01-29,1246.699951,1256.699951,1169.079956,1182.359985,1182.359985,3715079936 2018-01-30,1184.130005,1184.630005,1058.969971,1071.130005,1071.130005,4107859968 2018-01-31,1071.089966,1128.660034,1034.500000,1118.310059,1118.310059,3757560064 2018-02-01,1119.369995,1161.349976,984.818970,1036.790039,1036.790039,5261680128 2018-02-02,1035.770020,1035.770020,757.979980,915.784973,915.784973,6713290240 2018-02-03,919.210999,991.942993,847.690002,964.018982,964.018982,3243480064 2018-02-04,964.666992,969.031982,805.064026,834.682007,834.682007,2997090048 2018-02-05,834.958008,856.645996,644.598999,697.950989,697.950989,4269530112 2018-02-06,707.737000,796.439026,574.419006,793.122009,793.122009,6518269952 2018-02-07,790.427979,851.200012,723.432983,757.067993,757.067993,3896179968 2018-02-08,755.843018,845.085999,755.843018,817.807007,817.807007,3708189952 2018-02-09,818.479980,884.004028,788.833984,883.864990,883.864990,2495820032 2018-02-10,882.466980,917.400024,825.577026,860.414978,860.414978,2930530048 2018-02-11,859.288025,859.288025,788.221985,814.659973,814.659973,2486650112 2018-02-12,817.507996,875.937012,817.507996,868.706970,868.706970,2243450112 2018-02-13,869.293030,870.708984,828.836975,845.257996,845.257996,2081170048 2018-02-14,844.278992,926.429016,844.278992,923.560974,923.560974,2818370048 2018-02-15,923.728027,951.947998,911.111023,936.976013,936.976013,2900100096 2018-02-16,934.786011,950.005005,917.848022,944.210022,944.210022,2369449984 2018-02-17,944.747986,976.594971,940.754028,974.114990,974.114990,2525720064 2018-02-18,973.348999,982.932983,915.445007,923.921021,923.921021,2567290112 2018-02-19,921.668030,957.776978,921.554016,943.864990,943.864990,2169019904 2018-02-20,943.567017,965.265015,892.953979,895.370972,895.370972,2545260032 2018-02-21,894.135010,912.375000,830.562988,849.971008,849.971008,2531729920 2018-02-22,849.262024,875.926025,802.668030,812.844971,812.844971,2150370048 2018-02-23,811.585022,886.317993,794.791016,864.189026,864.189026,2334820096 2018-02-24,861.593018,879.531006,818.549988,840.515015,840.515015,1926579968 2018-02-25,839.458984,853.145996,822.380981,844.809998,844.809998,1646960000 2018-02-26,845.278015,880.392029,842.318970,869.315002,869.315002,2044480000 2018-02-27,870.364990,896.258972,867.096985,878.265015,878.265015,2053980032 2018-02-28,877.934021,890.107971,855.124023,855.198975,855.198975,1963980032 2018-03-01,856.012024,880.302002,851.919983,872.200012,872.200012,1868519936 2018-03-02,871.763977,876.377991,852.421997,856.853027,856.853027,1894419968 2018-03-03,856.710999,868.453979,855.206970,857.224976,857.224976,1699369984 2018-03-04,856.185974,867.950012,840.280029,866.677979,866.677979,1697939968 2018-03-05,866.846008,869.919983,853.520020,853.684021,853.684021,1898489984 2018-03-06,853.817017,853.817017,809.931030,816.950989,816.950989,1943069952 2018-03-07,816.270996,825.606995,726.546997,752.830994,752.830994,2175419904 2018-03-08,752.570007,773.767029,696.169006,704.596008,704.596008,1891640064 2018-03-09,702.197021,729.156006,648.106995,728.916016,728.916016,2233019904 2018-03-10,730.159973,748.031006,682.695007,686.890015,686.890015,1532960000 2018-03-11,685.312012,735.830994,668.122986,723.338989,723.338989,1562680064 2018-03-12,724.406006,742.513977,683.268005,699.830994,699.830994,1764999936 2018-03-13,698.153015,713.734985,682.349976,690.827026,690.827026,1425959936 2018-03-14,691.218994,702.783997,594.099976,614.291016,614.291016,1810560000 2018-03-15,614.838989,620.616028,579.505005,611.304016,611.304016,1770460032 2018-03-16,611.778015,623.168030,587.862000,601.666016,601.666016,1417350016 2018-03-17,601.677979,609.151001,549.096008,552.778992,552.778992,1267810048 2018-03-18,551.640015,551.640015,460.088013,538.643982,538.643982,2685499904 2018-03-19,546.625977,558.099976,519.122986,556.726013,556.726013,2046790016 2018-03-20,556.721985,567.090027,521.203979,557.174988,557.174988,1833680000 2018-03-21,559.099976,589.606995,550.572021,561.731995,561.731995,1781270016 2018-03-22,562.103027,577.565979,523.088989,539.702026,539.702026,1523459968 2018-03-23,539.864014,540.487000,512.127014,539.619019,539.619019,1596349952 2018-03-24,542.572021,545.382019,526.080017,526.439026,526.439026,1300009984 2018-03-25,522.703003,535.820984,515.658997,524.286987,524.286987,1151170048 2018-03-26,524.286987,526.379028,470.440002,489.950989,489.950989,1638880000 2018-03-27,489.589996,491.459015,449.971008,450.115997,450.115997,1617939968 2018-03-28,450.290985,466.210999,444.860992,446.278992,446.278992,1514179968 2018-03-29,448.075012,450.812988,385.812988,385.967987,385.967987,1970230016 2018-03-30,385.904999,409.928986,368.632996,394.644989,394.644989,1878130048 2018-03-31,395.003998,418.467987,392.953003,396.457001,396.457001,1323920000 2018-04-01,397.253998,400.528015,363.804993,379.606995,379.606995,1256930048 2018-04-02,379.699005,395.170990,377.592987,386.424988,386.424988,1102259968 2018-04-03,387.312012,418.967987,383.532013,416.893005,416.893005,1363399936 2018-04-04,416.484985,417.471985,375.309998,380.542999,380.542999,1287730048 2018-04-05,379.946991,387.716003,369.816010,383.231995,383.231995,1210680064 2018-04-06,382.730988,385.195007,366.911011,370.285004,370.285004,967105984 2018-04-07,370.380005,393.058990,369.936005,385.313995,385.313995,951475008 2018-04-08,385.743011,402.589996,385.601990,400.507996,400.507996,948488000 2018-04-09,400.856995,429.251007,390.609985,398.526001,398.526001,1478390016 2018-04-10,399.411011,415.888000,393.878998,414.243011,414.243011,1196000000 2018-04-11,415.023987,430.540009,412.471008,430.540009,430.540009,1439040000 2018-04-12,430.161011,493.058014,417.412994,492.941010,492.941010,2519360000 2018-04-13,493.160004,526.469971,482.658997,492.734985,492.734985,2419249920 2018-04-14,492.579987,512.023987,488.278992,501.477997,501.477997,1519079936 2018-04-15,502.880005,531.702026,502.880005,531.702026,531.702026,1726089984 2018-04-16,532.073975,534.197021,500.250000,511.147003,511.147003,1758979968 2018-04-17,511.144989,518.031006,502.563995,502.894012,502.894012,1760359936 2018-04-18,503.308990,525.091980,503.045013,524.789001,524.789001,1762940032 2018-04-19,524.038025,567.888977,523.262024,567.888977,567.888977,2256869888 2018-04-20,567.989014,618.715027,560.283020,615.718018,615.718018,2849469952 2018-04-21,616.004028,621.888000,578.549988,605.395020,605.395020,2612460032 2018-04-22,606.119019,640.767029,593.869019,621.859985,621.859985,2426269952 2018-04-23,621.198975,646.700012,621.034973,642.547974,642.547974,2386830080 2018-04-24,643.398010,708.875000,643.398010,708.158020,708.158020,3581860096 2018-04-25,707.062012,707.062012,600.211975,615.416016,615.416016,4216140032 2018-04-26,618.078979,663.181030,604.007019,662.809021,662.809021,2984009984 2018-04-27,662.109009,684.867981,647.031982,647.031982,647.031982,2598129920 2018-04-28,644.645996,691.442017,644.645996,683.677979,683.677979,2496659968 2018-04-29,683.911987,697.755981,670.513000,688.880981,688.880981,2740559872 2018-04-30,689.760986,694.439026,666.117004,669.924011,669.924011,2853100032 2018-05-01,670.463013,674.403015,637.539978,673.612976,673.612976,2678960128 2018-05-02,674.075012,688.841980,667.419983,687.148987,687.148987,2822269952 2018-05-03,686.591003,784.341003,686.591003,779.543030,779.543030,4210939904 2018-05-04,776.775024,803.745972,762.632019,785.624023,785.624023,3533410048 2018-05-05,784.583008,827.455017,784.237000,816.119995,816.119995,3035040000 2018-05-06,816.088013,835.057007,764.882996,792.310974,792.310974,3105570048 2018-05-07,793.338989,795.757996,710.177979,753.724976,753.724976,4316120064 2018-05-08,755.008972,774.249023,728.129028,752.856995,752.856995,2920489984 2018-05-09,752.901978,759.528992,718.471985,752.275024,752.275024,2877870080 2018-05-10,752.578979,766.747986,726.664001,727.276978,727.276978,2748950016 2018-05-11,727.013000,736.976990,669.825012,679.585999,679.585999,3290080000 2018-05-12,679.877014,691.411011,644.065979,686.047974,686.047974,2668480000 2018-05-13,687.174988,741.312012,675.318970,733.495972,733.495972,2362500096 2018-05-14,732.732971,742.169983,695.791992,730.549011,730.549011,3005110016 2018-05-15,731.143005,739.052002,700.994995,708.870972,708.870972,2523069952 2018-05-16,708.086975,710.200012,682.541016,707.049988,707.049988,2476130048 2018-05-17,708.718018,718.833008,668.833984,672.656982,672.656982,2350619904 2018-05-18,672.101990,695.031006,663.809021,694.367004,694.367004,2305740032 2018-05-19,695.072021,715.578003,686.791016,696.530029,696.530029,2021549952 2018-05-20,697.922974,723.752991,692.669006,715.369019,715.369019,2156910080 2018-05-21,717.192993,719.278015,692.494019,699.221985,699.221985,2005170048 2018-05-22,700.177979,700.976013,644.026001,647.741028,647.741028,2230469888 2018-05-23,646.669983,651.635986,572.952026,583.585022,583.585022,2995429888 2018-05-24,584.536011,610.817993,557.205994,601.755005,601.755005,2791099904 2018-05-25,602.140015,617.185974,575.624023,586.734009,586.734009,2110919936 2018-05-26,587.426025,606.174988,583.512024,587.280029,587.280029,1694300032 2018-05-27,588.520020,590.328003,562.866028,572.668030,572.668030,1788790016 2018-05-28,573.044983,576.049011,512.552002,516.036011,516.036011,2356900096 2018-05-29,516.148010,572.263977,516.148010,565.388000,565.388000,2330820096 2018-05-30,566.830017,583.135986,545.431030,559.590027,559.590027,2053970048 2018-05-31,558.497009,585.538025,557.065979,577.645020,577.645020,1985040000 2018-06-01,578.671997,589.093018,567.664978,580.043030,580.043030,1945890048 2018-06-02,580.429016,597.077026,577.322021,591.807983,591.807983,1880390016 2018-06-03,591.258972,624.513000,591.258972,618.328979,618.328979,1832550016 2018-06-04,619.437012,623.429016,583.747009,592.984985,592.984985,1903430016 2018-06-05,593.406006,611.330017,580.981995,609.302979,609.302979,1844269952 2018-06-06,610.262024,611.643005,596.395996,607.124023,607.124023,1756530048 2018-06-07,607.687012,616.143982,601.692993,605.187012,605.187012,1880140032 2018-06-08,605.442993,608.810974,595.593018,601.077026,601.077026,1637779968 2018-06-09,600.905029,608.583008,597.562012,597.562012,597.562012,1519309952 2018-06-10,594.344971,594.344971,511.889008,526.479004,526.479004,2234880000 2018-06-11,524.856995,536.857971,515.268982,533.283997,533.283997,1982119936 2018-06-12,532.710022,538.955017,491.234985,496.842987,496.842987,1932760064 2018-06-13,498.018005,501.904999,459.003998,477.493988,477.493988,2080130048 2018-06-14,478.381012,523.544983,467.466003,519.742004,519.742004,2458650112 2018-06-15,520.479980,521.304993,487.468994,491.003998,491.003998,1808269952 2018-06-16,490.414001,503.222992,488.851013,499.641998,499.641998,1314109952 2018-06-17,499.459991,507.640991,498.648010,500.447998,500.447998,1264870016 2018-06-18,499.382996,521.796021,494.066010,518.890991,518.890991,1513869952 2018-06-19,519.023010,542.353027,516.312012,537.956970,537.956970,1726569984 2018-06-20,538.505981,541.015015,519.369019,536.268005,536.268005,1596290048 2018-06-21,536.447021,543.716980,524.258972,527.367004,527.367004,1462070016 2018-06-22,527.193970,527.193970,456.877014,465.816986,465.816986,2226030080 2018-06-23,466.273987,479.128998,462.393005,474.519989,474.519989,1651379968 2018-06-24,474.768005,475.359009,426.468994,457.671997,457.671997,2490579968 2018-06-25,455.936005,470.343994,448.895996,460.309998,460.309998,4007950080 2018-06-26,460.733002,461.213013,432.772003,432.772003,432.772003,1356560000 2018-06-27,432.243988,444.243011,424.838989,442.364990,442.364990,1368940032 2018-06-28,442.290009,443.618011,419.683014,422.364990,422.364990,1360790016 2018-06-29,422.587006,441.792999,407.946991,436.009003,436.009003,1564499968 2018-06-30,436.209015,458.796997,436.209015,455.179993,455.179993,1475939968 2018-07-01,455.242004,457.139008,446.385010,453.917999,453.917999,1511730048 2018-07-02,453.824005,479.130005,447.110992,475.346985,475.346985,1625789952 2018-07-03,475.385986,483.854004,462.582001,464.195007,464.195007,1683939968 2018-07-04,464.151001,481.436005,455.184998,467.317993,467.317993,1549769984 2018-07-05,467.286987,483.225006,464.628998,474.411987,474.411987,1828610048 2018-07-06,474.356995,479.652008,457.614990,474.011993,474.011993,1627609984 2018-07-07,474.057007,491.660004,466.835999,491.660004,491.660004,1358360064 2018-07-08,492.067993,503.199005,488.416992,489.118988,489.118988,1344560000 2018-07-09,488.877991,490.851990,475.174988,476.682007,476.682007,1533799936 2018-07-10,476.161987,478.317993,433.959991,434.424011,434.424011,1789069952 2018-07-11,434.515015,447.316010,429.506989,446.518005,446.518005,1422470016 2018-07-12,446.502014,446.502014,422.809998,430.074005,430.074005,1495440000 2018-07-13,430.740997,442.363007,430.740997,434.027008,434.027008,1489670016 2018-07-14,434.510986,439.433990,431.473999,436.085999,436.085999,1235820032 2018-07-15,435.882996,454.001007,433.920990,449.850006,449.850006,1350160000 2018-07-16,450.424988,480.657990,446.798004,480.657990,480.657990,1858680064 2018-07-17,480.076996,508.779999,468.915009,501.002014,501.002014,2288100096 2018-07-18,500.838013,513.432983,474.359009,480.513000,480.513000,2371559936 2018-07-19,480.627991,483.239990,465.141998,469.618988,469.618988,2068739968 2018-07-20,469.307007,469.307007,443.692993,450.697998,450.697998,1821350016 2018-07-21,450.678986,468.083008,445.776001,462.436005,462.436005,1504310016 2018-07-22,462.437988,470.898010,458.118988,459.657013,459.657013,1338589952 2018-07-23,459.438995,469.765991,449.727997,450.852997,450.852997,1596999936 2018-07-24,451.135986,481.141998,450.565002,479.372986,479.372986,2287520000 2018-07-25,479.906006,482.868011,466.473999,472.493011,472.493011,1930780032 2018-07-26,472.330994,483.696014,461.424011,464.036987,464.036987,1621560064 2018-07-27,464.009003,473.221985,458.290985,469.665985,469.665985,1734259968 2018-07-28,469.678009,471.593994,462.989014,466.898010,466.898010,1531890048 2018-07-29,466.915009,470.355988,462.712006,466.665009,466.665009,1631910016 2018-07-30,466.826996,467.951996,448.640991,457.080994,457.080994,2141590000 2018-07-31,457.244995,457.244995,430.444000,433.867004,433.867004,1820680000 2018-08-01,433.868988,435.457001,410.463989,420.747009,420.747009,1888060000 2018-08-02,420.806000,425.033997,410.308990,412.621002,412.621002,1569300000 2018-08-03,412.566986,420.549011,399.910004,418.261993,418.261993,1722340000 2018-08-04,418.237000,420.186005,403.776001,407.252014,407.252014,1466540000 2018-08-05,407.346008,413.716003,402.432007,410.515991,410.515991,1396820000 2018-08-06,410.566986,414.540009,403.315002,406.657990,406.657990,1384880000 2018-08-07,406.800995,411.404999,376.076996,380.214996,380.214996,1828350000 2018-08-08,379.891998,380.670990,353.734009,356.613007,356.613007,2016080000 2018-08-09,356.971008,370.946014,353.614014,365.588013,365.588013,1616610000 2018-08-10,365.776001,367.045013,329.585999,334.175995,334.175995,1699400000 2018-08-11,334.264008,334.264008,308.488007,322.112000,322.112000,1790370000 2018-08-12,320.822998,328.589996,318.601990,319.570007,319.570007,1625420000 2018-08-13,320.209991,323.550995,284.933990,286.494995,286.494995,1751190000 2018-08-14,286.364990,286.364990,254.649994,278.932007,278.932007,2137850000 2018-08-15,280.386993,303.589996,280.118988,282.364014,282.364014,1878150000 2018-08-16,282.740997,298.476013,280.928009,288.045990,288.045990,1552970000 2018-08-17,287.683014,316.170013,287.346008,315.729004,315.729004,1995460000 2018-08-18,316.790985,320.446014,286.550995,295.812012,295.812012,1764020000 2018-08-19,295.670013,307.097992,291.332001,300.834015,300.834015,1447910000 2018-08-20,301.381012,304.372009,273.510986,274.315002,274.315002,1413790000 2018-08-21,273.330994,285.970001,273.330994,281.944000,281.944000,1164120000 2018-08-22,281.967987,297.485992,264.997986,271.341003,271.341003,1507660000 2018-08-23,271.747986,279.545990,271.089996,277.104004,277.104004,1271160000 2018-08-24,278.110992,283.302002,273.859985,282.967010,282.967010,1450170000 2018-08-25,283.281006,283.515015,278.471008,279.645996,279.645996,1208360000 2018-08-26,279.524994,279.524994,272.444000,275.196991,275.196991,1206650000 2018-08-27,275.350006,285.602997,273.649994,285.602997,285.602997,1406790000 2018-08-28,286.648987,297.399994,283.571991,296.498993,296.498993,1513350000 2018-08-29,296.162994,297.071014,287.286987,289.312012,289.312012,1474460000 2018-08-30,289.752991,291.243011,275.210999,284.105011,284.105011,1513100000 2018-08-31,284.119995,284.550995,278.513000,283.003998,283.003998,1411910000 2018-09-01,283.496002,301.144012,283.496002,295.341003,295.341003,1546630000 2018-09-02,295.453003,298.686005,290.925995,294.371002,294.371002,1321050000 2018-09-03,295.181000,295.591003,287.432007,289.259003,289.259003,1394490000 2018-09-04,289.296997,291.579987,284.255005,285.722992,285.722992,1554870000 2018-09-05,286.045013,288.162994,232.330994,232.330994,232.330994,2390390000 2018-09-06,231.647995,231.755005,218.123001,230.214996,230.214996,2097310000 2018-09-07,229.535004,233.895996,217.074997,217.203003,217.203003,1678260000 2018-09-08,217.912003,220.367004,193.259003,197.951004,197.951004,1517200000 2018-09-09,198.384995,207.666000,188.306000,196.923996,196.923996,1585980000 2018-09-10,197.850998,201.882996,189.584000,197.078995,197.078995,1502960000 2018-09-11,198.177002,198.505997,180.595993,185.065994,185.065994,1568900000 2018-09-12,185.423004,185.587006,170.257004,183.330994,183.330994,1874850000 2018-09-13,183.679001,214.001999,183.679001,211.354004,211.354004,2330720000 2018-09-14,212.669006,222.794006,204.871002,211.748993,211.748993,2232190000 2018-09-15,209.813995,226.604004,209.606003,223.074005,223.074005,1670490000 2018-09-16,222.802994,222.802994,211.117996,220.589005,220.589005,1502260000 2018-09-17,221.582001,224.261002,195.307999,197.875000,197.875000,2019910000 2018-09-18,197.095001,213.356995,195.934006,209.975006,209.975006,1800640000 2018-09-19,209.472000,213.871002,201.656006,209.968994,209.968994,1733330000 2018-09-20,210.287994,224.817993,207.789001,224.591003,224.591003,1782070000 2018-09-21,225.251007,248.388000,221.567001,246.584000,246.584000,2836200000 2018-09-22,247.337006,251.195999,233.809998,240.479996,240.479996,1921820000 2018-09-23,240.992004,247.464005,237.856995,244.330002,244.330002,1693470000 2018-09-24,244.843994,245.108002,227.490005,228.729996,228.729996,1748740000 2018-09-25,228.326996,228.326996,206.490005,218.505005,218.505005,2120360000 2018-09-26,218.647003,221.436996,209.113007,215.847000,215.847000,1756100000 2018-09-27,215.440002,230.606995,212.654007,228.494003,228.494003,2030320000 2018-09-28,229.041000,231.748001,218.669006,222.401993,222.401993,2018120000 2018-09-29,221.705002,234.014008,216.078003,231.634995,231.634995,2208720000 2018-09-30,231.328995,236.985992,228.445007,232.848007,232.848007,1765560000 2018-10-01,233.220001,234.145004,226.945007,230.768005,230.768005,1597500000 2018-10-02,231.100006,231.167007,225.837997,227.181000,227.181000,1542080000 2018-10-03,226.406998,226.457993,213.970993,220.488998,220.488998,1683930000 2018-10-04,220.445999,226.147995,220.089996,222.218002,222.218002,1479500000 2018-10-05,222.266998,228.319000,220.957001,227.600998,227.600998,1547330000 2018-10-06,227.552002,227.925995,224.246002,225.119995,225.119995,1505070000 2018-10-07,225.434998,226.369995,222.996002,226.119003,226.119003,1470480000 2018-10-08,226.509003,230.764999,224.557007,229.255005,229.255005,1470740000 2018-10-09,229.710007,230.160995,226.401001,227.981995,227.981995,1405130000 2018-10-10,227.615005,227.707001,224.494995,225.768997,225.768997,1384040000 2018-10-11,225.610001,225.610001,189.283005,189.498993,189.498993,2167620000 2018-10-12,188.707001,199.401001,188.707001,196.727005,196.727005,1487900000 2018-10-13,196.363998,201.279007,196.363998,199.841003,199.841003,1167610000 2018-10-14,199.690994,201.826996,195.242996,195.714996,195.714996,1169260000 2018-10-15,195.270004,222.117996,194.158997,209.703995,209.703995,2865830000 2018-10-16,209.628006,212.173004,207.983994,210.119995,210.119995,1532280000 2018-10-17,210.216995,211.125000,205.927994,207.082993,207.082993,1444130000 2018-10-18,207.404007,208.470001,201.742996,203.352005,203.352005,1365860000 2018-10-19,203.257004,204.662994,201.843994,203.727005,203.727005,1264480000 2018-10-20,203.514999,206.222000,203.085007,205.429993,205.429993,1238780000 2018-10-21,205.389999,208.154999,204.621002,205.141998,205.141998,1190300000 2018-10-22,205.173996,206.932007,203.376999,204.044006,204.044006,1328980000 2018-10-23,204.016006,205.151001,201.910995,204.335999,204.335999,1237490000 2018-10-24,204.126999,205.580994,203.354004,203.852005,203.852005,1102220000 2018-10-25,203.867996,204.132004,201.822998,202.718994,202.718994,1102900000 2018-10-26,202.335999,204.779999,201.550995,203.328995,203.328995,1161310000 2018-10-27,203.356003,206.082001,203.126007,204.210007,204.210007,1084810000 2018-10-28,204.509995,205.919006,203.522995,205.365997,205.365997,1139140000 2018-10-29,205.173996,205.597000,195.733994,197.246994,197.246994,1517230000 2018-10-30,197.203003,198.121994,196.350998,197.556000,197.556000,1363500000 2018-10-31,197.649002,198.337997,196.531006,197.380997,197.380997,1442380000 2018-11-01,197.537003,203.753998,197.328003,198.871994,198.871994,1336700000 2018-11-02,198.981995,201.268997,198.755005,200.634995,200.634995,1451870000 2018-11-03,200.740005,200.740005,199.524994,200.186005,200.186005,1307150000 2018-11-04,200.158005,211.272003,198.985992,207.485992,207.485992,1749300000 2018-11-05,207.100006,210.819000,206.572998,209.091003,209.091003,1613510000 2018-11-06,209.473999,218.451996,207.893997,218.451996,218.451996,1856940000 2018-11-07,218.899002,221.651993,216.796005,217.182999,217.182999,1927830000 2018-11-08,217.326996,218.337997,212.199005,212.231003,212.231003,1769080000 2018-11-09,211.987000,213.315994,209.514999,210.074005,210.074005,1554750000 2018-11-10,209.975006,213.856995,209.804993,212.533005,212.533005,1377760000 2018-11-11,212.479004,212.998993,208.867996,211.339996,211.339996,1501600000 2018-11-12,211.513000,212.623001,208.923996,210.417999,210.417999,1452380000 2018-11-13,210.149002,210.514999,206.134995,206.826004,206.826004,1610260000 2018-11-14,206.533997,207.044998,174.084000,181.397003,181.397003,2595330000 2018-11-15,181.899002,184.251007,170.188995,180.806000,180.806000,2638410000 2018-11-16,180.865005,181.350006,173.126007,175.177002,175.177002,2015330000 2018-11-17,175.360001,175.850998,172.869003,174.001007,174.001007,1832800000 2018-11-18,174.175003,179.151993,174.175003,177.067001,177.067001,1810920000 2018-11-19,177.179001,177.179001,147.850998,149.175003,149.175003,2745160000 2018-11-20,148.811005,151.253006,126.360001,130.339005,130.339005,3134410000 2018-11-21,131.141998,138.889999,125.758003,136.701004,136.701004,2685930000 2018-11-22,136.811005,137.740005,126.706001,126.706001,126.706001,1792150000 2018-11-23,126.418999,127.028000,119.558998,123.295998,123.295998,1998010000 2018-11-24,123.304001,126.788002,110.824997,113.494003,113.494003,1800960000 2018-11-25,113.125999,118.880997,101.769997,116.449997,116.449997,2466750000 2018-11-26,116.343002,118.200996,104.892998,108.334999,108.334999,2139490000 2018-11-27,107.913002,111.842003,102.452003,110.010002,110.010002,2320010000 2018-11-28,110.197998,126.047997,110.197998,122.438004,122.438004,2673470000 2018-11-29,122.721550,123.229721,115.297691,117.542648,117.542648,2196099151 2018-11-30,117.728096,119.423767,111.744965,113.171417,113.171417,2020748396 2018-12-01,113.397758,120.841454,111.619125,118.635559,118.635559,2131475768 2018-12-02,118.268150,120.562050,116.092041,116.388901,116.388901,1856199149 2018-12-03,116.378761,116.619064,107.415657,108.925018,108.925018,1772756193 2018-12-04,108.803162,113.142914,107.402718,110.214188,110.214188,1748116495 2018-12-05,110.335518,110.598610,102.475555,102.475555,102.475555,1990157607 2018-12-06,102.450592,104.103493,91.761055,91.761055,91.761055,2310716932 2018-12-07,91.649834,96.089844,83.469719,93.294563,93.294563,2554304530 2018-12-08,93.410080,97.059883,86.825668,92.159637,92.159637,1855759401 2018-12-09,92.035431,98.900032,91.031281,95.142059,95.142059,1875567180 2018-12-10,94.992172,96.257301,90.654251,91.685654,91.685654,1756437577 2018-12-11,91.578934,92.782326,87.688408,88.945305,88.945305,1707497898 2018-12-12,88.610703,92.240555,88.263557,90.593300,90.593300,1533050103 2018-12-13,90.655228,91.111603,85.518311,86.539314,86.539314,1754475622 2018-12-14,86.630356,87.144943,83.226479,84.308296,84.308296,1651491877 2018-12-15,84.279694,85.342743,82.829887,84.440811,84.440811,1496176898 2018-12-16,84.469406,87.568123,84.469406,85.262100,85.262100,1565817037 2018-12-17,85.382111,96.805054,85.382111,95.133827,95.133827,2101453024 2018-12-18,95.108040,101.320236,92.968521,101.112457,101.112457,2277514076 2018-12-19,101.683846,108.549057,100.691460,101.268578,101.268578,2456482115 2018-12-20,101.090439,117.170128,100.639961,116.216873,116.216873,3063842618 2018-12-21,115.835403,119.094162,107.584793,109.496231,109.496231,2632539990 2018-12-22,109.455940,116.759499,107.503166,116.759499,116.759499,2338772939 2018-12-23,117.273895,133.075302,117.273895,130.765259,130.765259,3579715061 2018-12-24,130.641663,157.668701,130.641663,140.238007,140.238007,4370343387 2018-12-25,140.997589,140.997589,125.113289,129.844345,129.844345,3298280609 2018-12-26,129.888824,136.677246,126.292908,131.865631,131.865631,2720469126 2018-12-27,131.923584,132.677063,115.650101,116.575912,116.575912,2612804378 2018-12-28,116.898201,137.647018,115.693130,137.647018,137.647018,3130201009 2018-12-29,138.468781,147.034332,134.570175,138.018341,138.018341,3169029972 2018-12-30,137.627457,140.689087,133.982330,139.859451,139.859451,2660086834 2018-12-31,140.031067,140.181152,132.519394,133.368256,133.368256,2358360234 2019-01-01,133.418152,141.397507,132.650711,140.819412,140.819412,2258709868 2019-01-02,141.519516,156.929138,140.650955,155.047684,155.047684,3328240369 2019-01-03,155.196045,155.863052,147.198364,149.135010,149.135010,2676164880 2019-01-04,148.912888,156.878983,147.907104,154.581940,154.581940,3126192535 2019-01-05,154.337418,160.824890,154.337418,155.638596,155.638596,3338211928 2019-01-06,155.804230,159.371445,152.085922,157.746201,157.746201,3231294371 2019-01-07,157.809494,158.450424,151.150726,151.699219,151.699219,2712108388 2019-01-08,151.967545,153.625778,148.669540,150.359634,150.359634,2459808140 2019-01-09,150.554688,153.622253,150.288376,150.803116,150.803116,2369241197 2019-01-10,150.843506,152.148270,126.529373,128.625183,128.625183,3397734456 2019-01-11,127.813965,130.165939,125.244942,127.548325,127.548325,2667585234 2019-01-12,127.528084,128.666122,125.446754,125.966530,125.966530,2212109224 2019-01-13,125.907227,126.267876,116.085968,116.897804,116.897804,2268263944 2019-01-14,116.979095,130.856735,116.967560,129.068726,129.068726,2798085735 2019-01-15,129.172684,130.743561,120.311523,122.032715,122.032715,2735449164 2019-01-16,121.809242,127.118248,121.441414,123.547066,123.547066,2746469340 2019-01-17,123.573540,124.270721,120.817032,123.741920,123.741920,2594091285 2019-01-18,123.654655,123.841690,120.241898,121.010262,121.010262,2305389800 2019-01-19,121.614426,125.904228,121.161034,124.519020,124.519020,3048261797 2019-01-20,124.632401,125.070389,118.702324,119.474831,119.474831,2964108269 2019-01-21,119.636459,119.715439,116.157440,117.157852,117.157852,2421720343 2019-01-22,117.110756,119.664345,114.676682,118.747551,118.747551,2552507405 2019-01-23,118.713814,119.422798,116.376648,117.452606,117.452606,2556952198 2019-01-24,117.462784,118.032104,116.006798,117.362885,117.362885,2520843420 2019-01-25,117.594955,117.802994,115.830154,116.378342,116.378342,2606881898 2019-01-26,116.373528,118.084114,115.980576,116.488739,116.488739,2412181169 2019-01-27,116.510315,116.685410,113.405289,113.405289,113.405289,2775888287 2019-01-28,113.285233,113.688232,103.336464,106.589973,106.589973,3366895505 2019-01-29,106.721954,107.165787,103.999229,105.598213,105.598213,2900418606 2019-01-30,105.407204,109.452980,104.843796,108.907539,108.907539,2874370355 2019-01-31,108.900772,110.458359,106.525352,107.061012,107.061012,2828796031 2019-02-01,107.147682,108.638710,105.046501,107.609787,107.609787,2541271519 2019-02-02,107.466415,110.653877,106.764015,110.430260,110.430260,2385157838 2019-02-03,110.490318,110.827354,106.563988,107.492668,107.492668,2519334757 2019-02-04,107.625824,108.701035,107.067421,107.821602,107.821602,2491888675 2019-02-05,107.628166,108.134789,106.909897,107.443520,107.443520,2515863999 2019-02-06,107.569305,107.569305,102.934563,104.919289,104.919289,2593048199 2019-02-07,104.835777,106.058876,104.409134,104.535301,104.535301,2326764622 2019-02-08,104.645050,119.805817,104.194435,119.267746,119.267746,3656841347 2019-02-09,119.214111,120.689735,118.000404,119.430885,119.430885,2884650400 2019-02-10,119.408966,124.853622,117.105774,124.806488,124.806488,3148766590 2019-02-11,124.871536,124.871536,120.311752,121.298393,121.298393,3222473887 2019-02-12,121.178574,123.468300,119.600021,122.572289,122.572289,3149576429 2019-02-13,122.544289,125.550697,121.612495,122.553604,122.553604,3386585799 2019-02-14,122.416985,124.451988,121.334892,121.390205,121.390205,3331701628 2019-02-15,121.453697,123.660126,121.371918,122.100388,122.100388,3021741615 2019-02-16,122.396454,124.134811,122.295303,123.260216,123.260216,2905833287 2019-02-17,123.182083,134.460098,123.091614,133.598877,133.598877,4236081130 2019-02-18,133.032547,147.686584,133.001938,146.098373,146.098373,5387525773 2019-02-19,146.398819,149.929977,145.128464,145.346191,145.346191,5310842625 2019-02-20,145.172729,149.554337,142.502121,149.554337,149.554337,4500094965 2019-02-21,149.352325,149.352325,144.563812,146.130844,146.130844,3995766856 2019-02-22,146.073257,149.268616,145.206543,149.092453,149.092453,3731099284 2019-02-23,148.676620,159.125870,147.331055,158.795425,158.795425,4519468458 2019-02-24,158.902405,165.549622,135.852661,135.852661,135.852661,5957715043 2019-02-25,135.499725,142.525574,135.483841,139.822861,139.822861,4914392068 2019-02-26,139.646088,139.976440,136.579605,138.089676,138.089676,3791292839 2019-02-27,138.029572,141.336227,131.602921,136.125961,136.125961,4469776860 2019-02-28,136.283081,138.847137,135.657593,136.746246,136.746246,4535438953 2019-03-01,136.836243,138.995270,136.434784,136.443619,136.443619,3756124824 2019-03-02,136.350082,137.184799,132.436386,134.206955,134.206955,3747176425 2019-03-03,134.786118,135.849289,131.328857,132.249420,132.249420,3454374053 2019-03-04,132.157883,132.729141,125.402702,127.774124,127.774124,4008171341 2019-03-05,127.792953,138.229980,126.735298,137.822388,137.822388,4764849990 2019-03-06,137.958740,139.968826,136.145920,138.789352,138.789352,4589054219 2019-03-07,138.942383,140.857880,137.273132,138.034500,138.034500,4339206292 2019-03-08,138.311356,139.499100,133.557693,135.127075,135.127075,4678816794 2019-03-09,134.887558,139.119415,134.677124,137.965332,137.965332,5011918715 2019-03-10,138.180496,138.270309,135.685684,136.758682,136.758682,4578438499 2019-03-11,136.849533,137.353409,133.102798,133.834030,133.834030,4689807419 2019-03-12,134.012848,135.273468,130.944153,134.442886,134.442886,4709988000 2019-03-13,134.611771,134.611771,132.719727,133.263077,133.263077,4265162099 2019-03-14,133.203903,135.180847,132.750076,133.711594,133.711594,4476532147 2019-03-15,133.567154,138.395142,133.567154,137.691788,137.691788,4506861856 2019-03-16,137.911957,144.558441,137.911957,142.398178,142.398178,4839003569 2019-03-17,142.238297,142.371918,139.323517,140.000549,140.000549,3827157729 2019-03-18,140.104858,142.267212,138.841553,139.374603,139.374603,4551739879 2019-03-19,139.254013,140.989059,139.143021,140.519196,140.519196,4251488129 2019-03-20,140.484711,140.945572,138.307037,140.686356,140.686356,4664134462 2019-03-21,140.478485,141.003235,135.855423,136.636063,136.636063,5087247796 2019-03-22,136.562256,138.794296,136.228607,137.181442,137.181442,4490899266 2019-03-23,137.039871,139.385391,136.912018,138.239868,138.239868,4436568613 2019-03-24,138.315353,138.375610,136.313751,136.986923,136.986923,4266845458 2019-03-25,137.081360,137.695343,133.490158,135.031021,135.031021,4480516753 2019-03-26,135.054321,135.460358,133.757339,135.460358,135.460358,4499271679 2019-03-27,135.454361,141.075470,135.341660,140.988159,140.988159,5228240093 2019-03-28,141.005844,141.007935,138.425171,139.416473,139.416473,4163212475 2019-03-29,139.343201,142.549240,138.045105,142.497421,142.497421,5125602702 2019-03-30,142.359146,149.613235,141.031738,142.092682,142.092682,5144662127 2019-03-31,142.139221,142.189209,140.697372,141.514099,141.514099,4249050197 2019-04-01,141.465485,142.733994,140.737564,141.830322,141.830322,4611999536 2019-04-02,141.839523,165.226822,141.636459,163.961746,163.961746,9826645698 2019-04-03,164.008636,178.322052,157.322144,161.458801,161.458801,10622456246 2019-04-04,161.431763,164.929214,155.241104,158.052536,158.052536,7953123529 2019-04-05,158.020004,167.220383,157.443954,165.514847,165.514847,7531316908 2019-04-06,165.511246,172.515778,161.799469,165.947205,165.947205,7167016221 2019-04-07,165.977249,175.213165,164.932098,174.531647,174.531647,7596176020 2019-04-08,174.449677,184.377853,174.160995,180.258820,180.258820,9304964610 2019-04-09,180.222122,180.254227,175.091751,176.114578,176.114578,7632529578 2019-04-10,176.067841,183.134277,175.230377,177.337479,177.337479,7856924879 2019-04-11,177.342758,177.487488,162.320618,165.497025,165.497025,7859383417 2019-04-12,165.335205,166.127518,161.029739,164.736328,164.736328,6237185309 2019-04-13,164.622849,166.362427,163.011856,164.513351,164.513351,4959301561 2019-04-14,164.476089,168.591034,162.781479,167.838516,167.838516,4846298303 2019-04-15,167.897476,168.818451,159.555740,161.574173,161.574173,5672311824 2019-04-16,161.526550,167.666321,160.888748,167.623444,167.623444,5180105341 2019-04-17,167.553696,168.938583,165.501892,166.950760,166.950760,5596102715 2019-04-18,166.913208,175.365326,166.672119,173.814026,173.814026,6971581464 2019-04-19,173.787888,173.978897,170.620209,173.708435,173.708435,6541053061 2019-04-20,173.718811,176.705811,171.788834,173.751266,173.751266,6142567812 2019-04-21,173.715408,174.420776,167.428589,170.046524,170.046524,6005571688 2019-04-22,170.017487,173.069122,168.729553,171.874664,171.874664,6094878077 2019-04-23,172.007217,176.850784,170.896759,171.447800,171.447800,7097827092 2019-04-24,171.349533,171.573212,161.976685,165.826096,165.826096,7351304156 2019-04-25,165.914734,166.513412,153.847000,154.459396,154.459396,6820332362 2019-04-26,154.579437,158.029007,152.085678,156.347092,156.347092,7505283355 2019-04-27,156.270859,160.589417,155.621887,158.434937,158.434937,5863109118 2019-04-28,158.499771,159.565384,157.125519,157.295074,157.295074,5379894433 2019-04-29,157.291061,158.333923,153.186523,155.201996,155.201996,6053776253 2019-04-30,155.172775,162.432251,155.172775,162.166031,162.166031,6275803460 2019-05-01,162.186554,164.060684,159.660217,160.818344,160.818344,5789172433 2019-05-02,160.853577,162.937012,160.060699,162.122787,162.122787,6044171062 2019-05-03,162.075165,170.068741,161.080627,167.952408,167.952408,7299410672 2019-05-04,167.887222,170.645935,161.791428,164.026581,164.026581,6658100049 2019-05-05,164.015259,165.399979,159.700653,163.450699,163.450699,5938415562 2019-05-06,163.337982,175.760101,159.988190,172.653214,172.653214,7540096853 2019-05-07,172.427277,180.394409,169.694717,169.798660,169.798660,8411140170 2019-05-08,169.904205,172.183548,166.409241,170.948166,170.948166,6416569598 2019-05-09,170.951874,172.880402,167.247879,170.289307,170.289307,6546914198 2019-05-10,170.312973,175.885269,168.991425,173.142746,173.142746,8036919053 2019-05-11,173.139313,203.466644,173.139313,194.304337,194.304337,12578331654 2019-05-12,194.163025,201.881485,183.653931,187.325317,187.325317,10326050090 2019-05-13,187.417923,205.098267,185.305908,196.846283,196.846283,10367149039 2019-05-14,196.738281,217.874649,196.054810,217.148575,217.148575,12751049755 2019-05-15,217.010117,247.446594,216.822113,247.153061,247.153061,13460006534 2019-05-16,246.941956,275.394440,245.795288,264.010010,264.010010,18661465873 2019-05-17,263.848358,266.979614,227.767426,243.764587,243.764587,16037551694 2019-05-18,243.911301,246.362762,233.099854,234.595230,234.595230,10933142646 2019-05-19,234.449463,263.740997,233.758667,261.292206,261.292206,12049250894 2019-05-20,261.267487,261.551270,241.803650,251.864410,251.864410,10834541285 2019-05-21,251.647842,262.107544,248.196304,255.215881,255.215881,11545049593 2019-05-22,254.995316,258.801849,242.730484,244.698914,244.698914,9818257463 2019-05-23,244.665115,247.616638,233.793091,245.965668,245.965668,10671663487 2019-05-24,245.987091,255.259338,243.240097,249.484985,249.484985,9929433206 2019-05-25,249.694046,257.356842,249.088791,251.759872,251.759872,8924985385 2019-05-26,251.724792,269.166534,247.245392,267.069641,267.069641,9664267731 2019-05-27,267.141876,278.507263,265.444702,272.862640,272.862640,12074664736 2019-05-28,272.590485,274.320831,267.514374,271.768707,271.768707,10362846898 2019-05-29,271.779053,273.756287,263.091400,269.455688,269.455688,9819132174 2019-05-30,269.551880,287.201630,247.348602,255.858948,255.858948,13604268584 2019-05-31,256.015259,268.659943,249.111847,268.113556,268.113556,11255023515 2019-06-01,268.433350,273.557983,263.524597,265.391266,265.391266,9942869852 2019-06-02,265.512726,272.807220,265.041870,270.225525,270.225525,8744111713 2019-06-03,270.088562,270.334106,251.262192,252.607925,252.607925,9375712917 2019-06-04,252.511642,252.511642,236.127213,241.338791,241.338791,10132549747 2019-06-05,241.497040,248.138138,239.983459,247.051010,247.051010,8548917062 2019-06-06,246.925247,249.944504,238.501114,249.474335,249.474335,8265146806 2019-06-07,249.335281,254.352295,246.597900,250.930359,250.930359,8379534528 2019-06-08,251.249313,252.377396,243.229111,245.738098,245.738098,7225996863 2019-06-09,245.540482,245.972824,229.257431,233.086700,233.086700,7566421456 2019-06-10,232.830139,247.662170,229.341766,247.520126,247.520126,8141159848 2019-06-11,247.862122,248.662582,239.825348,245.781830,245.781830,7382269700 2019-06-12,245.925491,261.017578,244.491318,260.903290,260.903290,8645598618 2019-06-13,260.913513,262.163116,255.596283,256.168793,256.168793,8442077836 2019-06-14,256.179657,265.371399,254.147430,264.087463,264.087463,8676891267 2019-06-15,263.934143,271.505585,262.121216,269.019318,269.019318,8126853944 2019-06-16,268.901154,278.143188,265.535339,269.223206,269.223206,9676746453 2019-06-17,269.090576,275.442566,268.353790,274.351105,274.351105,6009795781 2019-06-18,274.320251,274.320251,263.144440,265.051849,265.051849,6205242504 2019-06-19,265.056854,270.333374,264.754791,269.431793,269.431793,5516510947 2019-06-20,269.407867,274.073517,265.500458,271.695007,271.695007,6408981097 2019-06-21,271.743103,295.303314,271.743103,294.910278,294.910278,9331694140 2019-06-22,295.115082,315.189728,294.728241,309.380310,309.380310,10613731255 2019-06-23,309.416687,318.565674,305.764587,307.827789,307.827789,8161062380 2019-06-24,307.722137,312.329346,299.559540,310.424683,310.424683,8205712062 2019-06-25,310.678619,318.126312,307.643158,318.126312,318.126312,9641764965 2019-06-26,317.992584,361.398682,315.954865,336.753174,336.753174,16437084081 2019-06-27,336.959900,343.433441,278.573242,294.267639,294.267639,14038092503 2019-06-28,294.143036,313.031555,292.939819,311.226105,311.226105,11514656820 2019-06-29,311.284424,322.043549,294.753845,320.058899,320.058899,10929374565 2019-06-30,319.584045,322.789581,290.695984,290.695984,290.695984,10303111000 2019-07-01,290.268494,301.026154,280.022827,293.641113,293.641113,10292223948 2019-07-02,293.537262,295.655853,272.602570,291.596436,291.596436,10618413952 2019-07-03,291.764618,303.342041,291.401642,303.099976,303.099976,9926711979 2019-07-04,303.025085,303.961151,282.765747,284.523224,284.523224,8403513106 2019-07-05,284.380920,293.921143,282.694702,287.997528,287.997528,8723493015 2019-07-06,287.893829,295.991425,286.665863,287.547119,287.547119,7674615025 2019-07-07,287.603607,310.139313,286.109192,305.700562,305.700562,8119724981 2019-07-08,305.734772,314.267883,303.500458,313.251404,313.251404,9078905628 2019-07-09,313.325165,318.223114,305.285828,308.881012,308.881012,10055159803 2019-07-10,308.851288,313.069458,285.565796,290.002319,290.002319,11679985167 2019-07-11,289.945984,290.021057,266.094666,268.704041,268.704041,10216287022 2019-07-12,268.692261,278.855591,268.000031,276.276703,276.276703,8148936015 2019-07-13,276.289124,276.685242,263.068268,269.458801,269.458801,6716829429 2019-07-14,269.281616,269.641235,227.269211,227.578064,227.578064,8578339386 2019-07-15,227.965057,235.025650,210.391266,229.776001,229.776001,9723674244 2019-07-16,229.748657,234.513840,197.377899,199.188675,199.188675,9036620494 2019-07-17,199.066788,217.975632,193.990417,211.484970,211.484970,9387747640 2019-07-18,211.444611,229.239395,208.037735,226.566162,226.566162,9327816059 2019-07-19,226.657700,226.940475,215.838242,221.333420,221.333420,7606433131 2019-07-20,221.412659,234.198456,221.189484,229.119217,229.119217,7976245988 2019-07-21,229.167694,229.861664,219.027756,225.630768,225.630768,6685082868 2019-07-22,225.698654,226.862579,213.448380,217.560013,217.560013,6338843919 2019-07-23,217.568466,218.518051,209.638123,212.728516,212.728516,6976091534 2019-07-24,212.553818,217.535431,203.893402,217.046371,217.046371,7168982843 2019-07-25,216.969116,224.254196,216.135147,219.617996,219.617996,6731281160 2019-07-26,219.628128,220.236389,214.125687,219.629608,219.629608,5729852178 2019-07-27,219.617630,223.517258,204.903931,207.408310,207.408310,6257703908 2019-07-28,207.413773,212.041840,202.252899,211.186554,211.186554,5504887934 2019-07-29,211.123657,213.932053,208.764313,211.268051,211.268051,5485190664 2019-07-30,211.339203,213.614075,206.867615,210.522598,210.522598,5489918859 2019-07-31,210.492416,218.654144,210.437912,218.654144,218.654144,6003828340 2019-08-01,218.554596,218.812653,212.914505,217.808441,217.808441,5965442642 2019-08-02,217.884460,222.182571,215.975830,217.871567,217.871567,6159440229 2019-08-03,217.895554,224.623230,217.331741,222.490341,222.490341,5697798687 2019-08-04,222.580811,224.227295,218.492172,222.669724,222.669724,5238542572 2019-08-05,222.650879,235.635284,222.603882,234.215027,234.215027,7765060287 2019-08-06,234.245590,239.115906,223.551178,226.020645,226.020645,7647742672 2019-08-07,225.925293,229.656570,222.775452,226.391006,226.391006,7020342210 2019-08-08,226.518478,226.774719,216.516251,220.941864,220.941864,6713525644 2019-08-09,220.908646,221.364334,208.245972,210.488907,210.488907,6964818795 2019-08-10,210.530167,213.734833,203.793106,206.733536,206.733536,6584748527 2019-08-11,206.732239,216.598648,206.510803,216.092865,216.092865,6440605605 2019-08-12,216.055908,216.142563,210.946487,211.288071,211.288071,5674315559 2019-08-13,211.342697,211.384415,205.422501,208.709045,208.709045,5946313205 2019-08-14,208.603989,209.066437,186.331924,186.607742,186.607742,7444456154 2019-08-15,186.683502,189.462158,178.142563,188.502060,188.502060,8197244441 2019-08-16,188.644257,188.905594,180.384842,185.440079,185.440079,7133915837 2019-08-17,185.531662,186.703140,182.593887,185.687683,185.687683,5512696513 2019-08-18,185.841095,197.522491,183.692245,194.493530,194.493530,5969012024 2019-08-19,194.556030,203.560150,193.108246,203.091934,203.091934,6145148692 2019-08-20,202.813141,203.015991,195.619537,196.565414,196.565414,6408417610 2019-08-21,196.621689,197.027435,182.689178,186.891632,186.891632,7775772700 2019-08-22,186.941238,194.415512,183.384521,191.332916,191.332916,7569043874 2019-08-23,191.106873,195.906494,189.562317,194.706207,194.706207,6658162377 2019-08-24,194.671631,194.784988,187.627258,191.289566,191.289566,6249737982 2019-08-25,191.234787,192.163330,184.964752,186.842392,186.842392,5826017143 2019-08-26,186.735550,193.442184,186.735550,188.929382,188.929382,7207986636 2019-08-27,188.950058,188.963181,185.472931,187.516663,187.516663,6042327402 2019-08-28,187.495499,187.930878,172.185608,173.889969,173.889969,6696604087 2019-08-29,173.958694,173.996399,167.170898,169.516739,169.516739,7129569083 2019-08-30,169.489288,170.773514,167.071411,168.834869,168.834869,5776520220 2019-08-31,168.887894,174.323975,167.802582,172.469788,172.469788,5830212249 2019-09-01,172.458405,173.696854,169.531281,171.629425,171.629425,5554799576 2019-09-02,171.697601,180.145218,170.451691,178.347351,178.347351,6503447137 2019-09-03,178.357758,182.347992,175.970169,179.499329,179.499329,6962728938 2019-09-04,179.491989,180.136597,175.325363,175.992889,175.992889,5938120494 2019-09-05,175.966278,176.163910,171.746826,174.217133,174.217133,5589476516 2019-09-06,174.172226,177.718704,168.341339,169.956177,169.956177,6797611878 2019-09-07,169.955276,180.851608,169.444122,178.262619,178.262619,6791531342 2019-09-08,178.282593,182.977081,178.142502,181.355530,181.355530,6472677266 2019-09-09,181.362488,184.149460,177.419357,181.149460,181.149460,7232938985 2019-09-10,181.212845,184.063431,178.122421,179.787170,179.787170,6291476772 2019-09-11,179.839493,181.757462,176.500916,178.725494,178.725494,7157139035 2019-09-12,178.803772,181.998566,177.847321,181.016098,181.016098,5838605477 2019-09-13,180.975586,181.498291,178.582047,181.109726,181.109726,5955041237 2019-09-14,181.321579,188.446930,180.372208,188.105515,188.105515,6500686511 2019-09-15,188.068436,190.399338,186.447327,189.789124,189.789124,6222874780 2019-09-16,189.689331,198.204971,189.689331,197.113174,197.113174,8242029488 2019-09-17,197.114761,213.731949,196.715485,208.608749,208.608749,10232590812 2019-09-18,208.050598,216.711502,208.050598,211.393036,211.393036,9194634557 2019-09-19,211.247238,222.871689,204.685776,221.280853,221.280853,10620070913 2019-09-20,221.069626,221.598557,215.159637,218.050049,218.050049,8027974273 2019-09-21,217.897385,220.958298,215.000168,215.516205,215.516205,7743309778 2019-09-22,215.486557,216.086243,207.644928,211.545380,211.545380,7812854576 2019-09-23,211.713211,211.840515,201.887238,201.921310,201.921310,7494673136 2019-09-24,201.842087,203.500549,162.727783,168.110733,168.110733,11757739233 2019-09-25,168.133575,174.719772,164.913483,170.892700,170.892700,9766632018 2019-09-26,170.756912,171.692642,157.130325,166.727127,166.727127,7848286154 2019-09-27,166.651703,175.610779,163.209503,174.710999,174.710999,7909313625 2019-09-28,174.680832,175.778732,170.773956,174.572891,174.572891,6895423445 2019-09-29,174.612747,175.210220,166.997696,170.503479,170.503479,6497088199 2019-09-30,170.461349,179.872208,167.036606,179.872208,179.872208,7552915148 2019-10-01,180.209122,185.045532,175.812653,177.340424,177.340424,7676276225 2019-10-02,177.224060,180.826126,175.334274,180.710510,180.710510,6335595250 2019-10-03,180.703705,180.799210,172.599869,175.199341,175.199341,6381403725 2019-10-04,175.238434,178.552078,173.564087,176.985001,176.985001,6248928449 2019-10-05,176.946320,177.713242,173.069565,176.351517,176.351517,5837211771 2019-10-06,176.364380,177.364548,171.299774,173.059143,173.059143,5852890674 2019-10-07,172.940338,182.356354,171.527817,181.186340,181.186340,7844316834 2019-10-08,181.113358,184.359970,179.133392,182.021561,182.021561,7466282780 2019-10-09,182.036301,194.300491,180.668442,193.293259,193.293259,9088122101 2019-10-10,193.191071,193.896927,188.306473,191.659668,191.659668,8375913276 2019-10-11,191.801071,195.318802,181.661835,182.569687,182.569687,9128522970 2019-10-12,182.534027,186.304886,179.984833,180.826645,180.826645,7494328840 2019-10-13,180.861313,185.075912,180.317154,182.075150,182.075150,6733182273 2019-10-14,182.028473,187.303619,181.662277,186.960907,186.960907,7276520699 2019-10-15,186.977051,187.759872,179.462784,181.406067,181.406067,7731456579 2019-10-16,181.343735,181.668610,174.064163,176.013504,176.013504,7691244590 2019-10-17,175.906891,178.899551,174.565826,178.028351,178.028351,6737237423 2019-10-18,177.988556,178.179794,171.005051,173.621338,173.621338,7566257807 2019-10-19,173.649445,175.608231,172.215454,172.913025,172.913025,6551453871 2019-10-20,172.974762,176.718689,171.210724,175.534378,175.534378,6801091120 2019-10-21,175.524750,177.741730,173.287750,174.920990,174.920990,6815820627 2019-10-22,174.905060,175.650024,172.266235,172.300858,172.300858,6990951966 2019-10-23,172.262802,172.420578,157.463425,162.402786,162.402786,9624925919 2019-10-24,162.514114,164.147568,160.887955,162.168549,162.168549,7300917537 2019-10-25,162.189713,183.000122,161.966019,181.523209,181.523209,10358594018 2019-10-26,181.667068,195.942505,176.133804,179.835480,179.835480,13831784986 2019-10-27,179.932632,188.155334,177.682358,184.242218,184.242218,10815941952 2019-10-28,184.397507,187.883163,180.249557,182.662811,182.662811,10406734124 2019-10-29,182.670380,191.846756,182.364365,190.342575,190.342575,10622761958 2019-10-30,190.336395,191.111938,181.546371,184.692169,184.692169,10484902804 2019-10-31,184.797623,188.751266,180.068359,183.966919,183.966919,9607939606 2019-11-01,183.803696,185.059708,181.094498,183.969894,183.969894,9145611130 2019-11-02,184.018158,185.708954,182.797668,183.925720,183.925720,8087991830 2019-11-03,183.994827,185.024216,179.818146,182.425018,182.425018,8760247744 2019-11-04,182.319031,188.022934,181.821609,186.355194,186.355194,10551917945 2019-11-05,186.309311,191.257828,184.331985,189.304169,189.304169,10024177342 2019-11-06,189.113495,193.547256,188.667679,191.593842,191.593842,10156458684 2019-11-07,191.504303,191.861099,186.567001,187.976547,187.976547,9081247799 2019-11-08,187.924271,188.815979,182.541367,184.211472,184.211472,9176780911 2019-11-09,184.311722,185.838531,183.902237,185.028717,185.028717,7277418704 2019-11-10,184.943359,190.920609,184.686783,189.477280,189.477280,8752784211 2019-11-11,189.502930,190.338425,185.086319,185.489639,185.489639,7877424106 2019-11-12,185.564835,187.948029,184.191055,186.843414,186.843414,7792186666 2019-11-13,186.942444,189.331879,185.937943,188.258743,188.258743,7343173596 2019-11-14,188.272507,188.634598,184.992294,185.999634,185.999634,7872664470 2019-11-15,186.058167,186.251831,179.379562,180.521179,180.521179,8815678477 2019-11-16,180.499100,184.155273,179.985672,183.348358,183.348358,6789888120 2019-11-17,183.350830,188.191345,182.336807,185.119232,185.119232,7364325471 2019-11-18,185.041458,186.927155,179.175507,180.559601,180.559601,7787662111 2019-11-19,180.502457,182.528000,175.197113,177.455551,177.455551,7536699743 2019-11-20,177.415283,178.993149,175.290436,175.698349,175.698349,7205785149 2019-11-21,175.673599,176.209213,159.365128,161.462723,161.462723,8546371325 2019-11-22,161.505890,163.028091,142.344101,150.268173,150.268173,12020749863 2019-11-23,150.212219,154.101563,147.601242,153.417786,153.417786,8289198330 2019-11-24,153.430527,153.965912,142.834702,142.834702,142.834702,7782769098 2019-11-25,142.697006,150.207962,133.802338,146.476532,146.476532,10962753356 2019-11-26,146.404312,150.004761,145.216873,148.965073,148.965073,7648516297 2019-11-27,148.396820,154.887207,143.525604,153.010559,153.010559,8778095308 2019-11-28,153.069244,156.613586,151.091125,151.717575,151.717575,7346531960 2019-11-29,151.768600,156.848404,151.460434,155.304153,155.304153,7503898278 2019-11-30,155.286407,156.691299,151.225342,152.539688,152.539688,6565950868 2019-12-01,152.491928,152.491928,147.067932,151.185730,151.185730,7102780298 2019-12-02,151.175476,152.116959,147.606796,149.059158,149.059158,6670561362 2019-12-03,149.058243,150.310425,146.001678,147.956421,147.956421,6204379850 2019-12-04,147.918381,150.680817,145.000885,146.747742,146.747742,7865937094 2019-12-05,146.686493,153.155396,145.459076,149.248993,149.248993,6745910228 2019-12-06,149.396484,149.670517,147.606522,149.194443,149.194443,6458766441 2019-12-07,149.197601,149.799713,148.374771,148.768158,148.768158,5911233284 2019-12-08,148.743683,152.392929,148.313339,151.264725,151.264725,6441727252 2019-12-09,151.224396,151.913940,147.621368,148.225174,148.225174,6744206747 2019-12-10,148.179855,148.564468,144.907959,146.267044,146.267044,6859512025 2019-12-11,146.320648,147.139206,143.045364,143.608002,143.608002,7037180049 2019-12-12,143.615662,145.751648,141.436981,145.604004,145.604004,7890383413 2019-12-13,145.655685,145.857101,143.746521,144.944748,144.944748,7264810247 2019-12-14,144.953415,145.529083,142.434555,142.869232,142.869232,7048066973 2019-12-15,142.864990,143.925354,139.426956,143.114990,143.114990,7235153411 2019-12-16,143.139526,143.224854,132.456665,133.614029,133.614029,8992282119 2019-12-17,133.647186,134.011536,121.395081,122.603889,122.603889,9057166141 2019-12-18,122.656837,133.394165,119.780060,133.092194,133.092194,11864518321 2019-12-19,133.052780,134.190643,125.971664,129.321136,129.321136,9564699140 2019-12-20,129.384369,129.756302,126.985352,129.066055,129.066055,8173594150 2019-12-21,129.095963,129.147659,127.612091,128.130951,128.130951,7449064703 2019-12-22,128.098129,133.160034,127.928490,132.372513,132.372513,9121058481 2019-12-23,132.306992,134.731750,127.416718,128.614090,128.614090,9622497693 2019-12-24,128.629257,131.672287,127.308769,129.063889,129.063889,7961819689 2019-12-25,129.068497,129.068497,124.885490,126.454636,126.454636,8418019054 2019-12-26,126.486328,130.898346,125.406441,126.361221,126.361221,8600871980 2019-12-27,126.368797,128.097565,124.820808,127.214607,127.214607,8299390176 2019-12-28,127.213013,130.258163,126.899696,128.322708,128.322708,8069298610 2019-12-29,128.266876,136.811203,127.997658,134.757980,134.757980,9708776786 2019-12-30,134.796524,136.757355,131.545563,132.633484,132.633484,9796951716 2019-12-31,132.612274,133.732681,128.798157,129.610855,129.610855,8936866397 2020-01-01,129.630661,132.835358,129.198288,130.802002,130.802002,7935230330 2020-01-02,130.820038,130.820038,126.954910,127.410179,127.410179,8032709256 2020-01-03,127.411263,134.554016,126.490021,134.171707,134.171707,10476845358 2020-01-04,134.168518,136.052719,133.040558,135.069366,135.069366,7430904515 2020-01-05,135.072098,139.410202,135.045624,136.276779,136.276779,7526675353 2020-01-06,136.305542,144.328186,136.079636,144.304153,144.304153,9093747121 2020-01-07,144.311996,145.001770,140.488876,143.543991,143.543991,9257954672 2020-01-08,143.487823,146.828003,138.268204,141.258133,141.258133,9387194957 2020-01-09,141.155777,141.393982,136.236404,138.979202,138.979202,7697325348 2020-01-10,138.967041,144.167328,135.520401,143.963776,143.963776,9084816203 2020-01-11,143.409103,146.480911,142.207962,142.927109,142.927109,9332208590 2020-01-12,143.032547,146.145859,142.707642,145.873932,145.873932,8528167453 2020-01-13,146.220139,146.791229,142.907135,144.226593,144.226593,8378529470 2020-01-14,144.251053,167.681549,144.064926,165.955353,165.955353,16712318373 2020-01-15,165.734619,170.425674,161.109619,166.230682,166.230682,15173694057 2020-01-16,166.332825,167.058151,159.709641,164.391006,164.391006,13735193018 2020-01-17,164.489380,173.069214,162.775604,170.779953,170.779953,14997091826 2020-01-18,170.747726,178.528778,166.789017,175.365677,175.365677,14929342256 2020-01-19,175.467590,177.247635,163.676865,166.969849,166.969849,13713374132 2020-01-20,166.904129,169.114883,162.331604,167.120514,167.120514,11144529787 2020-01-21,167.060471,169.910110,165.819717,169.697159,169.697159,9789369362 2020-01-22,169.608536,171.008698,166.774231,168.294159,168.294159,9209827928 2020-01-23,168.295700,168.312241,160.295319,162.928558,162.928558,10396868698 2020-01-24,162.899368,164.309448,156.749741,163.051178,163.051178,10657671162 2020-01-25,163.067291,163.227234,158.632477,161.283936,161.283936,8256956802 2020-01-26,161.176819,168.220322,160.281128,168.077103,168.077103,9261861590 2020-01-27,168.008850,172.922913,166.901093,170.930893,170.930893,11004476145 2020-01-28,170.884857,176.370316,170.738068,176.370316,176.370316,11772875064 2020-01-29,176.347885,178.842972,175.050339,175.050339,175.050339,10725267311 2020-01-30,174.917709,186.260483,172.374634,184.690475,184.690475,12604789338 2020-01-31,184.736908,185.405838,176.296814,180.160172,180.160172,11728616394 2020-02-01,180.113770,183.845551,179.745178,183.673950,183.673950,11569697182 2020-02-02,183.532501,193.080399,180.173950,188.617538,188.617538,14054425389 2020-02-03,188.607407,193.436890,188.012695,189.865067,189.865067,12392875241 2020-02-04,189.861725,191.111496,185.403625,189.250595,189.250595,11714191695 2020-02-05,189.299103,206.804001,188.752686,204.230240,204.230240,14865434435 2020-02-06,204.129700,214.597717,201.904068,212.339081,212.339081,16425589683 2020-02-07,212.315887,223.140930,212.304199,222.726059,222.726059,16673443564 2020-02-08,222.510971,226.588089,215.386292,223.146515,223.146515,16741203125 2020-02-09,222.982239,229.864243,222.982239,228.578568,228.578568,15031356241 2020-02-10,228.549133,229.184616,218.080048,223.522705,223.522705,16210008511 2020-02-11,223.384933,236.547134,218.617615,235.851196,235.851196,16964695963 2020-02-12,235.898224,272.398834,235.896271,265.406128,265.406128,24545049386 2020-02-13,265.052704,273.741058,258.922516,268.099243,268.099243,25801317504 2020-02-14,268.023285,285.056427,262.762512,284.217499,284.217499,23558253463 2020-02-15,284.561310,287.123688,264.279663,264.728577,264.728577,23682452994 2020-02-16,264.904053,272.882446,242.484406,259.894714,259.894714,25152366643 2020-02-17,259.890564,266.871246,244.335327,266.363434,266.363434,26024080089 2020-02-18,266.508820,283.196136,261.463898,281.944580,281.944580,26511477187 2020-02-19,282.036285,283.537933,259.763977,259.763977,259.763977,22679414413 2020-02-20,259.819855,263.695404,250.951263,257.949463,257.949463,23229828870 2020-02-21,257.891113,267.004852,255.689087,265.600616,265.600616,20867593292 2020-02-22,265.551575,266.387207,258.913147,262.331726,262.331726,16906032862 2020-02-23,262.278412,273.754150,261.960510,273.754150,273.754150,19585998814 2020-02-24,273.705078,275.539520,259.625153,265.216431,265.216431,22400845640 2020-02-25,265.283386,265.431488,246.858994,247.817596,247.817596,21878882134 2020-02-26,247.740204,249.649704,221.266556,225.680267,225.680267,26235617201 2020-02-27,225.687042,237.228928,212.664520,226.753387,226.753387,25645522790 2020-02-28,226.987610,234.208939,216.346207,226.760498,226.760498,22563530559 2020-02-29,226.833450,232.256622,219.848511,219.848511,219.848511,18181296376 2020-03-01,219.752686,226.677887,214.130432,218.970596,218.970596,18179807469 2020-03-02,218.711624,232.811584,217.284286,230.569778,230.569778,20305587789 2020-03-03,230.523972,232.325806,221.732666,224.479630,224.479630,19853178572 2020-03-04,224.565338,228.040421,222.088882,224.517975,224.517975,16567075208 2020-03-05,224.641891,234.364456,224.641891,229.268188,229.268188,18201291785 2020-03-06,229.168427,243.554977,228.743576,243.525299,243.525299,19374772256 2020-03-07,243.750198,249.978485,237.551285,237.853088,237.853088,19431652027 2020-03-08,237.780685,237.780685,200.602982,200.689056,200.689056,21381823651 2020-03-09,201.318497,207.451401,192.269897,201.986328,201.986328,23645428606 2020-03-10,202.863953,205.714249,198.064499,200.767242,200.767242,18344930072 2020-03-11,200.768036,202.954300,184.362152,194.868530,194.868530,16984790291 2020-03-12,194.738922,195.147934,111.210709,112.347122,112.347122,22134741655 2020-03-13,112.689995,137.429535,95.184303,133.201813,133.201813,27864623061 2020-03-14,133.582474,134.484375,122.414474,123.306023,123.306023,12740784545 2020-03-15,123.246063,132.242142,121.853653,125.214302,125.214302,12719251813 2020-03-16,124.996117,124.996117,105.171440,110.605873,110.605873,15984904590 2020-03-17,110.406784,118.988281,110.406784,113.942749,113.942749,12087490572 2020-03-18,113.857643,116.021622,111.743111,114.842270,114.842270,11617854009 2020-03-19,114.839828,140.527725,114.732864,136.593857,136.593857,16396753275 2020-03-20,136.649277,150.853806,122.605659,132.737167,132.737167,18960388062 2020-03-21,133.101761,135.972412,127.163757,132.818710,132.818710,13684083308 2020-03-22,132.851135,136.151642,122.909332,123.321152,123.321152,12497707224 2020-03-23,123.365982,134.911606,121.867882,134.911606,134.911606,14149877968 2020-03-24,135.194138,141.948532,133.168777,138.761444,138.761444,14609068673 2020-03-25,138.914963,141.403793,134.304230,136.195892,136.195892,13433092920 2020-03-26,136.190674,138.830566,134.886032,138.361557,138.361557,11367261176 2020-03-27,138.369934,139.902695,133.937943,133.937943,133.937943,11396286629 2020-03-28,134.032745,134.032745,126.962189,130.986496,130.986496,12162403960 2020-03-29,131.015335,131.174088,125.450050,125.583733,125.583733,9938133669 2020-03-30,125.577896,133.911469,125.289680,132.904541,132.904541,11841123306 2020-03-31,132.820923,134.274139,131.652893,133.593567,133.593567,11065246317 2020-04-01,133.612320,135.634552,129.730942,135.634552,135.634552,12456564435 2020-04-02,135.732178,146.787094,135.732178,142.029144,142.029144,15322861686 2020-04-03,142.110458,146.899872,139.619385,142.091309,142.091309,13184603402 2020-04-04,142.215179,145.377304,140.121826,145.219391,145.219391,11946658257 2020-04-05,145.261017,146.128525,142.102081,143.546646,143.546646,11280993591 2020-04-06,143.608215,169.272644,143.544601,169.135880,169.135880,21636382525 2020-04-07,169.147446,175.204132,164.203323,165.101944,165.101944,21659346091 2020-04-08,165.240326,173.210266,164.493195,172.641739,172.641739,17063110836 2020-04-09,172.761261,172.897781,167.987122,170.807144,170.807144,14901696210 2020-04-10,170.829269,170.949768,154.914474,158.412445,158.412445,17980944616 2020-04-11,158.538986,161.167572,155.298340,158.216019,158.216019,13555089447 2020-04-12,158.232391,164.516953,156.320511,161.142426,161.142426,15123721386 2020-04-13,160.720673,160.749695,151.614487,156.279556,156.279556,16465282133 2020-04-14,156.355957,160.944275,155.865936,157.596390,157.596390,14723156630 2020-04-15,157.565643,160.711121,152.802841,153.286896,153.286896,14171753737 2020-04-16,153.200424,173.157272,150.359421,172.157379,172.157379,22910469236 2020-04-17,null,null,null,null,null,null 2020-04-18,171.618073,187.940475,171.618073,186.914001,186.914001,20160323443 2020-04-19,186.861984,188.098923,180.120819,181.614960,181.614960,19146038381 2020-04-20,181.480225,186.083542,170.321274,172.297165,172.297165,21266681335 2020-04-21,172.017715,175.178467,170.552841,172.737701,172.737701,16458767984 2020-04-22,172.670395,183.751007,171.826599,182.599579,182.599579,17994666395 2020-04-23,182.620178,189.088867,180.340652,185.028671,185.028671,21275740032 2020-04-24,185.222107,190.210388,185.222107,189.236938,189.236938,16788555028 2020-04-25,189.207397,196.792374,188.459534,195.515305,195.515305,18260969748 2020-04-26,195.413589,199.344971,194.768066,197.317535,197.317535,18335367012 2020-04-27,197.475723,199.552795,193.454163,197.224716,197.224716,18670194595 2020-04-28,197.273514,198.786545,194.849426,198.415390,198.415390,18217507467 2020-04-29,198.465195,218.454636,198.124512,216.968231,216.968231,26397548759 2020-04-30,216.909134,227.529694,206.436920,207.602051,207.602051,28089191904 2020-05-01,207.901733,217.628021,207.780884,214.219101,214.219101,20816320834 2020-05-02,214.230087,215.847534,212.878677,215.325378,215.325378,18260876092 2020-05-03,215.352066,219.270874,208.692368,210.933151,210.933151,20469034664 2020-05-04,210.890854,211.828384,199.047729,208.174011,208.174011,22602446422 2020-05-05,208.013000,211.778625,204.031128,206.774399,206.774399,19004689099 2020-05-06,206.481354,211.534622,204.040878,204.055786,204.055786,20343543799 2020-05-07,203.912857,214.392471,202.074844,212.289413,212.289413,23594744655 2020-05-08,212.198242,216.327682,208.830734,212.991577,212.991577,20445139356 2020-05-09,213.142166,214.739120,209.071518,211.600128,211.600128,18950547549 2020-05-10,211.552200,211.552200,182.711166,188.599564,188.599564,25211575193 2020-05-11,188.632187,191.362335,180.718338,185.912842,185.912842,20054601647 2020-05-12,185.877335,191.601349,185.701797,189.312500,189.312500,15899726284 2020-05-13,189.374100,200.197327,189.127701,199.193283,199.193283,17054662289 2020-05-14,198.891510,204.117599,196.868820,202.949097,202.949097,20150524861 2020-05-15,202.955399,203.566391,193.755676,195.622665,195.622665,16602342092 2020-05-16,195.613388,202.771194,194.501587,200.677124,200.677124,15379081645 2020-05-17,200.608871,209.160934,200.102798,207.158691,207.158691,15470397303 2020-05-18,207.179779,215.908463,207.109070,214.525055,214.525055,17411566928 2020-05-19,214.604935,214.604935,210.143051,213.451111,213.451111,14346192779 2020-05-20,213.446243,214.716827,207.975815,210.096741,210.096741,12730175511 2020-05-21,210.129150,211.625183,193.346436,199.883606,199.883606,13308321229 2020-05-22,199.837112,208.591537,198.040863,207.169189,207.169189,12041592114 2020-05-23,207.194489,210.386459,205.294220,208.694397,208.694397,10665476768 2020-05-24,208.716064,210.595078,202.370346,202.370346,202.370346,11833299572 2020-05-25,201.982651,206.361450,200.667557,205.319748,205.319748,10415044124 2020-05-26,205.259567,205.752548,200.264282,201.902313,201.902313,10159741290 2020-05-27,201.893005,208.863434,201.785065,208.863434,208.863434,10631034756 2020-05-28,208.885437,220.276505,206.242661,219.840424,219.840424,12212469604 2020-05-29,219.925049,224.216873,218.238052,220.675125,220.675125,12265816557 2020-05-30,220.717209,243.943146,218.744461,242.345596,242.345596,15027397867 2020-05-31,242.351379,244.045258,230.052826,230.975708,230.975708,12234904813 2020-06-01,230.860260,248.236282,230.488052,246.991760,246.991760,13951727936 2020-06-02,246.828186,252.222000,233.225296,237.219055,237.219055,13782107567 2020-06-03,237.395218,244.179321,235.464447,244.179321,244.179321,9861760817 2020-06-04,244.105286,245.928970,236.765305,244.426392,244.426392,10170414304 2020-06-05,244.349594,247.329498,240.682053,241.221985,241.221985,9293963914 2020-06-06,241.201355,245.981049,239.724533,241.931320,241.931320,8114873845 2020-06-07,241.908081,245.435257,236.325256,245.167252,245.167252,9544883157 2020-06-08,245.178574,246.644196,241.542191,246.309906,246.309906,8076783299 2020-06-09,246.175018,248.342438,242.338547,244.911453,244.911453,8446545788 2020-06-10,244.822067,248.651154,242.819748,247.444946,247.444946,8792990206 2020-06-11,247.548538,249.888306,229.942978,231.702667,231.702667,12356528860 2020-06-12,231.625458,239.354691,229.645065,237.493210,237.493210,8868955009 2020-06-13,237.544617,239.193100,235.889679,238.908844,238.908844,7141624980 2020-06-14,238.968185,239.101456,232.958191,234.114700,234.114700,7439385176 2020-06-15,234.058304,234.237839,221.241760,229.928909,229.928909,10536099884 2020-06-16,229.762299,236.394302,228.426147,234.416168,234.416168,7965648016 2020-06-17,234.492371,235.954056,229.341644,233.028275,233.028275,7701391592 2020-06-18,232.898697,234.570648,228.951431,232.101166,232.101166,6713800872 2020-06-19,231.954971,232.154114,226.795181,227.138290,227.138290,6946372590 2020-06-20,226.976364,231.449020,226.640625,229.274261,229.274261,6252830566 2020-06-21,229.216141,232.358948,228.492996,228.989822,228.989822,5600408178 2020-06-22,229.003372,243.776016,228.934738,242.533188,242.533188,9079586552 2020-06-23,242.537018,244.864410,239.759735,244.142151,244.142151,6624530348 2020-06-24,244.185928,248.508026,232.807739,235.772461,235.772461,8815030025 2020-06-25,235.702850,236.053406,230.296600,232.944489,232.944489,7010426122 2020-06-26,232.877487,233.901932,229.259460,229.668045,229.668045,7187490226 2020-06-27,229.631485,232.493423,220.564575,222.959793,222.959793,6918380955 2020-06-28,222.914490,228.598282,219.472672,225.347168,225.347168,6205925718 2020-06-29,225.361435,229.903214,222.254990,228.194870,228.194870,6726164653 2020-06-30,227.968430,229.476807,224.815186,226.315002,226.315002,6094093001 2020-07-01,226.134583,232.756119,224.835739,231.113419,231.113419,6463737443 2020-07-02,231.288910,232.396881,225.461960,229.392197,229.392197,6212210566 2020-07-03,229.318954,229.629318,224.913971,225.387070,225.387070,5109032700 2020-07-04,225.288483,230.054138,225.133316,229.074112,229.074112,5228310135 2020-07-05,228.976196,229.856720,224.544495,227.664597,227.664597,5292172429 2020-07-06,227.685013,242.132706,227.029526,241.510223,241.510223,8782917553 2020-07-07,240.972595,242.681854,234.218658,239.075531,239.075531,6441497597 2020-07-08,239.159973,248.308868,238.398376,246.670013,246.670013,9892586411 2020-07-09,246.748291,247.291672,239.898651,243.015961,243.015961,8429099199 2020-07-10,242.868011,242.883789,236.730530,240.984985,240.984985,7281370522 2020-07-11,241.044785,241.527481,238.331238,239.458176,239.458176,5643067316 2020-07-12,239.459641,243.311142,237.770218,242.131699,242.131699,6596394718 2020-07-13,242.181870,244.310516,238.232376,239.604584,239.604584,7787751468 2020-07-14,239.975616,242.003784,237.796188,240.211487,240.211487,7357458555 2020-07-15,240.143646,241.402695,237.096176,238.423523,238.423523,6189328448 2020-07-16,238.450912,239.006256,231.621170,233.640884,233.640884,5832057567 2020-07-17,233.691391,234.415070,232.109970,232.773087,232.773087,5859850529 2020-07-18,232.855682,236.543976,232.324890,235.483810,235.483810,5397402117 2020-07-19,235.458298,239.160690,233.279739,238.487518,238.487518,6251377305 2020-07-20,238.494873,239.576248,234.852646,236.153168,236.153168,5600686192 2020-07-21,236.302505,246.186264,235.680969,245.016724,245.016724,6806696015 2020-07-22,245.037262,262.985046,242.484344,262.190643,262.190643,7702077383 2020-07-23,262.388641,277.583466,261.047089,274.689056,274.689056,10281309262 2020-07-24,274.722687,286.192841,269.239777,279.215424,279.215424,9466060358 2020-07-25,279.026367,306.740997,279.026367,304.056763,304.056763,10785021813 2020-07-26,303.692383,316.386322,300.267822,309.643616,309.643616,12003973026 2020-07-27,309.657928,330.701202,309.657928,321.514099,321.514099,15644257058 2020-07-28,321.829742,325.905975,307.721344,316.657257,316.657257,12357108065 2020-07-29,316.555359,324.380798,313.109589,318.190887,318.190887,10878845706 2020-07-30,318.144989,338.631195,315.751099,334.586639,334.586639,11827689045 2020-07-31,334.633728,348.611359,329.340942,345.554657,345.554657,12030600492 2020-08-01,345.798615,388.847961,343.587433,385.199707,385.199707,14045259477 2020-08-02,385.549866,411.228302,357.143646,370.671722,370.671722,18909744275 2020-08-03,371.133850,396.506989,369.336334,386.295166,386.295166,12834648062 2020-08-04,386.156464,400.700623,382.985107,389.875488,389.875488,14086704221 2020-08-05,389.710815,406.303955,386.218475,401.590576,401.590576,12875466638 2020-08-06,401.583862,403.488678,392.600189,394.961945,394.961945,11304626458 2020-08-07,395.226868,398.249023,367.935516,379.512848,379.512848,12751687084 2020-08-08,379.551575,393.987366,377.349731,393.987366,393.987366,9342060531 2020-08-09,395.305237,399.737091,385.830719,391.120453,391.120453,9451065592 2020-08-10,391.041504,399.375946,391.041504,395.887573,395.887573,11685827893 2020-08-11,395.894714,398.478912,370.860626,380.384064,380.384064,12792218737 2020-08-12,380.063812,391.312317,367.923615,391.024170,391.024170,12408772745 2020-08-13,390.838104,432.904602,379.710876,428.741791,428.741791,18480303526 2020-08-14,428.677277,444.577759,423.345856,437.397827,437.397827,15064589987 2020-08-15,437.562988,441.754608,429.874603,433.354919,433.354919,12416067894 2020-08-16,433.350586,436.265839,415.086243,433.786621,433.786621,12168816874 2020-08-17,433.973755,442.734985,422.647278,429.531250,429.531250,13227089410 2020-08-18,429.669617,432.580292,419.674103,423.669312,423.669312,11978984079 2020-08-19,423.738586,427.024658,396.678345,406.463776,406.463776,13137391167 2020-08-20,406.758911,418.734436,404.026093,416.439789,416.439789,10043032427 2020-08-21,416.148773,418.637970,387.441132,389.126343,389.126343,11781796374 2020-08-22,389.031097,396.466583,382.814636,395.835144,395.835144,10131847985 2020-08-23,395.562836,396.490417,385.039795,391.384491,391.384491,8137303970 2020-08-24,391.678986,409.388580,389.314606,408.144196,408.144196,10328860398 2020-08-25,408.071686,408.527924,374.355377,384.001038,384.001038,12428442042 2020-08-26,383.977448,391.873260,378.705841,386.466125,386.466125,9967343483 2020-08-27,386.609863,395.349182,374.866486,382.632629,382.632629,10457777652 2020-08-28,382.629578,397.757629,381.273834,395.874664,395.874664,9120674421 2020-08-29,395.687592,405.616364,393.037415,399.921478,399.921478,8777703481 2020-08-30,399.616699,428.663971,399.608368,428.395721,428.395721,11211948040 2020-08-31,428.509003,438.560333,419.770172,435.079742,435.079742,12774741797 2020-09-01,434.874451,487.211884,432.079193,477.051910,477.051910,18862763756 2020-09-02,477.007874,480.330994,424.460022,440.040497,440.040497,19691854014 2020-09-03,440.239990,449.532471,381.129700,385.671936,385.671936,19622845896 2020-09-04,384.671631,402.411743,371.636688,388.241150,388.241150,16747106257 2020-09-05,388.038391,394.172272,316.774353,335.260071,335.260071,29880047640 2020-09-06,335.334564,359.764038,319.041901,353.362274,353.362274,27643678917 2020-09-07,353.450256,358.211884,326.254364,352.673492,352.673492,21763614732 2020-09-08,353.202271,355.562866,328.816772,337.602112,337.602112,17991403432 2020-09-09,337.824921,359.164490,332.165009,351.110016,351.110016,14547933520 2020-09-10,351.429321,377.393585,351.111755,368.101898,368.101898,31421134556 2020-09-11,368.118500,376.630402,355.582581,374.695587,374.695587,27296269329 2020-09-12,374.595398,387.538452,367.842194,387.183105,387.183105,13295405814 2020-09-13,387.519287,388.959808,354.340179,365.570007,365.570007,15005899191 2020-09-14,365.699585,384.485199,357.569763,377.268860,377.268860,17536695361 2020-09-15,377.154022,381.508301,363.606812,364.839203,364.839203,16140584321 2020-09-16,364.743988,372.767426,356.682739,365.812286,365.812286,16107612177 2020-09-17,365.865784,393.901611,364.795135,389.019226,389.019226,19899531080 2020-09-18,389.337494,391.904144,376.964996,384.364532,384.364532,14108357740 2020-09-19,384.041656,387.076355,378.724060,385.544373,385.544373,11049507684 2020-09-20,385.597992,385.597992,367.094360,371.052826,371.052826,12292195784 2020-09-21,371.400146,375.737030,336.068970,341.786072,341.786072,17398267133 2020-09-22,341.723816,346.600830,336.855042,344.503174,344.503174,12732578043 2020-09-23,344.622498,345.635590,317.692078,320.585541,320.585541,12047020995 2020-09-24,320.618317,351.464630,318.418976,349.356659,349.356659,13460565701 2020-09-25,349.363129,357.957245,339.350311,352.161865,352.161865,12254269350 2020-09-26,352.531250,355.960632,348.129639,354.965271,354.965271,11036752997 2020-09-27,354.587219,362.051361,349.094391,357.321686,357.321686,11464393949 2020-09-28,357.311157,366.890259,354.825134,354.950500,354.950500,12102509266 2020-09-29,354.974823,360.793488,351.819458,359.963409,359.963409,10286529445 2020-09-30,359.942352,361.210327,353.614349,360.022369,360.022369,9773649426 2020-10-01,360.004639,369.286987,347.197937,353.231293,353.231293,12360670278 2020-10-02,353.220184,354.075226,337.356934,346.532654,346.532654,12946215647 2020-10-03,346.502655,351.627930,344.886658,347.321594,347.321594,8599594017 2020-10-04,347.272430,354.253326,345.398712,353.121918,353.121918,9308536486 2020-10-05,353.045807,355.217896,350.197632,354.277100,354.277100,9933790982 2020-10-06,354.137787,355.504059,338.520233,341.021149,341.021149,11497841885 2020-10-07,341.091675,342.591248,335.533600,342.119781,342.119781,10537119715 2020-10-08,342.094971,352.800385,336.497101,351.455658,351.455658,11511016796 2020-10-09,null,null,null,null,null,null 2020-10-10,365.402466,378.267151,365.354034,370.967590,370.967590,13618484324 2020-10-11,370.928436,377.246796,369.828033,375.142059,375.142059,12584512533 2020-10-12,null,null,null,null,null,null 2020-10-13,null,null,null,null,null,null 2020-10-14,381.971466,387.296173,374.175018,379.484039,379.484039,13918846567 2020-10-15,379.192230,381.208771,371.354126,377.441833,377.441833,14964182545 2020-10-16,377.868500,380.021515,362.597412,366.229004,366.229004,14670784817 2020-10-17,366.015717,369.768127,364.489014,368.855927,368.855927,10951115359 2020-10-18,368.727539,378.597656,368.129150,378.213684,378.213684,11047103109 2020-10-19,378.469635,383.317657,373.702271,379.935608,379.935608,12811242092 2020-10-20,379.719696,380.761017,367.601074,369.136902,369.136902,13741586582 2020-10-21,369.059418,400.627258,368.727966,392.189972,392.189972,20241324322 2020-10-22,391.488617,420.141663,391.276306,413.772980,413.772980,15772846485 2020-10-23,414.051331,418.959930,403.082031,409.766693,409.766693,14256222052 2020-10-24,409.767242,416.599670,407.851715,412.457611,412.457611,12201739194 2020-10-25,412.457642,417.159210,405.350647,406.217773,406.217773,10890207469 2020-10-26,406.217987,411.279877,383.782898,393.888306,393.888306,15155684229 2020-10-27,393.888184,409.772858,390.608459,403.997040,403.997040,13940434102 2020-10-28,403.997101,408.964752,381.146332,388.650757,388.650757,15276441134 2020-10-29,388.651062,393.227692,381.288757,386.730103,386.730103,12920477749 2020-10-30,386.730255,391.464722,375.092407,382.819977,382.819977,13688056970 2020-10-31,382.820038,393.010132,381.295258,386.590332,386.590332,11276963426 2020-11-01,386.590332,397.116119,385.165527,396.358185,396.358185,10475146018 2020-11-02,396.355988,403.240753,381.017639,383.156738,383.156738,13997574252 2020-11-03,383.156036,389.515381,371.312744,387.602173,387.602173,12588494762 2020-11-04,387.603210,407.665649,377.827606,402.141998,402.141998,15126077675 2020-11-05,402.142944,417.525940,397.245819,414.067352,414.067352,15440711038 2020-11-06,414.066711,456.200623,412.982300,454.719299,454.719299,16738305610 2020-11-07,454.722565,465.675476,428.456360,435.713135,435.713135,18873289788 2020-11-08,435.718811,457.780457,433.153778,453.554779,453.554779,11292383601 2020-11-09,453.574158,457.349609,435.163879,444.163055,444.163055,13704320630 2020-11-10,444.166382,453.758362,439.600128,449.679626,449.679626,12090381666 2020-11-11,449.679657,473.578857,449.524933,462.960541,462.960541,14075403511 2020-11-12,462.959534,467.677826,452.072418,461.005280,461.005280,12877327234 2020-11-13,461.005493,475.217255,457.298248,474.626434,474.626434,13191505725 2020-11-14,474.626434,475.161438,452.986084,460.149841,460.149841,10312037942 2020-11-15,460.149902,460.994080,440.254333,447.559082,447.559082,10308617165 2020-11-16,447.558990,463.831024,445.501617,459.940308,459.940308,11441239444 2020-11-17,464.406647,482.232208,460.776611,480.360077,480.360077,14593057877 2020-11-18,480.346832,491.999908,465.830963,479.484070,479.484070,17880199224 2020-11-19,479.481018,480.121735,465.704254,471.630432,471.630432,12473929218 2020-11-20,471.631470,513.610352,471.631470,509.744568,509.744568,18629943296 2020-11-21,509.744598,550.227417,504.237762,549.486633,549.486633,20757099184 2020-11-22,549.486633,579.372498,514.517212,558.068115,558.068115,21967049601 2020-11-23,558.059509,609.987610,551.265259,608.454041,608.454041,27272302872 2020-11-24,608.522766,621.173401,593.835144,603.897766,603.897766,23281758100 2020-11-25,603.902039,605.094177,559.671387,570.686646,570.686646,20088492893 2020-11-26,570.514893,575.641479,485.497314,518.801147,518.801147,31104004592 2020-11-27,519.108093,530.777161,497.242615,517.493713,517.493713,16831105703 2020-11-28,517.597351,548.044861,508.125366,538.229797,538.229797,14770243833 2020-11-29,538.264587,576.602417,531.987549,575.758057,575.758057,15017517758 2020-11-30,575.757080,615.240540,571.537781,614.842529,614.842529,20276867833 2020-12-01,615.070313,635.160583,571.753967,587.324158,587.324158,27178964465 2020-12-02,587.261597,604.022461,578.741028,598.352356,598.352356,16883292129 2020-12-03,598.459229,622.452698,588.346375,616.708740,616.708740,16146190946 2020-12-04,616.722778,618.983154,569.283508,569.354187,569.354187,16337589997 2020-12-05,569.347656,596.595459,563.106628,596.595459,596.595459,13498010566 2020-12-06,596.568665,606.791931,584.411743,601.908997,601.908997,11290893016 2020-12-07,601.797119,602.917908,585.428650,591.843384,591.843384,10720480962 2020-12-08,591.900818,594.751587,552.469238,554.827759,554.827759,14398919320 2020-12-09,554.792908,577.288391,532.998413,573.479126,573.479126,15855915840 2020-12-10,573.504028,574.600159,549.784058,559.678528,559.678528,11672582040 2020-12-11,559.679199,560.376709,537.811646,545.797363,545.797363,11098819124 2020-12-12,545.578552,573.339417,545.245605,568.567322,568.567322,8534557897 2020-12-13,568.609863,593.781250,564.565979,589.663208,589.663208,9070377862 2020-12-14,589.782471,590.492981,577.118408,586.011169,586.011169,8125837102 2020-12-15,586.021790,596.247742,580.628784,589.355591,589.355591,9326645840 2020-12-16,589.378662,636.640320,582.039124,636.181824,636.181824,15817248373 2020-12-17,636.154175,673.834229,628.749390,642.868958,642.868958,25479532147 2020-12-18,642.916992,662.699097,632.356079,654.811951,654.811951,15756303983 2020-12-19,654.624207,668.769592,646.616211,659.297913,659.297913,12830893778 2020-12-20,659.185059,659.923706,625.014465,638.290833,638.290833,13375855442 2020-12-21,638.315186,646.846558,600.836060,609.817871,609.817871,14419493621 2020-12-22,609.420532,635.076599,589.552002,634.854187,634.854187,14745890080 2020-12-23,634.824585,637.122803,560.364258,583.714600,583.714600,15261413038 2020-12-24,584.135620,613.815186,568.596375,611.607178,611.607178,14317413703 2020-12-25,611.554565,633.061401,605.424438,626.410706,626.410706,13520927700 2020-12-26,626.498047,650.721436,617.402100,635.835815,635.835815,14761125202 2020-12-27,635.887146,711.393555,628.334961,682.642334,682.642334,26093552821 2020-12-28,683.205811,745.877747,683.205811,730.397339,730.397339,24222565862 2020-12-29,730.358704,737.952881,692.149414,731.520142,731.520142,18710683199 2020-12-30,731.472839,754.303223,720.988892,751.618958,751.618958,17294574210 2020-12-31,751.626648,754.299438,726.511902,737.803406,737.803406,13926846861 2021-01-01,737.708374,749.201843,719.792236,730.367554,730.367554,13652004358 2021-01-02,730.402649,786.798462,718.109497,774.534973,774.534973,19740771179 2021-01-03,774.511841,1006.565002,771.561646,975.507690,975.507690,45200463368 2021-01-04,977.058838,1153.189209,912.305359,1040.233032,1040.233032,56945985763 2021-01-05,1041.498779,1129.371460,986.811279,1100.006104,1100.006104,41535932781 2021-01-06,1101.005005,1209.428589,1064.233398,1207.112183,1207.112183,44699914188 2021-01-07,1208.078369,1282.579590,1167.443115,1225.678101,1225.678101,40468027280 2021-01-08,1225.967896,1273.827515,1076.081543,1224.197144,1224.197144,44334826666 2021-01-09,1223.740479,1303.871826,1182.270386,1281.077271,1281.077271,33233105361 2021-01-10,1280.871094,1347.926147,1194.715576,1262.246704,1262.246704,40616938053 2021-01-11,1261.622925,1261.622925,924.922607,1090.145386,1090.145386,60733630300 2021-01-12,1088.526733,1149.240234,1012.764160,1043.434570,1043.434570,37494601692 2021-01-13,1043.740967,1134.338501,994.549072,1130.739380,1130.739380,30109792795 2021-01-14,1130.231201,1244.163086,1093.060791,1218.453003,1218.453003,33410915929 2021-01-15,1221.877197,1250.505859,1090.721069,1171.834595,1171.834595,35972039310 2021-01-16,1171.443115,1290.053589,1157.623779,1233.537598,1233.537598,32319240157 2021-01-17,1233.453369,1265.644653,1174.388550,1230.172241,1230.172241,29258032819 2021-01-18,1230.313232,1259.450073,1187.311035,1257.279541,1257.279541,25817455560 2021-01-19,1257.434570,1432.300049,1254.522949,1377.295898,1377.295898,47195935190 2021-01-20,1375.248413,1405.744141,1243.299927,1382.274048,1382.274048,46784030909 2021-01-21,1382.684448,1382.684448,1098.476196,1121.570923,1121.570923,45932464754 2021-01-22,1118.889038,1271.687622,1046.596558,1236.512207,1236.512207,43918338506 2021-01-23,1235.267944,1272.151123,1200.893311,1230.990601,1230.990601,27253895441 2021-01-24,1231.210571,1395.111328,1225.274048,1391.609375,1391.609375,36418163554 2021-01-25,1390.639893,1467.784912,1304.973999,1324.414795,1324.414795,43565777745 2021-01-26,1323.741699,1376.085083,1253.340332,1357.058105,1357.058105,41572917750 2021-01-27,1358.333374,1368.074097,1215.311279,1253.187134,1253.187134,39394416990 2021-01-28,1251.279785,1321.613037,1226.173950,1298.101807,1298.101807,39790481941 2021-01-29,1369.086792,1428.981201,1292.240112,1382.522827,1382.522827,53611955259 2021-01-30,1382.231934,1402.399780,1328.529053,1376.115479,1376.115479,30616574234 2021-01-31,1376.823608,1378.916016,1288.501587,1314.986206,1314.986206,25198853581 2021-02-01,1314.855225,1373.845825,1274.357788,1369.040527,1369.040527,29210670920 2021-02-02,1369.505127,1542.990967,1362.771240,1515.193726,1515.193726,45437142801 2021-02-03,1514.769653,1660.909546,1510.010254,1660.909546,1660.909546,41874566399 2021-02-04,1661.170166,1689.186646,1561.853516,1594.762695,1594.762695,44396871836 2021-02-05,1594.793335,1756.510986,1594.793335,1718.650879,1718.650879,40108628454 2021-02-06,1717.797485,1738.314453,1649.068726,1677.846802,1677.846802,39873420648 2021-02-07,1677.605713,1690.036621,1501.750244,1614.227783,1614.227783,39889440151 2021-02-08,1613.642212,1770.590820,1571.579956,1746.616821,1746.616821,48012285956 2021-02-09,1746.926147,1815.963623,1711.620605,1768.035034,1768.035034,44180727529 2021-02-10,1768.039795,1826.696777,1686.542358,1744.243408,1744.243408,41916084617 2021-02-11,1743.714233,1806.539063,1708.679199,1783.797974,1783.797974,36021495262 2021-02-12,1783.489136,1861.356934,1744.168945,1843.532593,1843.532593,37905036865 2021-02-13,1843.986816,1871.603516,1770.612061,1814.109863,1814.109863,35359490535 2021-02-14,1814.372314,1848.154053,1789.914185,1805.084106,1805.084106,31439114900 2021-02-15,1804.676758,1833.830566,1683.906616,1779.791016,1779.791016,38955610883 2021-02-16,1778.945557,1824.518677,1729.641968,1781.067505,1781.067505,34269369268 2021-02-17,1781.350098,1853.667603,1736.705811,1848.458252,1848.458252,35955412703 2021-02-18,1848.206299,1949.903442,1848.206299,1937.449219,1937.449219,28255902969 2021-02-19,1938.859863,1969.546997,1896.684448,1960.164795,1960.164795,26268814253 2021-02-20,1959.902954,2036.286499,1830.531494,1919.534058,1919.534058,34696091102 2021-02-21,1918.673096,1974.259644,1890.368164,1935.601074,1935.601074,23626547717 2021-02-22,1935.557861,1936.453735,1580.626587,1781.992920,1781.992920,42409646036 2021-02-23,1781.409058,1781.409058,1378.840942,1570.203979,1570.203979,52029864713 2021-02-24,1571.476440,1710.983765,1511.018921,1626.575684,1626.575684,31329000537 2021-02-25,1625.393921,1670.224121,1465.058960,1475.703735,1475.703735,24481681873 2021-02-26,1478.653320,1559.028931,1407.979248,1446.033691,1446.033691,31435997881 2021-02-27,1446.929443,1524.932373,1433.786987,1459.973145,1459.973145,20742103233 2021-02-28,1459.860474,1468.391479,1300.472168,1416.048950,1416.048950,27637026080 2021-03-01,1417.151123,1567.694580,1416.416138,1564.707642,1564.707642,24032838645 2021-03-02,1564.063477,1597.610107,1461.325439,1492.608765,1492.608765,22523669722 2021-03-03,1491.451172,1650.360596,1481.905762,1575.853149,1575.853149,22674780680 2021-03-04,1574.623779,1622.953857,1511.103394,1541.914307,1541.914307,22906118718 2021-03-05,1541.541748,1547.878174,1450.891357,1533.275024,1533.275024,21067146937 2021-03-06,1532.372803,1669.106567,1519.141113,1654.741577,1654.741577,22746262366 2021-03-07,1655.392456,1730.924194,1636.564453,1723.153809,1723.153809,23809935410 2021-03-08,1724.229248,1835.192139,1670.942017,1834.727905,1834.727905,27630991158 2021-03-09,1835.148071,1868.048828,1804.266357,1868.048828,1868.048828,23461244507 2021-03-10,1868.489014,1873.803223,1766.490479,1799.166260,1799.166260,25154173185 2021-03-11,1798.033936,1843.818848,1734.617065,1826.194946,1826.194946,24013132909 2021-03-12,1826.546753,1839.497314,1728.980957,1772.102417,1772.102417,22435821312 2021-03-13,1772.166382,1937.645508,1733.639893,1924.685425,1924.685425,25014689475 2021-03-14,1923.863770,1930.779785,1845.119995,1854.564331,1854.564331,19344589211 2021-03-15,1854.086670,1889.196655,1749.606323,1791.702271,1791.702271,26244738810 2021-03-16,1792.413818,1817.060181,1720.053223,1806.971802,1806.971802,23828509590 2021-03-17,1807.056152,1839.818970,1749.179932,1823.449341,1823.449341,24512917348 2021-03-18,1823.158447,1848.646118,1705.716064,1782.855103,1782.855103,23263845504 2021-03-19,1782.568726,1841.196045,1746.473389,1817.624146,1817.624146,21249297710 2021-03-20,1817.522705,1874.708984,1811.728638,1812.634644,1812.634644,22677674970 2021-03-21,1812.606567,1823.353027,1764.139282,1788.217041,1788.217041,22977404620 2021-03-22,1788.362183,1811.968262,1674.299805,1691.333984,1691.333984,23599296129 2021-03-23,1690.871826,1725.108765,1662.539917,1678.650146,1678.650146,21998237965 2021-03-24,1678.002563,1740.428223,1570.787964,1593.413452,1593.413452,31228051473 2021-03-25,1593.123291,1625.911499,1560.370483,1595.359253,1595.359253,29650328701 2021-03-26,1595.210083,1702.922852,1594.736694,1702.842041,1702.842041,22548516548 2021-03-27,1703.036133,1732.824341,1674.319336,1716.494629,1716.494629,18102277710 2021-03-28,1716.405640,1728.584106,1672.660400,1691.355957,1691.355957,16599472938 2021-03-29,1691.263184,1837.187988,1683.716553,1819.684937,1819.684937,22796570548 2021-03-30,1819.466309,1860.974731,1793.922363,1846.033691,1846.033691,22512781703 2021-03-31,1846.098267,1947.837769,1793.002197,1918.362061,1918.362061,30226902621 2021-04-01,1919.157227,1989.055054,1912.178467,1977.276855,1977.276855,30914259795 2021-04-02,1976.932739,2152.451904,1960.678711,2143.225586,2143.225586,34862511022 2021-04-03,2142.895996,2144.962402,2028.422485,2028.422485,2028.422485,32011518871 2021-04-04,2027.671265,2110.353516,2007.111816,2093.122803,2093.122803,26006501902 2021-04-05,2093.260742,2140.985352,2032.387695,2107.887207,2107.887207,28889391170 2021-04-06,2109.493164,2151.223389,2057.609131,2118.378906,2118.378906,29222865881 2021-04-07,2117.728516,2133.187500,1945.442139,1971.077271,1971.077271,36116271935 2021-04-08,1969.133179,2091.516357,1959.079468,2088.573730,2088.573730,25312956529 2021-04-09,2088.772217,2102.873779,2055.163330,2072.108887,2072.108887,19812472092 2021-04-10,2071.111572,2196.996338,2062.787598,2135.942139,2135.942139,24986243611 2021-04-11,2136.156982,2165.191406,2119.865723,2157.656982,2157.656982,19692836132 2021-04-12,2157.361816,2199.718750,2110.368896,2139.353271,2139.353271,21727936609 2021-04-13,2139.364258,2318.423340,2138.559570,2299.187744,2299.187744,29456642939 2021-04-14,2299.347900,2449.687500,2284.563721,2435.104980,2435.104980,35592822986 2021-04-15,2436.034668,2544.267334,2409.924072,2519.116211,2519.116211,32325606817 2021-04-16,2516.601807,2547.555664,2318.675049,2431.946533,2431.946533,36196928256 2021-04-17,2429.980957,2497.385254,2333.682861,2344.895020,2344.895020,32349808978 2021-04-18,2346.452393,2365.460449,2011.766846,2237.136963,2237.136963,50696368718 2021-04-19,2238.032715,2276.776855,2086.688721,2166.188721,2166.188721,34060654971 2021-04-20,2161.939453,2345.834961,2060.143799,2330.210938,2330.210938,39433483315 2021-04-21,2331.160156,2467.200684,2238.366943,2364.751709,2364.751709,38899067643 2021-04-22,2357.871094,2641.094971,2315.960205,2403.535156,2403.535156,53575904724 2021-04-23,2401.256348,2439.537109,2117.039551,2363.586182,2363.586182,55413933925 2021-04-24,2367.199219,2367.740967,2163.693115,2211.625732,2211.625732,31854226936 2021-04-25,2214.413818,2354.086670,2172.515137,2316.059570,2316.059570,31814355546 2021-04-26,2319.478027,2536.337402,2308.315186,2534.481689,2534.481689,35208325408 2021-04-27,2534.031250,2676.392822,2485.375000,2662.865234,2662.865234,32275969215 2021-04-28,2664.685547,2757.477295,2564.081543,2746.380127,2746.380127,34269031076 2021-04-29,2748.649658,2797.972412,2672.106689,2756.876953,2756.876953,32578127990 2021-04-30,2757.734131,2796.054932,2728.169922,2773.207031,2773.207031,29777179889 2021-05-01,2772.838379,2951.440918,2755.908447,2945.892822,2945.892822,28726205272 2021-05-02,2945.560059,2984.891846,2860.526123,2952.056152,2952.056152,28032013047 2021-05-03,2951.175781,3450.037842,2951.175781,3431.086182,3431.086182,49174290212 2021-05-04,3431.131592,3523.585938,3180.742676,3253.629395,3253.629395,62402045158 2021-05-05,3240.554688,3541.462646,3213.101563,3522.783203,3522.783203,48334198383 2021-05-06,3524.930908,3598.895996,3386.239990,3490.880371,3490.880371,44300394788 2021-05-07,3490.105225,3573.290039,3370.261963,3484.729004,3484.729004,39607240515 2021-05-08,3481.988037,3950.165039,3453.768555,3902.647705,3902.647705,50208491286 2021-05-09,3911.463135,3981.259033,3743.989014,3928.844727,3928.844727,50568290278 2021-05-10,3924.413330,4197.473145,3684.451660,3952.293945,3952.293945,62691789007 2021-05-11,3948.271973,4178.208984,3783.889404,4168.701172,4168.701172,52679737865 2021-05-12,4174.635742,4362.350586,3785.848633,3785.848633,3785.848633,69023382175 2021-05-13,3828.918457,4032.563477,3549.407227,3715.148438,3715.148438,78398214539 2021-05-14,3720.122314,4171.017090,3703.399902,4079.057373,4079.057373,48174271215 2021-05-15,4075.951660,4129.185547,3638.122070,3638.122070,3638.122070,42422321751 2021-05-16,3641.830811,3878.895996,3350.951660,3587.506104,3587.506104,47359478734 2021-05-17,3581.343018,3587.765625,3129.008789,3282.397705,3282.397705,54061732774 2021-05-18,3276.872314,3562.465088,3246.404053,3380.070068,3380.070068,40416525218 2021-05-19,3382.657227,3437.935791,1952.460205,2460.679199,2460.679199,84482912776 2021-05-20,2439.638672,2993.145264,2170.229004,2784.294189,2784.294189,67610826680 2021-05-21,2772.341309,2938.205078,2113.347168,2430.621338,2430.621338,53774070802 2021-05-22,2436.014648,2483.983154,2168.124268,2295.705566,2295.705566,42089937660 2021-05-23,2298.367188,2384.411621,1737.468750,2109.579834,2109.579834,56005721977 2021-05-24,2099.936035,2672.595703,2090.639648,2643.591064,2643.591064,53697121740 2021-05-25,2649.033203,2750.534912,2394.355469,2706.628906,2706.628906,49558333256 2021-05-26,2707.052734,2911.735596,2652.094482,2888.698730,2888.698730,42499766020 2021-05-27,2888.752441,2888.752441,2642.607910,2736.488525,2736.488525,33373635283 2021-05-28,2742.468994,2761.363281,2336.361328,2419.906250,2419.906250,39999114805 2021-05-29,2414.067139,2566.938477,2208.490967,2279.514160,2279.514160,33773720220 2021-05-30,2278.288818,2472.187744,2188.834473,2390.305420,2390.305420,25876619428 2021-05-31,2387.198486,2715.854980,2279.505127,2714.945313,2714.945313,31007383150 2021-06-01,2707.560547,2739.737549,2531.160645,2633.518311,2633.518311,27363223090 2021-06-02,2634.456055,2801.392334,2555.401367,2706.125000,2706.125000,27723267359 2021-06-03,2708.376221,2891.254883,2667.684326,2855.126465,2855.126465,30038207402 2021-06-04,2857.165527,2857.165527,2562.637451,2688.195068,2688.195068,34173841611 2021-06-05,2691.619385,2817.484863,2558.233643,2630.576904,2630.576904,30496672724 2021-06-06,2629.748779,2743.441162,2616.162354,2715.092773,2715.092773,25311639414 2021-06-07,2713.047363,2845.185059,2583.995117,2590.263184,2590.263184,30600111277 2021-06-08,2594.602295,2620.846191,2315.546631,2517.438721,2517.438721,41909736778 2021-06-09,2510.199219,2625.070557,2412.197754,2608.267090,2608.267090,36075832186 2021-06-10,2611.142578,2619.957764,2435.401611,2471.518555,2471.518555,28753626390 2021-06-11,2472.858887,2495.414795,2326.869629,2353.768799,2353.768799,24832564195 2021-06-12,2354.752197,2447.227783,2265.758057,2372.484375,2372.484375,25724364410 2021-06-13,2372.690186,2547.367920,2312.640137,2508.391602,2508.391602,27092945370 2021-06-14,2508.770508,2606.432861,2469.388184,2537.891113,2537.891113,26964576331 2021-06-15,2587.762695,2639.229248,2515.153076,2610.936768,2610.936768,29005279219 2021-06-16,2544.864746,2554.628906,2354.350586,2367.663574,2367.663574,24101926180 2021-06-17,2367.306396,2457.175537,2312.301514,2372.001953,2372.001953,21871633186 2021-06-18,2374.586914,2377.195068,2147.308350,2231.733154,2231.733154,22752818388 2021-06-19,2235.159180,2278.415039,2168.885010,2178.499023,2178.499023,18765854896 2021-06-20,2171.337891,2275.382813,2049.962646,2246.364502,2246.364502,22535930423 2021-06-21,2245.317871,2259.464111,1867.185425,1888.447510,1888.447510,33745173825 2021-06-22,1886.667603,1993.159790,1707.600586,1874.950073,1874.950073,35547251725 2021-06-23,1878.625000,2043.530396,1827.571533,1989.736328,1989.736328,28408659206 2021-06-24,1968.957397,2032.339355,1887.432007,1988.456299,1988.456299,20272845769 2021-06-25,1989.215820,2017.759521,1794.400391,1813.217285,1813.217285,22774334998 2021-06-26,1810.884277,1850.179810,1719.559448,1829.239258,1829.239258,20637542361 2021-06-27,1830.996948,1979.958130,1811.245850,1978.894653,1978.894653,19885474742 2021-06-28,1981.386475,2139.805420,1963.615479,2079.657471,2079.657471,25514602841 2021-06-29,2083.448730,2242.238770,2076.240234,2160.768311,2160.768311,24815124419 2021-06-30,2164.216309,2282.989014,2090.760742,2274.547607,2274.547607,25828056268 2021-07-01,2274.397461,2274.397461,2081.081055,2113.605469,2113.605469,29061701793 2021-07-02,2109.892578,2155.596436,2021.824829,2150.040283,2150.040283,31796212554 2021-07-03,2150.834961,2237.567139,2117.590088,2226.114258,2226.114258,17433361641 2021-07-04,2226.550293,2384.286865,2190.837646,2321.724121,2321.724121,18787107473 2021-07-05,2321.922852,2321.922852,2163.041504,2198.582520,2198.582520,20103794829 2021-07-06,2197.919434,2346.294922,2197.919434,2324.679443,2324.679443,20891861314 2021-07-07,2323.208496,2403.773438,2298.026855,2315.161865,2315.161865,22398345285 2021-07-08,2317.949219,2324.006836,2089.414307,2120.026367,2120.026367,23188123689 2021-07-09,2115.573975,2185.376221,2051.066650,2146.692383,2146.692383,23029574602 2021-07-10,2146.999756,2190.124023,2081.923584,2111.403564,2111.403564,17581542471 2021-07-11,2110.875732,2172.653320,2083.803711,2139.664795,2139.664795,14705386138 2021-07-12,2140.506836,2167.710205,2011.018921,2036.721069,2036.721069,17768129077 2021-07-13,2034.098389,2040.693604,1922.577881,1940.083984,1940.083984,16621628658 2021-07-14,1941.167847,2015.107422,1869.223145,1994.331299,1994.331299,17342819679 2021-07-15,1994.712036,2037.742554,1883.272217,1911.175659,1911.175659,15688092552 2021-07-16,1916.598389,1959.696289,1853.590332,1880.382935,1880.382935,14884569147 2021-07-17,1876.881348,1917.597900,1855.590820,1898.825195,1898.825195,13364282076 2021-07-18,1900.194336,1988.336426,1883.012573,1895.552124,1895.552124,13791868728 2021-07-19,1893.053589,1916.118042,1807.909912,1817.296631,1817.296631,14157735481 2021-07-20,1819.082031,1836.998047,1722.050781,1787.510742,1787.510742,17368597636 2021-07-21,1786.276245,2025.680420,1759.023315,1990.970825,1990.970825,21253359756 2021-07-22,1994.822876,2044.116455,1954.297852,2025.202759,2025.202759,17495480331 2021-07-23,2025.105713,2129.441162,2000.436279,2124.776611,2124.776611,16200392492 2021-07-24,2123.961182,2197.649414,2107.323486,2189.218750,2189.218750,16057446601 2021-07-25,2187.145508,2194.438232,2108.829834,2191.373779,2191.373779,14566483636 2021-07-26,2191.309814,2428.817139,2177.329590,2233.366699,2233.366699,29614324233 2021-07-27,2230.197021,2316.950195,2154.731201,2298.333496,2298.333496,23067480378 2021-07-28,2302.081299,2341.777832,2250.914063,2296.545410,2296.545410,18991302378 2021-07-29,2299.011963,2396.451904,2273.404785,2380.956787,2380.956787,16313373113 2021-07-30,2382.545166,2469.704834,2322.337158,2466.961426,2466.961426,20212848934 2021-07-31,2461.575684,2551.161133,2423.816162,2536.209961,2536.209961,18001710283 2021-08-01,2530.462891,2695.429443,2520.931885,2561.852051,2561.852051,22697987055 2021-08-02,2557.774658,2665.730957,2511.375244,2610.153320,2610.153320,22162754104 2021-08-03,2609.413086,2630.314209,2449.353516,2502.349609,2502.349609,22696753413 2021-08-04,2508.544922,2764.443604,2463.469482,2724.619873,2724.619873,25038698173 2021-08-05,2725.669678,2840.430664,2540.684082,2827.328857,2827.328857,31057928075 2021-08-06,2827.503418,2944.903320,2727.792725,2890.941650,2890.941650,26528577879 2021-08-07,2891.707520,3170.229736,2868.535645,3157.238770,3157.238770,33081467129 2021-08-08,3161.232666,3184.604004,2951.747314,3013.732666,3013.732666,28433638008 2021-08-09,3012.885742,3185.701172,2900.926025,3167.856201,3167.856201,31983260936 2021-08-10,3163.050049,3228.940674,3059.229004,3141.691162,3141.691162,27605221710 2021-08-11,3142.830322,3269.209473,3122.916504,3164.245117,3164.245117,26729035052 2021-08-12,3164.175781,3236.314697,2984.166992,3043.414307,3043.414307,25403699845 2021-08-13,3049.001221,3324.671631,3037.676025,3322.211670,3322.211670,23868866254 2021-08-14,3322.762695,3329.281006,3214.519775,3265.443359,3265.443359,19860862133 2021-08-15,3266.276123,3320.084229,3117.791748,3310.504150,3310.504150,22166205051 2021-08-16,3309.422119,3333.994873,3139.778564,3156.509521,3156.509521,23080039949 2021-08-17,3149.380371,3288.812744,2996.468262,3014.845947,3014.845947,25509056745 2021-08-18,3011.963623,3124.976074,2959.028320,3020.089844,3020.089844,21539248425 2021-08-19,3019.126953,3184.435547,2963.150146,3182.702148,3182.702148,19546290360 2021-08-20,3182.162598,3298.246582,3178.103760,3286.935303,3286.935303,20885619828 2021-08-21,3286.931641,3307.351563,3209.866211,3226.083984,3226.083984,18113977628 2021-08-22,3226.227295,3272.733154,3142.007080,3242.115479,3242.115479,15983278460 2021-08-23,3241.357422,3373.384277,3235.851318,3319.257324,3319.257324,20511110509 2021-08-24,3324.855469,3358.688232,3154.121338,3172.456299,3172.456299,20131028906 2021-08-25,3174.269775,3248.727295,3086.114990,3224.915283,3224.915283,18902728235 2021-08-26,3229.452148,3247.775391,3062.338867,3101.602051,3101.602051,17839857664 ================================================ FILE: docs/third-party/data-science/files/matplotlib/euro-dollar-clean.csv ================================================ year,month,day,dollar 2021,9,20,1.1711 2021,9,17,1.178 2021,9,16,1.1763 2021,9,15,1.1824 2021,9,14,1.1814 2021,9,13,1.178 2021,9,10,1.1841 2021,9,9,1.1838 2021,9,8,1.1827 2021,9,7,1.186 2021,9,6,1.1864 2021,9,3,1.1872 2021,9,2,1.1846 2021,9,1,1.1817 2021,8,31,1.1834 2021,8,30,1.1801 2021,8,27,1.1761 2021,8,26,1.1767 2021,8,25,1.1736 2021,8,24,1.174 2021,8,23,1.1718 2021,8,20,1.1671 2021,8,19,1.1696 2021,8,18,1.1723 2021,8,17,1.1767 2021,8,16,1.1772 2021,8,13,1.1765 2021,8,12,1.1739 2021,8,11,1.1718 2021,8,10,1.1722 2021,8,9,1.1761 2021,8,6,1.1807 2021,8,5,1.185 2021,8,4,1.1861 2021,8,3,1.1885 2021,8,2,1.1886 2021,7,30,1.1891 2021,7,29,1.1873 2021,7,28,1.1807 2021,7,27,1.181 2021,7,26,1.1787 2021,7,23,1.1767 2021,7,22,1.1775 2021,7,21,1.1772 2021,7,20,1.1775 2021,7,19,1.1766 2021,7,16,1.1802 2021,7,15,1.1809 2021,7,14,1.1812 2021,7,13,1.1844 2021,7,12,1.1852 2021,7,9,1.1858 2021,7,8,1.1838 2021,7,7,1.1831 2021,7,6,1.1838 2021,7,5,1.1866 2021,7,2,1.1823 2021,7,1,1.1884 2021,6,30,1.1884 2021,6,29,1.1888 2021,6,28,1.191 2021,6,25,1.195 2021,6,24,1.1936 2021,6,23,1.1951 2021,6,22,1.1894 2021,6,21,1.1891 2021,6,18,1.1898 2021,6,17,1.1937 2021,6,16,1.2124 2021,6,15,1.2108 2021,6,14,1.2112 2021,6,11,1.2125 2021,6,10,1.2174 2021,6,9,1.2195 2021,6,8,1.2182 2021,6,7,1.2162 2021,6,4,1.2117 2021,6,3,1.2187 2021,6,2,1.2186 2021,6,1,1.2225 2021,5,31,1.2201 2021,5,28,1.2142 2021,5,27,1.2198 2021,5,26,1.2229 2021,5,25,1.2264 2021,5,24,1.2212 2021,5,21,1.2188 2021,5,20,1.2203 2021,5,19,1.2212 2021,5,18,1.2222 2021,5,17,1.2143 2021,5,14,1.2123 2021,5,13,1.2081 2021,5,12,1.2118 2021,5,11,1.217 2021,5,10,1.2169 2021,5,7,1.2059 2021,5,6,1.206 2021,5,5,1.2005 2021,5,4,1.2021 2021,5,3,1.2044 2021,4,30,1.2082 2021,4,29,1.2129 2021,4,28,1.207 2021,4,27,1.2088 2021,4,26,1.2085 2021,4,23,1.2066 2021,4,22,1.2046 2021,4,21,1.2007 2021,4,20,1.2051 2021,4,19,1.2035 2021,4,16,1.1986 2021,4,15,1.197 2021,4,14,1.1964 2021,4,13,1.1896 2021,4,12,1.1904 2021,4,9,1.1888 2021,4,8,1.1873 2021,4,7,1.1884 2021,4,6,1.1812 2021,4,1,1.1746 2021,3,31,1.1725 2021,3,30,1.1741 2021,3,29,1.1784 2021,3,26,1.1782 2021,3,25,1.1802 2021,3,24,1.1825 2021,3,23,1.1883 2021,3,22,1.1926 2021,3,19,1.1891 2021,3,18,1.1912 2021,3,17,1.1907 2021,3,16,1.1926 2021,3,15,1.192 2021,3,12,1.1933 2021,3,11,1.1969 2021,3,10,1.1892 2021,3,9,1.1894 2021,3,8,1.1866 2021,3,5,1.1938 2021,3,4,1.2034 2021,3,3,1.2048 2021,3,2,1.2028 2021,3,1,1.2053 2021,2,26,1.2121 2021,2,25,1.2225 2021,2,24,1.2146 2021,2,23,1.2143 2021,2,22,1.2133 2021,2,19,1.2139 2021,2,18,1.2084 2021,2,17,1.206 2021,2,16,1.2143 2021,2,15,1.2129 2021,2,12,1.2108 2021,2,11,1.2147 2021,2,10,1.2127 2021,2,9,1.2104 2021,2,8,1.2025 2021,2,5,1.1983 2021,2,4,1.1996 2021,2,3,1.2017 2021,2,2,1.2044 2021,2,1,1.2084 2021,1,29,1.2136 2021,1,28,1.2091 2021,1,27,1.2114 2021,1,26,1.2143 2021,1,25,1.2152 2021,1,22,1.2158 2021,1,21,1.2158 2021,1,20,1.2101 2021,1,19,1.2132 2021,1,18,1.2064 2021,1,15,1.2123 2021,1,14,1.2124 2021,1,13,1.2166 2021,1,12,1.2161 2021,1,11,1.2163 2021,1,8,1.225 2021,1,7,1.2276 2021,1,6,1.2338 2021,1,5,1.2271 2021,1,4,1.2296 2020,12,31,1.2271 2020,12,30,1.2281 2020,12,29,1.2259 2020,12,28,1.2219 2020,12,24,1.2193 2020,12,23,1.2166 2020,12,22,1.2239 2020,12,21,1.2173 2020,12,18,1.2259 2020,12,17,1.2246 2020,12,16,1.2189 2020,12,15,1.214 2020,12,14,1.2162 2020,12,11,1.2127 2020,12,10,1.2115 2020,12,9,1.2109 2020,12,8,1.2114 2020,12,7,1.2128 2020,12,4,1.2159 2020,12,3,1.2151 2020,12,2,1.2066 2020,12,1,1.1968 2020,11,30,1.198 2020,11,27,1.1922 2020,11,26,1.19 2020,11,25,1.189 2020,11,24,1.1865 2020,11,23,1.1901 2020,11,20,1.1863 2020,11,19,1.1832 2020,11,18,1.1868 2020,11,17,1.1882 2020,11,16,1.183 2020,11,13,1.1815 2020,11,12,1.1791 2020,11,11,1.1766 2020,11,10,1.1808 2020,11,9,1.1883 2020,11,6,1.187 2020,11,5,1.1855 2020,11,4,1.1721 2020,11,3,1.1702 2020,11,2,1.1652 2020,10,30,1.1698 2020,10,29,1.1704 2020,10,28,1.1727 2020,10,27,1.1832 2020,10,26,1.1819 2020,10,23,1.1856 2020,10,22,1.1821 2020,10,21,1.1852 2020,10,20,1.181 2020,10,19,1.1785 2020,10,16,1.1741 2020,10,15,1.1698 2020,10,14,1.175 2020,10,13,1.1787 2020,10,12,1.1799 2020,10,9,1.1795 2020,10,8,1.1765 2020,10,7,1.177 2020,10,6,1.1795 2020,10,5,1.1768 2020,10,2,1.173 2020,10,1,1.1752 2020,9,30,1.1708 2020,9,29,1.1702 2020,9,28,1.167 2020,9,25,1.1634 2020,9,24,1.1645 2020,9,23,1.1692 2020,9,22,1.174 2020,9,21,1.1787 2020,9,18,1.1833 2020,9,17,1.1797 2020,9,16,1.1869 2020,9,15,1.1892 2020,9,14,1.1876 2020,9,11,1.1854 2020,9,10,1.1849 2020,9,9,1.1773 2020,9,8,1.1785 2020,9,7,1.1824 2020,9,4,1.1842 2020,9,3,1.1813 2020,9,2,1.1861 2020,9,1,1.1987 2020,8,31,1.194 2020,8,28,1.1915 2020,8,27,1.1806 2020,8,26,1.1789 2020,8,25,1.1814 2020,8,24,1.1847 2020,8,21,1.1769 2020,8,20,1.185 2020,8,19,1.1933 2020,8,18,1.1906 2020,8,17,1.1853 2020,8,14,1.1813 2020,8,13,1.1833 2020,8,12,1.1771 2020,8,11,1.1783 2020,8,10,1.1763 2020,8,7,1.1817 2020,8,6,1.1843 2020,8,5,1.1854 2020,8,4,1.1765 2020,8,3,1.1726 2020,7,31,1.1848 2020,7,30,1.1743 2020,7,29,1.1725 2020,7,28,1.1717 2020,7,27,1.176 2020,7,24,1.1608 2020,7,23,1.1569 2020,7,22,1.1578 2020,7,21,1.1443 2020,7,20,1.1448 2020,7,17,1.1428 2020,7,16,1.1414 2020,7,15,1.1444 2020,7,14,1.1375 2020,7,13,1.1329 2020,7,10,1.1276 2020,7,9,1.1342 2020,7,8,1.1286 2020,7,7,1.129 2020,7,6,1.1325 2020,7,3,1.1224 2020,7,2,1.1286 2020,7,1,1.12 2020,6,30,1.1198 2020,6,29,1.1284 2020,6,26,1.1213 2020,6,25,1.12 2020,6,24,1.128 2020,6,23,1.1318 2020,6,22,1.1213 2020,6,19,1.121 2020,6,18,1.1222 2020,6,17,1.1232 2020,6,16,1.1308 2020,6,15,1.1253 2020,6,12,1.1304 2020,6,11,1.1348 2020,6,10,1.1375 2020,6,9,1.1294 2020,6,8,1.1285 2020,6,5,1.133 2020,6,4,1.125 2020,6,3,1.1194 2020,6,2,1.1174 2020,6,1,1.1116 2020,5,29,1.1136 2020,5,28,1.1016 2020,5,27,1.0991 2020,5,26,1.0975 2020,5,25,1.091 2020,5,22,1.0904 2020,5,21,1.1 2020,5,20,1.0958 2020,5,19,1.095 2020,5,18,1.0832 2020,5,15,1.0798 2020,5,14,1.0792 2020,5,13,1.0875 2020,5,12,1.0858 2020,5,11,1.0824 2020,5,8,1.0843 2020,5,7,1.0783 2020,5,6,1.0807 2020,5,5,1.0843 2020,5,4,1.0942 2020,4,30,1.0876 2020,4,29,1.0842 2020,4,28,1.0877 2020,4,27,1.0852 2020,4,24,1.08 2020,4,23,1.0772 2020,4,22,1.0867 2020,4,21,1.0837 2020,4,20,1.086 2020,4,17,1.086 2020,4,16,1.0888 2020,4,15,1.0903 2020,4,14,1.0963 2020,4,9,1.0867 2020,4,8,1.0871 2020,4,7,1.0885 2020,4,6,1.0791 2020,4,3,1.0785 2020,4,2,1.0906 2020,4,1,1.0936 2020,3,31,1.0956 2020,3,30,1.1034 2020,3,27,1.0977 2020,3,26,1.0981 2020,3,25,1.0827 2020,3,24,1.0843 2020,3,23,1.0783 2020,3,20,1.0707 2020,3,19,1.0801 2020,3,18,1.0934 2020,3,17,1.0982 2020,3,16,1.1157 2020,3,13,1.1104 2020,3,12,1.124 2020,3,11,1.1336 2020,3,10,1.139 2020,3,9,1.1456 2020,3,6,1.1336 2020,3,5,1.1187 2020,3,4,1.1125 2020,3,3,1.1117 2020,3,2,1.1122 2020,2,28,1.0977 2020,2,27,1.0964 2020,2,26,1.0875 2020,2,25,1.084 2020,2,24,1.0818 2020,2,21,1.0801 2020,2,20,1.079 2020,2,19,1.08 2020,2,18,1.0816 2020,2,17,1.0835 2020,2,14,1.0842 2020,2,13,1.0867 2020,2,12,1.0914 2020,2,11,1.0901 2020,2,10,1.0951 2020,2,7,1.0969 2020,2,6,1.1003 2020,2,5,1.1023 2020,2,4,1.1048 2020,2,3,1.1066 2020,1,31,1.1052 2020,1,30,1.1029 2020,1,29,1.1001 2020,1,28,1.1005 2020,1,27,1.1025 2020,1,24,1.1035 2020,1,23,1.1091 2020,1,22,1.1088 2020,1,21,1.1115 2020,1,20,1.1085 2020,1,17,1.1108 2020,1,16,1.1169 2020,1,15,1.1142 2020,1,14,1.1115 2020,1,13,1.1126 2020,1,10,1.1091 2020,1,9,1.111 2020,1,8,1.1115 2020,1,7,1.1172 2020,1,6,1.1194 2020,1,3,1.1147 2020,1,2,1.1193 2019,12,31,1.1234 2019,12,30,1.1189 2019,12,27,1.1153 2019,12,24,1.108 2019,12,23,1.1075 2019,12,20,1.1097 2019,12,19,1.1117 2019,12,18,1.1115 2019,12,17,1.1162 2019,12,16,1.1146 2019,12,13,1.1174 2019,12,12,1.1137 2019,12,11,1.1075 2019,12,10,1.1077 2019,12,9,1.1075 2019,12,6,1.1094 2019,12,5,1.1094 2019,12,4,1.1081 2019,12,3,1.1071 2019,12,2,1.1023 2019,11,29,1.0982 2019,11,28,1.1005 2019,11,27,1.1009 2019,11,26,1.102 2019,11,25,1.1008 2019,11,22,1.1058 2019,11,21,1.1091 2019,11,20,1.1059 2019,11,19,1.1077 2019,11,18,1.1061 2019,11,15,1.1034 2019,11,14,1.0997 2019,11,13,1.1006 2019,11,12,1.1015 2019,11,11,1.1041 2019,11,8,1.1034 2019,11,7,1.1077 2019,11,6,1.109 2019,11,5,1.1109 2019,11,4,1.1158 2019,11,1,1.1139 2019,10,31,1.1154 2019,10,30,1.1106 2019,10,29,1.1095 2019,10,28,1.1087 2019,10,25,1.1107 2019,10,24,1.1128 2019,10,23,1.1123 2019,10,22,1.113 2019,10,21,1.1173 2019,10,18,1.1144 2019,10,17,1.1113 2019,10,16,1.1025 2019,10,15,1.1007 2019,10,14,1.1031 2019,10,11,1.1043 2019,10,10,1.103 2019,10,9,1.0981 2019,10,8,1.0986 2019,10,7,1.0993 2019,10,4,1.0979 2019,10,3,1.0951 2019,10,2,1.0925 2019,10,1,1.0898 2019,9,30,1.0889 2019,9,27,1.0935 2019,9,26,1.0938 2019,9,25,1.0982 2019,9,24,1.1003 2019,9,23,1.0985 2019,9,20,1.103 2019,9,19,1.1067 2019,9,18,1.1053 2019,9,17,1.1026 2019,9,16,1.1031 2019,9,13,1.1096 2019,9,12,1.0963 2019,9,11,1.1003 2019,9,10,1.104 2019,9,9,1.1033 2019,9,6,1.1027 2019,9,5,1.1058 2019,9,4,1.1018 2019,9,3,1.0937 2019,9,2,1.0968 2019,8,30,1.1036 2019,8,29,1.1072 2019,8,28,1.1083 2019,8,27,1.1104 2019,8,26,1.1116 2019,8,23,1.1065 2019,8,22,1.1083 2019,8,21,1.1104 2019,8,20,1.1076 2019,8,19,1.1103 2019,8,16,1.1076 2019,8,15,1.115 2019,8,14,1.1188 2019,8,13,1.1222 2019,8,12,1.1194 2019,8,9,1.1198 2019,8,8,1.1193 2019,8,7,1.1202 2019,8,6,1.1187 2019,8,5,1.1182 2019,8,2,1.1106 2019,8,1,1.1037 2019,7,31,1.1151 2019,7,30,1.1154 2019,7,29,1.1119 2019,7,26,1.1138 2019,7,25,1.1115 2019,7,24,1.114 2019,7,23,1.1173 2019,7,22,1.1215 2019,7,19,1.1226 2019,7,18,1.1216 2019,7,17,1.1215 2019,7,16,1.1223 2019,7,15,1.1269 2019,7,12,1.1253 2019,7,11,1.1285 2019,7,10,1.122 2019,7,9,1.1205 2019,7,8,1.1215 2019,7,5,1.126 2019,7,4,1.1288 2019,7,3,1.1293 2019,7,2,1.1301 2019,7,1,1.1349 2019,6,28,1.138 2019,6,27,1.137 2019,6,26,1.1362 2019,6,25,1.1388 2019,6,24,1.1394 2019,6,21,1.1316 2019,6,20,1.1307 2019,6,19,1.1207 2019,6,18,1.1187 2019,6,17,1.1234 2019,6,14,1.1265 2019,6,13,1.1289 2019,6,12,1.1323 2019,6,11,1.132 2019,6,10,1.1301 2019,6,7,1.1273 2019,6,6,1.1266 2019,6,5,1.1257 2019,6,4,1.1244 2019,6,3,1.1185 2019,5,31,1.1151 2019,5,30,1.1134 2019,5,29,1.1156 2019,5,28,1.1192 2019,5,27,1.1198 2019,5,24,1.1187 2019,5,23,1.1139 2019,5,22,1.1171 2019,5,21,1.1161 2019,5,20,1.1167 2019,5,17,1.1172 2019,5,16,1.1203 2019,5,15,1.1183 2019,5,14,1.1226 2019,5,13,1.1245 2019,5,10,1.123 2019,5,9,1.1193 2019,5,8,1.1202 2019,5,7,1.1185 2019,5,6,1.1199 2019,5,3,1.1155 2019,5,2,1.1212 2019,4,30,1.1218 2019,4,29,1.115 2019,4,26,1.1133 2019,4,25,1.1123 2019,4,24,1.1209 2019,4,23,1.1245 2019,4,18,1.125 2019,4,17,1.1301 2019,4,16,1.1305 2019,4,15,1.1313 2019,4,12,1.1321 2019,4,11,1.1264 2019,4,10,1.1279 2019,4,9,1.1277 2019,4,8,1.1246 2019,4,5,1.1233 2019,4,4,1.1219 2019,4,3,1.1243 2019,4,2,1.12 2019,4,1,1.1236 2019,3,29,1.1235 2019,3,28,1.1218 2019,3,27,1.1261 2019,3,26,1.1291 2019,3,25,1.1325 2019,3,22,1.1302 2019,3,21,1.1387 2019,3,20,1.1354 2019,3,19,1.1358 2019,3,18,1.1349 2019,3,15,1.1308 2019,3,14,1.1295 2019,3,13,1.1303 2019,3,12,1.1275 2019,3,11,1.1244 2019,3,8,1.1222 2019,3,7,1.1271 2019,3,6,1.1305 2019,3,5,1.1329 2019,3,4,1.1337 2019,3,1,1.1383 2019,2,28,1.1416 2019,2,27,1.1386 2019,2,26,1.1361 2019,2,25,1.1355 2019,2,22,1.1325 2019,2,21,1.1354 2019,2,20,1.1342 2019,2,19,1.1294 2019,2,18,1.1328 2019,2,15,1.126 2019,2,14,1.1268 2019,2,13,1.1305 2019,2,12,1.1296 2019,2,11,1.1309 2019,2,8,1.1346 2019,2,7,1.1345 2019,2,6,1.1394 2019,2,5,1.1423 2019,2,4,1.1445 2019,2,1,1.1471 2019,1,31,1.1488 2019,1,30,1.1429 2019,1,29,1.1422 2019,1,28,1.1418 2019,1,25,1.1346 2019,1,24,1.1341 2019,1,23,1.1367 2019,1,22,1.1354 2019,1,21,1.1362 2019,1,18,1.1402 2019,1,17,1.1396 2019,1,16,1.1389 2019,1,15,1.1424 2019,1,14,1.1467 2019,1,11,1.1533 2019,1,10,1.1535 2019,1,9,1.1455 2019,1,8,1.144 2019,1,7,1.1445 2019,1,4,1.1403 2019,1,3,1.1348 2019,1,2,1.1397 2018,12,31,1.145 2018,12,28,1.1454 2018,12,27,1.1377 2018,12,24,1.1408 2018,12,21,1.1414 2018,12,20,1.1451 2018,12,19,1.1405 2018,12,18,1.1377 2018,12,17,1.1341 2018,12,14,1.1285 2018,12,13,1.1371 2018,12,12,1.1346 2018,12,11,1.1379 2018,12,10,1.1425 2018,12,7,1.1371 2018,12,6,1.1351 2018,12,5,1.1354 2018,12,4,1.1409 2018,12,3,1.1332 2018,11,30,1.1359 2018,11,29,1.1387 2018,11,28,1.1284 2018,11,27,1.1328 2018,11,26,1.1363 2018,11,23,1.1352 2018,11,22,1.1403 2018,11,21,1.1409 2018,11,20,1.1421 2018,11,19,1.1427 2018,11,16,1.1346 2018,11,15,1.1305 2018,11,14,1.1296 2018,11,13,1.1261 2018,11,12,1.1265 2018,11,9,1.1346 2018,11,8,1.1424 2018,11,7,1.1487 2018,11,6,1.1428 2018,11,5,1.137 2018,11,2,1.1417 2018,11,1,1.1393 2018,10,31,1.1318 2018,10,30,1.1372 2018,10,29,1.1381 2018,10,26,1.1345 2018,10,25,1.1416 2018,10,24,1.1389 2018,10,23,1.1478 2018,10,22,1.1494 2018,10,19,1.147 2018,10,18,1.1505 2018,10,17,1.153 2018,10,16,1.1587 2018,10,15,1.1581 2018,10,12,1.1574 2018,10,11,1.1575 2018,10,10,1.15 2018,10,9,1.1435 2018,10,8,1.1478 2018,10,5,1.1506 2018,10,4,1.1502 2018,10,3,1.1548 2018,10,2,1.1543 2018,10,1,1.1606 2018,9,28,1.1576 2018,9,27,1.1707 2018,9,26,1.1737 2018,9,25,1.1777 2018,9,24,1.1773 2018,9,21,1.1759 2018,9,20,1.1769 2018,9,19,1.1667 2018,9,18,1.1697 2018,9,17,1.1671 2018,9,14,1.1689 2018,9,13,1.162 2018,9,12,1.1585 2018,9,11,1.1574 2018,9,10,1.1571 2018,9,7,1.1615 2018,9,6,1.1634 2018,9,5,1.1582 2018,9,4,1.1562 2018,9,3,1.1609 2018,8,31,1.1651 2018,8,30,1.1692 2018,8,29,1.166 2018,8,28,1.171 2018,8,27,1.1633 2018,8,24,1.1588 2018,8,23,1.1579 2018,8,22,1.1616 2018,8,21,1.1502 2018,8,20,1.142 2018,8,17,1.1391 2018,8,16,1.137 2018,8,15,1.1321 2018,8,14,1.1406 2018,8,13,1.1403 2018,8,10,1.1456 2018,8,9,1.1593 2018,8,8,1.1589 2018,8,7,1.1602 2018,8,6,1.1543 2018,8,3,1.1588 2018,8,2,1.1617 2018,8,1,1.1696 2018,7,31,1.1736 2018,7,30,1.1684 2018,7,27,1.1625 2018,7,26,1.1716 2018,7,25,1.169 2018,7,24,1.1706 2018,7,23,1.1716 2018,7,20,1.167 2018,7,19,1.1588 2018,7,18,1.1611 2018,7,17,1.1707 2018,7,16,1.172 2018,7,13,1.1643 2018,7,12,1.1658 2018,7,11,1.1735 2018,7,10,1.1713 2018,7,9,1.1789 2018,7,6,1.1724 2018,7,5,1.1709 2018,7,4,1.1642 2018,7,3,1.1665 2018,7,2,1.1639 2018,6,29,1.1658 2018,6,28,1.1583 2018,6,27,1.1616 2018,6,26,1.1672 2018,6,25,1.17 2018,6,22,1.1648 2018,6,21,1.1538 2018,6,20,1.1578 2018,6,19,1.1534 2018,6,18,1.1613 2018,6,15,1.1596 2018,6,14,1.173 2018,6,13,1.1764 2018,6,12,1.1788 2018,6,11,1.179 2018,6,8,1.1754 2018,6,7,1.1836 2018,6,6,1.1765 2018,6,5,1.1675 2018,6,4,1.1737 2018,6,1,1.1669 2018,5,31,1.1699 2018,5,30,1.1632 2018,5,29,1.1558 2018,5,28,1.1644 2018,5,25,1.1675 2018,5,24,1.1728 2018,5,23,1.1708 2018,5,22,1.1794 2018,5,21,1.1759 2018,5,18,1.1781 2018,5,17,1.1805 2018,5,16,1.1784 2018,5,15,1.1883 2018,5,14,1.1988 2018,5,11,1.1934 2018,5,10,1.1878 2018,5,9,1.1879 2018,5,8,1.187 2018,5,7,1.1902 2018,5,4,1.1969 2018,5,3,1.1992 2018,5,2,1.2007 2018,4,30,1.2079 2018,4,27,1.207 2018,4,26,1.2168 2018,4,25,1.2185 2018,4,24,1.2213 2018,4,23,1.2238 2018,4,20,1.2309 2018,4,19,1.2382 2018,4,18,1.2388 2018,4,17,1.2357 2018,4,16,1.237 2018,4,13,1.2317 2018,4,12,1.2323 2018,4,11,1.2384 2018,4,10,1.2361 2018,4,9,1.2304 2018,4,6,1.2234 2018,4,5,1.226 2018,4,4,1.2276 2018,4,3,1.2308 2018,3,29,1.2321 2018,3,28,1.2398 2018,3,27,1.2376 2018,3,26,1.2411 2018,3,23,1.2346 2018,3,22,1.2316 2018,3,21,1.2286 2018,3,20,1.2276 2018,3,19,1.2309 2018,3,16,1.2301 2018,3,15,1.2341 2018,3,14,1.2369 2018,3,13,1.2378 2018,3,12,1.2302 2018,3,9,1.2291 2018,3,8,1.2421 2018,3,7,1.2417 2018,3,6,1.2411 2018,3,5,1.2307 2018,3,2,1.2312 2018,3,1,1.2171 2018,2,28,1.2214 2018,2,27,1.2301 2018,2,26,1.232 2018,2,23,1.2299 2018,2,22,1.2276 2018,2,21,1.2312 2018,2,20,1.234 2018,2,19,1.241 2018,2,16,1.2464 2018,2,15,1.2493 2018,2,14,1.2348 2018,2,13,1.2333 2018,2,12,1.2263 2018,2,9,1.2273 2018,2,8,1.2252 2018,2,7,1.2338 2018,2,6,1.2329 2018,2,5,1.244 2018,2,2,1.2492 2018,2,1,1.2459 2018,1,31,1.2457 2018,1,30,1.2421 2018,1,29,1.2379 2018,1,26,1.2436 2018,1,25,1.2407 2018,1,24,1.2352 2018,1,23,1.2249 2018,1,22,1.2239 2018,1,19,1.2255 2018,1,18,1.2235 2018,1,17,1.2203 2018,1,16,1.223 2018,1,15,1.2277 2018,1,12,1.2137 2018,1,11,1.2017 2018,1,10,1.1992 2018,1,9,1.1932 2018,1,8,1.1973 2018,1,5,1.2045 2018,1,4,1.2065 2018,1,3,1.2023 2018,1,2,1.2065 2017,12,29,1.1993 2017,12,28,1.1934 2017,12,27,1.1895 2017,12,22,1.1853 2017,12,21,1.1859 2017,12,20,1.1845 2017,12,19,1.1823 2017,12,18,1.1795 2017,12,15,1.1806 2017,12,14,1.1845 2017,12,13,1.1736 2017,12,12,1.1766 2017,12,11,1.1796 2017,12,8,1.1742 2017,12,7,1.1786 2017,12,6,1.1817 2017,12,5,1.1847 2017,12,4,1.1865 2017,12,1,1.1885 2017,11,30,1.1849 2017,11,29,1.1827 2017,11,28,1.1888 2017,11,27,1.1952 2017,11,24,1.1877 2017,11,23,1.1848 2017,11,22,1.1749 2017,11,21,1.1718 2017,11,20,1.1781 2017,11,17,1.1795 2017,11,16,1.1771 2017,11,15,1.184 2017,11,14,1.1745 2017,11,13,1.1656 2017,11,10,1.1654 2017,11,9,1.163 2017,11,8,1.159 2017,11,7,1.1562 2017,11,6,1.159 2017,11,3,1.1657 2017,11,2,1.1645 2017,11,1,1.1612 2017,10,31,1.1638 2017,10,30,1.1612 2017,10,27,1.1605 2017,10,26,1.1753 2017,10,25,1.1785 2017,10,24,1.1761 2017,10,23,1.174 2017,10,20,1.1818 2017,10,19,1.1834 2017,10,18,1.1749 2017,10,17,1.1759 2017,10,16,1.1803 2017,10,13,1.181 2017,10,12,1.1856 2017,10,11,1.183 2017,10,10,1.1797 2017,10,9,1.1746 2017,10,6,1.1707 2017,10,5,1.1742 2017,10,4,1.1787 2017,10,3,1.1753 2017,10,2,1.1744 2017,9,29,1.1806 2017,9,28,1.1778 2017,9,27,1.1741 2017,9,26,1.1787 2017,9,25,1.1867 2017,9,22,1.1961 2017,9,21,1.1905 2017,9,20,1.2007 2017,9,19,1.1972 2017,9,18,1.1948 2017,9,15,1.1963 2017,9,14,1.1885 2017,9,13,1.1979 2017,9,12,1.1933 2017,9,11,1.1997 2017,9,8,1.206 2017,9,7,1.1971 2017,9,6,1.1931 2017,9,5,1.189 2017,9,4,1.1905 2017,9,1,1.192 2017,8,31,1.1825 2017,8,30,1.1916 2017,8,29,1.2048 2017,8,28,1.1925 2017,8,25,1.1808 2017,8,24,1.1806 2017,8,23,1.1799 2017,8,22,1.1771 2017,8,21,1.1761 2017,8,18,1.174 2017,8,17,1.1697 2017,8,16,1.171 2017,8,15,1.1744 2017,8,14,1.1797 2017,8,11,1.1765 2017,8,10,1.1732 2017,8,9,1.1731 2017,8,8,1.1814 2017,8,7,1.1797 2017,8,4,1.1868 2017,8,3,1.186 2017,8,2,1.1829 2017,8,1,1.1812 2017,7,31,1.1727 2017,7,28,1.1729 2017,7,27,1.1694 2017,7,26,1.1644 2017,7,25,1.1694 2017,7,24,1.1648 2017,7,21,1.1642 2017,7,20,1.1485 2017,7,19,1.1533 2017,7,18,1.1555 2017,7,17,1.1462 2017,7,14,1.1415 2017,7,13,1.1417 2017,7,12,1.1449 2017,7,11,1.1405 2017,7,10,1.1387 2017,7,7,1.1412 2017,7,6,1.1385 2017,7,5,1.1329 2017,7,4,1.1353 2017,7,3,1.1369 2017,6,30,1.1412 2017,6,29,1.1413 2017,6,28,1.1375 2017,6,27,1.1278 2017,6,26,1.1187 2017,6,23,1.1173 2017,6,22,1.1169 2017,6,21,1.1147 2017,6,20,1.1156 2017,6,19,1.1199 2017,6,16,1.1167 2017,6,15,1.1166 2017,6,14,1.1203 2017,6,13,1.1217 2017,6,12,1.1221 2017,6,9,1.1176 2017,6,8,1.1229 2017,6,7,1.1217 2017,6,6,1.1258 2017,6,5,1.1249 2017,6,2,1.1217 2017,6,1,1.1219 2017,5,31,1.1221 2017,5,30,1.1173 2017,5,29,1.1188 2017,5,26,1.1196 2017,5,25,1.1214 2017,5,24,1.1193 2017,5,23,1.1215 2017,5,22,1.1243 2017,5,19,1.1179 2017,5,18,1.1129 2017,5,17,1.1117 2017,5,16,1.1059 2017,5,15,1.0972 2017,5,12,1.0876 2017,5,11,1.086 2017,5,10,1.0882 2017,5,9,1.0888 2017,5,8,1.0938 2017,5,5,1.0961 2017,5,4,1.0927 2017,5,3,1.0919 2017,5,2,1.0915 2017,4,28,1.093 2017,4,27,1.0881 2017,4,26,1.0893 2017,4,25,1.0891 2017,4,24,1.0848 2017,4,21,1.0698 2017,4,20,1.0745 2017,4,19,1.0725 2017,4,18,1.0682 2017,4,13,1.063 2017,4,12,1.0605 2017,4,11,1.0616 2017,4,10,1.0578 2017,4,7,1.063 2017,4,6,1.0666 2017,4,5,1.0678 2017,4,4,1.0651 2017,4,3,1.0661 2017,3,31,1.0691 2017,3,30,1.0737 2017,3,29,1.0748 2017,3,28,1.0859 2017,3,27,1.0889 2017,3,24,1.0805 2017,3,23,1.0786 2017,3,22,1.0807 2017,3,21,1.0802 2017,3,20,1.0752 2017,3,17,1.0737 2017,3,16,1.0726 2017,3,15,1.0622 2017,3,14,1.0631 2017,3,13,1.0663 2017,3,10,1.0606 2017,3,9,1.0551 2017,3,8,1.0556 2017,3,7,1.0576 2017,3,6,1.0592 2017,3,3,1.0565 2017,3,2,1.0514 2017,3,1,1.0533 2017,2,28,1.0597 2017,2,27,1.0587 2017,2,24,1.0609 2017,2,23,1.0573 2017,2,22,1.0513 2017,2,21,1.0537 2017,2,20,1.0616 2017,2,17,1.065 2017,2,16,1.0652 2017,2,15,1.0555 2017,2,14,1.0623 2017,2,13,1.0629 2017,2,10,1.0629 2017,2,9,1.0692 2017,2,8,1.0665 2017,2,7,1.0675 2017,2,6,1.0712 2017,2,3,1.0741 2017,2,2,1.0808 2017,2,1,1.079 2017,1,31,1.0755 2017,1,30,1.063 2017,1,27,1.0681 2017,1,26,1.07 2017,1,25,1.0743 2017,1,24,1.0748 2017,1,23,1.0715 2017,1,20,1.0632 2017,1,19,1.0668 2017,1,18,1.0664 2017,1,17,1.0684 2017,1,16,1.0594 2017,1,13,1.0661 2017,1,12,1.0679 2017,1,11,1.0503 2017,1,10,1.0567 2017,1,9,1.0516 2017,1,6,1.0589 2017,1,5,1.0501 2017,1,4,1.0437 2017,1,3,1.0385 2017,1,2,1.0465 2016,12,30,1.0541 2016,12,29,1.0453 2016,12,28,1.0401 2016,12,27,1.0445 2016,12,23,1.0446 2016,12,22,1.0444 2016,12,21,1.0421 2016,12,20,1.0364 2016,12,19,1.0422 2016,12,16,1.0439 2016,12,15,1.0419 2016,12,14,1.0644 2016,12,13,1.061 2016,12,12,1.0596 2016,12,9,1.0559 2016,12,8,1.0762 2016,12,7,1.073 2016,12,6,1.0734 2016,12,5,1.0702 2016,12,2,1.0642 2016,12,1,1.0627 2016,11,30,1.0635 2016,11,29,1.0576 2016,11,28,1.0588 2016,11,25,1.0592 2016,11,24,1.0548 2016,11,23,1.0602 2016,11,22,1.0617 2016,11,21,1.0631 2016,11,18,1.0629 2016,11,17,1.0717 2016,11,16,1.0702 2016,11,15,1.0765 2016,11,14,1.0777 2016,11,11,1.0904 2016,11,10,1.0895 2016,11,9,1.1022 2016,11,8,1.1038 2016,11,7,1.1062 2016,11,4,1.1093 2016,11,3,1.1064 2016,11,2,1.1095 2016,11,1,1.1025 2016,10,31,1.0946 2016,10,28,1.0922 2016,10,27,1.0927 2016,10,26,1.0925 2016,10,25,1.0872 2016,10,24,1.0891 2016,10,21,1.0886 2016,10,20,1.098 2016,10,19,1.0979 2016,10,18,1.0993 2016,10,17,1.0994 2016,10,14,1.1002 2016,10,13,1.1038 2016,10,12,1.102 2016,10,11,1.1079 2016,10,10,1.116 2016,10,7,1.114 2016,10,6,1.1185 2016,10,5,1.1211 2016,10,4,1.1161 2016,10,3,1.1236 2016,9,30,1.1161 2016,9,29,1.1221 2016,9,28,1.1225 2016,9,27,1.122 2016,9,26,1.1262 2016,9,23,1.1214 2016,9,22,1.1238 2016,9,21,1.115 2016,9,20,1.1184 2016,9,19,1.1165 2016,9,16,1.1226 2016,9,15,1.1254 2016,9,14,1.1218 2016,9,13,1.1247 2016,9,12,1.1226 2016,9,9,1.1268 2016,9,8,1.1296 2016,9,7,1.1237 2016,9,6,1.1159 2016,9,5,1.1156 2016,9,2,1.1193 2016,9,1,1.1146 2016,8,31,1.1132 2016,8,30,1.1168 2016,8,29,1.117 2016,8,26,1.129 2016,8,25,1.129 2016,8,24,1.1268 2016,8,23,1.1339 2016,8,22,1.1306 2016,8,19,1.1326 2016,8,18,1.1321 2016,8,17,1.1276 2016,8,16,1.1295 2016,8,15,1.118 2016,8,12,1.1158 2016,8,11,1.1153 2016,8,10,1.1184 2016,8,9,1.1078 2016,8,8,1.1087 2016,8,5,1.1156 2016,8,4,1.1136 2016,8,3,1.12 2016,8,2,1.1193 2016,8,1,1.1164 2016,7,29,1.1113 2016,7,28,1.109 2016,7,27,1.0991 2016,7,26,1.0997 2016,7,25,1.0982 2016,7,22,1.1014 2016,7,21,1.1015 2016,7,20,1.1013 2016,7,19,1.1035 2016,7,18,1.1053 2016,7,15,1.1128 2016,7,14,1.1157 2016,7,13,1.1072 2016,7,12,1.1092 2016,7,11,1.1049 2016,7,8,1.107 2016,7,7,1.108 2016,7,6,1.1069 2016,7,5,1.1146 2016,7,4,1.1138 2016,7,1,1.1135 2016,6,30,1.1102 2016,6,29,1.109 2016,6,28,1.1073 2016,6,27,1.0998 2016,6,24,1.1066 2016,6,23,1.1389 2016,6,22,1.1283 2016,6,21,1.1314 2016,6,20,1.1332 2016,6,17,1.1254 2016,6,16,1.1174 2016,6,15,1.123 2016,6,14,1.1225 2016,6,13,1.1268 2016,6,10,1.1304 2016,6,9,1.1343 2016,6,8,1.1378 2016,6,7,1.1348 2016,6,6,1.1349 2016,6,3,1.1154 2016,6,2,1.1188 2016,6,1,1.1174 2016,5,31,1.1154 2016,5,30,1.1139 2016,5,27,1.1168 2016,5,26,1.1168 2016,5,25,1.1146 2016,5,24,1.1168 2016,5,23,1.1215 2016,5,20,1.1219 2016,5,19,1.1197 2016,5,18,1.1279 2016,5,17,1.1318 2016,5,16,1.1324 2016,5,13,1.1348 2016,5,12,1.1389 2016,5,11,1.1409 2016,5,10,1.1375 2016,5,9,1.1395 2016,5,6,1.1427 2016,5,5,1.1439 2016,5,4,1.1505 2016,5,3,1.1569 2016,5,2,1.1493 2016,4,29,1.1403 2016,4,28,1.1358 2016,4,27,1.1303 2016,4,26,1.1287 2016,4,25,1.1264 2016,4,22,1.1263 2016,4,21,1.1355 2016,4,20,1.1379 2016,4,19,1.1343 2016,4,18,1.1306 2016,4,15,1.1284 2016,4,14,1.1252 2016,4,13,1.1298 2016,4,12,1.1396 2016,4,11,1.139 2016,4,8,1.1363 2016,4,7,1.1364 2016,4,6,1.1336 2016,4,5,1.1367 2016,4,4,1.138 2016,4,1,1.1432 2016,3,31,1.1385 2016,3,30,1.1324 2016,3,29,1.1194 2016,3,24,1.1154 2016,3,23,1.1171 2016,3,22,1.1212 2016,3,21,1.1271 2016,3,18,1.1279 2016,3,17,1.1311 2016,3,16,1.1064 2016,3,15,1.1109 2016,3,14,1.1119 2016,3,11,1.109 2016,3,10,1.0857 2016,3,9,1.0973 2016,3,8,1.1028 2016,3,7,1.0953 2016,3,4,1.097 2016,3,3,1.0901 2016,3,2,1.0856 2016,3,1,1.0872 2016,2,29,1.0888 2016,2,26,1.1006 2016,2,25,1.1027 2016,2,24,1.0981 2016,2,23,1.1002 2016,2,22,1.1026 2016,2,19,1.1096 2016,2,18,1.1084 2016,2,17,1.1136 2016,2,16,1.1166 2016,2,15,1.118 2016,2,12,1.1275 2016,2,11,1.1347 2016,2,10,1.1257 2016,2,9,1.1236 2016,2,8,1.1101 2016,2,5,1.1202 2016,2,4,1.1206 2016,2,3,1.0933 2016,2,2,1.0919 2016,2,1,1.0884 2016,1,29,1.092 2016,1,28,1.0903 2016,1,27,1.0888 2016,1,26,1.0837 2016,1,25,1.0815 2016,1,22,1.0808 2016,1,21,1.0893 2016,1,20,1.0907 2016,1,19,1.0868 2016,1,18,1.0892 2016,1,15,1.0914 2016,1,14,1.0893 2016,1,13,1.0816 2016,1,12,1.0836 2016,1,11,1.0888 2016,1,8,1.0861 2016,1,7,1.0868 2016,1,6,1.0742 2016,1,5,1.0746 2016,1,4,1.0898 2015,12,31,1.0887 2015,12,30,1.0926 2015,12,29,1.0952 2015,12,28,1.0962 2015,12,24,1.0947 2015,12,23,1.0916 2015,12,22,1.0952 2015,12,21,1.087 2015,12,18,1.0836 2015,12,17,1.0841 2015,12,16,1.0933 2015,12,15,1.099 2015,12,14,1.0983 2015,12,11,1.095 2015,12,10,1.0943 2015,12,9,1.0941 2015,12,8,1.0875 2015,12,7,1.0809 2015,12,4,1.0902 2015,12,3,1.0671 2015,12,2,1.0612 2015,12,1,1.06 2015,11,30,1.0579 2015,11,27,1.058 2015,11,26,1.0612 2015,11,25,1.0586 2015,11,24,1.0651 2015,11,23,1.0631 2015,11,20,1.0688 2015,11,19,1.0687 2015,11,18,1.0666 2015,11,17,1.067 2015,11,16,1.0723 2015,11,13,1.0764 2015,11,12,1.0726 2015,11,11,1.0716 2015,11,10,1.0711 2015,11,9,1.0776 2015,11,6,1.0864 2015,11,5,1.0883 2015,11,4,1.0935 2015,11,3,1.0976 2015,11,2,1.1032 2015,10,30,1.1017 2015,10,29,1.093 2015,10,28,1.1085 2015,10,27,1.1061 2015,10,26,1.1011 2015,10,23,1.1084 2015,10,22,1.1313 2015,10,21,1.1354 2015,10,20,1.1373 2015,10,19,1.1333 2015,10,16,1.136 2015,10,15,1.1439 2015,10,14,1.141 2015,10,13,1.1374 2015,10,12,1.1373 2015,10,9,1.1362 2015,10,8,1.1254 2015,10,7,1.1266 2015,10,6,1.1224 2015,10,5,1.1236 2015,10,2,1.116 2015,10,1,1.1153 2015,9,30,1.1203 2015,9,29,1.1204 2015,9,28,1.117 2015,9,25,1.1151 2015,9,24,1.1241 2015,9,23,1.115 2015,9,22,1.1155 2015,9,21,1.125 2015,9,18,1.1419 2015,9,17,1.1312 2015,9,16,1.1228 2015,9,15,1.132 2015,9,14,1.1305 2015,9,11,1.1268 2015,9,10,1.1185 2015,9,9,1.1139 2015,9,8,1.1162 2015,9,7,1.1146 2015,9,4,1.1138 2015,9,3,1.1229 2015,9,2,1.1255 2015,9,1,1.1236 2015,8,31,1.1215 2015,8,28,1.1268 2015,8,27,1.1284 2015,8,26,1.1402 2015,8,25,1.1506 2015,8,24,1.1497 2015,8,21,1.1281 2015,8,20,1.1183 2015,8,19,1.1041 2015,8,18,1.106 2015,8,17,1.11 2015,8,14,1.1171 2015,8,13,1.1109 2015,8,12,1.1155 2015,8,11,1.1055 2015,8,10,1.096 2015,8,7,1.0941 2015,8,6,1.0885 2015,8,5,1.0883 2015,8,4,1.0973 2015,8,3,1.0951 2015,7,31,1.0967 2015,7,30,1.0955 2015,7,29,1.103 2015,7,28,1.1025 2015,7,27,1.1058 2015,7,24,1.0939 2015,7,23,1.0999 2015,7,22,1.0902 2015,7,21,1.0867 2015,7,20,1.0852 2015,7,17,1.0889 2015,7,16,1.0867 2015,7,15,1.1009 2015,7,14,1.1031 2015,7,13,1.1049 2015,7,10,1.1185 2015,7,9,1.1054 2015,7,8,1.1024 2015,7,7,1.0931 2015,7,6,1.1008 2015,7,3,1.1096 2015,7,2,1.1066 2015,7,1,1.11 2015,6,30,1.1189 2015,6,29,1.1133 2015,6,26,1.1202 2015,6,25,1.1206 2015,6,24,1.1213 2015,6,23,1.1204 2015,6,22,1.1345 2015,6,19,1.1299 2015,6,18,1.1404 2015,6,17,1.1279 2015,6,16,1.1215 2015,6,15,1.1218 2015,6,12,1.122 2015,6,11,1.1232 2015,6,10,1.1279 2015,6,9,1.1249 2015,6,8,1.1162 2015,6,5,1.1218 2015,6,4,1.1317 2015,6,3,1.1134 2015,6,2,1.1029 2015,6,1,1.0944 2015,5,29,1.097 2015,5,28,1.0896 2015,5,27,1.0863 2015,5,26,1.0926 2015,5,25,1.0978 2015,5,22,1.1164 2015,5,21,1.1133 2015,5,20,1.1118 2015,5,19,1.118 2015,5,18,1.1389 2015,5,15,1.1328 2015,5,14,1.1419 2015,5,13,1.1221 2015,5,12,1.1239 2015,5,11,1.1142 2015,5,8,1.1221 2015,5,7,1.1305 2015,5,6,1.123 2015,5,5,1.1117 2015,5,4,1.1152 2015,4,30,1.1215 2015,4,29,1.1002 2015,4,28,1.0927 2015,4,27,1.0822 2015,4,24,1.0824 2015,4,23,1.0772 2015,4,22,1.0743 2015,4,21,1.07 2015,4,20,1.0723 2015,4,17,1.0814 2015,4,16,1.0711 2015,4,15,1.0579 2015,4,14,1.0564 2015,4,13,1.0552 2015,4,10,1.057 2015,4,9,1.0774 2015,4,8,1.0862 2015,4,7,1.0847 2015,4,2,1.083 2015,4,1,1.0755 2015,3,31,1.0759 2015,3,30,1.0845 2015,3,27,1.0856 2015,3,26,1.0973 2015,3,25,1.0985 2015,3,24,1.095 2015,3,23,1.0912 2015,3,20,1.0776 2015,3,19,1.0677 2015,3,18,1.0592 2015,3,17,1.0635 2015,3,16,1.0557 2015,3,13,1.0572 2015,3,12,1.0613 2015,3,11,1.0578 2015,3,10,1.0738 2015,3,9,1.086 2015,3,6,1.0963 2015,3,5,1.1069 2015,3,4,1.1124 2015,3,3,1.1168 2015,3,2,1.1227 2015,2,27,1.124 2015,2,26,1.1317 2015,2,25,1.1346 2015,2,24,1.1328 2015,2,23,1.1298 2015,2,20,1.1298 2015,2,19,1.1387 2015,2,18,1.1372 2015,2,17,1.1415 2015,2,16,1.1408 2015,2,13,1.1381 2015,2,12,1.1328 2015,2,11,1.1314 2015,2,10,1.1297 2015,2,9,1.1275 2015,2,6,1.1447 2015,2,5,1.141 2015,2,4,1.1446 2015,2,3,1.1376 2015,2,2,1.131 2015,1,30,1.1305 2015,1,29,1.1315 2015,1,28,1.1344 2015,1,27,1.1306 2015,1,26,1.1244 2015,1,23,1.1198 2015,1,22,1.1618 2015,1,21,1.1593 2015,1,20,1.1579 2015,1,19,1.1605 2015,1,16,1.1588 2015,1,15,1.1708 2015,1,14,1.1775 2015,1,13,1.1782 2015,1,12,1.1804 2015,1,9,1.1813 2015,1,8,1.1768 2015,1,7,1.1831 2015,1,6,1.1914 2015,1,5,1.1915 2015,1,2,1.2043 2014,12,31,1.2141 2014,12,30,1.216 2014,12,29,1.2197 2014,12,24,1.2219 2014,12,23,1.2213 2014,12,22,1.2259 2014,12,19,1.2279 2014,12,18,1.2285 2014,12,17,1.2448 2014,12,16,1.2537 2014,12,15,1.2426 2014,12,12,1.245 2014,12,11,1.2428 2014,12,10,1.2392 2014,12,9,1.2369 2014,12,8,1.2258 2014,12,5,1.2362 2014,12,4,1.2311 2014,12,3,1.2331 2014,12,2,1.2424 2014,12,1,1.2469 2014,11,28,1.2483 2014,11,27,1.248 2014,11,26,1.2475 2014,11,25,1.2424 2014,11,24,1.241 2014,11,21,1.2422 2014,11,20,1.2539 2014,11,19,1.2535 2014,11,18,1.2514 2014,11,17,1.2496 2014,11,14,1.2436 2014,11,13,1.2456 2014,11,12,1.2467 2014,11,11,1.2424 2014,11,10,1.2486 2014,11,7,1.2393 2014,11,6,1.2517 2014,11,5,1.248 2014,11,4,1.2514 2014,11,3,1.2493 2014,10,31,1.2524 2014,10,30,1.2598 2014,10,29,1.2737 2014,10,28,1.2748 2014,10,27,1.2679 2014,10,24,1.2659 2014,10,23,1.2669 2014,10,22,1.2693 2014,10,21,1.2762 2014,10,20,1.2773 2014,10,17,1.2823 2014,10,16,1.2749 2014,10,15,1.2666 2014,10,14,1.2646 2014,10,13,1.2679 2014,10,10,1.2638 2014,10,9,1.2763 2014,10,8,1.2645 2014,10,7,1.2607 2014,10,6,1.2565 2014,10,3,1.2616 2014,10,2,1.2631 2014,10,1,1.2603 2014,9,30,1.2583 2014,9,29,1.2701 2014,9,26,1.2732 2014,9,25,1.2712 2014,9,24,1.2826 2014,9,23,1.2892 2014,9,22,1.2845 2014,9,19,1.2852 2014,9,18,1.2872 2014,9,17,1.2956 2014,9,16,1.2949 2014,9,15,1.2911 2014,9,12,1.2931 2014,9,11,1.2928 2014,9,10,1.2929 2014,9,9,1.2902 2014,9,8,1.2947 2014,9,5,1.2948 2014,9,4,1.3015 2014,9,3,1.3151 2014,9,2,1.3115 2014,9,1,1.3133 2014,8,29,1.3188 2014,8,28,1.3178 2014,8,27,1.3177 2014,8,26,1.3192 2014,8,25,1.32 2014,8,22,1.3267 2014,8,21,1.3262 2014,8,20,1.3284 2014,8,19,1.3354 2014,8,18,1.3383 2014,8,15,1.3388 2014,8,14,1.3373 2014,8,13,1.336 2014,8,12,1.3346 2014,8,11,1.3386 2014,8,8,1.3388 2014,8,7,1.3368 2014,8,6,1.3345 2014,8,5,1.3382 2014,8,4,1.3422 2014,8,1,1.3395 2014,7,31,1.3379 2014,7,30,1.3401 2014,7,29,1.3429 2014,7,28,1.3433 2014,7,25,1.344 2014,7,24,1.3472 2014,7,23,1.3465 2014,7,22,1.3481 2014,7,21,1.3518 2014,7,18,1.3525 2014,7,17,1.3525 2014,7,16,1.3532 2014,7,15,1.3613 2014,7,14,1.3627 2014,7,11,1.3595 2014,7,10,1.3604 2014,7,9,1.3603 2014,7,8,1.3589 2014,7,7,1.3592 2014,7,4,1.3588 2014,7,3,1.3646 2014,7,2,1.3656 2014,7,1,1.3688 2014,6,30,1.3658 2014,6,27,1.362 2014,6,26,1.3606 2014,6,25,1.3615 2014,6,24,1.3618 2014,6,23,1.3596 2014,6,20,1.3588 2014,6,19,1.362 2014,6,18,1.3563 2014,6,17,1.3568 2014,6,16,1.3532 2014,6,13,1.3534 2014,6,12,1.3528 2014,6,11,1.3547 2014,6,10,1.3547 2014,6,9,1.3608 2014,6,6,1.3642 2014,6,5,1.3567 2014,6,4,1.3627 2014,6,3,1.3645 2014,6,2,1.3611 2014,5,30,1.3607 2014,5,29,1.3612 2014,5,28,1.3608 2014,5,27,1.3638 2014,5,26,1.3635 2014,5,23,1.363 2014,5,22,1.3668 2014,5,21,1.3676 2014,5,20,1.3702 2014,5,19,1.3715 2014,5,16,1.3696 2014,5,15,1.3659 2014,5,14,1.3719 2014,5,13,1.3703 2014,5,12,1.3765 2014,5,9,1.3781 2014,5,8,1.3953 2014,5,7,1.3927 2014,5,6,1.3945 2014,5,5,1.3874 2014,5,2,1.3862 2014,4,30,1.385 2014,4,29,1.3826 2014,4,28,1.3861 2014,4,25,1.3831 2014,4,24,1.382 2014,4,23,1.3834 2014,4,22,1.3817 2014,4,17,1.3855 2014,4,16,1.384 2014,4,15,1.3803 2014,4,14,1.3827 2014,4,11,1.3872 2014,4,10,1.3867 2014,4,9,1.3794 2014,4,8,1.3774 2014,4,7,1.3723 2014,4,4,1.37 2014,4,3,1.3771 2014,4,2,1.3795 2014,4,1,1.379 2014,3,31,1.3788 2014,3,28,1.3759 2014,3,27,1.3758 2014,3,26,1.3791 2014,3,25,1.3789 2014,3,24,1.3774 2014,3,21,1.378 2014,3,20,1.3762 2014,3,19,1.3913 2014,3,18,1.3902 2014,3,17,1.3906 2014,3,14,1.3884 2014,3,13,1.3942 2014,3,12,1.3887 2014,3,11,1.385 2014,3,10,1.3881 2014,3,7,1.3894 2014,3,6,1.3745 2014,3,5,1.3732 2014,3,4,1.3768 2014,3,3,1.3768 2014,2,28,1.3813 2014,2,27,1.3656 2014,2,26,1.3726 2014,2,25,1.3754 2014,2,24,1.3735 2014,2,21,1.3707 2014,2,20,1.3706 2014,2,19,1.3745 2014,2,18,1.3731 2014,2,17,1.3699 2014,2,14,1.3707 2014,2,13,1.3675 2014,2,12,1.3573 2014,2,11,1.3676 2014,2,10,1.3638 2014,2,7,1.3574 2014,2,6,1.3495 2014,2,5,1.3543 2014,2,4,1.3519 2014,2,3,1.3498 2014,1,31,1.3516 2014,1,30,1.3574 2014,1,29,1.3608 2014,1,28,1.3649 2014,1,27,1.3658 2014,1,24,1.3687 2014,1,23,1.3639 2014,1,22,1.3566 2014,1,21,1.3526 2014,1,20,1.3566 2014,1,17,1.3584 2014,1,16,1.3597 2014,1,15,1.3606 2014,1,14,1.3667 2014,1,13,1.3654 2014,1,10,1.3587 2014,1,9,1.3612 2014,1,8,1.3594 2014,1,7,1.3641 2014,1,6,1.3602 2014,1,3,1.3634 2014,1,2,1.3658 2013,12,31,1.3791 2013,12,30,1.3783 2013,12,27,1.3814 2013,12,24,1.3684 2013,12,23,1.3702 2013,12,20,1.3655 2013,12,19,1.3667 2013,12,18,1.3749 2013,12,17,1.3749 2013,12,16,1.3776 2013,12,13,1.3727 2013,12,12,1.3775 2013,12,11,1.3767 2013,12,10,1.375 2013,12,9,1.3722 2013,12,6,1.3661 2013,12,5,1.3594 2013,12,4,1.3592 2013,12,3,1.3578 2013,12,2,1.3536 2013,11,29,1.3611 2013,11,28,1.3592 2013,11,27,1.3596 2013,11,26,1.3547 2013,11,25,1.3514 2013,11,22,1.3518 2013,11,21,1.3472 2013,11,20,1.3527 2013,11,19,1.3502 2013,11,18,1.3517 2013,11,15,1.346 2013,11,14,1.3436 2013,11,13,1.3415 2013,11,12,1.3432 2013,11,11,1.3394 2013,11,8,1.3431 2013,11,7,1.3365 2013,11,6,1.3517 2013,11,5,1.3494 2013,11,4,1.3506 2013,11,1,1.3505 2013,10,31,1.3641 2013,10,30,1.3755 2013,10,29,1.3768 2013,10,28,1.3784 2013,10,25,1.3777 2013,10,24,1.3805 2013,10,23,1.3752 2013,10,22,1.3674 2013,10,21,1.3667 2013,10,18,1.3684 2013,10,17,1.3662 2013,10,16,1.3561 2013,10,15,1.3493 2013,10,14,1.3564 2013,10,11,1.3566 2013,10,10,1.3532 2013,10,9,1.3515 2013,10,8,1.3576 2013,10,7,1.3572 2013,10,4,1.3593 2013,10,3,1.3594 2013,10,2,1.3515 2013,10,1,1.3554 2013,9,30,1.3505 2013,9,27,1.3537 2013,9,26,1.3499 2013,9,25,1.3504 2013,9,24,1.3473 2013,9,23,1.3508 2013,9,20,1.3514 2013,9,19,1.3545 2013,9,18,1.3352 2013,9,17,1.3356 2013,9,16,1.3357 2013,9,13,1.3295 2013,9,12,1.329 2013,9,11,1.3268 2013,9,10,1.324 2013,9,9,1.3194 2013,9,6,1.3117 2013,9,5,1.3202 2013,9,4,1.3171 2013,9,3,1.3172 2013,9,2,1.3207 2013,8,30,1.3235 2013,8,29,1.3266 2013,8,28,1.3347 2013,8,27,1.3338 2013,8,26,1.3361 2013,8,23,1.3355 2013,8,22,1.3323 2013,8,21,1.3384 2013,8,20,1.3392 2013,8,19,1.3344 2013,8,16,1.334 2013,8,15,1.3297 2013,8,14,1.3243 2013,8,13,1.329 2013,8,12,1.328 2013,8,9,1.3373 2013,8,8,1.336 2013,8,7,1.3305 2013,8,6,1.328 2013,8,5,1.3257 2013,8,2,1.3203 2013,8,1,1.3236 2013,7,31,1.3275 2013,7,30,1.3284 2013,7,29,1.327 2013,7,26,1.326 2013,7,25,1.3202 2013,7,24,1.3246 2013,7,23,1.318 2013,7,22,1.3166 2013,7,19,1.3123 2013,7,18,1.3093 2013,7,17,1.3136 2013,7,16,1.3118 2013,7,15,1.3012 2013,7,12,1.3034 2013,7,11,1.3044 2013,7,10,1.2813 2013,7,9,1.2857 2013,7,8,1.285 2013,7,5,1.2883 2013,7,4,1.2984 2013,7,3,1.2959 2013,7,2,1.3017 2013,7,1,1.3037 2013,6,28,1.308 2013,6,27,1.3032 2013,6,26,1.3024 2013,6,25,1.3134 2013,6,24,1.3086 2013,6,21,1.318 2013,6,20,1.32 2013,6,19,1.3406 2013,6,18,1.3374 2013,6,17,1.3337 2013,6,14,1.3303 2013,6,13,1.3315 2013,6,12,1.3277 2013,6,11,1.3273 2013,6,10,1.3209 2013,6,7,1.326 2013,6,6,1.3118 2013,6,5,1.3067 2013,6,4,1.3092 2013,6,3,1.3008 2013,5,31,1.3006 2013,5,30,1.2944 2013,5,29,1.2952 2013,5,28,1.2938 2013,5,27,1.2939 2013,5,24,1.2939 2013,5,23,1.2888 2013,5,22,1.2923 2013,5,21,1.2866 2013,5,20,1.2853 2013,5,17,1.2869 2013,5,16,1.289 2013,5,15,1.2864 2013,5,14,1.2977 2013,5,13,1.2973 2013,5,10,1.2988 2013,5,9,1.3142 2013,5,8,1.3135 2013,5,7,1.3107 2013,5,6,1.3107 2013,5,3,1.3114 2013,5,2,1.3191 2013,4,30,1.3072 2013,4,29,1.3113 2013,4,26,1.2999 2013,4,25,1.308 2013,4,24,1.3006 2013,4,23,1.299 2013,4,22,1.3037 2013,4,19,1.3115 2013,4,18,1.3045 2013,4,17,1.3129 2013,4,16,1.3129 2013,4,15,1.3081 2013,4,12,1.3052 2013,4,11,1.3119 2013,4,10,1.3086 2013,4,9,1.304 2013,4,8,1.3023 2013,4,5,1.2944 2013,4,4,1.2818 2013,4,3,1.2828 2013,4,2,1.284 2013,3,28,1.2805 2013,3,27,1.2768 2013,3,26,1.2861 2013,3,25,1.2935 2013,3,22,1.2948 2013,3,21,1.291 2013,3,20,1.2945 2013,3,19,1.2944 2013,3,18,1.2929 2013,3,15,1.3086 2013,3,14,1.2937 2013,3,13,1.2981 2013,3,12,1.3053 2013,3,11,1.2994 2013,3,8,1.309 2013,3,7,1.301 2013,3,6,1.3035 2013,3,5,1.3034 2013,3,4,1.3007 2013,3,1,1.3 2013,2,28,1.3129 2013,2,27,1.3097 2013,2,26,1.3077 2013,2,25,1.3304 2013,2,22,1.3186 2013,2,21,1.3186 2013,2,20,1.337 2013,2,19,1.3349 2013,2,18,1.3352 2013,2,15,1.3325 2013,2,14,1.3327 2013,2,13,1.348 2013,2,12,1.3438 2013,2,11,1.3391 2013,2,8,1.3374 2013,2,7,1.3546 2013,2,6,1.3517 2013,2,5,1.3537 2013,2,4,1.3552 2013,2,1,1.3644 2013,1,31,1.355 2013,1,30,1.3541 2013,1,29,1.3433 2013,1,28,1.3444 2013,1,25,1.3469 2013,1,24,1.3349 2013,1,23,1.333 2013,1,22,1.3317 2013,1,21,1.3323 2013,1,18,1.3324 2013,1,17,1.3368 2013,1,16,1.3277 2013,1,15,1.3327 2013,1,14,1.3341 2013,1,11,1.3274 2013,1,10,1.3113 2013,1,9,1.3056 2013,1,8,1.3086 2013,1,7,1.3039 2013,1,4,1.3012 2013,1,3,1.3102 2013,1,2,1.3262 2012,12,31,1.3194 2012,12,28,1.3183 2012,12,27,1.3266 2012,12,24,1.3218 2012,12,21,1.3209 2012,12,20,1.3246 2012,12,19,1.3302 2012,12,18,1.3178 2012,12,17,1.316 2012,12,14,1.3081 2012,12,13,1.3077 2012,12,12,1.304 2012,12,11,1.2993 2012,12,10,1.293 2012,12,7,1.2905 2012,12,6,1.3072 2012,12,5,1.3065 2012,12,4,1.3092 2012,12,3,1.3057 2012,11,30,1.2986 2012,11,29,1.2994 2012,11,28,1.2891 2012,11,27,1.2961 2012,11,26,1.2964 2012,11,23,1.2909 2012,11,22,1.2893 2012,11,21,1.2805 2012,11,20,1.2809 2012,11,19,1.2762 2012,11,16,1.2745 2012,11,15,1.2756 2012,11,14,1.2726 2012,11,13,1.2696 2012,11,12,1.2735 2012,11,9,1.2694 2012,11,8,1.2736 2012,11,7,1.2746 2012,11,6,1.28 2012,11,5,1.2777 2012,11,2,1.285 2012,11,1,1.2975 2012,10,31,1.2993 2012,10,30,1.2962 2012,10,29,1.2898 2012,10,26,1.2908 2012,10,25,1.2993 2012,10,24,1.2942 2012,10,23,1.3005 2012,10,22,1.3063 2012,10,19,1.3035 2012,10,18,1.3118 2012,10,17,1.312 2012,10,16,1.3046 2012,10,15,1.2971 2012,10,12,1.297 2012,10,11,1.2918 2012,10,10,1.2889 2012,10,9,1.2953 2012,10,8,1.2958 2012,10,5,1.3002 2012,10,4,1.2951 2012,10,3,1.2904 2012,10,2,1.293 2012,10,1,1.2877 2012,9,28,1.293 2012,9,27,1.2874 2012,9,26,1.2845 2012,9,25,1.2932 2012,9,24,1.2916 2012,9,21,1.2988 2012,9,20,1.2954 2012,9,19,1.3002 2012,9,18,1.3054 2012,9,17,1.3086 2012,9,14,1.3095 2012,9,13,1.291 2012,9,12,1.2896 2012,9,11,1.2787 2012,9,10,1.2776 2012,9,7,1.2706 2012,9,6,1.2638 2012,9,5,1.2578 2012,9,4,1.2579 2012,9,3,1.2568 2012,8,31,1.2611 2012,8,30,1.2544 2012,8,29,1.2545 2012,8,28,1.2548 2012,8,27,1.253 2012,8,24,1.2507 2012,8,23,1.2552 2012,8,22,1.2448 2012,8,21,1.2428 2012,8,20,1.23 2012,8,17,1.2337 2012,8,16,1.2279 2012,8,15,1.2276 2012,8,14,1.2352 2012,8,13,1.2339 2012,8,10,1.2262 2012,8,9,1.2301 2012,8,8,1.2336 2012,8,7,1.2436 2012,8,6,1.2379 2012,8,3,1.2245 2012,8,2,1.2346 2012,8,1,1.2298 2012,7,31,1.2284 2012,7,30,1.2246 2012,7,27,1.2317 2012,7,26,1.226 2012,7,25,1.2134 2012,7,24,1.2089 2012,7,23,1.2105 2012,7,20,1.22 2012,7,19,1.2287 2012,7,18,1.2234 2012,7,17,1.2281 2012,7,16,1.2177 2012,7,13,1.2185 2012,7,12,1.2178 2012,7,11,1.226 2012,7,10,1.2285 2012,7,9,1.2293 2012,7,6,1.2377 2012,7,5,1.2426 2012,7,4,1.256 2012,7,3,1.2575 2012,7,2,1.2593 2012,6,29,1.259 2012,6,28,1.2418 2012,6,27,1.2478 2012,6,26,1.2475 2012,6,25,1.2488 2012,6,22,1.2539 2012,6,21,1.267 2012,6,20,1.2704 2012,6,19,1.2619 2012,6,18,1.2618 2012,6,15,1.2596 2012,6,14,1.2551 2012,6,13,1.2534 2012,6,12,1.2492 2012,6,11,1.2544 2012,6,8,1.2468 2012,6,7,1.2595 2012,6,6,1.2485 2012,6,5,1.2429 2012,6,4,1.2437 2012,6,1,1.2322 2012,5,31,1.2403 2012,5,30,1.2438 2012,5,29,1.2523 2012,5,28,1.2566 2012,5,25,1.2546 2012,5,24,1.2557 2012,5,23,1.2659 2012,5,22,1.2768 2012,5,21,1.275 2012,5,18,1.2721 2012,5,17,1.2682 2012,5,16,1.2738 2012,5,15,1.2843 2012,5,14,1.2863 2012,5,11,1.2944 2012,5,10,1.2961 2012,5,9,1.295 2012,5,8,1.3025 2012,5,7,1.3033 2012,5,4,1.3132 2012,5,3,1.3123 2012,5,2,1.3131 2012,5,1,0.0 2012,4,30,1.3214 2012,4,27,1.3229 2012,4,26,1.3215 2012,4,25,1.3206 2012,4,24,1.3161 2012,4,23,1.3131 2012,4,20,1.3192 2012,4,19,1.3086 2012,4,18,1.3093 2012,4,17,1.3132 2012,4,16,1.3024 2012,4,13,1.3148 2012,4,12,1.3153 2012,4,11,1.3131 2012,4,10,1.3114 2012,4,9,0.0 2012,4,6,0.0 2012,4,5,1.3068 2012,4,4,1.3142 2012,4,3,1.3315 2012,4,2,1.3319 2012,3,30,1.3356 2012,3,29,1.3272 2012,3,28,1.3337 2012,3,27,1.3333 2012,3,26,1.3276 2012,3,23,1.3242 2012,3,22,1.3167 2012,3,21,1.3225 2012,3,20,1.3198 2012,3,19,1.315 2012,3,16,1.3116 2012,3,15,1.3057 2012,3,14,1.3062 2012,3,13,1.3057 2012,3,12,1.3119 2012,3,9,1.3191 2012,3,8,1.3242 2012,3,7,1.312 2012,3,6,1.3153 2012,3,5,1.322 2012,3,2,1.3217 2012,3,1,1.3312 2012,2,29,1.3443 2012,2,28,1.3454 2012,2,27,1.3388 2012,2,24,1.3412 2012,2,23,1.33 2012,2,22,1.323 2012,2,21,1.3222 2012,2,20,1.3266 2012,2,17,1.3159 2012,2,16,1.2982 2012,2,15,1.3092 2012,2,14,1.3169 2012,2,13,1.3254 2012,2,10,1.3189 2012,2,9,1.3288 2012,2,8,1.3274 2012,2,7,1.3113 2012,2,6,1.3042 2012,2,3,1.316 2012,2,2,1.3094 2012,2,1,1.3175 2012,1,31,1.3176 2012,1,30,1.311 2012,1,27,1.3145 2012,1,26,1.3145 2012,1,25,1.2942 2012,1,24,1.3003 2012,1,23,1.3017 2012,1,20,1.2902 2012,1,19,1.2911 2012,1,18,1.2831 2012,1,17,1.279 2012,1,16,1.2669 2012,1,13,1.2771 2012,1,12,1.2736 2012,1,11,1.2718 2012,1,10,1.2808 2012,1,9,1.2728 2012,1,6,1.2776 2012,1,5,1.2832 2012,1,4,1.2948 2012,1,3,1.3014 2012,1,2,1.2935 2011,12,30,1.2939 2011,12,29,1.2889 2011,12,28,1.3074 2011,12,27,1.3069 2011,12,26,0.0 2011,12,23,1.3057 2011,12,22,1.3047 2011,12,21,1.3054 2011,12,20,1.3074 2011,12,19,1.3039 2011,12,16,1.3064 2011,12,15,1.3019 2011,12,14,1.2993 2011,12,13,1.3181 2011,12,12,1.3251 2011,12,9,1.3384 2011,12,8,1.341 2011,12,7,1.3377 2011,12,6,1.3394 2011,12,5,1.3442 2011,12,2,1.3511 2011,12,1,1.3492 2011,11,30,1.3418 2011,11,29,1.3336 2011,11,28,1.3348 2011,11,25,1.3229 2011,11,24,1.3373 2011,11,23,1.3387 2011,11,22,1.3535 2011,11,21,1.3458 2011,11,18,1.3576 2011,11,17,1.348 2011,11,16,1.3484 2011,11,15,1.3532 2011,11,14,1.3659 2011,11,11,1.365 2011,11,10,1.3616 2011,11,9,1.3633 2011,11,8,1.3788 2011,11,7,1.3742 2011,11,4,1.3773 2011,11,3,1.3773 2011,11,2,1.3809 2011,11,1,1.3627 2011,10,31,1.4001 2011,10,28,1.416 2011,10,27,1.4038 2011,10,26,1.3927 2011,10,25,1.3918 2011,10,24,1.3856 2011,10,21,1.3798 2011,10,20,1.3807 2011,10,19,1.3828 2011,10,18,1.3676 2011,10,17,1.3776 2011,10,14,1.3807 2011,10,13,1.3727 2011,10,12,1.3766 2011,10,11,1.3607 2011,10,10,1.3593 2011,10,7,1.3434 2011,10,6,1.3269 2011,10,5,1.3337 2011,10,4,1.3181 2011,10,3,1.3327 2011,9,30,1.3503 2011,9,29,1.3615 2011,9,28,1.3631 2011,9,27,1.3579 2011,9,26,1.35 2011,9,23,1.343 2011,9,22,1.3448 2011,9,21,1.3636 2011,9,20,1.371 2011,9,19,1.3641 2011,9,16,1.376 2011,9,15,1.3795 2011,9,14,1.3729 2011,9,13,1.3645 2011,9,12,1.3656 2011,9,9,1.3817 2011,9,8,1.4044 2011,9,7,1.4036 2011,9,6,1.4099 2011,9,5,1.4126 2011,9,2,1.4255 2011,9,1,1.4285 2011,8,31,1.445 2011,8,30,1.4402 2011,8,29,1.4487 2011,8,26,1.4402 2011,8,25,1.4424 2011,8,24,1.4433 2011,8,23,1.4462 2011,8,22,1.4413 2011,8,19,1.4385 2011,8,18,1.4369 2011,8,17,1.4477 2011,8,16,1.436 2011,8,15,1.4309 2011,8,12,1.425 2011,8,11,1.4143 2011,8,10,1.4367 2011,8,9,1.4267 2011,8,8,1.4225 2011,8,5,1.4155 2011,8,4,1.4229 2011,8,3,1.43 2011,8,2,1.417 2011,8,1,1.4415 2011,7,29,1.426 2011,7,28,1.426 2011,7,27,1.4446 2011,7,26,1.4471 2011,7,25,1.438 2011,7,22,1.4391 2011,7,21,1.4222 2011,7,20,1.4207 2011,7,19,1.416 2011,7,18,1.4045 2011,7,15,1.4146 2011,7,14,1.4202 2011,7,13,1.4073 2011,7,12,1.3975 2011,7,11,1.4056 2011,7,8,1.4242 2011,7,7,1.4247 2011,7,6,1.4318 2011,7,5,1.4461 2011,7,4,1.45 2011,7,1,1.4488 2011,6,30,1.4453 2011,6,29,1.4425 2011,6,28,1.4261 2011,6,27,1.4205 2011,6,24,1.422 2011,6,23,1.4212 2011,6,22,1.4397 2011,6,21,1.4373 2011,6,20,1.4235 2011,6,17,1.427 2011,6,16,1.4088 2011,6,15,1.4292 2011,6,14,1.4448 2011,6,13,1.4354 2011,6,10,1.4486 2011,6,9,1.4614 2011,6,8,1.4608 2011,6,7,1.4652 2011,6,6,1.4596 2011,6,3,1.4488 2011,6,2,1.446 2011,6,1,1.4408 2011,5,31,1.4385 2011,5,30,1.4272 2011,5,27,1.4265 2011,5,26,1.4168 2011,5,25,1.4069 2011,5,24,1.4089 2011,5,23,1.402 2011,5,20,1.4237 2011,5,19,1.4265 2011,5,18,1.4227 2011,5,17,1.4171 2011,5,16,1.4143 2011,5,13,1.428 2011,5,12,1.4153 2011,5,11,1.4357 2011,5,10,1.4358 2011,5,9,1.4397 2011,5,6,1.4501 2011,5,5,1.4814 2011,5,4,1.4882 2011,5,3,1.478 2011,5,2,1.4837 2011,4,29,1.486 2011,4,28,1.4794 2011,4,27,1.4668 2011,4,26,1.4617 2011,4,25,0.0 2011,4,22,0.0 2011,4,21,1.4584 2011,4,20,1.4515 2011,4,19,1.4302 2011,4,18,1.4275 2011,4,15,1.445 2011,4,14,1.4401 2011,4,13,1.4493 2011,4,12,1.447 2011,4,11,1.4434 2011,4,8,1.4401 2011,4,7,1.4283 2011,4,6,1.43 2011,4,5,1.4166 2011,4,4,1.424 2011,4,1,1.4141 2011,3,31,1.4207 2011,3,30,1.409 2011,3,29,1.4066 2011,3,28,1.4032 2011,3,25,1.4115 2011,3,24,1.4128 2011,3,23,1.4136 2011,3,22,1.4211 2011,3,21,1.4194 2011,3,18,1.413 2011,3,17,1.4004 2011,3,16,1.3951 2011,3,15,1.3884 2011,3,14,1.3948 2011,3,11,1.3773 2011,3,10,1.3817 2011,3,9,1.3928 2011,3,8,1.3898 2011,3,7,1.4028 2011,3,4,1.3957 2011,3,3,1.385 2011,3,2,1.3809 2011,3,1,1.3825 2011,2,28,1.3834 2011,2,25,1.3762 2011,2,24,1.3773 2011,2,23,1.3731 2011,2,22,1.3667 2011,2,21,1.3668 2011,2,18,1.3627 2011,2,17,1.356 2011,2,16,1.351 2011,2,15,1.351 2011,2,14,1.344 2011,2,11,1.3524 2011,2,10,1.3604 2011,2,9,1.3647 2011,2,8,1.3635 2011,2,7,1.3553 2011,2,4,1.3631 2011,2,3,1.3745 2011,2,2,1.3803 2011,2,1,1.3755 2011,1,31,1.3692 2011,1,28,1.371 2011,1,27,1.3716 2011,1,26,1.3681 2011,1,25,1.3596 2011,1,24,1.3571 2011,1,21,1.3521 2011,1,20,1.3472 2011,1,19,1.3506 2011,1,18,1.3371 2011,1,17,1.3311 2011,1,14,1.3349 2011,1,13,1.3199 2011,1,12,1.2973 2011,1,11,1.2948 2011,1,10,1.2903 2011,1,7,1.2961 2011,1,6,1.3091 2011,1,5,1.3213 2011,1,4,1.3421 2011,1,3,1.3348 2010,12,31,1.3362 2010,12,30,1.328 2010,12,29,1.3136 2010,12,28,1.3195 2010,12,27,1.3136 2010,12,24,1.3099 2010,12,23,1.3064 2010,12,22,1.3112 2010,12,21,1.3155 2010,12,20,1.3147 2010,12,17,1.326 2010,12,16,1.3238 2010,12,15,1.336 2010,12,14,1.3435 2010,12,13,1.3267 2010,12,10,1.3244 2010,12,9,1.3214 2010,12,8,1.32 2010,12,7,1.3363 2010,12,6,1.328 2010,12,3,1.3246 2010,12,2,1.3155 2010,12,1,1.3115 2010,11,30,1.2998 2010,11,29,1.3146 2010,11,26,1.3225 2010,11,25,1.3321 2010,11,24,1.3339 2010,11,23,1.3496 2010,11,22,1.3647 2010,11,19,1.3674 2010,11,18,1.3647 2010,11,17,1.3481 2010,11,16,1.3612 2010,11,15,1.3626 2010,11,12,1.3711 2010,11,11,1.37 2010,11,10,1.377 2010,11,9,1.3945 2010,11,8,1.3917 2010,11,5,1.4084 2010,11,4,1.4244 2010,11,3,1.4014 2010,11,2,1.4018 2010,11,1,1.3926 2010,10,29,1.3857 2010,10,28,1.3857 2010,10,27,1.3803 2010,10,26,1.3912 2010,10,25,1.4031 2010,10,22,1.3934 2010,10,21,1.4016 2010,10,20,1.3861 2010,10,19,1.3859 2010,10,18,1.3896 2010,10,15,1.4089 2010,10,14,1.4101 2010,10,13,1.3958 2010,10,12,1.3833 2010,10,11,1.3936 2010,10,8,1.3874 2010,10,7,1.397 2010,10,6,1.3856 2010,10,5,1.378 2010,10,4,1.3705 2010,10,1,1.3726 2010,9,30,1.3648 2010,9,29,1.3611 2010,9,28,1.346 2010,9,27,1.3477 2010,9,24,1.3412 2010,9,23,1.3323 2010,9,22,1.3364 2010,9,21,1.312 2010,9,20,1.3074 2010,9,17,1.306 2010,9,16,1.3078 2010,9,15,1.2989 2010,9,14,1.285 2010,9,13,1.2801 2010,9,10,1.2725 2010,9,9,1.2715 2010,9,8,1.2697 2010,9,7,1.2744 2010,9,6,1.2874 2010,9,3,1.2834 2010,9,2,1.2818 2010,9,1,1.28 2010,8,31,1.268 2010,8,30,1.27 2010,8,27,1.2713 2010,8,26,1.2693 2010,8,25,1.2613 2010,8,24,1.2611 2010,8,23,1.2704 2010,8,20,1.2711 2010,8,19,1.2836 2010,8,18,1.288 2010,8,17,1.286 2010,8,16,1.282 2010,8,13,1.2799 2010,8,12,1.279 2010,8,11,1.3016 2010,8,10,1.3133 2010,8,9,1.3253 2010,8,6,1.3176 2010,8,5,1.3184 2010,8,4,1.3206 2010,8,3,1.3221 2010,8,2,1.3073 2010,7,30,1.3028 2010,7,29,1.3069 2010,7,28,1.2992 2010,7,27,1.3033 2010,7,26,1.2931 2010,7,23,1.2897 2010,7,22,1.285 2010,7,21,1.2817 2010,7,20,1.2844 2010,7,19,1.2957 2010,7,16,1.3 2010,7,15,1.2828 2010,7,14,1.2703 2010,7,13,1.2569 2010,7,12,1.2572 2010,7,9,1.2637 2010,7,8,1.266 2010,7,7,1.2567 2010,7,6,1.2579 2010,7,5,1.2531 2010,7,2,1.2548 2010,7,1,1.2328 2010,6,30,1.2271 2010,6,29,1.2198 2010,6,28,1.2339 2010,6,25,1.2294 2010,6,24,1.2262 2010,6,23,1.2271 2010,6,22,1.2258 2010,6,21,1.2391 2010,6,18,1.2372 2010,6,17,1.2363 2010,6,16,1.2277 2010,6,15,1.2258 2010,6,14,1.2249 2010,6,11,1.2127 2010,6,10,1.2045 2010,6,9,1.201 2010,6,8,1.1942 2010,6,7,1.1959 2010,6,4,1.206 2010,6,3,1.2268 2010,6,2,1.2218 2010,6,1,1.2155 2010,5,31,1.2307 2010,5,28,1.2384 2010,5,27,1.2255 2010,5,26,1.2309 2010,5,25,1.2223 2010,5,24,1.236 2010,5,21,1.2497 2010,5,20,1.2334 2010,5,19,1.227 2010,5,18,1.2428 2010,5,17,1.2349 2010,5,14,1.2492 2010,5,13,1.2587 2010,5,12,1.2686 2010,5,11,1.2698 2010,5,10,1.2969 2010,5,7,1.2746 2010,5,6,1.2727 2010,5,5,1.2924 2010,5,4,1.3089 2010,5,3,1.3238 2010,4,30,1.3315 2010,4,29,1.3256 2010,4,28,1.3245 2010,4,27,1.329 2010,4,26,1.3321 2010,4,23,1.3311 2010,4,22,1.3339 2010,4,21,1.3373 2010,4,20,1.3486 2010,4,19,1.3432 2010,4,16,1.3535 2010,4,15,1.3544 2010,4,14,1.3615 2010,4,13,1.3583 2010,4,12,1.3585 2010,4,9,1.3384 2010,4,8,1.3296 2010,4,7,1.334 2010,4,6,1.3396 2010,4,5,0.0 2010,4,2,0.0 2010,4,1,1.3468 2010,3,31,1.3479 2010,3,30,1.3482 2010,3,29,1.3471 2010,3,26,1.3353 2010,3,25,1.3356 2010,3,24,1.3338 2010,3,23,1.3519 2010,3,22,1.3471 2010,3,19,1.3548 2010,3,18,1.366 2010,3,17,1.3756 2010,3,16,1.3723 2010,3,15,1.3705 2010,3,12,1.3765 2010,3,11,1.3657 2010,3,10,1.361 2010,3,9,1.3557 2010,3,8,1.3662 2010,3,5,1.3582 2010,3,4,1.3668 2010,3,3,1.3641 2010,3,2,1.3548 2010,3,1,1.3525 2010,2,26,1.357 2010,2,25,1.3489 2010,2,24,1.3547 2010,2,23,1.3577 2010,2,22,1.3626 2010,2,19,1.3519 2010,2,18,1.3567 2010,2,17,1.3726 2010,2,16,1.3649 2010,2,15,1.3607 2010,2,12,1.3572 2010,2,11,1.3718 2010,2,10,1.374 2010,2,9,1.376 2010,2,8,1.3675 2010,2,5,1.3691 2010,2,4,1.3847 2010,2,3,1.3984 2010,2,2,1.3937 2010,2,1,1.3913 2010,1,29,1.3966 2010,1,28,1.3999 2010,1,27,1.4072 2010,1,26,1.4085 2010,1,25,1.4151 2010,1,22,1.4135 2010,1,21,1.4064 2010,1,20,1.4132 2010,1,19,1.4279 2010,1,18,1.4369 2010,1,15,1.4374 2010,1,14,1.4486 2010,1,13,1.4563 2010,1,12,1.4481 2010,1,11,1.4528 2010,1,8,1.4273 2010,1,7,1.4304 2010,1,6,1.435 2010,1,5,1.4442 2010,1,4,1.4389 2010,1,1,0.0 ================================================ FILE: docs/third-party/data-science/files/matplotlib/euro_dollar.py ================================================ import matplotlib.pyplot as plt import pandas as pd df = pd.read_csv('pypi/datascience/files/euro-dollar-clean.csv') eurodollar = df.groupby(['year', 'month'])['dollar'].mean().unstack() fig, ax = plt.subplots(figsize=(6, 4), dpi=100) text_colors = ('black', 'white') im = ax.imshow(eurodollar, cmap='Blues') cbar = fig.colorbar(im, ax=ax, extend='both') cbar.outline.set_visible(False) x = eurodollar.columns y = eurodollar.index # Mostrar las etiquetas. El color del texto cambia en función de su normalización for i in range(len(y)): for j in range(len(x)): value = eurodollar.iloc[i, j] text_color = text_colors[int(im.norm(value) > 0.5)] # color etiqueta ax.text(j, i, f'{value:.2f}', color=text_color, va='center', ha='center', size=6) # Formateo de los ejes ax.set_xticks(range(len(x))) ax.set_xticklabels( ['ENE', 'FEB', 'MAR', 'ABR', 'MAY', 'JUN', 'JUL', 'AGO', 'SEP', 'OCT', 'NOV', 'DIC'], rotation=90, ) ax.set_yticks(range(len(y))) ax.set_yticklabels(y) ax.invert_yaxis() ax.spines[:].set_visible(False) fig.tight_layout() ================================================ FILE: docs/third-party/data-science/files/matplotlib/global-temperatures.csv ================================================ dt,LandAverageTemperature,LandAverageTemperatureUncertainty,LandMaxTemperature,LandMaxTemperatureUncertainty,LandMinTemperature,LandMinTemperatureUncertainty,LandAndOceanAverageTemperature,LandAndOceanAverageTemperatureUncertainty 1750-01-01,3.0340000000000003,3.574,,,,,, 1750-02-01,3.083,3.702,,,,,, 1750-03-01,5.626,3.076,,,,,, 1750-04-01,8.49,2.451,,,,,, 1750-05-01,11.573,2.072,,,,,, 1750-06-01,12.937000000000001,1.724,,,,,, 1750-07-01,15.868,1.911,,,,,, 1750-08-01,14.75,2.231,,,,,, 1750-09-01,11.412999999999998,2.637,,,,,, 1750-10-01,6.366999999999999,2.668,,,,,, 1750-11-01,,,,,,,, 1750-12-01,2.772,2.97,,,,,, 1751-01-01,2.495,3.469,,,,,, 1751-02-01,0.963,3.827,,,,,, 1751-03-01,5.8,3.051,,,,,, 1751-04-01,7.67,2.3680000000000003,,,,,, 1751-05-01,,,,,,,, 1751-06-01,13.827,1.801,,,,,, 1751-07-01,,,,,,,, 1751-08-01,14.405,2.296,,,,,, 1751-09-01,10.673,2.656,,,,,, 1751-10-01,,,,,,,, 1751-11-01,,,,,,,, 1751-12-01,,,,,,,, 1752-01-01,0.3480000000000003,3.789,,,,,, 1752-02-01,,,,,,,, 1752-03-01,5.806,3.192,,,,,, 1752-04-01,8.264999999999999,2.398,,,,,, 1752-05-01,,,,,,,, 1752-06-01,,,,,,,, 1752-07-01,,,,,,,, 1752-08-01,,,,,,,, 1752-09-01,,,,,,,, 1752-10-01,7.838999999999999,2.754,,,,,, 1752-11-01,7.335,2.747,,,,,, 1752-12-01,5.086,2.982,,,,,, 1753-01-01,2.039,3.478,,,,,, 1753-02-01,0.7149999999999999,6.341,,,,,, 1753-03-01,5.4239999999999995,2.929,,,,,, 1753-04-01,8.272,3.177,,,,,, 1753-05-01,12.186,3.111,,,,,, 1753-06-01,14.585,2.59,,,,,, 1753-07-01,15.092,1.929,,,,,, 1753-08-01,14.148,2.4530000000000003,,,,,, 1753-09-01,13.322000000000001,2.5380000000000003,,,,,, 1753-10-01,8.962,2.585,,,,,, 1753-11-01,5.353,2.807,,,,,, 1753-12-01,0.5589999999999997,4.174,,,,,, 1754-01-01,1.574,5.02,,,,,, 1754-02-01,-1.2489999999999997,7.492000000000001,,,,,, 1754-03-01,3.677,3.3360000000000003,,,,,, 1754-04-01,11.61,3.293,,,,,, 1754-05-01,11.936,3.937,,,,,, 1754-06-01,14.388,3.366,,,,,, 1754-07-01,14.681,2.401,,,,,, 1754-08-01,13.556,1.892,,,,,, 1754-09-01,11.129000000000001,2.318,,,,,, 1754-10-01,9.582,2.529,,,,,, 1754-11-01,6.1610000000000005,3.048,,,,,, 1754-12-01,4.587,3.299,,,,,, 1755-01-01,1.067,4.6930000000000005,,,,,, 1755-02-01,-0.1080000000000001,5.857,,,,,, 1755-03-01,3.6069999999999998,3.909,,,,,, 1755-04-01,9.263,3.372,,,,,, 1755-05-01,12.880999999999998,4.151,,,,,, 1755-06-01,15.38,5.322,,,,,, 1755-07-01,14.397,1.936,,,,,, 1755-08-01,13.515,2.381,,,,,, 1755-09-01,11.773,3.4160000000000004,,,,,, 1755-10-01,9.97,3.931,,,,,, 1755-11-01,5.957999999999999,4.021,,,,,, 1755-12-01,2.5639999999999996,3.215,,,,,, 1756-01-01,3.887,3.513,,,,,, 1756-02-01,5.666,4.265,,,,,, 1756-03-01,4.192,5.574,,,,,, 1756-04-01,10.042,3.752,,,,,, 1756-05-01,14.163999999999998,2.608,,,,,, 1756-06-01,14.547,3.213,,,,,, 1756-07-01,13.905999999999999,2.192,,,,,, 1756-08-01,13.437000000000001,2.175,,,,,, 1756-09-01,12.652000000000001,2.954,,,,,, 1756-10-01,7.3119999999999985,2.201,,,,,, 1756-11-01,4.225,2.86,,,,,, 1756-12-01,2.165,3.841,,,,,, 1757-01-01,-0.27600000000000025,4.022,,,,,, 1757-02-01,3.704,4.261,,,,,, 1757-03-01,4.529,3.638,,,,,, 1757-04-01,8.245999999999999,4.3039999999999985,,,,,, 1757-05-01,13.039000000000001,4.98,,,,,, 1757-06-01,17.115,4.59,,,,,, 1757-07-01,17.61,4.322,,,,,, 1757-08-01,17.91,4.035,,,,,, 1757-09-01,14.852,3.189,,,,,, 1757-10-01,6.481999999999998,3.173,,,,,, 1757-11-01,4.032,2.643,,,,,, 1757-12-01,1.0210000000000004,5.155,,,,,, 1758-01-01,-1.5029999999999997,7.349,,,,,, 1758-02-01,0.8059999999999999,3.753,,,,,, 1758-03-01,3.765,3.3680000000000003,,,,,, 1758-04-01,7.209999999999999,2.986,,,,,, 1758-05-01,9.715,3.091,,,,,, 1758-06-01,13.139000000000001,2.055,,,,,, 1758-07-01,13.847000000000001,3.608,,,,,, 1758-08-01,11.818,2.979,,,,,, 1758-09-01,10.028,2.347,,,,,, 1758-10-01,1.8939999999999992,2.332,,,,,, 1758-11-01,6.955,3.2430000000000003,,,,,, 1758-12-01,3.249,3.244,,,,,, 1759-01-01,5.013999999999999,3.673,,,,,, 1759-02-01,4.082,5.966,,,,,, 1759-03-01,4.52,3.958,,,,,, 1759-04-01,5.983,3.159,,,,,, 1759-05-01,10.189,2.503,,,,,, 1759-06-01,13.512,2.232,,,,,, 1759-07-01,12.526,2.65,,,,,, 1759-08-01,14.587,5.626,,,,,, 1759-09-01,12.626,3.235,,,,,, 1759-10-01,8.267000000000001,2.983,,,,,, 1759-11-01,4.268000000000002,3.167,,,,,, 1759-12-01,0.2469999999999999,4.995,,,,,, 1760-01-01,-0.8109999999999999,4.567,,,,,, 1760-02-01,2.436,3.535,,,,,, 1760-03-01,1.864,4.666,,,,,, 1760-04-01,7.435999999999999,2.669,,,,,, 1760-05-01,10.661,1.857,,,,,, 1760-06-01,11.945,2.14,,,,,, 1760-07-01,12.887,2.567,,,,,, 1760-08-01,13.917,2.789,,,,,, 1760-09-01,11.197000000000001,3.865,,,,,, 1760-10-01,6.7010000000000005,3.422,,,,,, 1760-11-01,5.436,2.3480000000000003,,,,,, 1760-12-01,2.553,2.642,,,,,, 1761-01-01,0.6000000000000001,4.779,,,,,, 1761-02-01,2.735,3.775,,,,,, 1761-03-01,5.976,3.225,,,,,, 1761-04-01,7.321000000000001,1.652,,,,,, 1761-05-01,13.451,1.709,,,,,, 1761-06-01,16.820999999999998,3.1660000000000004,,,,,, 1761-07-01,19.021,2.696,,,,,, 1761-08-01,15.331,2.013,,,,,, 1761-09-01,12.534999999999998,4.075,,,,,, 1761-10-01,7.2269999999999985,3.932,,,,,, 1761-11-01,5.0889999999999995,2.248,,,,,, 1761-12-01,-0.8370000000000002,4.468,,,,,, 1762-01-01,6.8660000000000005,3.776,,,,,, 1762-02-01,4.801,7.88,,,,,, 1762-03-01,3.5280000000000005,4.1389999999999985,,,,,, 1762-04-01,9.019,2.199,,,,,, 1762-05-01,10.880999999999998,3.044,,,,,, 1762-06-01,13.499,3.3110000000000004,,,,,, 1762-07-01,14.72,1.966,,,,,, 1762-08-01,13.992,3.329,,,,,, 1762-09-01,10.326,3.2260000000000004,,,,,, 1762-10-01,6.156000000000001,2.879,,,,,, 1762-11-01,6.367000000000001,3.354,,,,,, 1762-12-01,3.123,3.188,,,,,, 1763-01-01,1.3690000000000002,6.415,,,,,, 1763-02-01,0.7709999999999999,4.102,,,,,, 1763-03-01,1.5760000000000003,4.635,,,,,, 1763-04-01,7.870999999999999,2.275,,,,,, 1763-05-01,10.701,2.736,,,,,, 1763-06-01,12.271,2.224,,,,,, 1763-07-01,16.391,1.754,,,,,, 1763-08-01,14.126,2.157,,,,,, 1763-09-01,11.378,2.827,,,,,, 1763-10-01,5.535,2.9610000000000003,,,,,, 1763-11-01,4.588,2.08,,,,,, 1763-12-01,3.384,3.653,,,,,, 1764-01-01,1.7409999999999999,3.628,,,,,, 1764-02-01,6.162000000000001,2.8680000000000003,,,,,, 1764-03-01,5.521,2.488,,,,,, 1764-04-01,7.879999999999999,3.159,,,,,, 1764-05-01,11.175,4.55,,,,,, 1764-06-01,11.723,1.707,,,,,, 1764-07-01,12.507,3.256,,,,,, 1764-08-01,12.282,1.259,,,,,, 1764-09-01,10.696,2.236,,,,,, 1764-10-01,10.011000000000001,2.515,,,,,, 1764-11-01,5.791,2.8280000000000003,,,,,, 1764-12-01,5.315,2.809,,,,,, 1765-01-01,3.78,4.928,,,,,, 1765-02-01,3.832,3.156,,,,,, 1765-03-01,6.859,2.442,,,,,, 1765-04-01,9.013,1.4480000000000002,,,,,, 1765-05-01,10.734000000000002,1.928,,,,,, 1765-06-01,10.832999999999998,1.453,,,,,, 1765-07-01,13.953,2.375,,,,,, 1765-08-01,13.12,1.872,,,,,, 1765-09-01,10.993,1.705,,,,,, 1765-10-01,7.904,1.533,,,,,, 1765-11-01,5.603,3.737,,,,,, 1765-12-01,2.399,2.556,,,,,, 1766-01-01,-0.7930000000000001,4.766,,,,,, 1766-02-01,4.896,3.741,,,,,, 1766-03-01,6.062,2.802,,,,,, 1766-04-01,8.007,2.084,,,,,, 1766-05-01,11.228,1.555,,,,,, 1766-06-01,13.653,3.745,,,,,, 1766-07-01,13.555,2.341,,,,,, 1766-08-01,13.758,2.5980000000000003,,,,,, 1766-09-01,12.25,2.855,,,,,, 1766-10-01,8.465,1.491,,,,,, 1766-11-01,7.4540000000000015,3.774,,,,,, 1766-12-01,2.333,2.278,,,,,, 1767-01-01,-0.6430000000000002,5.6560000000000015,,,,,, 1767-02-01,3.932,4.973,,,,,, 1767-03-01,7.022,4.418,,,,,, 1767-04-01,6.278,3.557,,,,,, 1767-05-01,10.193,1.501,,,,,, 1767-06-01,14.112,1.426,,,,,, 1767-07-01,13.360999999999999,2.559,,,,,, 1767-08-01,14.597000000000001,1.466,,,,,, 1767-09-01,11.675,2.313,,,,,, 1767-10-01,9.027000000000001,1.611,,,,,, 1767-11-01,7.915,3.775,,,,,, 1767-12-01,1.189,2.297,,,,,, 1768-01-01,-2.08,3.027,,,,,, 1768-02-01,0.5060000000000002,3.04,,,,,, 1768-03-01,2.4459999999999997,2.157,,,,,, 1768-04-01,6.92,1.84,,,,,, 1768-05-01,9.066,2.4330000000000003,,,,,, 1768-06-01,12.489999999999998,1.729,,,,,, 1768-07-01,13.875,2.552,,,,,, 1768-08-01,12.352,2.046,,,,,, 1768-09-01,10.824000000000002,1.504,,,,,, 1768-10-01,7.728999999999999,2.5580000000000003,,,,,, 1768-11-01,4.581,2.02,,,,,, 1768-12-01,2.667,2.286,,,,,, 1769-01-01,2.305,3.76,,,,,, 1769-02-01,2.164,2.527,,,,,, 1769-03-01,4.57,2.225,,,,,, 1769-04-01,8.966999999999997,3.105,,,,,, 1769-05-01,12.873,1.753,,,,,, 1769-06-01,15.142000000000001,1.727,,,,,, 1769-07-01,14.460999999999999,3.669,,,,,, 1769-08-01,13.494000000000002,1.604,,,,,, 1769-09-01,11.25,1.598,,,,,, 1769-10-01,5.296999999999999,2.395,,,,,, 1769-11-01,2.79,2.267,,,,,, 1769-12-01,-0.9780000000000002,2.291,,,,,, 1770-01-01,1.974,4.275,,,,,, 1770-02-01,4.105,4.129,,,,,, 1770-03-01,1.6119999999999999,2.276,,,,,, 1770-04-01,9.788,3.516,,,,,, 1770-05-01,9.996,1.27,,,,,, 1770-06-01,11.884,3.395,,,,,, 1770-07-01,11.620999999999999,2.658,,,,,, 1770-08-01,11.413,3.14,,,,,, 1770-09-01,10.724,1.51,,,,,, 1770-10-01,8.661,1.6030000000000002,,,,,, 1770-11-01,5.791,2.7260000000000004,,,,,, 1770-12-01,4.734,2.87,,,,,, 1771-01-01,5.101,4.287,,,,,, 1771-02-01,-0.27399999999999997,3.218,,,,,, 1771-03-01,2.8139999999999996,3.237,,,,,, 1771-04-01,5.716999999999999,2.647,,,,,, 1771-05-01,9.626,3.088,,,,,, 1771-06-01,14.104000000000001,1.403,,,,,, 1771-07-01,13.828,1.435,,,,,, 1771-08-01,14.204,2.246,,,,,, 1771-09-01,11.363,1.515,,,,,, 1771-10-01,10.317,1.721,,,,,, 1771-11-01,4.916,2.952,,,,,, 1771-12-01,2.522,3.506,,,,,, 1772-01-01,1.253,4.624,,,,,, 1772-02-01,1.4780000000000002,5.962999999999999,,,,,, 1772-03-01,3.057,2.206,,,,,, 1772-04-01,8.857999999999997,1.524,,,,,, 1772-05-01,9.531,1.844,,,,,, 1772-06-01,12.646999999999998,2.4290000000000003,,,,,, 1772-07-01,14.581,1.409,,,,,, 1772-08-01,14.097999999999999,1.641,,,,,, 1772-09-01,10.303,1.334,,,,,, 1772-10-01,9.268,1.386,,,,,, 1772-11-01,7.736000000000001,2.582,,,,,, 1772-12-01,5.5120000000000005,2.624,,,,,, 1773-01-01,-0.43699999999999983,2.9330000000000003,,,,,, 1773-02-01,1.4209999999999998,3.0210000000000004,,,,,, 1773-03-01,4.4220000000000015,2.083,,,,,, 1773-04-01,9.415,2.095,,,,,, 1773-05-01,12.764000000000001,2.537,,,,,, 1773-06-01,12.811,1.259,,,,,, 1773-07-01,14.484000000000002,1.085,,,,,, 1773-08-01,13.624,1.162,,,,,, 1773-09-01,12.488,1.676,,,,,, 1773-10-01,9.206,1.874,,,,,, 1773-11-01,3.369,4.817,,,,,, 1773-12-01,5.090999999999998,3.787,,,,,, 1774-01-01,-0.3249999999999997,4.557,,,,,, 1774-02-01,4.914,5.124,,,,,, 1774-03-01,5.643,2.779,,,,,, 1774-04-01,10.153,3.849,,,,,, 1774-05-01,16.025,2.535,,,,,, 1774-06-01,15.371,3.891,,,,,, 1774-07-01,16.521,3.806,,,,,, 1774-08-01,14.099,1.947,,,,,, 1774-09-01,10.936,2.115,,,,,, 1774-10-01,8.59,2.625,,,,,, 1774-11-01,3.029,4.4830000000000005,,,,,, 1774-12-01,0.31000000000000005,3.2710000000000004,,,,,, 1775-01-01,4.261,3.435,,,,,, 1775-02-01,6.4270000000000005,3.139,,,,,, 1775-03-01,7.7589999999999995,2.394,,,,,, 1775-04-01,7.951999999999999,1.538,,,,,, 1775-05-01,11.399000000000001,1.846,,,,,, 1775-06-01,12.314,2.805,,,,,, 1775-07-01,14.719000000000001,1.058,,,,,, 1775-08-01,14.435,1.093,,,,,, 1775-09-01,11.095999999999998,1.459,,,,,, 1775-10-01,10.372,2.116,,,,,, 1775-11-01,8.179,4.56,,,,,, 1775-12-01,1.2839999999999998,2.404,,,,,, 1776-01-01,-0.8059999999999999,4.467,,,,,, 1776-02-01,4.825,3.762,,,,,, 1776-03-01,4.652,2.388,,,,,, 1776-04-01,7.439999999999999,1.404,,,,,, 1776-05-01,10.475,5.237,,,,,, 1776-06-01,14.564,2.4330000000000003,,,,,, 1776-07-01,14.107999999999999,1.3030000000000002,,,,,, 1776-08-01,14.837,3.437,,,,,, 1776-09-01,10.602,2.065,,,,,, 1776-10-01,8.059999999999999,2.152,,,,,, 1776-11-01,5.87,2.7880000000000003,,,,,, 1776-12-01,5.021,2.934,,,,,, 1777-01-01,6.021000000000001,3.11,,,,,, 1777-02-01,4.9190000000000005,5.268,,,,,, 1777-03-01,5.572,2.307,,,,,, 1777-04-01,6.361999999999999,1.401,,,,,, 1777-05-01,11.389000000000001,2.117,,,,,, 1777-06-01,12.323,1.607,,,,,, 1777-07-01,12.743,1.078,,,,,, 1777-08-01,12.815,1.269,,,,,, 1777-09-01,11.379000000000001,2.692,,,,,, 1777-10-01,6.956,3.464,,,,,, 1777-11-01,5.529,2.276,,,,,, 1777-12-01,3.0669999999999997,2.725,,,,,, 1778-01-01,2.521,3.544,,,,,, 1778-02-01,6.0939999999999985,3.569,,,,,, 1778-03-01,4.604,4.151,,,,,, 1778-04-01,10.983999999999998,1.69,,,,,, 1778-05-01,11.286,1.673,,,,,, 1778-06-01,11.731,3.975,,,,,, 1778-07-01,15.037,2.216,,,,,, 1778-08-01,12.869000000000002,2.658,,,,,, 1778-09-01,13.377,2.35,,,,,, 1778-10-01,8.049,3.608,,,,,, 1778-11-01,3.8539999999999996,2.675,,,,,, 1778-12-01,2.101,2.361,,,,,, 1779-01-01,1.4700000000000002,2.802,,,,,, 1779-02-01,5.14,4.959,,,,,, 1779-03-01,6.9670000000000005,3.017,,,,,, 1779-04-01,9.965,3.0860000000000003,,,,,, 1779-05-01,14.18,1.863,,,,,, 1779-06-01,12.547,2.14,,,,,, 1779-07-01,13.659,1.858,,,,,, 1779-08-01,13.799000000000001,1.4780000000000002,,,,,, 1779-09-01,12.683,1.809,,,,,, 1779-10-01,9.35,1.544,,,,,, 1779-11-01,5.7700000000000005,2.258,,,,,, 1779-12-01,2.269,3.256,,,,,, 1780-01-01,2.515,3.438,,,,,, 1780-02-01,4.08,3.179,,,,,, 1780-03-01,5.724,2.381,,,,,, 1780-04-01,13.732000000000001,3.0580000000000003,,,,,, 1780-05-01,15.756999999999998,1.419,,,,,, 1780-06-01,14.747,2.9810000000000003,,,,,, 1780-07-01,16.183,1.3,,,,,, 1780-08-01,12.947000000000001,3.131,,,,,, 1780-09-01,8.844,2.104,,,,,, 1780-10-01,9.376,1.873,,,,,, 1780-11-01,6.706,2.596,,,,,, 1780-12-01,2.5839999999999996,3.5580000000000003,,,,,, 1781-01-01,2.401,4.948,,,,,, 1781-02-01,2.267,3.5810000000000004,,,,,, 1781-03-01,4.772,2.443,,,,,, 1781-04-01,6.922999999999999,2.076,,,,,, 1781-05-01,11.102,1.838,,,,,, 1781-06-01,11.678,1.385,,,,,, 1781-07-01,14.285,1.696,,,,,, 1781-08-01,14.140999999999998,1.004,,,,,, 1781-09-01,10.303999999999998,3.69,,,,,, 1781-10-01,8.546999999999999,1.2819999999999998,,,,,, 1781-11-01,7.523,1.676,,,,,, 1781-12-01,3.2880000000000003,4.427,,,,,, 1782-01-01,0.3410000000000002,3.547,,,,,, 1782-02-01,0.6389999999999998,4.862,,,,,, 1782-03-01,2.565,2.221,,,,,, 1782-04-01,8.617999999999999,2.154,,,,,, 1782-05-01,10.989999999999998,1.474,,,,,, 1782-06-01,13.800999999999998,1.517,,,,,, 1782-07-01,13.925,2.96,,,,,, 1782-08-01,15.683,2.487,,,,,, 1782-09-01,12.398,1.7280000000000002,,,,,, 1782-10-01,8.978,1.826,,,,,, 1782-11-01,4.956,2.4730000000000003,,,,,, 1782-12-01,1.921,3.358,,,,,, 1783-01-01,-1.4310000000000005,5.292999999999998,,,,,, 1783-02-01,5.2940000000000005,3.683,,,,,, 1783-03-01,4.7989999999999995,2.597,,,,,, 1783-04-01,8.574,1.564,,,,,, 1783-05-01,11.819,2.906,,,,,, 1783-06-01,14.34,1.541,,,,,, 1783-07-01,13.069,1.3430000000000002,,,,,, 1783-08-01,13.970999999999998,1.6130000000000002,,,,,, 1783-09-01,9.957999999999998,1.439,,,,,, 1783-10-01,7.356999999999998,2.6210000000000004,,,,,, 1783-11-01,2.1959999999999997,2.2,,,,,, 1783-12-01,2.224,3.133,,,,,, 1784-01-01,2.596,3.347,,,,,, 1784-02-01,0.989,2.842,,,,,, 1784-03-01,3.9189999999999996,3.258,,,,,, 1784-04-01,8.142000000000001,1.272,,,,,, 1784-05-01,10.013,1.538,,,,,, 1784-06-01,12.803,1.8,,,,,, 1784-07-01,14.947,1.803,,,,,, 1784-08-01,15.860999999999999,2.595,,,,,, 1784-09-01,10.265999999999998,1.068,,,,,, 1784-10-01,6.8359999999999985,1.68,,,,,, 1784-11-01,4.5569999999999995,2.522,,,,,, 1784-12-01,3.415,3.343,,,,,, 1785-01-01,0.865,2.754,,,,,, 1785-02-01,1.045,2.408,,,,,, 1785-03-01,2.289,4.215,,,,,, 1785-04-01,6.379,1.45,,,,,, 1785-05-01,9.853,2.088,,,,,, 1785-06-01,13.744000000000002,2.653,,,,,, 1785-07-01,14.468,2.215,,,,,, 1785-08-01,14.466,2.046,,,,,, 1785-09-01,10.497,1.143,,,,,, 1785-10-01,7.350999999999999,1.732,,,,,, 1785-11-01,5.526,2.261,,,,,, 1785-12-01,1.8730000000000002,1.909,,,,,, 1786-01-01,0.7630000000000001,2.436,,,,,, 1786-02-01,2.657,2.463,,,,,, 1786-03-01,5.648,2.27,,,,,, 1786-04-01,9.318,3.079,,,,,, 1786-05-01,11.582999999999998,2.387,,,,,, 1786-06-01,13.035,1.295,,,,,, 1786-07-01,15.294,2.311,,,,,, 1786-08-01,14.455,3.35,,,,,, 1786-09-01,12.158,2.9330000000000003,,,,,, 1786-10-01,7.712000000000001,1.4380000000000002,,,,,, 1786-11-01,5.7410000000000005,3.837,,,,,, 1786-12-01,0.7339999999999995,2.506,,,,,, 1787-01-01,2.845,3.176,,,,,, 1787-02-01,2.563,2.842,,,,,, 1787-03-01,4.698,3.1260000000000003,,,,,, 1787-04-01,7.7719999999999985,1.5219999999999998,,,,,, 1787-05-01,11.403,1.364,,,,,, 1787-06-01,14.369000000000002,2.099,,,,,, 1787-07-01,13.450999999999999,2.425,,,,,, 1787-08-01,13.555,1.4369999999999998,,,,,, 1787-09-01,10.357000000000001,1.5630000000000002,,,,,, 1787-10-01,7.7719999999999985,3.312,,,,,, 1787-11-01,5.801,2.844,,,,,, 1787-12-01,1.7959999999999998,2.631,,,,,, 1788-01-01,0.7350000000000001,2.9930000000000003,,,,,, 1788-02-01,3.5810000000000004,4.039,,,,,, 1788-03-01,5.336,3.057,,,,,, 1788-04-01,8.713999999999999,2.657,,,,,, 1788-05-01,10.428,1.336,,,,,, 1788-06-01,13.808,1.262,,,,,, 1788-07-01,16.468,2.9160000000000004,,,,,, 1788-08-01,13.885,1.5319999999999998,,,,,, 1788-09-01,11.699000000000002,1.261,,,,,, 1788-10-01,9.349,2.132,,,,,, 1788-11-01,6.111000000000001,1.682,,,,,, 1788-12-01,1.2519999999999998,5.827000000000001,,,,,, 1789-01-01,3.7060000000000004,4.039,,,,,, 1789-02-01,1.675,2.576,,,,,, 1789-03-01,3.989,1.595,,,,,, 1789-04-01,7.693999999999999,1.507,,,,,, 1789-05-01,11.666,2.228,,,,,, 1789-06-01,13.507,1.042,,,,,, 1789-07-01,15.462,1.922,,,,,, 1789-08-01,13.84,1.298,,,,,, 1789-09-01,12.018,1.189,,,,,, 1789-10-01,7.39,1.836,,,,,, 1789-11-01,5.9639999999999995,1.586,,,,,, 1789-12-01,3.099,1.606,,,,,, 1790-01-01,2.444,1.94,,,,,, 1790-02-01,2.9730000000000003,2.5980000000000003,,,,,, 1790-03-01,4.582,1.914,,,,,, 1790-04-01,6.052999999999999,2.314,,,,,, 1790-05-01,10.357000000000001,1.057,,,,,, 1790-06-01,13.746,1.226,,,,,, 1790-07-01,13.812000000000001,1.6569999999999998,,,,,, 1790-08-01,13.925,1.269,,,,,, 1790-09-01,11.233,1.524,,,,,, 1790-10-01,8.577,1.297,,,,,, 1790-11-01,5.331,1.565,,,,,, 1790-12-01,2.755,2.899,,,,,, 1791-01-01,1.493,5.035,,,,,, 1791-02-01,3.466,2.44,,,,,, 1791-03-01,4.79,2.249,,,,,, 1791-04-01,9.127,1.617,,,,,, 1791-05-01,9.859,1.256,,,,,, 1791-06-01,13.231,1.314,,,,,, 1791-07-01,13.612,1.0590000000000002,,,,,, 1791-08-01,13.744000000000002,0.807,,,,,, 1791-09-01,11.677,1.248,,,,,, 1791-10-01,8.08,1.019,,,,,, 1791-11-01,6.206,1.793,,,,,, 1791-12-01,3.5260000000000002,1.568,,,,,, 1792-01-01,0.3480000000000003,2.516,,,,,, 1792-02-01,3.62,2.434,,,,,, 1792-03-01,4.428999999999999,1.692,,,,,, 1792-04-01,7.994,1.368,,,,,, 1792-05-01,11.321,1.101,,,,,, 1792-06-01,13.581,1.406,,,,,, 1792-07-01,14.212,1.362,,,,,, 1792-08-01,12.280999999999999,1.395,,,,,, 1792-09-01,12.491,1.072,,,,,, 1792-10-01,8.097000000000001,1.39,,,,,, 1792-11-01,5.306,2.145,,,,,, 1792-12-01,3.388,2.524,,,,,, 1793-01-01,0.5209999999999999,2.674,,,,,, 1793-02-01,4.745,2.624,,,,,, 1793-03-01,5.042,2.145,,,,,, 1793-04-01,8.642999999999999,1.904,,,,,, 1793-05-01,11.059000000000001,1.544,,,,,, 1793-06-01,13.146,1.91,,,,,, 1793-07-01,14.335999999999999,2.864,,,,,, 1793-08-01,13.16,1.746,,,,,, 1793-09-01,12.002,2.325,,,,,, 1793-10-01,8.392999999999999,1.661,,,,,, 1793-11-01,5.666,3.635,,,,,, 1793-12-01,2.037,2.261,,,,,, 1794-01-01,3.71,3.869,,,,,, 1794-02-01,3.605,5.138,,,,,, 1794-03-01,5.696000000000001,1.805,,,,,, 1794-04-01,9.367,1.219,,,,,, 1794-05-01,12.376,1.063,,,,,, 1794-06-01,11.994000000000002,1.159,,,,,, 1794-07-01,12.874,1.283,,,,,, 1794-08-01,13.484000000000002,0.989,,,,,, 1794-09-01,11.896,1.57,,,,,, 1794-10-01,9.108,1.29,,,,,, 1794-11-01,5.284,2.087,,,,,, 1794-12-01,2.918,2.276,,,,,, 1795-01-01,2.7310000000000003,2.506,,,,,, 1795-02-01,4.39,3.3360000000000003,,,,,, 1795-03-01,5.709,1.959,,,,,, 1795-04-01,8.918,1.88,,,,,, 1795-05-01,11.029000000000002,2.444,,,,,, 1795-06-01,13.293,0.987,,,,,, 1795-07-01,14.295,2.165,,,,,, 1795-08-01,13.14,1.135,,,,,, 1795-09-01,11.133,1.3969999999999998,,,,,, 1795-10-01,7.7860000000000005,2.202,,,,,, 1795-11-01,5.207000000000001,2.269,,,,,, 1795-12-01,2.573,2.24,,,,,, 1796-01-01,2.8440000000000003,2.096,,,,,, 1796-02-01,2.736,2.019,,,,,, 1796-03-01,3.477,2.044,,,,,, 1796-04-01,7.773,1.16,,,,,, 1796-05-01,11.273,0.955,,,,,, 1796-06-01,14.216,2.923,,,,,, 1796-07-01,14.314,0.964,,,,,, 1796-08-01,14.722000000000001,2.777,,,,,, 1796-09-01,12.012,1.919,,,,,, 1796-10-01,8.924,1.283,,,,,, 1796-11-01,5.702000000000001,1.456,,,,,, 1796-12-01,1.2590000000000001,3.452,,,,,, 1797-01-01,4.396,2.397,,,,,, 1797-02-01,4.957,2.564,,,,,, 1797-03-01,4.056,2.948,,,,,, 1797-04-01,6.6,3.3110000000000004,,,,,, 1797-05-01,10.417,2.432,,,,,, 1797-06-01,13.852,1.014,,,,,, 1797-07-01,14.107000000000001,1.6130000000000002,,,,,, 1797-08-01,14.04,1.713,,,,,, 1797-09-01,12.459000000000001,1.7719999999999998,,,,,, 1797-10-01,9.191,1.332,,,,,, 1797-11-01,4.777,1.727,,,,,, 1797-12-01,3.275,1.725,,,,,, 1798-01-01,2.6790000000000003,1.967,,,,,, 1798-02-01,3.213,2.0340000000000003,,,,,, 1798-03-01,7.007999999999999,2.537,,,,,, 1798-04-01,8.083,1.85,,,,,, 1798-05-01,11.768999999999998,2.029,,,,,, 1798-06-01,13.246,0.7929999999999999,,,,,, 1798-07-01,14.950999999999999,1.281,,,,,, 1798-08-01,14.754000000000001,2.047,,,,,, 1798-09-01,11.627,1.6869999999999998,,,,,, 1798-10-01,8.655,1.024,,,,,, 1798-11-01,6.031000000000001,2.629,,,,,, 1798-12-01,2.027,2.962,,,,,, 1799-01-01,1.923,2.229,,,,,, 1799-02-01,2.0780000000000003,2.891,,,,,, 1799-03-01,3.986,1.5619999999999998,,,,,, 1799-04-01,8.786,2.533,,,,,, 1799-05-01,11.353,1.545,,,,,, 1799-06-01,13.68,0.873,,,,,, 1799-07-01,14.869000000000002,1.308,,,,,, 1799-08-01,14.085999999999999,1.083,,,,,, 1799-09-01,12.311,1.378,,,,,, 1799-10-01,9.606,1.369,,,,,, 1799-11-01,5.904,1.894,,,,,, 1799-12-01,3.487,2.196,,,,,, 1800-01-01,2.815,1.844,,,,,, 1800-02-01,3.634,2.6,,,,,, 1800-03-01,4.452,2.613,,,,,, 1800-04-01,9.125,2.168,,,,,, 1800-05-01,11.097000000000001,1.725,,,,,, 1800-06-01,13.606,1.169,,,,,, 1800-07-01,13.763,0.933,,,,,, 1800-08-01,13.619000000000002,1.4169999999999998,,,,,, 1800-09-01,10.795,1.62,,,,,, 1800-10-01,9.469,1.643,,,,,, 1800-11-01,5.572,1.264,,,,,, 1800-12-01,3.864,1.628,,,,,, 1801-01-01,2.6870000000000003,1.922,,,,,, 1801-02-01,3.1489999999999996,2.045,,,,,, 1801-03-01,6.455,1.336,,,,,, 1801-04-01,7.404,1.619,,,,,, 1801-05-01,12.123,1.541,,,,,, 1801-06-01,12.536,0.877,,,,,, 1801-07-01,14.675999999999998,1.56,,,,,, 1801-08-01,13.187000000000001,1.223,,,,,, 1801-09-01,11.462,1.384,,,,,, 1801-10-01,9.099,1.267,,,,,, 1801-11-01,5.72,1.681,,,,,, 1801-12-01,4.5779999999999985,2.525,,,,,, 1802-01-01,3.74,1.905,,,,,, 1802-02-01,2.8280000000000003,2.053,,,,,, 1802-03-01,5.2010000000000005,2.7060000000000004,,,,,, 1802-04-01,7.622999999999998,1.464,,,,,, 1802-05-01,10.457,1.82,,,,,, 1802-06-01,14.470999999999998,1.253,,,,,, 1802-07-01,14.628,1.155,,,,,, 1802-08-01,14.039000000000001,1.586,,,,,, 1802-09-01,11.787999999999998,2.141,,,,,, 1802-10-01,9.747,1.612,,,,,, 1802-11-01,5.535,2.146,,,,,, 1802-12-01,2.8810000000000002,2.347,,,,,, 1803-01-01,0.6019999999999999,2.026,,,,,, 1803-02-01,1.443,2.887,,,,,, 1803-03-01,4.875,2.061,,,,,, 1803-04-01,9.291,1.914,,,,,, 1803-05-01,11.795,0.898,,,,,, 1803-06-01,13.821,0.7659999999999999,,,,,, 1803-07-01,15.106,0.944,,,,,, 1803-08-01,15.366,1.252,,,,,, 1803-09-01,12.33,1.259,,,,,, 1803-10-01,9.119,1.479,,,,,, 1803-11-01,5.961,1.843,,,,,, 1803-12-01,2.327,2.269,,,,,, 1804-01-01,2.4450000000000003,2.6830000000000003,,,,,, 1804-02-01,1.939,2.293,,,,,, 1804-03-01,4.425,2.186,,,,,, 1804-04-01,10.057,1.117,,,,,, 1804-05-01,12.107000000000001,1.274,,,,,, 1804-06-01,13.774000000000001,1.58,,,,,, 1804-07-01,15.774,1.318,,,,,, 1804-08-01,14.511,1.08,,,,,, 1804-09-01,12.468,2.644,,,,,, 1804-10-01,9.282,1.231,,,,,, 1804-11-01,7.132000000000001,2.099,,,,,, 1804-12-01,2.224,2.597,,,,,, 1805-01-01,2.822,2.512,,,,,, 1805-02-01,2.557,2.455,,,,,, 1805-03-01,5.76,1.4980000000000002,,,,,, 1805-04-01,8.123,1.291,,,,,, 1805-05-01,11.104000000000001,1.216,,,,,, 1805-06-01,14.027000000000001,1.368,,,,,, 1805-07-01,14.702,1.151,,,,,, 1805-08-01,15.27,1.021,,,,,, 1805-09-01,12.039000000000001,1.831,,,,,, 1805-10-01,7.635999999999999,1.6030000000000002,,,,,, 1805-11-01,4.555,2.399,,,,,, 1805-12-01,4.158,1.922,,,,,, 1806-01-01,2.9170000000000003,2.167,,,,,, 1806-02-01,2.937,2.079,,,,,, 1806-03-01,4.691,1.557,,,,,, 1806-04-01,8.032,1.7719999999999998,,,,,, 1806-05-01,11.503,1.426,,,,,, 1806-06-01,12.418,0.8370000000000001,,,,,, 1806-07-01,13.923,1.505,,,,,, 1806-08-01,14.593,1.361,,,,,, 1806-09-01,12.549000000000001,1.753,,,,,, 1806-10-01,8.426,1.113,,,,,, 1806-11-01,5.231,1.5419999999999998,,,,,, 1806-12-01,3.989,1.729,,,,,, 1807-01-01,1.0550000000000002,2.393,,,,,, 1807-02-01,4.093999999999999,2.677,,,,,, 1807-03-01,4.788,2.253,,,,,, 1807-04-01,6.970999999999999,1.26,,,,,, 1807-05-01,9.331,0.93,,,,,, 1807-06-01,13.293,1.271,,,,,, 1807-07-01,14.138,1.605,,,,,, 1807-08-01,13.799000000000001,1.525,,,,,, 1807-09-01,12.614999999999998,1.18,,,,,, 1807-10-01,8.857000000000001,1.193,,,,,, 1807-11-01,6.015,1.588,,,,,, 1807-12-01,4.4209999999999985,1.232,,,,,, 1808-01-01,1.131,4.1110000000000015,,,,,, 1808-02-01,2.142,2.175,,,,,, 1808-03-01,4.361000000000001,3.02,,,,,, 1808-04-01,7.481999999999998,1.459,,,,,, 1808-05-01,9.357000000000001,2.068,,,,,, 1808-06-01,13.428999999999998,1.585,,,,,, 1808-07-01,14.491,1.676,,,,,, 1808-08-01,13.047,1.227,,,,,, 1808-09-01,12.711,1.6880000000000002,,,,,, 1808-10-01,7.971999999999999,1.48,,,,,, 1808-11-01,4.5120000000000005,1.7719999999999998,,,,,, 1808-12-01,0.887,1.7009999999999998,,,,,, 1809-01-01,0.20800000000000016,2.59,,,,,, 1809-02-01,0.8559999999999999,2.818,,,,,, 1809-03-01,3.425,1.666,,,,,, 1809-04-01,7.832999999999998,2.498,,,,,, 1809-05-01,9.243,1.304,,,,,, 1809-06-01,12.998,1.348,,,,,, 1809-07-01,12.655999999999999,1.481,,,,,, 1809-08-01,12.905,1.6669999999999998,,,,,, 1809-09-01,10.967,1.633,,,,,, 1809-10-01,8.65,3.554,,,,,, 1809-11-01,3.099,2.478,,,,,, 1809-12-01,2.077,2.588,,,,,, 1810-01-01,0.8880000000000001,3.258,,,,,, 1810-02-01,2.391,2.403,,,,,, 1810-03-01,5.013999999999999,4.457,,,,,, 1810-04-01,6.533,2.229,,,,,, 1810-05-01,9.069,1.907,,,,,, 1810-06-01,11.934000000000001,2.281,,,,,, 1810-07-01,12.550999999999998,2.016,,,,,, 1810-08-01,12.040999999999999,1.212,,,,,, 1810-09-01,9.532,1.247,,,,,, 1810-10-01,6.632000000000001,1.989,,,,,, 1810-11-01,3.827,2.64,,,,,, 1810-12-01,2.66,2.093,,,,,, 1811-01-01,1.374,2.323,,,,,, 1811-02-01,0.4500000000000002,3.475,,,,,, 1811-03-01,3.701,1.808,,,,,, 1811-04-01,6.3020000000000005,1.422,,,,,, 1811-05-01,9.443,1.663,,,,,, 1811-06-01,12.137,1.706,,,,,, 1811-07-01,11.956,1.383,,,,,, 1811-08-01,13.325999999999999,2.289,,,,,, 1811-09-01,10.368,1.931,,,,,, 1811-10-01,6.58,2.863,,,,,, 1811-11-01,3.503,1.802,,,,,, 1811-12-01,3.174,2.484,,,,,, 1812-01-01,0.977,4.545,,,,,, 1812-02-01,0.13100000000000026,3.062,,,,,, 1812-03-01,2.044,1.805,,,,,, 1812-04-01,6.949999999999998,1.984,,,,,, 1812-05-01,9.579999999999998,1.279,,,,,, 1812-06-01,12.005,1.1740000000000002,,,,,, 1812-07-01,14.355,1.463,,,,,, 1812-08-01,15.017999999999999,1.746,,,,,, 1812-09-01,10.185,2.052,,,,,, 1812-10-01,7.593,1.793,,,,,, 1812-11-01,4.369,2.585,,,,,, 1812-12-01,1.348,2.139,,,,,, 1813-01-01,-1.3849999999999998,2.191,,,,,, 1813-02-01,2.258,1.958,,,,,, 1813-03-01,1.5959999999999999,1.622,,,,,, 1813-04-01,8.181999999999999,1.486,,,,,, 1813-05-01,11.367,3.826,,,,,, 1813-06-01,13.242,1.138,,,,,, 1813-07-01,14.520999999999999,0.877,,,,,, 1813-08-01,13.097000000000001,0.995,,,,,, 1813-09-01,12.339,1.743,,,,,, 1813-10-01,8.666,1.565,,,,,, 1813-11-01,6.825,1.315,,,,,, 1813-12-01,2.171,1.79,,,,,, 1814-01-01,1.5020000000000002,2.622,,,,,, 1814-02-01,1.689,2.121,,,,,, 1814-03-01,2.664,2.259,,,,,, 1814-04-01,7.193,1.5,,,,,, 1814-05-01,9.417,2.321,,,,,, 1814-06-01,12.818,0.989,,,,,, 1814-07-01,12.532,1.852,,,,,, 1814-08-01,12.668,1.453,,,,,, 1814-09-01,10.675999999999998,1.332,,,,,, 1814-10-01,7.374,1.847,,,,,, 1814-11-01,6.739,3.428,,,,,, 1814-12-01,5.8290000000000015,4.298,,,,,, 1815-01-01,2.051,2.033,,,,,, 1815-02-01,2.273,2.386,,,,,, 1815-03-01,3.663,2.3280000000000003,,,,,, 1815-04-01,6.587999999999999,2.341,,,,,, 1815-05-01,9.845,1.812,,,,,, 1815-06-01,11.162,1.242,,,,,, 1815-07-01,14.394,2.371,,,,,, 1815-08-01,13.209000000000001,1.348,,,,,, 1815-09-01,11.151,1.503,,,,,, 1815-10-01,7.1370000000000005,2.295,,,,,, 1815-11-01,4.178,1.732,,,,,, 1815-12-01,1.2209999999999996,2.207,,,,,, 1816-01-01,2.737,2.724,,,,,, 1816-02-01,0.6759999999999997,2.947,,,,,, 1816-03-01,3.905,1.928,,,,,, 1816-04-01,7.606,2.129,,,,,, 1816-05-01,10.594000000000001,1.804,,,,,, 1816-06-01,11.79,1.087,,,,,, 1816-07-01,12.267000000000001,1.538,,,,,, 1816-08-01,12.57,1.257,,,,,, 1816-09-01,10.39,0.7070000000000001,,,,,, 1816-10-01,5.699,3.583,,,,,, 1816-11-01,4.058,3.81,,,,,, 1816-12-01,0.9580000000000002,2.801,,,,,, 1817-01-01,1.54,2.451,,,,,, 1817-02-01,3.6489999999999996,2.547,,,,,, 1817-03-01,4.569,2.153,,,,,, 1817-04-01,7.8889999999999985,1.836,,,,,, 1817-05-01,9.476,1.394,,,,,, 1817-06-01,11.287,1.25,,,,,, 1817-07-01,12.072000000000001,1.057,,,,,, 1817-08-01,13.402999999999999,1.307,,,,,, 1817-09-01,8.812000000000001,1.178,,,,,, 1817-10-01,6.2029999999999985,1.963,,,,,, 1817-11-01,4.638,1.6909999999999998,,,,,, 1817-12-01,0.16999999999999993,1.673,,,,,, 1818-01-01,1.2040000000000002,1.775,,,,,, 1818-02-01,0.7549999999999999,1.912,,,,,, 1818-03-01,5.565,2.177,,,,,, 1818-04-01,9.901,2.662,,,,,, 1818-05-01,11.247,1.457,,,,,, 1818-06-01,13.825,2.26,,,,,, 1818-07-01,13.51,1.9,,,,,, 1818-08-01,13.165999999999999,0.996,,,,,, 1818-09-01,10.578,1.063,,,,,, 1818-10-01,6.654,1.704,,,,,, 1818-11-01,5.035,2.807,,,,,, 1818-12-01,2.507,1.236,,,,,, 1819-01-01,1.0140000000000002,1.984,,,,,, 1819-02-01,2.286,1.995,,,,,, 1819-03-01,2.931,2.93,,,,,, 1819-04-01,7.029,1.344,,,,,, 1819-05-01,9.851,1.112,,,,,, 1819-06-01,12.526,1.539,,,,,, 1819-07-01,13.038,1.17,,,,,, 1819-08-01,12.557,1.124,,,,,, 1819-09-01,10.893999999999998,1.052,,,,,, 1819-10-01,9.312000000000001,1.223,,,,,, 1819-11-01,5.15,1.6269999999999998,,,,,, 1819-12-01,1.842,1.883,,,,,, 1820-01-01,1.236,3.9,,,,,, 1820-02-01,2.145,2.004,,,,,, 1820-03-01,4.618,1.945,,,,,, 1820-04-01,8.7,1.168,,,,,, 1820-05-01,11.62,1.256,,,,,, 1820-06-01,13.323,0.912,,,,,, 1820-07-01,13.311,1.375,,,,,, 1820-08-01,11.978,1.317,,,,,, 1820-09-01,11.16,1.176,,,,,, 1820-10-01,7.587999999999999,1.605,,,,,, 1820-11-01,4.4430000000000005,1.074,,,,,, 1820-12-01,1.273,1.693,,,,,, 1821-01-01,2.9989999999999997,1.5490000000000002,,,,,, 1821-02-01,3.758,2.018,,,,,, 1821-03-01,5.462000000000001,1.275,,,,,, 1821-04-01,7.738999999999999,0.858,,,,,, 1821-05-01,11.3,1.392,,,,,, 1821-06-01,12.608,1.4240000000000002,,,,,, 1821-07-01,13.039000000000001,1.289,,,,,, 1821-08-01,13.145,1.482,,,,,, 1821-09-01,10.178,1.219,,,,,, 1821-10-01,8.535,0.924,,,,,, 1821-11-01,5.601,1.802,,,,,, 1821-12-01,2.717,1.278,,,,,, 1822-01-01,2.759,2.416,,,,,, 1822-02-01,4.465,1.83,,,,,, 1822-03-01,7.787000000000001,2.016,,,,,, 1822-04-01,8.277999999999999,1.295,,,,,, 1822-05-01,10.486,1.159,,,,,, 1822-06-01,13.067,0.899,,,,,, 1822-07-01,14.212,1.068,,,,,, 1822-08-01,13.215,0.8959999999999999,,,,,, 1822-09-01,10.695,0.8690000000000001,,,,,, 1822-10-01,7.773999999999999,1.163,,,,,, 1822-11-01,4.501,1.345,,,,,, 1822-12-01,1.0210000000000004,1.547,,,,,, 1823-01-01,1.758,1.796,,,,,, 1823-02-01,1.966,1.93,,,,,, 1823-03-01,5.0680000000000005,1.192,,,,,, 1823-04-01,7.664999999999999,1.6769999999999998,,,,,, 1823-05-01,10.563,0.922,,,,,, 1823-06-01,13.958,1.125,,,,,, 1823-07-01,14.197,1.026,,,,,, 1823-08-01,13.13,0.6940000000000001,,,,,, 1823-09-01,10.198,1.083,,,,,, 1823-10-01,7.641999999999999,1.24,,,,,, 1823-11-01,4.508,2.079,,,,,, 1823-12-01,1.971,1.5830000000000002,,,,,, 1824-01-01,2.651,1.432,,,,,, 1824-02-01,2.679,1.784,,,,,, 1824-03-01,5.357,1.355,,,,,, 1824-04-01,8.375,1.288,,,,,, 1824-05-01,11.132,1.136,,,,,, 1824-06-01,13.427,1.953,,,,,, 1824-07-01,14.83,2.158,,,,,, 1824-08-01,13.437000000000001,0.924,,,,,, 1824-09-01,11.528,1.557,,,,,, 1824-10-01,8.197000000000001,0.774,,,,,, 1824-11-01,5.877000000000001,1.199,,,,,, 1824-12-01,5.0760000000000005,1.814,,,,,, 1825-01-01,3.213,1.913,,,,,, 1825-02-01,3.092,1.479,,,,,, 1825-03-01,5.365,1.646,,,,,, 1825-04-01,8.988,1.964,,,,,, 1825-05-01,10.751,1.325,,,,,, 1825-06-01,13.765,1.0490000000000002,,,,,, 1825-07-01,14.007,1.163,,,,,, 1825-08-01,13.269,1.335,,,,,, 1825-09-01,11.148,0.978,,,,,, 1825-10-01,7.978999999999999,1.261,,,,,, 1825-11-01,6.058,2.412,,,,,, 1825-12-01,3.037,1.569,,,,,, 1826-01-01,1.893,1.68,,,,,, 1826-02-01,1.533,1.619,,,,,, 1826-03-01,4.888,1.669,,,,,, 1826-04-01,8.402999999999999,2.204,,,,,, 1826-05-01,11.803999999999998,0.826,,,,,, 1826-06-01,13.02,1.539,,,,,, 1826-07-01,14.482000000000001,1.134,,,,,, 1826-08-01,13.109000000000002,1.511,,,,,, 1826-09-01,11.178,1.779,,,,,, 1826-10-01,8.459,1.789,,,,,, 1826-11-01,6.6339999999999995,1.145,,,,,, 1826-12-01,4.876,1.82,,,,,, 1827-01-01,3.593,2.3280000000000003,,,,,, 1827-02-01,4.415,1.952,,,,,, 1827-03-01,6.141,1.356,,,,,, 1827-04-01,9.428999999999998,2.669,,,,,, 1827-05-01,11.807,1.393,,,,,, 1827-06-01,13.548,1.228,,,,,, 1827-07-01,14.684000000000001,0.662,,,,,, 1827-08-01,13.694,0.79,,,,,, 1827-09-01,10.883,0.66,,,,,, 1827-10-01,8.51,1.222,,,,,, 1827-11-01,6.279,1.236,,,,,, 1827-12-01,2.722,1.827,,,,,, 1828-01-01,0.5950000000000002,2.036,,,,,, 1828-02-01,1.8530000000000002,2.002,,,,,, 1828-03-01,5.729,1.871,,,,,, 1828-04-01,8.737,1.471,,,,,, 1828-05-01,11.281,1.412,,,,,, 1828-06-01,14.124,1.081,,,,,, 1828-07-01,14.384,1.753,,,,,, 1828-08-01,13.635,0.975,,,,,, 1828-09-01,10.079999999999998,1.078,,,,,, 1828-10-01,8.655999999999999,1.832,,,,,, 1828-11-01,5.957000000000001,1.765,,,,,, 1828-12-01,2.9530000000000003,2.505,,,,,, 1829-01-01,2.032,1.931,,,,,, 1829-02-01,1.715,1.959,,,,,, 1829-03-01,5.061,1.294,,,,,, 1829-04-01,7.814999999999999,1.0,,,,,, 1829-05-01,11.336,1.123,,,,,, 1829-06-01,12.86,1.3119999999999998,,,,,, 1829-07-01,14.225,0.912,,,,,, 1829-08-01,13.399000000000001,0.86,,,,,, 1829-09-01,10.598,0.7759999999999999,,,,,, 1829-10-01,8.806000000000001,1.3119999999999998,,,,,, 1829-11-01,5.003,1.449,,,,,, 1829-12-01,2.452,1.909,,,,,, 1830-01-01,2.9570000000000003,2.346,,,,,, 1830-02-01,4.085,1.896,,,,,, 1830-03-01,4.4540000000000015,1.369,,,,,, 1830-04-01,8.841000000000001,1.098,,,,,, 1830-05-01,10.202,1.01,,,,,, 1830-06-01,12.827,1.7180000000000002,,,,,, 1830-07-01,14.942,1.839,,,,,, 1830-08-01,13.386,0.643,,,,,, 1830-09-01,10.54,1.023,,,,,, 1830-10-01,7.9929999999999986,1.18,,,,,, 1830-11-01,7.492999999999999,1.7280000000000002,,,,,, 1830-12-01,4.481,1.327,,,,,, 1831-01-01,2.182,2.217,,,,,, 1831-02-01,2.479,3.5410000000000004,,,,,, 1831-03-01,4.558,1.616,,,,,, 1831-04-01,7.731,0.908,,,,,, 1831-05-01,10.994000000000002,1.285,,,,,, 1831-06-01,13.203,1.882,,,,,, 1831-07-01,13.58,1.172,,,,,, 1831-08-01,12.49,0.7929999999999999,,,,,, 1831-09-01,9.946,0.954,,,,,, 1831-10-01,7.83,1.068,,,,,, 1831-11-01,4.412,1.358,,,,,, 1831-12-01,2.265,1.584,,,,,, 1832-01-01,1.7169999999999999,1.757,,,,,, 1832-02-01,1.833,1.656,,,,,, 1832-03-01,4.65,1.374,,,,,, 1832-04-01,8.059,1.0590000000000002,,,,,, 1832-05-01,10.489,1.252,,,,,, 1832-06-01,12.857000000000001,1.126,,,,,, 1832-07-01,13.727,2.067,,,,,, 1832-08-01,11.966,1.3090000000000002,,,,,, 1832-09-01,10.425999999999998,1.194,,,,,, 1832-10-01,8.634,0.983,,,,,, 1832-11-01,4.2620000000000005,1.914,,,,,, 1832-12-01,0.7819999999999996,2.794,,,,,, 1833-01-01,2.006,1.76,,,,,, 1833-02-01,2.815,1.354,,,,,, 1833-03-01,4.521,1.367,,,,,, 1833-04-01,7.869,1.0759999999999998,,,,,, 1833-05-01,10.581,0.961,,,,,, 1833-06-01,13.049000000000001,0.883,,,,,, 1833-07-01,13.802999999999999,1.42,,,,,, 1833-08-01,13.222000000000001,0.835,,,,,, 1833-09-01,11.236,0.8190000000000001,,,,,, 1833-10-01,7.899999999999999,1.108,,,,,, 1833-11-01,6.596,1.388,,,,,, 1833-12-01,2.5580000000000003,1.831,,,,,, 1834-01-01,0.3340000000000001,2.032,,,,,, 1834-02-01,2.329,1.483,,,,,, 1834-03-01,5.736000000000001,1.28,,,,,, 1834-04-01,8.084999999999999,1.11,,,,,, 1834-05-01,11.234000000000002,0.6970000000000001,,,,,, 1834-06-01,12.799000000000001,0.7609999999999999,,,,,, 1834-07-01,14.197,1.186,,,,,, 1834-08-01,13.412,0.866,,,,,, 1834-09-01,11.571,0.731,,,,,, 1834-10-01,8.616999999999999,0.773,,,,,, 1834-11-01,6.355,1.849,,,,,, 1834-12-01,3.092,1.0590000000000002,,,,,, 1835-01-01,2.551,1.755,,,,,, 1835-02-01,2.967,1.464,,,,,, 1835-03-01,4.507,1.136,,,,,, 1835-04-01,7.768999999999999,1.079,,,,,, 1835-05-01,10.171,1.4469999999999998,,,,,, 1835-06-01,12.007,0.992,,,,,, 1835-07-01,13.129000000000001,0.693,,,,,, 1835-08-01,12.322000000000001,0.805,,,,,, 1835-09-01,9.942,0.925,,,,,, 1835-10-01,7.834999999999999,1.021,,,,,, 1835-11-01,4.312,1.419,,,,,, 1835-12-01,1.198,2.568,,,,,, 1836-01-01,1.67,1.6980000000000002,,,,,, 1836-02-01,2.371,1.611,,,,,, 1836-03-01,5.4479999999999995,1.208,,,,,, 1836-04-01,7.314999999999999,0.983,,,,,, 1836-05-01,10.279000000000002,1.297,,,,,, 1836-06-01,12.549000000000001,0.893,,,,,, 1836-07-01,13.645999999999999,0.6,,,,,, 1836-08-01,12.83,1.362,,,,,, 1836-09-01,10.812000000000001,0.975,,,,,, 1836-10-01,8.756,1.131,,,,,, 1836-11-01,3.8139999999999996,1.192,,,,,, 1836-12-01,2.86,1.083,,,,,, 1837-01-01,1.94,2.033,,,,,, 1837-02-01,2.619,1.893,,,,,, 1837-03-01,3.865,1.3259999999999998,,,,,, 1837-04-01,6.555999999999999,1.017,,,,,, 1837-05-01,9.973,1.574,,,,,, 1837-06-01,12.099,0.7979999999999999,,,,,, 1837-07-01,13.526,1.618,,,,,, 1837-08-01,13.017999999999999,1.224,,,,,, 1837-09-01,10.805,0.664,,,,,, 1837-10-01,7.653,0.851,,,,,, 1837-11-01,4.1690000000000005,1.307,,,,,, 1837-12-01,2.285,1.186,,,,,, 1838-01-01,-0.5569999999999999,1.999,,,,,, 1838-02-01,1.5630000000000002,1.622,,,,,, 1838-03-01,3.7230000000000003,1.472,,,,,, 1838-04-01,7.382999999999999,1.339,,,,,, 1838-05-01,9.985,0.8220000000000001,,,,,, 1838-06-01,12.742,0.631,,,,,, 1838-07-01,14.367,0.884,,,,,, 1838-08-01,13.568,0.986,,,,,, 1838-09-01,11.106,0.889,,,,,, 1838-10-01,8.526,1.021,,,,,, 1838-11-01,5.16,1.044,,,,,, 1838-12-01,2.613,1.239,,,,,, 1839-01-01,2.156,1.681,,,,,, 1839-02-01,3.4819999999999998,1.546,,,,,, 1839-03-01,2.673,1.493,,,,,, 1839-04-01,7.891999999999999,0.92,,,,,, 1839-05-01,10.289000000000001,0.68,,,,,, 1839-06-01,12.548,0.8390000000000001,,,,,, 1839-07-01,14.411,0.942,,,,,, 1839-08-01,14.07,1.296,,,,,, 1839-09-01,10.853,0.7140000000000001,,,,,, 1839-10-01,8.219,0.972,,,,,, 1839-11-01,3.92,1.4509999999999998,,,,,, 1839-12-01,1.0739999999999998,1.619,,,,,, 1840-01-01,2.5610000000000004,1.4680000000000002,,,,,, 1840-02-01,2.1020000000000003,1.561,,,,,, 1840-03-01,4.04,1.469,,,,,, 1840-04-01,7.943,0.7759999999999999,,,,,, 1840-05-01,11.173,0.698,,,,,, 1840-06-01,13.411,1.028,,,,,, 1840-07-01,14.714,0.462,,,,,, 1840-08-01,13.085999999999999,0.936,,,,,, 1840-09-01,11.01,0.586,,,,,, 1840-10-01,7.505,0.853,,,,,, 1840-11-01,4.101,0.982,,,,,, 1840-12-01,1.909,1.075,,,,,, 1841-01-01,0.6490000000000002,1.761,,,,,, 1841-02-01,2.468,1.602,,,,,, 1841-03-01,3.307,1.324,,,,,, 1841-04-01,6.77,0.942,,,,,, 1841-05-01,10.764000000000001,0.573,,,,,, 1841-06-01,13.062000000000001,0.64,,,,,, 1841-07-01,14.552,0.737,,,,,, 1841-08-01,13.708,0.7490000000000001,,,,,, 1841-09-01,10.921,0.583,,,,,, 1841-10-01,8.764999999999999,0.654,,,,,, 1841-11-01,4.744,0.878,,,,,, 1841-12-01,2.548,0.981,,,,,, 1842-01-01,1.636,1.64,,,,,, 1842-02-01,2.787,1.56,,,,,, 1842-03-01,5.75,1.164,,,,,, 1842-04-01,8.309999999999999,0.76,,,,,, 1842-05-01,10.535,0.643,,,,,, 1842-06-01,12.629000000000001,0.6609999999999999,,,,,, 1842-07-01,13.584000000000001,0.509,,,,,, 1842-08-01,13.241,0.642,,,,,, 1842-09-01,10.94,0.677,,,,,, 1842-10-01,8.307,0.759,,,,,, 1842-11-01,4.824,0.792,,,,,, 1842-12-01,3.73,0.963,,,,,, 1843-01-01,2.9739999999999998,1.212,,,,,, 1843-02-01,3.92,1.045,,,,,, 1843-03-01,4.744,0.88,,,,,, 1843-04-01,7.829999999999999,0.691,,,,,, 1843-05-01,10.04,0.636,,,,,, 1843-06-01,12.53,0.523,,,,,, 1843-07-01,13.991,0.545,,,,,, 1843-08-01,13.295,0.564,,,,,, 1843-09-01,11.326,0.534,,,,,, 1843-10-01,8.722000000000001,0.596,,,,,, 1843-11-01,4.947,0.775,,,,,, 1843-12-01,3.765,0.997,,,,,, 1844-01-01,1.868,1.17,,,,,, 1844-02-01,2.0380000000000003,1.137,,,,,, 1844-03-01,4.734,0.999,,,,,, 1844-04-01,7.3889999999999985,0.81,,,,,, 1844-05-01,10.109,0.648,,,,,, 1844-06-01,12.84,0.7240000000000001,,,,,, 1844-07-01,13.921,0.605,,,,,, 1844-08-01,13.046,0.6920000000000001,,,,,, 1844-09-01,10.819,0.8170000000000001,,,,,, 1844-10-01,8.7,0.919,,,,,, 1844-11-01,4.401,1.327,,,,,, 1844-12-01,1.891,1.264,,,,,, 1845-01-01,2.661,1.364,,,,,, 1845-02-01,1.6269999999999998,1.226,,,,,, 1845-03-01,4.651,0.882,,,,,, 1845-04-01,8.158,0.731,,,,,, 1845-05-01,10.433,0.772,,,,,, 1845-06-01,12.863,0.631,,,,,, 1845-07-01,14.319,0.725,,,,,, 1845-08-01,13.556,0.561,,,,,, 1845-09-01,11.234000000000002,0.536,,,,,, 1845-10-01,7.781999999999999,0.652,,,,,, 1845-11-01,5.194,1.155,,,,,, 1845-12-01,1.7359999999999998,1.3430000000000002,,,,,, 1846-01-01,3.213,1.47,,,,,, 1846-02-01,3.3760000000000003,1.177,,,,,, 1846-03-01,6.314,1.031,,,,,, 1846-04-01,7.472999999999999,1.729,,,,,, 1846-05-01,10.896,0.8440000000000001,,,,,, 1846-06-01,13.53,1.143,,,,,, 1846-07-01,14.923,0.737,,,,,, 1846-08-01,14.120999999999999,0.765,,,,,, 1846-09-01,11.738,0.716,,,,,, 1846-10-01,8.229,0.8759999999999999,,,,,, 1846-11-01,5.0440000000000005,1.039,,,,,, 1846-12-01,3.7760000000000002,1.094,,,,,, 1847-01-01,2.753,1.269,,,,,, 1847-02-01,3.602,1.383,,,,,, 1847-03-01,4.046,1.5830000000000002,,,,,, 1847-04-01,7.979999999999999,0.998,,,,,, 1847-05-01,10.622,0.752,,,,,, 1847-06-01,12.828,0.428,,,,,, 1847-07-01,14.25,0.6,,,,,, 1847-08-01,13.414000000000001,0.657,,,,,, 1847-09-01,11.619000000000002,0.528,,,,,, 1847-10-01,8.618,0.8440000000000001,,,,,, 1847-11-01,5.574,0.778,,,,,, 1847-12-01,1.7259999999999998,0.988,,,,,, 1848-01-01,0.5100000000000002,1.341,,,,,, 1848-02-01,3.7260000000000004,1.4369999999999998,,,,,, 1848-03-01,4.806,0.967,,,,,, 1848-04-01,8.11,1.054,,,,,, 1848-05-01,10.579999999999998,0.584,,,,,, 1848-06-01,13.247,0.583,,,,,, 1848-07-01,14.466,0.613,,,,,, 1848-08-01,13.267999999999999,0.7090000000000001,,,,,, 1848-09-01,10.997,0.623,,,,,, 1848-10-01,8.655,0.8370000000000001,,,,,, 1848-11-01,5.29,0.748,,,,,, 1848-12-01,2.099,0.96,,,,,, 1849-01-01,1.9409999999999998,1.308,,,,,, 1849-02-01,2.638,1.345,,,,,, 1849-03-01,5.3020000000000005,1.06,,,,,, 1849-04-01,7.028,0.845,,,,,, 1849-05-01,10.159,0.644,,,,,, 1849-06-01,13.0,0.659,,,,,, 1849-07-01,14.458,0.6779999999999999,,,,,, 1849-08-01,13.603,0.902,,,,,, 1849-09-01,11.093,0.568,,,,,, 1849-10-01,8.889999999999997,0.733,,,,,, 1849-11-01,5.7780000000000005,1.3130000000000002,,,,,, 1849-12-01,1.923,0.908,,,,,, 1850-01-01,0.7490000000000001,1.105,8.241999999999999,1.7380000000000002,-3.2060000000000004,2.822,12.832999999999998,0.3670000000000001 1850-02-01,3.071,1.275,9.97,3.007,-2.2910000000000004,1.6230000000000002,13.588,0.414 1850-03-01,4.954,0.955,10.347000000000001,2.401,-1.905,1.41,14.043,0.341 1850-04-01,7.2170000000000005,0.665,12.934,1.004,1.018,1.329,14.667,0.267 1850-05-01,10.004,0.617,15.655,2.406,3.811,1.347,15.507,0.249 1850-06-01,13.15,0.614,18.946,2.817,7.106,0.857,16.352999999999998,0.245 1850-07-01,14.492,0.614,19.233,2.84,8.014,0.7859999999999999,16.783,0.238 1850-08-01,14.039000000000001,0.802,18.477,2.079,7.405999999999999,1.086,16.718,0.28 1850-09-01,11.505,0.675,15.846000000000002,2.692,4.533,1.798,15.886,0.254 1850-10-01,8.091000000000001,0.863,13.189,2.338,2.013,2.133,14.831,0.297 1850-11-01,4.7330000000000005,1.149,11.388,3.491,-0.12,1.069,13.897,0.368 1850-12-01,2.803,1.183,7.492999999999999,1.925,-2.8070000000000004,2.594,13.3,0.378 1851-01-01,2.431,1.122,8.950999999999997,2.399,-2.443,1.771,13.245,0.362 1851-02-01,2.508,1.1,9.808,2.654,-1.507,2.714,13.331,0.361 1851-03-01,4.192,0.971,11.507,2.037,-0.7000000000000001,1.611,13.897,0.33 1851-04-01,7.286999999999999,0.8290000000000001,14.235999999999999,1.97,2.331,1.281,14.64,0.298 1851-05-01,11.113,0.936,15.010000000000002,3.184,4.136,1.011,15.771,0.322 1851-06-01,13.418,0.655,17.287999999999997,3.187,6.3740000000000006,1.13,16.496000000000002,0.261 1851-07-01,14.530999999999999,0.606,17.102999999999998,3.751,7.425,1.48,16.831,0.244 1851-08-01,13.751,0.775,17.360999999999994,1.392,6.594999999999999,1.281,16.621000000000002,0.276 1851-09-01,11.677,0.581,16.360000000000007,2.496,5.525,1.643,16.058,0.25 1851-10-01,9.122,1.058,14.960999999999999,1.915,3.298,1.297,15.213,0.358 1851-11-01,4.973,0.968,7.951,1.833,-1.345,1.527,14.161,0.344 1851-12-01,3.14,0.982,6.436,1.949,-3.242,2.843,13.638,0.339 1852-01-01,2.3760000000000003,1.389,8.474,4.24,-2.7550000000000003,1.705,13.231,0.438 1852-02-01,2.54,1.115,8.568999999999999,2.737,-2.3369999999999997,1.78,13.311,0.371 1852-03-01,3.884,0.915,9.215,2.88,-2.491,1.471,13.736,0.317 1852-04-01,7.486999999999999,1.158,11.249,1.491,0.6469999999999998,1.256,14.786,0.377 1852-05-01,11.169,0.855,15.835,2.805,4.6240000000000006,0.971,15.899000000000001,0.298 1852-06-01,13.164000000000001,0.636,17.759999999999994,1.925,6.705,0.6829999999999999,16.619,0.243 1852-07-01,14.512,0.778,17.795,2.924,7.57,1.35,16.984,0.278 1852-08-01,13.304,0.7659999999999999,17.567,1.812,7.4289999999999985,1.222,16.566,0.277 1852-09-01,11.478,0.6890000000000001,16.665000000000006,1.4069999999999998,5.742000000000001,1.51,16.038,0.261 1852-10-01,8.91,0.654,14.849,1.4980000000000002,2.813,0.963,15.177999999999999,0.25 1852-11-01,4.593,0.693,12.009,4.373,0.736,1.48,13.948,0.26 1852-12-01,3.785,1.371,10.781,3.339,-0.6390000000000001,2.204,13.782,0.4270000000000001 1853-01-01,1.786,1.108,8.972000000000001,2.461,-2.818,1.556,13.143,0.35600000000000004 1853-02-01,2.228,1.492,8.29,1.535,-3.213,1.783,13.362,0.457 1853-03-01,4.078,0.918,10.325,2.294,-1.966,1.494,14.033,0.306 1853-04-01,7.540999999999999,0.8240000000000001,13.72,2.69,1.6549999999999998,1.15,14.919,0.28300000000000003 1853-05-01,10.975,0.743,16.543000000000006,3.36,4.364000000000001,0.782,15.793,0.261 1853-06-01,13.41,0.674,18.611,1.124,6.944000000000001,1.418,16.455000000000002,0.24 1853-07-01,14.645,0.659,18.923,2.0580000000000003,6.933,1.195,16.999000000000002,0.238 1853-08-01,13.953,0.723,19.308,1.2,7.273,0.879,16.789,0.25 1853-09-01,11.71,0.7490000000000001,17.691000000000006,1.847,5.779,0.928,15.942,0.259 1853-10-01,8.535,0.546,14.757,2.451,1.85,2.277,14.874,0.211 1853-11-01,4.783,0.868,11.269,2.15,-0.07599999999999996,1.277,13.829,0.29 1853-12-01,2.858,0.716,8.23,1.971,-4.015,1.528,13.324000000000002,0.255 1854-01-01,1.281,0.977,8.786,2.589,-3.5520000000000005,1.362,12.983,0.313 1854-02-01,1.941,1.08,8.508,1.863,-4.109,1.467,13.248,0.342 1854-03-01,4.698,0.789,10.469000000000001,2.107,-1.413,1.517,14.089,0.267 1854-04-01,7.622000000000001,0.674,13.402000000000001,2.16,0.5659999999999998,1.25,14.945,0.242 1854-05-01,11.095,0.638,16.748,1.513,4.184,1.306,15.793,0.233 1854-06-01,12.829,0.5329999999999999,18.188,0.964,6.492999999999999,0.902,16.285999999999998,0.206 1854-07-01,14.692,0.85,20.426,1.853,7.89,0.912,16.775000000000002,0.282 1854-08-01,13.889000000000001,0.898,19.291,1.36,7.302999999999999,1.021,16.707,0.28800000000000003 1854-09-01,11.514000000000001,0.552,17.357000000000006,1.142,5.553999999999999,1.22,16.098,0.21 1854-10-01,9.763,0.964,15.341,1.3119999999999998,3.033,1.229,15.378,0.309 1854-11-01,5.745,0.7859999999999999,10.707,1.954,-1.406,1.635,14.123,0.261 1854-12-01,3.457,1.167,8.506,2.583,-3.397,2.463,13.467,0.364 1855-01-01,2.522,1.465,8.219999999999999,1.099,-3.125,1.699,13.384,0.442 1855-02-01,2.982,1.3219999999999998,7.604,3.083,-4.947,2.343,13.645999999999999,0.402 1855-03-01,4.617,0.898,10.16,1.69,-1.865,1.338,14.172,0.294 1855-04-01,8.58,1.034,13.709000000000001,1.024,1.1409999999999998,1.06,15.187000000000001,0.328 1855-05-01,11.186,0.799,16.77,0.6509999999999999,4.2860000000000005,0.866,15.822000000000001,0.267 1855-06-01,12.984000000000002,0.79,17.642,1.197,6.476,1.231,16.445,0.264 1855-07-01,13.925999999999998,0.635,18.467,0.784,7.691,0.703,16.675,0.225 1855-08-01,13.547,0.601,19.012,0.957,6.930999999999999,1.345,16.685000000000002,0.214 1855-09-01,11.140999999999998,0.638,17.078000000000007,0.741,5.499,1.531,15.829,0.226 1855-10-01,8.443999999999999,0.778,14.26,2.029,2.317,2.929,15.075,0.264 1855-11-01,5.186,0.69,11.117,1.118,-0.5170000000000001,2.963,14.118,0.246 1855-12-01,2.214,0.996,7.879,1.604,-3.4530000000000003,1.856,13.215,0.322 1856-01-01,2.76,0.752,7.297999999999999,2.331,-3.727,2.795,13.368,0.261 1856-02-01,2.226,0.953,8.294,2.111,-3.679,3.428,13.311,0.306 1856-03-01,4.372,0.735,10.327,2.441,-2.241,2.56,13.957,0.252 1856-04-01,7.750999999999999,0.57,14.387,1.399,1.242,1.025,14.945,0.217 1856-05-01,10.53,0.915,16.704,2.209,3.945,0.8809999999999999,15.812999999999999,0.29600000000000004 1856-06-01,13.496,0.778,18.326,1.243,6.879,1.083,16.492,0.264 1856-07-01,14.019,0.422,18.349,1.471,7.035,0.6779999999999999,16.675,0.185 1856-08-01,13.020999999999999,0.866,18.386,1.284,6.767,1.754,16.39,0.285 1856-09-01,10.948,0.884,17.21,1.294,4.864,1.222,15.640999999999998,0.289 1856-10-01,8.087,0.759,14.128,1.917,1.979,2.153,14.783,0.256 1856-11-01,5.36,0.5770000000000001,10.349,1.477,-1.433,1.484,13.856,0.211 1856-12-01,3.3810000000000002,0.918,7.885,2.402,-3.33,2.279,13.321,0.3 1857-01-01,1.821,0.924,6.642,4.164,-5.407,3.498,12.972000000000001,0.3 1857-02-01,2.481,0.885,9.602,2.59,-1.92,1.912,13.385000000000002,0.29 1857-03-01,4.312,0.8440000000000001,10.2,2.047,-1.0710000000000002,2.391,13.915999999999999,0.278 1857-04-01,6.826999999999999,0.5429999999999999,13.107000000000001,1.864,0.8799999999999999,1.106,14.481,0.212 1857-05-01,9.885,0.6809999999999999,15.6,1.975,3.639,0.7390000000000001,15.279000000000002,0.241 1857-06-01,12.611,0.7979999999999999,17.372,2.106,5.849,0.736,16.175,0.267 1857-07-01,13.953,0.792,18.717,1.48,7.438,1.352,16.477999999999998,0.266 1857-08-01,13.203,0.795,18.194000000000003,1.164,6.997999999999998,0.927,16.459,0.266 1857-09-01,11.056,0.672,17.223000000000006,1.133,5.146,1.467,15.84,0.241 1857-10-01,8.198,0.726,14.558,2.017,2.8810000000000002,1.5830000000000002,14.918,0.255 1857-11-01,5.236000000000001,0.636,10.527000000000001,3.003,-0.605,1.579,13.829,0.241 1857-12-01,3.515,0.7170000000000001,9.509,2.607,-1.546,1.804,13.367,0.26 1858-01-01,2.739,1.094,9.044,2.067,-2.6919999999999997,2.052,13.220999999999998,0.34700000000000003 1858-02-01,2.2840000000000003,0.662,7.829,2.149,-4.1480000000000015,1.591,13.29,0.236 1858-03-01,4.834,0.757,10.44,1.837,-1.4700000000000002,1.325,14.044,0.255 1858-04-01,8.25,0.6609999999999999,13.912,1.741,1.041,1.479,14.967,0.239 1858-05-01,10.851,0.624,16.258000000000006,2.225,3.8640000000000008,1.055,15.540999999999999,0.231 1858-06-01,12.956,0.688,18.968,1.622,7.037999999999999,0.677,16.172,0.248 1858-07-01,13.677,0.754,18.561,1.694,7.888,0.845,16.51,0.266 1858-08-01,13.22,0.5579999999999999,18.261,1.862,7.2639999999999985,0.88,16.489,0.21600000000000005 1858-09-01,11.148,0.517,17.559,1.227,5.505,1.374,15.833,0.213 1858-10-01,8.809999999999997,0.62,15.071,1.825,3.688,0.921,15.114,0.246 1858-11-01,5.99,0.774,9.802999999999999,2.061,-0.6840000000000002,1.289,14.134,0.276 1858-12-01,2.444,0.688,8.49,2.13,-1.965,1.204,13.263,0.249 1859-01-01,2.015,1.007,8.074,1.753,-2.7,1.295,13.058,0.326 1859-02-01,2.611,1.0,8.968,1.791,-1.858,1.713,13.33,0.327 1859-03-01,5.023,0.916,11.16,1.37,-0.4580000000000001,1.035,14.104000000000001,0.312 1859-04-01,8.542,0.617,14.225,2.009,1.4340000000000002,0.8640000000000001,15.197000000000001,0.246 1859-05-01,11.456,0.616,17.021,1.236,5.277,1.77,15.868,0.238 1859-06-01,13.142000000000001,0.514,18.285,2.2840000000000003,7.057,1.026,16.400000000000002,0.226 1859-07-01,13.827,0.5670000000000001,19.444000000000003,1.968,7.85,0.737,16.494,0.234 1859-08-01,13.217,0.468,19.201,1.673,7.964999999999999,0.8490000000000001,16.45,0.205 1859-09-01,11.079999999999998,0.365,16.483,1.839,5.422999999999999,0.873,15.589,0.204 1859-10-01,8.834,0.638,14.235,1.945,2.968,0.908,15.062,0.25 1859-11-01,5.912000000000001,0.5720000000000001,10.973,1.519,-0.014000000000000123,0.996,14.094000000000001,0.244 1859-12-01,3.365,0.816,8.254999999999999,3.11,-3.422,1.65,13.513,0.287 1860-01-01,2.077,0.86,9.771999999999998,2.26,-2.059,1.59,13.17,0.294 1860-02-01,2.6319999999999997,0.75,8.747,2.3480000000000003,-3.2319999999999998,1.188,13.424,0.275 1860-03-01,3.4939999999999998,0.87,11.821,2.164,-0.7140000000000001,1.146,13.714,0.302 1860-04-01,7.76,0.46,13.511,1.721,1.805,1.295,14.861,0.209 1860-05-01,11.062000000000001,0.7440000000000001,16.822000000000006,1.139,4.792000000000002,1.094,15.758,0.276 1860-06-01,13.271999999999998,0.5479999999999999,19.163,1.361,7.212999999999999,0.7659999999999999,16.338,0.24 1860-07-01,14.203,0.471,18.566,2.125,7.45,0.8590000000000001,16.737000000000002,0.221 1860-08-01,13.765,0.503,18.984,1.5590000000000002,7.068999999999999,0.65,16.634,0.234 1860-09-01,11.892000000000001,0.535,16.892000000000003,2.219,5.5360000000000005,1.212,16.133,0.242 1860-10-01,8.712,0.466,13.677,1.876,2.906,0.903,15.075999999999999,0.223 1860-11-01,5.027,0.555,11.012,1.971,-0.111,1.121,13.922,0.233 1860-12-01,1.6340000000000001,0.75,8.556000000000001,2.475,-2.5250000000000004,1.188,12.828,0.277 1861-01-01,0.4040000000000004,0.846,7.7429999999999986,2.125,-3.256,1.721,12.475,0.299 1861-02-01,2.137,0.755,8.600999999999999,1.862,-3.055,1.479,12.917000000000002,0.28 1861-03-01,4.489,0.759,9.786,2.204,-2.007,1.402,13.824000000000002,0.3 1861-04-01,7.486999999999999,0.6990000000000001,12.772,1.435,1.372,0.999,15.018,0.29100000000000004 1861-05-01,10.515999999999998,0.5379999999999999,15.401000000000002,2.279,3.858000000000001,0.887,15.489,0.277 1861-06-01,13.017000000000001,0.7979999999999999,19.299,1.078,7.391,1.3219999999999998,16.358,0.319 1861-07-01,13.967,0.477,19.37,1.53,7.803,1.286,16.547,0.261 1861-08-01,13.655999999999999,0.5760000000000001,18.907,1.014,7.562999999999999,0.867,16.715999999999998,0.264 1861-09-01,11.409,0.501,17.769000000000005,1.736,5.988,0.936,15.927,0.243 1861-10-01,8.475,0.494,15.644,1.99,3.2769999999999997,0.8490000000000001,14.905,0.244 1861-11-01,5.707000000000001,0.482,12.044,2.353,0.41,0.995,14.095,0.24 1861-12-01,2.8939999999999997,0.916,8.945,1.29,-2.191,1.221,13.337,0.324 1862-01-01,0.685,1.105,7.360999999999999,2.394,-4.11,1.745,12.658,0.378 1862-02-01,1.769,0.7120000000000001,7.407,2.7960000000000003,-4.346,2.057,13.192,0.295 1862-03-01,4.485,0.6609999999999999,11.112,2.0,-1.314,1.149,14.044,0.284 1862-04-01,7.322999999999999,0.8270000000000001,13.955,2.977,1.932,1.11,14.825,0.316 1862-05-01,10.739,0.58,17.854000000000006,1.311,5.675000000000002,1.496,15.708,0.26 1862-06-01,12.86,0.535,18.539,1.843,6.795,1.187,16.349,0.244 1862-07-01,13.927999999999999,0.445,20.663,1.998,9.21,1.862,16.593,0.232 1862-08-01,13.187999999999999,0.504,19.605,1.258,8.085999999999999,1.3330000000000002,16.305999999999997,0.247 1862-09-01,11.028,0.519,18.042,0.961,6.122999999999999,1.189,15.788,0.245 1862-10-01,8.283,0.618,15.138,1.961,3.245,1.0490000000000002,14.902,0.269 1862-11-01,4.792,0.7509999999999999,11.889000000000001,2.008,0.24399999999999994,1.5830000000000002,13.784,0.31 1862-12-01,1.6230000000000002,1.01,9.402000000000001,2.597,-1.7469999999999999,1.5719999999999998,12.732000000000001,0.3720000000000001 1863-01-01,3.0340000000000003,1.228,8.462,3.188,-1.766,2.51,13.296,0.417 1863-02-01,3.253,1.099,8.908999999999997,1.653,-2.1100000000000003,1.393,13.634,0.389 1863-03-01,4.6819999999999995,0.7829999999999999,10.352,1.234,-0.853,1.362,14.005999999999998,0.312 1863-04-01,7.930999999999999,0.792,14.257,2.117,1.642,1.231,15.01,0.319 1863-05-01,11.081,0.687,16.999000000000002,2.396,5.917000000000002,1.777,15.823,0.281 1863-06-01,12.794,0.542,18.202,2.013,7.925000000000002,1.462,16.224,0.266 1863-07-01,13.765,0.642,18.095,1.943,8.307,0.89,16.575,0.301 1863-08-01,13.294,0.523,18.408,1.931,7.832999999999998,0.927,16.437,0.276 1863-09-01,11.23,0.556,15.910000000000002,1.161,5.439,1.391,15.898,0.28300000000000003 1863-10-01,8.235,0.521,13.944,1.375,3.282,0.7909999999999999,14.978,0.278 1863-11-01,5.392,0.515,11.351,1.255,0.17499999999999993,1.319,13.992,0.287 1863-12-01,2.6510000000000002,1.088,8.55,1.828,-2.5860000000000003,1.09,13.356,0.387 1864-01-01,1.551,0.8759999999999999,7.071000000000001,1.503,-3.8480000000000003,1.789,12.879000000000001,0.332 1864-02-01,2.506,1.05,8.542,1.51,-2.8560000000000003,1.565,13.275,0.3720000000000001 1864-03-01,4.651,0.767,11.747,1.833,-0.7250000000000001,1.6880000000000002,13.99,0.307 1864-04-01,7.515,0.622,13.395,1.09,1.665,1.374,14.83,0.29100000000000004 1864-05-01,10.956,0.531,16.908,0.935,4.849,0.8390000000000001,15.851,0.282 1864-06-01,13.365,0.73,18.457,1.541,7.909000000000002,0.7609999999999999,16.490000000000002,0.285 1864-07-01,14.162,0.57,18.831,1.3330000000000002,7.412999999999999,0.846,16.715,0.256 1864-08-01,13.434000000000001,0.5660000000000001,18.909000000000002,0.8740000000000001,7.5459999999999985,0.7979999999999999,16.494,0.25 1864-09-01,11.37,0.546,17.063000000000002,1.188,5.721,0.939,15.85,0.271 1864-10-01,8.795,0.484,15.047,1.651,3.2460000000000004,1.606,14.972,0.251 1864-11-01,5.232,0.6990000000000001,12.502,1.611,0.6649999999999999,2.153,14.140999999999998,0.281 1864-12-01,2.266,0.6759999999999999,8.555,1.04,-2.6630000000000003,1.547,13.270999999999999,0.276 1865-01-01,2.975,0.956,8.841000000000001,1.331,-3.2119999999999997,1.962,13.503,0.348 1865-02-01,2.1519999999999997,0.8320000000000001,8.911,1.17,-3.117,1.606,13.505999999999998,0.329 1865-03-01,4.039,0.768,11.582,2.153,-0.5920000000000001,1.918,13.914000000000001,0.32299999999999995 1865-04-01,7.313999999999999,0.643,14.276,1.359,1.7930000000000001,1.22,14.861,0.3 1865-05-01,10.917,0.488,16.968,1.314,4.8740000000000006,0.81,15.755999999999998,0.27 1865-06-01,13.214,0.586,19.022000000000002,1.301,7.5089999999999995,0.612,16.414,0.277 1865-07-01,14.22,0.542,19.108,1.134,8.163,0.983,16.749000000000002,0.292 1865-08-01,13.58,0.535,19.111,1.74,7.594999999999999,0.698,16.657,0.287 1865-09-01,11.797,0.5539999999999999,17.840999999999998,1.039,5.789,1.3030000000000002,16.082,0.29 1865-10-01,9.136000000000001,0.444,15.280999999999999,1.936,3.345,0.908,15.157,0.28600000000000003 1865-11-01,6.144,0.71,12.418,1.112,0.992,1.384,14.100999999999999,0.316 1865-12-01,2.6460000000000004,0.888,8.218,1.703,-2.5170000000000003,1.255,13.26,0.333 1866-01-01,2.932,0.861,8.187999999999999,1.395,-2.923,1.517,13.467,0.325 1866-02-01,2.274,0.8540000000000001,9.636000000000001,1.18,-2.053,1.262,13.585999999999999,0.328 1866-03-01,4.421,0.711,10.824000000000002,1.328,-0.8809999999999999,1.148,13.95,0.309 1866-04-01,7.914,0.531,14.889000000000001,1.224,2.084,1.248,14.713,0.267 1866-05-01,10.898,0.5660000000000001,16.817,0.845,4.582000000000002,0.823,15.63,0.279 1866-06-01,12.853,0.4320000000000001,18.753,1.1740000000000002,7.077000000000001,1.008,16.596,0.258 1866-07-01,14.602,0.44,20.369,0.715,8.183,0.721,17.06,0.259 1866-08-01,13.532,0.629,18.947,1.031,7.087999999999999,0.8859999999999999,16.695,0.28800000000000003 1866-09-01,11.527000000000001,0.496,17.508000000000006,1.401,5.807,0.916,15.918,0.272 1866-10-01,8.506,0.512,14.624,0.848,2.994,0.91,15.062,0.28 1866-11-01,5.8950000000000005,0.526,10.76,1.183,0.18200000000000005,1.503,14.275,0.269 1866-12-01,4.152,0.7140000000000001,8.676,1.026,-2.9530000000000003,1.854,13.732,0.299 1867-01-01,2.4819999999999998,0.941,8.136999999999999,1.332,-3.3080000000000003,1.385,13.371,0.364 1867-02-01,2.664,0.936,9.183,1.4369999999999998,-2.1719999999999997,1.3969999999999998,13.458,0.348 1867-03-01,4.4540000000000015,0.65,10.572000000000001,2.025,-1.195,2.083,14.073,0.267 1867-04-01,8.258,0.611,13.852,0.8290000000000001,2.307,1.029,15.1,0.277 1867-05-01,10.495,0.414,16.21,1.162,4.665000000000001,0.782,15.56,0.241 1867-06-01,13.303,0.482,19.753,0.825,8.032,0.722,16.366,0.252 1867-07-01,14.222999999999999,0.401,20.032,1.031,8.387,0.8320000000000001,16.672,0.244 1867-08-01,13.505999999999998,0.417,19.626,1.069,7.705999999999999,0.775,16.454,0.256 1867-09-01,11.763,0.458,17.566000000000006,0.92,5.9110000000000005,0.76,16.147000000000002,0.254 1867-10-01,9.212,0.479,15.374,1.052,3.705,0.995,15.318,0.251 1867-11-01,6.939,0.784,11.143,1.102,-0.7959999999999999,1.388,14.632,0.31 1867-12-01,3.937,1.045,8.312999999999999,1.051,-3.678,1.274,13.552999999999999,0.365 1868-01-01,1.834,0.795,7.611000000000001,1.592,-3.478,1.807,13.012,0.304 1868-02-01,2.039,0.8490000000000001,8.817,1.823,-3.455,1.6030000000000002,13.295,0.32299999999999995 1868-03-01,4.538,0.578,11.411,1.025,-0.63,0.96,14.135,0.256 1868-04-01,8.183,0.493,13.315999999999999,1.135,1.138,0.95,15.082,0.241 1868-05-01,11.308,0.494,17.059,1.103,4.8610000000000015,0.723,15.992,0.241 1868-06-01,13.162,0.375,19.005,0.959,7.202999999999999,0.609,16.529,0.231 1868-07-01,14.514000000000001,0.431,20.504,1.026,8.702,0.649,17.025000000000002,0.226 1868-08-01,13.744000000000002,0.552,19.818,0.8340000000000001,8.120999999999999,0.7879999999999999,16.793,0.251 1868-09-01,11.669,0.418,17.988000000000003,0.799,5.726,0.69,16.107,0.217 1868-10-01,9.448,0.428,14.925,0.956,3.0860000000000003,0.964,15.376,0.218 1868-11-01,5.192,0.504,10.181000000000001,1.421,-0.3500000000000001,1.196,14.174000000000001,0.224 1868-12-01,3.344,0.639,8.54,1.541,-2.488,1.598,13.642999999999999,0.26 1869-01-01,2.115,1.028,8.206,1.4680000000000002,-3.173,1.6980000000000002,13.289000000000001,0.35 1869-02-01,3.864,0.82,9.618,1.571,-2.406,1.288,13.950999999999999,0.303 1869-03-01,4.3740000000000006,0.631,11.012,1.665,-1.3119999999999998,1.412,13.947000000000001,0.255 1869-04-01,7.9209999999999985,0.758,13.787,1.033,1.297,1.263,15.015999999999998,0.281 1869-05-01,11.295,0.642,17.279,1.51,4.3820000000000014,1.151,15.896,0.254 1869-06-01,13.537,0.532,18.871,0.863,7.1960000000000015,0.628,16.396,0.234 1869-07-01,14.337,0.449,19.825,1.325,7.732,1.205,16.667,0.218 1869-08-01,14.01,0.4370000000000001,19.663,1.055,7.947999999999999,1.062,16.711000000000002,0.201 1869-09-01,12.247,0.382,17.561,1.07,5.377000000000001,1.167,16.18,0.193 1869-10-01,9.006,0.456,14.063,1.005,1.9680000000000002,0.777,15.171,0.206 1869-11-01,5.773,0.499,10.418,1.061,-0.5090000000000001,1.75,14.255,0.21600000000000005 1869-12-01,2.7060000000000004,0.514,8.531,1.222,-2.519,1.622,13.307,0.212 1870-01-01,2.082,0.8079999999999999,8.527000000000001,1.372,-3.3070000000000004,1.225,13.303999999999998,0.277 1870-02-01,2.1340000000000003,0.7040000000000001,8.544,1.829,-3.5269999999999997,1.369,13.359000000000002,0.253 1870-03-01,4.656000000000001,0.568,9.692,1.617,-1.419,1.164,14.139000000000001,0.22 1870-04-01,7.879,0.524,14.287,2.127,1.5699999999999998,1.41,15.052,0.218 1870-05-01,11.339,0.579,18.067999999999998,1.118,5.33,0.969,15.825999999999999,0.235 1870-06-01,13.653,0.486,19.531,1.581,7.792999999999999,0.918,16.511000000000006,0.208 1870-07-01,14.599,0.4,20.29,1.625,8.850999999999997,0.992,16.86,0.19 1870-08-01,13.484000000000002,0.411,19.318,1.107,7.973999999999998,0.8809999999999999,16.617,0.196 1870-09-01,11.952,0.412,17.017000000000003,1.332,5.456,1.257,16.073,0.195 1870-10-01,8.809999999999997,0.542,14.188,1.414,2.8480000000000003,1.354,15.056,0.234 1870-11-01,5.6,0.529,12.574000000000002,1.401,0.629,1.203,14.079,0.229 1870-12-01,2.228,0.639,8.485,1.4880000000000002,-3.1,2.065,13.175999999999998,0.243 1871-01-01,1.4469999999999998,0.7929999999999999,7.962000000000001,1.379,-2.9370000000000003,1.432,13.089,0.287 1871-02-01,1.736,0.94,8.782,1.589,-3.0610000000000004,1.217,13.299,0.326 1871-03-01,4.6850000000000005,0.649,11.047,1.101,-1.75,1.955,14.223,0.251 1871-04-01,8.34,0.461,13.97,1.33,1.89,1.279,15.233,0.206 1871-05-01,10.787999999999998,0.451,16.627000000000002,1.129,4.525,0.846,15.77,0.205 1871-06-01,13.08,0.392,19.127,1.227,7.4700000000000015,1.175,16.458000000000002,0.188 1871-07-01,14.29,0.382,19.837,1.035,7.9270000000000005,0.816,16.858,0.193 1871-08-01,13.932,0.449,19.812,0.6559999999999999,7.898,0.873,16.653000000000002,0.193 1871-09-01,11.711,0.516,17.394000000000002,0.875,5.037,0.923,16.02,0.219 1871-10-01,9.096,0.412,14.697000000000001,0.802,2.891,0.797,15.061,0.206 1871-11-01,5.113,0.825,10.639000000000001,1.017,-0.31699999999999995,1.024,13.972000000000001,0.285 1871-12-01,3.1630000000000003,0.573,7.912000000000001,1.294,-3.677,1.043,13.435,0.225 1872-01-01,1.652,0.996,8.228,1.236,-3.228,1.225,13.041,0.325 1872-02-01,2.35,0.856,8.953,1.257,-3.26,1.364,13.376,0.301 1872-03-01,4.922,0.611,11.159,0.994,-2.156,1.016,14.107000000000001,0.239 1872-04-01,7.845999999999999,0.5379999999999999,14.040999999999999,1.085,1.464,0.8909999999999999,14.969000000000001,0.217 1872-05-01,11.198,0.503,17.369,1.0590000000000002,5.046,1.095,15.927,0.21 1872-06-01,13.055,0.434,19.299,0.757,7.564,0.746,16.361,0.193 1872-07-01,14.285,0.478,19.705,1.105,7.8839999999999995,1.045,16.843,0.205 1872-08-01,13.821,0.485,19.415,0.7759999999999999,7.450999999999999,1.097,16.822,0.2 1872-09-01,11.957999999999998,0.368,17.718,0.7,5.938,0.887,16.173000000000002,0.17800000000000002 1872-10-01,9.24,0.394,15.715,0.8809999999999999,3.025,1.467,15.181,0.187 1872-11-01,5.372000000000001,0.493,11.293,0.994,-0.060999999999999936,1.233,14.100999999999999,0.209 1872-12-01,2.627,0.913,8.526,1.078,-3.418,1.325,13.331,0.302 1873-01-01,2.013,0.706,8.285,1.171,-3.4400000000000004,1.753,13.353,0.251 1873-02-01,3.195,0.7490000000000001,8.591000000000001,1.132,-3.719,1.52,13.707,0.269 1873-03-01,4.704,0.696,11.105,0.823,-1.761,1.047,14.151,0.253 1873-04-01,7.462000000000001,0.616,13.982999999999999,1.262,1.069,1.145,14.879000000000001,0.239 1873-05-01,11.005999999999998,0.42,16.765,0.726,4.202,0.753,15.821,0.204 1873-06-01,13.405,0.495,19.006,1.0490000000000002,6.7829999999999995,0.568,16.429000000000002,0.215 1873-07-01,14.287,0.407,19.974,0.769,8.024,0.755,16.805,0.194 1873-08-01,13.755,0.438,19.241,0.728,7.446999999999999,0.725,16.726,0.191 1873-09-01,11.486999999999998,0.436,16.979000000000006,0.8740000000000001,5.297999999999999,0.741,15.965,0.189 1873-10-01,9.234,0.4320000000000001,14.431,0.921,2.386,0.941,15.13,0.203 1873-11-01,5.819,0.545,10.914000000000001,0.838,-0.8119999999999998,1.05,14.094000000000001,0.215 1873-12-01,3.846,0.6659999999999999,8.847999999999997,1.157,-2.628,1.445,13.530999999999999,0.242 1874-01-01,2.685,0.825,7.382999999999999,1.233,-3.764,1.139,13.392000000000001,0.28300000000000003 1874-02-01,3.069,0.7240000000000001,7.962000000000001,1.324,-3.2300000000000004,1.615,13.458,0.258 1874-03-01,4.221,0.5920000000000001,8.948,1.244,-1.942,1.1,13.807,0.225 1874-04-01,8.231,0.39,13.237,1.12,1.005,0.7929999999999999,14.91,0.18600000000000005 1874-05-01,11.306,0.411,16.969,0.7879999999999999,4.667000000000002,1.011,15.75,0.207 1874-06-01,13.306,0.467,19.062,0.8909999999999999,6.857,0.7959999999999999,16.211000000000002,0.205 1874-07-01,14.122,0.419,19.82,1.046,7.487999999999999,0.8590000000000001,16.745,0.197 1874-08-01,13.815,0.382,19.618,0.7390000000000001,7.228999999999999,0.6890000000000001,16.645,0.182 1874-09-01,12.111,0.366,17.704,0.626,5.632000000000001,0.759,16.122,0.17800000000000002 1874-10-01,9.12,0.475,15.841,0.889,3.025,1.047,15.005,0.195 1874-11-01,5.809,0.626,10.563,1.177,-0.5490000000000002,1.004,14.013,0.23 1874-12-01,3.407,0.5379999999999999,9.495,1.03,-1.6780000000000002,1.431,13.425999999999998,0.214 1875-01-01,1.533,0.672,6.6789999999999985,1.047,-4.7170000000000005,1.524,13.027000000000001,0.246 1875-02-01,2.259,0.718,7.5219999999999985,0.813,-4.365,1.173,13.35,0.257 1875-03-01,4.256,0.461,10.673,0.951,-2.207,1.097,13.974,0.2 1875-04-01,7.635999999999999,0.38,13.759,1.157,1.1740000000000002,0.937,14.923,0.18600000000000005 1875-05-01,10.746,0.376,17.509,1.105,4.163,0.664,15.792,0.183 1875-06-01,13.157,0.418,19.603,0.965,6.497000000000001,0.583,16.358,0.185 1875-07-01,14.144,0.397,20.534000000000002,0.727,7.872999999999998,0.614,16.683,0.175 1875-08-01,13.401,0.433,20.053,0.76,7.326999999999999,0.718,16.637999999999998,0.187 1875-09-01,11.319,0.394,17.713,0.726,5.172999999999999,0.741,16.059,0.18600000000000005 1875-10-01,8.584999999999999,0.39,14.754000000000001,0.7340000000000001,2.205,0.935,15.125,0.185 1875-11-01,4.614,0.366,10.56,0.821,-1.3509999999999998,1.031,13.905,0.182 1875-12-01,2.665,0.413,8.741999999999999,1.13,-2.4019999999999997,1.339,13.229,0.193 1876-01-01,1.856,0.503,7.327000000000001,1.027,-3.325,0.883,13.1,0.209 1876-02-01,2.617,0.505,8.895,1.215,-3.095,0.8959999999999999,13.495999999999999,0.208 1876-03-01,4.748,0.515,10.247,0.823,-1.7109999999999999,0.969,14.047,0.21 1876-04-01,8.199,0.412,14.187999999999999,0.8240000000000001,1.814,0.805,14.95,0.193 1876-05-01,10.69,0.513,16.783,0.745,4.7280000000000015,0.684,15.57,0.204 1876-06-01,13.130999999999998,0.28,18.888,0.769,6.7700000000000005,0.977,16.290000000000006,0.154 1876-07-01,14.319,0.369,19.855,0.715,7.891,0.861,16.848,0.173 1876-08-01,13.481,0.407,19.665,0.63,7.549999999999999,0.7090000000000001,16.579,0.18600000000000005 1876-09-01,11.687000000000001,0.377,17.667,0.662,5.687,0.848,15.89,0.2 1876-10-01,8.946,0.327,14.4,0.677,2.766,1.037,15.047,0.175 1876-11-01,5.093,0.414,10.498,0.7509999999999999,-0.6530000000000002,0.7959999999999999,13.902999999999999,0.187 1876-12-01,2.194,0.58,8.805,0.8220000000000001,-2.806,0.985,13.193,0.221 1877-01-01,2.286,0.708,8.078999999999999,1.095,-3.1620000000000004,1.132,13.306,0.249 1877-02-01,2.928,0.584,9.755,1.222,-2.3569999999999998,0.872,13.732,0.232 1877-03-01,5.297000000000001,0.487,10.782,0.7440000000000001,-1.4780000000000002,0.893,14.459000000000001,0.204 1877-04-01,8.039,0.429,13.827,0.767,2.032,0.845,15.126,0.197 1877-05-01,11.056,0.4,16.802,0.598,5.022,0.696,15.854000000000001,0.185 1877-06-01,13.384,0.464,19.257,0.604,6.875,0.907,16.594,0.2 1877-07-01,14.642000000000001,0.402,20.733,0.62,8.18,0.7290000000000001,17.004,0.183 1877-08-01,14.151,0.383,20.643,0.8759999999999999,7.7860000000000005,0.894,17.076,0.174 1877-09-01,12.075,0.418,17.930999999999997,0.53,5.9670000000000005,0.6920000000000001,16.437,0.187 1877-10-01,9.273,0.273,14.324000000000002,0.758,2.704,0.89,15.536,0.165 1877-11-01,6.348,0.479,11.54,1.008,0.7889999999999999,0.757,14.564,0.195 1877-12-01,2.9960000000000004,0.444,9.491,1.212,-0.5750000000000002,0.845,13.704,0.19 1878-01-01,2.0170000000000003,0.461,8.277999999999999,1.004,-3.083,1.011,13.537999999999998,0.191 1878-02-01,3.728,0.563,9.482999999999999,1.226,-1.7140000000000002,1.063,14.177,0.214 1878-03-01,6.6080000000000005,0.477,12.343,0.8029999999999999,0.3609999999999999,0.991,14.882,0.203 1878-04-01,8.899,0.431,15.040999999999999,0.7170000000000001,2.963,0.946,15.573,0.185 1878-05-01,11.017000000000001,0.419,16.945999999999998,0.807,5.090000000000002,0.797,16.016,0.188 1878-06-01,13.796,0.38,19.356,0.398,7.461,0.8290000000000001,16.711000000000002,0.185 1878-07-01,14.742,0.378,20.299,0.481,8.582,0.706,16.999000000000002,0.183 1878-08-01,14.094000000000001,0.465,20.308,0.573,8.074,0.516,16.905,0.184 1878-09-01,12.093,0.375,17.827,0.674,6.1,0.831,16.267,0.177 1878-10-01,9.173,0.306,15.255,0.605,3.5060000000000002,0.893,15.307,0.165 1878-11-01,6.446000000000001,0.429,12.502,0.823,0.6859999999999999,0.8320000000000001,14.388,0.184 1878-12-01,3.344,0.415,9.267999999999999,0.988,-2.246,1.086,13.526,0.17600000000000002 1879-01-01,2.303,0.6579999999999999,8.558,0.8859999999999999,-3.3110000000000004,0.978,13.349,0.23 1879-02-01,2.737,0.672,8.69,0.862,-3.0810000000000004,0.873,13.63,0.233 1879-03-01,4.9239999999999995,0.461,10.686,0.8909999999999999,-1.3890000000000002,0.789,14.34,0.183 1879-04-01,7.767999999999999,0.458,14.200999999999999,0.835,1.986,0.736,14.987,0.182 1879-05-01,10.803,0.388,16.752000000000002,0.581,4.5360000000000005,0.695,15.807,0.16399999999999998 1879-06-01,13.23,0.459,19.022000000000002,0.703,7.018000000000002,0.527,16.500999999999998,0.17600000000000002 1879-07-01,14.238,0.379,19.637,0.607,7.64,0.491,16.746000000000002,0.16399999999999998 1879-08-01,13.245,0.426,19.125,0.473,7.289999999999999,0.5870000000000001,16.635,0.171 1879-09-01,11.449000000000002,0.35700000000000004,17.652,0.8490000000000001,5.542000000000001,0.51,16.007,0.163 1879-10-01,9.229,0.331,14.744000000000002,0.746,2.747,0.7609999999999999,15.25,0.156 1879-11-01,5.526,0.376,11.549000000000001,0.815,-0.5,0.691,14.203,0.168 1879-12-01,2.5380000000000003,0.596,8.173,0.866,-3.531,1.151,13.318,0.211 1880-01-01,1.755,0.5720000000000001,7.882999999999999,0.757,-3.37,0.8640000000000001,13.129000000000001,0.204 1880-02-01,2.052,0.491,7.957000000000001,0.909,-3.767,0.7959999999999999,13.407,0.187 1880-03-01,4.63,0.468,10.655,0.912,-1.814,0.7959999999999999,14.273,0.18600000000000005 1880-04-01,7.558999999999998,0.456,14.082,0.711,1.2979999999999998,0.623,15.008,0.194 1880-05-01,11.095999999999998,0.389,16.917,0.7490000000000001,4.877000000000002,0.772,15.85,0.172 1880-06-01,13.327,0.436,19.29,0.5579999999999999,6.597,0.631,16.400000000000002,0.175 1880-07-01,14.140999999999998,0.396,20.037,0.5539999999999999,7.852,0.691,16.687,0.16699999999999998 1880-08-01,13.807,0.384,19.502,0.7929999999999999,7.555,0.698,16.695,0.163 1880-09-01,11.386,0.289,17.558000000000003,0.59,5.84,0.636,15.918,0.14800000000000002 1880-10-01,8.673,0.29600000000000004,14.567,0.4920000000000001,2.8960000000000004,0.73,15.024,0.149 1880-11-01,5.893,0.386,10.825999999999999,0.596,-0.6540000000000001,0.797,14.232999999999999,0.162 1880-12-01,3.1060000000000003,0.416,7.6869999999999985,0.733,-2.657,0.82,13.48,0.168 1881-01-01,2.4610000000000003,0.634,7.3439999999999985,0.7240000000000001,-3.687,0.981,13.396,0.221 1881-02-01,2.6260000000000003,0.595,8.594,0.6920000000000001,-2.813,0.77,13.625,0.21 1881-03-01,5.01,0.52,10.925999999999998,0.613,-1.131,0.493,14.355,0.193 1881-04-01,8.322999999999999,0.362,14.297,0.787,2.291,0.879,15.267000000000001,0.157 1881-05-01,11.165,0.406,17.283,0.8420000000000001,5.263000000000001,0.644,15.999,0.172 1881-06-01,12.745,0.35700000000000004,18.946,0.7170000000000001,6.801,0.534,16.329,0.16399999999999998 1881-07-01,14.203,0.344,20.295,0.6759999999999999,8.334,0.504,16.783,0.155 1881-08-01,13.71,0.376,19.879,0.5589999999999999,8.046999999999999,0.7879999999999999,16.665,0.154 1881-09-01,11.689,0.287,17.430000000000003,0.6659999999999999,5.876,0.535,15.982,0.141 1881-10-01,8.850999999999997,0.315,14.232000000000001,0.518,2.9360000000000004,0.449,15.115,0.14800000000000002 1881-11-01,5.272,0.397,10.781,0.674,-0.203,0.552,14.019,0.157 1881-12-01,3.196,0.439,8.597999999999999,1.063,-2.5970000000000004,0.537,13.511,0.16899999999999998 1882-01-01,2.99,0.486,8.392000000000001,0.69,-3.022,0.914,13.632,0.18 1882-02-01,3.2310000000000003,0.4270000000000001,8.754,0.826,-3.0669999999999997,1.06,13.843,0.172 1882-03-01,5.04,0.498,10.794,0.634,-1.411,0.718,14.339,0.185 1882-04-01,7.690999999999999,0.369,13.713,0.516,1.7519999999999998,0.664,15.031,0.156 1882-05-01,10.888,0.337,16.830000000000002,0.5770000000000001,4.8870000000000005,0.546,15.815999999999999,0.151 1882-06-01,12.805,0.298,18.941,0.613,7.032,0.534,16.355999999999998,0.142 1882-07-01,13.747,0.334,19.773,0.639,7.965,0.488,16.634,0.14800000000000002 1882-08-01,13.703,0.433,19.832,0.748,7.8359999999999985,0.443,16.678,0.171 1882-09-01,11.736,0.287,17.769000000000005,0.493,5.891,0.458,16.108,0.141 1882-10-01,8.445,0.327,14.595999999999998,0.659,2.784,0.461,15.022,0.151 1882-11-01,5.066,0.359,11.404000000000002,0.892,-0.581,0.841,14.033,0.157 1882-12-01,2.205,0.404,8.573,0.7440000000000001,-2.795,0.581,13.187,0.16699999999999998 1883-01-01,1.4600000000000002,0.53,7.063999999999999,0.622,-4.519,0.605,13.106,0.19 1883-02-01,1.856,0.498,7.54,0.934,-4.303000000000001,0.65,13.357999999999999,0.18 1883-03-01,4.928999999999999,0.421,10.123,0.625,-2.0940000000000003,0.726,14.236,0.162 1883-04-01,7.690999999999999,0.424,13.967,0.528,1.4680000000000002,0.7,14.916,0.166 1883-05-01,10.832,0.354,16.898,0.512,4.793,0.459,15.825,0.153 1883-06-01,13.302,0.294,20.049,0.703,7.303,0.398,16.512,0.139 1883-07-01,14.011,0.355,20.457,0.625,7.7189999999999985,0.453,16.664,0.146 1883-08-01,13.224,0.34,19.591,0.65,7.463999999999999,0.365,16.538,0.136 1883-09-01,11.343,0.327,17.663,0.583,5.299,0.349,15.956,0.13699999999999998 1883-10-01,8.908999999999997,0.249,14.620999999999999,0.569,2.6710000000000003,0.601,15.054,0.123 1883-11-01,4.905,0.293,10.987,0.5589999999999999,-0.436,0.647,13.943,0.135 1883-12-01,3.261,0.363,8.587,0.629,-2.803,0.76,13.450999999999999,0.147 1884-01-01,2.12,0.472,7.566999999999998,0.598,-4.118,0.947,13.279000000000002,0.17 1884-02-01,2.474,0.486,8.292,0.6759999999999999,-3.841,0.4970000000000001,13.6,0.17600000000000002 1884-03-01,3.892,0.476,10.552,0.595,-2.444,0.75,13.914000000000001,0.174 1884-04-01,7.185999999999999,0.311,13.58,0.5579999999999999,0.6990000000000001,0.6459999999999999,14.744000000000002,0.136 1884-05-01,10.198,0.353,16.465999999999998,0.56,3.9890000000000008,0.453,15.558,0.14 1884-06-01,12.527000000000001,0.382,18.787,0.643,6.362,0.517,16.185000000000002,0.14400000000000002 1884-07-01,13.622,0.375,19.569000000000003,0.544,7.468,0.494,16.434,0.14300000000000002 1884-08-01,13.257,0.41,19.318,0.5539999999999999,7.250999999999999,0.457,16.408,0.151 1884-09-01,11.235,0.392,17.365000000000002,0.8490000000000001,5.365,0.345,15.825999999999999,0.14800000000000002 1884-10-01,8.581,0.307,14.304,0.463,2.587,0.5770000000000001,14.954,0.13 1884-11-01,5.164,0.383,10.464,0.563,-0.991,0.486,13.827,0.14400000000000002 1884-12-01,3.028,0.408,8.041,0.6709999999999999,-2.5540000000000003,0.6609999999999999,13.27,0.152 1885-01-01,1.003,0.664,6.4209999999999985,0.664,-4.621,0.698,12.889000000000001,0.215 1885-02-01,2.2430000000000003,0.578,8.247,0.695,-3.438,0.728,13.327,0.192 1885-03-01,4.622,0.381,10.56,0.6,-2.023,0.603,14.021,0.146 1885-04-01,7.3359999999999985,0.398,13.482999999999999,0.745,1.352,0.428,14.747,0.14800000000000002 1885-05-01,10.567,0.391,16.704,0.657,4.202,0.7390000000000001,15.565,0.145 1885-06-01,12.716,0.304,18.762,0.513,6.492000000000001,0.343,16.105,0.129 1885-07-01,13.972000000000001,0.369,20.205,0.496,7.627999999999999,0.5539999999999999,16.601,0.142 1885-08-01,13.351,0.445,19.889,0.6679999999999999,7.087000000000001,0.607,16.438,0.157 1885-09-01,11.435,0.365,17.317,0.534,5.28,0.451,15.907,0.14 1885-10-01,8.722000000000001,0.34700000000000003,14.707,0.494,2.547,0.426,15.054,0.13699999999999998 1885-11-01,5.425,0.377,11.488,0.436,-0.47600000000000003,0.726,14.057,0.14300000000000002 1885-12-01,3.6439999999999997,0.481,9.156,0.5539999999999999,-1.539,0.7190000000000001,13.542,0.165 1886-01-01,1.436,0.545,7.023,0.5870000000000001,-3.755,0.552,13.001,0.181 1886-02-01,1.793,0.453,8.015,0.79,-3.884,0.782,13.175999999999998,0.16 1886-03-01,4.2620000000000005,0.34600000000000003,10.568,0.539,-2.188,0.6659999999999999,13.888,0.135 1886-04-01,7.909,0.299,14.085,0.5920000000000001,1.367,0.461,14.841,0.129 1886-05-01,10.784,0.468,17.195999999999998,0.8,4.4220000000000015,0.496,15.837,0.165 1886-06-01,12.789000000000001,0.318,19.145,0.665,6.5600000000000005,0.627,16.197000000000006,0.127 1886-07-01,14.225999999999999,0.354,20.004,0.72,8.055,0.5429999999999999,16.622,0.138 1886-08-01,13.323,0.369,19.344,0.71,7.449,0.595,16.458000000000002,0.13699999999999998 1886-09-01,11.6,0.32299999999999995,17.419,0.604,5.62,0.313,15.831,0.131 1886-10-01,8.604,0.355,14.735,0.608,2.58,0.457,14.979,0.139 1886-11-01,5.226,0.353,11.208,0.483,-0.71,0.5429999999999999,13.877,0.141 1886-12-01,3.502,0.449,8.616,0.7170000000000001,-1.8619999999999999,0.8420000000000001,13.315999999999999,0.161 1887-01-01,0.8240000000000001,0.568,6.863999999999999,0.545,-4.678000000000001,1.038,12.62,0.187 1887-02-01,2.0540000000000003,0.464,8.142999999999999,0.5539999999999999,-4.0470000000000015,0.536,13.095999999999998,0.166 1887-03-01,4.552,0.433,10.828,0.514,-1.901,0.45,13.946,0.16 1887-04-01,7.789,0.333,13.936,0.406,1.524,0.471,14.941,0.141 1887-05-01,10.84,0.396,17.337,0.501,4.569000000000001,0.449,15.651,0.153 1887-06-01,12.89,0.327,18.431,0.629,6.513999999999999,0.58,16.214000000000002,0.136 1887-07-01,14.020999999999999,0.343,19.899,0.6659999999999999,8.199,0.436,16.63,0.13699999999999998 1887-08-01,13.097000000000001,0.358,19.177,0.593,7.390999999999999,0.696,16.372,0.138 1887-09-01,11.707,0.378,17.392000000000003,0.4920000000000001,5.7010000000000005,0.496,15.915999999999999,0.147 1887-10-01,8.738,0.263,14.716,0.69,2.531,0.413,14.982999999999999,0.126 1887-11-01,5.5920000000000005,0.382,11.66,0.575,-0.2640000000000001,0.446,14.037,0.145 1887-12-01,2.875,0.46,8.298,0.901,-2.656,0.6559999999999999,13.386,0.166 1888-01-01,1.7080000000000002,0.375,6.685999999999999,0.579,-4.2989999999999995,0.531,13.132,0.14800000000000002 1888-02-01,2.039,0.456,7.898,0.701,-3.555,0.942,13.32,0.165 1888-03-01,4.3,0.401,10.491,0.504,-2.039,0.569,13.972000000000001,0.152 1888-04-01,7.845,0.429,13.884,0.8370000000000001,1.66,0.738,14.938,0.157 1888-05-01,10.62,0.389,16.329,0.5429999999999999,4.187,0.598,15.73,0.152 1888-06-01,12.921,0.395,18.897000000000002,0.738,6.476,0.482,16.360000000000007,0.153 1888-07-01,14.242,0.321,20.063,0.746,7.77,0.403,16.686,0.135 1888-08-01,13.511,0.436,19.36,0.716,7.2879999999999985,0.476,16.611,0.158 1888-09-01,11.685,0.344,17.808000000000003,0.375,5.468999999999999,0.561,15.995,0.142 1888-10-01,9.201,0.28600000000000003,14.783,0.391,2.951,0.493,15.318,0.131 1888-11-01,5.792000000000001,0.361,11.384,0.377,0.05200000000000005,0.42,14.259,0.14400000000000002 1888-12-01,3.222,0.396,9.327,0.557,-2.511,0.512,13.607999999999999,0.154 1889-01-01,1.7619999999999998,0.458,7.377000000000001,0.7290000000000001,-4.053000000000001,0.984,13.417,0.168 1889-02-01,3.409,0.399,8.814,0.612,-2.8989999999999996,0.526,13.954,0.156 1889-03-01,5.2989999999999995,0.419,11.628,0.611,-0.8079999999999999,0.452,14.446,0.165 1889-04-01,8.588999999999999,0.332,14.392000000000001,0.519,2.502,0.51,15.305,0.146 1889-05-01,11.242,0.3720000000000001,17.19,0.505,5.032,0.524,15.915,0.153 1889-06-01,13.288,0.275,19.314,0.586,7.1960000000000015,0.399,16.498,0.132 1889-07-01,14.225,0.327,20.315,0.494,8.311,0.34700000000000003,16.796,0.14400000000000002 1889-08-01,13.504000000000001,0.383,19.732,0.535,7.614999999999998,0.452,16.604,0.153 1889-09-01,11.547,0.339,17.455000000000002,0.416,5.635,0.5589999999999999,15.913,0.146 1889-10-01,8.865,0.282,14.902000000000001,0.594,2.608,0.84,15.116,0.139 1889-11-01,4.9990000000000006,0.44,11.146,0.522,-0.5670000000000001,0.42,13.995999999999999,0.16899999999999998 1889-12-01,3.099,0.412,9.264,0.438,-2.395,0.596,13.401,0.158 1890-01-01,1.8359999999999999,0.401,7.6469999999999985,0.458,-4.24,0.56,13.068,0.157 1890-02-01,2.516,0.373,8.668,0.564,-3.764,0.461,13.394,0.157 1890-03-01,4.21,0.377,10.474,0.404,-2.1710000000000003,0.573,13.890999999999998,0.158 1890-04-01,7.738999999999999,0.35700000000000004,13.672,0.64,1.641,0.408,14.875,0.153 1890-05-01,10.464,0.373,16.865000000000002,0.595,3.943000000000001,0.403,15.624,0.156 1890-06-01,12.872,0.35200000000000004,18.703,0.627,6.707000000000002,0.5720000000000001,16.25,0.147 1890-07-01,14.034,0.354,19.718,0.908,7.857,0.687,16.528,0.153 1890-08-01,13.265999999999998,0.35200000000000004,19.325,0.67,7.1469999999999985,0.407,16.427,0.14800000000000002 1890-09-01,11.546,0.324,17.266000000000002,0.522,5.494,0.398,15.842,0.145 1890-10-01,9.178,0.238,14.747,0.415,3.367,0.542,15.02,0.135 1890-11-01,5.03,0.273,11.450999999999999,0.6659999999999999,-1.043,0.562,13.802999999999999,0.138 1890-12-01,2.969,0.342,8.611,0.512,-2.7289999999999996,0.526,13.367,0.149 1891-01-01,1.6780000000000002,0.35100000000000003,7.588999999999999,0.622,-4.011,0.4920000000000001,13.037,0.155 1891-02-01,1.88,0.398,8.122,0.569,-4.465,0.507,13.298,0.165 1891-03-01,4.755,0.331,10.629000000000001,0.44,-1.449,0.593,14.191,0.153 1891-04-01,7.6179999999999986,0.284,13.979000000000001,0.382,1.182,0.424,14.918,0.147 1891-05-01,10.785,0.388,16.645,0.453,4.317,0.385,15.844000000000001,0.162 1891-06-01,12.888,0.253,18.588,0.48,6.635000000000002,0.413,16.297,0.13699999999999998 1891-07-01,13.93,0.338,19.849,0.393,7.818,0.445,16.62,0.155 1891-08-01,13.495999999999999,0.365,19.472,0.584,7.289999999999999,0.454,16.549,0.162 1891-09-01,11.763,0.264,17.649,0.614,5.704,0.342,16.07,0.14 1891-10-01,8.722000000000001,0.281,15.042,0.324,2.764,0.383,15.023,0.147 1891-11-01,5.115,0.353,11.033,0.349,-0.7809999999999999,0.324,13.92,0.151 1891-12-01,3.602,0.418,9.803,0.429,-2.138,0.531,13.559,0.16899999999999998 1892-01-01,2.0180000000000002,0.399,7.683,0.462,-3.93,0.465,13.264000000000001,0.162 1892-02-01,2.805,0.326,9.078,0.667,-3.253,0.464,13.667000000000002,0.146 1892-03-01,4.362,0.39,10.752,0.599,-1.931,0.4320000000000001,13.979000000000001,0.158 1892-04-01,7.5619999999999985,0.301,13.802,0.415,1.2049999999999998,0.4270000000000001,14.803999999999998,0.149 1892-05-01,10.622,0.36,16.578000000000007,0.413,4.426,0.413,15.655,0.158 1892-06-01,13.263,0.279,19.003,0.463,6.86,0.322,16.303,0.149 1892-07-01,13.89,0.328,19.82,0.529,7.917000000000001,0.364,16.476,0.157 1892-08-01,13.42,0.353,19.264,0.477,7.447999999999999,0.389,16.39,0.155 1892-09-01,11.764000000000001,0.26,17.858,0.397,5.5520000000000005,0.326,15.998,0.145 1892-10-01,9.29,0.268,15.08,0.388,3.347,0.388,15.126,0.147 1892-11-01,4.859,0.331,10.432,0.728,-1.014,0.469,13.732000000000001,0.156 1892-12-01,2.935,0.471,8.297,0.59,-2.8470000000000004,0.452,13.196,0.19 1893-01-01,0.5,0.488,5.9,0.799,-5.3450000000000015,0.48,12.702,0.18600000000000005 1893-02-01,1.6540000000000001,0.365,7.6160000000000005,0.5429999999999999,-4.558,0.4970000000000001,13.23,0.161 1893-03-01,4.979,0.4,11.066,0.62,-1.2520000000000002,0.368,14.111,0.163 1893-04-01,7.994,0.294,13.697000000000001,0.6459999999999999,1.582,0.379,14.871,0.147 1893-05-01,10.747,0.365,16.812,0.478,4.489000000000001,0.377,15.662,0.155 1893-06-01,13.050999999999998,0.287,18.981,0.343,6.7810000000000015,0.364,16.382,0.14400000000000002 1893-07-01,14.318,0.339,20.005,0.426,8.102,0.387,16.788,0.155 1893-08-01,13.454,0.3670000000000001,19.448,0.348,7.321999999999999,0.336,16.650000000000002,0.153 1893-09-01,11.767000000000001,0.295,17.799000000000003,0.308,5.599,0.26,15.932,0.139 1893-10-01,9.16,0.263,15.185,0.325,3.0989999999999998,0.3720000000000001,15.152,0.139 1893-11-01,5.902,0.281,11.700999999999999,0.326,-0.14300000000000002,0.272,14.079,0.14400000000000002 1893-12-01,3.155,0.399,9.03,0.429,-2.79,0.321,13.388,0.165 1894-01-01,1.6909999999999998,0.3720000000000001,7.409999999999998,0.5670000000000001,-4.0390000000000015,0.422,13.039000000000001,0.159 1894-02-01,2.923,0.354,8.898,0.534,-3.028,0.486,13.455,0.155 1894-03-01,5.118,0.398,11.086,0.439,-1.093,0.643,14.08,0.16699999999999998 1894-04-01,7.6629999999999985,0.355,13.793,0.498,1.472,0.371,14.794,0.156 1894-05-01,10.944,0.293,16.929000000000002,0.441,4.6110000000000015,0.39,15.655999999999999,0.14800000000000002 1894-06-01,12.858,0.276,18.782,0.362,6.6030000000000015,0.341,16.226000000000006,0.142 1894-07-01,14.004000000000001,0.311,19.851,0.483,7.787999999999999,0.335,16.687,0.156 1894-08-01,13.488,0.364,19.326,0.373,7.363999999999999,0.35,16.565,0.151 1894-09-01,11.579999999999998,0.279,17.425,0.257,5.502999999999999,0.317,15.927,0.141 1894-10-01,9.125,0.223,15.042,0.419,2.997,0.35600000000000004,15.165,0.134 1894-11-01,5.405,0.282,11.187000000000001,0.338,-0.4909999999999999,0.46,14.036,0.146 1894-12-01,3.133,0.3,8.757,0.392,-2.202,0.535,13.347000000000001,0.149 1895-01-01,1.2950000000000002,0.28,6.9609999999999985,0.6609999999999999,-4.319,0.657,13.084000000000001,0.14 1895-02-01,2.0,0.329,8.18,0.6859999999999999,-4.026,0.534,13.302999999999999,0.153 1895-03-01,4.689,0.318,10.838,0.333,-1.594,0.389,13.989,0.157 1895-04-01,8.247,0.285,14.509,0.457,1.915,0.4970000000000001,15.005,0.154 1895-05-01,10.867,0.321,16.892000000000003,0.487,4.638999999999999,0.373,15.703,0.158 1895-06-01,13.058,0.266,19.059,0.485,6.905,0.312,16.352,0.141 1895-07-01,14.052999999999999,0.312,19.614,0.563,7.875,0.382,16.715999999999998,0.153 1895-08-01,13.489,0.36,19.471,0.414,7.167000000000001,0.338,16.612000000000002,0.151 1895-09-01,11.743,0.294,17.597,0.426,5.687,0.303,15.981,0.141 1895-10-01,9.117,0.224,15.159,0.235,2.878,0.359,15.151,0.125 1895-11-01,5.744,0.268,11.42,0.49,-0.01100000000000001,0.42,14.219000000000001,0.138 1895-12-01,3.462,0.334,9.232000000000001,0.32,-2.206,0.403,13.513,0.151 1896-01-01,2.291,0.392,7.923999999999999,0.637,-3.4080000000000004,0.446,13.366,0.162 1896-02-01,2.707,0.28800000000000003,8.447000000000001,0.504,-3.367,0.606,13.575999999999999,0.146 1896-03-01,4.279,0.302,10.469000000000001,0.35,-1.868,0.4270000000000001,14.047,0.145 1896-04-01,7.329999999999999,0.34700000000000003,13.585999999999999,0.531,1.225,0.3720000000000001,14.895,0.16 1896-05-01,10.893,0.339,17.01,0.496,4.626,0.484,15.817,0.16 1896-06-01,13.303999999999998,0.267,19.34,0.703,6.8629999999999995,0.348,16.515,0.14 1896-07-01,14.232999999999999,0.328,19.886,0.413,8.087,0.321,16.866,0.151 1896-08-01,13.624,0.369,19.572,0.384,7.274999999999999,0.3670000000000001,16.762,0.157 1896-09-01,11.824000000000002,0.277,17.727,0.409,5.561,0.353,16.143,0.142 1896-10-01,9.416,0.229,15.35,0.326,3.212,0.361,15.27,0.13 1896-11-01,5.3660000000000005,0.29600000000000004,11.173,0.506,-0.4690000000000001,0.4,14.187000000000001,0.141 1896-12-01,3.312,0.272,8.811,0.439,-2.3600000000000003,0.309,13.642999999999999,0.142 1897-01-01,1.893,0.36,7.411999999999999,0.354,-3.5730000000000004,0.474,13.312000000000001,0.161 1897-02-01,2.4290000000000003,0.281,8.148,0.49,-3.5189999999999997,0.475,13.555,0.145 1897-03-01,4.345,0.29,10.442,0.524,-2.123,0.457,14.152000000000001,0.155 1897-04-01,8.277999999999999,0.277,14.293,0.454,1.74,0.293,15.217,0.14300000000000002 1897-05-01,11.377,0.306,17.250999999999998,0.411,5.0680000000000005,0.457,16.02,0.145 1897-06-01,13.319,0.355,19.445,0.7170000000000001,7.226,0.35700000000000004,16.505000000000006,0.155 1897-07-01,14.31,0.37,20.297,0.407,8.312000000000001,0.332,16.783,0.161 1897-08-01,13.668,0.392,19.753,0.422,7.5920000000000005,0.329,16.676000000000002,0.161 1897-09-01,11.925,0.254,17.918000000000006,0.269,5.901,0.281,16.067999999999998,0.133 1897-10-01,9.197000000000001,0.251,15.165999999999999,0.412,3.279,0.258,15.168,0.135 1897-11-01,5.6080000000000005,0.349,11.616,0.524,-0.19700000000000006,0.407,14.047,0.153 1897-12-01,3.1710000000000003,0.281,8.5,0.912,-2.177,0.4370000000000001,13.401,0.145 1898-01-01,2.737,0.31,8.35,0.616,-2.885,0.37,13.396,0.149 1898-02-01,2.354,0.314,8.238999999999999,0.377,-3.6510000000000002,0.46,13.364,0.149 1898-03-01,3.751,0.271,10.174,0.377,-2.657,0.512,13.749,0.14300000000000002 1898-04-01,7.906999999999999,0.337,14.459000000000001,0.289,1.49,0.337,14.868,0.155 1898-05-01,10.835,0.306,17.055999999999997,0.58,4.498,0.4970000000000001,15.620999999999999,0.14400000000000002 1898-06-01,13.395,0.421,19.452,0.561,7.067,0.4,16.393,0.16399999999999998 1898-07-01,14.138,0.3670000000000001,20.145,0.495,8.039,0.306,16.627,0.154 1898-08-01,13.579,0.414,19.628,0.5920000000000001,7.656999999999999,0.338,16.512,0.161 1898-09-01,11.752999999999998,0.322,17.702,0.325,5.902,0.332,15.914000000000001,0.149 1898-10-01,8.828,0.247,14.69,0.364,2.8310000000000004,0.336,14.915,0.131 1898-11-01,5.452000000000001,0.274,11.444,0.358,-0.359,0.35,13.933,0.139 1898-12-01,3.407,0.325,9.443,0.565,-2.096,0.42,13.350999999999999,0.14400000000000002 1899-01-01,2.515,0.326,8.443,0.28600000000000003,-3.2620000000000005,0.517,13.306,0.147 1899-02-01,2.38,0.42,8.17,0.4370000000000001,-3.4419999999999997,0.361,13.399,0.16699999999999998 1899-03-01,4.618,0.293,10.635,0.371,-1.5670000000000002,0.306,14.003,0.14300000000000002 1899-04-01,8.280999999999999,0.345,14.437999999999999,0.547,2.074,0.386,15.026,0.153 1899-05-01,11.023,0.31,17.132,0.384,4.9670000000000005,0.462,15.835999999999999,0.14300000000000002 1899-06-01,12.856,0.29,18.799,0.328,6.872000000000001,0.276,16.243000000000002,0.141 1899-07-01,14.159,0.333,20.168,0.521,7.9529999999999985,0.341,16.689,0.15 1899-08-01,13.777000000000001,0.394,19.598,0.5529999999999999,7.645999999999999,0.342,16.746000000000002,0.157 1899-09-01,12.127999999999998,0.282,18.223000000000006,0.439,5.974,0.293,16.178,0.138 1899-10-01,9.409,0.252,15.317,0.32299999999999995,3.551,0.422,15.287,0.134 1899-11-01,6.605,0.31,12.417,0.249,1.063,0.431,14.455,0.14400000000000002 1899-12-01,3.005,0.342,8.639,0.67,-2.668,0.433,13.412,0.153 1900-01-01,1.4609999999999999,0.276,7.193,0.465,-4.102,0.395,13.142000000000001,0.142 1900-02-01,3.0980000000000003,0.416,9.181000000000001,0.604,-2.8139999999999996,0.626,13.777,0.173 1900-03-01,5.492000000000001,0.261,11.377,0.327,-0.68,0.61,14.4,0.141 1900-04-01,8.222999999999999,0.292,13.972000000000001,0.342,2.131,0.394,15.17,0.151 1900-05-01,11.385,0.35700000000000004,17.415000000000006,0.329,5.178999999999999,0.379,15.955,0.159 1900-06-01,13.293,0.282,19.434,0.443,7.112,0.28800000000000003,16.515,0.147 1900-07-01,14.171,0.345,19.897,0.3720000000000001,8.095,0.311,16.785,0.154 1900-08-01,13.815999999999999,0.383,19.85,0.343,7.891999999999999,0.377,16.699,0.159 1900-09-01,11.955,0.293,17.817999999999998,0.382,5.9670000000000005,0.337,16.124000000000002,0.147 1900-10-01,9.666,0.255,15.544,0.275,3.833,0.318,15.373,0.14 1900-11-01,5.803999999999999,0.276,11.527000000000001,0.454,0.121,0.409,14.189,0.13699999999999998 1900-12-01,3.655,0.341,9.466000000000001,0.315,-1.8259999999999998,0.431,13.597999999999999,0.153 1901-01-01,2.1910000000000003,0.29100000000000004,7.995999999999999,0.604,-3.491,0.49,13.29,0.141 1901-02-01,3.092,0.418,9.038,0.371,-2.678,0.539,13.66,0.163 1901-03-01,5.671,0.251,11.476,0.37,-0.644,0.395,14.383,0.138 1901-04-01,8.522,0.326,14.732999999999999,0.368,2.2640000000000002,0.376,15.22,0.151 1901-05-01,11.178,0.339,17.315,0.397,4.855,0.39,15.936,0.154 1901-06-01,13.423,0.28300000000000003,19.315,0.386,7.151000000000002,0.3670000000000001,16.441000000000006,0.145 1901-07-01,14.339,0.35,20.34,0.43,8.161,0.374,16.718,0.158 1901-08-01,13.789000000000001,0.343,19.898,0.398,7.659999999999998,0.411,16.663,0.14800000000000002 1901-09-01,11.984000000000002,0.305,17.929000000000006,0.464,5.819,0.322,16.000999999999998,0.14 1901-10-01,9.003,0.239,15.002,0.368,2.998,0.338,15.087,0.138 1901-11-01,5.976,0.263,12.043,0.55,0.07099999999999995,0.398,14.100999999999999,0.13699999999999998 1901-12-01,3.335,0.267,9.061,0.672,-2.28,0.37,13.38,0.136 1902-01-01,2.6839999999999997,0.256,8.796999999999997,0.569,-3.031,0.369,13.302,0.13 1902-02-01,3.6060000000000003,0.354,9.814,0.341,-2.504,0.452,13.690999999999999,0.14800000000000002 1902-03-01,4.883,0.228,11.166,0.439,-1.339,0.294,14.1,0.127 1902-04-01,7.955999999999999,0.321,13.884,0.35700000000000004,1.5619999999999998,0.358,14.958,0.141 1902-05-01,10.893,0.341,16.986,0.536,4.5870000000000015,0.369,15.719000000000001,0.145 1902-06-01,13.214,0.264,19.338,0.475,6.894,0.32,16.284000000000002,0.129 1902-07-01,14.231,0.35600000000000004,20.2,0.536,7.965,0.339,16.69,0.145 1902-08-01,13.599,0.35700000000000004,19.884,0.297,7.449,0.354,16.590999999999998,0.14400000000000002 1902-09-01,11.799000000000001,0.289,17.897000000000006,0.299,5.555,0.3720000000000001,16.032,0.134 1902-10-01,8.801,0.21,14.811,0.271,2.759,0.34700000000000003,14.991,0.121 1902-11-01,5.274,0.267,11.159,0.335,-0.46,0.327,13.902,0.128 1902-12-01,2.713,0.27,8.435,0.277,-2.992,0.373,13.24,0.134 1903-01-01,2.514,0.224,8.415,0.442,-3.1870000000000003,0.403,13.275,0.128 1903-02-01,3.555,0.247,9.297,0.429,-2.49,0.494,13.668,0.132 1903-03-01,4.93,0.212,10.963,0.294,-1.158,0.412,14.05,0.124 1903-04-01,7.831999999999999,0.292,13.958,0.32,1.6980000000000002,0.392,14.800999999999998,0.136 1903-05-01,10.794,0.305,16.672,0.398,4.5870000000000015,0.435,15.645,0.139 1903-06-01,12.886,0.268,18.897000000000002,0.381,6.723000000000001,0.29600000000000004,16.160999999999998,0.127 1903-07-01,13.992,0.366,19.787,0.452,7.87,0.364,16.496000000000002,0.146 1903-08-01,13.412,0.377,19.298,0.365,7.557999999999999,0.366,16.304000000000002,0.146 1903-09-01,11.501,0.36,17.355999999999998,0.461,5.642,0.285,15.770999999999999,0.145 1903-10-01,8.812000000000001,0.202,14.634,0.417,2.895,0.371,14.835,0.118 1903-11-01,5.516,0.268,11.219000000000001,0.391,-0.050999999999999934,0.34,13.828,0.132 1903-12-01,2.898,0.359,8.533,0.327,-2.6870000000000003,0.381,13.205,0.145 1904-01-01,1.6369999999999998,0.387,7.081999999999999,0.516,-3.86,0.398,12.957,0.152 1904-02-01,2.2969999999999997,0.348,8.507,0.405,-3.583,0.4320000000000001,13.154000000000002,0.147 1904-03-01,4.506,0.268,10.559000000000001,0.555,-1.575,0.302,13.859000000000002,0.133 1904-04-01,7.683999999999998,0.284,13.823,0.625,1.4280000000000002,0.299,14.755,0.13699999999999998 1904-05-01,10.84,0.287,16.922,0.516,4.641,0.313,15.573,0.133 1904-06-01,13.014000000000001,0.248,19.092,0.532,6.7780000000000005,0.298,16.207,0.128 1904-07-01,13.835999999999999,0.29600000000000004,19.678,0.647,7.777,0.34,16.525000000000002,0.134 1904-08-01,13.459000000000001,0.327,19.525,0.451,7.462000000000001,0.321,16.403000000000002,0.13699999999999998 1904-09-01,11.380999999999998,0.265,17.465000000000003,0.392,5.361000000000001,0.253,15.767999999999999,0.129 1904-10-01,8.833,0.212,14.902000000000001,0.601,3.133,0.314,14.947,0.118 1904-11-01,6.23,0.224,11.997,0.3,0.5579999999999999,0.337,14.144,0.119 1904-12-01,3.374,0.29100000000000004,9.212,0.46,-2.0669999999999997,0.446,13.433,0.13 1905-01-01,2.254,0.345,8.017000000000001,0.478,-3.3240000000000003,0.373,13.205,0.14 1905-02-01,1.927,0.303,7.7349999999999985,0.28,-3.951,0.411,13.206,0.13699999999999998 1905-03-01,4.635,0.235,10.466,0.515,-1.308,0.38,14.035,0.125 1905-04-01,7.754999999999999,0.255,13.622,0.341,1.493,0.417,14.857000000000001,0.128 1905-05-01,10.982000000000001,0.28,16.945999999999998,0.38,4.819000000000001,0.451,15.788,0.131 1905-06-01,13.112,0.264,19.11,0.379,6.944000000000001,0.341,16.379,0.125 1905-07-01,14.077,0.307,19.877,0.441,8.038,0.342,16.651,0.133 1905-08-01,13.578,0.327,19.619,0.368,7.719999999999999,0.345,16.558,0.134 1905-09-01,11.803999999999998,0.252,17.684,0.363,5.928,0.311,16.004,0.123 1905-10-01,9.041,0.239,14.866,0.275,3.117,0.385,15.091,0.122 1905-11-01,6.183,0.282,11.984000000000002,0.28,0.574,0.403,14.232000000000001,0.127 1905-12-01,3.3539999999999996,0.256,9.06,0.334,-1.931,0.3720000000000001,13.45,0.123 1906-01-01,2.068,0.313,8.086,0.42,-3.637000000000001,0.294,13.25,0.13699999999999998 1906-02-01,2.301,0.32299999999999995,8.125,0.393,-3.343,0.344,13.502,0.135 1906-03-01,4.8660000000000005,0.2,11.008,0.264,-1.229,0.353,14.245,0.117 1906-04-01,8.626,0.242,14.786,0.581,2.4219999999999997,0.383,15.23,0.122 1906-05-01,11.239999999999998,0.29,17.146,0.4370000000000001,4.9220000000000015,0.426,15.769,0.132 1906-06-01,13.334000000000001,0.289,19.287,0.32299999999999995,7.275,0.321,16.436,0.127 1906-07-01,14.122,0.32299999999999995,20.058,0.391,8.186,0.345,16.662,0.13699999999999998 1906-08-01,13.690999999999999,0.34,19.539,0.462,7.842999999999999,0.358,16.593,0.134 1906-09-01,11.771999999999998,0.237,17.522000000000002,0.298,5.8839999999999995,0.338,15.95,0.122 1906-10-01,9.267000000000001,0.182,14.943,0.254,3.4789999999999996,0.299,15.152,0.116 1906-11-01,5.501,0.192,11.17,0.327,-0.30099999999999993,0.322,14.054,0.116 1906-12-01,3.761,0.368,9.258,0.458,-1.664,0.32299999999999995,13.54,0.14800000000000002 1907-01-01,1.798,0.274,7.903,0.38,-3.867,0.324,13.108,0.128 1907-02-01,2.117,0.268,7.9929999999999986,0.383,-3.603,0.285,13.257,0.129 1907-03-01,4.575,0.209,10.61,0.35200000000000004,-1.6,0.249,14.15,0.123 1907-04-01,7.579,0.263,13.401,0.37,1.521,0.281,14.918,0.133 1907-05-01,10.375,0.28,16.335,0.465,4.0840000000000005,0.35,15.602,0.132 1907-06-01,12.729000000000001,0.267,18.576,0.403,6.5089999999999995,0.316,16.253,0.13 1907-07-01,13.769,0.307,19.625999999999998,0.598,7.761,0.348,16.596,0.133 1907-08-01,13.362,0.326,19.187,0.318,7.464999999999999,0.35,16.456,0.132 1907-09-01,11.665,0.243,17.442999999999998,0.253,5.59,0.299,15.902,0.119 1907-10-01,9.234,0.191,15.079,0.28300000000000003,3.32,0.361,15.159,0.115 1907-11-01,5.207000000000001,0.207,10.71,0.31,-0.5570000000000002,0.325,13.872,0.115 1907-12-01,2.9560000000000004,0.251,8.831,0.27,-2.585,0.28800000000000003,13.225,0.121 1908-01-01,2.3040000000000003,0.252,8.117999999999999,0.3,-3.548,0.287,13.16,0.123 1908-02-01,2.7689999999999997,0.269,8.527000000000001,0.411,-3.177,0.348,13.440999999999999,0.124 1908-03-01,4.136,0.317,10.384,0.38,-2.101,0.453,13.783,0.13699999999999998 1908-04-01,7.831999999999999,0.295,13.853,0.332,1.735,0.5429999999999999,14.800999999999998,0.129 1908-05-01,11.140999999999998,0.285,16.958000000000002,0.388,4.86,0.388,15.757,0.13 1908-06-01,13.293,0.248,19.063,0.388,6.902,0.29,16.289,0.119 1908-07-01,14.197,0.303,19.748,0.419,8.113,0.37,16.618000000000002,0.129 1908-08-01,13.376,0.336,19.359,0.363,7.499,0.34600000000000003,16.365000000000002,0.134 1908-09-01,11.977,0.252,17.781000000000006,0.325,5.977,0.261,15.93,0.119 1908-10-01,8.865,0.209,14.675,0.29,2.948,0.329,14.883,0.112 1908-11-01,5.272,0.221,11.098,0.29600000000000004,-0.5760000000000001,0.451,13.842,0.116 1908-12-01,3.071,0.31,8.901,0.332,-2.535,0.368,13.189,0.129 1909-01-01,1.395,0.314,7.121,0.377,-4.298,0.449,12.839,0.132 1909-02-01,2.7060000000000004,0.273,8.571,0.465,-3.447,0.35700000000000004,13.35,0.125 1909-03-01,4.5889999999999995,0.249,10.659,0.472,-1.6769999999999998,0.478,13.852,0.122 1909-04-01,7.534,0.269,13.425999999999998,0.414,1.395,0.42,14.719000000000001,0.122 1909-05-01,10.611,0.3,16.668000000000006,0.428,4.380000000000001,0.394,15.6,0.127 1909-06-01,12.962,0.232,18.71,0.281,6.766,0.327,16.191000000000006,0.114 1909-07-01,14.06,0.299,19.787,0.366,8.05,0.343,16.437,0.123 1909-08-01,13.752,0.319,19.625,0.353,7.752999999999999,0.371,16.496000000000002,0.126 1909-09-01,11.879000000000001,0.237,17.891000000000005,0.287,5.778,0.354,15.849,0.112 1909-10-01,9.192,0.17800000000000002,15.139000000000001,0.327,3.221,0.34,14.940999999999999,0.102 1909-11-01,6.236000000000001,0.205,11.959000000000001,0.21600000000000005,0.32299999999999995,0.381,13.993,0.108 1909-12-01,3.2230000000000003,0.278,8.763,0.423,-2.353,0.326,13.217,0.121 1910-01-01,2.333,0.24,8.094999999999999,0.565,-3.2700000000000005,0.381,13.139000000000001,0.114 1910-02-01,2.779,0.273,8.388,0.344,-3.2260000000000004,0.489,13.317,0.122 1910-03-01,4.606,0.213,10.781,0.334,-1.675,0.421,13.872,0.112 1910-04-01,8.104999999999999,0.252,14.37,0.305,1.704,0.422,14.845,0.12 1910-05-01,11.005,0.31,17.03,0.327,4.675000000000002,0.514,15.712,0.128 1910-06-01,13.151,0.232,19.027,0.246,6.871,0.422,16.264000000000006,0.11 1910-07-01,14.279000000000002,0.322,19.952,0.318,8.205,0.385,16.543,0.13 1910-08-01,13.677,0.321,19.425,0.302,7.605999999999999,0.395,16.477,0.126 1910-09-01,11.733,0.243,17.623,0.28600000000000003,5.6690000000000005,0.398,15.875,0.112 1910-10-01,9.006,0.203,14.905,0.243,2.986,0.377,15.019,0.105 1910-11-01,5.318,0.223,11.072000000000001,0.42,-0.6540000000000001,0.434,13.75,0.109 1910-12-01,2.6839999999999997,0.289,8.5,0.273,-2.9989999999999997,0.459,13.015999999999998,0.123 1911-01-01,1.66,0.33,7.132999999999999,0.4370000000000001,-3.969,0.285,12.908,0.128 1911-02-01,2.4530000000000003,0.214,8.15,0.575,-3.6639999999999997,0.318,13.164,0.107 1911-03-01,4.3469999999999995,0.199,10.362,0.28,-1.743,0.315,13.752,0.108 1911-04-01,7.989999999999998,0.248,14.081,0.382,1.856,0.399,14.716,0.115 1911-05-01,10.829,0.279,16.71,0.369,4.6320000000000014,0.307,15.497,0.119 1911-06-01,13.009,0.231,19.091,0.231,6.7780000000000005,0.238,16.108,0.108 1911-07-01,14.082,0.292,19.987,0.335,8.052999999999999,0.327,16.430999999999997,0.122 1911-08-01,13.499,0.329,19.396,0.35200000000000004,7.606999999999998,0.316,16.387,0.126 1911-09-01,11.638,0.233,17.491000000000003,0.242,5.723,0.27,15.799000000000001,0.118 1911-10-01,9.263,0.193,14.99,0.249,3.4010000000000002,0.274,15.062999999999999,0.108 1911-11-01,5.9639999999999995,0.184,11.652000000000001,0.303,0.30899999999999994,0.338,14.062000000000001,0.108 1911-12-01,3.39,0.242,8.811,0.298,-1.9809999999999999,0.336,13.425,0.115 1912-01-01,2.4019999999999997,0.309,7.9110000000000005,0.253,-3.305,0.329,13.249,0.125 1912-02-01,3.3539999999999996,0.251,9.379,0.335,-2.718,0.594,13.595,0.115 1912-03-01,4.356,0.226,10.725,0.298,-1.981,0.34600000000000003,13.995,0.115 1912-04-01,8.229,0.262,14.069,0.271,2.0909999999999997,0.391,15.065,0.118 1912-05-01,11.254000000000001,0.308,17.389000000000006,0.383,4.992000000000001,0.383,15.812999999999999,0.126 1912-06-01,13.435,0.25,19.351,0.277,7.166,0.37,16.397000000000002,0.113 1912-07-01,13.722999999999999,0.293,19.729,0.368,7.915999999999999,0.345,16.509,0.12 1912-08-01,13.052999999999999,0.318,19.027,0.376,7.276999999999999,0.333,16.309,0.125 1912-09-01,11.222000000000001,0.252,17.435000000000002,0.331,5.227,0.265,15.685,0.117 1912-10-01,8.366999999999999,0.201,14.133,0.395,2.497,0.211,14.751,0.108 1912-11-01,5.521,0.188,11.185,0.345,-0.2909999999999999,0.287,13.927999999999999,0.107 1912-12-01,3.069,0.243,8.307,0.339,-2.459,0.343,13.23,0.114 1913-01-01,2.083,0.295,7.6549999999999985,0.442,-3.657,0.4,13.066,0.122 1913-02-01,2.376,0.295,8.232999999999999,0.328,-3.4850000000000003,0.523,13.344,0.122 1913-03-01,4.5169999999999995,0.219,10.4,0.274,-1.597,0.342,13.953,0.11 1913-04-01,8.023,0.246,14.219000000000001,0.355,1.91,0.334,14.957,0.117 1913-05-01,10.745,0.28800000000000003,16.815,0.355,4.652,0.35700000000000004,15.679,0.123 1913-06-01,13.005,0.266,19.075,0.37,6.667000000000002,0.364,16.215999999999998,0.117 1913-07-01,14.137,0.298,20.256,0.327,7.9670000000000005,0.355,16.552,0.122 1913-08-01,13.724,0.325,19.805,0.359,7.7349999999999985,0.37,16.496000000000002,0.126 1913-09-01,11.759,0.237,17.833000000000006,0.332,5.629,0.287,15.867,0.111 1913-10-01,9.077,0.194,14.904000000000002,0.256,3.091,0.328,15.027999999999999,0.104 1913-11-01,6.024,0.213,11.67,0.305,0.34700000000000003,0.278,14.123,0.111 1913-12-01,4.103,0.271,9.556000000000001,0.443,-1.4300000000000002,0.28800000000000003,13.624,0.12 1914-01-01,3.3760000000000003,0.307,8.822000000000001,0.369,-2.334,0.298,13.545,0.128 1914-02-01,3.2,0.225,8.501999999999999,0.469,-2.551,0.338,13.575999999999999,0.111 1914-03-01,4.942,0.221,11.039000000000001,0.277,-1.31,0.294,14.103,0.116 1914-04-01,8.097999999999999,0.244,14.050999999999998,0.262,1.8880000000000001,0.303,15.018,0.119 1914-05-01,11.284999999999998,0.284,17.199,0.301,5.2330000000000005,0.331,15.857000000000001,0.127 1914-06-01,13.496,0.233,19.335,0.255,7.218999999999999,0.255,16.421000000000006,0.114 1914-07-01,14.298,0.307,20.065,0.309,8.182,0.336,16.653,0.131 1914-08-01,13.73,0.318,19.692,0.321,7.869999999999999,0.324,16.692,0.132 1914-09-01,11.915,0.23,17.747000000000003,0.23,5.8660000000000005,0.245,16.075,0.13699999999999998 1914-10-01,9.387,0.183,15.271,0.237,3.567,0.26,15.222999999999999,0.124 1914-11-01,5.7589999999999995,0.195,11.287,0.399,0.23899999999999996,0.329,14.155,0.125 1914-12-01,3.6,0.276,8.764,0.371,-1.624,0.334,13.597000000000001,0.139 1915-01-01,2.299,0.246,7.901,0.37,-3.4160000000000004,0.332,13.32,0.134 1915-02-01,3.265,0.261,8.931000000000001,0.419,-2.52,0.375,13.675,0.13699999999999998 1915-03-01,5.143,0.209,11.024000000000001,0.272,-1.115,0.355,14.32,0.131 1915-04-01,8.705,0.251,14.607000000000001,0.336,2.755,0.324,15.292,0.135 1915-05-01,11.493,0.28600000000000003,17.141000000000002,0.325,5.371,0.416,16.067,0.138 1915-06-01,13.3,0.249,19.189,0.294,7.154,0.292,16.445,0.133 1915-07-01,14.443,0.295,20.553,0.685,8.455,0.313,16.817,0.145 1915-08-01,13.77,0.326,19.997,0.5820000000000001,7.757999999999999,0.333,16.802,0.14400000000000002 1915-09-01,11.867,0.259,17.811,0.539,6.037999999999999,0.338,16.102,0.135 1915-10-01,8.984,0.19,14.862,0.302,3.017,0.36,15.093,0.125 1915-11-01,6.216,0.185,12.159,0.337,0.297,0.33,14.254000000000001,0.127 1915-12-01,3.633,0.197,9.515,0.327,-2.069,0.377,13.538,0.127 1916-01-01,2.616,0.242,8.309,0.29600000000000004,-2.927,0.359,13.294,0.134 1916-02-01,2.957,0.264,8.855,0.289,-3.0239999999999996,0.371,13.581,0.134 1916-03-01,4.846,0.307,10.961,0.308,-1.584,0.32,14.121,0.142 1916-04-01,8.046999999999999,0.257,14.095999999999998,0.272,1.9180000000000001,0.343,14.975,0.134 1916-05-01,10.972000000000001,0.294,17.084,0.374,4.7940000000000005,0.457,15.779000000000002,0.139 1916-06-01,12.942,0.232,18.91,0.35700000000000004,6.867000000000001,0.376,16.290000000000006,0.126 1916-07-01,14.052,0.301,20.012,0.327,8.184,0.34700000000000003,16.599,0.145 1916-08-01,13.58,0.32299999999999995,19.484,0.355,7.754,0.338,16.511,0.142 1916-09-01,11.726,0.247,17.634,0.302,5.725,0.306,15.927,0.132 1916-10-01,9.053,0.218,14.763,0.29600000000000004,3.156,0.195,14.919,0.128 1916-11-01,5.596,0.214,11.22,0.305,-0.31099999999999994,0.257,13.814,0.131 1916-12-01,2.316,0.226,7.837999999999999,0.406,-3.4019999999999997,0.253,13.005999999999998,0.131 1917-01-01,2.133,0.252,7.847999999999999,0.358,-3.782,0.273,12.84,0.138 1917-02-01,2.36,0.314,8.334,0.398,-3.7710000000000004,0.307,13.099,0.151 1917-03-01,4.488,0.231,10.552,0.227,-1.983,0.272,13.800999999999998,0.136 1917-04-01,7.854999999999999,0.272,13.932,0.235,1.689,0.317,14.815,0.142 1917-05-01,10.443,0.294,16.421000000000006,0.341,4.3050000000000015,0.373,15.537,0.14300000000000002 1917-06-01,12.915,0.243,18.889,0.303,6.792000000000002,0.325,16.239,0.132 1917-07-01,14.259,0.29600000000000004,20.083,0.374,8.377,0.344,16.706,0.14400000000000002 1917-08-01,13.470999999999998,0.319,19.568,0.507,7.544999999999999,0.349,16.580000000000002,0.149 1917-09-01,11.745,0.242,17.669,0.28300000000000003,5.796,0.312,16.058,0.142 1917-10-01,8.544,0.173,14.425999999999998,0.279,2.64,0.301,14.942,0.126 1917-11-01,5.82,0.226,11.686,0.253,0.05700000000000005,0.266,14.002,0.138 1917-12-01,2.247,0.266,7.702999999999999,0.276,-3.43,0.326,13.097999999999999,0.145 1918-01-01,1.934,0.251,7.5520000000000005,0.261,-3.802000000000001,0.371,13.129000000000001,0.141 1918-02-01,2.455,0.342,8.256,0.314,-3.568,0.344,13.312,0.156 1918-03-01,4.811,0.257,10.704,0.197,-1.2670000000000001,0.31,14.034,0.147 1918-04-01,7.643999999999999,0.258,13.706,0.255,1.426,0.38,14.794,0.14800000000000002 1918-05-01,10.54,0.304,16.48,0.332,4.386,0.359,15.732999999999999,0.156 1918-06-01,12.908,0.242,18.731,0.335,6.772,0.407,16.305999999999997,0.14 1918-07-01,14.002,0.301,19.916,0.3670000000000001,7.896,0.384,16.596,0.149 1918-08-01,13.431,0.329,19.326,0.334,7.491999999999999,0.378,16.552,0.147 1918-09-01,11.880999999999998,0.256,17.999000000000006,0.243,5.8,0.29,16.074,0.147 1918-10-01,9.433,0.209,15.332,0.243,3.5780000000000003,0.499,15.252,0.14400000000000002 1918-11-01,5.683,0.225,11.265,0.2,0.14200000000000002,0.353,14.297,0.14800000000000002 1918-12-01,2.8480000000000003,0.245,8.266,0.35600000000000004,-2.627,0.377,13.439,0.155 1919-01-01,2.184,0.252,7.648999999999999,0.381,-3.3960000000000004,0.453,13.309000000000001,0.152 1919-02-01,2.852,0.285,8.626999999999999,0.43,-2.9960000000000004,0.452,13.677999999999999,0.151 1919-03-01,4.743,0.27,10.714,0.285,-1.5470000000000002,0.35200000000000004,14.22,0.14800000000000002 1919-04-01,8.487,0.292,14.412,0.349,2.441,0.385,15.253,0.15 1919-05-01,10.969000000000001,0.28600000000000003,16.701,0.376,4.881,0.375,15.847000000000001,0.14 1919-06-01,13.228,0.241,19.017,0.429,7.102,0.34,16.375,0.132 1919-07-01,14.274,0.299,20.146,0.44,8.264,0.414,16.582,0.14400000000000002 1919-08-01,13.786,0.335,19.804000000000002,0.3670000000000001,7.8420000000000005,0.333,16.498,0.153 1919-09-01,11.989999999999998,0.25,17.887,0.34600000000000003,6.126,0.26,16.025,0.141 1919-10-01,9.361,0.21600000000000005,15.005,0.205,3.522,0.237,15.117,0.129 1919-11-01,5.489,0.23,11.158,0.184,-0.4310000000000001,0.205,13.914000000000001,0.136 1919-12-01,3.224,0.245,8.756,0.303,-2.395,0.266,13.263,0.138 1920-01-01,2.841,0.25,8.443999999999999,0.435,-2.9419999999999997,0.328,13.257,0.13699999999999998 1920-02-01,2.755,0.268,8.266,0.503,-3.109,0.289,13.347,0.136 1920-03-01,5.227,0.231,11.034,0.3,-0.782,0.292,14.25,0.138 1920-04-01,8.293,0.272,14.140999999999998,0.298,2.164,0.419,15.079,0.145 1920-05-01,11.130999999999998,0.31,17.145,0.474,5.126,0.35200000000000004,15.855,0.141 1920-06-01,13.105,0.245,18.9,0.335,7.057,0.297,16.415000000000006,0.131 1920-07-01,14.245,0.305,20.121,0.477,8.299,0.358,16.692999999999998,0.14300000000000002 1920-08-01,13.698,0.343,19.647000000000002,0.305,7.7719999999999985,0.345,16.625999999999998,0.14300000000000002 1920-09-01,11.794,0.258,17.810000000000006,0.257,5.85,0.297,16.117,0.133 1920-10-01,9.021,0.212,14.852,0.302,3.1,0.267,15.206,0.125 1920-11-01,5.566,0.229,11.127,0.243,-0.12300000000000001,0.278,14.159,0.128 1920-12-01,2.6289999999999996,0.229,8.225,0.31,-3.063,0.402,13.311,0.127 1921-01-01,2.98,0.32,8.737,0.317,-2.7089999999999996,0.345,13.439,0.146 1921-02-01,3.125,0.236,9.17,0.409,-2.8160000000000003,0.278,13.622,0.129 1921-03-01,5.081,0.276,10.928,0.36,-0.9309999999999999,0.322,14.128,0.13699999999999998 1921-04-01,8.324,0.262,14.327,0.247,2.252,0.34,15.005,0.129 1921-05-01,11.245,0.282,17.255000000000006,0.306,5.152,0.389,15.825999999999999,0.129 1921-06-01,13.44,0.239,19.36,0.299,7.3839999999999995,0.366,16.490000000000002,0.122 1921-07-01,14.436,0.302,20.42,0.29600000000000004,8.424,0.388,16.783,0.136 1921-08-01,13.561,0.326,19.468,0.311,7.600999999999999,0.368,16.618000000000002,0.13699999999999998 1921-09-01,11.869000000000002,0.24,17.785,0.221,5.996,0.235,16.166,0.125 1921-10-01,9.264,0.188,15.124,0.248,3.446,0.244,15.285,0.117 1921-11-01,5.864,0.198,11.362,0.22,0.2,0.236,14.235999999999999,0.12 1921-12-01,3.6630000000000003,0.213,9.157,0.243,-1.874,0.273,13.627,0.123 1922-01-01,2.15,0.214,7.603,0.524,-3.428,0.389,13.177,0.121 1922-02-01,2.376,0.271,8.234,0.529,-3.6839999999999997,0.434,13.453,0.128 1922-03-01,5.156000000000001,0.223,11.248,0.282,-1.1880000000000002,0.261,14.245,0.121 1922-04-01,8.379999999999999,0.276,14.520999999999999,0.23,2.156,0.324,15.168,0.127 1922-05-01,11.097000000000001,0.285,16.912000000000006,0.369,4.9830000000000005,0.35700000000000004,15.777999999999999,0.13 1922-06-01,13.331,0.241,19.153,0.299,7.266,0.236,16.406000000000002,0.117 1922-07-01,14.277999999999999,0.306,20.098,0.305,8.241,0.35200000000000004,16.745,0.13 1922-08-01,13.584000000000001,0.333,19.475,0.315,7.598999999999998,0.303,16.532,0.134 1922-09-01,11.775,0.255,17.660999999999998,0.232,5.754,0.265,15.981,0.121 1922-10-01,9.056000000000001,0.219,14.975,0.202,3.134,0.27,15.043,0.12 1922-11-01,6.046,0.246,11.615,0.26,0.232,0.278,14.117,0.121 1922-12-01,3.667,0.234,8.968,0.241,-1.865,0.29,13.503,0.119 1923-01-01,2.487,0.276,8.209999999999999,0.259,-3.1950000000000003,0.349,13.24,0.127 1923-02-01,2.563,0.262,8.298,0.318,-3.1719999999999997,0.263,13.357999999999999,0.124 1923-03-01,4.8660000000000005,0.226,10.786,0.194,-1.256,0.252,14.049000000000001,0.122 1923-04-01,7.749,0.24,13.64,0.28300000000000003,1.602,0.311,14.959000000000001,0.122 1923-05-01,10.848999999999998,0.292,16.825000000000006,0.34600000000000003,4.790000000000001,0.385,15.724,0.128 1923-06-01,13.296,0.259,19.056,0.231,7.138999999999999,0.277,16.452,0.12 1923-07-01,13.984000000000002,0.3,19.81,0.32299999999999995,8.012,0.343,16.628,0.129 1923-08-01,13.610999999999999,0.34,19.445,0.333,7.645,0.3,16.54,0.13699999999999998 1923-09-01,11.883,0.256,17.783,0.29100000000000004,5.816,0.231,15.992,0.12 1923-10-01,9.52,0.191,15.187999999999999,0.341,3.523,0.225,15.249,0.112 1923-11-01,6.377999999999999,0.179,11.870999999999999,0.22,0.474,0.232,14.404000000000002,0.112 1923-12-01,3.88,0.21600000000000005,9.269,0.278,-1.903,0.31,13.739,0.119 1924-01-01,2.339,0.29,7.911999999999999,0.298,-3.502,0.377,13.303,0.134 1924-02-01,2.888,0.28800000000000003,8.609,0.469,-3.0250000000000004,0.383,13.585,0.127 1924-03-01,5.352,0.208,11.239999999999998,0.183,-0.8059999999999999,0.262,14.325,0.119 1924-04-01,7.97,0.267,13.857000000000001,0.274,1.722,0.299,15.081,0.127 1924-05-01,11.188,0.298,17.185000000000002,0.31,4.905,0.325,15.918,0.127 1924-06-01,13.342,0.241,19.195,0.284,7.085000000000001,0.244,16.461000000000002,0.116 1924-07-01,14.304,0.307,20.057000000000002,0.322,8.161,0.326,16.724,0.131 1924-08-01,13.654000000000002,0.326,19.519000000000002,0.312,7.584999999999999,0.338,16.555999999999997,0.134 1924-09-01,11.957,0.232,17.783,0.219,6.024,0.252,16.003,0.122 1924-10-01,9.203,0.182,14.896,0.243,3.29,0.223,15.042,0.117 1924-11-01,6.4,0.2,11.794,0.191,0.6559999999999999,0.193,14.132,0.116 1924-12-01,3.485,0.243,8.639,0.246,-2.021,0.309,13.342,0.124 1925-01-01,2.268,0.228,7.483999999999999,0.289,-3.1790000000000003,0.28300000000000003,13.157,0.125 1925-02-01,2.701,0.236,8.51,0.254,-3.3139999999999996,0.335,13.360999999999999,0.121 1925-03-01,5.126,0.224,11.133,0.206,-1.14,0.247,14.155,0.124 1925-04-01,8.442,0.244,14.538,0.272,2.178,0.315,15.011,0.124 1925-05-01,11.039000000000001,0.28600000000000003,17.032,0.324,4.828,0.31,15.855,0.13 1925-06-01,13.089,0.22,19.041,0.28300000000000003,6.882999999999999,0.276,16.413,0.116 1925-07-01,14.065999999999999,0.3,19.971,0.279,8.047,0.306,16.740000000000002,0.129 1925-08-01,13.769,0.32,19.737000000000002,0.289,7.723999999999998,0.3670000000000001,16.715999999999998,0.135 1925-09-01,11.979000000000001,0.235,17.874000000000006,0.244,6.007999999999999,0.222,16.14,0.126 1925-10-01,9.196,0.193,14.889000000000001,0.188,3.287,0.253,15.220999999999998,0.117 1925-11-01,6.34,0.196,11.912,0.193,0.6459999999999999,0.268,14.418,0.118 1925-12-01,4.398,0.207,10.011000000000001,0.244,-1.4700000000000002,0.305,13.897,0.122 1926-01-01,3.4530000000000003,0.258,8.785,0.277,-2.2220000000000004,0.233,13.739,0.128 1926-02-01,3.717,0.211,9.503,0.249,-2.307,0.31,13.842,0.115 1926-03-01,5.831,0.17800000000000002,11.593,0.198,-0.23400000000000004,0.258,14.536,0.116 1926-04-01,8.193,0.259,14.095,0.298,2.006,0.299,15.214,0.127 1926-05-01,10.931,0.295,16.688000000000002,0.301,4.806,0.335,15.932,0.129 1926-06-01,13.285,0.231,19.214000000000002,0.229,7.0790000000000015,0.261,16.581,0.117 1926-07-01,14.168,0.287,19.998,0.297,8.058,0.332,16.766000000000002,0.13 1926-08-01,13.877,0.321,19.695,0.304,7.915999999999999,0.345,16.8,0.135 1926-09-01,12.075,0.242,17.816000000000006,0.231,6.15,0.255,16.222,0.12 1926-10-01,9.55,0.2,15.474,0.193,3.6010000000000004,0.241,15.372,0.115 1926-11-01,6.3,0.208,11.936,0.245,0.618,0.248,14.350999999999999,0.116 1926-12-01,3.366,0.222,8.629999999999999,0.25,-2.248,0.264,13.538,0.121 1927-01-01,2.372,0.268,7.935,0.229,-3.5120000000000005,0.251,13.323,0.13 1927-02-01,3.0389999999999997,0.244,8.67,0.25,-2.866,0.315,13.65,0.12 1927-03-01,4.668,0.223,10.565,0.232,-1.495,0.31,14.084000000000001,0.121 1927-04-01,8.035,0.239,14.007,0.256,1.852,0.368,15.045,0.118 1927-05-01,11.104000000000001,0.297,16.998,0.28,4.873,0.32,15.873,0.127 1927-06-01,13.271999999999998,0.23,19.136,0.245,7.106,0.265,16.444000000000006,0.114 1927-07-01,14.323,0.302,20.237,0.262,8.283999999999999,0.33,16.812,0.13 1927-08-01,13.698,0.34,19.529,0.3,7.696999999999999,0.314,16.742,0.136 1927-09-01,12.254000000000001,0.24,18.109,0.206,6.26,0.251,16.224,0.119 1927-10-01,9.887,0.2,15.627,0.205,4.02,0.268,15.435,0.112 1927-11-01,6.346,0.192,12.072000000000001,0.219,0.596,0.268,14.342,0.113 1927-12-01,3.267,0.212,8.689,0.301,-2.3920000000000003,0.28300000000000003,13.493,0.12 1928-01-01,3.0460000000000003,0.211,8.290999999999999,0.228,-2.631,0.29100000000000004,13.637,0.121 1928-02-01,3.333,0.241,9.04,0.317,-2.609,0.29600000000000004,13.722,0.123 1928-03-01,4.959,0.191,10.892000000000001,0.23,-1.247,0.29600000000000004,14.229000000000001,0.119 1928-04-01,8.244,0.276,14.193,0.219,2.046,0.304,15.126,0.127 1928-05-01,11.169,0.321,17.060000000000002,0.274,4.981000000000001,0.335,15.88,0.134 1928-06-01,13.113,0.238,18.856,0.254,7.045,0.265,16.355,0.119 1928-07-01,14.31,0.297,20.005,0.297,8.189,0.298,16.796,0.128 1928-08-01,13.687000000000001,0.327,19.522000000000002,0.305,7.797999999999999,0.319,16.7,0.133 1928-09-01,12.03,0.235,17.980999999999998,0.223,6.02,0.237,16.066,0.12 1928-10-01,9.486,0.193,15.387,0.19,3.549,0.214,15.232,0.112 1928-11-01,6.336,0.231,11.933,0.177,0.629,0.241,14.276,0.122 1928-12-01,3.873,0.222,9.186,0.26,-1.751,0.257,13.568,0.122 1929-01-01,2.0540000000000003,0.289,7.479999999999999,0.298,-3.66,0.272,13.137,0.134 1929-02-01,2.172,0.229,7.837999999999999,0.219,-3.883,0.274,13.241,0.12 1929-03-01,5.099,0.191,10.982000000000001,0.229,-1.131,0.289,14.079,0.121 1929-04-01,8.094,0.265,14.08,0.292,1.8419999999999999,0.281,14.987,0.126 1929-05-01,10.915,0.294,16.906000000000002,0.258,4.784000000000002,0.334,15.716,0.128 1929-06-01,12.928,0.232,18.65,0.26,6.9079999999999995,0.29100000000000004,16.328000000000007,0.117 1929-07-01,13.957,0.314,19.652,0.314,8.012,0.318,16.59,0.134 1929-08-01,13.68,0.33,19.548,0.301,7.696999999999999,0.328,16.671,0.138 1929-09-01,11.807,0.255,17.598000000000006,0.199,5.926,0.238,16.092,0.126 1929-10-01,9.46,0.195,15.217,0.182,3.6860000000000004,0.226,15.248,0.113 1929-11-01,6.172000000000001,0.207,11.757,0.175,0.377,0.213,14.312999999999999,0.118 1929-12-01,2.571,0.22,7.769,0.222,-2.9450000000000003,0.242,13.207,0.121 1930-01-01,2.401,0.226,7.669999999999999,0.21600000000000005,-3.1689999999999996,0.343,13.26,0.13 1930-02-01,3.1519999999999997,0.236,8.9,0.252,-2.8520000000000003,0.252,13.54,0.126 1930-03-01,5.483,0.191,11.539000000000001,0.273,-0.5710000000000001,0.209,14.326,0.127 1930-04-01,8.181999999999999,0.242,14.017000000000001,0.254,2.072,0.271,15.081,0.124 1930-05-01,11.105,0.292,16.87,0.272,5.016,0.314,15.911,0.131 1930-06-01,13.347000000000001,0.231,19.071,0.264,7.295,0.309,16.473000000000006,0.122 1930-07-01,14.465,0.301,20.252,0.267,8.415,0.287,16.854,0.13699999999999998 1930-08-01,13.928,0.327,19.803,0.29100000000000004,7.995999999999999,0.304,16.791,0.146 1930-09-01,11.874,0.247,17.754,0.204,5.935,0.237,16.25,0.131 1930-10-01,9.261000000000001,0.187,14.941,0.205,3.587,0.25,15.355,0.121 1930-11-01,6.574,0.202,12.032,0.18600000000000005,0.8919999999999999,0.213,14.505,0.128 1930-12-01,3.8310000000000004,0.194,9.066,0.239,-1.736,0.243,13.724,0.124 1931-01-01,2.761,0.225,8.059,0.339,-2.897,0.252,13.529000000000002,0.13 1931-02-01,2.708,0.224,8.218,0.233,-3.123,0.245,13.620999999999999,0.125 1931-03-01,5.22,0.18600000000000005,11.194,0.14800000000000002,-1.006,0.244,14.347000000000001,0.126 1931-04-01,8.163,0.234,14.079,0.228,2.025,0.29,15.116,0.126 1931-05-01,11.02,0.281,16.805,0.266,4.9510000000000005,0.327,15.872,0.129 1931-06-01,13.573,0.24,19.419,0.222,7.489000000000001,0.256,16.630000000000006,0.126 1931-07-01,14.575999999999999,0.302,20.399,0.275,8.665,0.328,16.967,0.138 1931-08-01,14.12,0.33,19.961,0.289,8.189,0.331,16.887,0.145 1931-09-01,12.283,0.25,18.078000000000007,0.203,6.485,0.241,16.294,0.129 1931-10-01,9.937000000000001,0.197,15.718,0.16699999999999998,4.073,0.245,15.448,0.125 1931-11-01,6.242999999999999,0.198,11.63,0.189,0.5449999999999999,0.267,14.317,0.125 1931-12-01,4.027,0.18600000000000005,9.477,0.183,-1.5730000000000002,0.26,13.710999999999999,0.125 1932-01-01,3.6039999999999996,0.223,9.159,0.254,-2.0540000000000003,0.284,13.687000000000001,0.131 1932-02-01,2.989,0.221,8.797,0.21600000000000005,-3.2300000000000004,0.206,13.658,0.124 1932-03-01,4.94,0.204,10.934000000000001,0.16899999999999998,-1.164,0.237,14.252,0.129 1932-04-01,8.769,0.263,14.644,0.223,2.599,0.271,15.335,0.129 1932-05-01,11.239,0.3,16.865000000000002,0.253,5.2250000000000005,0.338,16.018,0.132 1932-06-01,13.383,0.257,19.114,0.219,7.257999999999999,0.251,16.504,0.126 1932-07-01,14.372,0.306,20.093,0.28600000000000003,8.416,0.339,16.846,0.138 1932-08-01,13.74,0.331,19.5,0.277,7.916999999999999,0.331,16.68,0.14300000000000002 1932-09-01,12.31,0.268,18.215999999999998,0.213,6.34,0.226,16.262999999999998,0.133 1932-10-01,9.682,0.232,15.424000000000001,0.16,3.9,0.243,15.28,0.123 1932-11-01,5.9079999999999995,0.18600000000000005,11.550999999999998,0.204,0.014000000000000012,0.278,14.175,0.122 1932-12-01,3.527,0.196,8.888,0.215,-2.0709999999999997,0.271,13.558,0.123 1933-01-01,2.169,0.226,7.379,0.207,-3.4530000000000003,0.277,13.26,0.129 1933-02-01,2.657,0.21,8.350999999999999,0.305,-3.318,0.299,13.505999999999998,0.12 1933-03-01,4.869,0.185,10.774000000000001,0.192,-1.27,0.307,14.130999999999998,0.12 1933-04-01,8.125,0.272,14.046,0.263,2.003,0.28600000000000003,15.043,0.13 1933-05-01,11.047,0.28800000000000003,16.845000000000002,0.267,4.988,0.297,15.823,0.134 1933-06-01,13.11,0.241,19.036,0.25,7.001,0.313,16.337,0.126 1933-07-01,14.235999999999999,0.3,20.037,0.282,8.295,0.29100000000000004,16.704,0.136 1933-08-01,13.76,0.321,19.635,0.29600000000000004,7.858,0.321,16.701,0.138 1933-09-01,11.854000000000001,0.244,17.631,0.202,6.055,0.259,16.024,0.129 1933-10-01,9.238,0.232,15.172,0.17,3.3739999999999997,0.247,15.142999999999999,0.125 1933-11-01,5.89,0.201,11.578,0.227,0.09299999999999996,0.248,14.130999999999998,0.118 1933-12-01,3.1039999999999996,0.192,8.456,0.23,-2.533,0.23,13.352,0.12 1934-01-01,2.476,0.231,7.994999999999999,0.219,-3.131,0.272,13.276,0.124 1934-02-01,3.699,0.251,9.504,0.237,-2.1910000000000003,0.35600000000000004,13.700999999999999,0.125 1934-03-01,4.8180000000000005,0.201,10.835,0.193,-1.382,0.223,14.072000000000001,0.122 1934-04-01,8.016,0.259,13.995999999999999,0.24,1.853,0.294,15.02,0.128 1934-05-01,11.478,0.276,17.533,0.273,5.260000000000002,0.307,15.950999999999999,0.127 1934-06-01,13.402000000000001,0.24,19.183,0.25,7.4220000000000015,0.274,16.578000000000007,0.121 1934-07-01,14.343,0.29600000000000004,20.14,0.28800000000000003,8.472000000000001,0.317,16.851,0.134 1934-08-01,13.777999999999999,0.322,19.534000000000002,0.289,8.01,0.337,16.740000000000002,0.141 1934-09-01,11.727,0.238,17.505000000000006,0.221,5.899,0.261,16.128,0.122 1934-10-01,9.421,0.192,15.370999999999999,0.181,3.6289999999999996,0.213,15.332,0.118 1934-11-01,6.397,0.182,11.736,0.179,0.978,0.235,14.412,0.113 1934-12-01,3.985,0.193,9.279,0.239,-1.62,0.221,13.673,0.118 1935-01-01,2.1750000000000003,0.204,7.736999999999999,0.22,-3.618,0.25,13.299000000000001,0.121 1935-02-01,4.125,0.217,9.944,0.213,-1.7169999999999999,0.245,13.857,0.119 1935-03-01,5.399,0.187,11.343,0.203,-0.802,0.197,14.269,0.115 1935-04-01,7.770999999999999,0.256,13.81,0.249,1.551,0.271,15.013,0.126 1935-05-01,10.906,0.277,16.880000000000006,0.258,4.755000000000001,0.31,15.848,0.128 1935-06-01,13.326,0.23,19.1,0.227,7.1930000000000005,0.247,16.504,0.122 1935-07-01,14.331,0.292,20.173,0.307,8.437999999999999,0.302,16.848,0.131 1935-08-01,13.775,0.332,19.657,0.303,7.830999999999999,0.327,16.715,0.139 1935-09-01,11.999,0.239,17.896,0.207,6.042000000000001,0.25,16.143,0.12 1935-10-01,9.516,0.198,15.379000000000001,0.174,3.7,0.235,15.311,0.114 1935-11-01,5.443,0.191,10.849,0.201,-0.23,0.246,14.069,0.115 1935-12-01,3.423,0.208,8.675,0.235,-2.09,0.282,13.55,0.118 1936-01-01,2.249,0.221,7.805999999999999,0.203,-3.53,0.237,13.26,0.115 1936-02-01,2.506,0.236,8.253,0.29100000000000004,-3.458,0.251,13.533,0.118 1936-03-01,5.031000000000001,0.194,11.032,0.197,-1.1540000000000001,0.218,14.206,0.116 1936-04-01,8.126999999999999,0.258,14.082,0.25,1.976,0.246,15.089,0.122 1936-05-01,11.251,0.279,17.076,0.28,5.23,0.305,15.935,0.125 1936-06-01,13.363,0.243,19.171,0.238,7.287999999999999,0.281,16.524,0.116 1936-07-01,14.629000000000001,0.299,20.442999999999998,0.281,8.704,0.293,16.928,0.13 1936-08-01,13.86,0.325,19.691,0.287,7.9289999999999985,0.317,16.811,0.134 1936-09-01,12.021,0.246,17.91,0.213,6.064,0.224,16.191,0.121 1936-10-01,9.457,0.22,15.316,0.21,3.658,0.233,15.412,0.116 1936-11-01,6.2330000000000005,0.188,11.814,0.203,0.40700000000000003,0.215,14.338,0.113 1936-12-01,3.9210000000000003,0.208,9.181000000000001,0.21600000000000005,-1.4409999999999998,0.251,13.767000000000001,0.118 1937-01-01,2.4530000000000003,0.196,7.879,0.237,-3.216,0.259,13.417,0.116 1937-02-01,3.553,0.22,9.237,0.261,-2.387,0.21600000000000005,13.904000000000002,0.116 1937-03-01,4.851,0.219,10.731,0.199,-1.413,0.237,14.276,0.119 1937-04-01,8.139999999999999,0.242,14.025,0.253,2.001,0.28,15.228,0.117 1937-05-01,11.422,0.28800000000000003,17.358,0.267,5.1690000000000005,0.29600000000000004,16.051,0.125 1937-06-01,13.603,0.236,19.558,0.229,7.4540000000000015,0.248,16.679000000000002,0.116 1937-07-01,14.375,0.298,20.154,0.271,8.41,0.28300000000000003,17.054000000000002,0.128 1937-08-01,14.007,0.325,19.85,0.322,8.145,0.293,16.941,0.135 1937-09-01,12.412999999999998,0.247,18.377,0.24,6.419,0.22,16.402,0.124 1937-10-01,9.729,0.2,15.635,0.212,4.002,0.241,15.523,0.113 1937-11-01,6.356,0.199,11.913,0.219,0.612,0.221,14.447,0.113 1937-12-01,3.478,0.211,8.999,0.237,-2.1959999999999997,0.284,13.684,0.118 1938-01-01,2.91,0.194,8.415999999999999,0.217,-2.5970000000000004,0.272,13.595999999999998,0.111 1938-02-01,3.417,0.225,9.138,0.258,-2.518,0.246,13.827,0.112 1938-03-01,5.651,0.192,11.616,0.173,-0.4310000000000001,0.208,14.491,0.111 1938-04-01,8.913,0.249,14.984000000000002,0.239,2.968,0.247,15.363,0.119 1938-05-01,11.456,0.297,17.429000000000002,0.28300000000000003,5.4270000000000005,0.312,16.000999999999998,0.129 1938-06-01,13.321,0.238,18.989,0.219,7.417999999999999,0.258,16.607000000000006,0.117 1938-07-01,14.482000000000001,0.295,20.249000000000002,0.29100000000000004,8.612,0.312,16.871,0.127 1938-08-01,13.963,0.325,19.85,0.306,8.097000000000001,0.33,16.904,0.132 1938-09-01,12.427,0.249,18.311,0.208,6.468,0.244,16.367,0.122 1938-10-01,9.784,0.194,15.734000000000002,0.165,3.984,0.247,15.526,0.113 1938-11-01,6.53,0.215,12.161,0.204,0.9690000000000001,0.26,14.408,0.114 1938-12-01,3.51,0.213,8.922,0.248,-2.0010000000000003,0.289,13.556,0.116 1939-01-01,2.932,0.198,8.53,0.266,-2.7710000000000004,0.236,13.537999999999998,0.114 1939-02-01,3.232,0.201,9.048,0.225,-2.535,0.224,13.757,0.112 1939-03-01,4.926,0.196,10.836,0.187,-1.1,0.21600000000000005,14.273,0.113 1939-04-01,8.328,0.252,14.44,0.234,2.271,0.252,15.296,0.119 1939-05-01,11.524000000000001,0.298,17.489,0.277,5.362,0.29100000000000004,16.174,0.128 1939-06-01,13.531,0.256,19.47,0.238,7.510000000000002,0.266,16.712,0.119 1939-07-01,14.395,0.29100000000000004,20.26,0.29600000000000004,8.616999999999999,0.339,16.988,0.127 1939-08-01,13.932,0.324,19.807000000000002,0.304,8.011000000000001,0.32299999999999995,16.892,0.139 1939-09-01,11.957999999999998,0.247,17.922,0.203,5.907,0.261,16.3,0.126 1939-10-01,9.218,0.185,14.963,0.179,3.4789999999999996,0.212,15.232,0.122 1939-11-01,6.189,0.194,11.742,0.209,0.5549999999999999,0.243,14.379000000000001,0.116 1939-12-01,4.959,0.206,10.629000000000001,0.254,-0.7380000000000001,0.263,14.087,0.112 1940-01-01,2.335,0.2,7.941999999999998,0.219,-3.35,0.256,13.576,0.12 1940-02-01,3.423,0.204,9.25,0.242,-2.488,0.243,13.932,0.116 1940-03-01,5.4239999999999995,0.18,11.402000000000001,0.174,-0.622,0.198,14.48,0.115 1940-04-01,8.756,0.247,14.793,0.252,2.722,0.258,15.452,0.125 1940-05-01,11.338,0.29600000000000004,17.273,0.269,5.202000000000001,0.328,16.08,0.132 1940-06-01,13.583,0.231,19.501,0.212,7.532,0.247,16.725,0.119 1940-07-01,14.571,0.295,20.408,0.27,8.51,0.302,17.123,0.132 1940-08-01,13.811,0.32299999999999995,19.662,0.29,7.9369999999999985,0.313,16.945999999999998,0.134 1940-09-01,12.268,0.234,18.186,0.212,6.377000000000001,0.23,16.43,0.126 1940-10-01,9.457,0.187,15.273,0.222,3.762,0.235,15.384,0.118 1940-11-01,6.0760000000000005,0.18600000000000005,11.667,0.231,0.52,0.222,14.377,0.12 1940-12-01,4.1339999999999995,0.19,9.592,0.226,-1.418,0.218,13.96,0.117 1941-01-01,2.7350000000000003,0.199,8.347999999999999,0.207,-3.01,0.214,13.622,0.111 1941-02-01,3.67,0.202,9.439,0.247,-2.234,0.226,13.946000000000002,0.109 1941-03-01,5.212999999999999,0.18600000000000005,11.152000000000001,0.201,-0.9009999999999999,0.209,14.425,0.104 1941-04-01,8.575,0.24,14.429,0.24,2.616,0.257,15.407,0.114 1941-05-01,11.493,0.282,17.259,0.261,5.582000000000002,0.298,16.152,0.122 1941-06-01,13.63,0.232,19.447,0.218,7.6960000000000015,0.255,16.753,0.112 1941-07-01,14.694,0.29100000000000004,20.578000000000003,0.262,8.738999999999999,0.29100000000000004,17.131,0.122 1941-08-01,14.027999999999999,0.322,19.853,0.294,8.133999999999999,0.33,16.915,0.126 1941-09-01,11.816,0.232,17.813000000000006,0.214,5.973,0.315,16.19,0.112 1941-10-01,9.71,0.175,15.504000000000001,0.18,3.988,0.252,15.629,0.107 1941-11-01,5.952999999999999,0.181,11.536,0.207,0.265,0.235,14.475,0.11 1941-12-01,3.707,0.192,9.076,0.23,-1.87,0.285,13.970999999999998,0.142 1942-01-01,3.103,0.221,8.715,0.212,-2.609,0.282,13.821,0.13 1942-02-01,2.8569999999999998,0.204,8.544,0.249,-2.883,0.27,13.773,0.123 1942-03-01,5.308,0.18600000000000005,11.264000000000001,0.188,-0.7709999999999999,0.22,14.538,0.124 1942-04-01,8.415999999999999,0.238,14.453,0.243,2.401,0.312,15.307,0.131 1942-05-01,11.338,0.281,17.195999999999998,0.277,5.3980000000000015,0.321,16.147000000000002,0.142 1942-06-01,13.578,0.22,19.417,0.229,7.721,0.29600000000000004,16.729000000000006,0.127 1942-07-01,14.242,0.293,20.107,0.273,8.516,0.315,16.902,0.141 1942-08-01,13.786,0.318,19.603,0.309,8.042,0.317,16.766000000000002,0.147 1942-09-01,12.146,0.233,18.143,0.231,6.151,0.247,16.265,0.142 1942-10-01,9.627,0.18600000000000005,15.452,0.199,3.864,0.229,15.357999999999999,0.134 1942-11-01,6.3950000000000005,0.184,12.149000000000001,0.198,0.6849999999999999,0.295,14.425999999999998,0.126 1942-12-01,3.945,0.19,9.368,0.256,-1.4740000000000002,0.235,13.872,0.13 1943-01-01,2.396,0.195,8.017000000000001,0.218,-3.2830000000000004,0.21600000000000005,13.522,0.136 1943-02-01,3.513,0.199,9.468,0.226,-2.37,0.232,13.939,0.126 1943-03-01,5.138,0.184,11.123,0.195,-0.812,0.193,14.371,0.127 1943-04-01,8.638,0.243,14.654000000000002,0.218,2.719,0.253,15.335,0.13699999999999998 1943-05-01,11.485,0.277,17.401,0.253,5.5230000000000015,0.315,16.123,0.14300000000000002 1943-06-01,13.161,0.23,19.036,0.226,7.314,0.21600000000000005,16.596,0.132 1943-07-01,14.46,0.3,20.394,0.266,8.503,0.32,16.95,0.14300000000000002 1943-08-01,13.774000000000001,0.313,19.68,0.282,7.985999999999999,0.305,16.912,0.145 1943-09-01,12.095999999999998,0.227,18.029000000000003,0.22,6.325,0.213,16.285,0.129 1943-10-01,9.907,0.17600000000000002,15.859000000000002,0.19,4.0680000000000005,0.205,15.62,0.129 1943-11-01,6.26,0.188,11.87,0.222,0.5920000000000001,0.229,14.53,0.128 1943-12-01,4.2330000000000005,0.187,9.705,0.195,-1.3259999999999998,0.245,13.957,0.129 1944-01-01,3.5039999999999996,0.185,9.037,0.209,-1.9290000000000005,0.225,13.819,0.117 1944-02-01,3.591,0.222,9.407,0.206,-2.123,0.261,14.023,0.121 1944-03-01,5.531000000000001,0.205,11.517000000000001,0.174,-0.4,0.232,14.632,0.122 1944-04-01,8.434,0.243,14.577,0.22,2.337,0.252,15.432,0.129 1944-05-01,11.334000000000001,0.275,17.483,0.257,5.327999999999999,0.297,16.212,0.135 1944-06-01,13.478,0.222,19.508,0.249,7.491,0.228,16.772000000000002,0.125 1944-07-01,14.468,0.284,20.493000000000002,0.276,8.652000000000001,0.282,17.119,0.13699999999999998 1944-08-01,14.017000000000001,0.308,20.108,0.282,8.075999999999999,0.3,17.117,0.142 1944-09-01,12.45,0.229,18.453000000000007,0.197,6.614,0.212,16.472,0.13 1944-10-01,9.808,0.17,15.732000000000001,0.17,4.032,0.208,15.623,0.123 1944-11-01,6.091,0.17800000000000002,11.515,0.217,0.607,0.237,14.401,0.125 1944-12-01,3.434,0.181,8.895999999999997,0.268,-1.969,0.21600000000000005,13.767000000000001,0.127 1945-01-01,2.525,0.18600000000000005,8.126999999999999,0.184,-2.907,0.229,13.586,0.122 1945-02-01,2.6460000000000004,0.194,8.373,0.192,-3.0439999999999996,0.25,13.747,0.125 1945-03-01,5.184,0.171,11.182,0.147,-0.898,0.244,14.462,0.124 1945-04-01,8.681000000000001,0.236,14.727,0.239,2.6010000000000004,0.278,15.431,0.131 1945-05-01,11.097000000000001,0.269,17.214000000000002,0.297,5.008,0.306,16.064,0.142 1945-06-01,13.328,0.231,19.407,0.225,7.366,0.22,16.660999999999998,0.131 1945-07-01,14.213,0.287,20.142,0.271,8.352,0.273,16.910999999999998,0.145 1945-08-01,14.312999999999999,0.317,20.189,0.284,8.412999999999998,0.313,17.105999999999998,0.149 1945-09-01,12.225,0.227,18.078000000000007,0.205,6.414,0.29600000000000004,16.358,0.133 1945-10-01,9.575,0.171,15.458,0.165,3.83,0.271,15.574000000000002,0.119 1945-11-01,6.0729999999999995,0.172,11.697000000000001,0.179,0.47,0.224,14.453,0.121 1945-12-01,3.158,0.183,8.671,0.19,-2.3369999999999997,0.224,13.616,0.122 1946-01-01,2.9789999999999996,0.188,8.484,0.188,-2.5469999999999997,0.257,13.638,0.129 1946-02-01,3.4610000000000003,0.206,9.259,0.177,-2.389,0.232,13.815999999999999,0.128 1946-03-01,5.236000000000001,0.171,11.244000000000002,0.166,-0.8390000000000001,0.21600000000000005,14.514000000000001,0.125 1946-04-01,8.837,0.223,14.909,0.228,2.7110000000000003,0.247,15.441,0.127 1946-05-01,11.355,0.273,17.275000000000002,0.246,5.3229999999999995,0.309,15.994000000000002,0.14300000000000002 1946-06-01,13.298,0.237,19.086,0.215,7.197,0.23,16.512999999999998,0.13699999999999998 1946-07-01,14.409,0.289,20.265,0.274,8.427,0.281,16.944000000000003,0.139 1946-08-01,13.834000000000001,0.319,19.783,0.28600000000000003,7.997999999999998,0.301,16.717000000000002,0.14300000000000002 1946-09-01,12.064,0.233,17.921000000000006,0.202,6.263999999999999,0.235,16.252,0.14300000000000002 1946-10-01,9.281,0.17,15.175,0.17,3.577,0.258,15.437,0.13 1946-11-01,6.235,0.179,11.863,0.193,0.5549999999999999,0.236,14.359000000000002,0.12 1946-12-01,3.134,0.181,8.514,0.233,-2.31,0.253,13.527999999999999,0.125 1947-01-01,2.597,0.184,8.109,0.194,-2.992,0.238,13.532,0.125 1947-02-01,3.2769999999999997,0.191,9.045,0.192,-2.668,0.258,13.832,0.116 1947-03-01,5.801,0.183,11.8,0.194,-0.36700000000000005,0.238,14.54,0.124 1947-04-01,8.686,0.227,14.734000000000002,0.236,2.738,0.25,15.373,0.128 1947-05-01,11.329,0.266,17.266000000000002,0.264,5.263000000000001,0.298,16.089000000000002,0.135 1947-06-01,13.459000000000001,0.21600000000000005,19.361,0.206,7.452000000000001,0.209,16.701,0.126 1947-07-01,14.349,0.284,20.125999999999998,0.267,8.35,0.28800000000000003,16.973,0.138 1947-08-01,13.827,0.305,19.541,0.278,8.001999999999999,0.295,16.804000000000002,0.136 1947-09-01,12.166,0.221,17.959000000000003,0.187,6.355,0.21600000000000005,16.261,0.131 1947-10-01,10.011000000000001,0.16399999999999998,15.797,0.16399999999999998,4.313,0.201,15.49,0.13 1947-11-01,6.407,0.187,11.925999999999998,0.21,0.9129999999999999,0.249,14.435,0.128 1947-12-01,3.656,0.177,9.086,0.22,-1.784,0.237,13.692,0.128 1948-01-01,3.366,0.18,9.136000000000001,0.18600000000000005,-2.3520000000000003,0.193,13.666,0.119 1948-02-01,3.22,0.198,9.034,0.212,-2.613,0.231,13.692,0.123 1948-03-01,4.9190000000000005,0.161,10.852,0.222,-1.039,0.196,14.284,0.125 1948-04-01,8.498999999999999,0.215,14.384,0.239,2.617,0.261,15.265999999999998,0.127 1948-05-01,11.537,0.257,17.592000000000002,0.266,5.5150000000000015,0.289,16.173,0.135 1948-06-01,13.664000000000001,0.214,19.614,0.217,7.585,0.212,16.742,0.129 1948-07-01,14.445,0.276,20.334,0.28,8.625,0.281,16.938,0.141 1948-08-01,13.895999999999999,0.298,19.87,0.298,7.964999999999999,0.295,16.902,0.136 1948-09-01,12.155,0.22,18.217,0.21600000000000005,6.209,0.226,16.243,0.127 1948-10-01,9.584,0.16699999999999998,15.52,0.17,3.812,0.207,15.389,0.123 1948-11-01,6.1850000000000005,0.162,11.853,0.251,0.691,0.249,14.299000000000001,0.131 1948-12-01,3.491,0.16699999999999998,8.981,0.242,-2.03,0.211,13.54,0.126 1949-01-01,3.2190000000000003,0.17,8.837,0.175,-2.4280000000000004,0.213,13.704,0.101 1949-02-01,2.759,0.185,8.517999999999999,0.191,-3.003,0.262,13.686,0.101 1949-03-01,5.077,0.177,10.981,0.153,-0.773,0.215,14.322000000000001,0.102 1949-04-01,8.344,0.226,14.41,0.222,2.364,0.266,15.312000000000001,0.109 1949-05-01,11.309000000000001,0.255,17.195999999999998,0.261,5.444000000000001,0.282,16.063,0.117 1949-06-01,13.223,0.209,19.064,0.256,7.388999999999999,0.224,16.467000000000002,0.107 1949-07-01,14.199000000000002,0.27,20.128,0.28600000000000003,8.297,0.284,16.807000000000002,0.12 1949-08-01,13.825999999999999,0.295,19.77,0.29600000000000004,8.004,0.29,16.796,0.123 1949-09-01,11.957,0.212,17.969,0.205,6.0520000000000005,0.21,16.177,0.107 1949-10-01,9.531,0.158,15.439,0.187,3.719,0.199,15.375,0.101 1949-11-01,6.148,0.16399999999999998,11.821,0.207,0.453,0.224,14.331,0.099 1949-12-01,3.449,0.17800000000000002,8.843,0.209,-1.892,0.237,13.633,0.102 1950-01-01,2.008,0.173,7.611000000000001,0.207,-3.622,0.236,13.311,0.095 1950-02-01,2.721,0.182,8.475,0.209,-3.013,0.217,13.554,0.101 1950-03-01,5.247000000000001,0.15,11.173,0.158,-0.6930000000000001,0.2,14.296,0.097 1950-04-01,8.123,0.192,14.157,0.21600000000000005,2.043,0.28,15.093,0.102 1950-05-01,11.297,0.217,17.252000000000002,0.259,5.421,0.28600000000000003,16.033,0.106 1950-06-01,13.382,0.196,19.29,0.232,7.501,0.224,16.66,0.105 1950-07-01,14.14,0.239,19.882,0.275,8.417,0.29100000000000004,16.980999999999998,0.115 1950-08-01,13.46,0.228,19.39,0.267,7.728999999999999,0.26,16.730999999999998,0.108 1950-09-01,11.952,0.204,17.737000000000005,0.209,6.205,0.215,16.124000000000002,0.106 1950-10-01,9.153,0.16399999999999998,14.918,0.159,3.452,0.193,15.245,0.103 1950-11-01,5.372000000000001,0.139,11.077,0.18600000000000005,-0.4259999999999999,0.19,14.06,0.093 1950-12-01,3.528,0.152,9.123,0.205,-2.0709999999999997,0.201,13.585999999999999,0.097 1951-01-01,2.138,0.132,7.77,0.179,-3.5210000000000004,0.179,13.341,0.09 1951-02-01,2.332,0.149,8.163,0.229,-3.661,0.155,13.488,0.093 1951-03-01,5.091,0.141,11.074000000000002,0.159,-1.0870000000000002,0.173,14.278,0.092 1951-04-01,8.366999999999999,0.175,14.538,0.184,2.191,0.208,15.198,0.095 1951-05-01,11.438,0.23,17.371000000000002,0.24,5.376,0.262,16.158,0.112 1951-06-01,13.25,0.238,19.16,0.214,7.312,0.192,16.768,0.106 1951-07-01,14.324000000000002,0.24,20.225,0.232,8.416,0.252,17.046,0.11 1951-08-01,14.020999999999999,0.251,19.81,0.28,8.033,0.3,17.081,0.11 1951-09-01,12.324000000000002,0.21600000000000005,18.362,0.197,6.4270000000000005,0.219,16.43,0.101 1951-10-01,9.67,0.123,15.149000000000001,0.125,4.047,0.161,15.529000000000002,0.094 1951-11-01,6.2250000000000005,0.161,11.752,0.18600000000000005,0.457,0.17,14.422,0.093 1951-12-01,4.3279999999999985,0.154,9.788,0.201,-1.162,0.21,13.995,0.091 1952-01-01,3.049,0.14400000000000002,8.655999999999999,0.174,-2.5789999999999997,0.193,13.762,0.08900000000000001 1952-02-01,3.3960000000000004,0.18,9.113,0.196,-2.4250000000000003,0.199,14.009,0.093 1952-03-01,4.9670000000000005,0.168,10.96,0.17800000000000002,-1.193,0.194,14.373,0.093 1952-04-01,8.461,0.225,14.565,0.225,2.445,0.232,15.363,0.103 1952-05-01,11.352,0.264,17.289,0.254,5.394,0.274,16.129,0.115 1952-06-01,13.442,0.218,19.426,0.242,7.626,0.219,16.750999999999998,0.104 1952-07-01,14.549000000000001,0.276,20.416,0.259,8.754,0.282,17.067999999999998,0.118 1952-08-01,13.964,0.302,19.753,0.28,8.161,0.29600000000000004,16.952,0.118 1952-09-01,12.238,0.22,18.109,0.202,6.379,0.213,16.395,0.104 1952-10-01,9.157,0.166,15.032,0.165,3.2939999999999996,0.19,15.434,0.096 1952-11-01,5.425,0.168,11.017000000000001,0.182,-0.16400000000000006,0.184,14.334000000000001,0.093 1952-12-01,3.659,0.174,9.215,0.19,-1.85,0.193,13.787,0.094 1953-01-01,2.964,0.166,8.540999999999999,0.18600000000000005,-2.6289999999999996,0.201,13.642000000000001,0.092 1953-02-01,3.6289999999999996,0.187,9.51,0.19,-2.1820000000000004,0.189,14.02,0.094 1953-03-01,5.712000000000001,0.161,11.677,0.16399999999999998,-0.22000000000000006,0.183,14.561,0.093 1953-04-01,8.892000000000001,0.228,14.812999999999999,0.212,2.9130000000000003,0.254,15.518,0.103 1953-05-01,11.514000000000001,0.264,17.358,0.252,5.53,0.287,16.266,0.114 1953-06-01,13.612,0.21600000000000005,19.461,0.204,7.749,0.202,16.89,0.105 1953-07-01,14.392000000000001,0.284,20.254,0.261,8.565,0.274,17.088,0.118 1953-08-01,14.059000000000001,0.305,19.803,0.274,8.25,0.28,16.985,0.119 1953-09-01,12.199000000000002,0.223,18.145000000000003,0.188,6.287999999999999,0.215,16.418,0.105 1953-10-01,9.59,0.161,15.367,0.151,3.908,0.197,15.470999999999998,0.094 1953-11-01,5.9239999999999995,0.168,11.376,0.16399999999999998,0.419,0.21,14.332,0.095 1953-12-01,3.998,0.182,9.366,0.183,-1.2990000000000002,0.214,13.862,0.095 1954-01-01,2.059,0.14800000000000002,7.672999999999999,0.179,-3.5810000000000004,0.201,13.38,0.08900000000000001 1954-02-01,3.0839999999999996,0.182,8.863,0.195,-2.6740000000000004,0.196,13.783,0.093 1954-03-01,5.148,0.18,11.148,0.13699999999999998,-0.865,0.201,14.385,0.094 1954-04-01,8.158,0.218,13.972999999999999,0.222,2.424,0.195,15.226,0.102 1954-05-01,10.988,0.217,16.784000000000002,0.209,5.1960000000000015,0.219,15.970999999999998,0.102 1954-06-01,13.4,0.187,19.213,0.226,7.62,0.177,16.609,0.096 1954-07-01,14.241,0.228,20.015,0.223,8.543,0.221,16.851,0.104 1954-08-01,13.868,0.248,19.588,0.214,8.184,0.23,16.816,0.103 1954-09-01,12.098,0.204,17.852,0.226,6.367999999999999,0.17600000000000002,16.223,0.099 1954-10-01,9.546,0.14400000000000002,15.26,0.14,3.9019999999999997,0.153,15.423,0.08800000000000001 1954-11-01,6.579,0.14300000000000002,12.155,0.14,1.046,0.156,14.48,0.086 1954-12-01,3.559,0.147,8.915,0.185,-1.773,0.17600000000000002,13.62,0.08800000000000001 1955-01-01,3.412,0.152,8.914,0.135,-2.028,0.146,13.717,0.086 1955-02-01,3.137,0.141,8.966000000000001,0.153,-2.71,0.17600000000000002,13.718,0.087 1955-03-01,4.585,0.121,10.377,0.139,-1.4269999999999998,0.14400000000000002,14.179,0.083 1955-04-01,8.136000000000001,0.16,13.914000000000001,0.2,2.2230000000000003,0.179,15.119000000000002,0.091 1955-05-01,11.191999999999998,0.209,17.110000000000007,0.226,5.504,0.218,15.882,0.1 1955-06-01,13.56,0.14800000000000002,19.218,0.184,7.735,0.165,16.555,0.087 1955-07-01,14.242,0.177,19.959,0.213,8.579,0.224,16.809,0.093 1955-08-01,14.283,0.21600000000000005,19.857,0.25,8.302999999999999,0.242,16.899,0.098 1955-09-01,11.954,0.162,17.859,0.15,6.405,0.179,16.148,0.08900000000000001 1955-10-01,9.735,0.107,15.446,0.13699999999999998,3.923,0.187,15.333,0.08199999999999999 1955-11-01,5.973,0.135,11.527000000000001,0.184,0.08399999999999996,0.208,14.210999999999999,0.081 1955-12-01,3.306,0.115,8.802,0.184,-2.254,0.18600000000000005,13.522,0.08 1956-01-01,2.4659999999999997,0.099,7.909,0.171,-3.055,0.179,13.444,0.075 1956-02-01,2.781,0.168,8.555,0.181,-3.131,0.212,13.626,0.086 1956-03-01,4.888999999999999,0.109,10.836,0.108,-1.028,0.155,14.231,0.07400000000000001 1956-04-01,7.922000000000001,0.14400000000000002,13.847999999999999,0.165,2.043,0.219,15.029000000000002,0.08199999999999999 1956-05-01,10.720999999999998,0.195,16.734,0.202,5.083,0.236,15.823,0.094 1956-06-01,13.16,0.08900000000000001,18.939,0.204,7.309,0.194,16.472,0.078 1956-07-01,14.18,0.093,19.952,0.115,8.603,0.127,16.830000000000002,0.08199999999999999 1956-08-01,13.189,0.08199999999999999,18.967,0.116,7.512999999999999,0.226,16.605,0.075 1956-09-01,11.783,0.135,17.500999999999998,0.171,5.872000000000001,0.217,16.088,0.081 1956-10-01,8.927999999999997,0.093,14.667,0.153,3.173,0.182,15.159,0.075 1956-11-01,5.7379999999999995,0.134,11.414000000000001,0.196,0.134,0.266,14.261,0.078 1956-12-01,3.5980000000000003,0.109,8.962,0.16,-1.775,0.229,13.704,0.076 1957-01-01,2.488,0.1,8.004999999999999,0.13,-2.97,0.106,13.473,0.073 1957-02-01,3.12,0.108,8.708,0.116,-2.51,0.23,13.804,0.07400000000000001 1957-03-01,5.0360000000000005,0.085,10.986,0.099,-0.9159999999999999,0.189,14.380999999999998,0.07 1957-04-01,8.366,0.187,14.094000000000001,0.09,2.426,0.265,15.324000000000002,0.087 1957-05-01,11.259,0.138,17.054000000000002,0.08199999999999999,5.4300000000000015,0.208,16.215999999999998,0.084 1957-06-01,13.783,0.193,19.473,0.162,7.811,0.152,16.878,0.091 1957-07-01,14.129000000000001,0.204,19.828,0.098,8.382,0.07200000000000001,17.034000000000002,0.095 1957-08-01,14.082,0.252,19.792,0.212,8.263,0.19,17.049,0.101 1957-09-01,12.312000000000001,0.301,18.065,0.115,6.407,0.104,16.38,0.112 1957-10-01,9.496,0.13699999999999998,15.049000000000001,0.127,3.801,0.151,15.463,0.081 1957-11-01,6.391,0.104,11.849,0.156,0.831,0.132,14.515999999999998,0.073 1957-12-01,4.3279999999999985,0.087,9.68,0.058,-0.943,0.07,13.970999999999998,0.07200000000000001 1958-01-01,3.5740000000000003,0.114,8.977,0.063,-1.7720000000000002,0.202,13.880999999999998,0.075 1958-02-01,3.695,0.173,9.546,0.234,-1.949,0.188,14.071000000000002,0.08199999999999999 1958-03-01,5.452999999999999,0.084,11.321,0.173,-0.5489999999999999,0.202,14.547,0.069 1958-04-01,8.52,0.103,14.392000000000001,0.157,2.57,0.083,15.359000000000002,0.073 1958-05-01,11.518999999999998,0.08900000000000001,17.355,0.185,5.625,0.28600000000000003,16.18,0.073 1958-06-01,13.187000000000001,0.106,19.028,0.177,7.427,0.14,16.619,0.07400000000000001 1958-07-01,14.437999999999999,0.199,20.121,0.212,8.839,0.305,17.039,0.093 1958-08-01,13.597000000000001,0.08199999999999999,19.399,0.145,8.048,0.103,16.832,0.07 1958-09-01,11.845,0.07200000000000001,17.549000000000003,0.15,6.204,0.126,16.284000000000002,0.07400000000000001 1958-10-01,9.375,0.092,15.094000000000001,0.105,3.742,0.197,15.437,0.07400000000000001 1958-11-01,6.26,0.06,11.718,0.12,0.746,0.121,14.507,0.067 1958-12-01,3.822,0.078,9.23,0.211,-1.5570000000000002,0.118,13.829,0.07 1959-01-01,2.9589999999999996,0.077,8.389999999999999,0.145,-2.406,0.154,13.636,0.069 1959-02-01,3.33,0.126,9.004,0.136,-2.225,0.129,13.873,0.07200000000000001 1959-03-01,5.854,0.199,11.728,0.157,-0.07100000000000006,0.125,14.612,0.08800000000000001 1959-04-01,8.818999999999997,0.179,14.752,0.27,2.807,0.201,15.439,0.08199999999999999 1959-05-01,11.323,0.062,17.164,0.139,5.5360000000000005,0.172,16.122,0.071 1959-06-01,13.577,0.063,19.379,0.18600000000000005,7.747999999999999,0.12,16.776,0.07 1959-07-01,14.449000000000002,0.131,20.236,0.098,8.854,0.131,17.002,0.08199999999999999 1959-08-01,13.853,0.084,19.532,0.135,8.321,0.081,16.908,0.068 1959-09-01,11.946,0.118,17.663,0.132,6.343999999999999,0.149,16.278,0.07400000000000001 1959-10-01,9.16,0.115,14.767000000000001,0.076,3.5860000000000003,0.233,15.405,0.076 1959-11-01,5.752000000000001,0.077,11.261,0.16899999999999998,0.302,0.119,14.272,0.068 1959-12-01,3.77,0.055,9.122,0.158,-1.493,0.17600000000000002,13.763,0.067 1960-01-01,2.713,0.086,8.222000000000001,0.113,-2.623,0.085,13.553,0.067 1960-02-01,3.798,0.125,9.748,0.081,-1.92,0.274,13.956,0.07 1960-03-01,4.303,0.077,10.216000000000001,0.092,-1.6769999999999998,0.084,14.145,0.066 1960-04-01,8.133,0.08800000000000001,13.955,0.13699999999999998,2.229,0.104,15.19,0.066 1960-05-01,10.872,0.156,16.71,0.256,5.0440000000000005,0.235,15.956,0.079 1960-06-01,13.484000000000002,0.08,19.306,0.227,7.729,0.105,16.67,0.071 1960-07-01,14.198,0.07200000000000001,19.884,0.125,8.491999999999999,0.094,16.985,0.07 1960-08-01,13.825,0.079,19.604,0.177,8.241999999999999,0.165,16.969,0.069 1960-09-01,12.095,0.099,17.855999999999998,0.226,6.497999999999999,0.146,16.382,0.069 1960-10-01,9.497,0.063,15.235,0.08900000000000001,3.8,0.118,15.456,0.068 1960-11-01,5.827999999999999,0.141,11.433,0.126,0.355,0.149,14.312999999999999,0.073 1960-12-01,4.2589999999999995,0.056,9.64,0.14400000000000002,-0.978,0.092,13.927999999999999,0.064 1961-01-01,2.926,0.08900000000000001,8.379999999999999,0.17600000000000002,-2.383,0.129,13.664000000000001,0.064 1961-02-01,3.6830000000000003,0.125,9.299,0.156,-1.895,0.145,14.058,0.067 1961-03-01,5.5889999999999995,0.049,11.478,0.119,-0.2710000000000001,0.121,14.609000000000002,0.062 1961-04-01,8.631,0.116,14.497,0.162,2.8169999999999997,0.153,15.444,0.068 1961-05-01,11.624,0.104,17.592000000000002,0.319,5.729,0.227,16.241,0.071 1961-06-01,13.702,0.154,19.598,0.239,7.796,0.28600000000000003,16.810000000000002,0.079 1961-07-01,14.288,0.079,20.014,0.184,8.664,0.18600000000000005,16.987000000000002,0.071 1961-08-01,13.849,0.142,19.606,0.179,8.229999999999999,0.259,16.917,0.07200000000000001 1961-09-01,12.247,0.069,17.987000000000005,0.121,6.525,0.14300000000000002,16.309,0.063 1961-10-01,9.328,0.138,15.057,0.136,3.508,0.313,15.401,0.071 1961-11-01,6.205,0.06,11.655,0.093,0.74,0.134,14.437000000000001,0.059 1961-12-01,3.5,0.039,9.016,0.105,-1.915,0.085,13.682,0.059 1962-01-01,3.003,0.075,8.657,0.094,-2.5090000000000003,0.083,13.655,0.06 1962-02-01,3.696,0.064,9.547,0.099,-2.045,0.21600000000000005,14.003,0.059 1962-03-01,5.53,0.128,11.537,0.159,-0.416,0.218,14.522,0.069 1962-04-01,8.54,0.17800000000000002,14.472999999999999,0.138,2.576,0.23,15.353,0.076 1962-05-01,11.128,0.062,17.040000000000006,0.152,5.195,0.131,16.041,0.068 1962-06-01,13.427,0.267,19.35,0.272,7.456,0.371,16.679000000000002,0.099 1962-07-01,14.205,0.07400000000000001,20.054,0.14300000000000002,8.451,0.077,16.952,0.068 1962-08-01,13.713,0.103,19.553,0.153,7.940999999999999,0.128,16.830000000000002,0.065 1962-09-01,12.018,0.255,17.845000000000006,0.159,6.313,0.313,16.246,0.094 1962-10-01,9.468,0.202,15.226,0.198,3.7739999999999996,0.32299999999999995,15.429,0.084 1962-11-01,6.2829999999999995,0.119,11.775,0.142,0.7969999999999999,0.207,14.421,0.067 1962-12-01,3.94,0.068,9.425,0.198,-1.4300000000000002,0.156,13.776,0.061 1963-01-01,2.901,0.08,8.671,0.14300000000000002,-2.6790000000000003,0.122,13.594000000000001,0.063 1963-02-01,4.02,0.108,9.95,0.096,-1.685,0.115,14.014,0.064 1963-03-01,5.0969999999999995,0.102,11.043,0.101,-0.895,0.226,14.357000000000001,0.063 1963-04-01,8.173,0.058,13.914000000000001,0.149,2.35,0.1,15.216,0.059 1963-05-01,11.045,0.102,16.819000000000006,0.252,5.234,0.295,16.05,0.069 1963-06-01,13.412,0.097,19.276,0.124,7.604,0.15,16.675,0.068 1963-07-01,14.505999999999998,0.098,20.229,0.104,8.797,0.243,17.089000000000002,0.077 1963-08-01,14.309000000000001,0.061,20.009,0.218,8.471,0.25,17.061,0.07 1963-09-01,12.555,0.126,18.305999999999997,0.182,6.724,0.34700000000000003,16.48,0.075 1963-10-01,9.943,0.099,15.716,0.165,4.3260000000000005,0.109,15.587,0.07400000000000001 1963-11-01,6.561,0.095,12.068,0.205,1.31,0.161,14.58,0.07 1963-12-01,3.75,0.08199999999999999,9.346,0.094,-1.666,0.071,13.817,0.068 1964-01-01,2.881,0.171,8.383999999999999,0.079,-2.5490000000000004,0.161,13.595,0.076 1964-02-01,3.028,0.116,8.791,0.078,-2.613,0.161,13.73,0.064 1964-03-01,4.865,0.076,10.97,0.123,-1.152,0.183,14.255999999999998,0.062 1964-04-01,7.922000000000001,0.077,13.794,0.125,2.1519999999999997,0.145,15.062000000000001,0.063 1964-05-01,10.905,0.084,16.801000000000002,0.221,5.202000000000001,0.139,15.856,0.066 1964-06-01,13.459000000000001,0.068,19.275,0.161,7.536,0.24,16.590999999999998,0.064 1964-07-01,14.300999999999998,0.125,20.065,0.196,8.572000000000001,0.15,16.784000000000002,0.073 1964-08-01,13.677999999999999,0.17800000000000002,19.386,0.241,8.049999999999999,0.305,16.634,0.078 1964-09-01,11.604000000000001,0.065,17.394000000000002,0.173,6.11,0.142,16.002,0.06 1964-10-01,8.831999999999997,0.063,14.654000000000002,0.191,3.218,0.097,15.171,0.061 1964-11-01,5.9830000000000005,0.041,11.609000000000002,0.14,0.483,0.08199999999999999,14.202,0.056 1964-12-01,3.458,0.046,8.759,0.14800000000000002,-1.783,0.079,13.522,0.059 1965-01-01,2.862,0.069,8.418,0.107,-2.526,0.133,13.545,0.061 1965-02-01,3.036,0.084,8.907,0.078,-2.822,0.187,13.698,0.061 1965-03-01,5.182,0.125,11.22,0.146,-0.7350000000000001,0.224,14.285,0.068 1965-04-01,7.989999999999998,0.078,13.841,0.14,2.168,0.123,15.095,0.061 1965-05-01,11.222000000000001,0.174,17.168000000000006,0.32,5.2620000000000005,0.456,16.007,0.079 1965-06-01,13.308,0.223,19.126,0.518,7.483,0.336,16.532,0.087 1965-07-01,14.078,0.139,19.869,0.242,8.376,0.348,16.762,0.076 1965-08-01,13.807,0.086,19.583,0.097,8.184,0.102,16.803,0.065 1965-09-01,11.73,0.083,17.407,0.168,6.096,0.132,16.154,0.064 1965-10-01,9.488,0.07,15.11,0.105,3.8,0.09,15.405999999999999,0.063 1965-11-01,5.86,0.076,11.337,0.184,0.354,0.145,14.287,0.06 1965-12-01,3.766,0.099,9.235,0.109,-1.543,0.066,13.775,0.062 1966-01-01,2.49,0.059,8.049,0.069,-3.0410000000000004,0.098,13.495,0.057 1966-02-01,3.29,0.111,9.004999999999997,0.132,-2.4210000000000003,0.151,13.81,0.062 1966-03-01,5.527,0.125,11.296,0.119,-0.42,0.16,14.445,0.066 1966-04-01,8.161,0.068,13.950999999999999,0.104,2.331,0.106,15.254000000000001,0.059 1966-05-01,11.2,0.064,17.07,0.213,5.189,0.171,15.987,0.061 1966-06-01,13.587,0.161,19.378,0.251,7.723000000000001,0.175,16.692999999999998,0.076 1966-07-01,14.569,0.112,20.392,0.1,8.823,0.126,17.033,0.07 1966-08-01,13.731,0.101,19.627,0.205,8.087,0.111,16.826,0.068 1966-09-01,12.133,0.107,18.028,0.085,6.482,0.135,16.273,0.069 1966-10-01,9.153,0.073,14.777000000000001,0.081,3.555,0.112,15.315,0.061 1966-11-01,5.968999999999999,0.07400000000000001,11.58,0.084,0.41200000000000003,0.134,14.362,0.058 1966-12-01,3.382,0.052000000000000005,8.758,0.084,-1.9269999999999998,0.13,13.683,0.057 1967-01-01,2.71,0.07,8.395,0.062,-2.8689999999999998,0.14,13.527000000000001,0.055 1967-02-01,2.905,0.126,8.619,0.156,-2.772,0.159,13.687999999999999,0.064 1967-03-01,5.396,0.079,11.222000000000001,0.107,-0.35600000000000004,0.075,14.465,0.057 1967-04-01,8.458,0.11,14.376,0.146,2.5,0.228,15.3,0.061 1967-05-01,11.632,0.077,17.505000000000006,0.172,5.784000000000002,0.16699999999999998,16.279,0.061 1967-06-01,13.194,0.071,18.911,0.145,7.445,0.152,16.665000000000006,0.057 1967-07-01,14.331,0.16899999999999998,20.142,0.153,8.706,0.142,16.97,0.078 1967-08-01,13.821,0.107,19.593,0.242,8.171999999999999,0.245,16.84,0.064 1967-09-01,12.053999999999998,0.058,17.852,0.107,6.269,0.166,16.244,0.06 1967-10-01,9.809,0.045,15.479000000000001,0.08,4.178,0.086,15.469,0.056 1967-11-01,6.176,0.042,11.505,0.085,0.8079999999999999,0.147,14.353,0.048 1967-12-01,3.915,0.05,9.279,0.056,-1.4200000000000002,0.114,13.73,0.05 1968-01-01,2.353,0.094,7.866999999999999,0.102,-3.0620000000000003,0.075,13.389000000000001,0.054000000000000006 1968-02-01,3.245,0.124,8.879999999999997,0.098,-2.319,0.08199999999999999,13.724,0.059 1968-03-01,6.117000000000001,0.069,11.907,0.126,0.2849999999999999,0.068,14.581,0.052000000000000005 1968-04-01,8.455,0.14300000000000002,14.427,0.115,2.596,0.281,15.261,0.064 1968-05-01,11.068,0.111,16.76,0.16,5.176,0.201,15.99,0.062 1968-06-01,13.204,0.187,18.873,0.16,7.318,0.213,16.695999999999998,0.073 1968-07-01,14.026,0.08900000000000001,19.734,0.13699999999999998,8.431000000000001,0.105,16.887,0.058 1968-08-01,13.524000000000001,0.08,19.238,0.079,7.891999999999999,0.14,16.794,0.057 1968-09-01,11.62,0.19,17.348000000000006,0.223,5.942,0.152,16.155,0.076 1968-10-01,9.453,0.138,15.085999999999999,0.127,3.787,0.263,15.481,0.066 1968-11-01,5.891,0.062,11.3,0.105,0.35700000000000004,0.135,14.418,0.051 1968-12-01,3.24,0.053,8.551,0.135,-2.116,0.103,13.790999999999999,0.05 1969-01-01,1.966,0.053,7.228999999999999,0.091,-3.298,0.116,13.518,0.048 1969-02-01,2.45,0.092,7.9689999999999985,0.126,-3.1910000000000003,0.151,13.747,0.052000000000000005 1969-03-01,5.131,0.106,11.018,0.106,-0.8240000000000001,0.213,14.576,0.056 1969-04-01,8.575999999999999,0.125,14.286,0.201,2.69,0.237,15.518,0.062 1969-05-01,11.354000000000001,0.077,17.064,0.157,5.565,0.241,16.329,0.053 1969-06-01,13.475,0.119,19.208,0.256,7.568,0.34,16.830000000000002,0.062 1969-07-01,14.218,0.109,20.024,0.226,8.666,0.163,16.924,0.059 1969-08-01,13.804,0.08,19.628,0.16,8.123999999999999,0.224,16.945,0.056 1969-09-01,12.048,0.057,17.67,0.112,6.421,0.141,16.337,0.053 1969-10-01,9.489,0.065,14.888,0.155,4.05,0.269,15.445,0.056 1969-11-01,6.42,0.053,11.974,0.125,0.9229999999999999,0.141,14.524,0.051 1969-12-01,4.21,0.086,9.587,0.103,-1.139,0.113,13.993,0.054000000000000006 1970-01-01,2.8360000000000003,0.084,8.288,0.117,-2.5839999999999996,0.099,13.711,0.052000000000000005 1970-02-01,3.735,0.08199999999999999,9.543,0.108,-2.02,0.127,14.022,0.053 1970-03-01,5.272,0.114,11.066,0.18,-0.545,0.211,14.503,0.058 1970-04-01,8.603,0.066,14.383,0.179,2.739,0.113,15.44,0.051 1970-05-01,11.206,0.099,17.165000000000006,0.121,5.402,0.107,16.104,0.055 1970-06-01,13.513,0.086,19.368,0.203,7.599,0.189,16.672,0.056 1970-07-01,14.395,0.1,20.254,0.114,8.722999999999999,0.099,16.912,0.058 1970-08-01,13.658,0.062,19.43,0.179,8.097000000000001,0.122,16.748,0.052000000000000005 1970-09-01,12.277000000000001,0.063,17.879,0.08900000000000001,6.62,0.124,16.335,0.055 1970-10-01,9.348,0.042,14.96,0.08900000000000001,3.787,0.103,15.42,0.051 1970-11-01,6.047000000000001,0.059,11.562000000000001,0.109,0.524,0.08199999999999999,14.418,0.05 1970-12-01,3.5210000000000004,0.05,8.941,0.094,-1.829,0.084,13.707,0.048 1971-01-01,2.967,0.101,8.530999999999999,0.122,-2.531,0.125,13.615,0.054000000000000006 1971-02-01,2.867,0.17,8.578999999999999,0.145,-2.7230000000000003,0.199,13.627,0.067 1971-03-01,5.001,0.063,10.967,0.154,-0.8960000000000001,0.11,14.254000000000001,0.049 1971-04-01,8.338999999999999,0.067,14.267000000000001,0.09,2.516,0.251,15.227,0.049 1971-05-01,11.211,0.112,17.186,0.12,5.3839999999999995,0.159,15.963,0.058 1971-06-01,13.099,0.104,18.992,0.227,7.436,0.126,16.539,0.059 1971-07-01,14.139000000000001,0.106,19.984,0.142,8.511000000000001,0.125,16.846,0.061 1971-08-01,13.879000000000001,0.076,19.593,0.122,8.085999999999999,0.08199999999999999,16.752,0.056 1971-09-01,12.139000000000001,0.129,17.918000000000006,0.317,6.462999999999999,0.303,16.22,0.062 1971-10-01,9.388,0.106,15.146,0.127,3.8089999999999997,0.16,15.298,0.056 1971-11-01,6.295,0.076,11.842,0.112,0.9309999999999999,0.131,14.399,0.052000000000000005 1971-12-01,3.867,0.065,9.228,0.118,-1.439,0.126,13.66,0.051 1972-01-01,1.882,0.086,7.391999999999999,0.14300000000000002,-3.5490000000000004,0.205,13.298,0.053 1972-02-01,2.609,0.105,8.219,0.113,-3.115,0.199,13.644,0.054000000000000006 1972-03-01,5.287000000000001,0.05,11.169,0.087,-0.672,0.152,14.446,0.048 1972-04-01,8.337,0.067,14.148,0.123,2.498,0.11,15.291,0.051 1972-05-01,11.155,0.091,16.968,0.125,5.3610000000000015,0.196,16.095,0.058 1972-06-01,13.501,0.113,19.231,0.156,7.627000000000002,0.127,16.729000000000006,0.061 1972-07-01,14.231,0.118,20.037,0.123,8.568,0.104,16.956,0.063 1972-08-01,14.171,0.096,19.88,0.154,8.386000000000001,0.19,16.977999999999998,0.057 1972-09-01,11.901,0.126,17.529000000000003,0.2,6.166,0.217,16.27,0.061 1972-10-01,9.346,0.141,15.057,0.198,3.84,0.232,15.437999999999999,0.064 1972-11-01,5.7970000000000015,0.079,11.167,0.094,0.52,0.129,14.419,0.05 1972-12-01,3.778,0.07200000000000001,9.182,0.181,-1.492,0.084,13.950999999999999,0.05 1973-01-01,3.0380000000000003,0.092,8.491999999999999,0.152,-2.3080000000000003,0.104,13.774000000000001,0.052000000000000005 1973-02-01,3.898,0.161,9.496,0.135,-1.6540000000000004,0.087,14.14,0.064 1973-03-01,5.82,0.096,11.605,0.212,0.109,0.142,14.663,0.052000000000000005 1973-04-01,8.937999999999997,0.103,14.51,0.108,3.1069999999999998,0.106,15.528,0.055 1973-05-01,11.768999999999998,0.08199999999999999,17.417,0.158,5.926,0.16399999999999998,16.288,0.053 1973-06-01,13.824000000000002,0.085,19.497,0.126,8.155000000000001,0.122,16.795,0.052000000000000005 1973-07-01,14.435,0.129,20.112,0.093,8.988999999999997,0.11,17.002,0.061 1973-08-01,13.869000000000002,0.151,19.707,0.149,8.427,0.133,16.889,0.062 1973-09-01,12.125,0.081,17.815,0.168,6.504,0.102,16.267,0.054000000000000006 1973-10-01,9.609,0.064,15.182,0.111,3.9130000000000003,0.095,15.419,0.053 1973-11-01,6.222,0.083,11.667,0.052000000000000005,0.7879999999999999,0.202,14.380999999999998,0.05 1973-12-01,3.832,0.08199999999999999,9.292,0.111,-1.514,0.073,13.710999999999999,0.051 1974-01-01,2.261,0.096,7.463999999999999,0.109,-2.8939999999999997,0.096,13.3,0.052000000000000005 1974-02-01,2.582,0.127,8.118,0.093,-2.926,0.07400000000000001,13.49,0.057 1974-03-01,5.19,0.114,10.966,0.134,-0.4950000000000001,0.098,14.267000000000001,0.054000000000000006 1974-04-01,8.386000000000001,0.091,14.179,0.078,2.59,0.117,15.182,0.053 1974-05-01,11.198,0.087,16.932000000000002,0.121,5.4700000000000015,0.093,15.957,0.053 1974-06-01,13.382,0.131,19.235,0.099,7.591,0.085,16.616,0.063 1974-07-01,14.288,0.059,19.925,0.128,8.654,0.109,16.846,0.053 1974-08-01,14.015999999999998,0.105,19.652,0.158,8.391,0.13,16.912,0.06 1974-09-01,11.744000000000002,0.135,17.430000000000003,0.18,6.14,0.22,16.197,0.065 1974-10-01,9.098,0.059,14.884,0.079,3.423,0.112,15.274,0.051 1974-11-01,5.915,0.123,11.459000000000001,0.138,0.389,0.163,14.32,0.057 1974-12-01,3.55,0.127,8.738999999999999,0.155,-1.5219999999999998,0.126,13.655999999999999,0.057 1975-01-01,3.0589999999999997,0.078,8.484,0.071,-2.2569999999999997,0.121,13.621,0.051 1975-02-01,3.395,0.107,9.026,0.133,-2.096,0.095,13.857,0.053 1975-03-01,5.706,0.07,11.384,0.103,-0.15000000000000002,0.098,14.538,0.048 1975-04-01,8.584,0.066,14.399000000000001,0.066,2.8819999999999997,0.08800000000000001,15.297,0.049 1975-05-01,11.742,0.087,17.484,0.198,5.8420000000000005,0.145,16.136,0.054000000000000006 1975-06-01,13.557,0.109,19.275,0.161,7.796,0.197,16.682000000000002,0.057 1975-07-01,14.350999999999999,0.096,20.051,0.18,8.637,0.141,16.877,0.059 1975-08-01,13.514000000000001,0.219,19.248,0.244,7.891999999999999,0.107,16.665,0.079 1975-09-01,12.152000000000001,0.127,17.804000000000006,0.115,6.54,0.096,16.215999999999998,0.061 1975-10-01,9.318,0.064,14.908,0.154,3.6710000000000003,0.215,15.292,0.053 1975-11-01,5.893,0.056,11.462,0.086,0.332,0.127,14.126,0.049 1975-12-01,3.667,0.086,9.079,0.08800000000000001,-1.636,0.103,13.557,0.051 1976-01-01,2.884,0.068,8.398,0.079,-2.452,0.11,13.442,0.05 1976-02-01,3.031,0.069,8.509,0.104,-2.443,0.094,13.619000000000002,0.05 1976-03-01,4.5169999999999995,0.06,10.305,0.08199999999999999,-1.2040000000000002,0.08199999999999999,14.124,0.049 1976-04-01,8.293999999999999,0.086,14.177,0.132,2.489,0.106,15.135,0.053 1976-05-01,10.941999999999998,0.163,16.727999999999998,0.149,5.176,0.108,15.777999999999999,0.067 1976-06-01,13.086,0.103,18.954,0.173,7.3450000000000015,0.13,16.448,0.06 1976-07-01,14.155,0.18,19.852,0.245,8.349,0.221,16.864,0.073 1976-08-01,13.511,0.17,19.163,0.234,7.645999999999999,0.222,16.671,0.07200000000000001 1976-09-01,11.895,0.053,17.740000000000006,0.079,6.197,0.1,16.185,0.056 1976-10-01,8.511000000000001,0.111,14.027999999999999,0.253,3.113,0.22,15.167,0.059 1976-11-01,5.66,0.062,11.156,0.124,0.302,0.16399999999999998,14.299000000000001,0.05 1976-12-01,3.681,0.08199999999999999,9.086,0.155,-1.7080000000000002,0.16,13.841,0.05 1977-01-01,2.492,0.087,7.7639999999999985,0.197,-2.648,0.16,13.646999999999998,0.05 1977-02-01,3.471,0.12,9.135,0.08800000000000001,-2.1519999999999997,0.145,14.001,0.056 1977-03-01,5.702000000000001,0.11,11.581,0.123,-0.03500000000000003,0.168,14.639000000000001,0.055 1977-04-01,8.85,0.064,14.751,0.092,3.0580000000000003,0.081,15.47,0.049 1977-05-01,11.78,0.133,17.594,0.163,6.0089999999999995,0.227,16.285999999999998,0.061 1977-06-01,13.876,0.11,19.628,0.173,8.058,0.184,16.846,0.056 1977-07-01,14.630999999999998,0.111,20.327,0.122,8.971,0.206,17.047,0.06 1977-08-01,14.09,0.078,19.673,0.162,8.463999999999999,0.134,16.979,0.053 1977-09-01,11.861999999999998,0.065,17.535,0.073,6.35,0.111,16.312,0.054000000000000006 1977-10-01,9.156,0.041,14.875,0.106,3.5860000000000003,0.09,15.387,0.049 1977-11-01,6.5440000000000005,0.062,11.962,0.101,1.2590000000000001,0.07,14.544,0.048 1977-12-01,3.7489999999999997,0.035,9.001,0.1,-1.385,0.139,13.741,0.045 1978-01-01,2.705,0.095,8.006,0.078,-2.52,0.078,13.587,0.054000000000000006 1978-02-01,3.4560000000000004,0.13699999999999998,9.006,0.2,-2.149,0.2,13.904000000000002,0.06 1978-03-01,5.607,0.097,11.344000000000001,0.055,-0.07400000000000001,0.174,14.555,0.052000000000000005 1978-04-01,8.790999999999999,0.08800000000000001,14.628,0.344,3.0839999999999996,0.416,15.372,0.05 1978-05-01,11.414000000000001,0.139,17.131,0.236,5.723000000000001,0.314,16.101,0.061 1978-06-01,13.22,0.106,18.891,0.16399999999999998,7.715000000000002,0.213,16.601000000000006,0.057 1978-07-01,14.364,0.158,19.910999999999998,0.132,8.894,0.237,16.935,0.067 1978-08-01,13.297,0.099,18.974,0.155,7.680999999999999,0.173,16.623,0.056 1978-09-01,12.03,0.096,17.64,0.16399999999999998,6.431,0.127,16.281,0.058 1978-10-01,9.339,0.08199999999999999,14.964,0.145,3.803,0.15,15.337,0.054000000000000006 1978-11-01,6.3500000000000005,0.081,11.685,0.112,1.08,0.126,14.522,0.05 1978-12-01,3.74,0.068,9.195,0.085,-1.617,0.093,13.793,0.047 1979-01-01,2.6790000000000003,0.083,8.071,0.125,-2.625,0.1,13.63,0.048 1979-02-01,2.841,0.08900000000000001,8.525,0.076,-2.7590000000000003,0.147,13.767999999999999,0.047 1979-03-01,5.474,0.102,11.331,0.187,-0.129,0.272,14.565,0.051 1979-04-01,8.455,0.078,14.273,0.258,2.623,0.303,15.390999999999998,0.046 1979-05-01,11.199000000000002,0.149,17.139000000000006,0.198,5.7120000000000015,0.212,16.076,0.058 1979-06-01,13.487,0.067,19.366,0.213,7.818,0.215,16.772000000000002,0.043 1979-07-01,14.114,0.054000000000000006,19.945,0.109,8.491,0.117,16.992,0.042 1979-08-01,13.833,0.087,19.623,0.16,8.266,0.181,16.977999999999998,0.046 1979-09-01,12.247,0.091,18.059,0.18,6.7139999999999995,0.24,16.45,0.048 1979-10-01,9.586,0.09,15.354000000000001,0.116,4.053999999999999,0.125,15.557,0.049 1979-11-01,6.2860000000000005,0.079,11.807,0.13,0.905,0.051,14.609000000000002,0.047 1979-12-01,4.6,0.068,10.0,0.115,-0.6690000000000002,0.051,14.182,0.045 1980-01-01,2.9560000000000004,0.087,8.468,0.08,-2.4570000000000003,0.124,13.812000000000001,0.049 1980-02-01,3.6519999999999997,0.099,9.26,0.129,-1.864,0.115,14.112,0.05 1980-03-01,5.367000000000001,0.103,11.239999999999998,0.16,-0.379,0.126,14.646,0.052000000000000005 1980-04-01,8.934999999999997,0.106,14.821,0.129,3.109,0.175,15.578,0.052000000000000005 1980-05-01,11.77,0.08900000000000001,17.713,0.234,6.131,0.172,16.314,0.05 1980-06-01,13.582,0.134,19.375,0.185,7.901000000000002,0.299,16.805999999999997,0.058 1980-07-01,14.742,0.14400000000000002,20.465999999999998,0.179,9.102,0.214,17.171,0.06 1980-08-01,14.189,0.221,19.814,0.117,8.562999999999999,0.08900000000000001,17.049,0.077 1980-09-01,12.321,0.08,18.121,0.152,6.642,0.146,16.427,0.051 1980-10-01,9.55,0.064,15.17,0.118,4.051,0.112,15.45,0.048 1980-11-01,6.684,0.094,12.196,0.183,1.334,0.14300000000000002,14.645,0.051 1980-12-01,4.016,0.059,9.431000000000001,0.165,-1.277,0.086,13.892000000000001,0.046 1981-01-01,3.785,0.121,9.267000000000001,0.193,-1.2980000000000005,0.153,13.963,0.055 1981-02-01,4.021,0.139,9.689,0.133,-1.41,0.119,14.073,0.059 1981-03-01,6.239,0.035,12.05,0.063,0.5539999999999999,0.161,14.769,0.045 1981-04-01,8.953,0.08,14.817,0.206,3.1310000000000002,0.25,15.432,0.05 1981-05-01,11.565,0.084,17.471,0.33,5.901000000000002,0.345,16.198,0.049 1981-06-01,13.765,0.122,19.611,0.126,8.065,0.14800000000000002,16.932000000000002,0.058 1981-07-01,14.738,0.08199999999999999,20.398,0.122,9.208,0.132,17.217,0.054000000000000006 1981-08-01,14.502,0.099,20.293,0.092,8.976999999999997,0.081,17.123,0.055 1981-09-01,12.236,0.118,17.950000000000006,0.098,6.646,0.139,16.465999999999998,0.058 1981-10-01,9.394,0.059,14.979000000000001,0.096,3.765,0.066,15.453,0.05 1981-11-01,6.273,0.058,11.669,0.114,0.97,0.099,14.47,0.047 1981-12-01,4.519,0.05,10.068,0.094,-0.878,0.076,14.097999999999999,0.048 1982-01-01,2.5580000000000003,0.08,8.09,0.13,-2.7769999999999997,0.097,13.587,0.053 1982-02-01,3.281,0.077,8.843,0.076,-2.075,0.07,13.852,0.053 1982-03-01,4.873,0.087,10.667,0.139,-0.722,0.13699999999999998,14.337,0.054000000000000006 1982-04-01,8.465,0.093,14.388,0.223,2.89,0.433,15.33,0.054000000000000006 1982-05-01,11.348,0.09,17.149,0.305,5.727,0.28300000000000003,16.144000000000002,0.054000000000000006 1982-06-01,13.245,0.071,19.083,0.234,7.556,0.251,16.625,0.053 1982-07-01,14.545,0.073,20.311,0.301,9.019,0.397,17.0,0.058 1982-08-01,13.796,0.067,19.534000000000002,0.166,8.465,0.217,16.867,0.054000000000000006 1982-09-01,12.039000000000001,0.067,17.75,0.155,6.675,0.213,16.354,0.055 1982-10-01,9.232000000000001,0.066,14.845,0.129,3.917,0.139,15.493,0.054000000000000006 1982-11-01,5.961,0.111,11.314,0.117,0.909,0.184,14.446,0.057 1982-12-01,4.327,0.11,9.637,0.077,-0.7050000000000001,0.064,14.068,0.058 1983-01-01,3.4450000000000003,0.115,8.747,0.084,-1.65,0.08,13.979000000000001,0.057 1983-02-01,3.8139999999999996,0.173,9.427,0.08800000000000001,-1.5919999999999999,0.085,14.169,0.068 1983-03-01,5.699,0.09,11.503,0.055,0.09699999999999998,0.091,14.683,0.053 1983-04-01,8.693,0.05,14.45,0.092,3.053,0.134,15.468,0.048 1983-05-01,11.729000000000001,0.106,17.477,0.136,6.144,0.187,16.34,0.056 1983-06-01,13.478,0.124,19.217,0.147,7.819,0.17,16.785999999999998,0.061 1983-07-01,14.408,0.07,20.139,0.138,8.829,0.115,17.067999999999998,0.054000000000000006 1983-08-01,14.302,0.061,20.105,0.177,8.729,0.1,17.145,0.052000000000000005 1983-09-01,12.698,0.098,18.412000000000006,0.093,7.08,0.16,16.573,0.059 1983-10-01,9.478,0.096,15.097000000000001,0.08800000000000001,4.011,0.155,15.498,0.058 1983-11-01,6.7650000000000015,0.091,12.334000000000001,0.151,1.4209999999999998,0.134,14.648,0.054000000000000006 1983-12-01,3.829,0.054000000000000006,9.25,0.127,-1.3119999999999998,0.08,13.886,0.05 1984-01-01,2.9410000000000003,0.081,8.338,0.111,-2.2350000000000003,0.085,13.701,0.052000000000000005 1984-02-01,3.093,0.101,8.786,0.136,-2.452,0.16899999999999998,13.878,0.056 1984-03-01,5.671,0.084,11.541,0.1,-0.07800000000000001,0.06,14.608,0.056 1984-04-01,8.431999999999999,0.163,14.335,0.23,2.608,0.209,15.37,0.068 1984-05-01,11.976,0.061,17.860000000000007,0.115,6.211,0.138,16.294999999999998,0.052000000000000005 1984-06-01,13.387,0.191,19.05,0.127,7.662000000000001,0.16699999999999998,16.668000000000006,0.073 1984-07-01,14.429,0.13699999999999998,20.109,0.075,8.958,0.191,16.961000000000002,0.063 1984-08-01,13.984000000000002,0.085,19.83,0.235,8.33,0.151,16.972,0.054000000000000006 1984-09-01,12.015,0.07400000000000001,17.718,0.098,6.5,0.096,16.385,0.053 1984-10-01,9.378,0.08199999999999999,14.890999999999998,0.066,4.015,0.101,15.368,0.054000000000000006 1984-11-01,5.811,0.106,11.243,0.166,0.602,0.08800000000000001,14.32,0.055 1984-12-01,3.185,0.066,8.411,0.15,-1.88,0.109,13.604,0.05 1985-01-01,3.01,0.08199999999999999,8.385,0.122,-2.22,0.063,13.678,0.052000000000000005 1985-02-01,2.704,0.085,8.322000000000001,0.117,-2.853,0.08,13.731,0.051 1985-03-01,5.4510000000000005,0.06,11.194,0.087,-0.133,0.086,14.526,0.05 1985-04-01,8.633,0.085,14.421,0.085,2.905,0.113,15.356,0.054000000000000006 1985-05-01,11.425999999999998,0.066,17.203000000000007,0.117,5.756,0.119,16.136,0.05 1985-06-01,13.569,0.187,19.396,0.24,7.9079999999999995,0.146,16.713,0.07 1985-07-01,13.972999999999999,0.087,19.711,0.113,8.362,0.141,16.906,0.051 1985-08-01,14.059000000000001,0.087,19.757,0.113,8.514999999999999,0.092,17.012999999999998,0.05 1985-09-01,11.98,0.08,17.634,0.138,6.482,0.135,16.357,0.054000000000000006 1985-10-01,9.338,0.08900000000000001,14.808,0.048,4.051,0.099,15.475999999999999,0.054000000000000006 1985-11-01,5.968,0.104,11.331,0.102,0.703,0.107,14.388,0.055 1985-12-01,3.785,0.107,9.044,0.154,-1.368,0.084,13.808,0.056 1986-01-01,3.315,0.117,8.818,0.071,-2.011,0.076,13.724,0.057 1986-02-01,3.991,0.113,9.699,0.202,-1.6370000000000002,0.092,14.084,0.056 1986-03-01,5.755,0.048,11.629000000000001,0.077,0.015000000000000013,0.055,14.608,0.049 1986-04-01,8.870999999999997,0.086,14.772,0.206,3.105,0.062,15.452,0.054000000000000006 1986-05-01,11.581,0.066,17.393,0.108,5.888999999999999,0.17800000000000002,16.163,0.049 1986-06-01,13.439,0.06,19.211,0.191,7.7200000000000015,0.192,16.695999999999998,0.05 1986-07-01,14.293,0.06,19.987,0.1,8.738999999999999,0.115,16.991,0.05 1986-08-01,13.972000000000001,0.059,19.874000000000002,0.099,8.433,0.141,16.938,0.05 1986-09-01,11.816999999999998,0.14300000000000002,17.713,0.106,6.395,0.274,16.285,0.063 1986-10-01,9.299,0.096,14.803,0.14800000000000002,3.8810000000000002,0.157,15.455,0.054000000000000006 1986-11-01,5.9190000000000005,0.1,11.232000000000001,0.063,0.7020000000000001,0.092,14.407,0.055 1986-12-01,3.7510000000000003,0.07200000000000001,9.071,0.075,-1.399,0.105,13.805,0.052000000000000005 1987-01-01,3.139,0.115,8.700999999999999,0.08199999999999999,-2.3440000000000003,0.109,13.758,0.058 1987-02-01,4.1339999999999995,0.091,9.792,0.105,-1.3659999999999999,0.092,14.161,0.053 1987-03-01,5.245,0.076,11.203,0.07400000000000001,-0.467,0.084,14.538,0.051 1987-04-01,8.594999999999999,0.078,14.69,0.083,2.835,0.22,15.447000000000001,0.052000000000000005 1987-05-01,11.525,0.065,17.315,0.13,5.797999999999999,0.136,16.252,0.051 1987-06-01,13.927,0.068,19.661,0.146,8.105,0.126,16.900000000000002,0.051 1987-07-01,14.89,0.14400000000000002,20.666999999999998,0.105,9.326,0.196,17.296,0.063 1987-08-01,13.895999999999999,0.127,19.632,0.147,8.319999999999999,0.227,17.061,0.06 1987-09-01,12.447000000000001,0.075,18.226000000000006,0.13,6.877999999999999,0.218,16.569000000000003,0.053 1987-10-01,9.59,0.077,15.136,0.081,4.093999999999999,0.08900000000000001,15.620999999999999,0.051 1987-11-01,6.056,0.052000000000000005,11.518,0.161,0.71,0.131,14.561,0.049 1987-12-01,4.489,0.054000000000000006,9.857000000000001,0.085,-0.7120000000000001,0.107,14.13,0.048 1988-01-01,3.4539999999999997,0.07,8.863999999999997,0.12,-1.798,0.09,13.978,0.052000000000000005 1988-02-01,3.4219999999999997,0.095,9.094,0.093,-2.031,0.075,14.064,0.052000000000000005 1988-03-01,5.931,0.085,11.817,0.093,0.3659999999999999,0.13699999999999998,14.778,0.054000000000000006 1988-04-01,8.991999999999997,0.066,14.978,0.118,3.2889999999999997,0.087,15.593,0.051 1988-05-01,11.852,0.091,17.676000000000005,0.062,6.143000000000002,0.2,16.348,0.054000000000000006 1988-06-01,14.099,0.098,19.974,0.16,8.356,0.085,16.976000000000006,0.057 1988-07-01,14.798,0.068,20.465999999999998,0.168,9.186,0.125,17.179000000000002,0.051 1988-08-01,14.552999999999999,0.122,20.124000000000002,0.255,8.905,0.157,17.173000000000002,0.059 1988-09-01,12.681,0.07200000000000001,18.424000000000003,0.141,7.08,0.079,16.553,0.053 1988-10-01,9.979,0.062,15.719000000000001,0.194,4.363,0.151,15.639,0.052000000000000005 1988-11-01,6.295,0.07400000000000001,11.837,0.081,0.841,0.07400000000000001,14.465,0.052000000000000005 1988-12-01,4.363,0.058,9.707,0.119,-0.8520000000000001,0.078,13.923,0.052000000000000005 1989-01-01,2.71,0.108,8.094999999999999,0.118,-2.5980000000000003,0.118,13.566,0.058 1989-02-01,3.627,0.095,9.3,0.067,-1.924,0.08800000000000001,13.978000000000002,0.055 1989-03-01,5.792000000000001,0.099,11.628,0.07,0.1309999999999999,0.17,14.607000000000001,0.057 1989-04-01,8.689,0.104,14.540999999999999,0.08900000000000001,2.737,0.147,15.422,0.057 1989-05-01,11.28,0.094,17.105,0.208,5.4940000000000015,0.13,16.121,0.056 1989-06-01,13.447000000000001,0.126,19.25,0.183,7.871,0.13,16.725,0.063 1989-07-01,14.612,0.084,20.361,0.079,8.988999999999997,0.102,17.150000000000002,0.058 1989-08-01,14.135,0.064,19.987000000000002,0.152,8.594999999999999,0.145,17.051000000000002,0.052000000000000005 1989-09-01,12.403,0.101,18.198,0.105,6.675,0.15,16.5,0.059 1989-10-01,9.76,0.061,15.473,0.13,4.1,0.212,15.597,0.051 1989-11-01,6.178999999999999,0.06,11.718,0.086,0.7490000000000001,0.062,14.524,0.052000000000000005 1989-12-01,4.43,0.06,9.802,0.055,-0.8070000000000002,0.096,14.058,0.053 1990-01-01,3.2430000000000003,0.09,8.556999999999999,0.099,-1.9390000000000005,0.075,13.890999999999998,0.057 1990-02-01,3.6430000000000002,0.087,9.225,0.111,-1.7950000000000002,0.07,14.142999999999999,0.056 1990-03-01,6.73,0.099,12.658,0.179,1.0359999999999998,0.094,15.005,0.058 1990-04-01,9.169,0.059,15.058,0.084,3.373,0.125,15.683,0.052000000000000005 1990-05-01,11.831,0.071,17.642000000000003,0.234,6.086,0.237,16.397000000000002,0.054000000000000006 1990-06-01,13.893,0.087,19.786,0.16399999999999998,8.167,0.129,16.995,0.054000000000000006 1990-07-01,14.784,0.14,20.401,0.105,9.158,0.085,17.246000000000002,0.065 1990-08-01,14.095,0.05,19.956,0.221,8.514,0.162,17.11,0.054000000000000006 1990-09-01,12.195,0.106,17.993000000000006,0.08900000000000001,6.597,0.209,16.465,0.063 1990-10-01,9.882,0.036000000000000004,15.72,0.125,4.285,0.125,15.747,0.053 1990-11-01,6.92,0.132,12.561,0.09,1.345,0.07200000000000001,14.77,0.065 1990-12-01,4.425,0.079,9.935,0.057,-0.9220000000000002,0.054000000000000006,14.1,0.056 1991-01-01,3.1950000000000003,0.066,8.506,0.044,-1.9070000000000005,0.114,13.859000000000002,0.056 1991-02-01,4.0440000000000005,0.087,9.774,0.07400000000000001,-1.499,0.098,14.200999999999999,0.057 1991-03-01,5.574,0.076,11.411,0.106,-0.129,0.13,14.689,0.056 1991-04-01,9.226,0.04,15.123,0.09,3.4139999999999997,0.159,15.716,0.055 1991-05-01,11.616,0.062,17.441000000000006,0.105,6.0089999999999995,0.114,16.37,0.054000000000000006 1991-06-01,14.263,0.07400000000000001,19.903,0.124,8.509,0.07200000000000001,17.052,0.057 1991-07-01,14.987,0.055,20.643,0.106,9.273,0.142,17.348,0.053 1991-08-01,14.319,0.057,20.036,0.086,8.61,0.111,17.163,0.055 1991-09-01,12.677,0.053,18.539,0.235,7.004,0.084,16.572,0.056 1991-10-01,9.753,0.064,15.553,0.066,4.122,0.095,15.619000000000002,0.055 1991-11-01,6.44,0.07,11.862,0.101,1.121,0.08800000000000001,14.607000000000001,0.055 1991-12-01,4.059,0.041,9.283999999999999,0.078,-1.061,0.061,13.98,0.052000000000000005 1992-01-01,3.5789999999999997,0.084,8.914,0.1,-1.6550000000000002,0.093,13.961,0.058 1992-02-01,3.931,0.14800000000000002,9.491,0.116,-1.5950000000000002,0.087,14.181,0.067 1992-03-01,5.952000000000001,0.069,11.692,0.064,0.2529999999999999,0.086,14.771,0.056 1992-04-01,8.572000000000001,0.061,14.366,0.075,2.785,0.1,15.51,0.055 1992-05-01,11.534999999999998,0.073,17.346,0.095,5.796,0.184,16.319000000000003,0.059 1992-06-01,13.576,0.066,19.36,0.094,7.818,0.075,16.886000000000006,0.058 1992-07-01,14.139000000000001,0.081,19.852999999999998,0.083,8.421,0.08199999999999999,17.000999999999998,0.057 1992-08-01,13.765999999999998,0.084,19.435,0.162,8.130999999999998,0.13,16.900000000000002,0.057 1992-09-01,11.672,0.049,17.289,0.122,6.132000000000001,0.14,16.243,0.053 1992-10-01,9.353,0.047,15.152000000000001,0.058,3.676,0.061,15.419,0.054000000000000006 1992-11-01,5.888999999999999,0.083,11.303,0.062,0.463,0.066,14.343,0.056 1992-12-01,4.075,0.155,9.455,0.157,-1.0630000000000002,0.126,13.902,0.068 1993-01-01,3.301,0.096,8.666,0.065,-1.9190000000000005,0.076,13.896,0.062 1993-02-01,3.745,0.097,9.42,0.081,-1.7440000000000002,0.054000000000000006,14.085,0.06 1993-03-01,5.922999999999999,0.094,11.791,0.085,0.1409999999999999,0.07400000000000001,14.725,0.061 1993-04-01,8.69,0.046,14.585,0.116,2.823,0.13699999999999998,15.482000000000001,0.055 1993-05-01,11.475,0.056,17.289,0.084,5.6739999999999995,0.124,16.230999999999998,0.056 1993-06-01,13.518,0.075,19.292,0.094,7.767,0.146,16.859,0.058 1993-07-01,14.595,0.11,20.227999999999998,0.062,8.947000000000001,0.174,17.155,0.062 1993-08-01,13.835,0.065,19.584,0.066,8.228,0.108,16.926000000000002,0.058 1993-09-01,11.93,0.102,17.639000000000006,0.06,6.287000000000001,0.121,16.381,0.062 1993-10-01,9.614,0.064,15.294,0.061,3.987,0.047,15.543,0.058 1993-11-01,5.7379999999999995,0.09,11.091,0.098,0.3629999999999999,0.07,14.41,0.059 1993-12-01,4.035,0.081,9.357999999999999,0.07,-1.139,0.145,13.904000000000002,0.059 1994-01-01,3.0239999999999996,0.063,8.336,0.107,-2.274,0.099,13.731,0.057 1994-02-01,2.81,0.105,8.594,0.093,-2.768,0.094,13.773,0.062 1994-03-01,5.731,0.071,11.662999999999998,0.083,-0.13100000000000006,0.119,14.713,0.058 1994-04-01,9.018,0.044,14.960999999999999,0.16,3.162,0.191,15.584000000000001,0.057 1994-05-01,11.684000000000001,0.08,17.582,0.106,5.682,0.092,16.348,0.06 1994-06-01,14.144,0.087,19.932000000000002,0.099,8.288,0.109,17.021,0.061 1994-07-01,14.658,0.076,20.421,0.111,8.947000000000001,0.145,17.183,0.059 1994-08-01,13.977,0.051,19.808,0.087,8.274,0.173,17.035999999999998,0.055 1994-09-01,12.515999999999998,0.068,18.335,0.123,6.821000000000001,0.159,16.498,0.058 1994-10-01,10.002,0.077,15.606,0.093,4.543,0.166,15.743,0.06 1994-11-01,6.787999999999999,0.064,12.2,0.091,1.311,0.11,14.754000000000001,0.056 1994-12-01,4.113,0.065,9.312999999999999,0.158,-1.102,0.064,14.036,0.06 1995-01-01,3.54,0.057,8.895,0.151,-1.769,0.173,13.945,0.06 1995-02-01,4.656000000000001,0.083,10.257,0.145,-0.8790000000000002,0.127,14.388,0.062 1995-03-01,5.956,0.077,11.784,0.165,0.265,0.108,14.783,0.061 1995-04-01,8.972000000000001,0.078,14.839,0.122,3.162,0.17,15.587,0.061 1995-05-01,11.57,0.063,17.301000000000002,0.121,5.758000000000001,0.222,16.279,0.057 1995-06-01,14.164000000000001,0.08800000000000001,20.115,0.18600000000000005,8.232000000000001,0.053,17.008000000000006,0.061 1995-07-01,15.116,0.079,20.803,0.185,9.331,0.168,17.375,0.061 1995-08-01,14.636,0.08800000000000001,20.409000000000002,0.083,8.808,0.231,17.297,0.061 1995-09-01,12.565,0.087,18.382,0.068,6.921,0.182,16.580000000000002,0.06 1995-10-01,10.106,0.086,15.749,0.13,4.49,0.14400000000000002,15.748,0.062 1995-11-01,6.761,0.087,12.387,0.104,1.266,0.205,14.713,0.06 1995-12-01,4.123,0.044,9.396,0.131,-1.143,0.113,13.950999999999999,0.059 1996-01-01,2.862,0.08800000000000001,8.350999999999999,0.107,-2.512,0.108,13.720999999999998,0.059 1996-02-01,4.0120000000000005,0.118,9.769,0.095,-1.7620000000000002,0.08,14.207,0.064 1996-03-01,5.524,0.085,11.411,0.157,-0.28500000000000003,0.145,14.658,0.059 1996-04-01,8.679,0.073,14.470999999999998,0.099,2.717,0.13,15.541,0.057 1996-05-01,11.588,0.106,17.437,0.102,5.792000000000002,0.123,16.272000000000002,0.063 1996-06-01,13.681,0.091,19.405,0.14300000000000002,7.854,0.106,16.847,0.058 1996-07-01,14.827,0.097,20.65,0.087,9.123,0.129,17.22,0.061 1996-08-01,14.603,0.073,20.416,0.13,8.918,0.126,17.21,0.059 1996-09-01,12.294,0.053,17.974,0.116,6.711,0.17,16.444000000000003,0.056 1996-10-01,9.525,0.097,15.191,0.155,3.929,0.08900000000000001,15.515999999999998,0.061 1996-11-01,6.5470000000000015,0.078,11.952,0.112,1.178,0.083,14.607000000000001,0.059 1996-12-01,4.325,0.058,9.82,0.112,-1.089,0.06,14.052999999999999,0.058 1997-01-01,3.165,0.083,8.588,0.099,-2.1340000000000003,0.078,13.818,0.058 1997-02-01,3.766,0.093,9.456,0.067,-1.885,0.086,14.177999999999999,0.059 1997-03-01,6.0120000000000005,0.139,11.808,0.188,0.18999999999999995,0.095,14.873,0.068 1997-04-01,8.891,0.054000000000000006,14.817,0.114,2.967,0.115,15.634,0.055 1997-05-01,11.593,0.07200000000000001,17.378,0.109,5.8020000000000005,0.149,16.387999999999998,0.056 1997-06-01,14.130999999999998,0.066,19.913,0.096,8.334,0.135,17.158,0.056 1997-07-01,14.565,0.132,20.26,0.094,8.825,0.08900000000000001,17.307000000000002,0.065 1997-08-01,14.255999999999998,0.091,20.13,0.104,8.578999999999999,0.122,17.266000000000002,0.059 1997-09-01,12.685,0.105,18.555000000000003,0.313,6.973,0.162,16.766000000000002,0.061 1997-10-01,10.109,0.07,15.682,0.108,4.665,0.145,15.935,0.056 1997-11-01,6.841,0.096,12.195,0.092,1.5030000000000001,0.086,14.952,0.06 1997-12-01,4.417,0.062,9.634,0.064,-0.7370000000000001,0.076,14.290999999999999,0.057 1998-01-01,3.3520000000000003,0.076,8.555,0.093,-1.7760000000000002,0.086,14.063,0.063 1998-02-01,4.8260000000000005,0.106,10.475,0.11,-0.7680000000000002,0.077,14.610999999999999,0.066 1998-03-01,6.023,0.08199999999999999,11.888,0.073,0.30099999999999993,0.102,14.958,0.065 1998-04-01,9.358,0.05,15.255,0.08800000000000001,3.4389999999999996,0.194,15.884,0.062 1998-05-01,12.291,0.083,18.182,0.16399999999999998,6.372000000000001,0.105,16.671,0.062 1998-06-01,14.521,0.114,20.404,0.13,8.777999999999999,0.07200000000000001,17.289,0.066 1998-07-01,15.34,0.07400000000000001,20.971999999999998,0.062,9.715,0.17,17.609,0.062 1998-08-01,14.874,0.07400000000000001,20.505,0.128,9.344,0.217,17.491,0.062 1998-09-01,12.672999999999998,0.047,18.336,0.123,7.152,0.177,16.657,0.061 1998-10-01,9.941,0.055,15.505999999999998,0.117,4.45,0.116,15.767999999999999,0.064 1998-11-01,6.404,0.081,11.872,0.09,1.0390000000000001,0.08199999999999999,14.697,0.062 1998-12-01,4.6690000000000005,0.045,10.083,0.079,-0.6559999999999999,0.101,14.214,0.061 1999-01-01,3.5439999999999996,0.07,8.876999999999997,0.065,-1.7320000000000002,0.11,13.933,0.063 1999-02-01,4.694,0.08900000000000001,10.4,0.063,-0.957,0.099,14.367,0.065 1999-03-01,5.53,0.102,11.4,0.106,-0.27399999999999997,0.086,14.675999999999998,0.069 1999-04-01,8.838,0.064,14.807,0.085,2.931,0.175,15.572000000000001,0.064 1999-05-01,11.706,0.045,17.613,0.116,5.824000000000002,0.155,16.298,0.061 1999-06-01,14.031,0.07200000000000001,19.831,0.121,8.205,0.131,16.957,0.062 1999-07-01,14.853,0.101,20.578000000000003,0.087,9.24,0.12,17.218,0.064 1999-08-01,14.347999999999999,0.08900000000000001,20.158,0.076,8.696,0.125,17.1,0.063 1999-09-01,12.723,0.056,18.472,0.165,7.109,0.134,16.605,0.059 1999-10-01,9.997,0.095,15.583,0.107,4.4910000000000005,0.064,15.675,0.063 1999-11-01,6.5920000000000005,0.083,12.120999999999999,0.08,1.107,0.085,14.673,0.063 1999-12-01,4.565,0.085,9.953,0.09,-0.6920000000000001,0.078,14.13,0.064 2000-01-01,2.95,0.091,8.349,0.103,-2.322,0.07200000000000001,13.773,0.064 2000-02-01,4.184,0.093,9.863,0.096,-1.371,0.092,14.265999999999998,0.065 2000-03-01,6.218999999999999,0.12,12.204999999999998,0.133,0.3759999999999999,0.08199999999999999,14.845999999999998,0.069 2000-04-01,9.552,0.075,15.534,0.156,3.68,0.153,15.762,0.062 2000-05-01,11.874,0.064,17.721,0.127,5.997000000000001,0.2,16.395,0.061 2000-06-01,14.06,0.1,19.847,0.206,8.243,0.161,17.0,0.067 2000-07-01,14.847999999999999,0.12,20.665,0.107,9.098,0.098,17.242,0.066 2000-08-01,14.519,0.086,20.308,0.095,8.796,0.152,17.243000000000002,0.063 2000-09-01,12.547,0.058,18.373,0.115,6.822,0.142,16.613,0.061 2000-10-01,9.486,0.047,15.069,0.134,4.0,0.097,15.588,0.06 2000-11-01,6.312,0.084,11.67,0.092,0.996,0.064,14.632,0.062 2000-12-01,3.863,0.064,9.182,0.108,-1.3330000000000002,0.07200000000000001,13.968,0.062 2001-01-01,3.3360000000000003,0.077,8.827,0.08800000000000001,-2.0780000000000003,0.06,13.936,0.063 2001-02-01,3.72,0.109,9.486,0.059,-1.9969999999999999,0.091,14.179,0.067 2001-03-01,6.207999999999999,0.058,12.130999999999998,0.094,0.4109999999999999,0.117,14.982000000000001,0.062 2001-04-01,9.245,0.098,15.174000000000001,0.118,3.234,0.155,15.808,0.066 2001-05-01,12.271,0.105,18.185,0.13,6.3500000000000005,0.107,16.569000000000003,0.066 2001-06-01,14.11,0.085,19.962,0.133,8.218,0.134,17.151,0.063 2001-07-01,15.161,0.101,20.923,0.104,9.428,0.149,17.45,0.065 2001-08-01,14.427,0.115,20.332,0.103,8.664,0.17800000000000002,17.294,0.068 2001-09-01,12.736,0.087,18.581000000000003,0.114,7.07,0.17,16.758,0.065 2001-10-01,9.935,0.073,15.578,0.101,4.353,0.109,15.831,0.064 2001-11-01,7.319,0.086,12.89,0.093,1.92,0.08199999999999999,15.011,0.064 2001-12-01,4.507,0.055,9.841000000000001,0.108,-0.685,0.08900000000000001,14.241,0.062 2002-01-01,4.026,0.065,9.459,0.123,-1.3219999999999998,0.08900000000000001,14.258,0.062 2002-02-01,4.704,0.078,10.435,0.104,-0.9480000000000002,0.058,14.505,0.065 2002-03-01,6.772,0.034,12.775,0.083,0.8940000000000001,0.113,15.198,0.064 2002-04-01,9.229,0.049,15.145999999999999,0.099,3.3080000000000003,0.152,15.818,0.062 2002-05-01,12.248,0.081,18.157,0.17,6.199000000000002,0.197,16.605,0.062 2002-06-01,14.084000000000001,0.052000000000000005,19.912,0.14300000000000002,8.184000000000001,0.151,17.110000000000007,0.06 2002-07-01,15.354,0.077,21.199,0.075,9.408999999999999,0.096,17.487000000000002,0.062 2002-08-01,14.56,0.067,20.444000000000003,0.136,8.806999999999997,0.136,17.328,0.061 2002-09-01,12.95,0.103,18.785,0.129,7.16,0.083,16.799,0.065 2002-10-01,9.988,0.079,15.599,0.166,4.484,0.15,15.859000000000002,0.062 2002-11-01,6.892,0.12,12.48,0.142,1.389,0.136,14.856,0.067 2002-12-01,4.038,0.064,9.357000000000001,0.119,-1.189,0.045,14.127,0.063 2003-01-01,3.9810000000000003,0.07,9.558,0.119,-1.4809999999999999,0.091,14.207,0.064 2003-02-01,4.085,0.097,9.749,0.08800000000000001,-1.4800000000000002,0.111,14.359000000000002,0.065 2003-03-01,6.047999999999999,0.055,11.972000000000001,0.077,0.215,0.127,14.973,0.062 2003-04-01,9.154,0.07400000000000001,15.033,0.105,3.2089999999999996,0.122,15.774000000000001,0.063 2003-05-01,12.153,0.095,18.118,0.136,6.207999999999999,0.162,16.567,0.063 2003-06-01,14.017000000000001,0.135,19.77,0.12,8.222000000000001,0.146,17.104000000000006,0.068 2003-07-01,14.982999999999999,0.184,20.756999999999998,0.117,9.223,0.154,17.423000000000002,0.078 2003-08-01,14.691,0.08900000000000001,20.48,0.084,8.974,0.119,17.402,0.063 2003-09-01,12.911,0.067,18.692,0.181,7.221,0.18,16.839000000000002,0.06 2003-10-01,10.424000000000001,0.085,16.115,0.116,4.74,0.094,15.997,0.063 2003-11-01,6.727,0.075,12.203,0.134,1.347,0.117,14.838,0.061 2003-12-01,5.132999999999999,0.062,10.545,0.08800000000000001,-0.17900000000000005,0.091,14.436,0.062 2004-01-01,3.5250000000000004,0.062,8.901,0.109,-1.65,0.097,14.097000000000001,0.059 2004-02-01,4.4990000000000006,0.104,10.171,0.085,-1.1820000000000002,0.075,14.488,0.065 2004-03-01,6.321000000000001,0.069,12.275,0.08199999999999999,0.3759999999999999,0.093,14.992,0.061 2004-04-01,9.249,0.057,15.132,0.111,3.285,0.133,15.811,0.061 2004-05-01,11.571,0.07,17.296000000000006,0.075,5.707000000000002,0.14400000000000002,16.383,0.058 2004-06-01,13.889000000000001,0.097,19.66,0.128,8.035,0.155,17.006,0.063 2004-07-01,14.312000000000001,0.115,20.087,0.115,8.624,0.133,17.227,0.065 2004-08-01,14.187999999999999,0.104,20.011,0.09,8.382,0.083,17.266000000000002,0.063 2004-09-01,12.642000000000001,0.084,18.451,0.122,6.907,0.108,16.745,0.059 2004-10-01,10.127,0.091,15.843,0.117,4.511,0.092,15.889,0.061 2004-11-01,7.315,0.092,12.796,0.126,1.91,0.08199999999999999,15.022,0.06 2004-12-01,4.257,0.056,9.593,0.149,-0.9320000000000002,0.076,14.161,0.06 2005-01-01,3.8080000000000003,0.064,9.026,0.135,-1.3769999999999998,0.066,14.159,0.059 2005-02-01,3.92,0.115,9.508,0.093,-1.5340000000000005,0.051,14.293,0.067 2005-03-01,6.5440000000000005,0.06,12.316,0.098,0.8130000000000002,0.07400000000000001,15.106,0.064 2005-04-01,9.618,0.052000000000000005,15.550999999999998,0.133,3.697,0.16399999999999998,15.978,0.061 2005-05-01,12.226,0.09,17.995,0.132,6.392,0.166,16.629,0.061 2005-06-01,14.476,0.083,20.104,0.142,8.863,0.14,17.248,0.062 2005-07-01,15.19,0.094,20.88,0.091,9.569,0.156,17.503,0.063 2005-08-01,14.51,0.078,20.25,0.091,8.934,0.153,17.375,0.059 2005-09-01,13.217,0.08,19.110000000000007,0.109,7.412000000000001,0.14800000000000002,16.903,0.059 2005-10-01,10.601,0.064,16.235,0.101,5.004,0.08900000000000001,16.025000000000002,0.059 2005-11-01,7.422999999999999,0.068,12.944,0.111,1.9880000000000002,0.073,15.005,0.058 2005-12-01,4.878,0.054000000000000006,10.279000000000002,0.121,-0.395,0.065,14.327,0.058 2006-01-01,3.286,0.064,8.616999999999999,0.106,-1.942,0.113,13.99,0.059 2006-02-01,4.43,0.118,10.124,0.185,-1.2290000000000003,0.09,14.435,0.066 2006-03-01,6.3290000000000015,0.077,12.239,0.098,0.56,0.097,14.966,0.062 2006-04-01,9.055,0.08900000000000001,15.004000000000001,0.191,3.0810000000000004,0.166,15.729000000000001,0.061 2006-05-01,11.786,0.092,17.650000000000006,0.25,5.791,0.206,16.463,0.06 2006-06-01,14.443,0.093,20.317,0.156,8.530000000000001,0.131,17.215999999999998,0.06 2006-07-01,15.042,0.116,20.905,0.218,9.288,0.132,17.419,0.063 2006-08-01,14.913,0.107,20.79,0.122,9.146999999999998,0.182,17.479,0.061 2006-09-01,12.875,0.104,18.779000000000003,0.104,7.081,0.16699999999999998,16.792,0.062 2006-10-01,10.289000000000001,0.077,15.925,0.091,4.7959999999999985,0.129,15.935,0.06 2006-11-01,6.955,0.078,12.448,0.123,1.5179999999999998,0.163,14.931,0.058 2006-12-01,4.987,0.065,10.345999999999998,0.151,-0.2430000000000001,0.084,14.407,0.06 2007-01-01,4.5790000000000015,0.059,10.084,0.147,-0.8180000000000003,0.073,14.417,0.057 2007-02-01,4.221,0.077,10.039,0.077,-1.503,0.07400000000000001,14.408,0.059 2007-03-01,6.485,0.113,12.483,0.096,0.5169999999999999,0.142,15.017000000000001,0.065 2007-04-01,9.823,0.109,15.807,0.183,3.88,0.211,15.93,0.062 2007-05-01,12.518,0.07,18.395000000000003,0.165,6.5680000000000005,0.157,16.629,0.055 2007-06-01,14.309000000000001,0.07200000000000001,20.223,0.105,8.370000000000001,0.13,17.168000000000006,0.056 2007-07-01,15.23,0.115,21.108,0.116,9.482000000000001,0.166,17.485,0.061 2007-08-01,14.752,0.113,20.641,0.146,9.032,0.192,17.339000000000002,0.061 2007-09-01,12.93,0.102,18.838,0.152,7.18,0.162,16.737000000000002,0.059 2007-10-01,10.332,0.1,16.134,0.13,4.609,0.12,15.867,0.06 2007-11-01,7.0840000000000005,0.085,12.772,0.132,1.4780000000000002,0.105,14.821,0.057 2007-12-01,4.523,0.059,9.873,0.097,-0.6840000000000002,0.114,14.11,0.057 2008-01-01,2.8440000000000003,0.059,8.155,0.16,-2.383,0.109,13.719000000000001,0.057 2008-02-01,3.576,0.068,9.351,0.078,-2.1060000000000003,0.1,14.061,0.059 2008-03-01,6.906000000000001,0.099,12.992,0.106,0.879,0.112,15.077,0.063 2008-04-01,9.295,0.083,15.42,0.121,3.175,0.127,15.735,0.058 2008-05-01,12.053999999999998,0.071,17.989,0.084,6.053000000000001,0.155,16.497,0.055 2008-06-01,14.145,0.097,19.973,0.091,8.266,0.14400000000000002,17.077,0.058 2008-07-01,15.174000000000001,0.07200000000000001,21.006,0.138,9.407,0.16,17.449,0.054000000000000006 2008-08-01,14.377,0.113,20.176,0.073,8.594,0.141,17.282,0.06 2008-09-01,12.802,0.087,18.629,0.087,7.1160000000000005,0.154,16.757,0.057 2008-10-01,10.399000000000001,0.078,16.038,0.091,4.847,0.125,15.931,0.056 2008-11-01,7.224,0.064,12.738,0.107,1.7959999999999998,0.103,14.919,0.054000000000000006 2008-12-01,4.385,0.056,9.834,0.106,-0.946,0.128,14.151,0.056 2009-01-01,3.687,0.078,9.175999999999998,0.103,-1.7560000000000002,0.107,14.091,0.058 2009-02-01,4.093999999999999,0.083,9.822000000000001,0.06,-1.5450000000000002,0.077,14.267,0.06 2009-03-01,6.086,0.058,12.065,0.093,0.132,0.112,14.873,0.06 2009-04-01,9.367,0.084,15.377,0.098,3.32,0.194,15.819,0.059 2009-05-01,12.111999999999998,0.104,18.01,0.177,6.141,0.16699999999999998,16.570999999999998,0.06 2009-06-01,14.201,0.07400000000000001,20.056,0.172,8.3,0.122,17.26,0.057 2009-07-01,15.231,0.14800000000000002,21.085,0.1,9.456,0.13,17.578,0.067 2009-08-01,14.655,0.109,20.577,0.103,8.854999999999997,0.13699999999999998,17.427,0.06 2009-09-01,13.153,0.05,19.006,0.094,7.397,0.133,16.864,0.053 2009-10-01,10.136000000000001,0.075,15.79,0.087,4.563,0.104,15.91,0.056 2009-11-01,7.031000000000001,0.087,12.574000000000002,0.085,1.64,0.128,14.968,0.057 2009-12-01,4.31,0.081,9.661,0.121,-0.94,0.101,14.298,0.06 2010-01-01,3.737,0.079,9.245,0.087,-1.6770000000000005,0.08199999999999999,14.207999999999998,0.06 2010-02-01,4.399,0.08,10.034,0.083,-1.107,0.079,14.517,0.061 2010-03-01,6.7379999999999995,0.057,12.669,0.07400000000000001,0.7959999999999998,0.119,15.223,0.059 2010-04-01,9.671,0.087,15.616,0.153,3.759,0.159,16.038999999999998,0.06 2010-05-01,12.406,0.078,18.173,0.14300000000000002,6.524000000000001,0.132,16.732,0.057 2010-06-01,14.421,0.086,20.252,0.118,8.488999999999999,0.128,17.271,0.057 2010-07-01,15.213,0.09,20.97,0.08,9.551,0.141,17.532,0.057 2010-08-01,14.767999999999999,0.112,20.656,0.062,8.984,0.124,17.412,0.061 2010-09-01,12.863,0.065,18.602999999999998,0.092,7.252000000000001,0.117,16.761,0.054000000000000006 2010-10-01,10.442,0.07,16.115,0.083,4.905,0.12,15.939,0.057 2010-11-01,7.487,0.102,13.168,0.128,1.95,0.097,14.995,0.06 2010-12-01,4.292,0.095,9.887,0.138,-1.139,0.09,14.117,0.06 2011-01-01,3.282,0.08199999999999999,8.722000000000001,0.096,-2.0340000000000003,0.133,13.928,0.059 2011-02-01,3.7430000000000003,0.067,9.435,0.077,-1.906,0.104,14.193,0.059 2011-03-01,6.101,0.064,11.963,0.098,0.3140000000000001,0.14400000000000002,14.88,0.06 2011-04-01,9.483,0.046,15.45,0.152,3.5239999999999996,0.159,15.832,0.056 2011-05-01,11.986,0.056,17.917,0.105,6.0230000000000015,0.165,16.523,0.056 2011-06-01,14.37,0.08199999999999999,20.231,0.102,8.48,0.14300000000000002,17.203000000000007,0.058 2011-07-01,15.482000000000001,0.113,21.32,0.131,9.684,0.11,17.567999999999998,0.062 2011-08-01,15.012,0.091,20.922,0.114,9.207999999999998,0.13,17.475,0.059 2011-09-01,12.912,0.083,18.89,0.14,6.997999999999999,0.147,16.762,0.057 2011-10-01,10.352,0.087,16.075,0.08,4.85,0.115,15.873,0.059 2011-11-01,6.814,0.107,12.395,0.094,1.432,0.156,14.799000000000001,0.06 2011-12-01,4.6549999999999985,0.106,10.098,0.183,-0.6409999999999999,0.133,14.198,0.063 2012-01-01,3.157,0.085,8.690999999999999,0.135,-2.233,0.117,13.859000000000002,0.06 2012-02-01,3.628,0.102,9.379,0.084,-2.0669999999999997,0.145,14.164,0.063 2012-03-01,6.023,0.054000000000000006,12.025,0.08199999999999999,0.07499999999999996,0.16,14.863,0.061 2012-04-01,9.675999999999998,0.055,15.679,0.129,3.6889999999999996,0.14400000000000002,15.880999999999998,0.059 2012-05-01,12.59,0.109,18.611,0.108,6.461,0.162,16.698999999999998,0.064 2012-06-01,14.492,0.078,20.43,0.101,8.505,0.14,17.252000000000002,0.06 2012-07-01,15.075999999999999,0.076,21.006,0.079,9.229,0.113,17.45,0.06 2012-08-01,14.72,0.069,20.709,0.079,8.84,0.218,17.42,0.06 2012-09-01,13.04,0.069,19.074,0.093,7.176,0.188,16.882,0.06 2012-10-01,10.428,0.098,16.203,0.099,4.765,0.134,16.019000000000002,0.063 2012-11-01,7.1560000000000015,0.116,12.689,0.15,1.7959999999999998,0.127,15.001,0.064 2012-12-01,4.102,0.09,9.498,0.149,-1.162,0.096,14.138,0.064 2013-01-01,3.685,0.097,9.255,0.154,-1.7260000000000002,0.08800000000000001,14.117,0.064 2013-02-01,4.222,0.093,9.95,0.057,-1.4720000000000002,0.14800000000000002,14.359000000000002,0.065 2013-03-01,6.261,0.09,12.328,0.08900000000000001,0.17400000000000004,0.142,14.952,0.066 2013-04-01,9.044,0.098,15.084000000000001,0.15,3.055,0.177,15.749,0.065 2013-05-01,12.195,0.104,18.107000000000006,0.139,6.263,0.196,16.608999999999998,0.065 2013-06-01,14.568,0.09,20.44,0.158,8.685,0.165,17.257,0.062 2013-07-01,15.003,0.126,20.737,0.1,9.33,0.153,17.503,0.068 2013-08-01,14.742,0.129,20.596,0.12,9.014,0.179,17.462,0.068 2013-09-01,13.154000000000002,0.104,18.947000000000006,0.077,7.482,0.194,16.894000000000002,0.064 2013-10-01,10.255999999999998,0.077,15.994000000000002,0.1,4.663,0.135,15.905,0.062 2013-11-01,7.4239999999999995,0.079,12.965,0.113,2.016,0.116,15.107000000000001,0.062 2013-12-01,4.724,0.085,10.083,0.129,-0.5479999999999999,0.105,14.339,0.065 2014-01-01,3.7319999999999998,0.075,9.327,0.138,-1.7550000000000003,0.091,14.136,0.064 2014-02-01,3.5,0.068,9.146,0.073,-2.08,0.095,14.157,0.065 2014-03-01,6.377999999999999,0.098,12.367,0.108,0.436,0.139,15.09,0.068 2014-04-01,9.589,0.111,15.529000000000002,0.09,3.617,0.193,16.038,0.069 2014-05-01,12.582,0.068,18.362,0.158,6.6129999999999995,0.166,16.804000000000002,0.059 2014-06-01,14.335,0.096,20.126,0.095,8.472999999999999,0.157,17.303,0.064 2014-07-01,14.873,0.078,20.711,0.091,9.112,0.135,17.508,0.061 2014-08-01,14.875,0.115,20.79,0.098,9.047,0.173,17.607,0.064 2014-09-01,13.091,0.086,18.865,0.106,7.399,0.155,16.975,0.059 2014-10-01,10.33,0.076,16.066,0.111,4.689,0.126,16.029,0.059 2014-11-01,6.712999999999999,0.121,12.284,0.124,1.3130000000000002,0.115,14.899,0.064 2014-12-01,4.85,0.09,10.19,0.14800000000000002,-0.331,0.123,14.41,0.062 2015-01-01,3.881,0.13,9.432,0.09,-1.5180000000000002,0.097,14.255,0.066 2015-02-01,4.664,0.121,10.497,0.092,-1.1380000000000003,0.113,14.564,0.067 2015-03-01,6.74,0.06,12.659,0.096,0.8940000000000001,0.079,15.193,0.061 2015-04-01,9.313,0.08800000000000001,15.224,0.13699999999999998,3.4019999999999997,0.147,15.962,0.061 2015-05-01,12.312000000000001,0.081,18.180999999999997,0.117,6.3130000000000015,0.153,16.774,0.058 2015-06-01,14.505,0.068,20.364,0.133,8.627,0.168,17.39,0.057 2015-07-01,15.050999999999998,0.086,20.904,0.109,9.326,0.225,17.611,0.058 2015-08-01,14.755,0.07200000000000001,20.699,0.11,9.004999999999997,0.17,17.589000000000002,0.057 2015-09-01,12.999,0.079,18.845,0.08800000000000001,7.199,0.229,17.049,0.058 2015-10-01,10.800999999999998,0.102,16.45,0.059,5.231999999999998,0.115,16.29,0.062 2015-11-01,7.433,0.119,12.892000000000001,0.093,2.157,0.106,15.252,0.063 2015-12-01,5.518,0.1,10.725,0.154,0.2869999999999997,0.099,14.774,0.062 ================================================ FILE: docs/third-party/data-science/files/matplotlib/imdb-top-1000.csv ================================================ Poster_Link,Series_Title,Released_Year,Certificate,Runtime,Genre,IMDB_Rating,Overview,Meta_score,Director,Star1,Star2,Star3,Star4,No_of_Votes,Gross "https://m.media-amazon.com/images/M/MV5BMDFkYTc0MGEtZmNhMC00ZDIzLWFmNTEtODM1ZmRlYWMwMWFmXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",The Shawshank Redemption,1994,A,142 min,Drama,9.3,"Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency.",80,Frank Darabont,Tim Robbins,Morgan Freeman,Bob Gunton,William Sadler,2343110,"28,341,469" "https://m.media-amazon.com/images/M/MV5BM2MyNjYxNmUtYTAwNi00MTYxLWJmNWYtYzZlODY3ZTk3OTFlXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UY98_CR1,0,67,98_AL_.jpg",The Godfather,1972,A,175 min,"Crime, Drama",9.2,An organized crime dynasty's aging patriarch transfers control of his clandestine empire to his reluctant son.,100,Francis Ford Coppola,Marlon Brando,Al Pacino,James Caan,Diane Keaton,1620367,"134,966,411" "https://m.media-amazon.com/images/M/MV5BMTMxNTMwODM0NF5BMl5BanBnXkFtZTcwODAyMTk2Mw@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Dark Knight,2008,UA,152 min,"Action, Crime, Drama",9,"When the menace known as the Joker wreaks havoc and chaos on the people of Gotham, Batman must accept one of the greatest psychological and physical tests of his ability to fight injustice.",84,Christopher Nolan,Christian Bale,Heath Ledger,Aaron Eckhart,Michael Caine,2303232,"534,858,444" "https://m.media-amazon.com/images/M/MV5BMWMwMGQzZTItY2JlNC00OWZiLWIyMDctNDk2ZDQ2YjRjMWQ0XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UY98_CR1,0,67,98_AL_.jpg",The Godfather: Part II,1974,A,202 min,"Crime, Drama",9,"The early life and career of Vito Corleone in 1920s New York City is portrayed, while his son, Michael, expands and tightens his grip on the family crime syndicate.",90,Francis Ford Coppola,Al Pacino,Robert De Niro,Robert Duvall,Diane Keaton,1129952,"57,300,000" "https://m.media-amazon.com/images/M/MV5BMWU4N2FjNzYtNTVkNC00NzQ0LTg0MjAtYTJlMjFhNGUxZDFmXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",12 Angry Men,1957,U,96 min,"Crime, Drama",9,A jury holdout attempts to prevent a miscarriage of justice by forcing his colleagues to reconsider the evidence.,96,Sidney Lumet,Henry Fonda,Lee J. Cobb,Martin Balsam,John Fiedler,689845,"4,360,000" "https://m.media-amazon.com/images/M/MV5BNzA5ZDNlZWMtM2NhNS00NDJjLTk4NDItYTRmY2EwMWZlMTY3XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",The Lord of the Rings: The Return of the King,2003,U,201 min,"Action, Adventure, Drama",8.9,Gandalf and Aragorn lead the World of Men against Sauron's army to draw his gaze from Frodo and Sam as they approach Mount Doom with the One Ring.,94,Peter Jackson,Elijah Wood,Viggo Mortensen,Ian McKellen,Orlando Bloom,1642758,"377,845,905" "https://m.media-amazon.com/images/M/MV5BNGNhMDIzZTUtNTBlZi00MTRlLWFjM2ItYzViMjE3YzI5MjljXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UY98_CR0,0,67,98_AL_.jpg",Pulp Fiction,1994,A,154 min,"Crime, Drama",8.9,"The lives of two mob hitmen, a boxer, a gangster and his wife, and a pair of diner bandits intertwine in four tales of violence and redemption.",94,Quentin Tarantino,John Travolta,Uma Thurman,Samuel L. Jackson,Bruce Willis,1826188,"107,928,762" "https://m.media-amazon.com/images/M/MV5BNDE4OTMxMTctNmRhYy00NWE2LTg3YzItYTk3M2UwOTU5Njg4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Schindler's List,1993,A,195 min,"Biography, Drama, History",8.9,"In German-occupied Poland during World War II, industrialist Oskar Schindler gradually becomes concerned for his Jewish workforce after witnessing their persecution by the Nazis.",94,Steven Spielberg,Liam Neeson,Ralph Fiennes,Ben Kingsley,Caroline Goodall,1213505,"96,898,818" "https://m.media-amazon.com/images/M/MV5BMjAxMzY3NjcxNF5BMl5BanBnXkFtZTcwNTI5OTM0Mw@@._V1_UX67_CR0,0,67,98_AL_.jpg",Inception,2010,UA,148 min,"Action, Adventure, Sci-Fi",8.8,A thief who steals corporate secrets through the use of dream-sharing technology is given the inverse task of planting an idea into the mind of a C.E.O.,74,Christopher Nolan,Leonardo DiCaprio,Joseph Gordon-Levitt,Elliot Page,Ken Watanabe,2067042,"292,576,195" "https://m.media-amazon.com/images/M/MV5BMmEzNTkxYjQtZTc0MC00YTVjLTg5ZTEtZWMwOWVlYzY0NWIwXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Fight Club,1999,A,139 min,Drama,8.8,"An insomniac office worker and a devil-may-care soapmaker form an underground fight club that evolves into something much, much more.",66,David Fincher,Brad Pitt,Edward Norton,Meat Loaf,Zach Grenier,1854740,"37,030,102" "https://m.media-amazon.com/images/M/MV5BN2EyZjM3NzUtNWUzMi00MTgxLWI0NTctMzY4M2VlOTdjZWRiXkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UX67_CR0,0,67,98_AL_.jpg",The Lord of the Rings: The Fellowship of the Ring,2001,U,178 min,"Action, Adventure, Drama",8.8,A meek Hobbit from the Shire and eight companions set out on a journey to destroy the powerful One Ring and save Middle-earth from the Dark Lord Sauron.,92,Peter Jackson,Elijah Wood,Ian McKellen,Orlando Bloom,Sean Bean,1661481,"315,544,750" "https://m.media-amazon.com/images/M/MV5BNWIwODRlZTUtY2U3ZS00Yzg1LWJhNzYtMmZiYmEyNmU1NjMzXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UY98_CR0,0,67,98_AL_.jpg",Forrest Gump,1994,UA,142 min,"Drama, Romance",8.8,"The presidencies of Kennedy and Johnson, the events of Vietnam, Watergate and other historical events unfold through the perspective of an Alabama man with an IQ of 75, whose only desire is to be reunited with his childhood sweetheart.",82,Robert Zemeckis,Tom Hanks,Robin Wright,Gary Sinise,Sally Field,1809221,"330,252,182" "https://m.media-amazon.com/images/M/MV5BOTQ5NDI3MTI4MF5BMl5BanBnXkFtZTgwNDQ4ODE5MDE@._V1_UX67_CR0,0,67,98_AL_.jpg","Il buono, il brutto, il cattivo",1966,A,161 min,Western,8.8,A bounty hunting scam joins two men in an uneasy alliance against a third in a race to find a fortune in gold buried in a remote cemetery.,90,Sergio Leone,Clint Eastwood,Eli Wallach,Lee Van Cleef,Aldo Giuffrè,688390,"6,100,000" "https://m.media-amazon.com/images/M/MV5BZGMxZTdjZmYtMmE2Ni00ZTdkLWI5NTgtNjlmMjBiNzU2MmI5XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",The Lord of the Rings: The Two Towers,2002,UA,179 min,"Action, Adventure, Drama",8.7,"While Frodo and Sam edge closer to Mordor with the help of the shifty Gollum, the divided fellowship makes a stand against Sauron's new ally, Saruman, and his hordes of Isengard.",87,Peter Jackson,Elijah Wood,Ian McKellen,Viggo Mortensen,Orlando Bloom,1485555,"342,551,365" "https://m.media-amazon.com/images/M/MV5BNzQzOTk3OTAtNDQ0Zi00ZTVkLWI0MTEtMDllZjNkYzNjNTc4L2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",The Matrix,1999,A,136 min,"Action, Sci-Fi",8.7,"When a beautiful stranger leads computer hacker Neo to a forbidding underworld, he discovers the shocking truth--the life he knows is the elaborate deception of an evil cyber-intelligence.",73,Lana Wachowski,Lilly Wachowski,Keanu Reeves,Laurence Fishburne,Carrie-Anne Moss,1676426,"171,479,930" "https://m.media-amazon.com/images/M/MV5BY2NkZjEzMDgtN2RjYy00YzM1LWI4ZmQtMjIwYjFjNmI3ZGEwXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Goodfellas,1990,A,146 min,"Biography, Crime, Drama",8.7,"The story of Henry Hill and his life in the mob, covering his relationship with his wife Karen Hill and his mob partners Jimmy Conway and Tommy DeVito in the Italian-American crime syndicate.",90,Martin Scorsese,Robert De Niro,Ray Liotta,Joe Pesci,Lorraine Bracco,1020727,"46,836,394" "https://m.media-amazon.com/images/M/MV5BYmU1NDRjNDgtMzhiMi00NjZmLTg5NGItZDNiZjU5NTU4OTE0XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Star Wars: Episode V - The Empire Strikes Back,1980,UA,124 min,"Action, Adventure, Fantasy",8.7,"After the Rebels are brutally overpowered by the Empire on the ice planet Hoth, Luke Skywalker begins Jedi training with Yoda, while his friends are pursued by Darth Vader and a bounty hunter named Boba Fett all over the galaxy.",82,Irvin Kershner,Mark Hamill,Harrison Ford,Carrie Fisher,Billy Dee Williams,1159315,"290,475,067" "https://m.media-amazon.com/images/M/MV5BZjA0OWVhOTAtYWQxNi00YzNhLWI4ZjYtNjFjZTEyYjJlNDVlL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",One Flew Over the Cuckoo's Nest,1975,A,133 min,Drama,8.7,"A criminal pleads insanity and is admitted to a mental institution, where he rebels against the oppressive nurse and rallies up the scared patients.",83,Milos Forman,Jack Nicholson,Louise Fletcher,Michael Berryman,Peter Brocco,918088,"112,000,000" "https://m.media-amazon.com/images/M/MV5BNjViNWRjYWEtZTI0NC00N2E3LTk0NGQtMjY4NTM3OGNkZjY0XkEyXkFqcGdeQXVyMjUxMTY3ODM@._V1_UX67_CR0,0,67,98_AL_.jpg",Hamilton,2020,PG-13,160 min,"Biography, Drama, History",8.6,"The real life of one of America's foremost founding fathers and first Secretary of the Treasury, Alexander Hamilton. Captured live on Broadway from the Richard Rodgers Theater with the original Broadway cast.",90,Thomas Kail,Lin-Manuel Miranda,Phillipa Soo,Leslie Odom Jr.,Renée Elise Goldsberry,55291, "https://m.media-amazon.com/images/M/MV5BYWZjMjk3ZTItODQ2ZC00NTY5LWE0ZDYtZTI3MjcwN2Q5NTVkXkEyXkFqcGdeQXVyODk4OTc3MTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Gisaengchung,2019,A,132 min,"Comedy, Drama, Thriller",8.6,Greed and class discrimination threaten the newly formed symbiotic relationship between the wealthy Park family and the destitute Kim clan.,96,Bong Joon Ho,Kang-ho Song,Lee Sun-kyun,Cho Yeo-jeong,Choi Woo-sik,552778,"53,367,844" "https://m.media-amazon.com/images/M/MV5BOTc2ZTlmYmItMDBhYS00YmMzLWI4ZjAtMTI5YTBjOTFiMGEwXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY98_CR0,0,67,98_AL_.jpg",Soorarai Pottru,2020,U,153 min,Drama,8.6,"Nedumaaran Rajangam ""Maara"" sets out to make the common man fly and in the process takes on the world's most capital intensive industry and several enemies who stand in his way.",,Sudha Kongara,Suriya,Madhavan,Paresh Rawal,Aparna Balamurali,54995, "https://m.media-amazon.com/images/M/MV5BZjdkOTU3MDktN2IxOS00OGEyLWFmMjktY2FiMmZkNWIyODZiXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Interstellar,2014,UA,169 min,"Adventure, Drama, Sci-Fi",8.6,A team of explorers travel through a wormhole in space in an attempt to ensure humanity's survival.,74,Christopher Nolan,Matthew McConaughey,Anne Hathaway,Jessica Chastain,Mackenzie Foy,1512360,"188,020,017" "https://m.media-amazon.com/images/M/MV5BOTMwYjc5ZmItYTFjZC00ZGQ3LTlkNTMtMjZiNTZlMWQzNzI5XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Cidade de Deus,2002,A,130 min,"Crime, Drama",8.6,"In the slums of Rio, two kids' paths diverge as one struggles to become a photographer and the other a kingpin.",79,Fernando Meirelles,Kátia Lund,Alexandre Rodrigues,Leandro Firmino,Matheus Nachtergaele,699256,"7,563,397" "https://m.media-amazon.com/images/M/MV5BMjlmZmI5MDctNDE2YS00YWE0LWE5ZWItZDBhYWQ0NTcxNWRhXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Sen to Chihiro no kamikakushi,2001,U,125 min,"Animation, Adventure, Family",8.6,"During her family's move to the suburbs, a sullen 10-year-old girl wanders into a world ruled by gods, witches, and spirits, and where humans are changed into beasts.",96,Hayao Miyazaki,Daveigh Chase,Suzanne Pleshette,Miyu Irino,Rumi Hiiragi,651376,"10,055,859" "https://m.media-amazon.com/images/M/MV5BZjhkMDM4MWItZTVjOC00ZDRhLThmYTAtM2I5NzBmNmNlMzI1XkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Saving Private Ryan,1998,R,169 min,"Drama, War",8.6,"Following the Normandy Landings, a group of U.S. soldiers go behind enemy lines to retrieve a paratrooper whose brothers have been killed in action.",91,Steven Spielberg,Tom Hanks,Matt Damon,Tom Sizemore,Edward Burns,1235804,"216,540,909" "https://m.media-amazon.com/images/M/MV5BMTUxMzQyNjA5MF5BMl5BanBnXkFtZTYwOTU2NTY3._V1_UX67_CR0,0,67,98_AL_.jpg",The Green Mile,1999,A,189 min,"Crime, Drama, Fantasy",8.6,"The lives of guards on Death Row are affected by one of their charges: a black man accused of child murder and rape, yet who has a mysterious gift.",61,Frank Darabont,Tom Hanks,Michael Clarke Duncan,David Morse,Bonnie Hunt,1147794,"136,801,374" "https://m.media-amazon.com/images/M/MV5BYmJmM2Q4NmMtYThmNC00ZjRlLWEyZmItZTIwOTBlZDQ3NTQ1XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",La vita è bella,1997,U,116 min,"Comedy, Drama, Romance",8.6,"When an open-minded Jewish librarian and his son become victims of the Holocaust, he uses a perfect mixture of will, humor, and imagination to protect his son from the dangers around their camp.",59,Roberto Benigni,Roberto Benigni,Nicoletta Braschi,Giorgio Cantarini,Giustino Durano,623629,"57,598,247" "https://m.media-amazon.com/images/M/MV5BOTUwODM5MTctZjczMi00OTk4LTg3NWUtNmVhMTAzNTNjYjcyXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Se7en,1995,A,127 min,"Crime, Drama, Mystery",8.6,"Two detectives, a rookie and a veteran, hunt a serial killer who uses the seven deadly sins as his motives.",65,David Fincher,Morgan Freeman,Brad Pitt,Kevin Spacey,Andrew Kevin Walker,1445096,"100,125,643" "https://m.media-amazon.com/images/M/MV5BNjNhZTk0ZmEtNjJhMi00YzFlLWE1MmEtYzM1M2ZmMGMwMTU4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",The Silence of the Lambs,1991,A,118 min,"Crime, Drama, Thriller",8.6,"A young F.B.I. cadet must receive the help of an incarcerated and manipulative cannibal killer to help catch another serial killer, a madman who skins his victims.",85,Jonathan Demme,Jodie Foster,Anthony Hopkins,Lawrence A. Bonney,Kasi Lemmons,1270197,"130,742,922" "https://m.media-amazon.com/images/M/MV5BNzVlY2MwMjktM2E4OS00Y2Y3LWE3ZjctYzhkZGM3YzA1ZWM2XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Star Wars,1977,UA,121 min,"Action, Adventure, Fantasy",8.6,"Luke Skywalker joins forces with a Jedi Knight, a cocky pilot, a Wookiee and two droids to save the galaxy from the Empire's world-destroying battle station, while also attempting to rescue Princess Leia from the mysterious Darth Vader.",90,George Lucas,Mark Hamill,Harrison Ford,Carrie Fisher,Alec Guinness,1231473,"322,740,140" "https://m.media-amazon.com/images/M/MV5BYjBmYTQ1NjItZWU5MS00YjI0LTg2OTYtYmFkN2JkMmNiNWVkXkEyXkFqcGdeQXVyMTMxMTY0OTQ@._V1_UY98_CR2,0,67,98_AL_.jpg",Seppuku,1962,,133 min,"Action, Drama, Mystery",8.6,"When a ronin requesting seppuku at a feudal lord's palace is told of the brutal suicide of another ronin who previously visited, he reveals how their pasts are intertwined - and in doing so challenges the clan's integrity.",85,Masaki Kobayashi,Tatsuya Nakadai,Akira Ishihama,Shima Iwashita,Tetsurô Tanba,42004, "https://m.media-amazon.com/images/M/MV5BOWE4ZDdhNmMtNzE5ZC00NzExLTlhNGMtY2ZhYjYzODEzODA1XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UY98_CR1,0,67,98_AL_.jpg",Shichinin no samurai,1954,U,207 min,"Action, Adventure, Drama",8.6,A poor village under attack by bandits recruits seven unemployed samurai to help them defend themselves.,98,Akira Kurosawa,Toshirô Mifune,Takashi Shimura,Keiko Tsushima,Yukiko Shimazaki,315744,"269,061" "https://m.media-amazon.com/images/M/MV5BZjc4NDZhZWMtNGEzYS00ZWU2LThlM2ItNTA0YzQ0OTExMTE2XkEyXkFqcGdeQXVyNjUwMzI2NzU@._V1_UY98_CR0,0,67,98_AL_.jpg",It's a Wonderful Life,1946,PG,130 min,"Drama, Family, Fantasy",8.6,An angel is sent from Heaven to help a desperately frustrated businessman by showing him what life would have been like if he had never existed.,89,Frank Capra,James Stewart,Donna Reed,Lionel Barrymore,Thomas Mitchell,405801, "https://m.media-amazon.com/images/M/MV5BNGVjNWI4ZGUtNzE0MS00YTJmLWE0ZDctN2ZiYTk2YmI3NTYyXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Joker,2019,A,122 min,"Crime, Drama, Thriller",8.5,"In Gotham City, mentally troubled comedian Arthur Fleck is disregarded and mistreated by society. He then embarks on a downward spiral of revolution and bloody crime. This path brings him face-to-face with his alter-ego: the Joker.",59,Todd Phillips,Joaquin Phoenix,Robert De Niro,Zazie Beetz,Frances Conroy,939252,"335,451,311" "https://m.media-amazon.com/images/M/MV5BOTA5NDZlZGUtMjAxOS00YTRkLTkwYmMtYWQ0NWEwZDZiNjEzXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Whiplash,2014,A,106 min,"Drama, Music",8.5,A promising young drummer enrolls at a cut-throat music conservatory where his dreams of greatness are mentored by an instructor who will stop at nothing to realize a student's potential.,88,Damien Chazelle,Miles Teller,J.K. Simmons,Melissa Benoist,Paul Reiser,717585,"13,092,000" "https://m.media-amazon.com/images/M/MV5BMTYxNDA3MDQwNl5BMl5BanBnXkFtZTcwNTU4Mzc1Nw@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Intouchables,2011,UA,112 min,"Biography, Comedy, Drama",8.5,"After he becomes a quadriplegic from a paragliding accident, an aristocrat hires a young man from the projects to be his caregiver.",57,Olivier Nakache,Éric Toledano,François Cluzet,Omar Sy,Anne Le Ny,760360,"13,182,281" "https://m.media-amazon.com/images/M/MV5BMjA4NDI0MTIxNF5BMl5BanBnXkFtZTYwNTM0MzY2._V1_UX67_CR0,0,67,98_AL_.jpg",The Prestige,2006,U,130 min,"Drama, Mystery, Sci-Fi",8.5,"After a tragic accident, two stage magicians engage in a battle to create the ultimate illusion while sacrificing everything they have to outwit each other.",66,Christopher Nolan,Christian Bale,Hugh Jackman,Scarlett Johansson,Michael Caine,1190259,"53,089,891" "https://m.media-amazon.com/images/M/MV5BMTI1MTY2OTIxNV5BMl5BanBnXkFtZTYwNjQ4NjY3._V1_UX67_CR0,0,67,98_AL_.jpg",The Departed,2006,A,151 min,"Crime, Drama, Thriller",8.5,An undercover cop and a mole in the police attempt to identify each other while infiltrating an Irish gang in South Boston.,85,Martin Scorsese,Leonardo DiCaprio,Matt Damon,Jack Nicholson,Mark Wahlberg,1189773,"132,384,315" "https://m.media-amazon.com/images/M/MV5BOWRiZDIxZjktMTA1NC00MDQ2LWEzMjUtMTliZmY3NjQ3ODJiXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY98_CR2,0,67,98_AL_.jpg",The Pianist,2002,R,150 min,"Biography, Drama, Music",8.5,A Polish Jewish musician struggles to survive the destruction of the Warsaw ghetto of World War II.,85,Roman Polanski,Adrien Brody,Thomas Kretschmann,Frank Finlay,Emilia Fox,729603,"32,572,577" "https://m.media-amazon.com/images/M/MV5BMDliMmNhNDEtODUyOS00MjNlLTgxODEtN2U3NzIxMGVkZTA1L2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Gladiator,2000,UA,155 min,"Action, Adventure, Drama",8.5,A former Roman General sets out to exact vengeance against the corrupt emperor who murdered his family and sent him into slavery.,67,Ridley Scott,Russell Crowe,Joaquin Phoenix,Connie Nielsen,Oliver Reed,1341460,"187,705,427" "https://m.media-amazon.com/images/M/MV5BZjA0MTM4MTQtNzY5MC00NzY3LWI1ZTgtYzcxMjkyMzU4MDZiXkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_UX67_CR0,0,67,98_AL_.jpg",American History X,1998,R,119 min,Drama,8.5,A former neo-nazi skinhead tries to prevent his younger brother from going down the same wrong path that he did.,62,Tony Kaye,Edward Norton,Edward Furlong,Beverly D'Angelo,Jennifer Lien,1034705,"6,719,864" "https://m.media-amazon.com/images/M/MV5BYTViNjMyNmUtNDFkNC00ZDRlLThmMDUtZDU2YWE4NGI2ZjVmXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",The Usual Suspects,1995,A,106 min,"Crime, Mystery, Thriller",8.5,"A sole survivor tells of the twisty events leading up to a horrific gun battle on a boat, which began when five criminals met at a seemingly random police lineup.",77,Bryan Singer,Kevin Spacey,Gabriel Byrne,Chazz Palminteri,Stephen Baldwin,991208,"23,341,568" "https://m.media-amazon.com/images/M/MV5BODllNWE0MmEtYjUwZi00ZjY3LThmNmQtZjZlMjI2YTZjYmQ0XkEyXkFqcGdeQXVyNTc1NTQxODI@._V1_UX67_CR0,0,67,98_AL_.jpg",Léon,1994,A,110 min,"Action, Crime, Drama",8.5,"Mathilda, a 12-year-old girl, is reluctantly taken in by Léon, a professional assassin, after her family is murdered. An unusual relationship forms as she becomes his protégée and learns the assassin's trade.",64,Luc Besson,Jean Reno,Gary Oldman,Natalie Portman,Danny Aiello,1035236,"19,501,238" "https://m.media-amazon.com/images/M/MV5BYTYxNGMyZTYtMjE3MS00MzNjLWFjNmYtMDk3N2FmM2JiM2M1XkEyXkFqcGdeQXVyNjY5NDU4NzI@._V1_UX67_CR0,0,67,98_AL_.jpg",The Lion King,1994,U,88 min,"Animation, Adventure, Drama",8.5,"Lion prince Simba and his father are targeted by his bitter uncle, who wants to ascend the throne himself.",88,Roger Allers,Rob Minkoff,Matthew Broderick,Jeremy Irons,James Earl Jones,942045,"422,783,777" "https://m.media-amazon.com/images/M/MV5BMGU2NzRmZjUtOGUxYS00ZjdjLWEwZWItY2NlM2JhNjkxNTFmXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Terminator 2: Judgment Day,1991,U,137 min,"Action, Sci-Fi",8.5,"A cyborg, identical to the one who failed to kill Sarah Connor, must now protect her teenage son, John Connor, from a more advanced and powerful cyborg.",75,James Cameron,Arnold Schwarzenegger,Linda Hamilton,Edward Furlong,Robert Patrick,995506,"204,843,350" "https://m.media-amazon.com/images/M/MV5BM2FhYjEyYmYtMDI1Yy00YTdlLWI2NWQtYmEzNzAxOGY1NjY2XkEyXkFqcGdeQXVyNTA3NTIyNDg@._V1_UX67_CR0,0,67,98_AL_.jpg",Nuovo Cinema Paradiso,1988,U,155 min,"Drama, Romance",8.5,A filmmaker recalls his childhood when falling in love with the pictures at the cinema of his home village and forms a deep friendship with the cinema's projectionist.,80,Giuseppe Tornatore,Philippe Noiret,Enzo Cannavale,Antonella Attili,Isa Danieli,230763,"11,990,401" "https://m.media-amazon.com/images/M/MV5BZmY2NjUzNDQtNTgxNC00M2Q4LTljOWQtMjNjNDBjNWUxNmJlXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UX67_CR0,0,67,98_AL_.jpg",Hotaru no haka,1988,U,89 min,"Animation, Drama, War",8.5,A young boy and his little sister struggle to survive in Japan during World War II.,94,Isao Takahata,Tsutomu Tatsumi,Ayano Shiraishi,Akemi Yamaguchi,Yoshiko Shinohara,235231, "https://m.media-amazon.com/images/M/MV5BZmU0M2Y1OGUtZjIxNi00ZjBkLTg1MjgtOWIyNThiZWIwYjRiXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Back to the Future,1985,U,116 min,"Adventure, Comedy, Sci-Fi",8.5,"Marty McFly, a 17-year-old high school student, is accidentally sent thirty years into the past in a time-traveling DeLorean invented by his close friend, the eccentric scientist Doc Brown.",87,Robert Zemeckis,Michael J. Fox,Christopher Lloyd,Lea Thompson,Crispin Glover,1058081,"210,609,762" "https://m.media-amazon.com/images/M/MV5BZGI5MjBmYzYtMzJhZi00NGI1LTk3MzItYjBjMzcxM2U3MDdiXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Once Upon a Time in the West,1968,U,165 min,Western,8.5,A mysterious stranger with a harmonica joins forces with a notorious desperado to protect a beautiful widow from a ruthless assassin working for the railroad.,80,Sergio Leone,Henry Fonda,Charles Bronson,Claudia Cardinale,Jason Robards,302844,"5,321,508" "https://m.media-amazon.com/images/M/MV5BNTQwNDM1YzItNDAxZC00NWY2LTk0M2UtNDIwNWI5OGUyNWUxXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Psycho,1960,A,109 min,"Horror, Mystery, Thriller",8.5,"A Phoenix secretary embezzles $40,000 from her employer's client, goes on the run, and checks into a remote motel run by a young man under the domination of his mother.",97,Alfred Hitchcock,Anthony Perkins,Janet Leigh,Vera Miles,John Gavin,604211,"32,000,000" "https://m.media-amazon.com/images/M/MV5BY2IzZGY2YmEtYzljNS00NTM5LTgwMzUtMzM1NjQ4NGI0OTk0XkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Casablanca,1942,U,102 min,"Drama, Romance, War",8.5,A cynical expatriate American cafe owner struggles to decide whether or not to help his former lover and her fugitive husband escape the Nazis in French Morocco.,100,Michael Curtiz,Humphrey Bogart,Ingrid Bergman,Paul Henreid,Claude Rains,522093,"1,024,560" "https://m.media-amazon.com/images/M/MV5BYjJiZjMzYzktNjU0NS00OTkxLWEwYzItYzdhYWJjN2QzMTRlL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Modern Times,1936,G,87 min,"Comedy, Drama, Family",8.5,The Tramp struggles to live in modern industrial society with the help of a young homeless woman.,96,Charles Chaplin,Charles Chaplin,Paulette Goddard,Henry Bergman,Tiny Sandford,217881,"163,245" "https://m.media-amazon.com/images/M/MV5BY2I4MmM1N2EtM2YzOS00OWUzLTkzYzctNDc5NDg2N2IyODJmXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",City Lights,1931,G,87 min,"Comedy, Drama, Romance",8.5,"With the aid of a wealthy erratic tippler, a dewy-eyed tramp who has fallen in love with a sightless flower girl accumulates money to be able to help her medically.",99,Charles Chaplin,Charles Chaplin,Virginia Cherrill,Florence Lee,Harry Myers,167839,"19,181" "https://m.media-amazon.com/images/M/MV5BMmExNzU2ZWMtYzUwYi00YmM2LTkxZTQtNmVhNjY0NTMyMWI2XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Capharnaüm,2018,A,126 min,Drama,8.4,"While serving a five-year sentence for a violent crime, a 12-year-old boy sues his parents for neglect.",75,Nadine Labaki,Zain Al Rafeea,Yordanos Shiferaw,Boluwatife Treasure Bankole,Kawsar Al Haddad,62635,"1,661,096" "https://m.media-amazon.com/images/M/MV5BNWJhMDlmZGUtYzcxNS00NDRiLWIwNjktNDY1Mjg3ZjBkYzY0XkEyXkFqcGdeQXVyMTU4MjUwMjI@._V1_UY98_CR2,0,67,98_AL_.jpg",Ayla: The Daughter of War,2017,,125 min,"Biography, Drama, History",8.4,"In 1950, amid-st the ravages of the Korean War, Sergeant Süleyman stumbles upon a half-frozen little girl, with no parents and no help in sight. Frantic, scared and on the verge of death, ... See full summary »",,Can Ulkay,Erdem Can,Çetin Tekindor,Ismail Hacioglu,Kyung-jin Lee,34112, "https://m.media-amazon.com/images/M/MV5BY2FiMTFmMzMtZDI2ZC00NDQyLWExYTUtOWNmZWM1ZDg5YjVjXkEyXkFqcGdeQXVyODIwMDI1NjM@._V1_UX67_CR0,0,67,98_AL_.jpg",Vikram Vedha,2017,UA,147 min,"Action, Crime, Drama",8.4,"Vikram, a no-nonsense police officer, accompanied by Simon, his partner, is on the hunt to capture Vedha, a smuggler and a murderer. Vedha tries to change Vikram's life, which leads to a conflict.",,Gayatri,Pushkar,Madhavan,Vijay Sethupathi,Shraddha Srinath,28401, "https://m.media-amazon.com/images/M/MV5BODRmZDVmNzUtZDA4ZC00NjhkLWI2M2UtN2M0ZDIzNDcxYThjL2ltYWdlXkEyXkFqcGdeQXVyNTk0MzMzODA@._V1_UX67_CR0,0,67,98_AL_.jpg",Kimi no na wa.,2016,U,106 min,"Animation, Drama, Fantasy",8.4,"Two strangers find themselves linked in a bizarre way. When a connection forms, will distance be the only thing to keep them apart?",79,Makoto Shinkai,Ryûnosuke Kamiki,Mone Kamishiraishi,Ryô Narita,Aoi Yûki,194838,"5,017,246" "https://m.media-amazon.com/images/M/MV5BMTQ4MzQzMzM2Nl5BMl5BanBnXkFtZTgwMTQ1NzU3MDI@._V1_UY98_CR1,0,67,98_AL_.jpg",Dangal,2016,U,161 min,"Action, Biography, Drama",8.4,Former wrestler Mahavir Singh Phogat and his two wrestler daughters struggle towards glory at the Commonwealth Games in the face of societal oppression.,,Nitesh Tiwari,Aamir Khan,Sakshi Tanwar,Fatima Sana Shaikh,Sanya Malhotra,156479,"12,391,761" "https://m.media-amazon.com/images/M/MV5BMjMwNDkxMTgzOF5BMl5BanBnXkFtZTgwNTkwNTQ3NjM@._V1_UX67_CR0,0,67,98_AL_.jpg",Spider-Man: Into the Spider-Verse,2018,U,117 min,"Animation, Action, Adventure",8.4,"Teen Miles Morales becomes the Spider-Man of his universe, and must join with five spider-powered individuals from other dimensions to stop a threat for all realities.",87,Bob Persichetti,Peter Ramsey,Rodney Rothman,Shameik Moore,Jake Johnson,375110,"190,241,310" "https://m.media-amazon.com/images/M/MV5BMTc5MDE2ODcwNV5BMl5BanBnXkFtZTgwMzI2NzQ2NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Avengers: Endgame,2019,UA,181 min,"Action, Adventure, Drama",8.4,"After the devastating events of Avengers: Infinity War (2018), the universe is in ruins. With the help of remaining allies, the Avengers assemble once more in order to reverse Thanos' actions and restore balance to the universe.",78,Anthony Russo,Joe Russo,Robert Downey Jr.,Chris Evans,Mark Ruffalo,809955,"858,373,000" "https://m.media-amazon.com/images/M/MV5BMjMxNjY2MDU1OV5BMl5BanBnXkFtZTgwNzY1MTUwNTM@._V1_UX67_CR0,0,67,98_AL_.jpg",Avengers: Infinity War,2018,UA,149 min,"Action, Adventure, Sci-Fi",8.4,The Avengers and their allies must be willing to sacrifice all in an attempt to defeat the powerful Thanos before his blitz of devastation and ruin puts an end to the universe.,68,Anthony Russo,Joe Russo,Robert Downey Jr.,Chris Hemsworth,Mark Ruffalo,834477,"678,815,482" "https://m.media-amazon.com/images/M/MV5BYjQ5NjM0Y2YtNjZkNC00ZDhkLWJjMWItN2QyNzFkMDE3ZjAxXkEyXkFqcGdeQXVyODIxMzk5NjA@._V1_UY98_CR1,0,67,98_AL_.jpg",Coco,2017,U,105 min,"Animation, Adventure, Family",8.4,"Aspiring musician Miguel, confronted with his family's ancestral ban on music, enters the Land of the Dead to find his great-great-grandfather, a legendary singer.",81,Lee Unkrich,Adrian Molina,Anthony Gonzalez,Gael García Bernal,Benjamin Bratt,384171,"209,726,015" "https://m.media-amazon.com/images/M/MV5BMjIyNTQ5NjQ1OV5BMl5BanBnXkFtZTcwODg1MDU4OA@@._V1_UX67_CR0,0,67,98_AL_.jpg",Django Unchained,2012,A,165 min,"Drama, Western",8.4,"With the help of a German bounty hunter, a freed slave sets out to rescue his wife from a brutal Mississippi plantation owner.",81,Quentin Tarantino,Jamie Foxx,Christoph Waltz,Leonardo DiCaprio,Kerry Washington,1357682,"162,805,434" "https://m.media-amazon.com/images/M/MV5BMTk4ODQzNDY3Ml5BMl5BanBnXkFtZTcwODA0NTM4Nw@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Dark Knight Rises,2012,UA,164 min,"Action, Adventure",8.4,"Eight years after the Joker's reign of anarchy, Batman, with the help of the enigmatic Catwoman, is forced from his exile to save Gotham City from the brutal guerrilla terrorist Bane.",78,Christopher Nolan,Christian Bale,Tom Hardy,Anne Hathaway,Gary Oldman,1516346,"448,139,099" "https://m.media-amazon.com/images/M/MV5BNTkyOGVjMGEtNmQzZi00NzFlLTlhOWQtODYyMDc2ZGJmYzFhXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY98_CR0,0,67,98_AL_.jpg",3 Idiots,2009,UA,170 min,"Comedy, Drama",8.4,"Two friends are searching for their long lost companion. They revisit their college days and recall the memories of their friend who inspired them to think differently, even as the rest of the world called them ""idiots"".",67,Rajkumar Hirani,Aamir Khan,Madhavan,Mona Singh,Sharman Joshi,344445,"6,532,908" "https://m.media-amazon.com/images/M/MV5BMDhjZWViN2MtNzgxOS00NmI4LThiZDQtZDI3MzM4MDE4NTc0XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY98_CR1,0,67,98_AL_.jpg",Taare Zameen Par,2007,U,165 min,"Drama, Family",8.4,"An eight-year-old boy is thought to be a lazy trouble-maker, until the new art teacher has the patience and compassion to discover the real problem behind his struggles in school.",,Aamir Khan,Amole Gupte,Darsheel Safary,Aamir Khan,Tisca Chopra,168895,"1,223,869" "https://m.media-amazon.com/images/M/MV5BMjExMTg5OTU0NF5BMl5BanBnXkFtZTcwMjMxMzMzMw@@._V1_UX67_CR0,0,67,98_AL_.jpg",WALL·E,2008,U,98 min,"Animation, Adventure, Family",8.4,"In the distant future, a small waste-collecting robot inadvertently embarks on a space journey that will ultimately decide the fate of mankind.",95,Andrew Stanton,Ben Burtt,Elissa Knight,Jeff Garlin,Fred Willard,999790,"223,808,164" "https://m.media-amazon.com/images/M/MV5BOThkM2EzYmMtNDE3NS00NjlhLTg4YzktYTdhNzgyOWY3ZDYzXkEyXkFqcGdeQXVyNzQzNzQxNzI@._V1_UY98_CR1,0,67,98_AL_.jpg",The Lives of Others,2006,A,137 min,"Drama, Mystery, Thriller",8.4,"In 1984 East Berlin, an agent of the secret police, conducting surveillance on a writer and his lover, finds himself becoming increasingly absorbed by their lives.",89,Florian Henckel von Donnersmarck,Ulrich Mühe,Martina Gedeck,Sebastian Koch,Ulrich Tukur,358685,"11,286,112" "https://m.media-amazon.com/images/M/MV5BMTI3NTQyMzU5M15BMl5BanBnXkFtZTcwMTM2MjgyMQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Oldeuboi,2003,A,101 min,"Action, Drama, Mystery",8.4,"After being kidnapped and imprisoned for fifteen years, Oh Dae-Su is released, only to find that he must find his captor in five days.",77,Chan-wook Park,Choi Min-sik,Yoo Ji-Tae,Kang Hye-jeong,Kim Byeong-Ok,515451,"707,481" "https://m.media-amazon.com/images/M/MV5BZTcyNjk1MjgtOWI3Mi00YzQwLWI5MTktMzY4ZmI2NDAyNzYzXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Memento,2000,UA,113 min,"Mystery, Thriller",8.4,A man with short-term memory loss attempts to track down his wife's murderer.,80,Christopher Nolan,Guy Pearce,Carrie-Anne Moss,Joe Pantoliano,Mark Boone Junior,1125712,"25,544,867" "https://m.media-amazon.com/images/M/MV5BNGIzY2IzODQtNThmMi00ZDE4LWI5YzAtNzNlZTM1ZjYyYjUyXkEyXkFqcGdeQXVyODEzNjM5OTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Mononoke-hime,1997,U,134 min,"Animation, Action, Adventure",8.4,"On a journey to find the cure for a Tatarigami's curse, Ashitaka finds himself in the middle of a war between the forest gods and Tatara, a mining colony. In this quest he also meets San, the Mononoke Hime.",76,Hayao Miyazaki,Yôji Matsuda,Yuriko Ishida,Yûko Tanaka,Billy Crudup,343171,"2,375,308" "https://m.media-amazon.com/images/M/MV5BMGFkNWI4MTMtNGQ0OC00MWVmLTk3MTktOGYxN2Y2YWVkZWE2XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Once Upon a Time in America,1984,A,229 min,"Crime, Drama",8.4,"A former Prohibition-era Jewish gangster returns to the Lower East Side of Manhattan over thirty years later, where he once again must confront the ghosts and regrets of his old life.",,Sergio Leone,Robert De Niro,James Woods,Elizabeth McGovern,Treat Williams,311365,"5,321,508" "https://m.media-amazon.com/images/M/MV5BMjA0ODEzMTc1Nl5BMl5BanBnXkFtZTcwODM2MjAxNA@@._V1_UX67_CR0,0,67,98_AL_.jpg",Raiders of the Lost Ark,1981,A,115 min,"Action, Adventure",8.4,"In 1936, archaeologist and adventurer Indiana Jones is hired by the U.S. government to find the Ark of the Covenant before Adolf Hitler's Nazis can obtain its awesome powers.",85,Steven Spielberg,Harrison Ford,Karen Allen,Paul Freeman,John Rhys-Davies,884112,"248,159,971" "https://m.media-amazon.com/images/M/MV5BZWFlYmY2MGEtZjVkYS00YzU4LTg0YjQtYzY1ZGE3NTA5NGQxXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",The Shining,1980,A,146 min,"Drama, Horror",8.4,"A family heads to an isolated hotel for the winter where a sinister presence influences the father into violence, while his psychic son sees horrific forebodings from both past and future.",66,Stanley Kubrick,Jack Nicholson,Shelley Duvall,Danny Lloyd,Scatman Crothers,898237,"44,017,374" "https://m.media-amazon.com/images/M/MV5BMDdhODg0MjYtYzBiOS00ZmI5LWEwZGYtZDEyNDU4MmQyNzFkXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Apocalypse Now,1979,R,147 min,"Drama, Mystery, War",8.4,A U.S. Army officer serving in Vietnam is tasked with assassinating a renegade Special Forces Colonel who sees himself as a god.,94,Francis Ford Coppola,Martin Sheen,Marlon Brando,Robert Duvall,Frederic Forrest,606398,"83,471,511" "https://m.media-amazon.com/images/M/MV5BMmQ2MmU3NzktZjAxOC00ZDZhLTk4YzEtMDMyMzcxY2IwMDAyXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Alien,1979,R,117 min,"Horror, Sci-Fi",8.4,"After a space merchant vessel receives an unknown transmission as a distress call, one of the crew is attacked by a mysterious life form and they soon realize that its life cycle has merely begun.",89,Ridley Scott,Sigourney Weaver,Tom Skerritt,John Hurt,Veronica Cartwright,787806,"78,900,000" "https://m.media-amazon.com/images/M/MV5BYmYzNmM2MDctZGY3Yi00NjRiLWIxZjctYjgzYTcxYTNhYTMyXkEyXkFqcGdeQXVyMjUxMTY3ODM@._V1_UY98_CR1,0,67,98_AL_.jpg",Anand,1971,U,122 min,"Drama, Musical",8.4,"The story of a terminally ill man who wishes to live life to the fullest before the inevitable occurs, as told by his best friend.",,Hrishikesh Mukherjee,Rajesh Khanna,Amitabh Bachchan,Sumita Sanyal,Ramesh Deo,30273, "https://m.media-amazon.com/images/M/MV5BOTI4NTNhZDMtMWNkZi00MTRmLWJmZDQtMmJkMGVmZTEzODlhXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Tengoku to jigoku,1963,,143 min,"Crime, Drama, Mystery",8.4,An executive of a shoe company becomes a victim of extortion when his chauffeur's son is kidnapped and held for ransom.,,Akira Kurosawa,Toshirô Mifune,Yutaka Sada,Tatsuya Nakadai,Kyôko Kagawa,34357, "https://m.media-amazon.com/images/M/MV5BZWI3ZTMxNjctMjdlNS00NmUwLWFiM2YtZDUyY2I3N2MxYTE0XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb,1964,A,95 min,Comedy,8.4,An insane general triggers a path to nuclear holocaust that a War Room full of politicians and generals frantically tries to stop.,97,Stanley Kubrick,Peter Sellers,George C. Scott,Sterling Hayden,Keenan Wynn,450474,"275,902" "https://m.media-amazon.com/images/M/MV5BNDQwODU5OWYtNDcyNi00MDQ1LThiOGMtZDkwNWJiM2Y3MDg0XkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Witness for the Prosecution,1957,U,116 min,"Crime, Drama, Mystery",8.4,A veteran British barrister must defend his client in a murder trial that has surprise after surprise.,,Billy Wilder,Tyrone Power,Marlene Dietrich,Charles Laughton,Elsa Lanchester,108862,"8,175,000" "https://m.media-amazon.com/images/M/MV5BNjViMmRkOTEtM2ViOS00ODg0LWJhYWEtNTBlOGQxNDczOGY3XkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UY98_CR2,0,67,98_AL_.jpg",Paths of Glory,1957,A,88 min,"Drama, War",8.4,"After refusing to attack an enemy position, a general accuses the soldiers of cowardice and their commanding officer must defend them.",90,Stanley Kubrick,Kirk Douglas,Ralph Meeker,Adolphe Menjou,George Macready,178092, "https://m.media-amazon.com/images/M/MV5BNGUxYWM3M2MtMGM3Mi00ZmRiLWE0NGQtZjE5ODI2OTJhNTU0XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Rear Window,1954,U,112 min,"Mystery, Thriller",8.4,A wheelchair-bound photographer spies on his neighbors from his apartment window and becomes convinced one of them has committed murder.,100,Alfred Hitchcock,James Stewart,Grace Kelly,Wendell Corey,Thelma Ritter,444074,"36,764,313" "https://m.media-amazon.com/images/M/MV5BMTU0NTkyNzYwMF5BMl5BanBnXkFtZTgwMDU0NDk5MTI@._V1_UX67_CR0,0,67,98_AL_.jpg",Sunset Blvd.,1950,Passed,110 min,"Drama, Film-Noir",8.4,A screenwriter develops a dangerous relationship with a faded film star determined to make a triumphant return.,,Billy Wilder,William Holden,Gloria Swanson,Erich von Stroheim,Nancy Olson,201632, "https://m.media-amazon.com/images/M/MV5BMmExYWJjNTktNGUyZS00ODhmLTkxYzAtNWIzOGEyMGNiMmUwXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",The Great Dictator,1940,Passed,125 min,"Comedy, Drama, War",8.4,Dictator Adenoid Hynkel tries to expand his empire while a poor Jewish barber tries to avoid persecution from Hynkel's regime.,,Charles Chaplin,Charles Chaplin,Paulette Goddard,Jack Oakie,Reginald Gardiner,203150,"288,475" "https://m.media-amazon.com/images/M/MV5BOTdmNTFjNDEtNzg0My00ZjkxLTg1ZDAtZTdkMDc2ZmFiNWQ1XkEyXkFqcGdeQXVyNTAzNzgwNTg@._V1_UX67_CR0,0,67,98_AL_.jpg",1917,2019,R,119 min,"Drama, Thriller, War",8.3,"April 6th, 1917. As a regiment assembles to wage war deep in enemy territory, two soldiers are assigned to race against time and deliver a message that will stop 1,600 men from walking straight into a deadly trap.",78,Sam Mendes,Dean-Charles Chapman,George MacKay,Daniel Mays,Colin Firth,425844,"159,227,644" "https://m.media-amazon.com/images/M/MV5BYmQxNmU4ZjgtYzE5Mi00ZDlhLTlhOTctMzJkNjk2ZGUyZGEwXkEyXkFqcGdeQXVyMzgxMDA0Nzk@._V1_UY98_CR1,0,67,98_AL_.jpg",Tumbbad,2018,A,104 min,"Drama, Fantasy, Horror",8.3,A mythological story about a goddess who created the entire universe. The plot revolves around the consequences when humans build a temple for her first-born.,,Rahi Anil Barve,Anand Gandhi,Adesh Prasad,Sohum Shah,Jyoti Malshe,27793, "https://m.media-amazon.com/images/M/MV5BZWZhMjhhZmYtOTIzOC00MGYzLWI1OGYtM2ZkN2IxNTI4ZWI3XkEyXkFqcGdeQXVyNDAzNDk0MTQ@._V1_UY98_CR0,0,67,98_AL_.jpg",Andhadhun,2018,UA,139 min,"Crime, Drama, Music",8.3,"A series of mysterious events change the life of a blind pianist, who must now report a crime that he should technically know nothing of.",,Sriram Raghavan,Ayushmann Khurrana,Tabu,Radhika Apte,Anil Dhawan,71875,"1,373,943" "https://m.media-amazon.com/images/M/MV5BYmY3MzYwMGUtOWMxYS00OGVhLWFjNmUtYzlkNGVmY2ZkMjA3XkEyXkFqcGdeQXVyMTExNDQ2MTI@._V1_UY98_CR4,0,67,98_AL_.jpg",Drishyam,2013,U,160 min,"Crime, Drama, Thriller",8.3,A man goes to extreme lengths to save his family from punishment after the family commits an accidental crime.,,Jeethu Joseph,Mohanlal,Meena,Asha Sharath,Ansiba,30722, "https://m.media-amazon.com/images/M/MV5BMTg2NDg3ODg4NF5BMl5BanBnXkFtZTcwNzk3NTc3Nw@@._V1_UY98_CR1,0,67,98_AL_.jpg",Jagten,2012,R,115 min,Drama,8.3,"A teacher lives a lonely life, all the while struggling over his son's custody. His life slowly gets better as he finds love and receives good news from his son, but his new luck is about to be brutally shattered by an innocent little lie.",77,Thomas Vinterberg,Mads Mikkelsen,Thomas Bo Larsen,Annika Wedderkopp,Lasse Fogelstrøm,281623,"687,185" "https://m.media-amazon.com/images/M/MV5BN2JmMjViMjMtZTM5Mi00ZGZkLTk5YzctZDg5MjFjZDE4NjNkXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Jodaeiye Nader az Simin,2011,PG-13,123 min,Drama,8.3,A married couple are faced with a difficult decision - to improve the life of their child by moving to another country or to stay in Iran and look after a deteriorating parent who has Alzheimer's disease.,95,Asghar Farhadi,Payman Maadi,Leila Hatami,Sareh Bayat,Shahab Hosseini,220002,"7,098,492" "https://m.media-amazon.com/images/M/MV5BMWE3MGYzZjktY2Q5Mi00Y2NiLWIyYWUtMmIyNzA3YmZlMGFhXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Incendies,2010,R,131 min,"Drama, Mystery, War",8.3,Twins journey to the Middle East to discover their family history and fulfill their mother's last wishes.,80,Denis Villeneuve,Lubna Azabal,Mélissa Désormeaux-Poulin,Maxim Gaudette,Mustafa Kamel,150023,"6,857,096" "https://m.media-amazon.com/images/M/MV5BOGE3N2QxN2YtM2ZlNS00MWIyLWE1NDAtYWFlN2FiYjY1MjczXkEyXkFqcGdeQXVyOTUwNzc0ODc@._V1_UY98_CR1,0,67,98_AL_.jpg",Miracle in cell NO.7,2019,TV-14,132 min,Drama,8.3,A story of love between a mentally-ill father who was wrongly accused of murder and his lovely six years old daughter. The prison would be their home. Based on the 2013 Korean movie 7-beon-bang-ui seon-mul (2013).,,Mehmet Ada Öztekin,Aras Bulut Iynemli,Nisa Sofiya Aksongur,Deniz Baysal,Celile Toyon Uysal,33935, "https://m.media-amazon.com/images/M/MV5BNjAzMzEwYzctNjc1MC00Nzg5LWFmMGItMTgzYmMyNTY2OTQ4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY98_CR0,0,67,98_AL_.jpg",Babam ve Oglum,2005,,112 min,"Drama, Family",8.3,The family of a left-wing journalist is torn apart after the military coup of Turkey in 1980.,,Çagan Irmak,Çetin Tekindor,Fikret Kuskan,Hümeyra,Ege Tanman,78925, "https://m.media-amazon.com/images/M/MV5BOTJiNDEzOWYtMTVjOC00ZjlmLWE0NGMtZmE1OWVmZDQ2OWJhXkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_UX67_CR0,0,67,98_AL_.jpg",Inglourious Basterds,2009,A,153 min,"Adventure, Drama, War",8.3,"In Nazi-occupied France during World War II, a plan to assassinate Nazi leaders by a group of Jewish U.S. soldiers coincides with a theatre owner's vengeful plans for the same.",69,Quentin Tarantino,Brad Pitt,Diane Kruger,Eli Roth,Mélanie Laurent,1267869,"120,540,719" "https://m.media-amazon.com/images/M/MV5BMTY4NzcwODg3Nl5BMl5BanBnXkFtZTcwNTEwOTMyMw@@._V1_UX67_CR0,0,67,98_AL_.jpg",Eternal Sunshine of the Spotless Mind,2004,UA,108 min,"Drama, Romance, Sci-Fi",8.3,"When their relationship turns sour, a couple undergoes a medical procedure to have each other erased from their memories.",89,Michel Gondry,Jim Carrey,Kate Winslet,Tom Wilkinson,Gerry Robert Byrne,911664,"34,400,301" "https://m.media-amazon.com/images/M/MV5BNDg4NjM1YjMtYmNhZC00MjM0LWFiZmYtNGY1YjA3MzZmODc5XkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Amélie,2001,U,122 min,"Comedy, Romance",8.3,"Amélie is an innocent and naive girl in Paris with her own sense of justice. She decides to help those around her and, along the way, discovers love.",69,Jean-Pierre Jeunet,Audrey Tautou,Mathieu Kassovitz,Rufus,Lorella Cravotta,703810,"33,225,499" "https://m.media-amazon.com/images/M/MV5BMTA2NDYxOGYtYjU1Mi00Y2QzLTgxMTQtMWI1MGI0ZGQ5MmU4XkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_UY98_CR0,0,67,98_AL_.jpg",Snatch,2000,UA,104 min,"Comedy, Crime",8.3,"Unscrupulous boxing promoters, violent bookmakers, a Russian gangster, incompetent amateur robbers and supposedly Jewish jewelers fight to track down a priceless stolen diamond.",55,Guy Ritchie,Jason Statham,Brad Pitt,Benicio Del Toro,Dennis Farina,782001,"30,328,156" "https://m.media-amazon.com/images/M/MV5BOTdiNzJlOWUtNWMwNS00NmFlLWI0YTEtZmI3YjIzZWUyY2Y3XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Requiem for a Dream,2000,A,102 min,Drama,8.3,The drug-induced utopias of four Coney Island people are shattered when their addictions run deep.,68,Darren Aronofsky,Ellen Burstyn,Jared Leto,Jennifer Connelly,Marlon Wayans,766870,"3,635,482" "https://m.media-amazon.com/images/M/MV5BNTBmZWJkNjctNDhiNC00MGE2LWEwOTctZTk5OGVhMWMyNmVhXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",American Beauty,1999,UA,122 min,Drama,8.3,A sexually frustrated suburban father has a mid-life crisis after becoming infatuated with his daughter's best friend.,84,Sam Mendes,Kevin Spacey,Annette Bening,Thora Birch,Wes Bentley,1069738,"130,096,601" "https://m.media-amazon.com/images/M/MV5BOTI0MzcxMTYtZDVkMy00NjY1LTgyMTYtZmUxN2M3NmQ2NWJhXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Good Will Hunting,1997,U,126 min,"Drama, Romance",8.3,"Will Hunting, a janitor at M.I.T., has a gift for mathematics, but needs help from a psychologist to find direction in his life.",70,Gus Van Sant,Robin Williams,Matt Damon,Ben Affleck,Stellan Skarsgård,861606,"138,433,435" "https://m.media-amazon.com/images/M/MV5BZTYwZWQ4ZTQtZWU0MS00N2YwLWEzMDItZWFkZWY0MWVjODVhXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Bacheha-Ye aseman,1997,PG,89 min,"Drama, Family, Sport",8.3,"After a boy loses his sister's pair of shoes, he goes on a series of adventures in order to find them. When he can't, he tries a new way to ""win"" a new pair.",77,Majid Majidi,Mohammad Amir Naji,Amir Farrokh Hashemian,Bahare Seddiqi,Nafise Jafar-Mohammadi,65341,"933,933" "https://m.media-amazon.com/images/M/MV5BMDU2ZWJlMjktMTRhMy00ZTA5LWEzNDgtYmNmZTEwZTViZWJkXkEyXkFqcGdeQXVyNDQ2OTk4MzI@._V1_UX67_CR0,0,67,98_AL_.jpg",Toy Story,1995,U,81 min,"Animation, Adventure, Comedy",8.3,A cowboy doll is profoundly threatened and jealous when a new spaceman figure supplants him as top toy in a boy's room.,95,John Lasseter,Tom Hanks,Tim Allen,Don Rickles,Jim Varney,887429,"191,796,233" "https://m.media-amazon.com/images/M/MV5BMzkzMmU0YTYtOWM3My00YzBmLWI0YzctOGYyNTkwMWE5MTJkXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Braveheart,1995,A,178 min,"Biography, Drama, History",8.3,Scottish warrior William Wallace leads his countrymen in a rebellion to free his homeland from the tyranny of King Edward I of England.,68,Mel Gibson,Mel Gibson,Sophie Marceau,Patrick McGoohan,Angus Macfadyen,959181,"75,600,000" "https://m.media-amazon.com/images/M/MV5BZmExNmEwYWItYmQzOS00YjA5LTk2MjktZjEyZDE1Y2QxNjA1XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Reservoir Dogs,1992,R,99 min,"Crime, Drama, Thriller",8.3,"When a simple jewelry heist goes horribly wrong, the surviving criminals begin to suspect that one of them is a police informant.",79,Quentin Tarantino,Harvey Keitel,Tim Roth,Michael Madsen,Chris Penn,918562,"2,832,029" "https://m.media-amazon.com/images/M/MV5BNzkxODk0NjEtYjc4Mi00ZDI0LTgyYjEtYzc1NDkxY2YzYTgyXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Full Metal Jacket,1987,UA,116 min,"Drama, War",8.3,A pragmatic U.S. Marine observes the dehumanizing effects the Vietnam War has on his fellow recruits from their brutal boot camp training to the bloody street fighting in Hue.,76,Stanley Kubrick,Matthew Modine,R. Lee Ermey,Vincent D'Onofrio,Adam Baldwin,675146,"46,357,676" "https://m.media-amazon.com/images/M/MV5BODM4Njg0NTAtYjI5Ny00ZjAxLTkwNmItZTMxMWU5M2U3M2RjXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Idi i smotri,1985,A,142 min,"Drama, Thriller, War",8.3,"After finding an old rifle, a young boy joins the Soviet resistance movement against ruthless German forces and experiences the horrors of World War II.",,Elem Klimov,Aleksey Kravchenko,Olga Mironova,Liubomiras Laucevicius,Vladas Bagdonas,59056, "https://m.media-amazon.com/images/M/MV5BZGU2OGY5ZTYtMWNhYy00NjZiLWI0NjUtZmNhY2JhNDRmODU3XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Aliens,1986,U,137 min,"Action, Adventure, Sci-Fi",8.3,"Fifty-seven years after surviving an apocalyptic attack aboard her space vessel by merciless space creatures, Officer Ripley awakens from hyper-sleep and tries to warn anyone who will listen about the predators.",84,James Cameron,Sigourney Weaver,Michael Biehn,Carrie Henn,Paul Reiser,652719,"85,160,248" "https://m.media-amazon.com/images/M/MV5BNWJlNzUzNGMtYTAwMS00ZjI2LWFmNWQtODcxNWUxODA5YmU1XkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_UX67_CR0,0,67,98_AL_.jpg",Amadeus,1984,R,160 min,"Biography, Drama, History",8.3,"The life, success and troubles of Wolfgang Amadeus Mozart, as told by Antonio Salieri, the contemporaneous composer who was insanely jealous of Mozart's talent and claimed to have murdered him.",88,Milos Forman,F. Murray Abraham,Tom Hulce,Elizabeth Berridge,Roy Dotrice,369007,"51,973,029" "https://m.media-amazon.com/images/M/MV5BNjdjNGQ4NDEtNTEwYS00MTgxLTliYzQtYzE2ZDRiZjFhZmNlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Scarface,1983,A,170 min,"Crime, Drama",8.3,"In 1980 Miami, a determined Cuban immigrant takes over a drug cartel and succumbs to greed.",65,Brian De Palma,Al Pacino,Michelle Pfeiffer,Steven Bauer,Mary Elizabeth Mastrantonio,740911,"45,598,982" "https://m.media-amazon.com/images/M/MV5BOWZlMjFiYzgtMTUzNC00Y2IzLTk1NTMtZmNhMTczNTk0ODk1XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Star Wars: Episode VI - Return of the Jedi,1983,U,131 min,"Action, Adventure, Fantasy",8.3,"After a daring mission to rescue Han Solo from Jabba the Hutt, the Rebels dispatch to Endor to destroy the second Death Star. Meanwhile, Luke struggles to help Darth Vader back from the dark side without falling into the Emperor's trap.",58,Richard Marquand,Mark Hamill,Harrison Ford,Carrie Fisher,Billy Dee Williams,950470,"309,125,409" "https://m.media-amazon.com/images/M/MV5BOGZhZDIzNWMtNjkxMS00MDQ1LThkMTYtZWQzYWU3MWMxMGU5XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Das Boot,1981,R,149 min,"Adventure, Drama, Thriller",8.3,"The claustrophobic world of a WWII German U-boat; boredom, filth and sheer terror.",86,Wolfgang Petersen,Jürgen Prochnow,Herbert Grönemeyer,Klaus Wennemann,Hubertus Bengsch,231855,"11,487,676" "https://m.media-amazon.com/images/M/MV5BM2M1MmVhNDgtNmI0YS00ZDNmLTkyNjctNTJiYTQ2N2NmYzc2XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Taxi Driver,1976,A,114 min,"Crime, Drama",8.3,"A mentally unstable veteran works as a nighttime taxi driver in New York City, where the perceived decadence and sleaze fuels his urge for violent action by attempting to liberate a presidential campaign worker and an underage prostitute.",94,Martin Scorsese,Robert De Niro,Jodie Foster,Cybill Shepherd,Albert Brooks,724636,"28,262,574" "https://m.media-amazon.com/images/M/MV5BNGU3NjQ4YTMtZGJjOS00YTQ3LThmNmItMTI5MDE2ODI3NzY3XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_UX67_CR0,0,67,98_AL_.jpg",The Sting,1973,U,129 min,"Comedy, Crime, Drama",8.3,Two grifters team up to pull off the ultimate con.,83,George Roy Hill,Paul Newman,Robert Redford,Robert Shaw,Charles Durning,241513,"159,600,000" "https://m.media-amazon.com/images/M/MV5BMTY3MjM1Mzc4N15BMl5BanBnXkFtZTgwODM0NzAxMDE@._V1_UX67_CR0,0,67,98_AL_.jpg",A Clockwork Orange,1971,A,136 min,"Crime, Drama, Sci-Fi",8.3,"In the future, a sadistic gang leader is imprisoned and volunteers for a conduct-aversion experiment, but it doesn't go as planned.",77,Stanley Kubrick,Malcolm McDowell,Patrick Magee,Michael Bates,Warren Clarke,757904,"6,207,725" "https://m.media-amazon.com/images/M/MV5BMmNlYzRiNDctZWNhMi00MzI4LThkZTctMTUzMmZkMmFmNThmXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",2001: A Space Odyssey,1968,U,149 min,"Adventure, Sci-Fi",8.3,"After discovering a mysterious artifact buried beneath the Lunar surface, mankind sets off on a quest to find its origins with help from intelligent supercomputer H.A.L. 9000.",84,Stanley Kubrick,Keir Dullea,Gary Lockwood,William Sylvester,Daniel Richter,603517,"56,954,992" "https://m.media-amazon.com/images/M/MV5BNWM1NmYyM2ItMTFhNy00NDU0LThlYWUtYjQyYTJmOTY0ZmM0XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Per qualche dollaro in più,1965,U,132 min,Western,8.3,Two bounty hunters with the same intentions team up to track down a Western outlaw.,74,Sergio Leone,Clint Eastwood,Lee Van Cleef,Gian Maria Volontè,Mara Krupp,232772,"15,000,000" "https://m.media-amazon.com/images/M/MV5BYWY5ZjhjNGYtZmI2Ny00ODM0LWFkNzgtZmI1YzA2N2MxMzA0XkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_UY98_CR0,0,67,98_AL_.jpg",Lawrence of Arabia,1962,U,228 min,"Adventure, Biography, Drama",8.3,"The story of T.E. Lawrence, the English officer who successfully united and led the diverse, often warring, Arab tribes during World War I in order to fight the Turks.",100,David Lean,Peter O'Toole,Alec Guinness,Anthony Quinn,Jack Hawkins,268085,"44,824,144" "https://m.media-amazon.com/images/M/MV5BNzkwODFjNzItMmMwNi00MTU5LWE2MzktM2M4ZDczZGM1MmViXkEyXkFqcGdeQXVyNDY2MTk1ODk@._V1_UX67_CR0,0,67,98_AL_.jpg",The Apartment,1960,U,125 min,"Comedy, Drama, Romance",8.3,"A man tries to rise in his company by letting its executives use his apartment for trysts, but complications and a romance of his own ensue.",94,Billy Wilder,Jack Lemmon,Shirley MacLaine,Fred MacMurray,Ray Walston,164363,"18,600,000" "https://m.media-amazon.com/images/M/MV5BZDA3NDExMTUtMDlhOC00MmQ5LWExZGUtYmI1NGVlZWI4OWNiXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",North by Northwest,1959,U,136 min,"Adventure, Mystery, Thriller",8.3,A New York City advertising executive goes on the run after being mistaken for a government agent by a group of foreign spies.,98,Alfred Hitchcock,Cary Grant,Eva Marie Saint,James Mason,Jessie Royce Landis,299198,"13,275,000" "https://m.media-amazon.com/images/M/MV5BYTE4ODEwZDUtNDFjOC00NjAxLWEzYTQtYTI1NGVmZmFlNjdiL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Vertigo,1958,A,128 min,"Mystery, Romance, Thriller",8.3,A former police detective juggles wrestling with his personal demons and becoming obsessed with a hauntingly beautiful woman.,100,Alfred Hitchcock,James Stewart,Kim Novak,Barbara Bel Geddes,Tom Helmore,364368,"3,200,000" "https://m.media-amazon.com/images/M/MV5BZDRjNGViMjQtOThlMi00MTA3LThkYzQtNzJkYjBkMGE0YzE1XkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_UY98_CR0,0,67,98_AL_.jpg",Singin' in the Rain,1952,G,103 min,"Comedy, Musical, Romance",8.3,A silent film production company and cast make a difficult transition to sound.,99,Stanley Donen,Gene Kelly,Gene Kelly,Donald O'Connor,Debbie Reynolds,218957,"8,819,028" "https://m.media-amazon.com/images/M/MV5BZmM0NGY3Y2MtMTA1YS00YmQzLTk2YTctYWFhMDkzMDRjZWQzXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UX67_CR0,0,67,98_AL_.jpg",Ikiru,1952,,143 min,Drama,8.3,A bureaucrat tries to find a meaning in his life after he discovers he has terminal cancer.,,Akira Kurosawa,Takashi Shimura,Nobuo Kaneko,Shin'ichi Himori,Haruo Tanaka,68463,"55,240" "https://m.media-amazon.com/images/M/MV5BNmI1ODdjODctMDlmMC00ZWViLWI5MzYtYzRhNDdjYmM3MzFjXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY98_CR0,0,67,98_AL_.jpg",Ladri di biciclette,1948,,89 min,Drama,8.3,"In post-war Italy, a working-class man's bicycle is stolen. He and his son set out to find it.",,Vittorio De Sica,Lamberto Maggiorani,Enzo Staiola,Lianella Carell,Elena Altieri,146427,"332,930" "https://m.media-amazon.com/images/M/MV5BOTdlNjgyZGUtOTczYi00MDdhLTljZmMtYTEwZmRiOWFkYjRhXkEyXkFqcGdeQXVyNDY2MTk1ODk@._V1_UX67_CR0,0,67,98_AL_.jpg",Double Indemnity,1944,Passed,107 min,"Crime, Drama, Film-Noir",8.3,An insurance representative lets himself be talked by a seductive housewife into a murder/insurance fraud scheme that arouses the suspicion of an insurance investigator.,95,Billy Wilder,Fred MacMurray,Barbara Stanwyck,Edward G. Robinson,Byron Barr,143525,"5,720,000" "https://m.media-amazon.com/images/M/MV5BYjBiOTYxZWItMzdiZi00NjlkLWIzZTYtYmFhZjhiMTljOTdkXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Citizen Kane,1941,UA,119 min,"Drama, Mystery",8.3,"Following the death of publishing tycoon Charles Foster Kane, reporters scramble to uncover the meaning of his final utterance; 'Rosebud'.",100,Orson Welles,Orson Welles,Joseph Cotten,Dorothy Comingore,Agnes Moorehead,403351,"1,585,634" "https://m.media-amazon.com/images/M/MV5BODA4ODk3OTEzMF5BMl5BanBnXkFtZTgwMTQ2ODMwMzE@._V1_UX67_CR0,0,67,98_AL_.jpg",M - Eine Stadt sucht einen Mörder,1931,Passed,117 min,"Crime, Mystery, Thriller",8.3,"When the police in a German city are unable to catch a child-murderer, other criminals join in the manhunt.",,Fritz Lang,Peter Lorre,Ellen Widmann,Inge Landgut,Otto Wernicke,143434,"28,877" "https://m.media-amazon.com/images/M/MV5BMTg5YWIyMWUtZDY5My00Zjc1LTljOTctYmI0MWRmY2M2NmRkXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Metropolis,1927,,153 min,"Drama, Sci-Fi",8.3,"In a futuristic city sharply divided between the working class and the city planners, the son of the city's mastermind falls in love with a working-class prophet who predicts the coming of a savior to mediate their differences.",98,Fritz Lang,Brigitte Helm,Alfred Abel,Gustav Fröhlich,Rudolf Klein-Rogge,159992,"1,236,166" "https://m.media-amazon.com/images/M/MV5BZjhhMThhNDItNTY2MC00MmU1LTliNDEtNDdhZjdlNTY5ZDQ1XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",The Kid,1921,Passed,68 min,"Comedy, Drama, Family",8.3,"The Tramp cares for an abandoned child, but events put that relationship in jeopardy.",,Charles Chaplin,Charles Chaplin,Edna Purviance,Jackie Coogan,Carl Miller,113314,"5,450,000" "https://m.media-amazon.com/images/M/MV5BYjg2ZDI2YTYtN2EwYi00YWI5LTgyMWQtMWFkYmE3NmJkOGVhXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY98_CR0,0,67,98_AL_.jpg",Chhichhore,2019,UA,143 min,"Comedy, Drama",8.2,"A tragic incident forces Anirudh, a middle-aged man, to take a trip down memory lane and reminisce his college days along with his friends, who were labelled as losers.",,Nitesh Tiwari,Sushant Singh Rajput,Shraddha Kapoor,Varun Sharma,Prateik,33893,"898,575" "https://m.media-amazon.com/images/M/MV5BMWU4ZjNlNTQtOGE2MS00NDI0LWFlYjMtMmY3ZWVkMjJkNGRmXkEyXkFqcGdeQXVyNjE1OTQ0NjA@._V1_UY98_CR0,0,67,98_AL_.jpg",Uri: The Surgical Strike,2018,UA,138 min,"Action, Drama, War",8.2,"Indian army special forces execute a covert operation, avenging the killing of fellow army men at their base by a terrorist group.",,Aditya Dhar,Vicky Kaushal,Paresh Rawal,Mohit Raina,Yami Gautam,43444,"4,186,168" "https://m.media-amazon.com/images/M/MV5BZDNlNzBjMGUtYTA0Yy00OTI2LWJmZjMtODliYmUyYTI0OGFmXkEyXkFqcGdeQXVyODIwMDI1NjM@._V1_UX67_CR0,0,67,98_AL_.jpg",K.G.F: Chapter 1,2018,UA,156 min,"Action, Drama",8.2,"In the 1970s, a fierce rebel rises against brutal oppression and becomes the symbol of hope to legions of downtrodden people.",,Prashanth Neel,Yash,Srinidhi Shetty,Ramachandra Raju,Archana Jois,36680, "https://m.media-amazon.com/images/M/MV5BYzIzYmJlYTYtNGNiYy00N2EwLTk4ZjItMGYyZTJiOTVkM2RlXkEyXkFqcGdeQXVyODY1NDk1NjE@._V1_UX67_CR0,0,67,98_AL_.jpg",Green Book,2018,UA,130 min,"Biography, Comedy, Drama",8.2,A working-class Italian-American bouncer becomes the driver of an African-American classical pianist on a tour of venues through the 1960s American South.,69,Peter Farrelly,Viggo Mortensen,Mahershala Ali,Linda Cardellini,Sebastian Maniscalco,377884,"85,080,171" "https://m.media-amazon.com/images/M/MV5BMjI0ODcxNzM1N15BMl5BanBnXkFtZTgwMzIwMTEwNDI@._V1_UX67_CR0,0,67,98_AL_.jpg","Three Billboards Outside Ebbing, Missouri",2017,A,115 min,"Comedy, Crime, Drama",8.2,A mother personally challenges the local authorities to solve her daughter's murder when they fail to catch the culprit.,88,Martin McDonagh,Frances McDormand,Woody Harrelson,Sam Rockwell,Caleb Landry Jones,432610,"54,513,740" "https://m.media-amazon.com/images/M/MV5BMTYzODg0Mjc4M15BMl5BanBnXkFtZTgwNzY4Mzc3NjE@._V1_UY98_CR2,0,67,98_AL_.jpg",Talvar,2015,UA,132 min,"Crime, Drama, Mystery",8.2,An experienced investigator confronts several conflicting theories about the perpetrators of a violent double homicide.,,Meghna Gulzar,Irrfan Khan,Konkona Sen Sharma,Neeraj Kabi,Sohum Shah,31142,"342,370" "https://m.media-amazon.com/images/M/MV5BOGNlNmRkMjctNDgxMC00NzFhLWIzY2YtZDk3ZDE0NWZhZDBlXkEyXkFqcGdeQXVyODIwMDI1NjM@._V1_UX67_CR0,0,67,98_AL_.jpg",Baahubali 2: The Conclusion,2017,UA,167 min,"Action, Drama",8.2,"When Shiva, the son of Bahubali, learns about his heritage, he begins to look for answers. His story is juxtaposed with past events that unfolded in the Mahishmati Kingdom.",,S.S. Rajamouli,Prabhas,Rana Daggubati,Anushka Shetty,Tamannaah Bhatia,75348,"20,186,659" "https://m.media-amazon.com/images/M/MV5BMWYwOThjM2ItZGYxNy00NTQwLWFlZWEtM2MzM2Q5MmY3NDU5XkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Klaus,2019,PG,96 min,"Animation, Adventure, Comedy",8.2,"A simple act of kindness always sparks another, even in a frozen, faraway place. When Smeerensburg's new postman, Jesper, befriends toymaker Klaus, their gifts melt an age-old feud and deliver a sleigh full of holiday traditions.",65,Sergio Pablos,Carlos Martínez López,Jason Schwartzman,J.K. Simmons,Rashida Jones,104761, "https://m.media-amazon.com/images/M/MV5BYmJhZmJlYTItZmZlNy00MGY0LTg0ZGMtNWFkYWU5NTA1YTNhXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY98_CR0,0,67,98_AL_.jpg",Drishyam,2015,UA,163 min,"Crime, Drama, Mystery",8.2,"Desperate measures are taken by a man who tries to save his family from the dark side of the law, after they commit an unexpected crime.",,Nishikant Kamat,Ajay Devgn,Shriya Saran,Tabu,Rajat Kapoor,70367,"739,478" "https://m.media-amazon.com/images/M/MV5BNWYyOWRlOWItZWM5MS00ZjJkLWI0MTUtYTE3NTI5MDAwYjgyXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY98_CR0,0,67,98_AL_.jpg",Queen,2013,UA,146 min,"Adventure, Comedy, Drama",8.2,A Delhi girl from a traditional family sets out on a solo honeymoon after her marriage gets cancelled.,,Vikas Bahl,Kangana Ranaut,Rajkummar Rao,Lisa Haydon,Jeffrey Ho,60701,"1,429,534" "https://m.media-amazon.com/images/M/MV5BMTgwNzA3MDQzOV5BMl5BanBnXkFtZTgwNTE5MDE5NDE@._V1_UX67_CR0,0,67,98_AL_.jpg",Mandariinid,2013,,87 min,"Drama, War",8.2,"In 1992, war rages in Abkhazia, a breakaway region of Georgia. An Estonian man Ivo has decided to stay behind and harvest his crops of tangerines. In a bloody conflict at his door, a wounded man is left behind, and Ivo takes him in.",73,Zaza Urushadze,Lembit Ulfsak,Elmo Nüganen,Giorgi Nakashidze,Misha Meskhi,40382,"144,501" "https://m.media-amazon.com/images/M/MV5BMTY1Nzg4MjcwN15BMl5BanBnXkFtZTcwOTc1NTk1OQ@@._V1_UY98_CR0,0,67,98_AL_.jpg",Bhaag Milkha Bhaag,2013,U,186 min,"Biography, Drama, Sport",8.2,The truth behind the ascension of Milkha Singh who was scarred because of the India-Pakistan partition.,,Rakeysh Omprakash Mehra,Farhan Akhtar,Sonam Kapoor,Pawan Malhotra,Art Malik,61137,"1,626,289" "https://m.media-amazon.com/images/M/MV5BMTc5NjY4MjUwNF5BMl5BanBnXkFtZTgwODM3NzM5MzE@._V1_UX67_CR0,0,67,98_AL_.jpg",Gangs of Wasseypur,2012,A,321 min,"Action, Comedy, Crime",8.2,"A clash between Sultan and Shahid Khan leads to the expulsion of Khan from Wasseypur, and ignites a deadly blood feud spanning three generations.",89,Anurag Kashyap,Manoj Bajpayee,Richa Chadha,Nawazuddin Siddiqui,Tigmanshu Dhulia,82365, "https://m.media-amazon.com/images/M/MV5BNzgxMzExMzUwNV5BMl5BanBnXkFtZTcwMDc2MjUwNA@@._V1_UY98_CR0,0,67,98_AL_.jpg",Udaan,2010,UA,134 min,Drama,8.2,"Expelled from his school, a 16-year old boy returns home to his abusive and oppressive father.",,Vikramaditya Motwane,Rajat Barmecha,Ronit Roy,Manjot Singh,Ram Kapoor,42341,"7,461" "https://m.media-amazon.com/images/M/MV5BNTgwODM5OTMzN15BMl5BanBnXkFtZTcwMTA3NzI1Nw@@._V1_UY98_CR0,0,67,98_AL_.jpg",Paan Singh Tomar,2012,UA,135 min,"Action, Biography, Crime",8.2,"The story of Paan Singh Tomar, an Indian athlete and seven-time national steeplechase champion who becomes one of the most feared dacoits in Chambal Valley after his retirement.",,Tigmanshu Dhulia,Irrfan Khan,Mahie Gill,Rajesh Abhay,Hemendra Dandotiya,33237,"39,567" "https://m.media-amazon.com/images/M/MV5BY2FhZGI5M2QtZWFiZS00NjkwLWE4NWQtMzg3ZDZjNjdkYTJiXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",El secreto de sus ojos,2009,R,129 min,"Drama, Mystery, Romance",8.2,A retired legal counselor writes a novel hoping to find closure for one of his past unresolved homicide cases and for his unreciprocated love with his superior - both of which still haunt him decades later.,80,Juan José Campanella,Ricardo Darín,Soledad Villamil,Pablo Rago,Carla Quevedo,193217,"6,391,436" "https://m.media-amazon.com/images/M/MV5BMTk4ODk5MTMyNV5BMl5BanBnXkFtZTcwMDMyNTg0Ng@@._V1_UX67_CR0,0,67,98_AL_.jpg",Warrior,2011,UA,140 min,"Action, Drama, Sport",8.2,"The youngest son of an alcoholic former boxer returns home, where he's trained by his father for competition in a mixed martial arts tournament - a path that puts the fighter on a collision course with his estranged, older brother.",71,Gavin O'Connor,Tom Hardy,Nick Nolte,Joel Edgerton,Jennifer Morrison,435950,"13,657,115" "https://m.media-amazon.com/images/M/MV5BYzhiNDkyNzktNTZmYS00ZTBkLTk2MDAtM2U0YjU1MzgxZjgzXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Shutter Island,2010,A,138 min,"Mystery, Thriller",8.2,"In 1954, a U.S. Marshal investigates the disappearance of a murderer who escaped from a hospital for the criminally insane.",63,Martin Scorsese,Leonardo DiCaprio,Emily Mortimer,Mark Ruffalo,Ben Kingsley,1129894,"128,012,934" "https://m.media-amazon.com/images/M/MV5BMTk3NDE2NzI4NF5BMl5BanBnXkFtZTgwNzE1MzEyMTE@._V1_UX67_CR0,0,67,98_AL_.jpg",Up,2009,U,96 min,"Animation, Adventure, Comedy",8.2,"78-year-old Carl Fredricksen travels to Paradise Falls in his house equipped with balloons, inadvertently taking a young stowaway.",88,Pete Docter,Bob Peterson,Edward Asner,Jordan Nagai,John Ratzenberger,935507,"293,004,164" "https://m.media-amazon.com/images/M/MV5BMjIxMjgxNTk0MF5BMl5BanBnXkFtZTgwNjIyOTg2MDE@._V1_UX67_CR0,0,67,98_AL_.jpg",The Wolf of Wall Street,2013,A,180 min,"Biography, Crime, Drama",8.2,"Based on the true story of Jordan Belfort, from his rise to a wealthy stock-broker living the high life to his fall involving crime, corruption and the federal government.",75,Martin Scorsese,Leonardo DiCaprio,Jonah Hill,Margot Robbie,Matthew McConaughey,1187498,"116,900,694" "https://m.media-amazon.com/images/M/MV5BMTUzODMyNzk4NV5BMl5BanBnXkFtZTgwNTk1NTYyNTM@._V1_UY98_CR3,0,67,98_AL_.jpg",Chak De! India,2007,U,153 min,"Drama, Family, Sport",8.2,Kabir Khan is the coach of the Indian Women's National Hockey Team and his dream is to make his all girls team emerge victorious against all odds.,68,Shimit Amin,Shah Rukh Khan,Vidya Malvade,Sagarika Ghatge,Shilpa Shukla,74129,"1,113,541" "https://m.media-amazon.com/images/M/MV5BMjAxODQ4MDU5NV5BMl5BanBnXkFtZTcwMDU4MjU1MQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",There Will Be Blood,2007,A,158 min,Drama,8.2,"A story of family, religion, hatred, oil and madness, focusing on a turn-of-the-century prospector in the early days of the business.",93,Paul Thomas Anderson,Daniel Day-Lewis,Paul Dano,Ciarán Hinds,Martin Stringer,517359,"40,222,514" "https://m.media-amazon.com/images/M/MV5BMTU3ODg2NjQ5NF5BMl5BanBnXkFtZTcwMDEwODgzMQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Pan's Labyrinth,2006,UA,118 min,"Drama, Fantasy, War",8.2,"In the Falangist Spain of 1944, the bookish young stepdaughter of a sadistic army officer escapes into an eerie but captivating fantasy world.",98,Guillermo del Toro,Ivana Baquero,Ariadna Gil,Sergi López,Maribel Verdú,618623,"37,634,615" "https://m.media-amazon.com/images/M/MV5BMTgxOTY4Mjc0MF5BMl5BanBnXkFtZTcwNTA4MDQyMw@@._V1_UY98_CR1,0,67,98_AL_.jpg",Toy Story 3,2010,U,103 min,"Animation, Adventure, Comedy",8.2,"The toys are mistakenly delivered to a day-care center instead of the attic right before Andy leaves for college, and it's up to Woody to convince the other toys that they weren't abandoned and to return home.",92,Lee Unkrich,Tom Hanks,Tim Allen,Joan Cusack,Ned Beatty,757032,"415,004,880" "https://m.media-amazon.com/images/M/MV5BOTI5ODc3NzExNV5BMl5BanBnXkFtZTcwNzYxNzQzMw@@._V1_UX67_CR0,0,67,98_AL_.jpg",V for Vendetta,2005,A,132 min,"Action, Drama, Sci-Fi",8.2,"In a future British tyranny, a shadowy freedom fighter, known only by the alias of ""V"", plots to overthrow it with the help of a young woman.",62,James McTeigue,Hugo Weaving,Natalie Portman,Rupert Graves,Stephen Rea,1032749,"70,511,035" "https://m.media-amazon.com/images/M/MV5BYThmZDA0YmQtMWJhNy00MDQwLTk0Y2YtMDhmZTE5ZjhlNjliXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY98_CR1,0,67,98_AL_.jpg",Rang De Basanti,2006,UA,167 min,"Comedy, Crime, Drama",8.2,"The story of six young Indians who assist an English woman to film a documentary on the freedom fighters from their past, and the events that lead them to relive the long-forgotten saga of freedom.",,Rakeysh Omprakash Mehra,Aamir Khan,Soha Ali Khan,Siddharth,Sharman Joshi,111937,"2,197,331" "https://m.media-amazon.com/images/M/MV5BNTI5MmE5M2UtZjIzYS00M2JjLWIwNDItYTY2ZWNiODBmYTBiXkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_UY98_CR0,0,67,98_AL_.jpg",Black,2005,U,122 min,Drama,8.2,"The cathartic tale of a young woman who can't see, hear or talk and the teacher who brings a ray of light into her dark world.",,Sanjay Leela Bhansali,Amitabh Bachchan,Rani Mukerji,Shernaz Patel,Ayesha Kapoor,33354,"733,094" "https://m.media-amazon.com/images/M/MV5BOTY4YjI2N2MtYmFlMC00ZjcyLTg3YjEtMDQyM2ZjYzQ5YWFkXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Batman Begins,2005,UA,140 min,"Action, Adventure",8.2,"After training with his mentor, Batman begins his fight to free crime-ridden Gotham City from corruption.",70,Christopher Nolan,Christian Bale,Michael Caine,Ken Watanabe,Liam Neeson,1308302,"206,852,432" "https://m.media-amazon.com/images/M/MV5BYzExOTcwNjYtZTljMC00YTQ2LWI2YjYtNWFlYzQ0YTJhNzJmXkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_UY98_CR0,0,67,98_AL_.jpg","Swades: We, the People",2004,U,210 min,Drama,8.2,A successful Indian scientist returns to an Indian village to take his nanny to America with him and in the process rediscovers his roots.,,Ashutosh Gowariker,Shah Rukh Khan,Gayatri Joshi,Kishori Ballal,Smit Sheth,83005,"1,223,240" "https://m.media-amazon.com/images/M/MV5BMTU0NTU5NTAyMl5BMl5BanBnXkFtZTYwNzYwMDg2._V1_UX67_CR0,0,67,98_AL_.jpg",Der Untergang,2004,R,156 min,"Biography, Drama, History",8.2,"Traudl Junge, the final secretary for Adolf Hitler, tells of the Nazi dictator's final days in his Berlin bunker at the end of WWII.",82,Oliver Hirschbiegel,Bruno Ganz,Alexandra Maria Lara,Ulrich Matthes,Juliane Köhler,331308,"5,509,040" "https://m.media-amazon.com/images/M/MV5BNmM4YTFmMmItMGE3Yy00MmRkLTlmZGEtMzZlOTQzYjk3MzA2XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Hauru no ugoku shiro,2004,U,119 min,"Animation, Adventure, Family",8.2,"When an unconfident young woman is cursed with an old body by a spiteful witch, her only chance of breaking the spell lies with a self-indulgent yet insecure young wizard and his companions in his legged, walking castle.",80,Hayao Miyazaki,Chieko Baishô,Takuya Kimura,Tatsuya Gashûin,Akihiro Miwa,333915,"4,711,096" "https://m.media-amazon.com/images/M/MV5BMzcwYWFkYzktZjAzNC00OGY1LWI4YTgtNzc5MzVjMDVmNjY0XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",A Beautiful Mind,2001,UA,135 min,"Biography, Drama",8.2,"After John Nash, a brilliant but asocial mathematician, accepts secret work in cryptography, his life takes a turn for the nightmarish.",72,Ron Howard,Russell Crowe,Ed Harris,Jennifer Connelly,Christopher Plummer,848920,"170,742,341" "https://m.media-amazon.com/images/M/MV5BMGMzZjY2ZWQtZjQxYS00NWY3LThhNjItNWQzNTkzOTllODljXkEyXkFqcGdeQXVyNjY1MTg4Mzc@._V1_UY98_CR1,0,67,98_AL_.jpg",Hera Pheri,2000,U,156 min,"Action, Comedy, Crime",8.2,"Three unemployed men look for answers to all their money problems - but when their opportunity arrives, will they know what to do with it?",,Priyadarshan,Akshay Kumar,Sunil Shetty,Paresh Rawal,Tabu,57057, "https://m.media-amazon.com/images/M/MV5BMTAyN2JmZmEtNjAyMy00NzYwLThmY2MtYWQ3OGNhNjExMmM4XkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_UX67_CR0,0,67,98_AL_.jpg","Lock, Stock and Two Smoking Barrels",1998,A,107 min,"Action, Comedy, Crime",8.2,"A botched card game in London triggers four friends, thugs, weed-growers, hard gangsters, loan sharks and debt collectors to collide with each other in a series of unexpected events, all for the sake of weed, cash and two antique shotguns.",66,Guy Ritchie,Jason Flemyng,Dexter Fletcher,Nick Moran,Jason Statham,535216,"3,897,569" "https://m.media-amazon.com/images/M/MV5BMDQ2YzEyZGItYWRhOS00MjBmLTkzMDUtMTdjYzkyMmQxZTJlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",L.A. Confidential,1997,A,138 min,"Crime, Drama, Mystery",8.2,"As corruption grows in 1950s Los Angeles, three policemen - one strait-laced, one brutal, and one sleazy - investigate a series of murders with their own brand of justice.",90,Curtis Hanson,Kevin Spacey,Russell Crowe,Guy Pearce,Kim Basinger,531967,"64,616,940" "https://m.media-amazon.com/images/M/MV5BOGQ4ZjFmYjktOGNkNS00OWYyLWIyZjgtMGJjM2U1ZTA0ZTlhXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UY98_CR1,0,67,98_AL_.jpg",Eskiya,1996,,128 min,"Crime, Drama, Thriller",8.2,"Baran the Bandit, released from prison after 35 years, searches for vengeance and his lover.",,Yavuz Turgul,Sener Sen,Ugur Yücel,Sermin Hürmeriç,Yesim Salkim,64118, "https://m.media-amazon.com/images/M/MV5BNGMwNzUwNjYtZWM5NS00YzMyLWI4NjAtNjM0ZDBiMzE1YWExXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Heat,1995,A,170 min,"Crime, Drama, Thriller",8.2,A group of professional bank robbers start to feel the heat from police when they unknowingly leave a clue at their latest heist.,76,Michael Mann,Al Pacino,Robert De Niro,Val Kilmer,Jon Voight,577113,"67,436,818" "https://m.media-amazon.com/images/M/MV5BMTcxOWYzNDYtYmM4YS00N2NkLTk0NTAtNjg1ODgwZjAxYzI3XkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UX67_CR0,0,67,98_AL_.jpg",Casino,1995,A,178 min,"Crime, Drama",8.2,"A tale of greed, deception, money, power, and murder occur between two best friends: a mafia enforcer and a casino executive compete against each other over a gambling empire, and over a fast-living and fast-loving socialite.",73,Martin Scorsese,Robert De Niro,Sharon Stone,Joe Pesci,James Woods,466276,"42,438,300" "https://m.media-amazon.com/images/M/MV5BZTIwYzRjMGYtZWQ0Ni00NDZhLThhZDYtOGViZGJiZTkwMzk2XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY98_CR3,0,67,98_AL_.jpg",Andaz Apna Apna,1994,U,160 min,"Action, Comedy, Romance",8.2,Two slackers competing for the affections of an heiress inadvertently become her protectors from an evil criminal.,,Rajkumar Santoshi,Aamir Khan,Salman Khan,Raveena Tandon,Karisma Kapoor,49300, "https://m.media-amazon.com/images/M/MV5BODM3YWY4NmQtN2Y3Ni00OTg0LWFhZGQtZWE3ZWY4MTJlOWU4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Unforgiven,1992,A,130 min,"Drama, Western",8.2,"Retired Old West gunslinger William Munny reluctantly takes on one last job, with the help of his old partner Ned Logan and a young man, The ""Schofield Kid.""",85,Clint Eastwood,Clint Eastwood,Gene Hackman,Morgan Freeman,Richard Harris,375935,"101,157,447" "https://m.media-amazon.com/images/M/MV5BMjNkMzc2N2QtNjVlNS00ZTk5LTg0MTgtODY2MDAwNTMwZjBjXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Indiana Jones and the Last Crusade,1989,U,127 min,"Action, Adventure",8.2,"In 1938, after his father Professor Henry Jones, Sr. goes missing while pursuing the Holy Grail, Professor Henry ""Indiana"" Jones, Jr. finds himself up against Adolf Hitler's Nazis again to stop them from obtaining its powers.",65,Steven Spielberg,Harrison Ford,Sean Connery,Alison Doody,Denholm Elliott,692366,"197,171,806" "https://m.media-amazon.com/images/M/MV5BODI2ZjVlMGQtMWE5ZS00MjJiLWIyMWYtMGU5NmIxNDc0OTMyXkEyXkFqcGdeQXVyMTQ3Njg3MQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Dom za vesanje,1988,R,142 min,"Comedy, Crime, Drama",8.2,"In this luminous tale set in the area around Sarajevo and in Italy, Perhan, an engaging young Romany (gypsy) with telekinetic powers, is seduced by the quick-cash world of petty crime, which threatens to destroy him and those he loves.",,Emir Kusturica,Davor Dujmovic,Bora Todorovic,Ljubica Adzovic,Husnija Hasimovic,26402,"280,015" "https://m.media-amazon.com/images/M/MV5BYzJjMTYyMjQtZDI0My00ZjE2LTkyNGYtOTllNGQxNDMyZjE0XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY98_CR1,0,67,98_AL_.jpg",Tonari no Totoro,1988,U,86 min,"Animation, Family, Fantasy",8.2,"When two girls move to the country to be near their ailing mother, they have adventures with the wondrous forest spirits who live nearby.",86,Hayao Miyazaki,Hitoshi Takagi,Noriko Hidaka,Chika Sakamoto,Shigesato Itoi,291180,"1,105,564" "https://m.media-amazon.com/images/M/MV5BZjRlNDUxZjAtOGQ4OC00OTNlLTgxNmQtYTBmMDgwZmNmNjkxXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Die Hard,1988,A,132 min,"Action, Thriller",8.2,An NYPD officer tries to save his wife and several others taken hostage by German terrorists during a Christmas party at the Nakatomi Plaza in Los Angeles.,72,John McTiernan,Bruce Willis,Alan Rickman,Bonnie Bedelia,Reginald VelJohnson,793164,"83,008,852" "https://m.media-amazon.com/images/M/MV5BZDBjZTM4ZmEtOTA5ZC00NTQzLTkyNzYtMmUxNGU2YjI5YjU5L2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UY98_CR1,0,67,98_AL_.jpg",Ran,1985,U,162 min,"Action, Drama, War",8.2,"In Medieval Japan, an elderly warlord retires, handing over his empire to his three sons. However, he vastly underestimates how the new-found power will corrupt them and cause them to turn on each other...and him.",96,Akira Kurosawa,Tatsuya Nakadai,Akira Terao,Jinpachi Nezu,Daisuke Ryû,112505,"4,135,750" "https://m.media-amazon.com/images/M/MV5BYjRmODkzNDItMTNhNi00YjJlLTg0ZjAtODlhZTM0YzgzYThlXkEyXkFqcGdeQXVyNzQ1ODk3MTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Raging Bull,1980,A,129 min,"Biography, Drama, Sport",8.2,"The life of boxer Jake LaMotta, whose violence and temper that led him to the top in the ring destroyed his life outside of it.",89,Martin Scorsese,Robert De Niro,Cathy Moriarty,Joe Pesci,Frank Vincent,321860,"23,383,987" "https://m.media-amazon.com/images/M/MV5BMDgwODNmMGItMDcwYi00OWZjLTgyZjAtMGYwMmI4N2Q0NmJmXkEyXkFqcGdeQXVyNzY1MTU0Njk@._V1_UY98_CR1,0,67,98_AL_.jpg",Stalker,1979,U,162 min,"Drama, Sci-Fi",8.2,A guide leads two men through an area known as the Zone to find a room that grants wishes.,,Andrei Tarkovsky,Alisa Freyndlikh,Aleksandr Kaydanovskiy,Anatoliy Solonitsyn,Nikolay Grinko,116945,"234,723" "https://m.media-amazon.com/images/M/MV5BNGIyMWRlYTctMWNlMi00ZGIzLThjOTgtZjQzZjRjNmRhMDdlXkEyXkFqcGdeQXVyMTAwMzUyOTc@._V1_UX67_CR0,0,67,98_AL_.jpg",Höstsonaten,1978,U,99 min,"Drama, Music",8.2,"A married daughter who longs for her mother's love is visited by the latter, a successful concert pianist.",,Ingmar Bergman,Ingrid Bergman,Liv Ullmann,Lena Nyman,Halvar Björk,26875, "https://m.media-amazon.com/images/M/MV5BMjk3YjJmYTctMTAzZC00MzE4LWFlZGMtNDM5OTMyMDEzZWIxXkEyXkFqcGdeQXVyNTI4MjkwNjA@._V1_UX67_CR0,0,67,98_AL_.jpg",The Message,1976,PG,177 min,"Biography, Drama, History",8.2,This epic historical drama chronicles the life and times of Prophet Muhammad and serves as an introduction to early Islamic history.,,Moustapha Akkad,Anthony Quinn,Irene Papas,Michael Ansara,Johnny Sekka,43885, "https://m.media-amazon.com/images/M/MV5BOGZiM2IwODktNTdiMC00MGU1LWEyZTYtOTk4NTkwYmJkNmI1L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY98_CR2,0,67,98_AL_.jpg",Sholay,1975,U,204 min,"Action, Adventure, Comedy",8.2,"After his family is murdered by a notorious and ruthless bandit, a former police officer enlists the services of two outlaws to capture the bandit.",,Ramesh Sippy,Sanjeev Kumar,Dharmendra,Amitabh Bachchan,Amjad Khan,51284, "https://m.media-amazon.com/images/M/MV5BN2IyNTE4YzUtZWU0Mi00MGIwLTgyMmQtMzQ4YzQxYWNlYWE2XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Monty Python and the Holy Grail,1975,PG,91 min,"Adventure, Comedy, Fantasy",8.2,"King Arthur and his Knights of the Round Table embark on a surreal, low-budget search for the Holy Grail, encountering many, very silly obstacles.",91,Terry Gilliam,Terry Jones,Graham Chapman,John Cleese,Eric Idle,500875,"1,229,197" "https://m.media-amazon.com/images/M/MV5BNzA2NmYxMWUtNzBlMC00MWM2LTkwNmQtYTFlZjQwODNhOWE0XkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_UX67_CR0,0,67,98_AL_.jpg",The Great Escape,1963,U,172 min,"Adventure, Drama, History",8.2,Allied prisoners of war plan for several hundred of their number to escape from a German camp during World War II.,86,John Sturges,Steve McQueen,James Garner,Richard Attenborough,Charles Bronson,224730,"12,100,000" "https://m.media-amazon.com/images/M/MV5BNmVmYzcwNzMtMWM1NS00MWIyLThlMDEtYzUwZDgzODE1NmE2XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",To Kill a Mockingbird,1962,U,129 min,"Crime, Drama",8.2,"Atticus Finch, a lawyer in the Depression-era South, defends a black man against an undeserved rape charge, and his children against prejudice.",88,Robert Mulligan,Gregory Peck,John Megna,Frank Overton,Rosemary Murphy,293811, "https://m.media-amazon.com/images/M/MV5BZThiZjAzZjgtNDU3MC00YThhLThjYWUtZGRkYjc2ZWZlOTVjXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UX67_CR0,0,67,98_AL_.jpg",Yôjinbô,1961,,110 min,"Action, Drama, Thriller",8.2,A crafty ronin comes to a town divided by two criminal gangs and decides to play them against each other to free the town.,,Akira Kurosawa,Toshirô Mifune,Eijirô Tôno,Tatsuya Nakadai,Yôko Tsukasa,111244, "https://m.media-amazon.com/images/M/MV5BNDc2ODQ5NTE2MV5BMl5BanBnXkFtZTcwODExMjUyNA@@._V1_UX67_CR0,0,67,98_AL_.jpg",Judgment at Nuremberg,1961,A,179 min,"Drama, War",8.2,"In 1948, an American court in occupied Germany tries four Nazis judged for war crimes.",60,Stanley Kramer,Spencer Tracy,Burt Lancaster,Richard Widmark,Marlene Dietrich,69458, "https://m.media-amazon.com/images/M/MV5BNzAyOGIxYjAtMGY2NC00ZTgyLWIwMWEtYzY0OWQ4NDFjOTc5XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Some Like It Hot,1959,U,121 min,"Comedy, Music, Romance",8.2,"After two male musicians witness a mob hit, they flee the state in an all-female band disguised as women, but further complications set in.",98,Billy Wilder,Marilyn Monroe,Tony Curtis,Jack Lemmon,George Raft,243943,"25,000,000" "https://m.media-amazon.com/images/M/MV5BZjJhNTBmNTgtMDViOC00NDY2LWE4N2ItMDJiM2ZiYmQzYzliXkEyXkFqcGdeQXVyMzg1ODEwNQ@@._V1_UY98_CR0,0,67,98_AL_.jpg",Smultronstället,1957,U,91 min,"Drama, Romance",8.2,"After living a life marked by coldness, an aging professor is forced to confront the emptiness of his existence.",88,Ingmar Bergman,Victor Sjöström,Bibi Andersson,Ingrid Thulin,Gunnar Björnstrand,96381, "https://m.media-amazon.com/images/M/MV5BM2I1ZWU4YjMtYzU0My00YmMzLWFmNTAtZDJhZGYwMmI3YWQ5XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Det sjunde inseglet,1957,A,96 min,"Drama, Fantasy, History",8.2,"A man seeks answers about life, death, and the existence of God as he plays chess against the Grim Reaper during the Black Plague.",88,Ingmar Bergman,Max von Sydow,Gunnar Björnstrand,Bengt Ekerot,Nils Poppe,164939, "https://m.media-amazon.com/images/M/MV5BNjZmZGRiMDgtNDkwNi00OTZhLWFhZmMtYTdkYjgyNThhOWY3XkEyXkFqcGdeQXVyMTA1NTM1NDI2._V1_UX67_CR0,0,67,98_AL_.jpg",Du rififi chez les hommes,1955,,118 min,"Crime, Drama, Thriller",8.2,"Four men plan a technically perfect crime, but the human element intervenes...",97,Jules Dassin,Jean Servais,Carl Möhner,Robert Manuel,Janine Darcey,28810,"57,226" "https://m.media-amazon.com/images/M/MV5BOWIwODIxYWItZDI4MS00YzhhLWE3MmYtMzlhZDIwOTMzZmE5L2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Dial M for Murder,1954,A,105 min,"Crime, Thriller",8.2,A former tennis player tries to arrange his wife's murder after learning of her affair.,75,Alfred Hitchcock,Ray Milland,Grace Kelly,Robert Cummings,John Williams,158335,"12,562" "https://m.media-amazon.com/images/M/MV5BYWQ4ZTRiODktNjAzZC00Nzg1LTk1YWQtNDFmNDI0NmZiNGIwXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UY98_CR0,0,67,98_AL_.jpg",Tôkyô monogatari,1953,U,136 min,Drama,8.2,"An old couple visit their children and grandchildren in the city, but receive little attention.",,Yasujirô Ozu,Chishû Ryû,Chieko Higashiyama,Sô Yamamura,Setsuko Hara,53153, "https://m.media-amazon.com/images/M/MV5BMjEzMzA4NDE2OF5BMl5BanBnXkFtZTcwNTc5MDI2NQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Rashômon,1950,,88 min,"Crime, Drama, Mystery",8.2,"The rape of a bride and the murder of her samurai husband are recalled from the perspectives of a bandit, the bride, the samurai's ghost and a woodcutter.",98,Akira Kurosawa,Toshirô Mifune,Machiko Kyô,Masayuki Mori,Takashi Shimura,152572,"96,568" "https://m.media-amazon.com/images/M/MV5BMTY2MTAzODI5NV5BMl5BanBnXkFtZTgwMjM4NzQ0MjE@._V1_UX67_CR0,0,67,98_AL_.jpg",All About Eve,1950,Passed,138 min,Drama,8.2,A seemingly timid but secretly ruthless ingénue insinuates herself into the lives of an aging Broadway star and her circle of theater friends.,98,Joseph L. Mankiewicz,Bette Davis,Anne Baxter,George Sanders,Celeste Holm,120539,"10,177" "https://m.media-amazon.com/images/M/MV5BOTJlZWMxYzEtMjlkMS00ODE0LThlM2ItMDI3NGQ2YjhmMzkxXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Treasure of the Sierra Madre,1948,Passed,126 min,"Adventure, Drama, Western",8.2,Two Americans searching for work in Mexico convince an old prospector to help them mine for gold in the Sierra Madre Mountains.,98,John Huston,Humphrey Bogart,Walter Huston,Tim Holt,Bruce Bennett,114304,"5,014,000" "https://m.media-amazon.com/images/M/MV5BYTIwNDcyMjktMTczMy00NDM5LTlhNDEtMmE3NGVjOTM2YjQ3XkEyXkFqcGdeQXVyNjc0MzMzNjA@._V1_UX67_CR0,0,67,98_AL_.jpg",To Be or Not to Be,1942,Passed,99 min,"Comedy, War",8.2,"During the Nazi occupation of Poland, an acting troupe becomes embroiled in a Polish soldier's efforts to track down a German spy.",86,Ernst Lubitsch,Carole Lombard,Jack Benny,Robert Stack,Felix Bressart,29915, "https://m.media-amazon.com/images/M/MV5BZjEyOTE4MzMtNmMzMy00Mzc3LWJlOTQtOGJiNDE0ZmJiOTU4L2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UY98_CR2,0,67,98_AL_.jpg",The Gold Rush,1925,Passed,95 min,"Adventure, Comedy, Drama",8.2,A prospector goes to the Klondike in search of gold and finds it and more.,,Charles Chaplin,Charles Chaplin,Mack Swain,Tom Murray,Henry Bergman,101053,"5,450,000" "https://m.media-amazon.com/images/M/MV5BZWFhOGU5NDctY2Q3YS00Y2VlLWI1NzEtZmIwY2ZiZjY4OTA2XkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Sherlock Jr.,1924,Passed,45 min,"Action, Comedy, Romance",8.2,"A film projectionist longs to be a detective, and puts his meagre skills to work when he is framed by a rival for stealing his girlfriend's father's pocketwatch.",,Buster Keaton,Buster Keaton,Kathryn McGuire,Joe Keaton,Erwin Connelly,41985,"977,375" "https://m.media-amazon.com/images/M/MV5BNjgwNjkwOWYtYmM3My00NzI1LTk5OGItYWY0OTMyZTY4OTg2XkEyXkFqcGdeQXVyODk4OTc3MTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Portrait de la jeune fille en feu,2019,R,122 min,"Drama, Romance",8.1,"On an isolated island in Brittany at the end of the eighteenth century, a female painter is obliged to paint a wedding portrait of a young woman.",95,Céline Sciamma,Noémie Merlant,Adèle Haenel,Luàna Bajrami,Valeria Golino,63134,"3,759,854" "https://m.media-amazon.com/images/M/MV5BNGI1MTI1YTQtY2QwYi00YzUzLTg3NWYtNzExZDlhOTZmZWU0XkEyXkFqcGdeQXVyMDkwNTkwNg@@._V1_UY98_CR3,0,67,98_AL_.jpg",Pink,2016,UA,136 min,"Drama, Thriller",8.1,"When three young women are implicated in a crime, a retired lawyer steps forward to help them clear their names.",,Aniruddha Roy Chowdhury,Taapsee Pannu,Amitabh Bachchan,Kirti Kulhari,Andrea Tariang,39216,"1,241,223" "https://m.media-amazon.com/images/M/MV5BZGRkOGMxYTUtZTBhYS00NzI3LWEzMDQtOWRhMmNjNjJjMzM4XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY98_CR0,0,67,98_AL_.jpg",Koe no katachi,2016,16,130 min,"Animation, Drama, Family",8.1,"A young man is ostracized by his classmates after he bullies a deaf girl to the point where she moves away. Years later, he sets off on a path for redemption.",78,Naoko Yamada,Miyu Irino,Saori Hayami,Aoi Yûki,Kenshô Ono,47708, "https://m.media-amazon.com/images/M/MV5BMDk0YzAwYjktMWFiZi00Y2FmLWJmMmMtMzUyZDZmMmU5MjkzXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY98_CR1,0,67,98_AL_.jpg",Contratiempo,2016,TV-MA,106 min,"Crime, Drama, Mystery",8.1,A successful entrepreneur accused of murder and a witness preparation expert have less than three hours to come up with an impregnable defense.,,Oriol Paulo,Mario Casas,Ana Wagener,Jose Coronado,Bárbara Lennie,141516, "https://m.media-amazon.com/images/M/MV5BNDJhYTk2MTctZmVmOS00OTViLTgxNjQtMzQxOTRiMDdmNGRjXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY98_CR0,0,67,98_AL_.jpg",Ah-ga-ssi,2016,A,145 min,"Drama, Romance, Thriller",8.1,"A woman is hired as a handmaiden to a Japanese heiress, but secretly she is involved in a plot to defraud her.",84,Chan-wook Park,Kim Min-hee,Jung-woo Ha,Cho Jin-woong,Moon So-Ri,113649,"2,006,788" "https://m.media-amazon.com/images/M/MV5BMGI3YWFmNDQtNjc0Ny00ZDBjLThlNjYtZTc1ZTk5MzU2YTVjXkEyXkFqcGdeQXVyNzA4ODc3ODU@._V1_UY98_CR1,0,67,98_AL_.jpg",Mommy,2014,R,139 min,Drama,8.1,"A widowed single mother, raising her violent son alone, finds new hope when a mysterious neighbor inserts herself into their household.",74,Xavier Dolan,Anne Dorval,Antoine Olivier Pilon,Suzanne Clément,Patrick Huard,50700,"3,492,754" "https://m.media-amazon.com/images/M/MV5BMjA1NTEwMDMxMF5BMl5BanBnXkFtZTgwODkzMzI0MjE@._V1_UY98_CR0,0,67,98_AL_.jpg",Haider,2014,UA,160 min,"Action, Crime, Drama",8.1,"A young man returns to Kashmir after his father's disappearance to confront his uncle, whom he suspects of playing a role in his father's fate.",,Vishal Bhardwaj,Shahid Kapoor,Tabu,Shraddha Kapoor,Kay Kay Menon,50445,"901,610" "https://m.media-amazon.com/images/M/MV5BYzc5MTU4N2EtYTkyMi00NjdhLTg3NWEtMTY4OTEyMzJhZTAzXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Logan,2017,A,137 min,"Action, Drama, Sci-Fi",8.1,"In a future where mutants are nearly extinct, an elderly and weary Logan leads a quiet life. But when Laura, a mutant child pursued by scientists, comes to him for help, he must get her to safety.",77,James Mangold,Hugh Jackman,Patrick Stewart,Dafne Keen,Boyd Holbrook,647884,"226,277,068" "https://m.media-amazon.com/images/M/MV5BMjE4NzgzNzEwMl5BMl5BanBnXkFtZTgwMTMzMDE0NjE@._V1_UX67_CR0,0,67,98_AL_.jpg",Room,2015,R,118 min,"Drama, Thriller",8.1,"Held captive for 7 years in an enclosed space, a woman and her young son finally gain their freedom, allowing the boy to experience the outside world for the first time.",86,Lenny Abrahamson,Brie Larson,Jacob Tremblay,Sean Bridgers,Wendy Crewson,371538,"14,677,674" "https://m.media-amazon.com/images/M/MV5BNGQzY2Y0MTgtMDA4OC00NjM3LWI0ZGQtNTJlM2UxZDQxZjI0XkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UY98_CR1,0,67,98_AL_.jpg",Relatos salvajes,2014,R,122 min,"Comedy, Drama, Thriller",8.1,Six short stories that explore the extremities of human behavior involving people in distress.,77,Damián Szifron,Darío Grandinetti,María Marull,Mónica Villa,Diego Starosta,177059,"3,107,072" "https://m.media-amazon.com/images/M/MV5BZGE1MDg5M2MtNTkyZS00MTY5LTg1YzUtZTlhZmM1Y2EwNmFmXkEyXkFqcGdeQXVyNjA3OTI0MDc@._V1_UX67_CR0,0,67,98_AL_.jpg",Soul,2020,U,100 min,"Animation, Adventure, Comedy",8.1,"After landing the gig of a lifetime, a New York jazz pianist suddenly finds himself trapped in a strange land between Earth and the afterlife.",83,Pete Docter,Kemp Powers,Jamie Foxx,Tina Fey,Graham Norton,159171, "https://m.media-amazon.com/images/M/MV5BYzE2MjEwMTQtOTQ2Mi00ZWExLTkyMjUtNmJjMjBlYWFjZDdlXkEyXkFqcGdeQXVyMTI3ODAyMzE2._V1_UY98_CR0,0,67,98_AL_.jpg",Kis Uykusu,2014,,196 min,Drama,8.1,A hotel owner and landlord in a remote Turkish village deals with conflicts within his family and a tenant behind on his rent.,88,Nuri Bilge Ceylan,Haluk Bilginer,Melisa Sözen,Demet Akbag,Ayberk Pekcan,46547,"165,520" "https://m.media-amazon.com/images/M/MV5BMTYzOTE2NjkxN15BMl5BanBnXkFtZTgwMDgzMTg0MzE@._V1_UY98_CR0,0,67,98_AL_.jpg",PK,2014,UA,153 min,"Comedy, Drama, Musical",8.1,An alien on Earth loses the only device he can use to communicate with his spaceship. His innocent nature and child-like questions force the country to evaluate the impact of religion on its people.,,Rajkumar Hirani,Aamir Khan,Anushka Sharma,Sanjay Dutt,Boman Irani,163061,"10,616,104" "https://m.media-amazon.com/images/M/MV5BMGNhYjUwNmYtNDQxNi00NDdmLTljMDAtZWM1NDQyZTk3ZDYwXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY98_CR0,0,67,98_AL_.jpg",OMG: Oh My God!,2012,U,125 min,"Comedy, Drama, Fantasy",8.1,A shopkeeper takes God to court when his shop is destroyed by an earthquake.,,Umesh Shukla,Paresh Rawal,Akshay Kumar,Mithun Chakraborty,Mahesh Manjrekar,51739,"923,221" "https://m.media-amazon.com/images/M/MV5BMzM5NjUxOTEyMl5BMl5BanBnXkFtZTgwNjEyMDM0MDE@._V1_UX67_CR0,0,67,98_AL_.jpg",The Grand Budapest Hotel,2014,UA,99 min,"Adventure, Comedy, Crime",8.1,"A writer encounters the owner of an aging high-class hotel, who tells him of his early years serving as a lobby boy in the hotel's glorious years under an exceptional concierge.",88,Wes Anderson,Ralph Fiennes,F. Murray Abraham,Mathieu Amalric,Adrien Brody,707630,"59,100,318" "https://m.media-amazon.com/images/M/MV5BMTk0MDQ3MzAzOV5BMl5BanBnXkFtZTgwNzU1NzE3MjE@._V1_UX67_CR0,0,67,98_AL_.jpg",Gone Girl,2014,A,149 min,"Drama, Mystery, Thriller",8.1,"With his wife's disappearance having become the focus of an intense media circus, a man sees the spotlight turned on him when it's suspected that he may not be innocent.",79,David Fincher,Ben Affleck,Rosamund Pike,Neil Patrick Harris,Tyler Perry,859695,"167,767,189" "https://m.media-amazon.com/images/M/MV5BYzQxNDZhNDUtNDUwOC00NjQyLTg2OWUtZWVlYThjYjYyMTc2XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UY98_CR1,0,67,98_AL_.jpg",Ôkami kodomo no Ame to Yuki,2012,U,117 min,"Animation, Drama, Fantasy",8.1,"After her werewolf lover unexpectedly dies in an accident while hunting for food for their children, a young woman must find ways to raise the werewolf son and daughter that she had with him while keeping their trait hidden from society.",71,Mamoru Hosoda,Aoi Miyazaki,Takao Osawa,Haru Kuroki,Yukito Nishii,38803, "https://m.media-amazon.com/images/M/MV5BMjQ1NjM3MTUxNV5BMl5BanBnXkFtZTgwMDc5MTY5OTE@._V1_UX67_CR0,0,67,98_AL_.jpg",Hacksaw Ridge,2016,A,139 min,"Biography, Drama, History",8.1,"World War II American Army Medic Desmond T. Doss, who served during the Battle of Okinawa, refuses to kill people, and becomes the first man in American history to receive the Medal of Honor without firing a shot.",71,Mel Gibson,Andrew Garfield,Sam Worthington,Luke Bracey,Teresa Palmer,435928,"67,209,615" "https://m.media-amazon.com/images/M/MV5BOTgxMDQwMDk0OF5BMl5BanBnXkFtZTgwNjU5OTg2NDE@._V1_UX67_CR0,0,67,98_AL_.jpg",Inside Out,2015,U,95 min,"Animation, Adventure, Comedy",8.1,"After young Riley is uprooted from her Midwest life and moved to San Francisco, her emotions - Joy, Fear, Anger, Disgust and Sadness - conflict on how best to navigate a new city, house, and school.",94,Pete Docter,Ronnie Del Carmen,Amy Poehler,Bill Hader,Lewis Black,616228,"356,461,711" "https://m.media-amazon.com/images/M/MV5BMTQzMTEyODY2Ml5BMl5BanBnXkFtZTgwMjA0MDUyMjE@._V1_UY98_CR0,0,67,98_AL_.jpg",Barfi!,2012,U,151 min,"Comedy, Drama, Romance",8.1,Three young people learn that love can neither be defined nor contained by society's definition of normal and abnormal.,,Anurag Basu,Ranbir Kapoor,Priyanka Chopra,Ileana D'Cruz,Saurabh Shukla,75721,"2,804,874" "https://m.media-amazon.com/images/M/MV5BMjExMTEzODkyN15BMl5BanBnXkFtZTcwNTU4NTc4OQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",12 Years a Slave,2013,A,134 min,"Biography, Drama, History",8.1,"In the antebellum United States, Solomon Northup, a free black man from upstate New York, is abducted and sold into slavery.",96,Steve McQueen,Chiwetel Ejiofor,Michael Kenneth Williams,Michael Fassbender,Brad Pitt,640533,"56,671,993" "https://m.media-amazon.com/images/M/MV5BOWEwODJmZDItYTNmZC00OGM4LThlNDktOTQzZjIzMGQxODA4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Rush,2013,UA,123 min,"Action, Biography, Drama",8.1,The merciless 1970s rivalry between Formula One rivals James Hunt and Niki Lauda.,74,Ron Howard,Daniel Brühl,Chris Hemsworth,Olivia Wilde,Alexandra Maria Lara,432811,"26,947,624" "https://m.media-amazon.com/images/M/MV5BM2UwMDVmMDItM2I2Yi00NGZmLTk4ZTUtY2JjNTQ3OGQ5ZjM2XkEyXkFqcGdeQXVyMTA1OTYzOTUx._V1_UX67_CR0,0,67,98_AL_.jpg",Ford v Ferrari,2019,UA,152 min,"Action, Biography, Drama",8.1,American car designer Carroll Shelby and driver Ken Miles battle corporate interference and the laws of physics to build a revolutionary race car for Ford in order to defeat Ferrari at the 24 Hours of Le Mans in 1966.,81,James Mangold,Matt Damon,Christian Bale,Jon Bernthal,Caitriona Balfe,291289,"117,624,028" "https://m.media-amazon.com/images/M/MV5BMjIyOTM5OTIzNV5BMl5BanBnXkFtZTgwMDkzODE2NjE@._V1_UX67_CR0,0,67,98_AL_.jpg",Spotlight,2015,A,129 min,"Biography, Crime, Drama",8.1,"The true story of how the Boston Globe uncovered the massive scandal of child molestation and cover-up within the local Catholic Archdiocese, shaking the entire Catholic Church to its core.",93,Tom McCarthy,Mark Ruffalo,Michael Keaton,Rachel McAdams,Liev Schreiber,420316,"45,055,776" "https://m.media-amazon.com/images/M/MV5BMTQ2MDMwNjEwNV5BMl5BanBnXkFtZTgwOTkxMzI0MzE@._V1_UY98_CR0,0,67,98_AL_.jpg",Song of the Sea,2014,PG,93 min,"Animation, Adventure, Drama",8.1,"Ben, a young Irish boy, and his little sister Saoirse, a girl who can turn into a seal, go on an adventure to free the fairies and save the spirit world.",85,Tomm Moore,David Rawle,Brendan Gleeson,Lisa Hannigan,Fionnula Flanagan,51679,"857,524" "https://m.media-amazon.com/images/M/MV5BMTQ1NDI0NzkyOF5BMl5BanBnXkFtZTcwNzAyNzE2Nw@@._V1_UY98_CR0,0,67,98_AL_.jpg",Kahaani,2012,UA,122 min,"Mystery, Thriller",8.1,"A pregnant woman's search for her missing husband takes her from London to Kolkata, but everyone she questions denies having ever met him.",,Sujoy Ghosh,Vidya Balan,Parambrata Chattopadhyay,Indraneil Sengupta,Nawazuddin Siddiqui,57806,"1,035,953" "https://m.media-amazon.com/images/M/MV5BZGFmMjM5OWMtZTRiNC00ODhlLThlYTItYTcyZDMyYmMyYjFjXkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UY98_CR0,0,67,98_AL_.jpg",Zindagi Na Milegi Dobara,2011,U,155 min,"Comedy, Drama",8.1,Three friends decide to turn their fantasy vacation into reality after one of their friends gets engaged.,,Zoya Akhtar,Hrithik Roshan,Farhan Akhtar,Abhay Deol,Katrina Kaif,67927,"3,108,485" "https://m.media-amazon.com/images/M/MV5BMTg0NTIzMjQ1NV5BMl5BanBnXkFtZTcwNDc3MzM5OQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Prisoners,2013,A,153 min,"Crime, Drama, Mystery",8.1,"When Keller Dover's daughter and her friend go missing, he takes matters into his own hands as the police pursue multiple leads and the pressure mounts.",70,Denis Villeneuve,Hugh Jackman,Jake Gyllenhaal,Viola Davis,Melissa Leo,601149,"61,002,302" "https://m.media-amazon.com/images/M/MV5BN2EwM2I5OWMtMGQyMi00Zjg1LWJkNTctZTdjYTA4OGUwZjMyXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Mad Max: Fury Road,2015,UA,120 min,"Action, Adventure, Sci-Fi",8.1,"In a post-apocalyptic wasteland, a woman rebels against a tyrannical ruler in search for her homeland with the aid of a group of female prisoners, a psychotic worshiper, and a drifter named Max.",90,George Miller,Tom Hardy,Charlize Theron,Nicholas Hoult,Zoë Kravitz,882316,"154,058,340" "https://m.media-amazon.com/images/M/MV5BOTcwMzdiMWItMjZlOS00MzAzLTg5OTItNTA4OGYyMjBhMmRiXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY98_CR1,0,67,98_AL_.jpg",A Wednesday,2008,UA,104 min,"Action, Crime, Drama",8.1,A retiring police officer reminisces about the most astounding day of his career. About a case that was never filed but continues to haunt him in his memories - the case of a man and a Wednesday.,,Neeraj Pandey,Anupam Kher,Naseeruddin Shah,Jimmy Sheirgill,Aamir Bashir,73891, "https://m.media-amazon.com/images/M/MV5BMTc5NTk2OTU1Nl5BMl5BanBnXkFtZTcwMDc3NjAwMg@@._V1_UX67_CR0,0,67,98_AL_.jpg",Gran Torino,2008,R,116 min,Drama,8.1,"Disgruntled Korean War veteran Walt Kowalski sets out to reform his neighbor, Thao Lor, a Hmong teenager who tried to steal Kowalski's prized possession: a 1972 Gran Torino.",72,Clint Eastwood,Clint Eastwood,Bee Vang,Christopher Carley,Ahney Her,720450,"148,095,302" "https://m.media-amazon.com/images/M/MV5BMGVmMWNiMDktYjQ0Mi00MWIxLTk0N2UtN2ZlYTdkN2IzNDNlXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UX67_CR0,0,67,98_AL_.jpg",Harry Potter and the Deathly Hallows: Part 2,2011,UA,130 min,"Adventure, Drama, Fantasy",8.1,"Harry, Ron, and Hermione search for Voldemort's remaining Horcruxes in their effort to destroy the Dark Lord as the final battle rages on at Hogwarts.",85,David Yates,Daniel Radcliffe,Emma Watson,Rupert Grint,Michael Gambon,764493,"381,011,219" "https://m.media-amazon.com/images/M/MV5BMTUzOTcwOTA2NV5BMl5BanBnXkFtZTcwNDczMzczMg@@._V1_UY98_CR0,0,67,98_AL_.jpg",Okuribito,2008,PG-13,130 min,"Drama, Music",8.1,A newly unemployed cellist takes a job preparing the dead for funerals.,68,Yôjirô Takita,Masahiro Motoki,Ryôko Hirosue,Tsutomu Yamazaki,Kazuko Yoshiyuki,48582,"1,498,210" "https://m.media-amazon.com/images/M/MV5BNzE4NDg5OWMtMzg3NC00ZDRjLTllMDMtZTRjNWZmNjBmMGZlXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY98_CR1,0,67,98_AL_.jpg",Hachi: A Dog's Tale,2009,G,93 min,"Biography, Drama, Family",8.1,A college professor bonds with an abandoned dog he takes into his home.,,Lasse Hallström,Richard Gere,Joan Allen,Cary-Hiroyuki Tagawa,Sarah Roemer,253575, "https://m.media-amazon.com/images/M/MV5BMDgzYjQwMDMtNGUzYi00MTRmLWIyMGMtNjE1OGZkNzY2YWIzL2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY98_CR1,0,67,98_AL_.jpg",Mary and Max,2009,,92 min,"Animation, Comedy, Drama",8.1,"A tale of friendship between two unlikely pen pals: Mary, a lonely, eight-year-old girl living in the suburbs of Melbourne, and Max, a forty-four-year old, severely obese man living in New York.",,Adam Elliot,Toni Collette,Philip Seymour Hoffman,Eric Bana,Barry Humphries,164462, "https://m.media-amazon.com/images/M/MV5BMjA5NDQyMjc2NF5BMl5BanBnXkFtZTcwMjg5ODcyMw@@._V1_UX67_CR0,0,67,98_AL_.jpg",How to Train Your Dragon,2010,U,98 min,"Animation, Action, Adventure",8.1,"A hapless young Viking who aspires to hunt dragons becomes the unlikely friend of a young dragon himself, and learns there may be more to the creatures than he assumed.",75,Dean DeBlois,Chris Sanders,Jay Baruchel,Gerard Butler,Christopher Mintz-Plasse,666773,"217,581,231" "https://m.media-amazon.com/images/M/MV5BMTAwNDEyODU1MjheQTJeQWpwZ15BbWU2MDc3NDQwNw@@._V1_UX67_CR0,0,67,98_AL_.jpg",Into the Wild,2007,R,148 min,"Adventure, Biography, Drama",8.1,"After graduating from Emory University, top student and athlete Christopher McCandless abandons his possessions, gives his entire $24,000 savings account to charity and hitchhikes to Alaska to live in the wilderness. Along the way, Christopher encounters a series of characters that shape his life.",73,Sean Penn,Emile Hirsch,Vince Vaughn,Catherine Keener,Marcia Gay Harden,572921,"18,354,356" "https://m.media-amazon.com/images/M/MV5BMjA5Njk3MjM4OV5BMl5BanBnXkFtZTcwMTc5MTE1MQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",No Country for Old Men,2007,R,122 min,"Crime, Drama, Thriller",8.1,Violence and mayhem ensue after a hunter stumbles upon a drug deal gone wrong and more than two million dollars in cash near the Rio Grande.,91,Ethan Coen,Joel Coen,Tommy Lee Jones,Javier Bardem,Josh Brolin,856916,"74,283,625" "https://m.media-amazon.com/images/M/MV5BN2ZmMDMwODgtMzA5MS00MGU0LWEyYTgtYzQ5MmQzMzU2NTVkXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY98_CR0,0,67,98_AL_.jpg",Lage Raho Munna Bhai,2006,U,144 min,"Comedy, Drama, Romance",8.1,Munna Bhai embarks on a journey with Mahatma Gandhi in order to fight against a corrupt property dealer.,,Rajkumar Hirani,Sanjay Dutt,Arshad Warsi,Vidya Balan,Boman Irani,43137,"2,217,561" "https://m.media-amazon.com/images/M/MV5BMTkxNzA1NDQxOV5BMl5BanBnXkFtZTcwNTkyMTIzMw@@._V1_UX67_CR0,0,67,98_AL_.jpg",Million Dollar Baby,2004,UA,132 min,"Drama, Sport",8.1,A determined woman works with a hardened boxing trainer to become a professional.,86,Clint Eastwood,Hilary Swank,Clint Eastwood,Morgan Freeman,Jay Baruchel,635975,"100,492,203" "https://m.media-amazon.com/images/M/MV5BZGJjYmIzZmQtNWE4Yy00ZGVmLWJkZGEtMzUzNmQ4ZWFlMjRhXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Hotel Rwanda,2004,PG-13,121 min,"Biography, Drama, History",8.1,"Paul Rusesabagina, a hotel manager, houses over a thousand Tutsi refugees during their struggle against the Hutu militia in Rwanda, Africa.",79,Terry George,Don Cheadle,Sophie Okonedo,Joaquin Phoenix,Xolani Mali,334320,"23,530,892" "https://m.media-amazon.com/images/M/MV5BNjAxZTEzNzQtYjdlNy00ZTJmLTkwZDUtOTAwNTM3YjI2MWUyL2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Taegukgi hwinalrimyeo,2004,R,140 min,"Action, Drama, War",8.1,"When two brothers are forced to fight in the Korean War, the elder decides to take the riskiest missions if it will help shield the younger from battle.",64,Je-kyu Kang,Jang Dong-Gun,Won Bin,Eun-ju Lee,Hyeong-jin Kong,37820,"1,111,061" "https://m.media-amazon.com/images/M/MV5BMTQ1MjAwNTM5Ml5BMl5BanBnXkFtZTYwNDM0MTc3._V1_UX67_CR0,0,67,98_AL_.jpg",Before Sunset,2004,R,80 min,"Drama, Romance",8.1,"Nine years after Jesse and Celine first met, they encounter each other again on the French leg of Jesse's book tour.",90,Richard Linklater,Ethan Hawke,Julie Delpy,Vernon Dobtcheff,Louise Lemoine Torrès,236311,"5,820,649" "https://m.media-amazon.com/images/M/MV5BMzQ4MTBlYTQtMzJkYS00OGNjLTk1MWYtNzQ0OTQ0OWEyOWU1XkEyXkFqcGdeQXVyNDgyODgxNjE@._V1_UY98_CR1,0,67,98_AL_.jpg",Munna Bhai M.B.B.S.,2003,U,156 min,"Comedy, Drama, Musical",8.1,A gangster sets out to fulfill his father's dream of becoming a doctor.,,Rajkumar Hirani,Sanjay Dutt,Arshad Warsi,Gracy Singh,Sunil Dutt,73992, "https://m.media-amazon.com/images/M/MV5BOGViNTg4YTktYTQ2Ni00MTU0LTk2NWUtMTI4OTc1YTM0NzQ2XkEyXkFqcGdeQXVyMDM2NDM2MQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Salinui chueok,2003,UA,131 min,"Crime, Drama, Mystery",8.1,"In a small Korean province in 1986, two detectives struggle with the case of multiple young women being found raped and murdered by an unknown culprit.",82,Bong Joon Ho,Kang-ho Song,Kim Sang-kyung,Roe-ha Kim,Jae-ho Song,139558,"14,131" "https://m.media-amazon.com/images/M/MV5BMjRjMTYwMTYtMmRkNi00MmVkLWE0MjQtNmM3YjI0NWFhZDNmXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UX67_CR0,0,67,98_AL_.jpg",Dil Chahta Hai,2001,Unrated,183 min,"Comedy, Drama, Romance",8.1,"Three inseparable childhood friends are just out of college. Nothing comes between them - until they each fall in love, and their wildly different approaches to relationships creates tension.",,Farhan Akhtar,Aamir Khan,Saif Ali Khan,Akshaye Khanna,Preity Zinta,66803,"300,000" "https://m.media-amazon.com/images/M/MV5BNzM3NDFhYTAtYmU5Mi00NGRmLTljYjgtMDkyODQ4MjNkMGY2XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Kill Bill: Vol. 1,2003,R,111 min,"Action, Crime, Drama",8.1,"After awakening from a four-year coma, a former assassin wreaks vengeance on the team of assassins who betrayed her.",69,Quentin Tarantino,Uma Thurman,David Carradine,Daryl Hannah,Michael Madsen,1000639,"70,099,045" "https://m.media-amazon.com/images/M/MV5BZTAzNWZlNmUtZDEzYi00ZjA5LWIwYjEtZGM1NWE1MjE4YWRhXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Finding Nemo,2003,U,100 min,"Animation, Adventure, Comedy",8.1,"After his son is captured in the Great Barrier Reef and taken to Sydney, a timid clownfish sets out on a journey to bring him home.",90,Andrew Stanton,Lee Unkrich,Albert Brooks,Ellen DeGeneres,Alexander Gould,949565,"380,843,261" "https://m.media-amazon.com/images/M/MV5BMTY5MzYzNjc5NV5BMl5BanBnXkFtZTYwNTUyNTc2._V1_UX67_CR0,0,67,98_AL_.jpg",Catch Me If You Can,2002,A,141 min,"Biography, Crime, Drama",8.1,"Barely 21 yet, Frank is a skilled forger who has passed as a doctor, lawyer and pilot. FBI agent Carl becomes obsessed with tracking down the con man, who only revels in the pursuit.",75,Steven Spielberg,Leonardo DiCaprio,Tom Hanks,Christopher Walken,Martin Sheen,832846,"164,615,351" "https://m.media-amazon.com/images/M/MV5BMjQxMWJhMzMtMzllZi00NzMwLTllYjktNTcwZmU4ZmU3NTA0XkEyXkFqcGdeQXVyMTAzMDM4MjM0._V1_UY98_CR3,0,67,98_AL_.jpg",Amores perros,2000,A,154 min,"Drama, Thriller",8.1,"A horrific car accident connects three stories, each involving characters dealing with loss, regret, and life's harsh realities, all in the name of love.",83,Alejandro G. Iñárritu,Emilio Echevarría,Gael García Bernal,Goya Toledo,Álvaro Guerrero,223741,"5,383,834" "https://m.media-amazon.com/images/M/MV5BMTY1NTI0ODUyOF5BMl5BanBnXkFtZTgwNTEyNjQ0MDE@._V1_UX67_CR0,0,67,98_AL_.jpg","Monsters, Inc.",2001,U,92 min,"Animation, Adventure, Comedy",8.1,"In order to power the city, monsters have to scare children so that they scream. However, the children are toxic to the monsters, and after a child gets through, 2 monsters realize things may not be what they think.",79,Pete Docter,David Silverman,Lee Unkrich,Billy Crystal,John Goodman,815505,"289,916,256" "https://m.media-amazon.com/images/M/MV5BZjJhMThkNTQtNjkxNy00MDdjLTg4MWQtMTI2MmQ3MDVmODUzXkEyXkFqcGdeQXVyMTAwOTA3NzY3._V1_UY98_CR1,0,67,98_AL_.jpg","Shin seiki Evangelion Gekijô-ban: Air/Magokoro wo, kimi ni",1997,UA,87 min,"Animation, Action, Drama",8.1,Concurrent theatrical ending of the TV series Shin seiki evangerion (1995).,,Hideaki Anno,Kazuya Tsurumaki,Megumi Ogata,Megumi Hayashibara,Yûko Miyamura,38847, "https://m.media-amazon.com/images/M/MV5BNDYxNWUzZmYtOGQxMC00MTdkLTkxOTctYzkyOGIwNWQxZjhmXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Lagaan: Once Upon a Time in India,2001,U,224 min,"Adventure, Drama, Musical",8.1,The people of a small village in Victorian India stake their future on a game of cricket against their ruthless British rulers.,84,Ashutosh Gowariker,Aamir Khan,Raghuvir Yadav,Gracy Singh,Rachel Shelley,105036,"70,147" "https://m.media-amazon.com/images/M/MV5BMWM4NTFhYjctNzUyNi00NGMwLTk3NTYtMDIyNTZmMzRlYmQyXkEyXkFqcGdeQXVyMTAwMzUyOTc@._V1_UX67_CR0,0,67,98_AL_.jpg",The Sixth Sense,1999,A,107 min,"Drama, Mystery, Thriller",8.1,A boy who communicates with spirits seeks the help of a disheartened child psychologist.,64,M. Night Shyamalan,Bruce Willis,Haley Joel Osment,Toni Collette,Olivia Williams,911573,"293,506,292" "https://m.media-amazon.com/images/M/MV5BMzIwOTdmNjQtOWQ1ZS00ZWQ4LWIxYTMtOWFkM2NjODJiMGY4L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNTI4MjkwNjA@._V1_UX67_CR0,0,67,98_AL_.jpg",La leggenda del pianista sull'oceano,1998,U,169 min,"Drama, Music, Romance",8.1,"A baby boy, discovered in 1900 on an ocean liner, grows into a musical prodigy, never setting foot on land.",58,Giuseppe Tornatore,Tim Roth,Pruitt Taylor Vince,Mélanie Thierry,Bill Nunn,59020,"259,127" "https://m.media-amazon.com/images/M/MV5BMDIzODcyY2EtMmY2MC00ZWVlLTgwMzAtMjQwOWUyNmJjNTYyXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",The Truman Show,1998,U,103 min,"Comedy, Drama",8.1,An insurance salesman discovers his whole life is actually a reality TV show.,90,Peter Weir,Jim Carrey,Ed Harris,Laura Linney,Noah Emmerich,939631,"125,618,201" "https://m.media-amazon.com/images/M/MV5BMmExZTZhN2QtMzg5Mi00Y2M5LTlmMWYtNTUzMzUwMGM2OGQ3XkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UX67_CR0,0,67,98_AL_.jpg","Crna macka, beli macor",1998,R,127 min,"Comedy, Crime, Romance",8.1,Matko and his son Zare live on the banks of the Danube river and get by through hustling and basically doing anything to make a living. In order to pay off a business debt Matko agrees to marry off Zare to the sister of a local gangster.,73,Emir Kusturica,Bajram Severdzan,Srdjan 'Zika' Todorovic,Branka Katic,Florijan Ajdini,50862,"348,660" "https://m.media-amazon.com/images/M/MV5BMTQ0NjUzMDMyOF5BMl5BanBnXkFtZTgwODA1OTU0MDE@._V1_UX67_CR0,0,67,98_AL_.jpg",The Big Lebowski,1998,R,117 min,"Comedy, Crime, Sport",8.1,"Jeff ""The Dude"" Lebowski, mistaken for a millionaire of the same name, seeks restitution for his ruined rug and enlists his bowling buddies to help get it.",71,Joel Coen,Ethan Coen,Jeff Bridges,John Goodman,Julianne Moore,732620,"17,498,804" "https://m.media-amazon.com/images/M/MV5BYjZjODRlMjQtMjJlYy00ZDBjLTkyYTQtZGQxZTk5NzJhYmNmXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UY98_CR1,0,67,98_AL_.jpg",Fa yeung nin wah,2000,U,98 min,"Drama, Romance",8.1,"Two neighbors, a woman and a man, form a strong bond after both suspect extramarital activities of their spouses. However, they agree to keep their bond platonic so as not to commit similar wrongs.",85,Kar-Wai Wong,Tony Chiu-Wai Leung,Maggie Cheung,Ping Lam Siu,Tung Cho 'Joe' Cheung,124383,"2,734,044" "https://m.media-amazon.com/images/M/MV5BMzA5Zjc3ZTMtMmU5YS00YTMwLWI4MWUtYTU0YTVmNjVmODZhXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Trainspotting,1996,A,93 min,Drama,8.1,"Renton, deeply immersed in the Edinburgh drug scene, tries to clean up and get out, despite the allure of the drugs and influence of friends.",83,Danny Boyle,Ewan McGregor,Ewen Bremner,Jonny Lee Miller,Kevin McKidd,634716,"16,501,785" "https://m.media-amazon.com/images/M/MV5BNDJiZDgyZjctYmRjMS00ZjdkLTkwMTEtNGU1NDg3NDQ0Yzk1XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Fargo,1996,A,98 min,"Crime, Drama, Thriller",8.1,Jerry Lundegaard's inept crime falls apart due to his and his henchmen's bungling and the persistent police work of the quite pregnant Marge Gunderson.,85,Joel Coen,Ethan Coen,William H. Macy,Frances McDormand,Steve Buscemi,617444,"24,611,975" "https://m.media-amazon.com/images/M/MV5BNzI4YTVmMWEtMWQ3MS00OGE1LWE5YjMtNjc4NWJmYjRmZTQyXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UY98_CR0,0,67,98_AL_.jpg",Underground,1995,,170 min,"Comedy, Drama, War",8.1,"A group of Serbian socialists prepares for the war in a surreal underground filled by parties, tragedies, love and hate.",,Emir Kusturica,Predrag 'Miki' Manojlovic,Lazar Ristovski,Mirjana Jokovic,Slavko Stimac,55220,"171,082" "https://m.media-amazon.com/images/M/MV5BNDNiOTA5YjktY2Q0Ni00ODgzLWE5MWItNGExOWRlYjY2MjBlXkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_UY98_CR1,0,67,98_AL_.jpg",La haine,1995,UA,98 min,"Crime, Drama",8.1,24 hours in the lives of three young men in the French suburbs the day after a violent riot.,,Mathieu Kassovitz,Vincent Cassel,Hubert Koundé,Saïd Taghmaoui,Abdel Ahmed Ghili,150345,"309,811" "https://m.media-amazon.com/images/M/MV5BYmNjYzRlM2YtZTZjZC00ODVmLTljZWMtODg1YmYyNDBiNzU3XkEyXkFqcGdeQXVyNTkzNDQ4ODc@._V1_UY98_CR3,0,67,98_AL_.jpg",Dilwale Dulhania Le Jayenge,1995,U,189 min,"Drama, Romance",8.1,"When Raj meets Simran in Europe, it isn't love at first sight but when Simran moves to India for an arranged marriage, love makes its presence felt.",,Aditya Chopra,Shah Rukh Khan,Kajol,Amrish Puri,Farida Jalal,63516, "https://m.media-amazon.com/images/M/MV5BZDdiZTAwYzAtMDI3Ni00OTRjLTkzN2UtMGE3MDMyZmU4NTU4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Before Sunrise,1995,R,101 min,"Drama, Romance",8.1,"A young man and woman meet on a train in Europe, and wind up spending one evening together in Vienna. Unfortunately, both know that this will probably be their only night together.",77,Richard Linklater,Ethan Hawke,Julie Delpy,Andrea Eckert,Hanno Pöschl,272291,"5,535,405" "https://m.media-amazon.com/images/M/MV5BYTg1MmNiMjItMmY4Yy00ZDQ3LThjMzYtZGQ0ZTQzNTdkMGQ1L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Trois couleurs: Rouge,1994,U,99 min,"Drama, Mystery, Romance",8.1,A model discovers a retired judge is keen on invading people's privacy.,100,Krzysztof Kieslowski,Irène Jacob,Jean-Louis Trintignant,Frédérique Feder,Jean-Pierre Lorit,90729,"4,043,686" "https://m.media-amazon.com/images/M/MV5BMGQ5MzljNzYtMDM1My00NmI0LThlYzQtMTg0ZmQ0MTk1YjkxXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UY98_CR1,0,67,98_AL_.jpg",Chung Hing sam lam,1994,U,102 min,"Comedy, Crime, Drama",8.1,"Two melancholy Hong Kong policemen fall in love: one with a mysterious female underworld figure, the other with a beautiful and ethereal server at a late-night restaurant he frequents.",77,Kar-Wai Wong,Brigitte Lin,Takeshi Kaneshiro,Tony Chiu-Wai Leung,Faye Wong,63122,"600,200" "https://m.media-amazon.com/images/M/MV5BMjM2MDgxMDg0Nl5BMl5BanBnXkFtZTgwNTM2OTM5NDE@._V1_UX67_CR0,0,67,98_AL_.jpg",Jurassic Park,1993,UA,127 min,"Action, Adventure, Sci-Fi",8.1,A pragmatic paleontologist visiting an almost complete theme park is tasked with protecting a couple of kids after a power failure causes the park's cloned dinosaurs to run loose.,68,Steven Spielberg,Sam Neill,Laura Dern,Jeff Goldblum,Richard Attenborough,867615,"402,453,882" "https://m.media-amazon.com/images/M/MV5BMmYyOTgwYWItYmU3Ny00M2E2LTk0NWMtMDVlNmQ0MWZiMTMxXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",In the Name of the Father,1993,UA,133 min,"Biography, Crime, Drama",8.1,A man's coerced confession to an I.R.A. bombing he did not commit results in the imprisonment of his father as well. An English lawyer fights to free them.,84,Jim Sheridan,Daniel Day-Lewis,Pete Postlethwaite,Alison Crosbie,Philip King,156842,"25,010,410" "https://m.media-amazon.com/images/M/MV5BYmFhZmM3Y2MtNDA1Ny00NjkzLWJkM2EtYWU1ZjEwYmNjZDQ0XkEyXkFqcGdeQXVyMTMxMTY0OTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Ba wang bie ji,1993,R,171 min,"Drama, Music, Romance",8.1,Two boys meet at an opera training school in Peking in 1924. Their resulting friendship will span nearly 70 years and will endure some of the most troublesome times in China's history.,,Kaige Chen,Leslie Cheung,Fengyi Zhang,Gong Li,You Ge,25088,"5,216,888" "https://m.media-amazon.com/images/M/MV5BMjEzNjY5NDcwNV5BMl5BanBnXkFtZTcwNzEwMzg4NA@@._V1_UX67_CR0,0,67,98_AL_.jpg",Dà hóng denglong gaogao guà,1991,PG,125 min,"Drama, History, Romance",8.1,"A young woman becomes the fourth wife of a wealthy lord, and must learn to live with the strict rules and tensions within the household.",,Yimou Zhang,Gong Li,Jingwu Ma,Saifei He,Cuifen Cao,29662,"2,603,061" "https://m.media-amazon.com/images/M/MV5BOGYwYWNjMzgtNGU4ZC00NWQ2LWEwZjUtMzE1Zjc3NjY3YTU1XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Dead Poets Society,1989,U,128 min,"Comedy, Drama",8.1,Maverick teacher John Keating uses poetry to embolden his boarding school students to new heights of self-expression.,79,Peter Weir,Robin Williams,Robert Sean Leonard,Ethan Hawke,Josh Charles,425457,"95,860,116" "https://m.media-amazon.com/images/M/MV5BODJmY2Y2OGQtMDg2My00N2Q3LWJmZTUtYTc2ODBjZDVlNDlhXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Stand by Me,1986,U,89 min,"Adventure, Drama",8.1,"After the death of one of his friends, a writer recounts a childhood journey with his friends to find the body of a missing boy.",75,Rob Reiner,Wil Wheaton,River Phoenix,Corey Feldman,Jerry O'Connell,363401,"52,287,414" "https://m.media-amazon.com/images/M/MV5BMzRjZjdlMjQtODVkYS00N2YzLWJlYWYtMGVlN2E5MWEwMWQzXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Platoon,1986,A,120 min,"Drama, War",8.1,"Chris Taylor, a neophyte recruit in Vietnam, finds himself caught in a battle of wills between two sergeants, one good and the other evil. A shrewd examination of the brutality of war and the duality of man in conflict.",92,Oliver Stone,Charlie Sheen,Tom Berenger,Willem Dafoe,Keith David,381222,"138,530,565" "https://m.media-amazon.com/images/M/MV5BM2RjMmU3ZWItYzBlMy00ZmJkLWE5YzgtNTVkODdhOWM3NGZhXkEyXkFqcGdeQXVyNDA5Mjg5MjA@._V1_UX67_CR0,0,67,98_AL_.jpg","Paris, Texas",1984,U,145 min,Drama,8.1,"Travis Henderson, an aimless drifter who has been missing for four years, wanders out of the desert and must reconnect with society, himself, his life, and his family.",78,Wim Wenders,Harry Dean Stanton,Nastassja Kinski,Dean Stockwell,Aurore Clément,91188,"2,181,987" "https://m.media-amazon.com/images/M/MV5BZWFkN2ZhODAtYTNkZS00Y2NjLWIzNDYtNzJjNDNlMzAyNTIyXkEyXkFqcGdeQXVyODEzNjM5OTQ@._V1_UY98_CR1,0,67,98_AL_.jpg",Kaze no tani no Naushika,1984,U,117 min,"Animation, Adventure, Fantasy",8.1,Warrior and pacifist Princess Nausicaä desperately struggles to prevent two warring nations from destroying themselves and their dying planet.,86,Hayao Miyazaki,Sumi Shimamoto,Mahito Tsujimura,Hisako Kyôda,Gorô Naya,150924,"495,770" "https://m.media-amazon.com/images/M/MV5BNGViZWZmM2EtNGYzZi00ZDAyLTk3ODMtNzIyZTBjN2Y1NmM1XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Thing,1982,A,109 min,"Horror, Mystery, Sci-Fi",8.1,A research team in Antarctica is hunted by a shape-shifting alien that assumes the appearance of its victims.,57,John Carpenter,Kurt Russell,Wilford Brimley,Keith David,Richard Masur,371271,"13,782,838" "https://m.media-amazon.com/images/M/MV5BZDhlZTYxOTYtYTk3Ny00ZDljLTk3ZmItZTcxZWU5YTIyYmFkXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Pink Floyd: The Wall,1982,UA,95 min,"Drama, Fantasy, Music",8.1,A confined but troubled rock star descends into madness in the midst of his physical and social isolation from everyone.,47,Alan Parker,Bob Geldof,Christine Hargreaves,James Laurenson,Eleanor David,76081,"22,244,207" "https://m.media-amazon.com/images/M/MV5BYjIzNTYxMTctZjAwNS00YzI3LWExMGMtMGQxNGM5ZTc1NzhlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Fitzcarraldo,1982,R,158 min,"Adventure, Drama",8.1,"The story of Brian Sweeney Fitzgerald, an extremely determined man who intends to build an opera house in the middle of a jungle.",,Werner Herzog,Klaus Kinski,Claudia Cardinale,José Lewgoy,Miguel Ángel Fuentes,31595, "https://m.media-amazon.com/images/M/MV5BZmQzMDE5ZWQtOTU3ZS00ZjdhLWI0OTctZDNkODk4YThmOTRhL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Fanny och Alexander,1982,A,188 min,Drama,8.1,"Two young Swedish children experience the many comedies and tragedies of their family, the Ekdahls.",100,Ingmar Bergman,Bertil Guve,Pernilla Allwin,Kristina Adolphson,Börje Ahlstedt,57784,"4,971,340" "https://m.media-amazon.com/images/M/MV5BNzQzMzJhZTEtOWM4NS00MTdhLTg0YjgtMjM4MDRkZjUwZDBlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Blade Runner,1982,UA,117 min,"Action, Sci-Fi, Thriller",8.1,"A blade runner must pursue and terminate four replicants who stole a ship in space, and have returned to Earth to find their creator.",84,Ridley Scott,Harrison Ford,Rutger Hauer,Sean Young,Edward James Olmos,693827,"32,868,943" "https://m.media-amazon.com/images/M/MV5BMDVjNjIwOGItNDE3Ny00OThjLWE0NzQtZTU3YjMzZTZjMzhkXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",The Elephant Man,1980,UA,124 min,"Biography, Drama",8.1,"A Victorian surgeon rescues a heavily disfigured man who is mistreated while scraping a living as a side-show freak. Behind his monstrous façade, there is revealed a person of kindness, intelligence and sophistication.",78,David Lynch,Anthony Hopkins,John Hurt,Anne Bancroft,John Gielgud,220078, "https://m.media-amazon.com/images/M/MV5BMzAwNjU1OTktYjY3Mi00NDY5LWFlZWUtZjhjNGE0OTkwZDkwXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Life of Brian,1979,R,94 min,Comedy,8.1,"Born on the original Christmas in the stable next door to Jesus Christ, Brian of Nazareth spends his life being mistaken for a messiah.",77,Terry Jones,Graham Chapman,John Cleese,Michael Palin,Terry Gilliam,367250,"20,045,115" "https://m.media-amazon.com/images/M/MV5BNDhmNTA0ZDMtYjhkNS00NzEzLWIzYTItOGNkMTVmYjE2YmI3XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",The Deer Hunter,1978,A,183 min,"Drama, War",8.1,An in-depth examination of the ways in which the U.S. Vietnam War impacts and disrupts the lives of people in a small industrial town in Pennsylvania.,86,Michael Cimino,Robert De Niro,Christopher Walken,John Cazale,John Savage,311361,"48,979,328" "https://m.media-amazon.com/images/M/MV5BMTY5MDMzODUyOF5BMl5BanBnXkFtZTcwMTQ3NTMyNA@@._V1_UX67_CR0,0,67,98_AL_.jpg",Rocky,1976,U,120 min,"Drama, Sport",8.1,A small-time boxer gets a supremely rare chance to fight a heavy-weight champion in a bout in which he strives to go the distance for his self-respect.,70,John G. Avildsen,Sylvester Stallone,Talia Shire,Burt Young,Carl Weathers,518546,"117,235,247" "https://m.media-amazon.com/images/M/MV5BZGNjYjM2MzItZGQzZi00NmY3LTgxOGUtMTQ2MWQxNWQ2MmMwXkEyXkFqcGdeQXVyNzM0MTUwNTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Network,1976,UA,121 min,Drama,8.1,A television network cynically exploits a deranged former anchor's ravings and revelations about the news media for its own profit.,83,Sidney Lumet,Faye Dunaway,William Holden,Peter Finch,Robert Duvall,144911, "https://m.media-amazon.com/images/M/MV5BNmY0MWY2NDctZDdmMi00MjA1LTk0ZTQtZDMyZTQ1NTNlYzVjXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_UX67_CR0,0,67,98_AL_.jpg",Barry Lyndon,1975,PG,185 min,"Adventure, Drama, History",8.1,An Irish rogue wins the heart of a rich widow and assumes her dead husband's aristocratic position in 18th-century England.,89,Stanley Kubrick,Ryan O'Neal,Marisa Berenson,Patrick Magee,Hardy Krüger,149843, "https://m.media-amazon.com/images/M/MV5BMTg1MDg3OTk3M15BMl5BanBnXkFtZTgwMDEzMzE5MTE@._V1_UY98_CR0,0,67,98_AL_.jpg",Zerkalo,1975,G,107 min,"Biography, Drama",8.1,"A dying man in his forties remembers his past. His childhood, his mother, the war, personal moments and things that tell of the recent history of all the Russian nation.",,Andrei Tarkovsky,Margarita Terekhova,Filipp Yankovskiy,Ignat Daniltsev,Oleg Yankovskiy,40081,"177,345" "https://m.media-amazon.com/images/M/MV5BOGMwYmY5ZmEtMzY1Yi00OWJiLTk1Y2MtMzI2MjBhYmZkNTQ0XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Chinatown,1974,UA,130 min,"Drama, Mystery, Thriller",8.1,"A private detective hired to expose an adulterer finds himself caught up in a web of deceit, corruption, and murder.",92,Roman Polanski,Jack Nicholson,Faye Dunaway,John Huston,Perry Lopez,294230,"29,000,000" "https://m.media-amazon.com/images/M/MV5BOWVmYzQwY2MtOTBjNi00MDNhLWI5OGMtN2RiMDYxODI3MjU5XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_UX67_CR0,0,67,98_AL_.jpg",Paper Moon,1973,U,102 min,"Comedy, Crime, Drama",8.1,"During the Great Depression, a con man finds himself saddled with a young girl who may or may not be his daughter, and the two forge an unlikely partnership.",77,Peter Bogdanovich,Ryan O'Neal,Tatum O'Neal,Madeline Kahn,John Hillerman,42285,"30,933,743" "https://m.media-amazon.com/images/M/MV5BMTg3NzYzOTEtNmE2Ni00M2EyLWJhMjctNjMyMTk4ZTViOGUzXkEyXkFqcGdeQXVyNzQxNDExNTU@._V1_UY98_CR0,0,67,98_AL_.jpg",Viskningar och rop,1972,A,91 min,Drama,8.1,"When a woman dying of cancer in early twentieth-century Sweden is visited by her two sisters, long-repressed feelings between the siblings rise to the surface.",,Ingmar Bergman,Harriet Andersson,Liv Ullmann,Kari Sylwan,Ingrid Thulin,30206,"1,742,348" "https://m.media-amazon.com/images/M/MV5BZmY4Yjc0OWQtZDRhMy00ODc2LWI2NGYtMWFlODYyN2VlNDQyXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY98_CR1,0,67,98_AL_.jpg",Solaris,1972,PG,167 min,"Drama, Mystery, Sci-Fi",8.1,A psychologist is sent to a station orbiting a distant planet in order to discover what has caused the crew to go insane.,90,Andrei Tarkovsky,Natalya Bondarchuk,Donatas Banionis,Jüri Järvet,Vladislav Dvorzhetskiy,81021, "https://m.media-amazon.com/images/M/MV5BMWFjZjRiM2QtZmRkOC00MDUxLTlhYmQtYmY5ZTNiMTI5Nzc2L2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Le samouraï,1967,GP,105 min,"Crime, Drama, Mystery",8.1,After professional hitman Jef Costello is seen by witnesses his efforts to provide himself an alibi drive him further into a corner.,,Jean-Pierre Melville,Alain Delon,François Périer,Nathalie Delon,Cathy Rosier,45434,"39,481" "https://m.media-amazon.com/images/M/MV5BOWFlNzZhYmYtYTI5YS00MDQyLWIyNTUtNTRjMWUwNTEzNjA0XkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_UX67_CR0,0,67,98_AL_.jpg",Cool Hand Luke,1967,A,127 min,"Crime, Drama",8.1,"A laid back Southern man is sentenced to two years in a rural prison, but refuses to conform.",92,Stuart Rosenberg,Paul Newman,George Kennedy,Strother Martin,J.D. Cannon,161984,"16,217,773" "https://m.media-amazon.com/images/M/MV5BMTM0YzExY2EtMjUyZi00ZmIwLWFkYTktNjY5NmVkYTdkMjI5XkEyXkFqcGdeQXVyNzQxNDExNTU@._V1_UY98_CR0,0,67,98_AL_.jpg",Persona,1966,,85 min,"Drama, Thriller",8.1,A nurse is put in charge of a mute actress and finds that their personae are melding together.,86,Ingmar Bergman,Bibi Andersson,Liv Ullmann,Margaretha Krook,Gunnar Björnstrand,103191, "https://m.media-amazon.com/images/M/MV5BNjM2MjMwNzUzN15BMl5BanBnXkFtZTgwMjEzMzE5MTE@._V1_UY98_CR2,0,67,98_AL_.jpg",Andrei Rublev,1966,R,205 min,"Biography, Drama, History",8.1,"The life, times and afflictions of the fifteenth-century Russian iconographer St. Andrei Rublev.",,Andrei Tarkovsky,Anatoliy Solonitsyn,Ivan Lapikov,Nikolay Grinko,Nikolay Sergeev,46947,"102,021" "https://m.media-amazon.com/images/M/MV5BZWEzMGY4OTQtYTdmMy00M2QwLTliYTQtYWUzYzc3OTA5YzIwXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UY98_CR1,0,67,98_AL_.jpg",La battaglia di Algeri,1966,,121 min,"Drama, War",8.1,"In the 1950s, fear and violence escalate as the people of Algiers fight for independence from the French government.",96,Gillo Pontecorvo,Brahim Hadjadj,Jean Martin,Yacef Saadi,Samia Kerbash,53089,"55,908" "https://m.media-amazon.com/images/M/MV5BZTg3M2ExY2EtZmI5Yy00YWM1LTg4NzItZWEzZTgxNzE2MjhhXkEyXkFqcGdeQXVyNDE5MTU2MDE@._V1_UX67_CR0,0,67,98_AL_.jpg",El ángel exterminador,1962,,95 min,"Drama, Fantasy",8.1,The guests at an upper-class dinner party find themselves unable to leave.,,Luis Buñuel,Silvia Pinal,Jacqueline Andere,Enrique Rambal,José Baviera,29682, "https://m.media-amazon.com/images/M/MV5BZmI0M2VmNTgtMWVhYS00Zjg1LTk1YTYtNmJmMjRkZmMwYTc2XkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UX67_CR0,0,67,98_AL_.jpg",What Ever Happened to Baby Jane?,1962,Passed,134 min,"Drama, Horror, Thriller",8.1,A former child star torments her paraplegic sister in their decaying Hollywood mansion.,75,Robert Aldrich,Bette Davis,Joan Crawford,Victor Buono,Wesley Addy,50058,"4,050,000" "https://m.media-amazon.com/images/M/MV5BZmY3MDlmODctYTY3Yi00NzYyLWIxNTUtYjVlZWZjMmMwZTBkXkEyXkFqcGdeQXVyMzAxNjg3MjQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Sanjuro,1962,U,96 min,"Action, Comedy, Crime",8.1,"A crafty samurai helps a young man and his fellow clansmen save his uncle, who has been framed and imprisoned by a corrupt superintendent.",,Akira Kurosawa,Toshirô Mifune,Tatsuya Nakadai,Keiju Kobayashi,Yûnosuke Itô,33044, "https://m.media-amazon.com/images/M/MV5BMGEyNzhkYzktMGMyZS00YzRiLWJlYjktZjJkOTU5ZDY0ZGI4XkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_UX67_CR0,0,67,98_AL_.jpg",The Man Who Shot Liberty Valance,1962,,123 min,"Drama, Western",8.1,A senator returns to a western town for the funeral of an old friend and tells the story of his origins.,94,John Ford,James Stewart,John Wayne,Vera Miles,Lee Marvin,68827, "https://m.media-amazon.com/images/M/MV5BYTYzYzBhYjQtNDQxYS00MmUwLTkyZjgtZWVkOWFjNzE5OTI2XkEyXkFqcGdeQXVyNjMxMjkwMjI@._V1_UX67_CR0,0,67,98_AL_.jpg",Ivanovo detstvo,1962,,95 min,"Drama, War",8.1,"In WW2, twelve year old Soviet orphan Ivan Bondarev works for the Soviet army as a scout behind the German lines and strikes a friendship with three sympathetic Soviet officers.",,Andrei Tarkovsky,Eduard Abalov,Nikolay Burlyaev,Valentin Zubkov,Evgeniy Zharikov,31728, "https://m.media-amazon.com/images/M/MV5BZjgyMzZkMGUtNTBhZC00OTkzLWI4ZmMtYzcwMzc5MjQ0YTM3XkEyXkFqcGdeQXVyMTMxMTY0OTQ@._V1_UY98_CR3,0,67,98_AL_.jpg",Jungfrukällan,1960,A,89 min,Drama,8.1,"An innocent yet pampered young virgin and her family's pregnant and jealous servant set out to deliver candles to church, but only one returns from events that transpire in the woods along the way.",,Ingmar Bergman,Max von Sydow,Birgitta Valberg,Gunnel Lindblom,Birgitta Pettersson,26697,"1,526,000" "https://m.media-amazon.com/images/M/MV5BMGQ5ODNkNWYtYTgxZS00YjJkLThhODAtYzUwNGNiYjRmNjdkXkEyXkFqcGdeQXVyMTg2NTc4MzA@._V1_UY98_CR4,0,67,98_AL_.jpg",Inherit the Wind,1960,Passed,128 min,"Biography, Drama, History",8.1,"Based on a real-life case in 1925, two great lawyers argue the case for and against a science teacher accused of the crime of teaching evolution.",75,Stanley Kramer,Spencer Tracy,Fredric March,Gene Kelly,Dick York,27254, "https://m.media-amazon.com/images/M/MV5BYTQ4MjA4NmYtYjRhNi00MTEwLTg0NjgtNjk3ODJlZGU4NjRkL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY98_CR3,0,67,98_AL_.jpg",Les quatre cents coups,1959,,99 min,"Crime, Drama",8.1,"A young boy, left without attention, delves into a life of petty crime.",,François Truffaut,Jean-Pierre Léaud,Albert Rémy,Claire Maurier,Guy Decomble,105291, "https://m.media-amazon.com/images/M/MV5BNjgxY2JiZDYtZmMwOC00ZmJjLWJmODUtMTNmNWNmYWI5ODkwL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Ben-Hur,1959,U,212 min,"Adventure, Drama, History",8.1,"After a Jewish prince is betrayed and sent into slavery by a Roman friend, he regains his freedom and comes back for revenge.",90,William Wyler,Charlton Heston,Jack Hawkins,Stephen Boyd,Haya Harareet,219466,"74,700,000" "https://m.media-amazon.com/images/M/MV5BYjJkN2Y5MTktZDRhOS00NTUwLWFiMzEtMTVlNWU4ODM0Y2E5XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UY98_CR1,0,67,98_AL_.jpg",Kakushi-toride no san-akunin,1958,,139 min,"Adventure, Drama",8.1,"Lured by gold, two greedy peasants unknowingly escort a princess and her general across enemy lines.",,Akira Kurosawa,Toshirô Mifune,Misa Uehara,Minoru Chiaki,Kamatari Fujiwara,34797, "https://m.media-amazon.com/images/M/MV5BOTdhNmUxZmQtNmMwNC00MzE3LWE1MTUtZDgxZTYwYjEzZjcwXkEyXkFqcGdeQXVyNTA1NjYyMDk@._V1_UY98_CR0,0,67,98_AL_.jpg",Le notti di Cabiria,1957,,110 min,Drama,8.1,A waifish prostitute wanders the streets of Rome looking for true love but finds only heartbreak.,,Federico Fellini,Giulietta Masina,François Périer,Franca Marzi,Dorian Gray,42940,"752,045" "https://m.media-amazon.com/images/M/MV5BNGYxZjA2M2ItYTRmNS00NzRmLWJkYzgtYTdiNGFlZDI5ZjNmXkEyXkFqcGdeQXVyNDE5MTU2MDE@._V1_UY98_CR0,0,67,98_AL_.jpg",Kumonosu-jô,1957,,110 min,"Drama, History",8.1,"A war-hardened general, egged on by his ambitious wife, works to fulfill a prophecy that he would become lord of Spider's Web Castle.",,Akira Kurosawa,Toshirô Mifune,Minoru Chiaki,Isuzu Yamada,Takashi Shimura,46678, "https://m.media-amazon.com/images/M/MV5BMGVhNjhjODktODgxYS00MDdhLTlkZjktYTkyNzQxMTU0ZDYxXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",The Bridge on the River Kwai,1957,PG,161 min,"Adventure, Drama, War",8.1,"British POWs are forced to build a railway bridge across the river Kwai for their Japanese captors, not knowing that the allied forces are planning to destroy it.",87,David Lean,William Holden,Alec Guinness,Jack Hawkins,Sessue Hayakawa,203463,"44,908,000" "https://m.media-amazon.com/images/M/MV5BY2I0MWFiZDMtNWQyYy00Njk5LTk3MDktZjZjNTNmZmVkYjkxXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",On the Waterfront,1954,A,108 min,"Crime, Drama, Thriller",8.1,An ex-prize fighter turned longshoreman struggles to stand up to his corrupt union bosses.,91,Elia Kazan,Marlon Brando,Karl Malden,Lee J. Cobb,Rod Steiger,142107,"9,600,000" "https://m.media-amazon.com/images/M/MV5BZDdkNzMwZmUtY2Q5MS00ZmM2LWJhYjItYTBjMWY0MGM4MDRjXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UY98_CR0,0,67,98_AL_.jpg",Le salaire de la peur,1953,U,131 min,"Adventure, Drama, Thriller",8.1,"In a decrepit South American village, four men are hired to transport an urgent nitroglycerine shipment without the equipment that would make it safe.",85,Henri-Georges Clouzot,Yves Montand,Charles Vanel,Peter van Eyck,Folco Lulli,54588, "https://m.media-amazon.com/images/M/MV5BNDUzZjlhZTYtN2E5MS00ODQ3LWI1ZjgtNzdiZmI0NTZiZTljXkEyXkFqcGdeQXVyMjI4MjA5MzA@._V1_UX67_CR0,0,67,98_AL_.jpg",Ace in the Hole,1951,Approved,111 min,"Drama, Film-Noir",8.1,"A frustrated former big-city journalist now stuck working for an Albuquerque newspaper exploits a story about a man trapped in a cave to rekindle his career, but the situation quickly escalates into an out-of-control circus.",72,Billy Wilder,Kirk Douglas,Jan Sterling,Robert Arthur,Porter Hall,31568,"3,969,893" "https://m.media-amazon.com/images/M/MV5BZmI5NTA3MjItYzdhMi00MWMxLTg3OWMtYWQyYjg5MTFmM2U0L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",White Heat,1949,,114 min,"Action, Crime, Drama",8.1,A psychopathic criminal with a mother complex makes a daring break from prison and leads his old gang in a chemical plant payroll heist.,,Raoul Walsh,James Cagney,Virginia Mayo,Edmond O'Brien,Margaret Wycherly,29807, "https://m.media-amazon.com/images/M/MV5BYjE2OTdhMWUtOGJlMy00ZDViLWIzZjgtYjZkZGZmMDZjYmEyXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",The Third Man,1949,Approved,104 min,"Film-Noir, Mystery, Thriller",8.1,"Pulp novelist Holly Martins travels to shadowy, postwar Vienna, only to find himself investigating the mysterious death of an old friend, Harry Lime.",97,Carol Reed,Orson Welles,Joseph Cotten,Alida Valli,Trevor Howard,158731,"449,191" "https://m.media-amazon.com/images/M/MV5BOWRmNGEwZjUtZjEwNS00OGZmLThhMmEtZTJlMTU5MGQ3ZWUwXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",The Red Shoes,1948,,135 min,"Drama, Music, Romance",8.1,A young ballet dancer is torn between the man she loves and her pursuit to become a prima ballerina.,,Michael Powell,Emeric Pressburger,Anton Walbrook,Marius Goring,Moira Shearer,30935,"10,900,000" "https://m.media-amazon.com/images/M/MV5BNzc1MTcyNTQ5N15BMl5BanBnXkFtZTgwMzgwMDI0MjE@._V1_UX67_CR0,0,67,98_AL_.jpg",The Shop Around the Corner,1940,,99 min,"Comedy, Drama, Romance",8.1,"Two employees at a gift shop can barely stand each other, without realizing that they are falling in love through the post as each other's anonymous pen pal.",96,Ernst Lubitsch,Margaret Sullavan,James Stewart,Frank Morgan,Joseph Schildkraut,28450,"203,300" "https://m.media-amazon.com/images/M/MV5BYTcxYWExOTMtMWFmYy00ZjgzLWI0YjktNWEzYzJkZTg0NDdmL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UY98_CR0,0,67,98_AL_.jpg",Rebecca,1940,Approved,130 min,"Drama, Mystery, Romance",8.1,A self-conscious woman juggles adjusting to her new role as an aristocrat's wife and avoiding being intimidated by his first wife's spectral presence.,86,Alfred Hitchcock,Laurence Olivier,Joan Fontaine,George Sanders,Judith Anderson,123942,"4,360,000" "https://m.media-amazon.com/images/M/MV5BZTYwYjYxYzgtMDE1Ni00NzU4LWJlMTEtODQ5YmJmMGJhZjI5L2ltYWdlXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Mr. Smith Goes to Washington,1939,Passed,129 min,"Comedy, Drama",8.1,"A naive man is appointed to fill a vacancy in the United States Senate. His plans promptly collide with political corruption, but he doesn't back down.",73,Frank Capra,James Stewart,Jean Arthur,Claude Rains,Edward Arnold,107017,"9,600,000" "https://m.media-amazon.com/images/M/MV5BYjUyZWZkM2UtMzYxYy00ZmQ3LWFmZTQtOGE2YjBkNjA3YWZlXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Gone with the Wind,1939,U,238 min,"Drama, History, Romance",8.1,A manipulative woman and a roguish man conduct a turbulent romance during the American Civil War and Reconstruction periods.,97,Victor Fleming,George Cukor,Sam Wood,Clark Gable,Vivien Leigh,290074,"198,676,459" "https://m.media-amazon.com/images/M/MV5BMTg3MTI5NTk0N15BMl5BanBnXkFtZTgwMjU1MDM5MTE@._V1_UY98_CR2,0,67,98_AL_.jpg",La Grande Illusion,1937,,113 min,"Drama, War",8.1,"During WWI, two French soldiers are captured and imprisoned in a German P.O.W. camp. Several escape attempts follow until they are eventually sent to a seemingly inescapable fortress.",,Jean Renoir,Jean Gabin,Dita Parlo,Pierre Fresnay,Erich von Stroheim,33829,"172,885" "https://m.media-amazon.com/images/M/MV5BYzJmMWE5NjAtNWMyZS00NmFiLWIwMDgtZDE2NzczYWFhNzIzXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",It Happened One Night,1934,Approved,105 min,"Comedy, Romance",8.1,"A renegade reporter and a crazy young heiress meet on a bus heading for New York, and end up stuck with each other when the bus leaves them behind at one of the stops.",87,Frank Capra,Clark Gable,Claudette Colbert,Walter Connolly,Roscoe Karns,94016,"4,360,000" "https://m.media-amazon.com/images/M/MV5BNjBjNDJiYTUtOWY0OS00OGVmLTg2YzctMTE0NzVhODM1ZWJmXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",La passion de Jeanne d'Arc,1928,Passed,110 min,"Biography, Drama, History",8.1,"In 1431, Jeanne d'Arc is placed on trial on charges of heresy. The ecclesiastical jurists attempt to force Jeanne to recant her claims of holy visions.",,Carl Theodor Dreyer,Maria Falconetti,Eugene Silvain,André Berley,Maurice Schutz,47676,"21,877" "https://m.media-amazon.com/images/M/MV5BM2QwYWQ0MWMtNzcwOC00N2Q2LWE1MDEtZmQxZjhiM2U1YzFhXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",The Circus,1928,Passed,72 min,"Comedy, Romance",8.1,The Tramp finds work and the girl of his dreams at a circus.,90,Charles Chaplin,Charles Chaplin,Merna Kennedy,Al Ernest Garcia,Harry Crocker,30205, "https://m.media-amazon.com/images/M/MV5BNDVkYmYwM2ItNzRiMy00NWQ4LTlhMjMtNDI1ZDYyOGVmMzJjXkEyXkFqcGdeQXVyNTgzMzU5MDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Sunrise: A Song of Two Humans,1927,Passed,94 min,"Drama, Romance",8.1,An allegorical tale about a man fighting the good and evil within him. Both sides are made flesh - one a sophisticated woman he is attracted to and the other his wife.,,F.W. Murnau,George O'Brien,Janet Gaynor,Margaret Livingston,Bodil Rosing,46865,"539,540" "https://m.media-amazon.com/images/M/MV5BYmRiMDFlYjYtOTMwYy00OGY2LWE0Y2QtYzQxOGNhZmUwNTIxXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",The General,1926,Passed,67 min,"Action, Adventure, Comedy",8.1,"When Union spies steal an engineer's beloved locomotive, he pursues it single-handedly and straight through enemy lines.",,Clyde Bruckman,Buster Keaton,Buster Keaton,Marion Mack,Glen Cavender,81156,"1,033,895" "https://m.media-amazon.com/images/M/MV5BNWJiNGJiMTEtMGM3OC00ZWNlLTgwZTgtMzdhNTRiZjk5MTQ1XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY98_CR1,0,67,98_AL_.jpg",Das Cabinet des Dr. Caligari,1920,,76 min,"Fantasy, Horror, Mystery",8.1,"Hypnotist Dr. Caligari uses a somnambulist, Cesare, to commit murders.",,Robert Wiene,Werner Krauss,Conrad Veidt,Friedrich Feher,Lil Dagover,57428, "https://m.media-amazon.com/images/M/MV5BNjZlMDdmN2YtYThmZi00NGQzLTk0ZTQtNTUyZDFmODExOGNiXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY98_CR0,0,67,98_AL_.jpg",Badhaai ho,2018,UA,124 min,"Comedy, Drama",8,A man is embarrassed when he finds out his mother is pregnant.,,Amit Ravindernath Sharma,Ayushmann Khurrana,Neena Gupta,Gajraj Rao,Sanya Malhotra,27978, "https://m.media-amazon.com/images/M/MV5BNjJkYTc5N2UtMGRlMC00M2FmLTk0ZWMtOTYxNDUwNjI2YzljXkEyXkFqcGdeQXVyNDg4NjY5OTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Togo,2019,U,113 min,"Adventure, Biography, Drama",8,"The story of Togo, the sled dog who led the 1925 serum run yet was considered by most to be too small and weak to lead such an intense race.",69,Ericson Core,Willem Dafoe,Julianne Nicholson,Christopher Heyerdahl,Richard Dormer,37556, "https://m.media-amazon.com/images/M/MV5BMGE1ZTkyOTMtMTdiZS00YzI2LTlmYWQtOTE5YWY0NWVlNjlmXkEyXkFqcGdeQXVyNjQ3ODkxMjE@._V1_UY98_CR0,0,67,98_AL_.jpg",Airlift,2016,UA,130 min,"Drama, History",8,"When Iraq invades Kuwait in August 1990, a callous Indian businessman becomes the spokesperson for more than 170,000 stranded countrymen.",,Raja Menon,Akshay Kumar,Nimrat Kaur,Kumud Mishra,Prakash Belawadi,52897, "https://m.media-amazon.com/images/M/MV5BMjE1NjQ5ODc2NV5BMl5BanBnXkFtZTgwOTM5ODIxNjE@._V1_UY98_CR0,0,67,98_AL_.jpg",Bajrangi Bhaijaan,2015,UA,163 min,"Action, Adventure, Comedy",8,An Indian man with a magnanimous heart takes a young mute Pakistani girl back to her homeland to reunite her with her family.,,Kabir Khan,Salman Khan,Harshaali Malhotra,Nawazuddin Siddiqui,Kareena Kapoor,72245,"8,178,001" "https://m.media-amazon.com/images/M/MV5BYTdhNjBjZDctYTlkYy00ZGIxLWFjYTktODk5ZjNlMzI4NjI3XkEyXkFqcGdeQXVyMjY1MjkzMjE@._V1_UY98_CR0,0,67,98_AL_.jpg",Baby,2015,UA,159 min,"Action, Crime, Thriller",8,"An elite counter-intelligence unit learns of a plot, masterminded by a maniacal madman. With the clock ticking, it's up to them to track the terrorists' international tentacles and prevent them from striking at the heart of India.",,Neeraj Pandey,Akshay Kumar,Danny Denzongpa,Rana Daggubati,Taapsee Pannu,52848, "https://m.media-amazon.com/images/M/MV5BMzUzNDM2NzM2MV5BMl5BanBnXkFtZTgwNTM3NTg4OTE@._V1_UX67_CR0,0,67,98_AL_.jpg",La La Land,2016,A,128 min,"Comedy, Drama, Music",8,"While navigating their careers in Los Angeles, a pianist and an actress fall in love while attempting to reconcile their aspirations for the future.",94,Damien Chazelle,Ryan Gosling,Emma Stone,Rosemarie DeWitt,J.K. Simmons,505918,"151,101,803" "https://m.media-amazon.com/images/M/MV5BMjA3NjkzNjg2MF5BMl5BanBnXkFtZTgwMDkyMzgzMDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Lion,2016,U,118 min,"Biography, Drama",8,"A five-year-old Indian boy is adopted by an Australian couple after getting lost hundreds of kilometers from home. 25 years later, he sets out to find his lost family.",69,Garth Davis,Dev Patel,Nicole Kidman,Rooney Mara,Sunny Pawar,213970,"51,739,495" "https://m.media-amazon.com/images/M/MV5BMTc2MTQ3MDA1Nl5BMl5BanBnXkFtZTgwODA3OTI4NjE@._V1_UX67_CR0,0,67,98_AL_.jpg",The Martian,2015,UA,144 min,"Adventure, Drama, Sci-Fi",8,"An astronaut becomes stranded on Mars after his team assume him dead, and must rely on his ingenuity to find a way to signal to Earth that he is alive.",80,Ridley Scott,Matt Damon,Jessica Chastain,Kristen Wiig,Kate Mara,760094,"228,433,663" "https://m.media-amazon.com/images/M/MV5BOTMyMjEyNzIzMV5BMl5BanBnXkFtZTgwNzIyNjU0NzE@._V1_UX67_CR0,0,67,98_AL_.jpg",Zootopia,2016,U,108 min,"Animation, Adventure, Comedy",8,"In a city of anthropomorphic animals, a rookie bunny cop and a cynical con artist fox must work together to uncover a conspiracy.",78,Byron Howard,Rich Moore,Jared Bush,Ginnifer Goodwin,Jason Bateman,434143,"341,268,248" "https://m.media-amazon.com/images/M/MV5BYWVlMjVhZWYtNWViNC00ODFkLTk1MmItYjU1MDY5ZDdhMTU3XkEyXkFqcGdeQXVyODIwMDI1NjM@._V1_UX67_CR0,0,67,98_AL_.jpg",Bãhubali: The Beginning,2015,UA,159 min,"Action, Drama",8,"In ancient India, an adventurous and daring man becomes involved in a decades-old feud between two warring peoples.",,S.S. Rajamouli,Prabhas,Rana Daggubati,Ramya Krishnan,Sathyaraj,102972,"6,738,000" "https://m.media-amazon.com/images/M/MV5BNThmMWMyMWMtOWRiNy00MGY0LTg1OTUtNjYzODg2MjdlZGU5XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY98_CR1,0,67,98_AL_.jpg",Kaguyahime no monogatari,2013,U,137 min,"Animation, Adventure, Drama",8,"Found inside a shining stalk of bamboo by an old bamboo cutter and his wife, a tiny girl grows rapidly into an exquisite young lady. The mysterious young princess enthralls all who encounter her, but ultimately she must confront her fate, the punishment for her crime.",89,Isao Takahata,Chloë Grace Moretz,James Caan,Mary Steenburgen,James Marsden,38746,"1,506,975" "https://m.media-amazon.com/images/M/MV5BYjFhOWY0OTgtNDkzMC00YWJkLTk1NGEtYWUxNjhmMmQ5ZjYyXkEyXkFqcGdeQXVyMjMxOTE0ODA@._V1_UX67_CR0,0,67,98_AL_.jpg",Wonder,2017,U,113 min,"Drama, Family",8,"Based on the New York Times bestseller, this movie tells the incredibly inspiring and heartwarming story of August Pullman, a boy with facial differences who enters the fifth grade, attending a mainstream elementary school for the first time.",66,Stephen Chbosky,Jacob Tremblay,Owen Wilson,Izabela Vidovic,Julia Roberts,141923,"132,422,809" "https://m.media-amazon.com/images/M/MV5BZDkzMTQ1YTMtMWY4Ny00MzExLTkzYzEtNzZhOTczNzU2NTU1XkEyXkFqcGdeQXVyODY3NjMyMDU@._V1_UY98_CR4,0,67,98_AL_.jpg",Gully Boy,2019,UA,154 min,"Drama, Music, Romance",8,A coming-of-age story based on the lives of street rappers in Mumbai.,65,Zoya Akhtar,Vijay Varma,Nakul Roshan Sahdev,Ranveer Singh,Vijay Raaz,31886,"5,566,534" "https://m.media-amazon.com/images/M/MV5BMTQ1NDI5MjMzNF5BMl5BanBnXkFtZTcwMTc0MDQwOQ@@._V1_UY98_CR0,0,67,98_AL_.jpg",Special Chabbis,2013,UA,144 min,"Crime, Drama, Thriller",8,A gang of con-men rob prominent rich businessmen and politicians by posing as C.B.I and income tax officers.,,Neeraj Pandey,Akshay Kumar,Anupam Kher,Manoj Bajpayee,Jimmy Sheirgill,51069,"1,079,369" "https://m.media-amazon.com/images/M/MV5BMTEwNjE2OTM4NDZeQTJeQWpwZ15BbWU3MDE2MTE4OTk@._V1_UX67_CR0,0,67,98_AL_.jpg",Short Term 12,2013,R,96 min,Drama,8,A 20-something supervising staff member of a residential treatment facility navigates the troubled waters of that world alongside her co-worker and longtime boyfriend.,82,Destin Daniel Cretton,Brie Larson,Frantz Turner,John Gallagher Jr.,Kaitlyn Dever,81770,"1,010,414" "https://m.media-amazon.com/images/M/MV5BMTg5MTE2NjA4OV5BMl5BanBnXkFtZTgwMTUyMjczMTE@._V1_UX67_CR0,0,67,98_AL_.jpg",Serbuan maut 2: Berandal,2014,A,150 min,"Action, Crime, Thriller",8,"Only a short time after the first raid, Rama goes undercover with the thugs of Jakarta and plans to bring down the syndicate and uncover the corruption within his police force.",71,Gareth Evans,Iko Uwais,Yayan Ruhian,Arifin Putra,Oka Antara,114316,"2,625,803" "https://m.media-amazon.com/images/M/MV5BOTgwMzFiMWYtZDhlNS00ODNkLWJiODAtZDVhNzgyNzJhYjQ4L2ltYWdlXkEyXkFqcGdeQXVyNzEzOTYxNTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",The Imitation Game,2014,UA,114 min,"Biography, Drama, Thriller",8,"During World War II, the English mathematical genius Alan Turing tries to crack the German Enigma code with help from fellow mathematicians.",73,Morten Tyldum,Benedict Cumberbatch,Keira Knightley,Matthew Goode,Allen Leech,685201,"91,125,683" "https://m.media-amazon.com/images/M/MV5BMTAwMjU5OTgxNjZeQTJeQWpwZ15BbWU4MDUxNDYxODEx._V1_UX67_CR0,0,67,98_AL_.jpg",Guardians of the Galaxy,2014,UA,121 min,"Action, Adventure, Comedy",8,A group of intergalactic criminals must pull together to stop a fanatical warrior with plans to purge the universe.,76,James Gunn,Chris Pratt,Vin Diesel,Bradley Cooper,Zoe Saldana,1043455,"333,176,600" "https://m.media-amazon.com/images/M/MV5BNzA1Njg4NzYxOV5BMl5BanBnXkFtZTgwODk5NjU3MzI@._V1_UX67_CR0,0,67,98_AL_.jpg",Blade Runner 2049,2017,UA,164 min,"Action, Drama, Mystery",8,"Young Blade Runner K's discovery of a long-buried secret leads him to track down former Blade Runner Rick Deckard, who's been missing for thirty years.",81,Denis Villeneuve,Harrison Ford,Ryan Gosling,Ana de Armas,Dave Bautista,461823,"92,054,159" "https://m.media-amazon.com/images/M/MV5BMjA1Nzk0OTM2OF5BMl5BanBnXkFtZTgwNjU2NjEwMDE@._V1_UX67_CR0,0,67,98_AL_.jpg",Her,2013,A,126 min,"Drama, Romance, Sci-Fi",8,"In a near future, a lonely writer develops an unlikely relationship with an operating system designed to meet his every need.",90,Spike Jonze,Joaquin Phoenix,Amy Adams,Scarlett Johansson,Rooney Mara,540772,"25,568,251" "https://m.media-amazon.com/images/M/MV5BMTA2NDc3Njg5NDVeQTJeQWpwZ15BbWU4MDc1NDcxNTUz._V1_UX67_CR0,0,67,98_AL_.jpg",Bohemian Rhapsody,2018,UA,134 min,"Biography, Drama, Music",8,"The story of the legendary British rock band Queen and lead singer Freddie Mercury, leading up to their famous performance at Live Aid (1985).",49,Bryan Singer,Rami Malek,Lucy Boynton,Gwilym Lee,Ben Hardy,450349,"216,428,042" "https://m.media-amazon.com/images/M/MV5BMDE5OWMzM2QtOTU2ZS00NzAyLWI2MDEtOTRlYjIxZGM0OWRjXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UX67_CR0,0,67,98_AL_.jpg",The Revenant,2015,A,156 min,"Action, Adventure, Drama",8,A frontiersman on a fur trading expedition in the 1820s fights for survival after being mauled by a bear and left for dead by members of his own hunting team.,76,Alejandro G. Iñárritu,Leonardo DiCaprio,Tom Hardy,Will Poulter,Domhnall Gleeson,705589,"183,637,894" "https://m.media-amazon.com/images/M/MV5BZThjMmQ5YjktMTUyMC00MjljLWJmMTAtOWIzNDIzY2VhNzQ0XkEyXkFqcGdeQXVyMTAyNjg4NjE0._V1_UX67_CR0,0,67,98_AL_.jpg",The Perks of Being a Wallflower,2012,UA,103 min,"Drama, Romance",8,An introvert freshman is taken under the wings of two seniors who welcome him to the real world,67,Stephen Chbosky,Logan Lerman,Emma Watson,Ezra Miller,Paul Rudd,462252,"17,738,570" "https://m.media-amazon.com/images/M/MV5BMjEzMzMxOTUyNV5BMl5BanBnXkFtZTcwNjI3MDc5Ng@@._V1_UX67_CR0,0,67,98_AL_.jpg",Tropa de Elite 2: O Inimigo Agora é Outro,2010,,115 min,"Action, Crime, Drama",8,"After a prison riot, former-Captain Nascimento, now a high ranking security officer in Rio de Janeiro, is swept into a bloody political dispute that involves government officials and paramilitary groups.",71,José Padilha,Wagner Moura,Irandhir Santos,André Ramiro,Milhem Cortaz,79200,"100,119" "https://m.media-amazon.com/images/M/MV5BMzU5MjEwMTg2Nl5BMl5BanBnXkFtZTcwNzM3MTYxNA@@._V1_UY98_CR0,0,67,98_AL_.jpg",The King's Speech,2010,U,118 min,"Biography, Drama, History",8,"The story of King George VI, his impromptu ascension to the throne of the British Empire in 1936, and the speech therapist who helped the unsure monarch overcome his stammer.",88,Tom Hooper,Colin Firth,Geoffrey Rush,Helena Bonham Carter,Derek Jacobi,639603,"138,797,449" "https://m.media-amazon.com/images/M/MV5BMTM5OTMyMjIxOV5BMl5BanBnXkFtZTcwNzU4MjIwNQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Help,2011,UA,146 min,Drama,8,"An aspiring author during the civil rights movement of the 1960s decides to write a book detailing the African American maids' point of view on the white families for which they work, and the hardships they go through on a daily basis.",62,Tate Taylor,Emma Stone,Viola Davis,Octavia Spencer,Bryce Dallas Howard,428521,"169,708,112" "https://m.media-amazon.com/images/M/MV5BYzE5MjY1ZDgtMTkyNC00MTMyLThhMjAtZGI5OTE1NzFlZGJjXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Deadpool,2016,R,108 min,"Action, Adventure, Comedy",8,"A wisecracking mercenary gets experimented on and becomes immortal but ugly, and sets out to track down the man who ruined his looks.",65,Tim Miller,Ryan Reynolds,Morena Baccarin,T.J. Miller,Ed Skrein,902669,"363,070,709" "https://m.media-amazon.com/images/M/MV5BMTQ0MzQxODQ0MV5BMl5BanBnXkFtZTgwNTQ0NzY4NDE@._V1_UX67_CR0,0,67,98_AL_.jpg",Darbareye Elly,2009,TV-PG,119 min,"Drama, Mystery",8,The mysterious disappearance of a kindergarten teacher during a picnic in the north of Iran is followed by a series of misadventures for her fellow travelers.,87,Asghar Farhadi,Golshifteh Farahani,Shahab Hosseini,Taraneh Alidoosti,Merila Zare'i,45803,"106,662" "https://m.media-amazon.com/images/M/MV5BYjU1NjczNzYtYmFjOC00NzkxLTg4YTUtNGYzMTk3NTU0ZDE3XkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UY98_CR0,0,67,98_AL_.jpg",Dev.D,2009,A,144 min,"Drama, Romance",8,"After breaking up with his childhood sweetheart, a young man finds solace in drugs. Meanwhile, a teenage girl is caught in the world of prostitution. Will they be destroyed, or will they find redemption?",,Anurag Kashyap,Abhay Deol,Mahie Gill,Kalki Koechlin,Dibyendu Bhattacharya,28749,"10,950" "https://m.media-amazon.com/images/M/MV5BNTFmMjM3M2UtOTIyZC00Zjk3LTkzODUtYTdhNGRmNzFhYzcyXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Yip Man,2008,R,106 min,"Action, Biography, Drama",8,"During the Japanese invasion of China, a wealthy martial artist is forced to leave his home when his city is occupied. With little means of providing for themselves, Ip Man and the remaining members of the city must find a way to survive.",59,Wilson Yip,Donnie Yen,Simon Yam,Siu-Wong Fan,Ka Tung Lam,211427, "https://m.media-amazon.com/images/M/MV5BMTUyMTA4NDYzMV5BMl5BanBnXkFtZTcwMjk5MzcxMw@@._V1_UX67_CR0,0,67,98_AL_.jpg",My Name Is Khan,2010,UA,165 min,Drama,8,An Indian Muslim man with Asperger's syndrome takes a challenge to speak to the President of the United States seriously and embarks on a cross-country journey.,50,Karan Johar,Shah Rukh Khan,Kajol,Sheetal Menon,Katie A. Keane,98575,"4,018,695" "https://m.media-amazon.com/images/M/MV5BMjE2NjEyMDg0M15BMl5BanBnXkFtZTcwODYyODg5Mg@@._V1_UY98_CR0,0,67,98_AL_.jpg",Nefes: Vatan Sagolsun,2009,,128 min,"Action, Drama, Thriller",8,Story of 40-man Turkish task force who must defend a relay station.,,Levent Semerci,Erdem Can,Mete Horozoglu,Ilker Kizmaz,Baris Bagci,31838, "https://m.media-amazon.com/images/M/MV5BZmNjZWI3NzktYWI1Mi00OTAyLWJkNTYtMzUwYTFlZDA0Y2UwXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Slumdog Millionaire,2008,UA,120 min,"Drama, Romance",8,"A Mumbai teenager reflects on his life after being accused of cheating on the Indian version of ""Who Wants to be a Millionaire?"".",84,Danny Boyle,Loveleen Tandan,Dev Patel,Freida Pinto,Saurabh Shukla,798882,"141,319,928" "https://m.media-amazon.com/images/M/MV5BNzY2NzI4OTE5MF5BMl5BanBnXkFtZTcwMjMyNDY4Mw@@._V1_UX67_CR0,0,67,98_AL_.jpg",Black Swan,2010,A,108 min,"Drama, Thriller",8,"A committed dancer struggles to maintain her sanity after winning the lead role in a production of Tchaikovsky's ""Swan Lake"".",79,Darren Aronofsky,Natalie Portman,Mila Kunis,Vincent Cassel,Winona Ryder,699673,"106,954,678" "https://m.media-amazon.com/images/M/MV5BYmI1ODU5ZjMtNWUyNC00YzllLThjNzktODE1M2E4OTVmY2E5XkEyXkFqcGdeQXVyMTExNzQzMDE0._V1_UY98_CR1,0,67,98_AL_.jpg",Tropa de Elite,2007,R,115 min,"Action, Crime, Drama",8,"In 1997 Rio de Janeiro, Captain Nascimento has to find a substitute for his position while trying to take down drug dealers and criminals before the Pope visits.",33,José Padilha,Wagner Moura,André Ramiro,Caio Junqueira,Milhem Cortaz,98097,"8,060" "https://m.media-amazon.com/images/M/MV5BNDYxNjQyMjAtNTdiOS00NGYwLWFmNTAtNThmYjU5ZGI2YTI1XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",The Avengers,2012,UA,143 min,"Action, Adventure, Sci-Fi",8,Earth's mightiest heroes must come together and learn to fight as a team if they are going to stop the mischievous Loki and his alien army from enslaving humanity.,69,Joss Whedon,Robert Downey Jr.,Chris Evans,Scarlett Johansson,Jeremy Renner,1260806,"623,279,547" "https://m.media-amazon.com/images/M/MV5BMGRkZThmYzEtYjQxZC00OWEzLThjYjAtYzFkMjY0NGZkZWI4XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Persepolis,2007,PG-13,96 min,"Animation, Biography, Drama",8,A precocious and outspoken Iranian girl grows up during the Islamic Revolution.,90,Vincent Paronnaud,Marjane Satrapi,Chiara Mastroianni,Catherine Deneuve,Gena Rowlands,88656,"4,445,756" "https://m.media-amazon.com/images/M/MV5BMTYwMTA4MzgyNF5BMl5BanBnXkFtZTgwMjEyMjE0MDE@._V1_UX67_CR0,0,67,98_AL_.jpg",Dallas Buyers Club,2013,R,117 min,"Biography, Drama",8,"In 1985 Dallas, electrician and hustler Ron Woodroof works around the system to help AIDS patients get the medication they need after he is diagnosed with the disease.",80,Jean-Marc Vallée,Matthew McConaughey,Jennifer Garner,Jared Leto,Steve Zahn,441614,"27,298,285" "https://m.media-amazon.com/images/M/MV5BMTQ5NjQ0NDI3NF5BMl5BanBnXkFtZTcwNDI0MjEzMw@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Pursuit of Happyness,2006,U,117 min,"Biography, Drama",8,A struggling salesman takes custody of his son as he's poised to begin a life-changing professional career.,64,Gabriele Muccino,Will Smith,Thandie Newton,Jaden Smith,Brian Howe,448930,"163,566,459" "https://m.media-amazon.com/images/M/MV5BZDMxOGZhNWYtMzRlYy00Mzk5LWJjMjEtNmQ4NDU4M2QxM2UzXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UX67_CR0,0,67,98_AL_.jpg",Blood Diamond,2006,A,143 min,"Adventure, Drama, Thriller",8,"A fisherman, a smuggler, and a syndicate of businessmen match wits over the possession of a priceless diamond.",64,Edward Zwick,Leonardo DiCaprio,Djimon Hounsou,Jennifer Connelly,Kagiso Kuypers,499439,"57,366,262" "https://m.media-amazon.com/images/M/MV5BNGNiNmU2YTMtZmU4OS00MjM0LTlmYWUtMjVlYjAzYjE2N2RjXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",The Bourne Ultimatum,2007,UA,115 min,"Action, Mystery, Thriller",8,Jason Bourne dodges a ruthless C.I.A. official and his Agents from a new assassination program while searching for the origins of his life as a trained killer.,85,Paul Greengrass,Matt Damon,Edgar Ramírez,Joan Allen,Julia Stiles,604694,"227,471,070" "https://m.media-amazon.com/images/M/MV5BMTM1ODIwNzM5OV5BMl5BanBnXkFtZTcwNjk5MDkyMQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Bin-jip,2004,U,88 min,"Crime, Drama, Romance",8,A transient young man breaks into empty homes to partake of the vacationing residents' lives for a few days.,72,Ki-duk Kim,Seung-Yun Lee,Hee Jae,Hyuk-ho Kwon,Jin-mo Joo,50610,"238,507" "https://m.media-amazon.com/images/M/MV5BODZmYjMwNzEtNzVhNC00ZTRmLTk2M2UtNzE1MTQ2ZDAxNjc2XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Sin City,2005,A,124 min,"Crime, Thriller",8,"A movie that explores the dark and miserable town, Basin City, tells the story of three different people, all caught up in violent corruption.",74,Frank Miller,Quentin Tarantino,Robert Rodriguez,Mickey Rourke,Clive Owen,738512,"74,103,820" "https://m.media-amazon.com/images/M/MV5BMTc3MjkzMDkxN15BMl5BanBnXkFtZTcwODAyMTU1MQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Le scaphandre et le papillon,2007,PG-13,112 min,"Biography, Drama",8,The true story of Elle editor Jean-Dominique Bauby who suffers a stroke and has to live with an almost totally paralyzed body; only his left eye isn't paralyzed.,92,Julian Schnabel,Laura Obiols,Mathieu Amalric,Emmanuelle Seigner,Marie-Josée Croze,103284,"5,990,075" "https://m.media-amazon.com/images/M/MV5BMjE0MTY2MDI3NV5BMl5BanBnXkFtZTcwNTc1MzEzMQ@@._V1_UY98_CR2,0,67,98_AL_.jpg",G.O.R.A.,2004,,127 min,"Adventure, Comedy, Sci-Fi",8,A slick young Turk kidnapped by extraterrestrials shows his great « humanitarian spirit » by outwitting the evil commander-in-chief of the planet of G.O.R.A.,,Ömer Faruk Sorak,Cem Yilmaz,Özge Özberk,Ozan Güven,Safak Sezer,56960, "https://m.media-amazon.com/images/M/MV5BMTMzODU0NTkxMF5BMl5BanBnXkFtZTcwMjQ4MzMzMw@@._V1_UX67_CR0,0,67,98_AL_.jpg",Ratatouille,2007,U,111 min,"Animation, Adventure, Comedy",8,A rat who can cook makes an unusual alliance with a young kitchen worker at a famous restaurant.,96,Brad Bird,Jan Pinkava,Brad Garrett,Lou Romano,Patton Oswalt,641645,"206,445,654" "https://m.media-amazon.com/images/M/MV5BMDI5ZWJhOWItYTlhOC00YWNhLTlkNzctNDU5YTI1M2E1MWZhXkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_UX67_CR0,0,67,98_AL_.jpg",Casino Royale,2006,PG-13,144 min,"Action, Adventure, Thriller",8,"After earning 00 status and a licence to kill, Secret Agent James Bond sets out on his first mission as 007. Bond must defeat a private banker funding terrorists in a high-stakes game of poker at Casino Royale, Montenegro.",80,Martin Campbell,Daniel Craig,Eva Green,Judi Dench,Jeffrey Wright,582239,"167,445,960" "https://m.media-amazon.com/images/M/MV5BNmFiYmJmN2QtNWQwMi00MzliLThiOWMtZjQxNGRhZTQ1MjgyXkEyXkFqcGdeQXVyNzQ1ODk3MTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Kill Bill: Vol. 2,2004,A,137 min,"Action, Crime, Thriller",8,"The Bride continues her quest of vengeance against her former boss and lover Bill, the reclusive bouncer Budd, and the treacherous, one-eyed Elle.",83,Quentin Tarantino,Uma Thurman,David Carradine,Michael Madsen,Daryl Hannah,683900,"66,208,183" "https://m.media-amazon.com/images/M/MV5BYmViZTY1OWEtMTQxMy00OGQ5LTgzZjAtYTQzOTYxNjliYTI4XkEyXkFqcGdeQXVyNjkxOTM4ODY@._V1_UY98_CR1,0,67,98_AL_.jpg",Vozvrashchenie,2003,,110 min,Drama,8,"In the Russian wilderness, two brothers face a range of new, conflicting emotions when their father - a man they know only through a single photograph - resurfaces.",82,Andrey Zvyagintsev,Vladimir Garin,Ivan Dobronravov,Konstantin Lavronenko,Nataliya Vdovina,42399,"502,028" "https://m.media-amazon.com/images/M/MV5BZGYxOTRlM2MtNWRjZS00NDk2LWExM2EtMDFiYTgyMGJkZGYyXkEyXkFqcGdeQXVyMTA1NTM1NDI2._V1_UY98_CR1,0,67,98_AL_.jpg",Bom Yeoareum Gaeul Gyeoul Geurigo Bom,2003,R,103 min,"Drama, Romance",8,A boy is raised by a Buddhist monk in an isolated floating temple where the years pass like the seasons.,85,Ki-duk Kim,Ki-duk Kim,Yeong-su Oh,Jong-ho Kim,Kim Young-Min,77520,"2,380,788" "https://m.media-amazon.com/images/M/MV5BMjE0NDk2NjgwMV5BMl5BanBnXkFtZTYwMTgyMzA3._V1_UX67_CR0,0,67,98_AL_.jpg",Mar adentro,2014,U,126 min,"Biography, Drama",8,"The factual story of Spaniard Ramon Sampedro, who fought a thirty-year campaign in favor of euthanasia and his own right to die.",74,Alejandro Amenábar,Javier Bardem,Belén Rueda,Lola Dueñas,Mabel Rivera,77554,"2,086,345" "https://m.media-amazon.com/images/M/MV5BODEyYmQxZjUtZGQ0NS00ZTAwLTkwOGQtNGY2NzEwMWE0MDc3XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Cinderella Man,2005,UA,144 min,"Biography, Drama, History",8,"The story of James J. Braddock, a supposedly washed-up boxer who came back to become a champion and an inspiration in the 1930s.",69,Ron Howard,Russell Crowe,Renée Zellweger,Craig Bierko,Paul Giamatti,176151,"61,649,911" "https://m.media-amazon.com/images/M/MV5BYmVjNDIxODAtNWZiZi00ZDBlLWJmOTUtNDNjMGExNTViMzE1XkEyXkFqcGdeQXVyNTE0MDc0NTM@._V1_UX67_CR0,0,67,98_AL_.jpg",Kal Ho Naa Ho,2003,U,186 min,"Comedy, Drama, Musical",8,"Naina, an introverted, perpetually depressed girl's life changes when she meets Aman. But Aman has a secret of his own which changes their lives forever. Embroiled in all this is Rohit, Naina's best friend who conceals his love for her.",54,Nikkhil Advani,Preity Zinta,Shah Rukh Khan,Saif Ali Khan,Jaya Bachchan,63460,"1,787,378" "https://m.media-amazon.com/images/M/MV5BM2U0NTcxOTktN2MwZS00N2Q2LWJlYWItMTg0NWIyMDIxNzU5L2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UY98_CR1,0,67,98_AL_.jpg",Mou gaan dou,2002,UA,101 min,"Action, Crime, Drama",8,"A story between a mole in the police department and an undercover cop. Their objectives are the same: to find out who is the mole, and who is the cop.",75,Andrew Lau,Alan Mak,Andy Lau,Tony Chiu-Wai Leung,Anthony Chau-Sang Wong,117857,"169,659" "https://m.media-amazon.com/images/M/MV5BNGYyZGM5MGMtYTY2Ni00M2Y1LWIzNjQtYWUzM2VlNGVhMDNhXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Pirates of the Caribbean: The Curse of the Black Pearl,2003,UA,143 min,"Action, Adventure, Fantasy",8,"Blacksmith Will Turner teams up with eccentric pirate ""Captain"" Jack Sparrow to save his love, the governor's daughter, from Jack's former pirate allies, who are now undead.",63,Gore Verbinski,Johnny Depp,Geoffrey Rush,Orlando Bloom,Keira Knightley,1015122,"305,413,918" "https://m.media-amazon.com/images/M/MV5BMmU3NzIyODctYjVhOC00NzBmLTlhNWItMzBlODEwZTlmMjUzXkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_UX67_CR0,0,67,98_AL_.jpg",Big Fish,2003,U,125 min,"Adventure, Drama, Fantasy",8,A frustrated son tries to determine the fact from fiction in his dying father's life.,58,Tim Burton,Ewan McGregor,Albert Finney,Billy Crudup,Jessica Lange,415218,"66,257,002" "https://m.media-amazon.com/images/M/MV5BMTY5OTU0OTc2NV5BMl5BanBnXkFtZTcwMzU4MDcyMQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Incredibles,2004,U,115 min,"Animation, Action, Adventure",8,"A family of undercover superheroes, while trying to live the quiet suburban life, are forced into action to save the world.",90,Brad Bird,Craig T. Nelson,Samuel L. Jackson,Holly Hunter,Jason Lee,657047,"261,441,092" "https://m.media-amazon.com/images/M/MV5BMjM2NTYxMTE3OV5BMl5BanBnXkFtZTgwNDgwNjgwMzE@._V1_UY98_CR3,0,67,98_AL_.jpg",Yeopgijeogin geunyeo,2001,,137 min,"Comedy, Drama, Romance",8,"A young man sees a drunk, cute woman standing too close to the tracks at a metro station in Seoul and pulls her back. She ends up getting him into trouble repeatedly after that, starting on the train.",,Jae-young Kwak,Tae-Hyun Cha,Jun Ji-Hyun,In-mun Kim,Song Wok-suk,45403, "https://m.media-amazon.com/images/M/MV5BMTkwNTg2MTI1NF5BMl5BanBnXkFtZTcwMDM1MzUyMQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Dogville,2003,R,178 min,"Crime, Drama",8,"A woman on the run from the mob is reluctantly accepted in a small Colorado community in exchange for labor, but when a search visits the town she finds out that their support has a price.",60,Lars von Trier,Nicole Kidman,Paul Bettany,Lauren Bacall,Harriet Andersson,137963,"1,530,386" "https://m.media-amazon.com/images/M/MV5BMjA2MzM4NjkyMF5BMl5BanBnXkFtZTYwMTQ2ODc5._V1_UY98_CR2,0,67,98_AL_.jpg",Vizontele,2001,,110 min,"Comedy, Drama",8,Lives of residents in a small Anatolian village change when television is introduced to them,,Yilmaz Erdogan,Ömer Faruk Sorak,Yilmaz Erdogan,Demet Akbag,Altan Erkekli,33592, "https://m.media-amazon.com/images/M/MV5BZjZlZDlkYTktMmU1My00ZDBiLWFlNjEtYTBhNjVhOTM4ZjJjXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Donnie Darko,2001,R,113 min,"Drama, Mystery, Sci-Fi",8,"After narrowly escaping a bizarre accident, a troubled teenager is plagued by visions of a man in a large rabbit suit who manipulates him to commit a series of crimes.",88,Richard Kelly,Jake Gyllenhaal,Jena Malone,Mary McDonnell,Holmes Osborne,740086,"1,480,006" "https://m.media-amazon.com/images/M/MV5BZjk3YThkNDktNjZjMS00MTBiLTllNTAtYzkzMTU0N2QwYjJjXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Magnolia,1999,R,188 min,Drama,8,"An epic mosaic of interrelated characters in search of love, forgiveness, and meaning in the San Fernando Valley.",77,Paul Thomas Anderson,Tom Cruise,Jason Robards,Julianne Moore,Philip Seymour Hoffman,289742,"22,455,976" "https://m.media-amazon.com/images/M/MV5BNDVkYWMxNWEtNjc2MC00OGI5LWI3NmUtYWUwNDQyOTc3YmY5XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Dancer in the Dark,2000,U,140 min,"Crime, Drama, Musical",8,"An East European girl travels to the United States with her young son, expecting it to be like a Hollywood film.",61,Lars von Trier,Björk,Catherine Deneuve,David Morse,Peter Stormare,102285,"4,184,036" "https://m.media-amazon.com/images/M/MV5BNmE1MDk4OWEtYjk1NS00MWU2LTk5ZWItYjZhYmRkODRjMDc0XkEyXkFqcGdeQXVyNjE5MjUyOTM@._V1_UX67_CR0,0,67,98_AL_.jpg",The Straight Story,1999,U,112 min,"Biography, Drama",8,An old man makes a long journey by lawnmower to mend his relationship with an ill brother.,86,David Lynch,Richard Farnsworth,Sissy Spacek,Jane Galloway Heitz,Joseph A. Carpenter,82002,"6,203,044" "https://m.media-amazon.com/images/M/MV5BMmMzOWNhNTYtYmY0My00OGJiLWIzNDUtZWRhNGY0NWFjNzFmXkEyXkFqcGdeQXVyNjUxMDQ0MTg@._V1_UX67_CR0,0,67,98_AL_.jpg",Pâfekuto burû,1997,A,81 min,"Animation, Crime, Mystery",8,"A pop singer gives up her career to become an actress, but she slowly goes insane when she starts being stalked by an obsessed fan and what seems to be a ghost of her past.",,Satoshi Kon,Junko Iwao,Rica Matsumoto,Shinpachi Tsuji,Masaaki Ôkura,58192,"776,665" "https://m.media-amazon.com/images/M/MV5BYTg3Yjc4N2QtZDdlNC00NmU2LWFiYjktYjI3NTMwMjk4M2FmXkEyXkFqcGdeQXVyMjgyNjk3MzE@._V1_UY98_CR4,0,67,98_AL_.jpg",Festen,1998,R,105 min,Drama,8,"At Helge's 60th birthday party, some unpleasant family truths are revealed.",82,Thomas Vinterberg,Ulrich Thomsen,Henning Moritzen,Thomas Bo Larsen,Paprika Steen,78341,"1,647,780" "https://m.media-amazon.com/images/M/MV5BMjE3ZDA5ZmUtYTk1ZS00NmZmLWJhNTItYjIwZjUwN2RjNzIyXkEyXkFqcGdeQXVyMTkzODUwNzk@._V1_UX67_CR0,0,67,98_AL_.jpg",Central do Brasil,1998,R,110 min,Drama,8,"An emotive journey of a former school teacher, who writes letters for illiterate people, and a young boy, whose mother has just died, as they search for the father he never knew.",80,Walter Salles,Fernanda Montenegro,Vinícius de Oliveira,Marília Pêra,Soia Lira,36419,"5,595,428" "https://m.media-amazon.com/images/M/MV5BMjIxNDU2Njk0OV5BMl5BanBnXkFtZTgwODc3Njc3NjE@._V1_UX67_CR0,0,67,98_AL_.jpg",The Iron Giant,1999,PG,86 min,"Animation, Action, Adventure",8,A young boy befriends a giant robot from outer space that a paranoid government agent wants to destroy.,85,Brad Bird,Eli Marienthal,Harry Connick Jr.,Jennifer Aniston,Vin Diesel,172083,"23,159,305" "https://m.media-amazon.com/images/M/MV5BMTk2MjcxNjMzN15BMl5BanBnXkFtZTgwMTE3OTEwNjE@._V1_UY98_CR3,0,67,98_AL_.jpg",Knockin' on Heaven's Door,1997,,87 min,"Action, Crime, Comedy",8,"Two terminally ill patients escape from a hospital, steal a car and rush towards the sea.",,Thomas Jahn,Til Schweiger,Jan Josef Liefers,Thierry van Werveke,Moritz Bleibtreu,27721,"3,296" "https://m.media-amazon.com/images/M/MV5BNGY5NWIxMjAtODBjNC00MmZhLTk1ZTAtNGRhYThlOTNjMTQwXkEyXkFqcGdeQXVyNTc1NTQxODI@._V1_UX67_CR0,0,67,98_AL_.jpg",Sling Blade,1996,R,135 min,Drama,8,"Karl Childers, a simple man hospitalized since his childhood murder of his mother and her lover, is released to start a new life in a small town.",84,Billy Bob Thornton,Billy Bob Thornton,Dwight Yoakam,J.T. Walsh,John Ritter,86838,"24,475,416" "https://m.media-amazon.com/images/M/MV5BY2QzMTIxNjItNGQyNy00MjQzLWJiYTItMzIyZjdkYjYyYjRlXkEyXkFqcGdeQXVyMTAwMzUyOTc@._V1_UX67_CR0,0,67,98_AL_.jpg",Secrets & Lies,1996,U,136 min,"Comedy, Drama",8,"Following the death of her adoptive parents, a successful young black optometrist establishes contact with her biological mother -- a lonely white factory worker living in poverty in East London.",91,Mike Leigh,Timothy Spall,Brenda Blethyn,Phyllis Logan,Claire Rushbrook,37564,"13,417,292" "https://m.media-amazon.com/images/M/MV5BN2Y2OWU4MWMtNmIyMy00YzMyLWI0Y2ItMTcyZDc3MTdmZDU4XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Twelve Monkeys,1995,A,129 min,"Mystery, Sci-Fi, Thriller",8,"In a future world devastated by disease, a convict is sent back in time to gather information about the man-made virus that wiped out most of the human population on the planet.",74,Terry Gilliam,Bruce Willis,Madeleine Stowe,Brad Pitt,Joseph Melito,578443,"57,141,459" "https://m.media-amazon.com/images/M/MV5BYWRiYjQyOGItNzQ1Mi00MGI1LWE3NjItNTg1ZDQwNjUwNDM2XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Kôkaku Kidôtai,1995,UA,83 min,"Animation, Action, Crime",8,A cyborg policewoman and her partner hunt a mysterious and powerful hacker called the Puppet Master.,76,Mamoru Oshii,Atsuko Tanaka,Iemasa Kayumi,Akio Ôtsuka,Kôichi Yamadera,129231,"515,905" "https://m.media-amazon.com/images/M/MV5BNWE4OTNiM2ItMjY4Ni00ZTViLWFiZmEtZGEyNGY2ZmNlMzIyXkEyXkFqcGdeQXVyMDU5NDcxNw@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Nightmare Before Christmas,1993,U,76 min,"Animation, Family, Fantasy",8,"Jack Skellington, king of Halloween Town, discovers Christmas Town, but his attempts to bring Christmas to his home causes confusion.",82,Henry Selick,Danny Elfman,Chris Sarandon,Catherine O'Hara,William Hickey,300208,"75,082,668" "https://m.media-amazon.com/images/M/MV5BZWIxNzM5YzQtY2FmMS00Yjc3LWI1ZjUtNGVjMjMzZTIxZTIxXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Groundhog Day,1993,U,101 min,"Comedy, Fantasy, Romance",8,A weatherman finds himself inexplicably living the same day over and over again.,72,Harold Ramis,Bill Murray,Andie MacDowell,Chris Elliott,Stephen Tobolowsky,577991,"70,906,973" "https://m.media-amazon.com/images/M/MV5BNzZmMjAxNjQtZjQzOS00NjU4LWI0NDktZjlkZTgwNjVmNzU3XkEyXkFqcGdeQXVyNTI4MjkwNjA@._V1_UX67_CR0,0,67,98_AL_.jpg",Bound by Honor,1993,R,180 min,"Crime, Drama",8,"Based on the true life experiences of poet Jimmy Santiago Baca, the film focuses on step-brothers Paco and Cruz, and their bi-racial cousin Miklo.",47,Taylor Hackford,Damian Chapa,Jesse Borrego,Benjamin Bratt,Enrique Castillo,28825,"4,496,583" "https://m.media-amazon.com/images/M/MV5BZTM3ZjA3NTctZThkYy00ODYyLTk2ZjItZmE0MmZlMTk3YjQwXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UX67_CR0,0,67,98_AL_.jpg",Scent of a Woman,1992,UA,156 min,Drama,8,"A prep school student needing money agrees to ""babysit"" a blind man, but the job is not at all what he anticipated.",59,Martin Brest,Al Pacino,Chris O'Donnell,James Rebhorn,Gabrielle Anwar,263918,"63,895,607" "https://m.media-amazon.com/images/M/MV5BY2Q2NDI1MjUtM2Q5ZS00MTFlLWJiYWEtNTZmNjQ3OGJkZDgxXkEyXkFqcGdeQXVyNTI4MjkwNjA@._V1_UX67_CR0,0,67,98_AL_.jpg",Aladdin,1992,U,90 min,"Animation, Adventure, Comedy",8,A kindhearted street urchin and a power-hungry Grand Vizier vie for a magic lamp that has the power to make their deepest wishes come true.,86,Ron Clements,John Musker,Scott Weinger,Robin Williams,Linda Larkin,373845,"217,350,219" "https://m.media-amazon.com/images/M/MV5BYjYyODExMDctZjgwYy00ZjQwLWI4OWYtOGFlYjA4ZjEzNmY1XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",JFK,1991,UA,189 min,"Drama, History, Thriller",8,New Orleans District Attorney Jim Garrison discovers there's more to the Kennedy assassination than the official story.,72,Oliver Stone,Kevin Costner,Gary Oldman,Jack Lemmon,Walter Matthau,142110,"70,405,498" "https://m.media-amazon.com/images/M/MV5BMzE5MDM1NDktY2I0OC00YWI5LTk2NzUtYjczNDczOWQxYjM0XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Beauty and the Beast,1991,G,84 min,"Animation, Family, Fantasy",8,A prince cursed to spend his days as a hideous monster sets out to regain his humanity by earning a young woman's love.,95,Gary Trousdale,Kirk Wise,Paige O'Hara,Robby Benson,Jesse Corti,417178,"218,967,620" "https://m.media-amazon.com/images/M/MV5BMTY3OTI5NDczN15BMl5BanBnXkFtZTcwNDA0NDY3Mw@@._V1_UX67_CR0,0,67,98_AL_.jpg",Dances with Wolves,1990,U,181 min,"Adventure, Drama, Western",8,"Lieutenant John Dunbar, assigned to a remote western Civil War outpost, befriends wolves and Indians, making him an intolerable aberration in the military.",72,Kevin Costner,Kevin Costner,Mary McDonnell,Graham Greene,Rodney A. Grant,240266,"184,208,848" "https://m.media-amazon.com/images/M/MV5BODA2MjU1NTI1MV5BMl5BanBnXkFtZTgwOTU4ODIwMjE@._V1_UX67_CR0,0,67,98_AL_.jpg",Do the Right Thing,1989,R,120 min,"Comedy, Drama",8,"On the hottest day of the year on a street in the Bedford-Stuyvesant section of Brooklyn, everyone's hate and bigotry smolders and builds until it explodes into violence.",93,Spike Lee,Danny Aiello,Ossie Davis,Ruby Dee,Richard Edson,89429,"27,545,445" "https://m.media-amazon.com/images/M/MV5BMzVjNzI4NzYtMjE4NS00M2IzLWFkOWMtOTYwMWUzN2ZlNGVjL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Rain Man,1988,U,133 min,Drama,8,Selfish yuppie Charlie Babbitt's father left a fortune to his savant brother Raymond and a pittance to Charlie; they travel cross-country.,65,Barry Levinson,Dustin Hoffman,Tom Cruise,Valeria Golino,Gerald R. Molen,473064,"178,800,000" "https://m.media-amazon.com/images/M/MV5BM2ZiZTk1ODgtMTZkNS00NTYxLWIxZTUtNWExZGYwZTRjODViXkEyXkFqcGdeQXVyMTE2MzA3MDM@._V1_UX67_CR0,0,67,98_AL_.jpg",Akira,1988,UA,124 min,"Animation, Action, Sci-Fi",8,A secret military project endangers Neo-Tokyo when it turns a biker gang member into a rampaging psychic psychopath who can only be stopped by two teenagers and a group of psychics.,,Katsuhiro Ôtomo,Mitsuo Iwata,Nozomu Sasaki,Mami Koyama,Tesshô Genda,164918,"553,171" "https://m.media-amazon.com/images/M/MV5BMGM4M2Q5N2MtNThkZS00NTc1LTk1NTItNWEyZjJjNDRmNDk5XkEyXkFqcGdeQXVyMjA0MDQ0Mjc@._V1_UX67_CR0,0,67,98_AL_.jpg",The Princess Bride,1987,U,98 min,"Adventure, Family, Fantasy",8,"While home sick in bed, a young boy's grandfather reads him the story of a farmboy-turned-pirate who encounters numerous obstacles, enemies and allies in his quest to be reunited with his true love.",77,Rob Reiner,Cary Elwes,Mandy Patinkin,Robin Wright,Chris Sarandon,393899,"30,857,814" "https://m.media-amazon.com/images/M/MV5BMzMxZjUzOGQtOTFlOS00MzliLWJhNTUtOTgyNzYzMWQ2YzhmXkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_UY98_CR0,0,67,98_AL_.jpg",Der Himmel über Berlin,1987,U,128 min,"Drama, Fantasy, Romance",8,An angel tires of overseeing human activity and wishes to become human when he falls in love with a mortal.,79,Wim Wenders,Bruno Ganz,Solveig Dommartin,Otto Sander,Curt Bois,64722,"3,333,969" "https://m.media-amazon.com/images/M/MV5BZmYxOTA5YTEtNDY3Ni00YTE5LWE1MTgtYjc4ZWUxNWY3ZTkxXkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Au revoir les enfants,1987,U,104 min,"Drama, War",8,"A French boarding school run by priests seems to be a haven from World War II until a new student arrives. He becomes the roommate of the top student in his class. Rivals at first, the roommates form a bond and share a secret.",88,Louis Malle,Gaspard Manesse,Raphael Fejtö,Francine Racette,Stanislas Carré de Malberg,31163,"4,542,825" "https://m.media-amazon.com/images/M/MV5BNTg0NmI1ZGQtZTUxNC00NTgxLThjMDUtZmRlYmEzM2MwOWYwXkEyXkFqcGdeQXVyMzM4MjM0Nzg@._V1_UY98_CR1,0,67,98_AL_.jpg",Tenkû no shiro Rapyuta,1986,U,125 min,"Animation, Adventure, Drama",8,A young boy and a girl with a magic crystal must race against pirates and foreign agents in a search for a legendary floating castle.,78,Hayao Miyazaki,Mayumi Tanaka,Keiko Yokozawa,Kotoe Hatsui,Minori Terada,150140, "https://m.media-amazon.com/images/M/MV5BYTViNzMxZjEtZGEwNy00MDNiLWIzNGQtZDY2MjQ1OWViZjFmXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",The Terminator,1984,UA,107 min,"Action, Sci-Fi",8,"A human soldier is sent from 2029 to 1984 to stop an almost indestructible cyborg killing machine, sent from the same year, which has been programmed to execute a young woman whose unborn son is the key to humanity's future salvation.",84,James Cameron,Arnold Schwarzenegger,Linda Hamilton,Michael Biehn,Paul Winfield,799795,"38,400,000" "https://m.media-amazon.com/images/M/MV5BMzJiZDRmOWUtYjE2MS00Mjc1LTg1ZDYtNTQxYWJkZTg1OTM4XkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_UX67_CR0,0,67,98_AL_.jpg",Gandhi,1982,U,191 min,"Biography, Drama, History",8,The life of the lawyer who became the famed leader of the Indian revolts against the British rule through his philosophy of nonviolent protest.,79,Richard Attenborough,Ben Kingsley,John Gielgud,Rohini Hattangadi,Roshan Seth,217664,"52,767,889" "https://m.media-amazon.com/images/M/MV5BMzFhNWVmNWItNGM5OC00NjZhLTk3YTQtMjE1ODUyOThlMjNmL2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Kagemusha,1980,U,180 min,"Drama, History, War",8,A petty thief with an utter resemblance to a samurai warlord is hired as the lord's double. When the warlord later dies the thief is forced to take up arms in his place.,84,Akira Kurosawa,Tatsuya Nakadai,Tsutomu Yamazaki,Ken'ichi Hagiwara,Jinpachi Nezu,32195, "https://m.media-amazon.com/images/M/MV5BNjAzNzJjYzQtMGFmNS00ZjAzLTkwMjgtMWIzYzFkMzM4Njg3XkEyXkFqcGdeQXVyMTY5Nzc4MDY@._V1_UX67_CR0,0,67,98_AL_.jpg",Being There,1979,PG,130 min,"Comedy, Drama",8,"A simpleminded, sheltered gardener becomes an unlikely trusted advisor to a powerful businessman and an insider in Washington politics.",83,Hal Ashby,Peter Sellers,Shirley MacLaine,Melvyn Douglas,Jack Warden,65625,"30,177,511" "https://m.media-amazon.com/images/M/MV5BZDg1OGQ4YzgtM2Y2NS00NjA3LWFjYTctMDRlMDI3NWE1OTUyXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_UX67_CR0,0,67,98_AL_.jpg",Annie Hall,1977,A,93 min,"Comedy, Romance",8,Neurotic New York comedian Alvy Singer falls in love with the ditzy Annie Hall.,92,Woody Allen,Woody Allen,Diane Keaton,Tony Roberts,Carol Kane,251823,"39,200,000" "https://m.media-amazon.com/images/M/MV5BMmVmODY1MzEtYTMwZC00MzNhLWFkNDMtZjAwM2EwODUxZTA5XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Jaws,1975,A,124 min,"Adventure, Thriller",8,"When a killer shark unleashes chaos on a beach community, it's up to a local sheriff, a marine biologist, and an old seafarer to hunt the beast down.",87,Steven Spielberg,Roy Scheider,Robert Shaw,Richard Dreyfuss,Lorraine Gary,543388,"260,000,000" "https://m.media-amazon.com/images/M/MV5BODExZmE2ZWItYTIzOC00MzI1LTgyNTktMDBhNmFhY2Y4OTQ3XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Dog Day Afternoon,1975,U,125 min,"Biography, Crime, Drama",8,"Three amateur bank robbers plan to hold up a bank. A nice simple robbery: Walk in, take the money, and run. Unfortunately, the supposedly uncomplicated heist suddenly becomes a bizarre nightmare as everything that could go wrong does.",86,Sidney Lumet,Al Pacino,John Cazale,Penelope Allen,Sully Boyar,235652,"50,000,000" "https://m.media-amazon.com/images/M/MV5BMTEwNjg2MjM2ODFeQTJeQWpwZ15BbWU4MDQ1MDU5OTEx._V1_UX67_CR0,0,67,98_AL_.jpg",Young Frankenstein,1974,A,106 min,Comedy,8,"An American grandson of the infamous scientist, struggling to prove that his grandfather was not as insane as people believe, is invited to Transylvania, where he discovers the process that reanimates a dead body.",80,Mel Brooks,Gene Wilder,Madeline Kahn,Marty Feldman,Peter Boyle,143359,"86,300,000" "https://m.media-amazon.com/images/M/MV5BZGRjZjQ0NzAtYmZlNS00Zjc1LTk1YWItMDY5YzQxMzA4MTAzXkEyXkFqcGdeQXVyMjI4MjA5MzA@._V1_UX67_CR0,0,67,98_AL_.jpg",Papillon,1973,R,151 min,"Biography, Crime, Drama",8,"A man befriends a fellow criminal as the two of them begin serving their sentence on a dreadful prison island, which inspires the man to plot his escape.",58,Franklin J. Schaffner,Steve McQueen,Dustin Hoffman,Victor Jory,Don Gordon,121627,"53,267,000" "https://m.media-amazon.com/images/M/MV5BYjhmMGMxZDYtMTkyNy00YWVmLTgyYmUtYTU3ZjcwNTBjN2I1XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",The Exorcist,1973,A,122 min,Horror,8,"When a 12-year-old girl is possessed by a mysterious entity, her mother seeks the help of two priests to save her.",81,William Friedkin,Ellen Burstyn,Max von Sydow,Linda Blair,Lee J. Cobb,362393,"232,906,145" "https://m.media-amazon.com/images/M/MV5BM2EzZmFmMmItODY3Zi00NjdjLWE0MTYtZWQ3MGIyM2M4YjZhXkEyXkFqcGdeQXVyMzg2MzE2OTE@._V1_UX67_CR0,0,67,98_AL_.jpg",Sleuth,1972,PG,138 min,"Mystery, Thriller",8,"A man who loves games and theater invites his wife's lover to meet him, setting up a battle of wits with potentially deadly results.",,Joseph L. Mankiewicz,Laurence Olivier,Michael Caine,Alec Cawthorne,John Matthews,44748,"4,081,254" "https://m.media-amazon.com/images/M/MV5BNmVjNzZkZjQtYmM5ZC00M2I0LWJhNzktNDk3MGU1NWMxMjFjXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",The Last Picture Show,1971,R,118 min,"Drama, Romance",8,"In 1951, a group of high schoolers come of age in a bleak, isolated, atrophied North Texas town that is slowly dying, both culturally and economically.",93,Peter Bogdanovich,Timothy Bottoms,Jeff Bridges,Cybill Shepherd,Ben Johnson,42456,"29,133,000" "https://m.media-amazon.com/images/M/MV5BMWMxNDYzNmUtYjFmNC00MGM2LWFmNzMtODhlMGNkNDg5MjE5XkEyXkFqcGdeQXVyNjE5MjUyOTM@._V1_UX67_CR0,0,67,98_AL_.jpg",Fiddler on the Roof,1971,G,181 min,"Drama, Family, Musical",8,"In prerevolutionary Russia, a Jewish peasant contends with marrying off three of his daughters while growing anti-Semitic sentiment threatens his village.",67,Norman Jewison,Topol,Norma Crane,Leonard Frey,Molly Picon,39491,"80,500,000" "https://m.media-amazon.com/images/M/MV5BODFlYzU4YTItN2EwYi00ODI3LTkwNTQtMDdkNjM3YjMyMTgyXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UY98_CR0,0,67,98_AL_.jpg",Il conformista,1970,UA,113 min,Drama,8,"A weak-willed Italian man becomes a fascist flunky who goes abroad to arrange the assassination of his old teacher, now a political dissident.",100,Bernardo Bertolucci,Jean-Louis Trintignant,Stefania Sandrelli,Gastone Moschin,Enzo Tarascio,27067,"541,940" "https://m.media-amazon.com/images/M/MV5BMTkyMTM2NDk5Nl5BMl5BanBnXkFtZTgwNzY1NzEyMDE@._V1_UX67_CR0,0,67,98_AL_.jpg",Butch Cassidy and the Sundance Kid,1969,PG,110 min,"Biography, Crime, Drama",8,"Wyoming, early 1900s. Butch Cassidy and The Sundance Kid are the leaders of a band of outlaws. After a train robbery goes wrong they find themselves on the run with a posse hard on their heels. Their solution - escape to Bolivia.",66,George Roy Hill,Paul Newman,Robert Redford,Katharine Ross,Strother Martin,201888,"102,308,889" "https://m.media-amazon.com/images/M/MV5BZmEwZGU2NzctYzlmNi00MGJkLWE3N2MtYjBlN2ZhMGJkZTZiXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Rosemary's Baby,1968,A,137 min,"Drama, Horror",8,A young couple trying for a baby move into a fancy apartment surrounded by peculiar neighbors.,96,Roman Polanski,Mia Farrow,John Cassavetes,Ruth Gordon,Sidney Blackmer,193674, "https://m.media-amazon.com/images/M/MV5BMTg0NjUwMzg5NF5BMl5BanBnXkFtZTgwNDQ0NjcwMTE@._V1_UX67_CR0,0,67,98_AL_.jpg",Planet of the Apes,1968,U,112 min,"Adventure, Sci-Fi",8,"An astronaut crew crash-lands on a planet in the distant future where intelligent talking apes are the dominant species, and humans are the oppressed and enslaved.",79,Franklin J. Schaffner,Charlton Heston,Roddy McDowall,Kim Hunter,Maurice Evans,165167,"33,395,426" "https://m.media-amazon.com/images/M/MV5BMTQ0ODc4MDk4Nl5BMl5BanBnXkFtZTcwMTEzNzgzNA@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Graduate,1967,A,106 min,"Comedy, Drama, Romance",8,A disillusioned college graduate finds himself torn between his older lover and her daughter.,83,Mike Nichols,Dustin Hoffman,Anne Bancroft,Katharine Ross,William Daniels,253676,"104,945,305" "https://m.media-amazon.com/images/M/MV5BMjQ5ODI1MjQtMDc0Zi00OGQ1LWE2NTYtMTg1YTkxM2E5NzFkXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UX67_CR0,0,67,98_AL_.jpg",Who's Afraid of Virginia Woolf?,1966,A,131 min,Drama,8,"A bitter, aging couple, with the help of alcohol, use their young houseguests to fuel anguish and emotional pain towards each other over the course of a distressing night.",75,Mike Nichols,Elizabeth Taylor,Richard Burton,George Segal,Sandy Dennis,68926, "https://m.media-amazon.com/images/M/MV5BODIxNjhkYjEtYzUyMi00YTNjLWE1YjktNjAyY2I2MWNkNmNmL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UY98_CR1,0,67,98_AL_.jpg",The Sound of Music,1965,U,172 min,"Biography, Drama, Family",8,A woman leaves an Austrian convent to become a governess to the children of a Naval officer widower.,63,Robert Wise,Julie Andrews,Christopher Plummer,Eleanor Parker,Richard Haydn,205425,"163,214,286" "https://m.media-amazon.com/images/M/MV5BNzdmZTk4MTktZmExNi00OWEwLTgxZDctNTE4NWMwNjc1Nzg2XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Doctor Zhivago,1965,A,197 min,"Drama, Romance, War",8,"The life of a Russian physician and poet who, although married to another, falls in love with a political activist's wife and experiences hardship during World War I and then the October Revolution.",69,David Lean,Omar Sharif,Julie Christie,Geraldine Chaplin,Rod Steiger,69903,"111,722,000" "https://m.media-amazon.com/images/M/MV5BYjA1MGVlMGItNzgxMC00OWY4LWI4YjEtNTNmYWIzMGUxOGQzXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UY98_CR0,0,67,98_AL_.jpg",Per un pugno di dollari,1964,A,99 min,"Action, Drama, Western",8,"A wandering gunfighter plays two rival families against each other in a town torn apart by greed, pride, and revenge.",65,Sergio Leone,Clint Eastwood,Gian Maria Volontè,Marianne Koch,Wolfgang Lukschy,198219,"14,500,000" "https://m.media-amazon.com/images/M/MV5BMTQ4MTA0NjEzMF5BMl5BanBnXkFtZTgwMDg4NDYxMzE@._V1_UY98_CR2,0,67,98_AL_.jpg",8½,1963,,138 min,Drama,8,A harried movie director retreats into his memories and fantasies.,91,Federico Fellini,Marcello Mastroianni,Anouk Aimée,Claudia Cardinale,Sandra Milo,108844,"50,690" "https://m.media-amazon.com/images/M/MV5BNjMyZmI5NmItY2JlMi00NzU3LWI5ZGItZjhkOTE0YjEyN2Q4XkEyXkFqcGdeQXVyNDkzNTM2ODg@._V1_UX67_CR0,0,67,98_AL_.jpg",Vivre sa vie: Film en douze tableaux,1962,,80 min,Drama,8,Twelve episodic tales in the life of a Parisian woman and her slow descent into prostitution.,,Jean-Luc Godard,Anna Karina,Sady Rebbot,André S. Labarthe,Guylaine Schlumberger,28057, "https://m.media-amazon.com/images/M/MV5BNjhjODI2NTItMGE1ZS00NThiLWE1MmYtOWE3YzcyNzY1MTJlXkEyXkFqcGdeQXVyNTc1NTQxODI@._V1_UX67_CR0,0,67,98_AL_.jpg",The Hustler,1961,A,134 min,"Drama, Sport",8,An up-and-coming pool player plays a long-time champion in a single high-stakes match.,90,Robert Rossen,Paul Newman,Jackie Gleason,Piper Laurie,George C. Scott,75067,"8,284,000" "https://m.media-amazon.com/images/M/MV5BODQ0NzY5NGEtYTc5NC00Yjg4LTg4Y2QtZjE2MTkyYTNmNmU2L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UY98_CR1,0,67,98_AL_.jpg",La dolce vita,1960,A,174 min,"Comedy, Drama",8,A series of stories following a week in the life of a philandering paparazzo journalist living in Rome.,95,Federico Fellini,Marcello Mastroianni,Anita Ekberg,Anouk Aimée,Yvonne Furneaux,66621,"19,516,000" "https://m.media-amazon.com/images/M/MV5BZDVhMTk1NjUtYjc0OS00OTE1LTk1NTYtYWMzMDI5OTlmYzU2XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Rio Bravo,1959,Passed,141 min,"Action, Drama, Western",8,"A small-town sheriff in the American West enlists the help of a cripple, a drunk, and a young gunfighter in his efforts to hold in jail the brother of the local bad guy.",93,Howard Hawks,John Wayne,Dean Martin,Ricky Nelson,Angie Dickinson,56305,"12,535,000" "https://m.media-amazon.com/images/M/MV5BMzM0MzE2ZTAtZTBjZS00MTk5LTg5OTEtNjNmYmQ5NzU2OTUyXkEyXkFqcGdeQXVyNDY2MTk1ODk@._V1_UX67_CR0,0,67,98_AL_.jpg",Anatomy of a Murder,1959,,161 min,"Crime, Drama, Mystery",8,"In a murder trial, the defendant says he suffered temporary insanity after the victim raped his wife. What is the truth, and will he win his case?",95,Otto Preminger,James Stewart,Lee Remick,Ben Gazzara,Arthur O'Connell,59847,"11,900,000" "https://m.media-amazon.com/images/M/MV5BOTA1MjA3M2EtMmJjZS00OWViLTkwMTEtM2E5ZDk0NTAyNGJiXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Touch of Evil,1958,PG-13,95 min,"Crime, Drama, Film-Noir",8,"A stark, perverse story of murder, kidnapping, and police corruption in a Mexican border town.",99,Orson Welles,Charlton Heston,Orson Welles,Janet Leigh,Joseph Calleia,98431,"2,237,659" "https://m.media-amazon.com/images/M/MV5BMzFhNTMwNDMtZjY3Yy00NzY3LWI1ZWQtZTQxMWJmODVhZWFkXkEyXkFqcGdeQXVyNjQzNDI3NzY@._V1_UX67_CR0,0,67,98_AL_.jpg",Cat on a Hot Tin Roof,1958,A,108 min,Drama,8,Brick is an alcoholic ex-football player who drinks his days away and resists the affections of his wife. A reunion with his terminal father jogs a host of memories and revelations for both father and son.,84,Richard Brooks,Elizabeth Taylor,Paul Newman,Burl Ives,Jack Carson,45062,"17,570,324" "https://m.media-amazon.com/images/M/MV5BMjE5NTU3YWYtOWIxNi00YWZhLTg2NzktYzVjZWY5MDQ4NzVlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Sweet Smell of Success,1957,Approved,96 min,"Drama, Film-Noir",8,Powerful but unethical Broadway columnist J.J. Hunsecker coerces unscrupulous press agent Sidney Falco into breaking up his sister's romance with a jazz musician.,100,Alexander Mackendrick,Burt Lancaster,Tony Curtis,Susan Harrison,Martin Milner,28137, "https://m.media-amazon.com/images/M/MV5BMDE5ZjAwY2YtOWM5Yi00ZWNlLWE5ODQtYjA4NzA1NGFkZDU5XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",The Killing,1956,Approved,84 min,"Crime, Drama, Film-Noir",8,Crook Johnny Clay assembles a five man team to plan and execute a daring race-track robbery.,91,Stanley Kubrick,Sterling Hayden,Coleen Gray,Vince Edwards,Jay C. Flippen,81702, "https://m.media-amazon.com/images/M/MV5BYTNjN2M2MzYtZGEwMi00Mzc5LWEwYTMtODM1ZmRiZjFiNTU0L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",The Night of the Hunter,1955,,92 min,"Crime, Drama, Film-Noir",8,"A religious fanatic marries a gullible widow whose young children are reluctant to tell him where their real daddy hid the $10,000 he'd stolen in a robbery.",99,Charles Laughton,Robert Mitchum,Shelley Winters,Lillian Gish,James Gleason,81980,"654,000" "https://m.media-amazon.com/images/M/MV5BYjUyOGMyMTQtYTM5Yy00MjFiLTk2OGItMWYwMDc2YmM1YzhiXkEyXkFqcGdeQXVyMjA0MzYwMDY@._V1_UY98_CR2,0,67,98_AL_.jpg",La Strada,1954,,108 min,Drama,8,"A care-free girl is sold to a traveling entertainer, consequently enduring physical and emotional pain along the way.",,Federico Fellini,Anthony Quinn,Giulietta Masina,Richard Basehart,Aldo Silvani,58314, "https://m.media-amazon.com/images/M/MV5BMGJmNmU5OTAtOTQyYy00MmM3LTk4MzUtMGFiZDYzODdmMmU4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY98_CR3,0,67,98_AL_.jpg",Les diaboliques,1955,,117 min,"Crime, Drama, Horror",8,The wife and mistress of a loathed school principal plan to murder him with what they believe is the perfect alibi.,,Henri-Georges Clouzot,Simone Signoret,Véra Clouzot,Paul Meurisse,Charles Vanel,61503, "https://m.media-amazon.com/images/M/MV5BNDMyNGU0NjUtNTIxMC00ZmU2LWE0ZGItZTdkNGVlODI2ZDcyL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Stalag 17,1953,,120 min,"Comedy, Drama, War",8,"When two escaping American World War II prisoners are killed, the German P.O.W. camp barracks black marketeer, J.J. Sefton, is suspected of being an informer.",84,Billy Wilder,William Holden,Don Taylor,Otto Preminger,Robert Strauss,51046, "https://m.media-amazon.com/images/M/MV5BMTE2MDM4MTMtZmNkZC00Y2QyLWE0YjUtMTAxZGJmODMxMDM0XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Roman Holiday,1953,,118 min,"Comedy, Romance",8,A bored and sheltered princess escapes her guardians and falls in love with an American newsman in Rome.,78,William Wyler,Gregory Peck,Audrey Hepburn,Eddie Albert,Hartley Power,127256, "https://m.media-amazon.com/images/M/MV5BNzk2M2Y3MzYtNGMzMi00Y2FjLTkwODQtNmExYWU3ZWY3NzExXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UX67_CR0,0,67,98_AL_.jpg",A Streetcar Named Desire,1951,A,122 min,Drama,8,Disturbed Blanche DuBois moves in with her sister in New Orleans and is tormented by her brutish brother-in-law while her reality crumbles around her.,97,Elia Kazan,Vivien Leigh,Marlon Brando,Kim Hunter,Karl Malden,99182,"8,000,000" "https://m.media-amazon.com/images/M/MV5BNjRmZjcwZTQtYWY0ZS00ODAwLTg4YTktZDhlZDMwMTM1MGFkXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",In a Lonely Place,1950,,94 min,"Drama, Film-Noir, Mystery",8,"A potentially violent screenwriter is a murder suspect until his lovely neighbor clears him. However, she soon starts to have her doubts.",,Nicholas Ray,Humphrey Bogart,Gloria Grahame,Frank Lovejoy,Carl Benton Reid,26784, "https://m.media-amazon.com/images/M/MV5BZjc1Yzc0ZmItMzU1OS00OWVlLThmYTctMWNlYmFlMjkxMzc0XkEyXkFqcGdeQXVyNTA1NjYyMDk@._V1_UY98_CR32,0,67,98_AL_.jpg",Kind Hearts and Coronets,1949,U,106 min,"Comedy, Crime",8,A distant poor relative of the Duke D'Ascoyne plots to inherit the title by murdering the eight other heirs who stand ahead of him in the line of succession.,,Robert Hamer,Dennis Price,Alec Guinness,Valerie Hobson,Joan Greenwood,34485, "https://m.media-amazon.com/images/M/MV5BYWFjMDNlYzItY2VlMS00ZTRkLWJjYTEtYjI5NmFlMGE3MzQ2XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Rope,1948,A,80 min,"Crime, Drama, Mystery",8,Two men attempt to prove they committed the perfect crime by hosting a dinner party after strangling their former classmate to death.,73,Alfred Hitchcock,James Stewart,John Dall,Farley Granger,Dick Hogan,129783, "https://m.media-amazon.com/images/M/MV5BMDE0MjYxYmMtM2VhMC00MjhiLTg5NjItMDkzZGM5MGVlYjMxL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Out of the Past,1947,,97 min,"Crime, Drama, Film-Noir",8,"A private eye escapes his past to run a gas station in a small town, but his past catches up with him. Now he must return to the big city world of danger, corruption, double crosses and duplicitous dames.",,Jacques Tourneur,Robert Mitchum,Jane Greer,Kirk Douglas,Rhonda Fleming,32784, "https://m.media-amazon.com/images/M/MV5BYWQ0MGNjOTYtMWJlNi00YWMxLWFmMzktYjAyNTVkY2U1NWNhL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Brief Encounter,1945,U,86 min,"Drama, Romance",8,"Meeting a stranger in a railway station, a woman is tempted to cheat on her husband.",92,David Lean,Celia Johnson,Trevor Howard,Stanley Holloway,Joyce Carey,35601, "https://m.media-amazon.com/images/M/MV5BYjkxOGM5OTktNTRmZi00MjhlLWE2MDktNzY3NjY3NmRjNDUyXkEyXkFqcGdeQXVyNDY2MTk1ODk@._V1_UX67_CR0,0,67,98_AL_.jpg",Laura,1944,Passed,88 min,"Drama, Film-Noir, Mystery",8,A police detective falls in love with the woman whose murder he is investigating.,,Otto Preminger,Gene Tierney,Dana Andrews,Clifton Webb,Vincent Price,42725,"4,360,000" "https://m.media-amazon.com/images/M/MV5BY2RmNTRjYzctODI4Ni00MzQyLWEyNTAtNjU0N2JkMTNhNjJkXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",The Best Years of Our Lives,1946,Approved,170 min,"Drama, Romance, War",8,Three World War II veterans return home to small-town America to discover that they and their families have been irreparably changed.,93,William Wyler,Myrna Loy,Dana Andrews,Fredric March,Teresa Wright,57259,"23,650,000" "https://m.media-amazon.com/images/M/MV5BZDVlNTBjMjctNjAzNS00ZGJhLTg2NzMtNzIwYTIzYTBiMDkyXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UX67_CR0,0,67,98_AL_.jpg",Arsenic and Old Lace,1942,,118 min,"Comedy, Crime, Thriller",8,A writer of books on the futility of marriage risks his reputation when he decides to get married. Things get even more complicated when he learns on his wedding day that his beloved maiden aunts are habitual murderers.,,Frank Capra,Cary Grant,Priscilla Lane,Raymond Massey,Jack Carson,65101, "https://m.media-amazon.com/images/M/MV5BZjIwNGM1ZTUtOThjYS00NDdiLTk2ZDYtNGY5YjJkNzliM2JjL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Maltese Falcon,1941,,100 min,"Film-Noir, Mystery",8,"A private detective takes on a case that involves him with three eccentric criminals, a gorgeous liar, and their quest for a priceless statuette.",96,John Huston,Humphrey Bogart,Mary Astor,Gladys George,Peter Lorre,148928,"2,108,060" "https://m.media-amazon.com/images/M/MV5BNzJiOGI2MjctYjUyMS00ZjkzLWE2ZmUtOTg4NTZkOTNhZDc1L2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",The Grapes of Wrath,1940,Passed,129 min,"Drama, History",8,"A poor Midwest family is forced off their land. They travel to California, suffering the misfortunes of the homeless in the Great Depression.",96,John Ford,Henry Fonda,Jane Darwell,John Carradine,Charley Grapewin,85559,"55,000" "https://m.media-amazon.com/images/M/MV5BNjUyMTc4MDExMV5BMl5BanBnXkFtZTgwNDg0NDIwMjE@._V1_UX67_CR0,0,67,98_AL_.jpg",The Wizard of Oz,1939,U,102 min,"Adventure, Family, Fantasy",8,Dorothy Gale is swept away from a farm in Kansas to a magical land of Oz in a tornado and embarks on a quest with her new friends to see the Wizard who can help her return home to Kansas and help her friends as well.,92,Victor Fleming,George Cukor,Mervyn LeRoy,Norman Taurog,Richard Thorpe,371379,"2,076,020" "https://m.media-amazon.com/images/M/MV5BYTE4NjYxMGEtZmQxZi00YWVmLWJjZTctYTJmNDFmZGEwNDVhXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UY98_CR2,0,67,98_AL_.jpg",La règle du jeu,1939,,110 min,"Comedy, Drama",8,"A bourgeois life in France at the onset of World War II, as the rich and their poor servants meet up at a French chateau.",,Jean Renoir,Marcel Dalio,Nora Gregor,Paulette Dubost,Mila Parély,26725, "https://m.media-amazon.com/images/M/MV5BYmFlOWMwMjAtMDMyMC00N2JjLTllODUtZjY3YWU3NGRkM2I2L2ltYWdlXkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UX67_CR0,0,67,98_AL_.jpg",The Thin Man,1934,TV-PG,91 min,"Comedy, Crime, Mystery",8,"Former detective Nick Charles and his wealthy wife Nora investigate a murder case, mostly for the fun of it.",86,W.S. Van Dyke,William Powell,Myrna Loy,Maureen O'Sullivan,Nat Pendleton,26642, "https://m.media-amazon.com/images/M/MV5BMzg2MWQ4MDEtOGZlNi00MTg0LWIwMjQtYWY5NTQwYmUzMWNmXkEyXkFqcGdeQXVyMzg2MzE2OTE@._V1_UX67_CR0,0,67,98_AL_.jpg",All Quiet on the Western Front,1930,U,152 min,"Drama, War",8,"A German youth eagerly enters World War I, but his enthusiasm wanes as he gets a firsthand view of the horror.",91,Lewis Milestone,Lew Ayres,Louis Wolheim,John Wray,Arnold Lucy,57318,"3,270,000" "https://m.media-amazon.com/images/M/MV5BMTEyMTQzMjQ0MTJeQTJeQWpwZ15BbWU4MDcyMjg4OTEx._V1_UY98_CR1,0,67,98_AL_.jpg",Bronenosets Potemkin,1925,,75 min,"Drama, History, Thriller",8,"In the midst of the Russian Revolution of 1905, the crew of the battleship Potemkin mutiny against the brutal, tyrannical regime of the vessel's officers. The resulting street demonstration in Odessa brings on a police massacre.",97,Sergei M. Eisenstein,Aleksandr Antonov,Vladimir Barskiy,Grigoriy Aleksandrov,Ivan Bobrov,53054,"50,970" "https://m.media-amazon.com/images/M/MV5BMGUwZjliMTAtNzAxZi00MWNiLWE2NzgtZGUxMGQxZjhhNDRiXkEyXkFqcGdeQXVyNjU1NzU3MzE@._V1_UX67_CR0,0,67,98_AL_.jpg",Knives Out,2019,UA,130 min,"Comedy, Crime, Drama",7.9,"A detective investigates the death of a patriarch of an eccentric, combative family.",82,Rian Johnson,Daniel Craig,Chris Evans,Ana de Armas,Jamie Lee Curtis,454203,"165,359,751" "https://m.media-amazon.com/images/M/MV5BNmI0MTliMTAtMmJhNC00NTJmLTllMzQtMDI3NzA1ODMyZWI1XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY98_CR5,0,67,98_AL_.jpg",Dil Bechara,2020,UA,101 min,"Comedy, Drama, Romance",7.9,"The emotional journey of two hopelessly in love youngsters, a young girl, Kizie, suffering from cancer, and a boy, Manny, whom she meets at a support group.",,Mukesh Chhabra,Sushant Singh Rajput,Sanjana Sanghi,Sahil Vaid,Saswata Chatterjee,111478, "https://m.media-amazon.com/images/M/MV5BYWZmOTY0MDAtMGRlMS00YjFlLWFkZTUtYmJhYWNlN2JjMmZkXkEyXkFqcGdeQXVyODAzODU1NDQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Manbiki kazoku,2018,A,121 min,"Crime, Drama",7.9,A family of small-time crooks take in a child they find outside in the cold.,93,Hirokazu Koreeda,Lily Franky,Sakura Andô,Kirin Kiki,Mayu Matsuoka,62754,"3,313,513" "https://m.media-amazon.com/images/M/MV5BZGVmY2RjNDgtMTc3Yy00YmY0LTgwODItYzBjNWJhNTRlYjdkXkEyXkFqcGdeQXVyMjM4NTM5NDY@._V1_UX67_CR0,0,67,98_AL_.jpg",Marriage Story,2019,U,137 min,"Comedy, Drama, Romance",7.9,Noah Baumbach's incisive and compassionate look at a marriage breaking up and a family staying together.,94,Noah Baumbach,Adam Driver,Scarlett Johansson,Julia Greer,Azhy Robertson,246644,"2,000,000" "https://m.media-amazon.com/images/M/MV5BNDk3NTEwNjc0MV5BMl5BanBnXkFtZTgwNzYxNTMwMzI@._V1_UX67_CR0,0,67,98_AL_.jpg",Call Me by Your Name,2017,UA,132 min,"Drama, Romance",7.9,"In 1980s Italy, romance blossoms between a seventeen-year-old student and the older man hired as his father's research assistant.",93,Luca Guadagnino,Armie Hammer,Timothée Chalamet,Michael Stuhlbarg,Amira Casar,212651,"18,095,701" "https://m.media-amazon.com/images/M/MV5BMTQ4NTMzMTk4NV5BMl5BanBnXkFtZTgwNTU5MjE4MDI@._V1_UX67_CR0,0,67,98_AL_.jpg","I, Daniel Blake",2016,UA,100 min,Drama,7.9,"After having suffered a heart-attack, a 59-year-old carpenter must fight the bureaucratic forces of the system in order to receive Employment and Support Allowance.",78,Ken Loach,Laura Obiols,Dave Johns,Hayley Squires,Sharon Percy,53818,"258,168" "https://m.media-amazon.com/images/M/MV5BZDQwOWQ2NmUtZThjZi00MGM0LTkzNDctMzcyMjcyOGI1OGRkXkEyXkFqcGdeQXVyMTA3MDk2NDg2._V1_UX67_CR0,0,67,98_AL_.jpg",Isle of Dogs,2018,U,101 min,"Animation, Adventure, Comedy",7.9,"Set in Japan, Isle of Dogs follows a boy's odyssey in search of his lost dog.",82,Wes Anderson,Bryan Cranston,Koyu Rankin,Edward Norton,Bob Balaban,139114,"32,015,231" "https://m.media-amazon.com/images/M/MV5BMjI1MDQ2MDg5Ml5BMl5BanBnXkFtZTgwMjc2NjM5ODE@._V1_UX67_CR0,0,67,98_AL_.jpg",Hunt for the Wilderpeople,2016,UA,101 min,"Adventure, Comedy, Drama",7.9,A national manhunt is ordered for a rebellious kid and his foster uncle who go missing in the wild New Zealand bush.,81,Taika Waititi,Sam Neill,Julian Dennison,Rima Te Wiata,Rachel House,111483,"5,202,582" "https://m.media-amazon.com/images/M/MV5BMjE5OTM0OTY5NF5BMl5BanBnXkFtZTgwMDcxOTQ3ODE@._V1_UX67_CR0,0,67,98_AL_.jpg",Captain Fantastic,2016,R,118 min,"Comedy, Drama",7.9,"In the forests of the Pacific Northwest, a father devoted to raising his six kids with a rigorous physical and intellectual education is forced to leave his paradise and enter the world, challenging his idea of what it means to be a parent.",72,Matt Ross,Viggo Mortensen,George MacKay,Samantha Isler,Annalise Basso,189400,"5,875,006" "https://m.media-amazon.com/images/M/MV5BMjEzODA3MDcxMl5BMl5BanBnXkFtZTgwODgxNDk3NzE@._V1_UX67_CR0,0,67,98_AL_.jpg",Sing Street,2016,PG-13,106 min,"Comedy, Drama, Music",7.9,A boy growing up in Dublin during the 1980s escapes his strained family life by starting a band to impress the mysterious girl he likes.,79,John Carney,Ferdia Walsh-Peelo,Aidan Gillen,Maria Doyle Kennedy,Jack Reynor,85109,"3,237,118" "https://m.media-amazon.com/images/M/MV5BMjMyNDkzMzI1OF5BMl5BanBnXkFtZTgwODcxODg5MjI@._V1_UX67_CR0,0,67,98_AL_.jpg",Thor: Ragnarok,2017,UA,130 min,"Action, Adventure, Comedy",7.9,"Imprisoned on the planet Sakaar, Thor must race against time to return to Asgard and stop Ragnarök, the destruction of his world, at the hands of the powerful and ruthless villain Hela.",74,Taika Waititi,Chris Hemsworth,Tom Hiddleston,Cate Blanchett,Mark Ruffalo,587775,"315,058,289" "https://m.media-amazon.com/images/M/MV5BN2U1YzdhYWMtZWUzMi00OWI1LWFkM2ItNWVjM2YxMGQ2MmNhXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY98_CR0,0,67,98_AL_.jpg",Nightcrawler,2014,A,117 min,"Crime, Drama, Thriller",7.9,"When Louis Bloom, a con man desperate for work, muscles into the world of L.A. crime journalism, he blurs the line between observer and participant to become the star of his own story.",76,Dan Gilroy,Jake Gyllenhaal,Rene Russo,Bill Paxton,Riz Ahmed,466134,"32,381,218" "https://m.media-amazon.com/images/M/MV5BZjU0Yzk2MzEtMjAzYy00MzY0LTg2YmItM2RkNzdkY2ZhN2JkXkEyXkFqcGdeQXVyNDg4NjY5OTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Jojo Rabbit,2019,UA,108 min,"Comedy, Drama, War",7.9,A young boy in Hitler's army finds out his mother is hiding a Jewish girl in their home.,58,Taika Waititi,Roman Griffin Davis,Thomasin McKenzie,Scarlett Johansson,Taika Waititi,297918,"349,555" "https://m.media-amazon.com/images/M/MV5BMTExMzU0ODcxNDheQTJeQWpwZ15BbWU4MDE1OTI4MzAy._V1_UX67_CR0,0,67,98_AL_.jpg",Arrival,2016,UA,116 min,"Drama, Sci-Fi",7.9,A linguist works with the military to communicate with alien lifeforms after twelve mysterious spacecrafts appear around the world.,81,Denis Villeneuve,Amy Adams,Jeremy Renner,Forest Whitaker,Michael Stuhlbarg,594181,"100,546,139" "https://m.media-amazon.com/images/M/MV5BOTAzODEzNDAzMl5BMl5BanBnXkFtZTgwMDU1MTgzNzE@._V1_UX67_CR0,0,67,98_AL_.jpg",Star Wars: Episode VII - The Force Awakens,2015,U,138 min,"Action, Adventure, Sci-Fi",7.9,"As a new threat to the galaxy rises, Rey, a desert scavenger, and Finn, an ex-stormtrooper, must join Han Solo and Chewbacca to search for the one hope of restoring peace.",80,J.J. Abrams,Daisy Ridley,John Boyega,Oscar Isaac,Domhnall Gleeson,860823,"936,662,225" "https://m.media-amazon.com/images/M/MV5BMjA5NzgxODE2NF5BMl5BanBnXkFtZTcwNTI1NTI0OQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Before Midnight,2013,R,109 min,"Drama, Romance",7.9,We meet Jesse and Celine nine years on in Greece. Almost two decades have passed since their first meeting on that train bound for Vienna.,94,Richard Linklater,Ethan Hawke,Julie Delpy,Seamus Davey-Fitzpatrick,Ariane Labed,141457,"8,114,627" "https://m.media-amazon.com/images/M/MV5BZGIzNWYzN2YtMjcwYS00YjQ3LWI2NjMtOTNiYTUyYjE2MGNkXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",X-Men: Days of Future Past,2014,UA,132 min,"Action, Adventure, Sci-Fi",7.9,The X-Men send Wolverine to the past in a desperate effort to change history and prevent an event that results in doom for both humans and mutants.,75,Bryan Singer,Patrick Stewart,Ian McKellen,Hugh Jackman,James McAvoy,659763,"233,921,534" "https://m.media-amazon.com/images/M/MV5BYTRkMDRiYmEtNGM4YS00NzM3LWI4MTMtYzk1MmVjMjM3ODg1XkEyXkFqcGdeQXVyMjgyNjk3MzE@._V1_UY98_CR1,0,67,98_AL_.jpg",Bir Zamanlar Anadolu'da,2011,,157 min,"Crime, Drama",7.9,A group of men set out in search of a dead body in the Anatolian steppes.,82,Nuri Bilge Ceylan,Muhammet Uzuner,Yilmaz Erdogan,Taner Birsel,Ahmet Mümtaz Taylan,41995,"138,730" "https://m.media-amazon.com/images/M/MV5BMDUyZWU5N2UtOWFlMy00MTI0LTk0ZDYtMzFhNjljODBhZDA5XkEyXkFqcGdeQXVyNzA4ODc3ODU@._V1_UY98_CR1,0,67,98_AL_.jpg",The Artist,2011,U,100 min,"Comedy, Drama, Romance",7.9,An egomaniacal film star develops a relationship with a young dancer against the backdrop of Hollywood's silent era.,89,Michel Hazanavicius,Jean Dujardin,Bérénice Bejo,John Goodman,James Cromwell,230624,"44,671,682" "https://m.media-amazon.com/images/M/MV5BMTc5OTk4MTM3M15BMl5BanBnXkFtZTgwODcxNjg3MDE@._V1_UX67_CR0,0,67,98_AL_.jpg",Edge of Tomorrow,2014,UA,113 min,"Action, Adventure, Sci-Fi",7.9,"A soldier fighting aliens gets to relive the same day over and over again, the day restarting every time he dies.",71,Doug Liman,Tom Cruise,Emily Blunt,Bill Paxton,Brendan Gleeson,600004,"100,206,256" "https://m.media-amazon.com/images/M/MV5BMTk1NTc3NDc4MF5BMl5BanBnXkFtZTcwNjYwNDk0OA@@._V1_UX67_CR0,0,67,98_AL_.jpg",Amour,2012,UA,127 min,"Drama, Romance",7.9,"Georges and Anne are an octogenarian couple. They are cultivated, retired music teachers. Their daughter, also a musician, lives in Britain with her family. One day, Anne has a stroke, and the couple's bond of love is severely tested.",94,Michael Haneke,Jean-Louis Trintignant,Emmanuelle Riva,Isabelle Huppert,Alexandre Tharaud,93090,"6,739,492" "https://m.media-amazon.com/images/M/MV5BMGUyM2ZiZmUtMWY0OC00NTQ4LThkOGUtNjY2NjkzMDJiMWMwXkEyXkFqcGdeQXVyMzY0MTE3NzU@._V1_UX67_CR0,0,67,98_AL_.jpg",The Irishman,2019,R,209 min,"Biography, Crime, Drama",7.9,"An old man recalls his time painting houses for his friend, Jimmy Hoffa, through the 1950-70s.",94,Martin Scorsese,Robert De Niro,Al Pacino,Joe Pesci,Harvey Keitel,324720,"7,000,000" "https://m.media-amazon.com/images/M/MV5BMTUyMjQ1MTY5OV5BMl5BanBnXkFtZTcwNzY5NjExMw@@._V1_UY98_CR1,0,67,98_AL_.jpg",Un prophète,2009,A,155 min,"Crime, Drama",7.9,A young Arab man is sent to a French prison.,90,Jacques Audiard,Tahar Rahim,Niels Arestrup,Adel Bencherif,Reda Kateb,93560,"2,084,637" "https://m.media-amazon.com/images/M/MV5BMTgzODgyNTQwOV5BMl5BanBnXkFtZTcwNzc0NTc0Mg@@._V1_UX67_CR0,0,67,98_AL_.jpg",Moon,2009,R,97 min,"Drama, Mystery, Sci-Fi",7.9,"Astronaut Sam Bell has a quintessentially personal encounter toward the end of his three-year stint on the Moon, where he, working alongside his computer, GERTY, sends back to Earth parcels of a resource that has helped diminish our planet's power problems.",67,Duncan Jones,Sam Rockwell,Kevin Spacey,Dominique McElligott,Rosie Shaw,335152,"5,009,677" "https://m.media-amazon.com/images/M/MV5BOWM4NTY2NTMtZDZlZS00NTgyLWEzZDMtODE3ZGI1MzI3ZmU5XkEyXkFqcGdeQXVyNzI1NzMxNzM@._V1_UY98_CR1,0,67,98_AL_.jpg",Låt den rätte komma in,2008,R,114 min,"Crime, Drama, Fantasy",7.9,"Oskar, an overlooked and bullied boy, finds love and revenge through Eli, a beautiful but peculiar girl.",82,Tomas Alfredson,Kåre Hedebrant,Lina Leandersson,Per Ragnar,Henrik Dahl,205609,"2,122,065" "https://m.media-amazon.com/images/M/MV5BYmQ5MzFjYWMtMTMwNC00ZGU5LWI3YTQtYzhkMGExNGFlY2Q0XkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_UX67_CR0,0,67,98_AL_.jpg",District 9,2009,A,112 min,"Action, Sci-Fi, Thriller",7.9,Violence ensues after an extraterrestrial race forced to live in slum-like conditions on Earth finds a kindred spirit in a government agent exposed to their biotechnology.,81,Neill Blomkamp,Sharlto Copley,David James,Jason Cope,Nathalie Boltt,638202,"115,646,235" "https://m.media-amazon.com/images/M/MV5BMTc5MjYyOTg4MF5BMl5BanBnXkFtZTcwNDc2MzQwMg@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Wrestler,2008,UA,109 min,"Drama, Sport",7.9,"A faded professional wrestler must retire, but finds his quest for a new life outside the ring a dispiriting struggle.",80,Darren Aronofsky,Mickey Rourke,Marisa Tomei,Evan Rachel Wood,Mark Margolis,289415,"26,236,603" "https://m.media-amazon.com/images/M/MV5BYmIzYmY4MGItM2I4YS00OWZhLWFmMzQtYzI2MWY1MmM3NGU1XkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_UY98_CR0,0,67,98_AL_.jpg",Jab We Met,2007,U,138 min,"Comedy, Drama, Romance",7.9,A depressed wealthy businessman finds his life changing after he meets a spunky and care-free young woman.,,Imtiaz Ali,Shahid Kapoor,Kareena Kapoor,Tarun Arora,Dara Singh,47720,"410,800" "https://m.media-amazon.com/images/M/MV5BMTYzNDc2MDc0N15BMl5BanBnXkFtZTgwOTcwMDQ5MTE@._V1_UX67_CR0,0,67,98_AL_.jpg",Boyhood,2014,A,165 min,Drama,7.9,"The life of Mason, from early childhood to his arrival at college.",100,Richard Linklater,Ellar Coltrane,Patricia Arquette,Ethan Hawke,Elijah Smith,335533,"25,379,975" "https://m.media-amazon.com/images/M/MV5BYzU1YWUzNjYtNmVhZi00ODUyLTg4M2ItMTFlMmU1Mzc5OTE5XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY98_CR1,0,67,98_AL_.jpg","4 luni, 3 saptamâni si 2 zile",2007,,113 min,Drama,7.9,A woman assists her friend in arranging an illegal abortion in 1980s Romania.,97,Cristian Mungiu,Anamaria Marinca,Laura Vasiliu,Vlad Ivanov,Alexandru Potocean,56625,"1,185,783" "https://m.media-amazon.com/images/M/MV5BMjE5NDQ5OTE4Ml5BMl5BanBnXkFtZTcwOTE3NDIzMw@@._V1_UX67_CR0,0,67,98_AL_.jpg",Star Trek,2009,UA,127 min,"Action, Adventure, Sci-Fi",7.9,The brash James T. Kirk tries to live up to his father's legacy with Mr. Spock keeping him in check as a vengeful Romulan from the future creates black holes to destroy the Federation one planet at a time.,82,J.J. Abrams,Chris Pine,Zachary Quinto,Simon Pegg,Leonard Nimoy,577336,"257,730,019" "https://m.media-amazon.com/images/M/MV5BMTUwOGFiM2QtOWMxYS00MjU2LThmZDMtZDM2MWMzNzllNjdhXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",In Bruges,2008,R,107 min,"Comedy, Crime, Drama",7.9,"Guilt-stricken after a job gone wrong, hitman Ray and his partner await orders from their ruthless boss in Bruges, Belgium, the last place in the world Ray wants to be.",67,Martin McDonagh,Colin Farrell,Brendan Gleeson,Ciarán Hinds,Elizabeth Berrington,390334,"7,757,130" "https://m.media-amazon.com/images/M/MV5BMzQ5NGQwOTUtNWJlZi00ZTFiLWI0ZTEtOGU3MTA2ZGU5OWZiXkEyXkFqcGdeQXVyMTczNjQwOTY@._V1_UX67_CR0,0,67,98_AL_.jpg",The Man from Earth,2007,,87 min,"Drama, Fantasy, Mystery",7.9,An impromptu goodbye party for Professor John Oldman becomes a mysterious interrogation after the retiring scholar reveals to his colleagues he has a longer and stranger past than they can imagine.,,Richard Schenkman,David Lee Smith,Tony Todd,John Billingsley,Ellen Crawford,174125, "https://m.media-amazon.com/images/M/MV5BMjE0NzgwODI4M15BMl5BanBnXkFtZTcwNjg3OTA0MQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Letters from Iwo Jima,2006,UA,141 min,"Action, Adventure, Drama",7.9,"The story of the battle of Iwo Jima between the United States and Imperial Japan during World War II, as told from the perspective of the Japanese who fought it.",89,Clint Eastwood,Ken Watanabe,Kazunari Ninomiya,Tsuyoshi Ihara,Ryô Kase,154011,"13,756,082" "https://m.media-amazon.com/images/M/MV5BMjAzODUwMjM1M15BMl5BanBnXkFtZTcwNjU2MjU2MQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Fall,2006,R,117 min,"Adventure, Drama, Fantasy",7.9,"In a hospital on the outskirts of 1920s Los Angeles, an injured stuntman begins to tell a fellow patient, a little girl with a broken arm, a fantastic story of five mythical heroes. Thanks to his fractured state of mind and her vivid imagination, the line between fiction and reality blurs as the tale advances.",64,Tarsem Singh,Lee Pace,Catinca Untaru,Justine Waddell,Kim Uylenbroek,107290,"2,280,348" "https://m.media-amazon.com/images/M/MV5BNTg2OTY2ODg5OF5BMl5BanBnXkFtZTcwODM5MTYxOA@@._V1_UX67_CR0,0,67,98_AL_.jpg",Life of Pi,2012,U,127 min,"Adventure, Drama, Fantasy",7.9,"A young man who survives a disaster at sea is hurtled into an epic journey of adventure and discovery. While cast away, he forms an unexpected connection with another survivor: a fearsome Bengal tiger.",79,Ang Lee,Suraj Sharma,Irrfan Khan,Adil Hussain,Tabu,580708,"124,987,023" "https://m.media-amazon.com/images/M/MV5BOGUwYTU4NGEtNDM4MS00NDRjLTkwNmQtOTkwMWMyMjhmMjdlXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Fantastic Mr. Fox,2009,PG,87 min,"Animation, Adventure, Comedy",7.9,An urbane fox cannot resist returning to his farm raiding ways and then must help his community survive the farmers' retaliation.,83,Wes Anderson,George Clooney,Meryl Streep,Bill Murray,Jason Schwartzman,199696,"21,002,919" "https://m.media-amazon.com/images/M/MV5BMTU3MDc2MjUwMV5BMl5BanBnXkFtZTcwNzQyMDAzMQ@@._V1_UY98_CR0,0,67,98_AL_.jpg",C.R.A.Z.Y.,2005,,129 min,"Comedy, Drama",7.9,"A young French-Canadian, growing up in the 1960s and 1970s, struggles to reconcile his emerging homosexuality with his father's conservative values and his own Catholic beliefs.",81,Jean-Marc Vallée,Michel Côté,Marc-André Grondin,Danielle Proulx,Émile Vallée,31476, "https://m.media-amazon.com/images/M/MV5BOGY1M2MwOTEtZDIyNi00YjNlLWExYmEtNzBjOGI3N2QzNTg5XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Les choristes,2004,PG-13,97 min,"Drama, Music",7.9,The new teacher at a severely administered boys' boarding school works to positively affect the students' lives through music.,56,Christophe Barratier,Gérard Jugnot,François Berléand,Jean-Baptiste Maunier,Kad Merad,57430,"3,635,164" "https://m.media-amazon.com/images/M/MV5BMTczNTI2ODUwOF5BMl5BanBnXkFtZTcwMTU0NTIzMw@@._V1_UX67_CR0,0,67,98_AL_.jpg",Iron Man,2008,UA,126 min,"Action, Adventure, Sci-Fi",7.9,"After being held captive in an Afghan cave, billionaire engineer Tony Stark creates a unique weaponized suit of armor to fight evil.",79,Jon Favreau,Robert Downey Jr.,Gwyneth Paltrow,Terrence Howard,Jeff Bridges,939644,"318,412,101" "https://m.media-amazon.com/images/M/MV5BMTg5Mjk2NDMtZTk0Ny00YTQ0LWIzYWEtMWI5MGQ0Mjg1OTNkXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Shaun of the Dead,2004,UA,99 min,"Comedy, Horror",7.9,A man's uneventful life is disrupted by the zombie apocalypse.,76,Edgar Wright,Simon Pegg,Nick Frost,Kate Ashfield,Lucy Davis,512249,"13,542,874" "https://m.media-amazon.com/images/M/MV5BODBiNzYxNzYtMjkyMi00MjUyLWJkM2YtZjNkMDhhYmEwMTRiL2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UY98_CR1,0,67,98_AL_.jpg",Gegen die Wand,2004,R,121 min,"Drama, Romance",7.9,"With the intention to break free from the strict familial restrictions, a suicidal young woman sets up a marriage of convenience with a forty-year-old addict, an act that will lead to an outburst of envious love.",78,Fatih Akin,Birol Ünel,Sibel Kekilli,Güven Kiraç,Zarah Jane McKenzie,51325, "https://m.media-amazon.com/images/M/MV5BMTIzNDUyMjA4MV5BMl5BanBnXkFtZTYwNDc4ODM3._V1_UX67_CR0,0,67,98_AL_.jpg",Mystic River,2003,A,138 min,"Crime, Drama, Mystery",7.9,The lives of three men who were childhood friends are shattered when one of them has a family tragedy.,84,Clint Eastwood,Sean Penn,Tim Robbins,Kevin Bacon,Emmy Rossum,419420,"90,135,191" "https://m.media-amazon.com/images/M/MV5BMTY4NTIwODg0N15BMl5BanBnXkFtZTcwOTc0MjEzMw@@._V1_UX67_CR0,0,67,98_AL_.jpg",Harry Potter and the Prisoner of Azkaban,2004,U,142 min,"Adventure, Family, Fantasy",7.9,"Harry Potter, Ron and Hermione return to Hogwarts School of Witchcraft and Wizardry for their third year of study, where they delve into the mystery surrounding an escaped prisoner who poses a dangerous threat to the young wizard.",82,Alfonso Cuarón,Daniel Radcliffe,Emma Watson,Rupert Grint,Richard Griffiths,552493,"249,358,727" "https://m.media-amazon.com/images/M/MV5BMWQ2MjQ0OTctMWE1OC00NjZjLTk3ZDAtNTk3NTZiYWMxYTlmXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Ying xiong,2002,PG-13,120 min,"Action, Adventure, History",7.9,"A defense officer, Nameless, was summoned by the King of Qin regarding his success of terminating three warriors.",85,Yimou Zhang,Jet Li,Tony Chiu-Wai Leung,Maggie Cheung,Ziyi Zhang,173999,"53,710,019" "https://m.media-amazon.com/images/M/MV5BYmVmMGQ3NzEtM2FiNi00YThhLWFkZjYtM2Y0MjZjNGE4NzM0XkEyXkFqcGdeQXVyODc0OTEyNDU@._V1_UY98_CR1,0,67,98_AL_.jpg",Hable con ella,2002,R,112 min,"Drama, Mystery, Romance",7.9,Two men share an odd friendship while they care for two women who are both in deep comas.,86,Pedro Almodóvar,Rosario Flores,Javier Cámara,Darío Grandinetti,Leonor Watling,104691,"9,284,265" "https://m.media-amazon.com/images/M/MV5BMGFkNjNmZWMtNDdiOS00ZWM3LWE1ZTMtZDU3MGQyMzIyNzZhXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",No Man's Land,2001,R,98 min,"Comedy, Drama, War",7.9,"Bosnia and Herzegovina during 1993 at the time of the heaviest fighting between the two warring sides. Two soldiers from opposing sides in the conflict, Nino and Ciki, become trapped in no man's land, whilst a third soldier becomes a living booby trap.",84,Danis Tanovic,Branko Djuric,Rene Bitorajac,Filip Sovagovic,Georges Siatidis,44618,"1,059,830" "https://m.media-amazon.com/images/M/MV5BMjYzYWM4YTItZjJiMC00OTM5LTg3NDgtOGQ2Njk2ZWNhN2QwXkEyXkFqcGdeQXVyMzM4MjM0Nzg@._V1_UY98_CR0,0,67,98_AL_.jpg",Cowboy Bebop: Tengoku no tobira,2001,U,115 min,"Animation, Action, Crime",7.9,"A terrorist explosion releases a deadly virus on the masses, and it's up the bounty-hunting Bebop crew to catch the cold-blooded culprit.",61,Shin'ichirô Watanabe,Tensai Okamura,Hiroyuki Okiura,Yoshiyuki Takei,Beau Billingslea,42897,"1,000,045" "https://m.media-amazon.com/images/M/MV5BM2JkNGU0ZGMtZjVjNS00NjgyLWEyOWYtZmRmZGQyN2IxZjA2XkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_UX67_CR0,0,67,98_AL_.jpg",The Bourne Identity,2002,UA,119 min,"Action, Mystery, Thriller",7.9,"A man is picked up by a fishing boat, bullet-riddled and suffering from amnesia, before racing to elude assassins and attempting to regain his memory.",68,Doug Liman,Franka Potente,Matt Damon,Chris Cooper,Clive Owen,508771,"121,661,683" "https://m.media-amazon.com/images/M/MV5BMTYxMDdlYjItMDVkYy00MjYzLThhMTYtYjIzZjZiODk1ZWRmXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Nueve reinas,2000,R,114 min,"Crime, Drama, Thriller",7.9,"Two con artists try to swindle a stamp collector by selling him a sheet of counterfeit rare stamps (the ""nine queens"").",80,Fabián Bielinsky,Ricardo Darín,Gastón Pauls,Graciela Tenenbaum,María Mercedes Villagra,49721,"1,221,261" "https://m.media-amazon.com/images/M/MV5BMTQ5NTI2NTI4NF5BMl5BanBnXkFtZTcwNjk2NDA2OQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Children of Men,2006,A,109 min,"Adventure, Drama, Sci-Fi",7.9,"In 2027, in a chaotic world in which women have become somehow infertile, a former activist agrees to help transport a miraculously pregnant woman to a sanctuary at sea.",84,Alfonso Cuarón,Julianne Moore,Clive Owen,Chiwetel Ejiofor,Michael Caine,465113,"35,552,383" "https://m.media-amazon.com/images/M/MV5BMzY1ZjMwMGEtYTY1ZS00ZDllLTk0ZmUtYzA3ZTA4NmYwNGNkXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Almost Famous,2000,A,122 min,"Adventure, Comedy, Drama",7.9,A high-school boy is given the chance to write a story for Rolling Stone Magazine about an up-and-coming rock band as he accompanies them on their concert tour.,90,Cameron Crowe,Billy Crudup,Patrick Fugit,Kate Hudson,Frances McDormand,252586,"32,534,850" "https://m.media-amazon.com/images/M/MV5BYjBhZmViNTItMGExMy00MGNmLTkwZDItMDVlMTQ4ODVkYTMwXkEyXkFqcGdeQXVyNzM0MTUwNTY@._V1_UY98_CR1,0,67,98_AL_.jpg",Mulholland Dr.,2001,R,147 min,"Drama, Mystery, Thriller",7.9,"After a car wreck on the winding Mulholland Drive renders a woman amnesiac, she and a perky Hollywood-hopeful search for clues and answers across Los Angeles in a twisting venture beyond dreams and reality.",85,David Lynch,Naomi Watts,Laura Harring,Justin Theroux,Jeanne Bates,322031,"7,220,243" "https://m.media-amazon.com/images/M/MV5BMWM5ZDcxMTYtNTEyNS00MDRkLWI3YTItNThmMGExMWY4NDIwXkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_UX67_CR0,0,67,98_AL_.jpg",Toy Story 2,1999,U,92 min,"Animation, Adventure, Comedy",7.9,"When Woody is stolen by a toy collector, Buzz and his friends set out on a rescue mission to save Woody before he becomes a museum toy property with his roundup gang Jessie, Prospector, and Bullseye.",88,John Lasseter,Ash Brannon,Lee Unkrich,Tom Hanks,Tim Allen,527512,"245,852,179" "https://m.media-amazon.com/images/M/MV5BY2E2YWYxY2QtZmJmZi00MjJlLWFiYWItZTk5Y2IyMWQ1ZThhXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Boogie Nights,1997,R,155 min,Drama,7.9,"Back when sex was safe, pleasure was a business and business was booming, an idealistic porn producer aspires to elevate his craft to an art when he discovers a hot young talent.",85,Paul Thomas Anderson,Mark Wahlberg,Julianne Moore,Burt Reynolds,Luis Guzmán,239473,"26,400,640" "https://m.media-amazon.com/images/M/MV5BZDg0MWNmNjktMGEwZC00ZDlmLWI1MTUtMDBmNjQzMWM2NjBjXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Mimi wo sumaseba,1995,U,111 min,"Animation, Drama, Family",7.9,"A love story between a girl who loves reading books, and a boy who has previously checked out all of the library books she chooses.",75,Yoshifumi Kondô,Yoko Honna,Issey Takahashi,Takashi Tachibana,Shigeru Muroi,51943, "https://m.media-amazon.com/images/M/MV5BYTY4MTdjZDMtOTBiMC00MDEwLThhMjUtMjlhMjdlYTBmMzk3XkEyXkFqcGdeQXVyNjMwMjk0MTQ@._V1_UY98_CR1,0,67,98_AL_.jpg",Once Were Warriors,1994,A,102 min,"Crime, Drama",7.9,A family descended from Maori warriors is bedeviled by a violent father and the societal problems of being treated as outcasts.,77,Lee Tamahori,Rena Owen,Temuera Morrison,Mamaengaroa Kerr-Bell,Julian Arahanga,31590,"2,201,126" "https://m.media-amazon.com/images/M/MV5BMDViNjFjOWMtZGZhMi00NmIyLThmYzktODA4MzJhZDZhMDc5XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UY98_CR1,0,67,98_AL_.jpg",True Romance,1993,R,119 min,"Crime, Drama, Romance",7.9,"In Detroit, a lonely pop culture geek marries a call girl, steals cocaine from her pimp, and tries to sell it in Hollywood. Meanwhile, the owners of the cocaine, the Mob, track them down in an attempt to reclaim it.",59,Tony Scott,Christian Slater,Patricia Arquette,Dennis Hopper,Val Kilmer,206918,"12,281,500" "https://m.media-amazon.com/images/M/MV5BMjg5OGU4OGYtNTZmNy00MjQ1LWIzYzgtMTllMGY2NzlkNzYwXkEyXkFqcGdeQXVyMTI3ODAyMzE2._V1_UY98_CR2,0,67,98_AL_.jpg",Trois couleurs: Bleu,1993,U,94 min,"Drama, Music, Mystery",7.9,A woman struggles to find a way to live her life after the death of her husband and child.,85,Krzysztof Kieslowski,Juliette Binoche,Zbigniew Zamachowski,Julie Delpy,Benoît Régent,89836,"1,324,974" "https://m.media-amazon.com/images/M/MV5BOTMyZGI4N2YtMzdkNi00MDZmLTg4NmItMzg0ODY5NjdhZjYwL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMzM4MjM0Nzg@._V1_UY98_CR1,0,67,98_AL_.jpg",Jûbê ninpûchô,1993,A,94 min,"Animation, Action, Adventure",7.9,A vagabond swordsman is aided by a beautiful ninja girl and a crafty spy in confronting a demonic clan of killers - with a ghost from his past as their leader - who are bent on overthrowing the Tokugawa Shogunate.,,Yoshiaki Kawajiri,Kôichi Yamadera,Emi Shinohara,Takeshi Aono,Osamu Saka,34529, "https://m.media-amazon.com/images/M/MV5BN2I2N2Q1YmMtMzZkMC00Y2JjLWJmOWUtNjc2OTM2ZTk1MjUyXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Carlito's Way,1993,A,144 min,"Crime, Drama, Thriller",7.9,"A Puerto Rican former convict, just released from prison, pledges to stay away from drugs and violence despite the pressure around him and lead on to a better life outside of N.Y.C.",65,Brian De Palma,Al Pacino,Sean Penn,Penelope Ann Miller,John Leguizamo,201000,"36,948,322" "https://m.media-amazon.com/images/M/MV5BNDUxN2I5NDUtZjdlMC00NjlmLTg0OTQtNjk0NjAxZjFmZTUzXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Edward Scissorhands,1990,U,105 min,"Drama, Fantasy, Romance",7.9,"An artificial man, who was incompletely constructed and has scissors for hands, leads a solitary life. Then one day, a suburban lady meets him and introduces him to her world.",74,Tim Burton,Johnny Depp,Winona Ryder,Dianne Wiest,Anthony Michael Hall,447368,"56,362,352" "https://m.media-amazon.com/images/M/MV5BYjdkNzA4MzYtZThhOS00ZDgzLTlmMDItNmY1ZjI5YjkzZTE1XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",My Left Foot: The Story of Christy Brown,1989,U,103 min,"Biography, Drama",7.9,"Christy Brown, born with cerebral palsy, learns to paint and write with his only controllable limb - his left foot.",97,Jim Sheridan,Daniel Day-Lewis,Brenda Fricker,Alison Whelan,Kirsten Sheridan,68076,"14,743,391" "https://m.media-amazon.com/images/M/MV5BYWY3N2EyOWYtNDVhZi00MWRkLTg2OTUtODNkNDQ5ZTIwMGJkXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Crimes and Misdemeanors,1989,PG-13,104 min,"Comedy, Drama",7.9,An ophthalmologist's mistress threatens to reveal their affair to his wife while a married documentary filmmaker is infatuated with another woman.,77,Woody Allen,Martin Landau,Woody Allen,Bill Bernstein,Claire Bloom,54670,"18,254,702" "https://m.media-amazon.com/images/M/MV5BYTVjYWJmMWQtYWU4Ni00MWY3LWI2YmMtNTI5MDE0MWVmMmEzL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",The Untouchables,1987,A,119 min,"Crime, Drama, Thriller",7.9,"During the era of Prohibition in the United States, Federal Agent Eliot Ness sets out to stop ruthless Chicago gangster Al Capone and, because of rampant corruption, assembles a small, hand-picked team to help him.",79,Brian De Palma,Kevin Costner,Sean Connery,Robert De Niro,Charles Martin Smith,281842,"76,270,454" "https://m.media-amazon.com/images/M/MV5BMWZiNWUwYjMtM2Y1Yi00MTZmLWEwYzctNjVmYWM0OTFlZDFhXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Hannah and Her Sisters,1986,PG-13,107 min,"Comedy, Drama",7.9,"Between two Thanksgivings two years apart, Hannah's husband falls in love with her sister Lee, while her hypochondriac ex-husband rekindles his relationship with her sister Holly.",90,Woody Allen,Mia Farrow,Dianne Wiest,Michael Caine,Barbara Hershey,67176,"40,084,041" "https://m.media-amazon.com/images/M/MV5BMzIwM2IwYTItYmM4Zi00OWMzLTkwNjAtYWRmYWNmY2RhMDk0XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Brazil,1985,U,132 min,"Drama, Sci-Fi",7.9,A bureaucrat in a dystopic society becomes an enemy of the state as he pursues the woman of his dreams.,84,Terry Gilliam,Jonathan Pryce,Kim Greist,Robert De Niro,Katherine Helmond,187567,"9,929,135" "https://m.media-amazon.com/images/M/MV5BMTQ2MTIzMzg5Nl5BMl5BanBnXkFtZTgwOTc5NDI1MDE@._V1_UX67_CR0,0,67,98_AL_.jpg",This Is Spinal Tap,1984,R,82 min,"Comedy, Music",7.9,"Spinal Tap, one of England's loudest bands, is chronicled by film director Marty DiBergi on what proves to be a fateful tour.",92,Rob Reiner,Rob Reiner,Michael McKean,Christopher Guest,Kimberly Stringer,128812,"188,751" "https://m.media-amazon.com/images/M/MV5BOWMyNjE0MzEtMzVjNy00NjIxLTg0ZjMtMWJhNGI1YmVjYTczL2ltYWdlXkEyXkFqcGdeQXVyNzc5MjA3OA@@._V1_UX67_CR0,0,67,98_AL_.jpg",A Christmas Story,1983,U,93 min,"Comedy, Family",7.9,"In the 1940s, a young boy named Ralphie attempts to convince his parents, his teacher and Santa that a Red Ryder BB gun really is the perfect Christmas gift.",77,Bob Clark,Peter Billingsley,Melinda Dillon,Darren McGavin,Scott Schwartz,132947,"20,605,209" "https://m.media-amazon.com/images/M/MV5BYTdlMDExOGUtN2I3MS00MjY5LWE1NTAtYzc3MzIxN2M3OWY1XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",The Blues Brothers,1980,U,133 min,"Action, Adventure, Comedy",7.9,"Jake Blues, just released from prison, puts together his old band to save the Catholic home where he and his brother Elwood were raised.",60,John Landis,John Belushi,Dan Aykroyd,Cab Calloway,John Candy,183182,"57,229,890" "https://m.media-amazon.com/images/M/MV5BMzdmY2I3MmEtOGFiZi00MTg1LWIxY2QtNWUwM2NmNWNlY2U5XkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Manhattan,1979,R,96 min,"Comedy, Drama, Romance",7.9,The life of a divorced television writer dating a teenage girl is further complicated when he falls in love with his best friend's mistress.,83,Woody Allen,Woody Allen,Diane Keaton,Mariel Hemingway,Michael Murphy,131436,"45,700,000" "https://m.media-amazon.com/images/M/MV5BZWE4N2JkNDUtZDU4MC00ZjNhLTlkMjYtOTNkMjZhMDAwMDMyXkEyXkFqcGdeQXVyMTA0MjU0Ng@@._V1_UX67_CR0,0,67,98_AL_.jpg",All That Jazz,1979,A,123 min,"Drama, Music, Musical",7.9,"Director/choreographer Bob Fosse tells his own life story as he details the sordid career of Joe Gideon, a womanizing, drug-using dancer.",72,Bob Fosse,Roy Scheider,Jessica Lange,Ann Reinking,Leland Palmer,28223,"37,823,676" "https://m.media-amazon.com/images/M/MV5BMzc1YTIyNjctYzhlNy00ZmYzLWI2ZWQtMzk4MmQwYzA0NGQ1XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Dawn of the Dead,1978,A,127 min,"Action, Adventure, Horror",7.9,"Following an ever-growing epidemic of zombies that have risen from the dead, two Philadelphia S.W.A.T. team members, a traffic reporter, and his television executive girlfriend seek refuge in a secluded shopping mall.",71,George A. Romero,David Emge,Ken Foree,Scott H. Reiniger,Gaylen Ross,111512,"5,100,000" "https://m.media-amazon.com/images/M/MV5BOWI2YWQxM2MtY2U4Yi00YjgzLTgwNzktN2ExNTgzNTIzMmUzXkEyXkFqcGdeQXVyMTAwMzUyOTc@._V1_UX67_CR0,0,67,98_AL_.jpg",All the President's Men,1976,U,138 min,"Biography, Drama, History",7.9,"""The Washington Post"" reporters Bob Woodward and Carl Bernstein uncover the details of the Watergate scandal that leads to President Richard Nixon's resignation.",84,Alan J. Pakula,Dustin Hoffman,Robert Redford,Jack Warden,Martin Balsam,103031,"70,600,000" "https://m.media-amazon.com/images/M/MV5BN2IzM2I5NTQtMTIyMy00YWM2LWI1OGMtNjI0MWIyNDZkZGFkXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",La montaña sagrada,1973,R,114 min,"Adventure, Drama, Fantasy",7.9,"In a corrupt, greed-fueled world, a powerful alchemist leads a messianic character and seven materialistic figures to the Holy Mountain, where they hope to achieve enlightenment.",76,Alejandro Jodorowsky,Alejandro Jodorowsky,Horacio Salinas,Zamira Saunders,Juan Ferrara,37183,"61,001" "https://m.media-amazon.com/images/M/MV5BZDI2OTg2NDQtMzc0MC00MjRiLWI1NzAtMjY2ZDMwMmUyNzBiXkEyXkFqcGdeQXVyNzM0MTUwNTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Amarcord,1973,R,123 min,"Comedy, Drama, Family",7.9,A series of comedic and nostalgic vignettes set in a 1930s Italian coastal town.,,Federico Fellini,Magali Noël,Bruno Zanin,Pupella Maggio,Armando Brancia,39897, "https://m.media-amazon.com/images/M/MV5BYzQ5NjJiYWQtYjAzMC00NGU0LWFlMDYtNGFiYjFlMWI1NWM0XkEyXkFqcGdeQXVyODQ0OTczOQ@@._V1_UY98_CR4,0,67,98_AL_.jpg",Le charme discret de la bourgeoisie,1972,PG,102 min,Comedy,7.9,"A surreal, virtually plotless series of dreams centered around six middle-class people and their consistently interrupted attempts to have a meal together.",93,Luis Buñuel,Fernando Rey,Delphine Seyrig,Paul Frankeur,Bulle Ogier,38737,"198,809" "https://m.media-amazon.com/images/M/MV5BMjRkY2VhYzMtZWQyNS00OTY2LWE5NTAtYjlhNmQyYzE5MmUxXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg","Aguirre, der Zorn Gottes",1972,,95 min,"Action, Adventure, Biography",7.9,"In the 16th century, the ruthless and insane Don Lope de Aguirre leads a Spanish expedition in search of El Dorado.",,Werner Herzog,Klaus Kinski,Ruy Guerra,Helena Rojo,Del Negro,52397, "https://m.media-amazon.com/images/M/MV5BY2M5Mzg3NjctZTlkNy00MTU0LWFlYTQtY2E2Y2M4NjNiNzllXkEyXkFqcGdeQXVyMTAwMzUyOTc@._V1_UX67_CR0,0,67,98_AL_.jpg",Harold and Maude,1971,PG,91 min,"Comedy, Drama, Romance",7.9,"Young, rich, and obsessed with death, Harold finds himself changed forever when he meets lively septuagenarian Maude at a funeral.",62,Hal Ashby,Ruth Gordon,Bud Cort,Vivian Pickles,Cyril Cusack,70826, "https://m.media-amazon.com/images/M/MV5BMmNhZmJhMmYtNjlkMC00MjhjLTk1NzMtMTNlMzYzNjZlMjNiXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Patton,1970,U,172 min,"Biography, Drama, War",7.9,The World War II phase of the career of controversial American general George S. Patton.,91,Franklin J. Schaffner,George C. Scott,Karl Malden,Stephen Young,Michael Strong,93741,"61,700,000" "https://m.media-amazon.com/images/M/MV5BNGUyYTZmOWItMDJhMi00N2IxLWIyNDMtNjUxM2ZiYmU5YWU1XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",The Wild Bunch,1969,A,145 min,"Action, Adventure, Western",7.9,"An aging group of outlaws look for one last big score as the ""traditional"" American West is disappearing around them.",97,Sam Peckinpah,William Holden,Ernest Borgnine,Robert Ryan,Edmond O'Brien,77401,"12,064,472" "https://m.media-amazon.com/images/M/MV5BMzRmN2E1ZDUtZDc2ZC00ZmI3LTkwOTctNzE2ZDIzMGJiMTYzXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Night of the Living Dead,1968,,96 min,"Horror, Thriller",7.9,A ragtag group of Pennsylvanians barricade themselves in an old farmhouse to remain safe from a horde of flesh-eating ghouls that are ravaging the East Coast of the United States.,89,George A. Romero,Duane Jones,Judith O'Dea,Karl Hardman,Marilyn Eastman,116557,"89,029" "https://m.media-amazon.com/images/M/MV5BMTkzNzYyMzA5N15BMl5BanBnXkFtZTgwODcwODQ3MDI@._V1_UX67_CR0,0,67,98_AL_.jpg",The Lion in Winter,1968,PG,134 min,"Biography, Drama, History",7.9,"1183 A.D.: King Henry II's three sons all want to inherit the throne, but he won't commit to a choice. They and his wife variously plot to force him.",,Anthony Harvey,Peter O'Toole,Katharine Hepburn,Anthony Hopkins,John Castle,29003,"22,276,975" "https://m.media-amazon.com/images/M/MV5BZjZhZTZkNWItZGE1My00MTRkLWI2ZDktMWZkZTIxZWYxOTgzXkEyXkFqcGdeQXVyNDY2MTk1ODk@._V1_UX67_CR0,0,67,98_AL_.jpg",In the Heat of the Night,1967,U,110 min,"Crime, Drama, Mystery",7.9,A black police detective is asked to investigate a murder in a racially hostile southern town.,75,Norman Jewison,Sidney Poitier,Rod Steiger,Warren Oates,Lee Grant,67804,"24,379,978" "https://m.media-amazon.com/images/M/MV5BMTA0Y2UyMDUtZGZiOS00ZmVkLTg3NmItODQyNTY1ZjU1MWE4L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Charade,1963,U,113 min,"Comedy, Mystery, Romance",7.9,Romance and suspense ensue in Paris as a woman is pursued by several men who want a fortune her murdered husband had stolen. Whom can she trust?,83,Stanley Donen,Cary Grant,Audrey Hepburn,Walter Matthau,James Coburn,68689,"13,474,588" "https://m.media-amazon.com/images/M/MV5BOTY0ZTA1ZjUtN2MyNi00ZGRmLWExYmMtOTkyNzI1NGQ2Y2RlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",The Manchurian Candidate,1962,PG-13,126 min,"Drama, Thriller",7.9,A former prisoner of war is brainwashed as an unwitting assassin for an international Communist conspiracy.,94,John Frankenheimer,Frank Sinatra,Laurence Harvey,Janet Leigh,Angela Lansbury,71122, "https://m.media-amazon.com/images/M/MV5BMjc4MTUxN2UtMmU1NC00MjQyLTk3YTYtZTQ0YzEzZDc0Njc0XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Spartacus,1960,A,197 min,"Adventure, Biography, Drama",7.9,The slave Spartacus leads a violent revolt against the decadent Roman Republic.,87,Stanley Kubrick,Kirk Douglas,Laurence Olivier,Jean Simmons,Charles Laughton,124339,"30,000,000" "https://m.media-amazon.com/images/M/MV5BZDFlODBmZTYtMWU4MS00MzY4LWFmYzYtYzAzZmU1MGUzMDE5XkEyXkFqcGdeQXVyNTc1NDM0NDU@._V1_UY98_CR1,0,67,98_AL_.jpg",L'avventura,1960,U,144 min,"Drama, Mystery",7.9,"A woman disappears during a Mediterranean boating trip. During the search, her lover and her best friend become attracted to each other.",,Michelangelo Antonioni,Gabriele Ferzetti,Monica Vitti,Lea Massari,Dominique Blanchar,26542, "https://m.media-amazon.com/images/M/MV5BMzY2NTA1MzUwN15BMl5BanBnXkFtZTgwOTc4NTU4MjE@._V1_UX67_CR0,0,67,98_AL_.jpg",Hiroshima mon amour,1959,,90 min,"Drama, Romance",7.9,A French actress filming an anti-war film in Hiroshima has an affair with a married Japanese architect as they share their differing perspectives on war.,,Alain Resnais,Emmanuelle Riva,Eiji Okada,Stella Dassas,Pierre Barbaud,28421,"88,300" "https://m.media-amazon.com/images/M/MV5BODcxYjUxZDgtYTQ5Zi00YmQ1LWJmZmItODZkOTYyNDhiNWM3XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",The Ten Commandments,1956,U,220 min,"Adventure, Drama",7.9,"Moses, an Egyptian Prince, learns of his true heritage as a Hebrew and his divine mission as the deliverer of his people.",,Cecil B. DeMille,Charlton Heston,Yul Brynner,Anne Baxter,Edward G. Robinson,63560,"93,740,000" "https://m.media-amazon.com/images/M/MV5BYWQ3YWJiMDEtMDBhNS00YjY1LTkzNmEtY2U4Njg4MjQ3YWE3XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",The Searchers,1956,Passed,119 min,"Adventure, Drama, Western",7.9,An American Civil War veteran embarks on a journey to rescue his niece from the Comanches.,94,John Ford,John Wayne,Jeffrey Hunter,Vera Miles,Ward Bond,80316, "https://m.media-amazon.com/images/M/MV5BMzE1MzdjNmUtOWU5MS00OTgwLWIzYjYtYTYwYTM0NDkyOTU1XkEyXkFqcGdeQXVyMTY5Nzc4MDY@._V1_UX67_CR0,0,67,98_AL_.jpg",East of Eden,1955,U,118 min,Drama,7.9,"Two brothers struggle to maintain their strict, Bible-toting father's favor.",72,Elia Kazan,James Dean,Raymond Massey,Julie Harris,Burl Ives,40313, "https://m.media-amazon.com/images/M/MV5BOWIzZGUxZmItOThkMS00Y2QxLTg0MTYtMDdhMjRlNTNlYTI3L2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",High Noon,1952,PG,85 min,"Drama, Thriller, Western",7.9,"A town Marshal, despite the disagreements of his newlywed bride and the townspeople around him, must face a gang of deadly killers alone at high noon when the gang leader, an outlaw he sent up years ago, arrives on the noon train.",89,Fred Zinnemann,Gary Cooper,Grace Kelly,Thomas Mitchell,Lloyd Bridges,97222,"9,450,000" "https://m.media-amazon.com/images/M/MV5BNzkwNjk4ODgtYjRmMi00ODdhLWIyNjUtNWQyMjg2N2E2NjlhXkEyXkFqcGdeQXVyNjE5MjUyOTM@._V1_UX67_CR0,0,67,98_AL_.jpg",Strangers on a Train,1951,A,101 min,"Crime, Film-Noir, Thriller",7.9,A psychopath forces a tennis star to comply with his theory that two strangers can get away with murder.,88,Alfred Hitchcock,Farley Granger,Robert Walker,Ruth Roman,Leo G. Carroll,123341,"7,630,000" "https://m.media-amazon.com/images/M/MV5BMzg2YTFkNjgtM2ZkNS00MWVkLWIwMTEtZTgzMDM2MmUxNDE2XkEyXkFqcGdeQXVyMjI4MjA5MzA@._V1_UX67_CR0,0,67,98_AL_.jpg",Harvey,1950,Approved,104 min,"Comedy, Drama, Fantasy",7.9,"Due to his insistence that he has an invisible six foot-tall rabbit for a best friend, a whimsical middle-aged man is thought by his family to be insane - but he may be wiser than anyone knows.",,Henry Koster,James Stewart,Wallace Ford,William H. Lynn,Victoria Horne,52573, "https://m.media-amazon.com/images/M/MV5BNjRkOGEwYTUtY2E5Yy00ODg4LTk2ZWItY2IyMzUxOGVhMTM1XkEyXkFqcGdeQXVyNDk0MDg4NDk@._V1_UX67_CR0,0,67,98_AL_.jpg",Miracle on 34th Street,1947,,96 min,"Comedy, Drama, Family",7.9,"When a nice old man who claims to be Santa Claus is institutionalized as insane, a young lawyer decides to defend him by arguing in court that he is the real thing.",88,George Seaton,Edmund Gwenn,Maureen O'Hara,John Payne,Gene Lockhart,41625,"2,650,000" "https://m.media-amazon.com/images/M/MV5BYTc1NGViOTMtNjZhNS00OGY2LWI4MmItOWQwNTY4MDMzNWI3L2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Notorious,1946,U,102 min,"Drama, Film-Noir, Romance",7.9,A woman is asked to spy on a group of Nazi friends in South America. How far will she have to go to ingratiate herself with them?,100,Alfred Hitchcock,Cary Grant,Ingrid Bergman,Claude Rains,Louis Calhern,92306,"10,464,000" "https://m.media-amazon.com/images/M/MV5BMjdiM2IyZmQtODJiYy00NDNkLTllYmItMmFjMDNiYTQyOGVkXkEyXkFqcGdeQXVyNDY2MTk1ODk@._V1_UX67_CR0,0,67,98_AL_.jpg",The Big Sleep,1946,Passed,114 min,"Crime, Film-Noir, Mystery",7.9,"Private detective Philip Marlowe is hired by a wealthy family. Before the complex case is over, he's seen murder, blackmail, and what might be love.",,Howard Hawks,Humphrey Bogart,Lauren Bacall,John Ridgely,Martha Vickers,78796,"6,540,000" "https://m.media-amazon.com/images/M/MV5BMTk4NDQ0NjgyNF5BMl5BanBnXkFtZTgwMTE3NTkxMTE@._V1_UX67_CR0,0,67,98_AL_.jpg",The Lost Weekend,1945,Passed,101 min,"Drama, Film-Noir",7.9,The desperate life of a chronic alcoholic is followed through a four-day drinking bout.,,Billy Wilder,Ray Milland,Jane Wyman,Phillip Terry,Howard Da Silva,33549,"9,460,000" "https://m.media-amazon.com/images/M/MV5BYjQ4ZDA4NGMtMTkwYi00NThiLThhZDUtZTEzNTAxOWYyY2E4XkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UX67_CR0,0,67,98_AL_.jpg",The Philadelphia Story,1940,,112 min,"Comedy, Romance",7.9,"When a rich woman's ex-husband and a tabloid-type reporter turn up just before her planned remarriage, she begins to learn the truth about herself.",96,George Cukor,Cary Grant,Katharine Hepburn,James Stewart,Ruth Hussey,63550, "https://m.media-amazon.com/images/M/MV5BZDVmZTZkYjMtNmViZC00ODEzLTgwNDAtNmQ3OGQwOWY5YjFmXkEyXkFqcGdeQXVyNDY2MTk1ODk@._V1_UX67_CR0,0,67,98_AL_.jpg",His Girl Friday,1940,Passed,92 min,"Comedy, Drama, Romance",7.9,A newspaper editor uses every trick in the book to keep his ace reporter ex-wife from remarrying.,,Howard Hawks,Cary Grant,Rosalind Russell,Ralph Bellamy,Gene Lockhart,53667,"296,000" "https://m.media-amazon.com/images/M/MV5BYjZjOTU3MTMtYTM5YS00YjZmLThmNmMtODcwOTM1NmRiMWM2XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",The Adventures of Robin Hood,1938,PG,102 min,"Action, Adventure, Romance",7.9,"When Prince John and the Norman Lords begin oppressing the Saxon masses in King Richard's absence, a Saxon lord fights back as the outlaw leader of a rebel guerrilla army.",97,Michael Curtiz,William Keighley,Errol Flynn,Olivia de Havilland,Basil Rathbone,47175,"3,981,000" "https://m.media-amazon.com/images/M/MV5BYTJmNmQxNGItNDNlMC00MDU3LWFhNzMtZDQ2NDY0ZTVkNjE3XkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",A Night at the Opera,1935,Passed,96 min,"Comedy, Music, Musical",7.9,A sly business manager and two wacky friends of two opera singers help them achieve success while humiliating their stuffy and snobbish enemies.,,Sam Wood,Edmund Goulding,Groucho Marx,Chico Marx,Harpo Marx,30580,"2,537,520" "https://m.media-amazon.com/images/M/MV5BZTY3YjYxZGQtMTM2YS00ZmYwLWFlM2QtOWFlMTU1NTAyZDQ2XkEyXkFqcGdeQXVyNTgyNTA4MjM@._V1_UX67_CR0,0,67,98_AL_.jpg",King Kong,1933,Passed,100 min,"Adventure, Horror, Sci-Fi",7.9,A film crew goes to a tropical island for an exotic location shoot and discovers a colossal ape who takes a shine to their female blonde star. He is then captured and brought back to New York City for public exhibition.,90,Merian C. Cooper,Ernest B. Schoedsack,Fay Wray,Robert Armstrong,Bruce Cabot,78991,"10,000,000" "https://m.media-amazon.com/images/M/MV5BMjMyYjgyOTQtZDVlZS00NTQ0LWJiNDItNGRlZmM3Yzc0N2Y0XkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UX67_CR0,0,67,98_AL_.jpg",Freaks,1932,,64 min,"Drama, Horror",7.9,"A circus' beautiful trapeze artist agrees to marry the leader of side-show performers, but his deformed friends discover she is only marrying him for his inheritance.",80,Tod Browning,Wallace Ford,Leila Hyams,Olga Baclanova,Roscoe Ates,42117, "https://m.media-amazon.com/images/M/MV5BMTAxYjEyMTctZTg3Ni00MGZmLWIxMmMtOGM2NTFiY2U3MmExXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Nosferatu,1922,,94 min,"Fantasy, Horror",7.9,Vampire Count Orlok expresses interest in a new residence and real estate agent Hutter's wife.,,F.W. Murnau,Max Schreck,Alexander Granach,Gustav von Wangenheim,Greta Schröder,88794, "https://m.media-amazon.com/images/M/MV5BMTlkMmVmYjktYTc2NC00ZGZjLWEyOWUtMjc2MDMwMjQwOTA5XkEyXkFqcGdeQXVyNTI4MzE4MDU@._V1_UX67_CR0,0,67,98_AL_.jpg",The Gentlemen,2019,A,113 min,"Action, Comedy, Crime",7.8,"An American expat tries to sell off his highly profitable marijuana empire in London, triggering plots, schemes, bribery and blackmail in an attempt to steal his domain out from under him.",51,Guy Ritchie,Matthew McConaughey,Charlie Hunnam,Michelle Dockery,Jeremy Strong,237392, "https://m.media-amazon.com/images/M/MV5BZmVhN2JlYjEtZWFkOS00YzE0LThiNDMtMGI3NDA1MTk2ZDQ2XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY98_CR0,0,67,98_AL_.jpg",Raazi,2018,UA,138 min,"Action, Drama, Thriller",7.8,A Kashmiri woman agrees to marry a Pakistani army officer in order to spy on Pakistan during the Indo-Pakistan War of 1971.,,Meghna Gulzar,Alia Bhatt,Vicky Kaushal,Rajit Kapoor,Shishir Sharma,25344, "https://m.media-amazon.com/images/M/MV5BNjcyYjg0M2ItMzMyZS00NmM1LTlhZDMtN2MxN2RhNWY4YTkwXkEyXkFqcGdeQXVyNjY1MTg4Mzc@._V1_UX67_CR0,0,67,98_AL_.jpg",Sound of Metal,2019,R,120 min,"Drama, Music",7.8,A heavy-metal drummer's life is thrown into freefall when he begins to lose his hearing.,81,Darius Marder,Riz Ahmed,Olivia Cooke,Paul Raci,Lauren Ridloff,27187, "https://m.media-amazon.com/images/M/MV5BMTBkMjMyN2UtNzVjNi00Y2ZiLTk2MDYtN2Y0MjgzYjAxNzE4XkEyXkFqcGdeQXVyNjkxOTM4ODY@._V1_UY98_CR1,0,67,98_AL_.jpg",Forushande,2016,UA,124 min,Drama,7.8,"While both participating in a production of ""Death of a Salesman,"" a teacher's wife is assaulted in her new home, which leaves him determined to find the perpetrator over his wife's traumatized objections.",85,Asghar Farhadi,Shahab Hosseini,Taraneh Alidoosti,Babak Karimi,Mina Sadati,51240,"2,402,067" "https://m.media-amazon.com/images/M/MV5BN2YyZjQ0NTEtNzU5MS00NGZkLTg0MTEtYzJmMWY3MWRhZjM2XkEyXkFqcGdeQXVyMDA4NzMyOA@@._V1_UX67_CR0,0,67,98_AL_.jpg",Dunkirk,2017,UA,106 min,"Action, Drama, History",7.8,"Allied soldiers from Belgium, the British Empire, and France are surrounded by the German Army and evacuated during a fierce battle in World War II.",94,Christopher Nolan,Fionn Whitehead,Barry Keoghan,Mark Rylance,Tom Hardy,555092,"188,373,161" "https://m.media-amazon.com/images/M/MV5BNDQzZmQ5MjItYmJlNy00MGI2LWExMDQtMjBiNjNmMzc5NTk1XkEyXkFqcGdeQXVyNjY1OTY4MTk@._V1_UY98_CR1,0,67,98_AL_.jpg",Perfetti sconosciuti,2016,,96 min,"Comedy, Drama",7.8,"Seven long-time friends get together for a dinner. When they decide to share with each other the content of every text message, email and phone call they receive, many secrets start to unveil and the equilibrium trembles.",,Paolo Genovese,Giuseppe Battiston,Anna Foglietta,Marco Giallini,Edoardo Leo,57168, "https://m.media-amazon.com/images/M/MV5BMzg2Mzg4YmUtNDdkNy00NWY1LWE3NmEtZWMwNGNlMzE5YzU3XkEyXkFqcGdeQXVyMjA5MTIzMjQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Hidden Figures,2016,UA,127 min,"Biography, Drama, History",7.8,The story of a team of female African-American mathematicians who served a vital role in NASA during the early years of the U.S. space program.,74,Theodore Melfi,Taraji P. Henson,Octavia Spencer,Janelle Monáe,Kevin Costner,200876,"169,607,287" "https://m.media-amazon.com/images/M/MV5BMmYwNWZlNzEtNjE4Zi00NzQ4LWI2YmUtOWZhNzZhZDYyNmVmXkEyXkFqcGdeQXVyNzYzODM3Mzg@._V1_UX67_CR0,0,67,98_AL_.jpg",Paddington 2,2017,U,103 min,"Adventure, Comedy, Family",7.8,"Paddington (Ben Whishaw), now happily settled with the Brown family and a popular member of the local community, picks up a series of odd jobs to buy the perfect present for his Aunt Lucy's (Imelda Staunton's) 100th birthday, only for the gift to be stolen.",88,Paul King,Ben Whishaw,Hugh Grant,Hugh Bonneville,Sally Hawkins,61594,"40,442,052" "https://m.media-amazon.com/images/M/MV5BY2YxNjQxYWYtYzNkMi00YTgyLWIwZTMtYzgyYjZlZmYzZTA0XkEyXkFqcGdeQXVyMTA4NjE0NjEy._V1_UX67_CR0,0,67,98_AL_.jpg",Udta Punjab,2016,A,148 min,"Action, Crime, Drama",7.8,A story that revolves around drug abuse in the affluent north Indian State of Punjab and how the youth there have succumbed to it en-masse resulting in a socio-economic decline.,,Abhishek Chaubey,Shahid Kapoor,Alia Bhatt,Kareena Kapoor,Diljit Dosanjh,27175, "https://m.media-amazon.com/images/M/MV5BMjA2Mzg2NDMzNl5BMl5BanBnXkFtZTgwMjcwODUzOTE@._V1_UX67_CR0,0,67,98_AL_.jpg",Kubo and the Two Strings,2016,PG,101 min,"Animation, Action, Adventure",7.8,A young boy named Kubo must locate a magical suit of armour worn by his late father in order to defeat a vengeful spirit from the past.,84,Travis Knight,Charlize Theron,Art Parkinson,Matthew McConaughey,Ralph Fiennes,118035,"48,023,088" "https://m.media-amazon.com/images/M/MV5BZjAzZjZiMmQtMDZmOC00NjVmLTkyNTItOGI2Mzg4NTBhZTA1XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY98_CR0,0,67,98_AL_.jpg",M.S. Dhoni: The Untold Story,2016,U,184 min,"Biography, Drama, Sport",7.8,The untold story of Mahendra Singh Dhoni's journey from ticket collector to trophy collector - the world-cup-winning captain of the Indian Cricket Team.,,Neeraj Pandey,Sushant Singh Rajput,Kiara Advani,Anupam Kher,Disha Patani,40416,"1,782,795" "https://m.media-amazon.com/images/M/MV5BMTYxMjk0NDg4Ml5BMl5BanBnXkFtZTgwODcyNjA5OTE@._V1_UX67_CR0,0,67,98_AL_.jpg",Manchester by the Sea,2016,UA,137 min,Drama,7.8,A depressed uncle is asked to take care of his teenage nephew after the boy's father dies.,96,Kenneth Lonergan,Casey Affleck,Michelle Williams,Kyle Chandler,Lucas Hedges,246963,"47,695,120" "https://m.media-amazon.com/images/M/MV5BMjA0MzQzNjM1Ml5BMl5BanBnXkFtZTgwNjM5MjU5NjE@._V1_UX67_CR0,0,67,98_AL_.jpg",Under sandet,2015,R,100 min,"Drama, History, War",7.8,"In post-World War II Denmark, a group of young German POWs are forced to clear a beach of thousands of land mines under the watch of a Danish Sergeant who slowly learns to appreciate their plight.",75,Martin Zandvliet,Roland Møller,Louis Hofmann,Joel Basman,Mikkel Boe Følsgaard,35539,"435,266" "https://m.media-amazon.com/images/M/MV5BMjEwMzMxODIzOV5BMl5BanBnXkFtZTgwNzg3OTAzMDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Rogue One,2016,UA,133 min,"Action, Adventure, Sci-Fi",7.8,The daughter of an Imperial scientist joins the Rebel Alliance in a risky move to steal the plans for the Death Star.,65,Gareth Edwards,Felicity Jones,Diego Luna,Alan Tudyk,Donnie Yen,556608,"532,177,324" "https://m.media-amazon.com/images/M/MV5BMjQ0MTgyNjAxMV5BMl5BanBnXkFtZTgwNjUzMDkyODE@._V1_UX67_CR0,0,67,98_AL_.jpg",Captain America: Civil War,2016,UA,147 min,"Action, Adventure, Sci-Fi",7.8,Political involvement in the Avengers' affairs causes a rift between Captain America and Iron Man.,75,Anthony Russo,Joe Russo,Chris Evans,Robert Downey Jr.,Scarlett Johansson,663649,"408,084,349" "https://m.media-amazon.com/images/M/MV5BMjA1MTc1NTg5NV5BMl5BanBnXkFtZTgwOTM2MDEzNzE@._V1_UX67_CR0,0,67,98_AL_.jpg",The Hateful Eight,2015,A,168 min,"Crime, Drama, Mystery",7.8,"In the dead of a Wyoming winter, a bounty hunter and his prisoner find shelter in a cabin currently inhabited by a collection of nefarious characters.",68,Quentin Tarantino,Samuel L. Jackson,Kurt Russell,Jennifer Jason Leigh,Walton Goggins,517059,"54,117,416" "https://m.media-amazon.com/images/M/MV5BY2QzYTQyYzItMzAwYi00YjZlLThjNTUtNzMyMDdkYzJiNWM4XkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Little Women,2019,U,135 min,"Drama, Romance",7.8,"Jo March reflects back and forth on her life, telling the beloved story of the March sisters - four young women, each determined to live life on her own terms.",91,Greta Gerwig,Saoirse Ronan,Emma Watson,Florence Pugh,Eliza Scanlen,143250,"108,101,214" "https://m.media-amazon.com/images/M/MV5BMTU3NjE2NjgwN15BMl5BanBnXkFtZTgwNDYzMzEwMzI@._V1_UX67_CR0,0,67,98_AL_.jpg",Loving Vincent,2017,UA,94 min,"Animation, Biography, Crime",7.8,"In a story depicted in oil painted animation, a young man comes to the last hometown of painter Vincent van Gogh (Robert Gulaczyk) to deliver the troubled artist's final letter and ends up investigating his final days there.",62,Dorota Kobiela,Hugh Welchman,Douglas Booth,Jerome Flynn,Robert Gulaczyk,50778,"6,735,118" "https://m.media-amazon.com/images/M/MV5BMTU2OTcyOTE3MF5BMl5BanBnXkFtZTgwNTg5Mjc1MjE@._V1_UX67_CR0,0,67,98_AL_.jpg",Pride,2014,R,119 min,"Biography, Comedy, Drama",7.8,U.K. gay activists work to help miners during their lengthy strike of the National Union of Mineworkers in the summer of 1984.,79,Matthew Warchus,Bill Nighy,Imelda Staunton,Dominic West,Paddy Considine,51841, "https://m.media-amazon.com/images/M/MV5BMTcxNTgzNDg1N15BMl5BanBnXkFtZTgwNjg4MzI1MDE@._V1_UX67_CR0,0,67,98_AL_.jpg",Le passé,2013,PG-13,130 min,"Drama, Mystery",7.8,"An Iranian man deserts his French wife and her two children to return to his homeland. Meanwhile, his wife starts up a new relationship, a reality her husband confronts upon his wife's request for a divorce.",85,Asghar Farhadi,Bérénice Bejo,Tahar Rahim,Ali Mosaffa,Pauline Burlet,45002,"1,330,596" "https://m.media-amazon.com/images/M/MV5BNjg5NmI3NmUtZDQ2Mi00ZTI0LWE0YzAtOGRhOWJmNDJkOWNkXkEyXkFqcGdeQXVyMzIzNDU1NTY@._V1_UY98_CR0,0,67,98_AL_.jpg",La grande bellezza,2013,,141 min,Drama,7.8,"Jep Gambardella has seduced his way through the lavish nightlife of Rome for decades, but after his 65th birthday and a shock from the past, Jep looks past the nightclubs and parties to find a timeless landscape of absurd, exquisite beauty.",86,Paolo Sorrentino,Toni Servillo,Carlo Verdone,Sabrina Ferilli,Carlo Buccirosso,81125,"2,852,400" "https://m.media-amazon.com/images/M/MV5BMTUwMzc1NjIzMV5BMl5BanBnXkFtZTgwODUyMTIxMTE@._V1_UX67_CR0,0,67,98_AL_.jpg",The Lunchbox,2013,U,104 min,"Drama, Romance",7.8,A mistaken delivery in Mumbai's famously efficient lunchbox delivery system connects a young housewife to an older man in the dusk of his life as they build a fantasy world together through notes in the lunchbox.,76,Ritesh Batra,Irrfan Khan,Nimrat Kaur,Nawazuddin Siddiqui,Lillete Dubey,50523,"4,231,500" "https://m.media-amazon.com/images/M/MV5BYWNlODE1ZTEtOTQ5MS00N2QwLTllNjItZDQ2Y2UzMmU5YmI2XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY98_CR3,0,67,98_AL_.jpg",Vicky Donor,2012,UA,126 min,"Comedy, Romance",7.8,"A man is brought in by an infertility doctor to supply him with his sperm, where he becomes the biggest sperm donor for his clinic.",,Shoojit Sircar,Ayushmann Khurrana,Yami Gautam,Annu Kapoor,Dolly Ahluwalia,39710,"169,209" "https://m.media-amazon.com/images/M/MV5BMDliOTIzNmUtOTllOC00NDU3LWFiNjYtMGM0NDc1YTMxNjYxXkEyXkFqcGdeQXVyNTM3NzExMDQ@._V1_UY98_CR1,0,67,98_AL_.jpg",Big Hero 6,2014,U,102 min,"Animation, Action, Adventure",7.8,"A special bond develops between plus-sized inflatable robot Baymax and prodigy Hiro Hamada, who together team up with a group of friends to form a band of high-tech heroes.",74,Don Hall,Chris Williams,Ryan Potter,Scott Adsit,Jamie Chung,410983,"222,527,828" "https://m.media-amazon.com/images/M/MV5BMTA1ODUzMDA3NzFeQTJeQWpwZ15BbWU3MDgxMTYxNTk@._V1_UX67_CR0,0,67,98_AL_.jpg",About Time,2013,R,123 min,"Comedy, Drama, Fantasy",7.8,"At the age of 21, Tim discovers he can travel in time and change what happens and has happened in his own life. His decision to make his world a better place by getting a girlfriend turns out not to be as easy as you might think.",55,Richard Curtis,Domhnall Gleeson,Rachel McAdams,Bill Nighy,Lydia Wilson,303032,"15,322,921" "https://m.media-amazon.com/images/M/MV5BMjQ5YWVmYmYtOWFiZC00NGMxLWEwODctZDM2MWI4YWViN2E5XkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_UY98_CR0,0,67,98_AL_.jpg",English Vinglish,2012,U,134 min,"Comedy, Drama, Family",7.8,"A quiet, sweet tempered housewife endures small slights from her well-educated husband and daughter every day because of her inability to speak and understand English.",,Gauri Shinde,Sridevi,Adil Hussain,Mehdi Nebbou,Priya Anand,33618,"1,670,773" "https://m.media-amazon.com/images/M/MV5BMTU4NDg0MzkzNV5BMl5BanBnXkFtZTgwODA3Mzc1MDE@._V1_UX67_CR0,0,67,98_AL_.jpg",Kaze tachinu,2013,PG-13,126 min,"Animation, Biography, Drama",7.8,"A look at the life of Jiro Horikoshi, the man who designed Japanese fighter planes during World War II.",83,Hayao Miyazaki,Hideaki Anno,Hidetoshi Nishijima,Miori Takimoto,Masahiko Nishimura,73690,"5,209,580" "https://m.media-amazon.com/images/M/MV5BMTYzMDM4NzkxOV5BMl5BanBnXkFtZTgwNzM1Mzg2NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Toy Story 4,2019,U,100 min,"Animation, Adventure, Comedy",7.8,"When a new toy called ""Forky"" joins Woody and the gang, a road trip alongside old and new friends reveals how big the world can be for a toy.",84,Josh Cooley,Tom Hanks,Tim Allen,Annie Potts,Tony Hale,203177,"434,038,008" "https://m.media-amazon.com/images/M/MV5BMTQ4MzQ3NjA0N15BMl5BanBnXkFtZTgwODQyNjQ4MDE@._V1_UX67_CR0,0,67,98_AL_.jpg",La migliore offerta,2013,R,131 min,"Crime, Drama, Mystery",7.8,A lonely art expert working for a mysterious and reclusive heiress finds not only her art worth examining.,49,Giuseppe Tornatore,Geoffrey Rush,Jim Sturgess,Sylvia Hoeks,Donald Sutherland,108399,"85,433" "https://m.media-amazon.com/images/M/MV5BMzllMWI1ZDQtMmFhNS00NzJkLThmMTMtNzFmMmMyYjU3ZGVjXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UY98_CR1,0,67,98_AL_.jpg",Moonrise Kingdom,2012,A,94 min,"Comedy, Drama, Romance",7.8,"A pair of young lovers flee their New England town, which causes a local search party to fan out to find them.",84,Wes Anderson,Jared Gilman,Kara Hayward,Bruce Willis,Bill Murray,318789,"45,512,466" "https://m.media-amazon.com/images/M/MV5BMzMwMTAwODczN15BMl5BanBnXkFtZTgwMDk2NDA4MTE@._V1_UX67_CR0,0,67,98_AL_.jpg",How to Train Your Dragon 2,2014,U,102 min,"Animation, Action, Adventure",7.8,"When Hiccup and Toothless discover an ice cave that is home to hundreds of new wild dragons and the mysterious Dragon Rider, the two friends find themselves at the center of a battle to protect the peace.",76,Dean DeBlois,Jay Baruchel,Cate Blanchett,Gerard Butler,Craig Ferguson,305611,"177,002,924" "https://m.media-amazon.com/images/M/MV5BNDc4MThhN2EtZjMzNC00ZDJmLThiZTgtNThlY2UxZWMzNjdkXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",The Big Short,2015,A,130 min,"Biography, Comedy, Drama",7.8,In 2006-2007 a group of investors bet against the US mortgage market. In their research they discover how flawed and corrupt the market is.,81,Adam McKay,Christian Bale,Steve Carell,Ryan Gosling,Brad Pitt,362942,"70,259,870" "https://m.media-amazon.com/images/M/MV5BYzM2OGQ2NzUtNzlmYi00ZDg4LWExODgtMDVmOTU2Yzg2N2U5XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY98_CR0,0,67,98_AL_.jpg",Kokuhaku,2010,,106 min,"Drama, Thriller",7.8,A psychological thriller of a grieving mother turned cold-blooded avenger with a twisty master plan to pay back those who were responsible for her daughter's death.,,Tetsuya Nakashima,Takako Matsu,Yoshino Kimura,Masaki Okada,Yukito Nishii,35713, "https://m.media-amazon.com/images/M/MV5BZjRmNjc5MTYtYjc3My00ZjNiLTg4YjUtMTQ0ZTFkZmMxMDUzXkEyXkFqcGdeQXVyNDY5MTUyNjU@._V1_UY98_CR3,0,67,98_AL_.jpg",Ang-ma-reul bo-at-da,2010,,144 min,"Action, Crime, Drama",7.8,A secret agent exacts revenge on a serial killer through a series of captures and releases.,67,Jee-woon Kim,Lee Byung-Hun,Choi Min-sik,Jeon Gook-Hwan,Ho-jin Chun,111252,"128,392" "https://m.media-amazon.com/images/M/MV5BMTczNDk4NTQ0OV5BMl5BanBnXkFtZTcwNDAxMDgxNw@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Girl with the Dragon Tattoo,2011,R,158 min,"Crime, Drama, Mystery",7.8,"Journalist Mikael Blomkvist is aided in his search for a woman who has been missing for forty years by Lisbeth Salander, a young computer hacker.",71,David Fincher,Daniel Craig,Rooney Mara,Christopher Plummer,Stellan Skarsgård,423010,"102,515,793" "https://m.media-amazon.com/images/M/MV5BODhiZWRhMjctNDUyMS00NmUwLTgwYmItMjJhOWNkZWQ3ZTQxXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Captain Phillips,2013,UA,134 min,"Adventure, Biography, Crime",7.8,"The true story of Captain Richard Phillips and the 2009 hijacking by Somali pirates of the U.S.-flagged MV Maersk Alabama, the first American cargo ship to be hijacked in two hundred years.",82,Paul Greengrass,Tom Hanks,Barkhad Abdi,Barkhad Abdirahman,Catherine Keener,421244,"107,100,855" "https://m.media-amazon.com/images/M/MV5BMTgzMTkxNjAxNV5BMl5BanBnXkFtZTgwMDU3MDE0MjE@._V1_UY98_CR0,0,67,98_AL_.jpg",Ajeossi,2010,R,119 min,"Action, Crime, Drama",7.8,A quiet pawnshop keeper with a violent past takes on a drug-and-organ trafficking ring in hope of saving the child who is his only friend.,,Jeong-beom Lee,Won Bin,Sae-ron Kim,Tae-hoon Kim,Hee-won Kim,62848,"6,460" "https://m.media-amazon.com/images/M/MV5BMTA5MzkyMzIxNjJeQTJeQWpwZ15BbWU4MDU0MDk0OTUx._V1_UX67_CR0,0,67,98_AL_.jpg",Straight Outta Compton,2015,R,147 min,"Biography, Drama, History",7.8,"The rap group NWA emerges from the mean streets of Compton in Los Angeles, California, in the mid-1980s and revolutionizes Hip Hop culture with their music and tales about life in the hood.",72,F. Gary Gray,O'Shea Jackson Jr.,Corey Hawkins,Jason Mitchell,Neil Brown Jr.,179264,"161,197,785" "https://m.media-amazon.com/images/M/MV5BMTQzMTg0NDA1M15BMl5BanBnXkFtZTgwODUzMTE0MjE@._V1_UY98_CR0,0,67,98_AL_.jpg",Madeo,2009,R,129 min,"Crime, Drama, Mystery",7.8,A mother desperately searches for the killer who framed her son for a girl's horrific murder.,79,Bong Joon Ho,Hye-ja Kim,Won Bin,Jin Goo,Je-mun Yun,52758,"547,292" "https://m.media-amazon.com/images/M/MV5BY2ViOTU5MDQtZTRiZi00YjViLWFiY2ItOTRhNWYyN2ZiMzUyXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UY98_CR1,0,67,98_AL_.jpg",Chugyeokja,2008,,125 min,"Action, Crime, Thriller",7.8,A disgraced ex-policeman who runs a small ring of prostitutes finds himself in a race against time when one of his women goes missing.,64,Hong-jin Na,Kim Yoon-seok,Jung-woo Ha,Yeong-hie Seo,Yoo-Jeong Kim,58468, "https://m.media-amazon.com/images/M/MV5BMzU0NDY0NDEzNV5BMl5BanBnXkFtZTgwOTIxNDU1MDE@._V1_UX67_CR0,0,67,98_AL_.jpg",The Hobbit: The Desolation of Smaug,2013,UA,161 min,"Adventure, Fantasy",7.8,"The dwarves, along with Bilbo Baggins and Gandalf the Grey, continue their quest to reclaim Erebor, their homeland, from Smaug. Bilbo Baggins is in possession of a mysterious and magical ring.",66,Peter Jackson,Ian McKellen,Martin Freeman,Richard Armitage,Ken Stott,601408,"258,366,855" "https://m.media-amazon.com/images/M/MV5BMTQ2OTYyNzUxOF5BMl5BanBnXkFtZTcwMzUwMDY4Mg@@._V1_UX67_CR0,0,67,98_AL_.jpg",Das weiße Band - Eine deutsche Kindergeschichte,2009,UA,144 min,"Drama, History, Mystery",7.8,"Strange events happen in a small village in the north of Germany during the years before World War I, which seem to be ritual punishment. Who is responsible?",82,Michael Haneke,Christian Friedel,Ernst Jacobi,Leonie Benesch,Ulrich Tukur,68715,"2,222,647" "https://m.media-amazon.com/images/M/MV5BMTc2Mjc0MDg3MV5BMl5BanBnXkFtZTcwMjUzMDkxMw@@._V1_UX67_CR0,0,67,98_AL_.jpg",Män som hatar kvinnor,2009,R,152 min,"Crime, Drama, Mystery",7.8,A journalist is aided by a young female hacker in his search for the killer of a woman who has been dead for forty years.,76,Niels Arden Oplev,Michael Nyqvist,Noomi Rapace,Ewa Fröling,Lena Endre,208994,"10,095,170" "https://m.media-amazon.com/images/M/MV5BYjYzOGE1MjUtODgyMy00ZDAxLTljYTgtNzk0Njg2YWQwMTZhXkEyXkFqcGdeQXVyMDM2NDM2MQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Trial of the Chicago 7,2020,R,129 min,"Drama, History, Thriller",7.8,"The story of 7 people on trial stemming from various charges surrounding the uprising at the 1968 Democratic National Convention in Chicago, Illinois.",77,Aaron Sorkin,Eddie Redmayne,Alex Sharp,Sacha Baron Cohen,Jeremy Strong,89896, "https://m.media-amazon.com/images/M/MV5BOTNjM2Y2ZjgtMDc5NS00MDQ1LTgyNGYtYzYwMTAyNWQwYTMyXkEyXkFqcGdeQXVyMjE4NzUxNDA@._V1_UX67_CR0,0,67,98_AL_.jpg",Druk,2020,,117 min,"Comedy, Drama",7.8,"Four friends, all high school teachers, test a theory that they will improve their lives by maintaining a constant level of alcohol in their blood.",81,Thomas Vinterberg,Mads Mikkelsen,Thomas Bo Larsen,Magnus Millang,Lars Ranthe,33931, "https://m.media-amazon.com/images/M/MV5BMTM0ODk3MjM1MV5BMl5BanBnXkFtZTcwNzc1MDIwNA@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Fighter,2010,UA,116 min,"Biography, Drama, Sport",7.8,"Based on the story of Micky Ward, a fledgling boxer who tries to escape the shadow of his more famous but troubled older boxing brother and get his own shot at greatness.",79,David O. Russell,Mark Wahlberg,Christian Bale,Amy Adams,Melissa Leo,340584,"93,617,009" "https://m.media-amazon.com/images/M/MV5BMTM4NzQ0OTYyOF5BMl5BanBnXkFtZTcwMDkyNjQyMg@@._V1_UX67_CR0,0,67,98_AL_.jpg",Taken,2008,A,90 min,"Action, Thriller",7.8,"A retired CIA agent travels across Europe and relies on his old skills to save his estranged daughter, who has been kidnapped while on a trip to Paris.",51,Pierre Morel,Liam Neeson,Maggie Grace,Famke Janssen,Leland Orser,564791,"145,000,989" "https://m.media-amazon.com/images/M/MV5BMTMzMTc3MjA5NF5BMl5BanBnXkFtZTcwOTk3MDE5MQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Boy in the Striped Pyjamas,2008,PG-13,94 min,"Drama, History, War",7.8,"Through the innocent eyes of Bruno, the eight-year-old son of the commandant at a German concentration camp, a forbidden friendship with a Jewish boy on the other side of the camp fence has startling and unexpected consequences.",55,Mark Herman,Asa Butterfield,David Thewlis,Rupert Friend,Zac Mattoon O'Brien,190748,"9,030,581" "https://m.media-amazon.com/images/M/MV5BYWUxZjJkMDktZmMxMS00Mzg3LTk4MDItN2IwODlmN2E0MTM0XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Once,2007,R,86 min,"Drama, Music, Romance",7.8,"A modern-day musical about a busker and an immigrant and their eventful week in Dublin, as they write, rehearse and record songs that tell their love story.",88,John Carney,Glen Hansard,Markéta Irglová,Hugh Walsh,Gerard Hendrick,110656,"9,439,923" "https://m.media-amazon.com/images/M/MV5BMTcwNTE4MTUxMl5BMl5BanBnXkFtZTcwMDIyODM4OA@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Hobbit: An Unexpected Journey,2012,UA,169 min,"Adventure, Fantasy",7.8,"A reluctant Hobbit, Bilbo Baggins, sets out to the Lonely Mountain with a spirited group of dwarves to reclaim their mountain home, and the gold within it from the dragon Smaug.",58,Peter Jackson,Martin Freeman,Ian McKellen,Richard Armitage,Andy Serkis,757377,"303,003,568" "https://m.media-amazon.com/images/M/MV5BMzgxMzYyNzAyOF5BMl5BanBnXkFtZTcwODY5MjY3MQ@@._V1_UY98_CR1,0,67,98_AL_.jpg",Auf der anderen Seite,2007,,122 min,Drama,7.8,A Turkish man travels to Istanbul to find the daughter of his father's former girlfriend.,85,Fatih Akin,Baki Davrak,Nurgül Yesilçay,Tuncel Kurtiz,Nursel Köse,30827,"741,283" "https://m.media-amazon.com/images/M/MV5BMGRiYjE0YzItMzk3Zi00ZmYwLWJjNDktYTAwYjIwMjIxYzM3XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Atonement,2007,R,123 min,"Drama, Mystery, Romance",7.8,Thirteen-year-old fledgling writer Briony Tallis irrevocably changes the course of several lives when she accuses her older sister's lover of a crime he did not commit.,85,Joe Wright,Keira Knightley,James McAvoy,Brenda Blethyn,Saoirse Ronan,251370,"50,927,067" "https://m.media-amazon.com/images/M/MV5BZjY5ZjQyMjMtMmEwOC00Nzc2LTllYTItMmU2MzJjNTg1NjY0XkEyXkFqcGdeQXVyNjQ1MTMzMDQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Drive,2011,A,100 min,"Crime, Drama",7.8,A mysterious Hollywood stuntman and mechanic moonlights as a getaway driver and finds himself in trouble when he helps out his neighbor.,78,Nicolas Winding Refn,Ryan Gosling,Carey Mulligan,Bryan Cranston,Albert Brooks,571571,"35,061,555" "https://m.media-amazon.com/images/M/MV5BMjFmZGI2YTEtYmJhMS00YTE5LWJjNjAtNDI5OGY5ZDhmNTRlXkEyXkFqcGdeQXVyODAwMTU1MTE@._V1_UX67_CR0,0,67,98_AL_.jpg",American Gangster,2007,A,157 min,"Biography, Crime, Drama",7.8,"An outcast New York City cop is charged with bringing down Harlem drug lord Frank Lucas, whose real life inspired this partly biographical film.",76,Ridley Scott,Denzel Washington,Russell Crowe,Chiwetel Ejiofor,Josh Brolin,392449,"130,164,645" "https://m.media-amazon.com/images/M/MV5BMTYwOTEwNjAzMl5BMl5BanBnXkFtZTcwODc5MTUwMw@@._V1_UX67_CR0,0,67,98_AL_.jpg",Avatar,2009,UA,162 min,"Action, Adventure, Fantasy",7.8,A paraplegic Marine dispatched to the moon Pandora on a unique mission becomes torn between following his orders and protecting the world he feels is his home.,83,James Cameron,Sam Worthington,Zoe Saldana,Sigourney Weaver,Michelle Rodriguez,1118998,"760,507,625" "https://m.media-amazon.com/images/M/MV5BMTg4ODkzMDQ3Nl5BMl5BanBnXkFtZTgwNTEwMTkxMDE@._V1_UX67_CR0,0,67,98_AL_.jpg",Mr. Nobody,2009,R,141 min,"Drama, Fantasy, Romance",7.8,"A boy stands on a station platform as a train is about to leave. Should he go with his mother or stay with his father? Infinite possibilities arise from this decision. As long as he doesn't choose, anything is possible.",63,Jaco Van Dormael,Jared Leto,Sarah Polley,Diane Kruger,Linh Dan Pham,216421,"3,600" "https://m.media-amazon.com/images/M/MV5BMzhmNGMzMDMtZDM0Yi00MmVmLWExYjAtZDhjZjcxZDM0MzJhXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Apocalypto,2006,A,139 min,"Action, Adventure, Drama",7.8,"As the Mayan kingdom faces its decline, a young man is taken on a perilous journey to a world ruled by fear and oppression.",68,Mel Gibson,Gerardo Taracena,Raoul Max Trujillo,Dalia Hernández,Rudy Youngblood,291018,"50,866,635" "https://m.media-amazon.com/images/M/MV5BMTgzNTgzODU0NV5BMl5BanBnXkFtZTcwMjEyMjMzMQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Little Miss Sunshine,2006,UA,101 min,"Comedy, Drama",7.8,A family determined to get their young daughter into the finals of a beauty pageant take a cross-country trip in their VW bus.,80,Jonathan Dayton,Valerie Faris,Steve Carell,Toni Collette,Greg Kinnear,439856,"59,891,098" "https://m.media-amazon.com/images/M/MV5BMzg4MDJhMDMtYmJiMS00ZDZmLThmZWUtYTMwZDM1YTc5MWE2XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Hot Fuzz,2007,UA,121 min,"Action, Comedy, Mystery",7.8,A skilled London police officer is transferred to a small town with a dark secret.,81,Edgar Wright,Simon Pegg,Nick Frost,Martin Freeman,Bill Nighy,463466,"23,637,265" "https://m.media-amazon.com/images/M/MV5BNjQ0NTY2ODY2M15BMl5BanBnXkFtZTgwMjE4MzkxMDE@._V1_UX67_CR0,0,67,98_AL_.jpg",The Curious Case of Benjamin Button,2008,UA,166 min,"Drama, Fantasy, Romance",7.8,"Tells the story of Benjamin Button, a man who starts aging backwards with consequences.",70,David Fincher,Brad Pitt,Cate Blanchett,Tilda Swinton,Julia Ormond,589160,"127,509,326" "https://m.media-amazon.com/images/M/MV5BY2VlOTc4ZjctYjVlMS00NDYwLWEwZjctZmYzZmVkNGU5NjNjXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY98_CR2,0,67,98_AL_.jpg",Veer-Zaara,2004,U,192 min,"Drama, Family, Musical",7.8,"Veer-Zaara is a saga of love, separation, courage and sacrifice. A love story that is an inspiration and will remain a legend forever.",67,Yash Chopra,Shah Rukh Khan,Preity Zinta,Rani Mukerji,Kirron Kher,49050,"2,921,738" "https://m.media-amazon.com/images/M/MV5BMTU4NTc5NjM5M15BMl5BanBnXkFtZTgwODEyMTE0MDE@._V1_UY98_CR1,0,67,98_AL_.jpg",Adams æbler,2005,R,94 min,"Comedy, Crime, Drama",7.8,A neo-nazi sentenced to community service at a church clashes with the blindly devotional priest.,51,Anders Thomas Jensen,Ulrich Thomsen,Mads Mikkelsen,Nicolas Bro,Paprika Steen,45717,"1,305" "https://m.media-amazon.com/images/M/MV5BMTA1NDQ3NTcyOTNeQTJeQWpwZ15BbWU3MDA0MzA4MzE@._V1_UX67_CR0,0,67,98_AL_.jpg",Pride & Prejudice,2005,PG,129 min,"Drama, Romance",7.8,"Sparks fly when spirited Elizabeth Bennet meets single, rich, and proud Mr. Darcy. But Mr. Darcy reluctantly finds himself falling in love with a woman beneath his class. Can each overcome their own pride and prejudice?",82,Joe Wright,Keira Knightley,Matthew Macfadyen,Brenda Blethyn,Donald Sutherland,258924,"38,405,088" "https://m.media-amazon.com/images/M/MV5BMjE1MjA0MDA3MV5BMl5BanBnXkFtZTcwOTU0MjMzMQ@@._V1_UY98_CR1,0,67,98_AL_.jpg",The World's Fastest Indian,2005,U,127 min,"Biography, Drama, Sport",7.8,"The story of New Zealander Burt Munro, who spent years rebuilding a 1920 Indian motorcycle, which helped him set the land speed world record at Utah's Bonneville Salt Flats in 1967.",68,Roger Donaldson,Anthony Hopkins,Diane Ladd,Iain Rea,Tessa Mitchell,51980,"5,128,124" "https://m.media-amazon.com/images/M/MV5BNWY2ODRkZDYtMjllYi00Y2EyLWFhYjktMTQ5OGNkY2ViYmY2XkEyXkFqcGdeQXVyNjUxMDQ0MTg@._V1_UY98_CR1,0,67,98_AL_.jpg",Tôkyô goddofâzâzu,2003,UA,90 min,"Animation, Adventure, Comedy",7.8,"On Christmas Eve, three homeless people living on the streets of Tokyo discover a newborn baby among the trash and set out to find its parents.",73,Satoshi Kon,Shôgo Furuya,Tôru Emori,Yoshiaki Umegaki,Aya Okamoto,31658,"128,985" "https://m.media-amazon.com/images/M/MV5BOWE2MDAwZjEtODEyOS00ZjYyLTgzNDUtYmNiY2VmNWRiMTQxXkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_UX67_CR0,0,67,98_AL_.jpg",Serenity,2005,PG-13,119 min,"Action, Adventure, Sci-Fi",7.8,The crew of the ship Serenity try to evade an assassin sent to recapture one of their members who is telepathic.,74,Joss Whedon,Nathan Fillion,Gina Torres,Chiwetel Ejiofor,Alan Tudyk,283310,"25,514,517" "https://m.media-amazon.com/images/M/MV5BMjIyOTU3MjUxOF5BMl5BanBnXkFtZTcwMTQ0NjYzMw@@._V1_UX67_CR0,0,67,98_AL_.jpg",Walk the Line,2005,PG-13,136 min,"Biography, Drama, Music",7.8,"A chronicle of country music legend Johnny Cash's life, from his early days on an Arkansas cotton farm to his rise to fame with Sun Records in Memphis, where he recorded alongside Elvis Presley, Jerry Lee Lewis, and Carl Perkins.",72,James Mangold,Joaquin Phoenix,Reese Witherspoon,Ginnifer Goodwin,Robert Patrick,234207,"119,519,402" "https://m.media-amazon.com/images/M/MV5BMzYwODUxNjkyMF5BMl5BanBnXkFtZTcwODUzNjQyMQ@@._V1_UY98_CR0,0,67,98_AL_.jpg",Ondskan,2003,,113 min,Drama,7.8,"A teenage boy expelled from school for fighting arrives at a boarding school where the systematic bullying of younger students is encouraged as a means to maintain discipline, and decides to fight back.",61,Mikael Håfström,Andreas Wilson,Henrik Lundström,Gustaf Skarsgård,Linda Zilliacus,35682,"15,280" "https://m.media-amazon.com/images/M/MV5BMTk3OTM5Njg5M15BMl5BanBnXkFtZTYwMzA0ODI3._V1_UX67_CR0,0,67,98_AL_.jpg",The Notebook,2004,A,123 min,"Drama, Romance",7.8,"A poor yet passionate young man falls in love with a rich young woman, giving her a sense of freedom, but they are soon separated because of their social differences.",53,Nick Cassavetes,Gena Rowlands,James Garner,Rachel McAdams,Ryan Gosling,520284,"81,001,787" "https://m.media-amazon.com/images/M/MV5BOTNmZTgyMzAtMTUwZC00NjAwLTk4MjktODllYTY5YTUwN2YwXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Diarios de motocicleta,2004,U,126 min,"Adventure, Biography, Drama",7.8,The dramatization of a motorcycle road trip Che Guevara went on in his youth that showed him his life's calling.,75,Walter Salles,Gael García Bernal,Rodrigo De la Serna,Mía Maestro,Mercedes Morán,96703,"16,756,372" "https://m.media-amazon.com/images/M/MV5BM2YwNTQwM2ItZTA2Ni00NGY1LThjY2QtNzgyZTBhMTM0MWI4XkEyXkFqcGdeQXVyNzQxNDExNTU@._V1_UY98_CR0,0,67,98_AL_.jpg",Lilja 4-ever,2002,R,109 min,"Crime, Drama",7.8,"Sixteen-year-old Lilja and her only friend, the young boy Volodja, live in Russia, fantasizing about a better life. One day, Lilja falls in love with Andrej, who is going to Sweden, and invites Lilja to come along and start a new life.",82,Lukas Moodysson,Oksana Akinshina,Artyom Bogucharskiy,Pavel Ponomaryov,Lyubov Agapova,42673,"181,655" "https://m.media-amazon.com/images/M/MV5BNGRiOTIwNTAtYWM2Yy00Yzc4LTkyZjEtNTM3NTIyZTNhMzg1XkEyXkFqcGdeQXVyODIyOTEyMzY@._V1_UY98_CR1,0,67,98_AL_.jpg",Les triplettes de Belleville,2003,PG-13,80 min,"Animation, Comedy, Drama",7.8,"When her grandson is kidnapped during the Tour de France, Madame Souza and her beloved pooch Bruno team up with the Belleville Sisters--an aged song-and-dance team from the days of Fred Astaire--to rescue him.",91,Sylvain Chomet,Michèle Caucheteux,Jean-Claude Donda,Michel Robin,Monica Viegas,50622,"7,002,255" "https://m.media-amazon.com/images/M/MV5BMTI1NDA4NTMyN15BMl5BanBnXkFtZTYwNTA2ODc5._V1_UY98_CR1,0,67,98_AL_.jpg",Gongdong gyeongbi guyeok JSA,2000,,110 min,"Action, Drama, Thriller",7.8,"After a shooting incident at the North/South Korean border/DMZ leaves 2 North Korean soldiers dead, a neutral Swiss/Swedish team investigates, what actually happened.",58,Chan-wook Park,Lee Yeong-ae,Lee Byung-Hun,Kang-ho Song,Kim Tae-Woo,26518, "https://m.media-amazon.com/images/M/MV5BMDM0ZWRjZDgtZWI0MS00ZTIzLTg4MWYtZjU5MDEyMDU0ODBjXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",The Count of Monte Cristo,2002,PG-13,131 min,"Action, Adventure, Drama",7.8,"A young man, falsely imprisoned by his jealous ""friend"", escapes and uses a hidden treasure to exact his revenge.",61,Kevin Reynolds,Jim Caviezel,Guy Pearce,Christopher Adamson,JB Blanc,129022,"54,234,062" "https://m.media-amazon.com/images/M/MV5BMWM0ZjY5ZjctODNkZi00Nzk0LWE1ODUtNGM4ZDUyMzUwMGYwXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Waking Life,2001,R,99 min,"Animation, Drama, Fantasy",7.8,A man shuffles through a dream meeting various people and discussing the meanings and purposes of the universe.,83,Richard Linklater,Ethan Hawke,Trevor Jack Brooks,Lorelei Linklater,Wiley Wiggins,60684,"2,892,011" "https://m.media-amazon.com/images/M/MV5BYThkMzgxNjEtMzFiOC00MTI0LWI5MDItNDVmYjA4NzY5MDQ2L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Remember the Titans,2000,U,113 min,"Biography, Drama, Sport",7.8,The true story of a newly appointed African-American coach and his high school team on their first season as a racially integrated unit.,48,Boaz Yakin,Denzel Washington,Will Patton,Wood Harris,Ryan Hurst,198089,"115,654,751" "https://m.media-amazon.com/images/M/MV5BNDdhMzMxOTctNDMyNS00NTZmLTljNWEtNTc4MDBmZTYxY2NmXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Wo hu cang long,2000,UA,120 min,"Action, Adventure, Fantasy",7.8,A young Chinese warrior steals a sword from a famed swordsman and then escapes into a world of romantic adventure with a mysterious man in the frontier of the nation.,94,Ang Lee,Yun-Fat Chow,Michelle Yeoh,Ziyi Zhang,Chen Chang,253228,"128,078,872" "https://m.media-amazon.com/images/M/MV5BZTk2ZTMzMmUtZjUyNi00YzMyLWE3NTAtNDNjNzU3MGQ1YTFjXkEyXkFqcGdeQXVyMTA0MjU0Ng@@._V1_UY98_CR3,0,67,98_AL_.jpg",Todo sobre mi madre,1999,R,101 min,Drama,7.8,"Young Esteban wants to become a writer and also to discover the identity of his second mother, a trans woman, carefully concealed by his mother Manuela.",87,Pedro Almodóvar,Cecilia Roth,Marisa Paredes,Candela Peña,Antonia San Juan,89058,"8,264,530" "https://m.media-amazon.com/images/M/MV5BN2Y5ZTU4YjctMDRmMC00MTg4LWE1M2MtMjk4MzVmOTE4YjkzXkEyXkFqcGdeQXVyNTc1NTQxODI@._V1_UX67_CR0,0,67,98_AL_.jpg",Cast Away,2000,UA,143 min,"Adventure, Drama, Romance",7.8,A FedEx executive undergoes a physical and emotional transformation after crash landing on a deserted island.,73,Robert Zemeckis,Tom Hanks,Helen Hunt,Paul Sanchez,Lari White,524235,"233,632,142" "https://m.media-amazon.com/images/M/MV5BYzVmMTdjOTYtOTJkYS00ZTg2LWExNTgtNzA1N2Y0MDgwYWFhXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",The Boondock Saints,1999,R,108 min,"Action, Crime, Thriller",7.8,Two Irish Catholic brothers become vigilantes and wipe out Boston's criminal underworld in the name of God.,44,Troy Duffy,Willem Dafoe,Sean Patrick Flanery,Norman Reedus,David Della Rocco,227143,"25,812" "https://m.media-amazon.com/images/M/MV5BODg0YjAzNDQtOGFkMi00Yzk2LTg1NzYtYTNjY2UwZTM2ZDdkL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UY98_CR0,0,67,98_AL_.jpg",The Insider,1999,UA,157 min,"Biography, Drama, Thriller",7.8,A research chemist comes under personal and professional attack when he decides to appear in a 60 Minutes exposé on Big Tobacco.,84,Michael Mann,Russell Crowe,Al Pacino,Christopher Plummer,Diane Venora,159886,"28,965,197" "https://m.media-amazon.com/images/M/MV5BZmIzMjE0M2YtNzliZi00YWNmLTgyNDItZDhjNWVhY2Q2ODk0XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",October Sky,1999,PG,108 min,"Biography, Drama, Family",7.8,"The true story of Homer Hickam, a coal miner's son who was inspired by the first Sputnik launch to take up rocketry against his father's wishes.",71,Joe Johnston,Jake Gyllenhaal,Chris Cooper,Laura Dern,Chris Owen,82855,"32,481,825" "https://m.media-amazon.com/images/M/MV5BOGZhM2FhNTItODAzNi00YjA0LWEyN2UtNjJlYWQzYzU1MDg5L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Shrek,2001,U,90 min,"Animation, Adventure, Comedy",7.8,"A mean lord exiles fairytale creatures to the swamp of a grumpy ogre, who must go on a quest and rescue a princess for the lord in order to get his land back.",84,Andrew Adamson,Vicky Jenson,Mike Myers,Eddie Murphy,Cameron Diaz,613941,"267,665,011" "https://m.media-amazon.com/images/M/MV5BMDdmZGU3NDQtY2E5My00ZTliLWIzOTUtMTY4ZGI1YjdiNjk3XkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UX67_CR0,0,67,98_AL_.jpg",Titanic,1997,UA,194 min,"Drama, Romance",7.8,"A seventeen-year-old aristocrat falls in love with a kind but poor artist aboard the luxurious, ill-fated R.M.S. Titanic.",75,James Cameron,Leonardo DiCaprio,Kate Winslet,Billy Zane,Kathy Bates,1046089,"659,325,379" "https://m.media-amazon.com/images/M/MV5BODk4MzE5NjgtN2ZhOS00YTdkLTg0YzktMmE1MTkxZmMyMWI2L2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Hana-bi,1997,,103 min,"Crime, Drama, Romance",7.8,"Nishi leaves the police in the face of harrowing personal and professional difficulties. Spiraling into depression, he makes questionable decisions.",,Takeshi Kitano,Takeshi Kitano,Kayoko Kishimoto,Ren Osugi,Susumu Terajima,27712,"233,986" "https://m.media-amazon.com/images/M/MV5BODI3ZTc5NjktOGMyOC00NjYzLTgwZDYtYmQ4NDc1MmJjMjRlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Gattaca,1997,UA,106 min,"Drama, Sci-Fi, Thriller",7.8,A genetically inferior man assumes the identity of a superior one in order to pursue his lifelong dream of space travel.,64,Andrew Niccol,Ethan Hawke,Uma Thurman,Jude Law,Gore Vidal,280845,"12,339,633" "https://m.media-amazon.com/images/M/MV5BZGVmMDNmYmEtNGQ2Mi00Y2ZhLThhZTYtYjE5YmQzMjZiZGMxXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_UY98_CR1,0,67,98_AL_.jpg",The Game,1997,UA,129 min,"Action, Drama, Mystery",7.8,"After a wealthy banker is given an opportunity to participate in a mysterious game, his life is turned upside down when he becomes unable to distinguish between the game and reality.",61,David Fincher,Michael Douglas,Deborah Kara Unger,Sean Penn,James Rebhorn,345096,"48,323,648" "https://m.media-amazon.com/images/M/MV5BNDYwZTU2MzktNWYxMS00NTYzLTgzOWEtMTRiYjc5NGY2Nzg1XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Breaking the Waves,1996,R,159 min,Drama,7.8,"Oilman Jan is paralyzed in an accident. His wife, who prayed for his return, feels guilty; even more, when Jan urges her to have sex with another.",76,Lars von Trier,Emily Watson,Stellan Skarsgård,Katrin Cartlidge,Jean-Marc Barr,62428,"4,040,691" "https://m.media-amazon.com/images/M/MV5BNTA5ZjdjNWUtZGUwNy00N2RhLWJiZmItYzFhYjU1NmYxNjY4XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Ed Wood,1994,U,127 min,"Biography, Comedy, Drama",7.8,"Ambitious but troubled movie director Edward D. Wood Jr. tries his best to fulfill his dreams, despite his lack of talent.",70,Tim Burton,Johnny Depp,Martin Landau,Sarah Jessica Parker,Patricia Arquette,164937,"5,887,457" "https://m.media-amazon.com/images/M/MV5BY2EyZDlhNjItODYzNi00Mzc3LWJjOWUtMTViODU5MTExZWMyL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",What's Eating Gilbert Grape,1993,U,118 min,Drama,7.8,A young man in a small Midwestern town struggles to care for his mentally-disabled younger brother and morbidly obese mother while attempting to pursue his own happiness.,73,Lasse Hallström,Johnny Depp,Leonardo DiCaprio,Juliette Lewis,Mary Steenburgen,215034,"9,170,214" "https://m.media-amazon.com/images/M/MV5BODRkYzA4MGItODE2MC00ZjkwLWI2NDEtYzU1NzFiZGU1YzA0XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Tombstone,1993,R,130 min,"Action, Biography, Drama",7.8,"A successful lawman's plans to retire anonymously in Tombstone, Arizona are disrupted by the kind of outlaws he was famous for eliminating.",50,George P. Cosmatos,Kevin Jarre,Kurt Russell,Val Kilmer,Sam Elliott,126871,"56,505,065" "https://m.media-amazon.com/images/M/MV5BODllYjM1ODItYjBmOC00MzkwLWJmM2YtMjMyZDU3MGJhNjc4L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",The Sandlot,1993,U,101 min,"Comedy, Drama, Family",7.8,"In the summer of 1962, a new kid in town is taken under the wing of a young baseball prodigy and his rowdy team, resulting in many adventures.",55,David Mickey Evans,Tom Guiry,Mike Vitar,Art LaFleur,Patrick Renna,78963,"32,416,586" "https://m.media-amazon.com/images/M/MV5BNDYwOThlMDAtYWUwMS00MjY5LTliMGUtZWFiYTA5MjYwZDAyXkEyXkFqcGdeQXVyNjY1NTQ0NDg@._V1_UX67_CR0,0,67,98_AL_.jpg",The Remains of the Day,1993,U,134 min,"Drama, Romance",7.8,A butler who sacrificed body and soul to service in the years leading up to World War II realizes too late how misguided his loyalty was to his lordly employer.,84,James Ivory,Anthony Hopkins,Emma Thompson,John Haycraft,Christopher Reeve,66065,"22,954,968" "https://m.media-amazon.com/images/M/MV5BMjA3Y2I4NjAtMDQyZS00ZGJhLWEwMzgtODBiNzE5Zjc1Nzk1L2ltYWdlXkEyXkFqcGdeQXVyNTc2MDU0NDE@._V1_UX67_CR0,0,67,98_AL_.jpg",Naked,1993,,132 min,"Comedy, Drama",7.8,"Parallel tales of two sexually obsessed men, one hurting and annoying women physically and mentally, one wandering around the city talking to strangers and experiencing dimensions of life.",84,Mike Leigh,David Thewlis,Lesley Sharp,Katrin Cartlidge,Greg Cruttwell,34635,"1,769,305" "https://m.media-amazon.com/images/M/MV5BYmFmOGZjYTItYjY1ZS00OWRiLTk0NDgtMjQ5MzBkYWE2YWE0XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",The Fugitive,1993,U,130 min,"Action, Crime, Drama",7.8,"Dr. Richard Kimble, unjustly accused of murdering his wife, must find the real killer while being the target of a nationwide manhunt led by a seasoned U.S. Marshal.",87,Andrew Davis,Harrison Ford,Tommy Lee Jones,Sela Ward,Julianne Moore,267684,"183,875,760" "https://m.media-amazon.com/images/M/MV5BMTczOTczNjE3Ml5BMl5BanBnXkFtZTgwODEzMzg5MTI@._V1_UX67_CR0,0,67,98_AL_.jpg",A Bronx Tale,1993,R,121 min,"Crime, Drama, Romance",7.8,A father becomes worried when a local gangster befriends his son in the Bronx in the 1960s.,80,Robert De Niro,Robert De Niro,Chazz Palminteri,Lillo Brancato,Francis Capra,128171,"17,266,971" "https://m.media-amazon.com/images/M/MV5BYTRiMWM3MGItNjAxZC00M2E3LThhODgtM2QwOGNmZGU4OWZhXkEyXkFqcGdeQXVyNjExODE1MDc@._V1_UX67_CR0,0,67,98_AL_.jpg",Batman: Mask of the Phantasm,1993,PG,76 min,"Animation, Action, Crime",7.8,Batman is wrongly implicated in a series of murders of mob bosses actually done by a new vigilante assassin.,,Kevin Altieri,Boyd Kirkland,Frank Paur,Dan Riba,Eric Radomski,43690,"5,617,391" "https://m.media-amazon.com/images/M/MV5BOTIzZGU4ZWMtYmNjMy00NzU0LTljMGYtZmVkMDYwN2U2MzYwL2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Lat sau san taam,1992,R,128 min,"Action, Crime, Thriller",7.8,A tough-as-nails cop teams up with an undercover agent to shut down a sinister mobster and his crew.,,John Woo,Yun-Fat Chow,Tony Chiu-Wai Leung,Teresa Mo,Philip Chan,46700, "https://m.media-amazon.com/images/M/MV5BOGNmMjBmZWEtOWYwZC00NGIzLTg0YWItMzkzMWMwOTU4YTViXkEyXkFqcGdeQXVyNzc5MjA3OA@@._V1_UX67_CR0,0,67,98_AL_.jpg",Night on Earth,1991,R,129 min,"Comedy, Drama",7.8,An anthology of 5 different cab drivers in 5 American and European cities and their remarkable fares on the same eventful night.,68,Jim Jarmusch,Winona Ryder,Gena Rowlands,Lisanne Falk,Alan Randolph Scott,55362,"2,015,810" "https://m.media-amazon.com/images/M/MV5BYmE0ZGRiMDgtOTU0ZS00YWUwLTk5YWQtMzhiZGVhNzViMGZiXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",La double vie de Véronique,1991,R,98 min,"Drama, Fantasy, Music",7.8,"Two parallel stories about two identical women; one living in Poland, the other in France. They don't know each other, but their lives are nevertheless profoundly connected.",86,Krzysztof Kieslowski,Irène Jacob,Wladyslaw Kowalski,Halina Gryglaszewska,Kalina Jedrusik,42376,"1,999,955" "https://m.media-amazon.com/images/M/MV5BZmRjNDI5NTgtOTIwMC00MzJhLWI4ZTYtMmU0ZTE3ZmRkZDNhXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Boyz n the Hood,1991,A,112 min,"Crime, Drama",7.8,"Follows the lives of three young males living in the Crenshaw ghetto of Los Angeles, dissecting questions of race, relationships, violence, and future prospects.",76,John Singleton,Cuba Gooding Jr.,Laurence Fishburne,Hudhail Al-Amir,Lloyd Avery II,126082,"57,504,069" "https://m.media-amazon.com/images/M/MV5BNzY0ODQ3MTMxN15BMl5BanBnXkFtZTgwMDkwNTg4NjE@._V1_UX67_CR0,0,67,98_AL_.jpg",Misery,1990,R,107 min,"Drama, Thriller",7.8,"After a famous author is rescued from a car crash by a fan of his novels, he comes to realize that the care he is receiving is only the beginning of a nightmare of captivity and abuse.",75,Rob Reiner,James Caan,Kathy Bates,Richard Farnsworth,Frances Sternhagen,184740,"61,276,872" "https://m.media-amazon.com/images/M/MV5BMjI5NjEzMDYyMl5BMl5BanBnXkFtZTgwNjgwNTg4NjE@._V1_UY98_CR3,0,67,98_AL_.jpg",Awakenings,1990,U,121 min,"Biography, Drama",7.8,"The victims of an encephalitis epidemic many years ago have been catatonic ever since, but now a new drug offers the prospect of reviving them.",74,Penny Marshall,Robert De Niro,Robin Williams,Julie Kavner,Ruth Nelson,125276,"52,096,475" "https://m.media-amazon.com/images/M/MV5BOTc0ODM1Njk1NF5BMl5BanBnXkFtZTcwMDI5OTEyNw@@._V1_UY98_CR1,0,67,98_AL_.jpg",Majo no takkyûbin,1989,U,103 min,"Animation, Adventure, Drama",7.8,"A young witch, on her mandatory year of independent life, finds fitting into a new community difficult while she supports herself by running an air courier service.",83,Hayao Miyazaki,Kirsten Dunst,Minami Takayama,Rei Sakuma,Kappei Yamaguchi,124193, "https://m.media-amazon.com/images/M/MV5BODhlNjA5MDEtZDVhNS00ZmM3LTg1YzAtZGRjNjhjNTAzNzVkXkEyXkFqcGdeQXVyNjUwMzI2NzU@._V1_UY98_CR0,0,67,98_AL_.jpg",Glory,1989,R,122 min,"Biography, Drama, History",7.8,"Robert Gould Shaw leads the U.S. Civil War's first all-black volunteer company, fighting prejudices from both his own Union Army, and the Confederates.",78,Edward Zwick,Matthew Broderick,Denzel Washington,Cary Elwes,Morgan Freeman,122779,"26,830,000" "https://m.media-amazon.com/images/M/MV5BMDQyMDVhZjItMGI0Mi00MDQ1LTk3NmQtZmRjZGQ5ZTQ2ZDU5XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Dip huet seung hung,1989,R,111 min,"Action, Crime, Drama",7.8,A disillusioned assassin accepts one last hit in hopes of using his earnings to restore vision to a singer he accidentally blinded.,82,John Woo,Yun-Fat Chow,Danny Lee,Sally Yeh,Kong Chu,45624, "https://m.media-amazon.com/images/M/MV5BZTMxMGM5MjItNDJhNy00MWI2LWJlZWMtOWFhMjI5ZTQwMWM3XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Back to the Future Part II,1989,U,108 min,"Adventure, Comedy, Sci-Fi",7.8,"After visiting 2015, Marty McFly must repeat his visit to 1955 to prevent disastrous changes to 1985...without interfering with his first trip.",57,Robert Zemeckis,Michael J. Fox,Christopher Lloyd,Lea Thompson,Thomas F. Wilson,481918,"118,500,000" "https://m.media-amazon.com/images/M/MV5BZTFjNjU4OTktYzljMS00MmFlLWI3NGEtNjNhMTYwYzUyZDgyL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Mississippi Burning,1988,A,128 min,"Crime, Drama, History",7.8,Two F.B.I. Agents with wildly different styles arrive in Mississippi to investigate the disappearance of some civil rights activists.,65,Alan Parker,Gene Hackman,Willem Dafoe,Frances McDormand,Brad Dourif,88214,"34,603,943" "https://m.media-amazon.com/images/M/MV5BY2QwYmFmZTEtNzY2Mi00ZWMyLWEwY2YtMGIyNGZjMWExOWEyXkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_UX67_CR0,0,67,98_AL_.jpg",Predator,1987,A,107 min,"Action, Adventure, Sci-Fi",7.8,A team of commandos on a mission in a Central American jungle find themselves hunted by an extraterrestrial warrior.,45,John McTiernan,Arnold Schwarzenegger,Carl Weathers,Kevin Peter Hall,Elpidia Carrillo,371387,"59,735,548" "https://m.media-amazon.com/images/M/MV5BMWY3ODZlOGMtNzJmOS00ZTNjLWI3ZWEtZTJhZTk5NDZjYWRjXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Evil Dead II,1987,A,84 min,"Action, Comedy, Fantasy",7.8,The lone survivor of an onslaught of flesh-possessing spirits holes up in a cabin with a group of strangers while the demons continue their attack.,72,Sam Raimi,Bruce Campbell,Sarah Berry,Dan Hicks,Kassie Wesley DePaiva,148359,"5,923,044" "https://m.media-amazon.com/images/M/MV5BMDA0NjZhZWUtNmI2NC00MmFjLTgwZDYtYzVjZmNhMDVmOTBkXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Ferris Bueller's Day Off,1986,U,103 min,Comedy,7.8,"A high school wise guy is determined to have a day off from school, despite what the Principal thinks of that.",61,John Hughes,Matthew Broderick,Alan Ruck,Mia Sara,Jeffrey Jones,321382,"70,136,369" "https://m.media-amazon.com/images/M/MV5BM2ZmNDJiZTUtYjg5Zi00M2I3LTliZjAtNzQ4NTlkYTAzYTAxXkEyXkFqcGdeQXVyNTkyMDc0MjI@._V1_UX67_CR0,0,67,98_AL_.jpg",Down by Law,1986,R,107 min,"Comedy, Crime, Drama",7.8,"Two men are framed and sent to jail, where they meet a murderer who helps them escape and leave the state.",75,Jim Jarmusch,Tom Waits,John Lurie,Roberto Benigni,Nicoletta Braschi,47834,"1,436,000" "https://m.media-amazon.com/images/M/MV5BODRlMjRkZGEtZWM2Zi00ZjYxLWE0MWUtMmM1YWM2NzZlOTE1XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",The Goonies,1985,U,114 min,"Adventure, Comedy, Family",7.8,A group of young misfits called The Goonies discover an ancient map and set out on an adventure to find a legendary pirate's long-lost treasure.,62,Richard Donner,Sean Astin,Josh Brolin,Jeff Cohen,Corey Feldman,244430,"61,503,218" "https://m.media-amazon.com/images/M/MV5BZDRkOWQ5NGUtYTVmOS00ZjNhLWEwODgtOGI2MmUxNTBkMjU0XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_UX67_CR0,0,67,98_AL_.jpg",The Color Purple,1985,U,154 min,Drama,7.8,A black Southern woman struggles to find her identity after suffering abuse from her father and others over four decades.,78,Steven Spielberg,Danny Glover,Whoopi Goldberg,Oprah Winfrey,Margaret Avery,78321,"98,467,863" "https://m.media-amazon.com/images/M/MV5BOTM5N2ZmZTMtNjlmOS00YzlkLTk3YjEtNTU1ZmQ5OTdhODZhXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",The Breakfast Club,1985,UA,97 min,"Comedy, Drama",7.8,Five high school students meet in Saturday detention and discover how they have a lot more in common than they thought.,66,John Hughes,Emilio Estevez,Judd Nelson,Molly Ringwald,Ally Sheedy,357026,"45,875,171" "https://m.media-amazon.com/images/M/MV5BMGI0NzI5YjAtNTg0MS00NDA2LWE5ZWItODRmOTAxOTAxYjg2L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNTI4MjkwNjA@._V1_UX67_CR0,0,67,98_AL_.jpg",The Killing Fields,1984,UA,141 min,"Biography, Drama, History",7.8,"A journalist is trapped in Cambodia during tyrant Pol Pot's bloody 'Year Zero' cleansing campaign, which claimed the lives of two million 'undesirable' civilians.",76,Roland Joffé,Sam Waterston,Haing S. Ngor,John Malkovich,Julian Sands,51585,"34,700,291" "https://m.media-amazon.com/images/M/MV5BMTkxMjYyNzgwMl5BMl5BanBnXkFtZTgwMTE3MjYyMTE@._V1_UX67_CR0,0,67,98_AL_.jpg",Ghostbusters,1984,UA,105 min,"Action, Comedy, Fantasy",7.8,Three former parapsychology professors set up shop as a unique ghost removal service.,71,Ivan Reitman,Bill Murray,Dan Aykroyd,Sigourney Weaver,Harold Ramis,355413,"238,632,124" "https://m.media-amazon.com/images/M/MV5BOTUwMDA3MTYtZjhjMi00ODFmLTg5ZTAtYzgwN2NlODgzMmUwXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",The Right Stuff,1983,PG,193 min,"Adventure, Biography, Drama",7.8,"The story of the original Mercury 7 astronauts and their macho, seat-of-the-pants approach to the space program.",91,Philip Kaufman,Sam Shepard,Scott Glenn,Ed Harris,Dennis Quaid,56235,"21,500,000" "https://m.media-amazon.com/images/M/MV5BMTViNjlkYjgtMmE3Zi00ZGVkLTkyMjMtNzc3YzAwNzNiODQ1XkEyXkFqcGdeQXVyMjA0MzYwMDY@._V1_UX67_CR0,0,67,98_AL_.jpg",The King of Comedy,1982,U,109 min,"Comedy, Crime, Drama",7.8,"Rupert Pupkin is a passionate yet unsuccessful comic who craves nothing more than to be in the spotlight and to achieve this, he stalks and kidnaps his idol to take the spotlight for himself.",73,Martin Scorsese,Robert De Niro,Jerry Lewis,Diahnne Abbott,Sandra Bernhard,88511,"2,500,000" "https://m.media-amazon.com/images/M/MV5BMTQ2ODFlMDAtNzdhOC00ZDYzLWE3YTMtNDU4ZGFmZmJmYTczXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",E.T. the Extra-Terrestrial,1982,U,115 min,"Family, Sci-Fi",7.8,A troubled child summons the courage to help a friendly alien escape Earth and return to his home world.,91,Steven Spielberg,Henry Thomas,Drew Barrymore,Peter Coyote,Dee Wallace,372490,"435,110,554" "https://m.media-amazon.com/images/M/MV5BNDM3YjNlYmMtOGY3NS00MmRjLWIyY2UtNDA0MWM3OTNlZTY2XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Kramer vs. Kramer,1979,A,105 min,Drama,7.8,"Ted Kramer's wife leaves him, allowing for a lost bond to be rediscovered between Ted and his son, Billy. But a heated custody battle ensues over the divorced couple's son, deepening the wounds left by the separation.",77,Robert Benton,Dustin Hoffman,Meryl Streep,Jane Alexander,Justin Henry,133351,"106,260,000" "https://m.media-amazon.com/images/M/MV5BZjMyZmU4OGYtNjBiYS00YTIxLWJjMDUtZjczZmQwMTM4YjQxXkEyXkFqcGdeQXVyNTI4MjkwNjA@._V1_UX67_CR0,0,67,98_AL_.jpg",Days of Heaven,1978,PG,94 min,"Drama, Romance",7.8,A hot-tempered farm laborer convinces the woman he loves to marry their rich but dying boss so that they can have a claim to his fortune.,93,Terrence Malick,Richard Gere,Brooke Adams,Sam Shepard,Linda Manz,52852, "https://m.media-amazon.com/images/M/MV5BMjIxNDYxMTk2MF5BMl5BanBnXkFtZTgwMjQxNjU3MTE@._V1_UY98_CR0,0,67,98_AL_.jpg",The Outlaw Josey Wales,1976,A,135 min,Western,7.8,Missouri farmer Josey Wales joins a Confederate guerrilla unit and winds up on the run from the Union soldiers who murdered his family.,69,Clint Eastwood,Clint Eastwood,Sondra Locke,Chief Dan George,Bill McKinney,65659,"31,800,000" "https://m.media-amazon.com/images/M/MV5BZWQzYjBjZmQtZDFiOS00ZDQ1LWI4MDAtMDk1NGE1NDBhYjNhL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",The Man Who Would Be King,1975,PG,129 min,"Adventure, History, War",7.8,"Two British former soldiers decide to set themselves up as Kings in Kafiristan, a land where no white man has set foot since Alexander the Great.",91,John Huston,Sean Connery,Michael Caine,Christopher Plummer,Saeed Jaffrey,44917, "https://m.media-amazon.com/images/M/MV5BNzZlMThlYzktMDlmZC00YTI1LThlNzktZWU0MTY4ODc2ZWY4XkEyXkFqcGdeQXVyNTA1NjYyMDk@._V1_UX67_CR0,0,67,98_AL_.jpg",The Conversation,1974,U,113 min,"Drama, Mystery, Thriller",7.8,"A paranoid, secretive surveillance expert has a crisis of conscience when he suspects that the couple he is spying on will be murdered.",85,Francis Ford Coppola,Gene Hackman,John Cazale,Allen Garfield,Frederic Forrest,98611,"4,420,000" "https://m.media-amazon.com/images/M/MV5BYjhhMDFlZDctYzg1Mi00ZmZiLTgyNTgtM2NkMjRkNzYwZmQ0XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",La planète sauvage,1973,U,72 min,"Animation, Sci-Fi",7.8,"On a faraway planet where blue giants rule, oppressed humanoids rebel against their machine-like leaders.",73,René Laloux,Barry Bostwick,Jennifer Drake,Eric Baugin,Jean Topart,25229,"193,817" "https://m.media-amazon.com/images/M/MV5BNjZmMWE4NzgtZjc5OS00NTBmLThlY2MtM2MzNTA5NTZiNTFjXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UY98_CR0,0,67,98_AL_.jpg",The Day of the Jackal,1973,A,143 min,"Crime, Drama, Thriller",7.8,"A professional assassin codenamed ""Jackal"" plots to kill Charles de Gaulle, the President of France.",80,Fred Zinnemann,Edward Fox,Terence Alexander,Michel Auclair,Alan Badel,37445,"16,056,255" "https://m.media-amazon.com/images/M/MV5BMDcxNjhiOTEtMzQ0YS00OTBhLTkxM2QtN2UyZDMzNzIzNWFlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UY98_CR1,0,67,98_AL_.jpg",Badlands,1973,PG,94 min,"Action, Crime, Drama",7.8,An impressionable teenage girl from a dead-end town and her older greaser boyfriend embark on a killing spree in the South Dakota badlands.,93,Terrence Malick,Martin Sheen,Sissy Spacek,Warren Oates,Ramon Bieri,66009, "https://m.media-amazon.com/images/M/MV5BNTEyMzc0Mjk5MV5BMl5BanBnXkFtZTgwMjI2NDIwMTE@._V1_UX67_CR0,0,67,98_AL_.jpg",Cabaret,1972,A,124 min,"Drama, Music, Musical",7.8,A female girlie club entertainer in Weimar Republic era Berlin romances two men while the Nazi Party rises to power around them.,80,Bob Fosse,Liza Minnelli,Michael York,Helmut Griem,Joel Grey,48334,"42,765,000" "https://m.media-amazon.com/images/M/MV5BZTllNDU0ZTItYTYxMC00OTI4LThlNDAtZjNiNzdhMWZiYjNmXkEyXkFqcGdeQXVyNzY1NDgwNjQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Willy Wonka & the Chocolate Factory,1971,U,100 min,"Family, Fantasy, Musical",7.8,A poor but hopeful boy seeks one of the five coveted golden tickets that will send him on a tour of Willy Wonka's mysterious chocolate factory.,67,Mel Stuart,Gene Wilder,Jack Albertson,Peter Ostrum,Roy Kinnear,178731,"4,000,000" "https://m.media-amazon.com/images/M/MV5BNTgwZmIzMmYtZjE3Yy00NzgzLTgxNmUtNjlmZDlkMzlhOTJkXkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_UX67_CR0,0,67,98_AL_.jpg",Midnight Cowboy,1969,A,113 min,Drama,7.8,"A naive hustler travels from Texas to New York City to seek personal fortune, finding a new friend in the process.",79,John Schlesinger,Dustin Hoffman,Jon Voight,Sylvia Miles,John McGiver,101124,"44,785,053" "https://m.media-amazon.com/images/M/MV5BMTQyNTAzOTI3NF5BMl5BanBnXkFtZTcwNTM0Mjg0Mg@@._V1_UX67_CR0,0,67,98_AL_.jpg",Wait Until Dark,1967,,108 min,Thriller,7.8,A recently blinded woman is terrorized by a trio of thugs while they search for a heroin-stuffed doll they believe is in her apartment.,81,Terence Young,Audrey Hepburn,Alan Arkin,Richard Crenna,Efrem Zimbalist Jr.,27733,"17,550,741" "https://m.media-amazon.com/images/M/MV5BZTVmMTk2NjUtNjVjNC00OTcwLWE4OWEtNzA4Mjk1ZmIwNDExXkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_UX67_CR0,0,67,98_AL_.jpg",Guess Who's Coming to Dinner,1967,,108 min,"Comedy, Drama",7.8,A couple's attitudes are challenged when their daughter introduces them to her African-American fiancé.,63,Stanley Kramer,Spencer Tracy,Sidney Poitier,Katharine Hepburn,Katharine Houghton,39642,"56,700,000" "https://m.media-amazon.com/images/M/MV5BOTViZmMwOGEtYzc4Yy00ZGQ1LWFkZDQtMDljNGZlMjAxMjhiXkEyXkFqcGdeQXVyNzM0MTUwNTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Bonnie and Clyde,1967,A,111 min,"Action, Biography, Crime",7.8,"Bored waitress Bonnie Parker falls in love with an ex-con named Clyde Barrow and together they start a violent crime spree through the country, stealing cars and robbing banks.",86,Arthur Penn,Warren Beatty,Faye Dunaway,Michael J. Pollard,Gene Hackman,102415, "https://m.media-amazon.com/images/M/MV5BNGM0ZTU3NmItZmRmMy00YWNjLWEzMWItYzg3MzcwZmM5NjdiXkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_UY98_CR2,0,67,98_AL_.jpg",My Fair Lady,1964,U,170 min,"Drama, Family, Musical",7.8,Snobbish phonetics Professor Henry Higgins agrees to a wager that he can make flower girl Eliza Doolittle presentable in high society.,95,George Cukor,Audrey Hepburn,Rex Harrison,Stanley Holloway,Wilfrid Hyde-White,86525,"72,000,000" "https://m.media-amazon.com/images/M/MV5BNmJkODczNjItNDI5Yy00MGI1LTkyOWItZDNmNjM4ZGI1ZDVlL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Mary Poppins,1964,U,139 min,"Comedy, Family, Fantasy",7.8,"In turn of the century London, a magical nanny employs music and adventure to help two neglected children become closer to their father.",88,Robert Stevenson,Julie Andrews,Dick Van Dyke,David Tomlinson,Glynis Johns,158029,"102,272,727" "https://m.media-amazon.com/images/M/MV5BZTM1ZjQ2YTktNDM2MS00NGY2LTkzNzItZTU4ODg1ODNkMWYxL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",The Longest Day,1962,G,178 min,"Action, Drama, History",7.8,"The events of D-Day, told on a grand scale from both the Allied and German points of view.",75,Ken Annakin,Andrew Marton,Gerd Oswald,Bernhard Wicki,Darryl F. Zanuck,52141,"39,100,000" "https://m.media-amazon.com/images/M/MV5BZTM1MTRiNDctMTFiMC00NGM1LTkyMWQtNTY1M2JjZDczOWQ3XkEyXkFqcGdeQXVyMDI3OTIzOA@@._V1_UY98_CR3,0,67,98_AL_.jpg",Jules et Jim,1962,,105 min,"Drama, Romance",7.8,Decades of a love triangle concerning two friends and an impulsive woman.,97,François Truffaut,Jeanne Moreau,Oskar Werner,Henri Serre,Vanna Urbino,37605, "https://m.media-amazon.com/images/M/MV5BNGQyNjBjNTUtNTM1OS00YzcyLWFhNTgtNTU0MDg3NzBlMDQzXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UY98_CR0,0,67,98_AL_.jpg",The Innocents,1961,A,100 min,Horror,7.8,A young governess for two children becomes convinced that the house and grounds are haunted.,88,Jack Clayton,Deborah Kerr,Peter Wyngarde,Megs Jenkins,Michael Redgrave,27007,"2,616,000" "https://m.media-amazon.com/images/M/MV5BNzk5MDk2MjktY2I3NS00ODZkLTk3OTktY2Q3ZDE2MmQ2M2ZmXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UY98_CR2,0,67,98_AL_.jpg",À bout de souffle,1960,U,90 min,"Crime, Drama",7.8,"A small-time thief steals a car and impulsively murders a motorcycle policeman. Wanted by the authorities, he reunites with a hip American journalism student and attempts to persuade her to run away with him to Italy.",,Jean-Luc Godard,Jean-Paul Belmondo,Jean Seberg,Daniel Boulanger,Henri-Jacques Huet,73251,"336,705" "https://m.media-amazon.com/images/M/MV5BNzNiOGJhMDUtZjNjMC00YmE5LTk3NjQtNGM4ZjAzOGJjZmRlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Red River,1948,Passed,133 min,"Action, Adventure, Drama",7.8,"Dunson leads a cattle drive, the culmination of over 14 years of work, to its destination in Missouri. But his tyrannical behavior along the way causes a mutiny, led by his adopted son.",,Howard Hawks,Arthur Rosson,John Wayne,Montgomery Clift,Joanne Dru,28167, "https://m.media-amazon.com/images/M/MV5BODI3YzNiZTUtYjEyZS00ODkwLWE2ZDUtNGJmMTNiYTc4ZTM4XkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Key Largo,1948,,100 min,"Action, Crime, Drama",7.8,"A man visits his war buddy's family hotel and finds a gangster running things. As a hurricane approaches, the two end up confronting each other.",,John Huston,Humphrey Bogart,Edward G. Robinson,Lauren Bacall,Lionel Barrymore,36995, "https://m.media-amazon.com/images/M/MV5BZGU2YmU0MWMtMzg5My00ZmY2LTljMDItMTg2YTI5Y2U2OTE3XkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UY98_CR0,0,67,98_AL_.jpg",To Have and Have Not,1944,PG,100 min,"Adventure, Comedy, Film-Noir",7.8,"During World War II, American expatriate Harry Morgan helps transport a French Resistance leader and his beautiful wife to Martinique while romancing a sensuous lounge singer.",,Howard Hawks,Humphrey Bogart,Lauren Bacall,Walter Brennan,Dolores Moran,31053, "https://m.media-amazon.com/images/M/MV5BM2I1YWM4NTYtYjA0Ny00ZDEwLTg3NTgtNzBjMzZhZTk1YTA1XkEyXkFqcGdeQXVyMTY5Nzc4MDY@._V1_UX67_CR0,0,67,98_AL_.jpg",Shadow of a Doubt,1943,PG,108 min,"Film-Noir, Thriller",7.8,"A young girl, overjoyed when her favorite uncle comes to visit the family, slowly begins to suspect that he is in fact the ""Merry Widow"" killer sought by the authorities.",94,Alfred Hitchcock,Teresa Wright,Joseph Cotten,Macdonald Carey,Henry Travers,59556, "https://m.media-amazon.com/images/M/MV5BOGQ4NDUyNWQtZTEyOC00OTMzLWFhYjAtNDNmYmQ2MWQyMTRmXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UX67_CR0,0,67,98_AL_.jpg",Stagecoach,1939,Passed,96 min,"Adventure, Drama, Western",7.8,A group of people traveling on a stagecoach find their journey complicated by the threat of Geronimo and learn something about each other in the process.,93,John Ford,John Wayne,Claire Trevor,Andy Devine,John Carradine,43621, "https://m.media-amazon.com/images/M/MV5BNjk3YzFjYTktOGY0ZS00Y2EwLTk2NTctYTI1Nzc2OWNiN2I4XkEyXkFqcGdeQXVyNzM0MTUwNTY@._V1_UX67_CR0,0,67,98_AL_.jpg",The Lady Vanishes,1938,,96 min,"Mystery, Thriller",7.8,"While travelling in continental Europe, a rich young playgirl realizes that an elderly lady seems to have disappeared from the train.",98,Alfred Hitchcock,Margaret Lockwood,Michael Redgrave,Paul Lukas,May Whitty,47400, "https://m.media-amazon.com/images/M/MV5BMmVkOTRiYmItZjE4NS00MWNjLWE0ZmMtYzg5YzFjMjMyY2RkXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Bringing Up Baby,1938,Passed,102 min,"Comedy, Family, Romance",7.8,"While trying to secure a $1 million donation for his museum, a befuddled paleontologist is pursued by a flighty and often irritating heiress and her pet leopard, Baby.",91,Howard Hawks,Katharine Hepburn,Cary Grant,Charles Ruggles,Walter Catlett,55163, "https://m.media-amazon.com/images/M/MV5BOTUzMzAzMzEzNV5BMl5BanBnXkFtZTgwOTg1NTAwMjE@._V1_UX67_CR0,0,67,98_AL_.jpg",Bride of Frankenstein,1935,,75 min,"Drama, Horror, Sci-Fi",7.8,"Mary Shelley reveals the main characters of her novel survived: Dr. Frankenstein, goaded by an even madder scientist, builds his monster a mate.",95,James Whale,Boris Karloff,Elsa Lanchester,Colin Clive,Valerie Hobson,43542,"4,360,000" "https://m.media-amazon.com/images/M/MV5BYmYxZGU2NWYtNzQxZS00NmEyLWIzN2YtMDk5MWM0ODc5ZTE4XkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UX67_CR0,0,67,98_AL_.jpg",Duck Soup,1933,,69 min,"Comedy, Musical, War",7.8,Rufus T. Firefly is named president/dictator of bankrupt Freedonia and declares war on neighboring Sylvania over the love of wealthy Mrs. Teasdale.,93,Leo McCarey,Groucho Marx,Harpo Marx,Chico Marx,Zeppo Marx,55581, "https://m.media-amazon.com/images/M/MV5BYmMxZTU2ZDUtM2Y1MS00ZWFmLWJlN2UtNzI0OTJiOTYzMTk3XkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UX67_CR0,0,67,98_AL_.jpg",Scarface: The Shame of the Nation,1932,PG,93 min,"Action, Crime, Drama",7.8,"An ambitious and nearly insane violent gangster climbs the ladder of success in the mob, but his weaknesses prove to be his downfall.",87,Howard Hawks,Richard Rosson,Paul Muni,Ann Dvorak,Karen Morley,25312, "https://m.media-amazon.com/images/M/MV5BMTQ0Njc1MjM0OF5BMl5BanBnXkFtZTgwNTY2NTUyMjE@._V1_UX67_CR0,0,67,98_AL_.jpg",Frankenstein,1931,Passed,70 min,"Drama, Horror, Sci-Fi",7.8,Dr. Frankenstein dares to tamper with life and death by creating a human monster out of lifeless body parts.,91,James Whale,Colin Clive,Mae Clarke,Boris Karloff,John Boles,65341, "https://m.media-amazon.com/images/M/MV5BMTU0OTc3ODk4Ml5BMl5BanBnXkFtZTgwMzM4NzI5NjM@._V1_UX67_CR0,0,67,98_AL_.jpg",Roma,2018,R,135 min,Drama,7.7,A year in the life of a middle-class family's maid in Mexico City in the early 1970s.,96,Alfonso Cuarón,Yalitza Aparicio,Marina de Tavira,Diego Cortina Autrey,Carlos Peralta,140375, "https://m.media-amazon.com/images/M/MV5BNjRhYzk2NDAtYzA1Mi00MmNmLWE1ZjQtMDBhZmUyMTdjZjBiXkEyXkFqcGdeQXVyNjk1Njg5NTA@._V1_UX67_CR0,0,67,98_AL_.jpg",God's Own Country,2017,,104 min,"Drama, Romance",7.7,"Spring. Yorkshire. Young farmer Johnny Saxby numbs his daily frustrations with binge drinking and casual sex, until the arrival of a Romanian migrant worker for lambing season ignites an intense relationship that sets Johnny on a new path.",85,Francis Lee,Josh O'Connor,Alec Secareanu,Gemma Jones,Ian Hart,25198,"335,609" "https://m.media-amazon.com/images/M/MV5BNjk1Njk3YjctMmMyYS00Y2I4LThhMzktN2U0MTMyZTFlYWQ5XkEyXkFqcGdeQXVyODM2ODEzMDA@._V1_UY98_CR15,0,67,98_AL_.jpg",Deadpool 2,2018,R,119 min,"Action, Adventure, Comedy",7.7,"Foul-mouthed mutant mercenary Wade Wilson (a.k.a. Deadpool), brings together a team of fellow mutant rogues to protect a young boy with supernatural abilities from the brutal, time-traveling cyborg Cable.",66,David Leitch,Ryan Reynolds,Josh Brolin,Morena Baccarin,Julian Dennison,478586,"324,591,735" "https://m.media-amazon.com/images/M/MV5BMTUyMjU1OTUwM15BMl5BanBnXkFtZTgwMDg1NDQ2MjI@._V1_UX67_CR0,0,67,98_AL_.jpg",Wind River,2017,R,107 min,"Crime, Drama, Mystery",7.7,A veteran hunter helps an FBI agent investigate the murder of a young woman on a Wyoming Native American reservation.,73,Taylor Sheridan,Kelsey Asbille,Jeremy Renner,Julia Jones,Teo Briones,205444,"33,800,859" "https://m.media-amazon.com/images/M/MV5BMjUxMDQwNjcyNl5BMl5BanBnXkFtZTgwNzcwMzc0MTI@._V1_UX67_CR0,0,67,98_AL_.jpg",Get Out,2017,R,104 min,"Horror, Mystery, Thriller",7.7,"A young African-American visits his white girlfriend's parents for the weekend, where his simmering uneasiness about their reception of him eventually reaches a boiling point.",85,Jordan Peele,Daniel Kaluuya,Allison Williams,Bradley Whitford,Catherine Keener,492851,"176,040,665" "https://m.media-amazon.com/images/M/MV5BNjRlZmM0ODktY2RjNS00ZDdjLWJhZGYtNDljNWZkMGM5MTg0XkEyXkFqcGdeQXVyNjAwMjI5MDk@._V1_UX67_CR0,0,67,98_AL_.jpg",Mission: Impossible - Fallout,2018,UA,147 min,"Action, Adventure, Thriller",7.7,"Ethan Hunt and his IMF team, along with some familiar allies, race against time after a mission gone wrong.",86,Christopher McQuarrie,Tom Cruise,Henry Cavill,Ving Rhames,Simon Pegg,291257,"220,159,104" "https://m.media-amazon.com/images/M/MV5BMjE0NDUyOTc2MV5BMl5BanBnXkFtZTgwODk2NzU3OTE@._V1_UX67_CR0,0,67,98_AL_.jpg",En man som heter Ove,2015,PG-13,116 min,"Comedy, Drama, Romance",7.7,"Ove, an ill-tempered, isolated retiree who spends his days enforcing block association rules and visiting his wife's grave, has finally given up on life just as an unlikely friendship develops with his boisterous new neighbors.",70,Hannes Holm,Rolf Lassgård,Bahar Pars,Filip Berg,Ida Engvoll,47444,"3,358,518" "https://m.media-amazon.com/images/M/MV5BMjAwNDA5NzEwM15BMl5BanBnXkFtZTgwMTA1MDUyNDE@._V1_UX67_CR0,0,67,98_AL_.jpg",What We Do in the Shadows,2014,R,86 min,"Comedy, Horror",7.7,"Viago, Deacon and Vladislav are vampires who are finding that modern life has them struggling with the mundane - like paying rent, keeping up with the chore wheel, trying to get into nightclubs and overcoming flatmate conflicts.",76,Jemaine Clement,Taika Waititi,Jemaine Clement,Taika Waititi,Cori Gonzalez-Macuer,157498,"3,333,000" "https://m.media-amazon.com/images/M/MV5BZTlmYTJmMWEtNDRhNy00ODc1LTg2OTMtMjk2ODJhNTA4YTE1XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY98_CR0,0,67,98_AL_.jpg",Omoide no Mânî,2014,U,103 min,"Animation, Drama, Family",7.7,"Due to 12 y.o. Anna's asthma, she's sent to stay with relatives of her guardian in the Japanese countryside. She likes to be alone, sketching. She befriends Marnie. Who is the mysterious, blonde Marnie.",72,James Simone,Hiromasa Yonebayashi,Sara Takatsuki,Kasumi Arimura,Nanako Matsushima,32798,"765,127" "https://m.media-amazon.com/images/M/MV5BMTAwMTU4MDA3NDNeQTJeQWpwZ15BbWU4MDk4NTMxNTIx._V1_UX67_CR0,0,67,98_AL_.jpg",The Theory of Everything,2014,U,123 min,"Biography, Drama, Romance",7.7,A look at the relationship between the famous physicist Stephen Hawking and his wife.,72,James Marsh,Eddie Redmayne,Felicity Jones,Tom Prior,Sophie Perry,404182,"35,893,537" "https://m.media-amazon.com/images/M/MV5BYTM3ZTllNzItNTNmOS00NzJiLTg1MWMtMjMxNDc0NmJhODU5XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UX67_CR0,0,67,98_AL_.jpg",Kingsman: The Secret Service,2014,A,129 min,"Action, Adventure, Comedy",7.7,"A spy organisation recruits a promising street kid into the agency's training program, while a global threat emerges from a twisted tech genius.",60,Matthew Vaughn,Colin Firth,Taron Egerton,Samuel L. Jackson,Michael Caine,590440,"128,261,724" "https://m.media-amazon.com/images/M/MV5BNTVkMTFiZWItOTFkOC00YTc3LWFhYzQtZTg3NzAxZjJlNTAyXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UX67_CR0,0,67,98_AL_.jpg",The Fault in Our Stars,2014,UA,126 min,"Drama, Romance",7.7,Two teenage cancer patients begin a life-affirming journey to visit a reclusive author in Amsterdam.,69,Josh Boone,Shailene Woodley,Ansel Elgort,Nat Wolff,Laura Dern,344312,"124,872,350" "https://m.media-amazon.com/images/M/MV5BNTA1NzUzNjY4MV5BMl5BanBnXkFtZTgwNDU0MDI0NTE@._V1_UX67_CR0,0,67,98_AL_.jpg",Me and Earl and the Dying Girl,2015,PG-13,105 min,"Comedy, Drama",7.7,"High schooler Greg, who spends most of his time making parodies of classic movies with his co-worker Earl, finds his outlook forever altered after befriending a classmate who has just been diagnosed with cancer.",74,Alfonso Gomez-Rejon,Thomas Mann,RJ Cyler,Olivia Cooke,Nick Offerman,123210,"6,743,776" "https://m.media-amazon.com/images/M/MV5BODAzNDMxMzAxOV5BMl5BanBnXkFtZTgwMDMxMjA4MjE@._V1_UX67_CR0,0,67,98_AL_.jpg",Birdman or (The Unexpected Virtue of Ignorance),2014,A,119 min,"Comedy, Drama",7.7,"A washed-up superhero actor attempts to revive his fading career by writing, directing, and starring in a Broadway production.",87,Alejandro G. Iñárritu,Michael Keaton,Zach Galifianakis,Edward Norton,Andrea Riseborough,580291,"42,340,598" "https://m.media-amazon.com/images/M/MV5BMTQ5NTg5ODk4OV5BMl5BanBnXkFtZTgwODc4MTMzMDE@._V1_UX67_CR0,0,67,98_AL_.jpg",La vie d'Adèle,2013,A,180 min,"Drama, Romance",7.7,"Adèle's life is changed when she meets Emma, a young woman with blue hair, who will allow her to discover desire and to assert herself as a woman and as an adult. In front of others, Adèle grows, seeks herself, loses herself, and ultimately finds herself through love and loss.",89,Abdellatif Kechiche,Léa Seydoux,Adèle Exarchopoulos,Salim Kechiouche,Aurélien Recoing,138741,"2,199,675" "https://m.media-amazon.com/images/M/MV5BMTgwNTAwMjEzMF5BMl5BanBnXkFtZTcwNzMzODY4OA@@._V1_UY98_CR3,0,67,98_AL_.jpg",Kai po che!,2013,U,130 min,"Drama, Sport",7.7,Three friends growing up in India at the turn of the millennium set out to open a training academy to produce the country's next cricket stars.,40,Abhishek Kapoor,Amit Sadh,Sushant Singh Rajput,Rajkummar Rao,Amrita Puri,32628,"1,122,527" "https://m.media-amazon.com/images/M/MV5BMTQzMzg2Nzg2MF5BMl5BanBnXkFtZTgwNjUzNzIzMDE@._V1_UX67_CR0,0,67,98_AL_.jpg",The Broken Circle Breakdown,2012,,111 min,"Drama, Music, Romance",7.7,"Elise and Didier fall in love at first sight, in spite of their differences. He talks, she listens. He's a romantic atheist, she's a religious realist. When their daughter becomes seriously ill, their love is put on trial.",70,Felix van Groeningen,Veerle Baetens,Johan Heldenbergh,Nell Cattrysse,Geert Van Rampelberg,39379,"175,058" "https://m.media-amazon.com/images/M/MV5BMzA2NDkwODAwM15BMl5BanBnXkFtZTgwODk5MTgzMTE@._V1_UY98_CR0,0,67,98_AL_.jpg",Captain America: The Winter Soldier,2014,UA,136 min,"Action, Adventure, Sci-Fi",7.7,"As Steve Rogers struggles to embrace his role in the modern world, he teams up with a fellow Avenger and S.H.I.E.L.D agent, Black Widow, to battle a new threat from history: an assassin known as the Winter Soldier.",70,Anthony Russo,Joe Russo,Chris Evans,Samuel L. Jackson,Scarlett Johansson,736182,"259,766,572" "https://m.media-amazon.com/images/M/MV5BOTc3NzAxMjg4M15BMl5BanBnXkFtZTcwMDc2ODQwNw@@._V1_UY98_CR3,0,67,98_AL_.jpg",Rockstar,2011,UA,159 min,"Drama, Music, Musical",7.7,"Janardhan Jakhar chases his dreams of becoming a big Rock star, during which he falls in love with Heer.",,Imtiaz Ali,Ranbir Kapoor,Nargis Fakhri,Shammi Kapoor,Kumud Mishra,39501,"985,912" "https://m.media-amazon.com/images/M/MV5BOGQzODdlMDktNzU4ZC00N2M3LWFkYTAtYTM1NTE0ZWI5YTg4XkEyXkFqcGdeQXVyMTA1NTM1NDI2._V1_UX67_CR0,0,67,98_AL_.jpg",Nebraska,2013,UA,115 min,"Adventure, Comedy, Drama",7.7,"An aging, booze-addled father makes the trip from Montana to Nebraska with his estranged son in order to claim a million-dollar Mega Sweepstakes Marketing prize.",87,Alexander Payne,Bruce Dern,Will Forte,June Squibb,Bob Odenkirk,112298,"17,654,912" "https://m.media-amazon.com/images/M/MV5BNzMxNTExOTkyMF5BMl5BanBnXkFtZTcwMzEyNDc0OA@@._V1_UX67_CR0,0,67,98_AL_.jpg",Wreck-It Ralph,2012,U,101 min,"Animation, Adventure, Comedy",7.7,"A video game villain wants to be a hero and sets out to fulfill his dream, but his quest brings havoc to the whole arcade where he lives.",72,Rich Moore,John C. Reilly,Jack McBrayer,Jane Lynch,Sarah Silverman,380195,"189,422,889" "https://m.media-amazon.com/images/M/MV5BNjg0OTM5OTQyNV5BMl5BanBnXkFtZTgwNDg5NDQ0NTE@._V1_UY98_CR2,0,67,98_AL_.jpg",Le Petit Prince,2015,PG,108 min,"Animation, Adventure, Drama",7.7,"A little girl lives in a very grown-up world with her mother, who tries to prepare her for it. Her neighbor, the Aviator, introduces the girl to an extraordinary world where anything is possible, the world of the Little Prince.",70,Mark Osborne,Jeff Bridges,Mackenzie Foy,Rachel McAdams,Marion Cotillard,56720,"1,339,152" "https://m.media-amazon.com/images/M/MV5BMTM3NzQzMDA5Ml5BMl5BanBnXkFtZTcwODA5NTcyNw@@._V1_UY98_CR0,0,67,98_AL_.jpg",Detachment,2011,,98 min,Drama,7.7,A substitute teacher who drifts from classroom to classroom finds a connection to the students and teachers during his latest assignment.,52,Tony Kaye,Adrien Brody,Christina Hendricks,Marcia Gay Harden,Lucy Liu,77071,"71,177" "https://m.media-amazon.com/images/M/MV5BMTM4NjY1MDQwMl5BMl5BanBnXkFtZTcwNTI3Njg3NA@@._V1_UX67_CR0,0,67,98_AL_.jpg",Midnight in Paris,2011,PG-13,96 min,"Comedy, Fantasy, Romance",7.7,"While on a trip to Paris with his fiancée's family, a nostalgic screenwriter finds himself mysteriously going back to the 1920s every day at midnight.",81,Woody Allen,Owen Wilson,Rachel McAdams,Kathy Bates,Kurt Fuller,388089,"56,816,662" "https://m.media-amazon.com/images/M/MV5BMTg4MDk1ODExN15BMl5BanBnXkFtZTgwNzIyNjg3MDE@._V1_UX67_CR0,0,67,98_AL_.jpg",The Lego Movie,2014,U,100 min,"Animation, Action, Adventure",7.7,"An ordinary LEGO construction worker, thought to be the prophesied as ""special"", is recruited to join a quest to stop an evil tyrant from gluing the LEGO universe into eternal stasis.",83,Christopher Miller,Phil Lord,Chris Pratt,Will Ferrell,Elizabeth Banks,323982,"257,760,692" "https://m.media-amazon.com/images/M/MV5BNjE5MzYwMzYxMF5BMl5BanBnXkFtZTcwOTk4MTk0OQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Gravity,2013,UA,91 min,"Drama, Sci-Fi, Thriller",7.7,Two astronauts work together to survive after an accident leaves them stranded in space.,96,Alfonso Cuarón,Sandra Bullock,George Clooney,Ed Harris,Orto Ignatiussen,769145,"274,092,705" "https://m.media-amazon.com/images/M/MV5BMTk2NzczOTgxNF5BMl5BanBnXkFtZTcwODQ5ODczOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Star Trek Into Darkness,2013,UA,132 min,"Action, Adventure, Sci-Fi",7.7,"After the crew of the Enterprise find an unstoppable force of terror from within their own organization, Captain Kirk leads a manhunt to a war-zone world to capture a one-man weapon of mass destruction.",72,J.J. Abrams,Chris Pine,Zachary Quinto,Zoe Saldana,Benedict Cumberbatch,463188,"228,778,661" "https://m.media-amazon.com/images/M/MV5BMTYwMzMzMDI0NF5BMl5BanBnXkFtZTgwNDQ3NjI3NjE@._V1_UX67_CR0,0,67,98_AL_.jpg",Beasts of No Nation,2015,,137 min,"Drama, War",7.7,"A drama based on the experiences of Agu, a child soldier fighting in the civil war of an unnamed African country.",79,Cary Joji Fukunaga,Abraham Attah,Emmanuel Affadzi,Ricky Adelayitor,Andrew Adote,73964,"83,861" "https://m.media-amazon.com/images/M/MV5BOGUyZDUxZjEtMmIzMC00MzlmLTg4MGItZWJmMzBhZjE0Mjc1XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",The Social Network,2010,UA,120 min,"Biography, Drama",7.7,"As Harvard student Mark Zuckerberg creates the social networking site that would become known as Facebook, he is sued by the twins who claimed he stole their idea, and by the co-founder who was later squeezed out of the business.",95,David Fincher,Jesse Eisenberg,Andrew Garfield,Justin Timberlake,Rooney Mara,624982,"96,962,694" "https://m.media-amazon.com/images/M/MV5BMTg5OTMxNzk4Nl5BMl5BanBnXkFtZTcwOTk1MjAwNQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",X: First Class,2011,UA,131 min,"Action, Adventure, Sci-Fi",7.7,"In the 1960s, superpowered humans Charles Xavier and Erik Lensherr work together to find others like them, but Erik's vengeful pursuit of an ambitious mutant who ruined his life causes a schism to divide them.",65,Matthew Vaughn,James McAvoy,Michael Fassbender,Jennifer Lawrence,Kevin Bacon,645512,"146,408,305" "https://m.media-amazon.com/images/M/MV5BNGQwZjg5YmYtY2VkNC00NzliLTljYTctNzI5NmU3MjE2ODQzXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",The Hangover,2009,UA,100 min,Comedy,7.7,"Three buddies wake up from a bachelor party in Las Vegas, with no memory of the previous night and the bachelor missing. They make their way around the city in order to find their friend before his wedding.",73,Todd Phillips,Zach Galifianakis,Bradley Cooper,Justin Bartha,Ed Helms,717559,"277,322,503" "https://m.media-amazon.com/images/M/MV5BMWZiNjE2OWItMTkwNy00ZWQzLWI0NTgtMWE0NjNiYTljN2Q1XkEyXkFqcGdeQXVyNzAwMjYxMzA@._V1_UX67_CR0,0,67,98_AL_.jpg",Skyfall,2012,UA,143 min,"Action, Adventure, Thriller",7.7,"James Bond's loyalty to M is tested when her past comes back to haunt her. When MI6 comes under attack, 007 must track down and destroy the threat, no matter how personal the cost.",81,Sam Mendes,Daniel Craig,Javier Bardem,Naomie Harris,Judi Dench,630614,"304,360,277" "https://m.media-amazon.com/images/M/MV5BMTM2MTI5NzA3MF5BMl5BanBnXkFtZTcwODExNTc0OA@@._V1_UX67_CR0,0,67,98_AL_.jpg",Silver Linings Playbook,2012,A,122 min,"Comedy, Drama, Romance",7.7,"After a stint in a mental institution, former teacher Pat Solitano moves back in with his parents and tries to reconcile with his ex-wife. Things get more challenging when Pat meets Tiffany, a mysterious girl with problems of her own.",81,David O. Russell,Bradley Cooper,Jennifer Lawrence,Robert De Niro,Jacki Weaver,661871,"132,092,958" "https://m.media-amazon.com/images/M/MV5BNzljNjY3MDYtYzc0Ni00YjU0LWIyNDUtNTE0ZDRiMGExMjZlXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Argo,2012,A,120 min,"Biography, Drama, Thriller",7.7,"Acting under the cover of a Hollywood producer scouting a location for a science fiction film, a CIA agent launches a dangerous operation to rescue six Americans in Tehran during the U.S. hostage crisis in Iran in 1979.",86,Ben Affleck,Ben Affleck,Bryan Cranston,John Goodman,Alan Arkin,572581,"136,025,503" "https://m.media-amazon.com/images/M/MV5BMTk5MjM4OTU1OV5BMl5BanBnXkFtZTcwODkzNDIzMw@@._V1_UX67_CR0,0,67,98_AL_.jpg",(500) Days of Summer,2009,UA,95 min,"Comedy, Drama, Romance",7.7,"An offbeat romantic comedy about a woman who doesn't believe true love exists, and the young man who falls for her.",76,Marc Webb,Zooey Deschanel,Joseph Gordon-Levitt,Geoffrey Arend,Chloë Grace Moretz,472242,"32,391,374" "https://m.media-amazon.com/images/M/MV5BMTQ2OTE1Mjk0N15BMl5BanBnXkFtZTcwODE3MDAwNA@@._V1_UX67_CR0,0,67,98_AL_.jpg",Harry Potter and the Deathly Hallows: Part 1,2010,A,146 min,"Adventure, Family, Fantasy",7.7,"As Harry, Ron, and Hermione race against time and evil to destroy the Horcruxes, they uncover the existence of the three most powerful objects in the wizarding world: the Deathly Hallows.",65,David Yates,Daniel Radcliffe,Emma Watson,Rupert Grint,Bill Nighy,479120,"295,983,305" "https://m.media-amazon.com/images/M/MV5BOTc3YmM3N2QtODZkMC00ZDE5LThjMTQtYTljN2Y1YTYwYWJkXkEyXkFqcGdeQXVyODEzNjM5OTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Gake no ue no Ponyo,2008,U,101 min,"Animation, Adventure, Comedy",7.7,"A five-year-old boy develops a relationship with Ponyo, a young goldfish princess who longs to become a human after falling in love with him.",86,Hayao Miyazaki,Cate Blanchett,Matt Damon,Liam Neeson,Tomoko Yamaguchi,125317,"15,090,400" "https://m.media-amazon.com/images/M/MV5BOTY4NTU2NTU4NF5BMl5BanBnXkFtZTcwNjE0OTc5MQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Frost/Nixon,2008,R,122 min,"Biography, Drama, History",7.7,A dramatic retelling of the post-Watergate television interviews between British talk-show host David Frost and former president Richard Nixon.,80,Ron Howard,Frank Langella,Michael Sheen,Kevin Bacon,Sam Rockwell,103330,"18,593,156" "https://m.media-amazon.com/images/M/MV5BNDliMTMxOWEtODM3Yi00N2QwLTg4YTAtNTE5YzBlNTA2NjhlXkEyXkFqcGdeQXVyNjE5MjUyOTM@._V1_UX67_CR0,0,67,98_AL_.jpg",Papurika,2006,U,90 min,"Animation, Drama, Fantasy",7.7,"When a machine that allows therapists to enter their patients' dreams is stolen, all Hell breaks loose. Only a young female therapist, Paprika, can stop it.",81,Satoshi Kon,Megumi Hayashibara,Tôru Emori,Katsunosuke Hori,Tôru Furuya,71379,"881,302" "https://m.media-amazon.com/images/M/MV5BOTA1Mzg3NjIxNV5BMl5BanBnXkFtZTcwNzU2NTc5MQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Changeling,2008,R,141 min,"Biography, Crime, Drama",7.7,Grief-stricken mother Christine Collins (Angelina Jolie) takes on the L.A.P.D. to her own detriment when it tries to pass off an obvious impostor as her missing child.,63,Clint Eastwood,Angelina Jolie,Colm Feore,Amy Ryan,Gattlin Griffith,239203,"35,739,802" "https://m.media-amazon.com/images/M/MV5BMTU2NjQ1Nzc4MF5BMl5BanBnXkFtZTcwNTM0NDk1Mw@@._V1_UX67_CR0,0,67,98_AL_.jpg",Flipped,2010,PG,90 min,"Comedy, Drama, Romance",7.7,Two eighth-graders start to have feelings for each other despite being total opposites.,45,Rob Reiner,Madeline Carroll,Callan McAuliffe,Rebecca De Mornay,Anthony Edwards,81446,"1,752,214" "https://m.media-amazon.com/images/M/MV5BMzA4ZGM1NjYtMjcxYS00MTdiLWJmNzEtMTUzODY0NDQ0YzUzXkEyXkFqcGdeQXVyMzYwMjQ3OTI@._V1_UY98_CR1,0,67,98_AL_.jpg",Toki o kakeru shôjo,2006,U,98 min,"Animation, Adventure, Comedy",7.7,"A high-school girl named Makoto acquires the power to travel back in time, and decides to use it for her own personal benefits. Little does she know that she is affecting the lives of others just as much as she is her own.",,Mamoru Hosoda,Riisa Naka,Takuya Ishida,Mitsutaka Itakura,Ayami Kakiuchi,60368, "https://m.media-amazon.com/images/M/MV5BZDNlNjEzMzQtZDM0MS00YzhiLTk0MGUtYTdmNDZiZGVjNTk0L2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UY98_CR1,0,67,98_AL_.jpg",Death Note: Desu nôto,2006,,126 min,"Crime, Drama, Fantasy",7.7,"A battle between the world's two greatest minds begins when Light Yagami finds the Death Note, a notebook with the power to kill, and decides to rid the world of criminals.",,Shûsuke Kaneko,Tatsuya Fujiwara,Ken'ichi Matsuyama,Asaka Seto,Yû Kashii,28630, "https://m.media-amazon.com/images/M/MV5BMmE3OWZhZDYtOTBjMi00NDIwLTg1NWMtMjg0NjJmZWM4MjliL2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",This Is England,2006,,101 min,"Crime, Drama",7.7,"A young boy becomes friends with a gang of skinheads. Friends soon become like family, and relationships will be pushed to the very limit.",86,Shane Meadows,Thomas Turgoose,Stephen Graham,Jo Hartley,Andrew Shim,115576,"327,919" "https://m.media-amazon.com/images/M/MV5BMTUxNzc0OTIxMV5BMl5BanBnXkFtZTgwNDI3NzU2NDE@._V1_UX67_CR0,0,67,98_AL_.jpg",Ex Machina,2014,UA,108 min,"Drama, Sci-Fi, Thriller",7.7,A young programmer is selected to participate in a ground-breaking experiment in synthetic intelligence by evaluating the human qualities of a highly advanced humanoid A.I.,78,Alex Garland,Alicia Vikander,Domhnall Gleeson,Oscar Isaac,Sonoya Mizuno,474141,"25,442,958" "https://m.media-amazon.com/images/M/MV5BMjIxODEyOTQ5Ml5BMl5BanBnXkFtZTcwNjE3NzI5Mw@@._V1_UY98_CR1,0,67,98_AL_.jpg",Efter brylluppet,2006,R,120 min,Drama,7.7,"A manager of an orphanage in India is sent to Copenhagen, Denmark, where he discovers a life-altering family secret.",78,Susanne Bier,Mads Mikkelsen,Sidse Babett Knudsen,Rolf Lassgård,Neeral Mulchandani,32001,"412,544" "https://m.media-amazon.com/images/M/MV5BMjM1NTkxNjkzMl5BMl5BanBnXkFtZTgwNDgwMDAxMzE@._V1_UY98_CR1,0,67,98_AL_.jpg",The Last King of Scotland,2006,R,123 min,"Biography, Drama, History",7.7,Based on the events of the brutal Ugandan dictator Idi Amin's regime as seen by his personal physician during the 1970s.,74,Kevin Macdonald,James McAvoy,Forest Whitaker,Gillian Anderson,Kerry Washington,175355,"17,605,861" "https://m.media-amazon.com/images/M/MV5BN2UwNDc5NmEtNjVjZS00OTI5LWE5YjctMWM3ZjBiZGYwMGI2XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Zodiac,2007,UA,157 min,"Crime, Drama, Mystery",7.7,"In the late 1960s/early 1970s, a San Francisco cartoonist becomes an amateur detective obsessed with tracking down the Zodiac Killer, an unidentified individual who terrorizes Northern California with a killing spree.",78,David Fincher,Jake Gyllenhaal,Robert Downey Jr.,Mark Ruffalo,Anthony Edwards,466080,"33,080,084" "https://m.media-amazon.com/images/M/MV5BZjczMWI1YWMtYTZjOS00ZDc5LWE2MWItMTY3ZGUxNzFkNjJmL2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Lucky Number Slevin,2006,R,110 min,"Action, Crime, Drama",7.7,"A case of mistaken identity lands Slevin into the middle of a war being plotted by two of the city's most rival crime bosses. Under constant surveillance by Detective Brikowski and assassin Goodkat, he must get them before they get him.",53,Paul McGuigan,Josh Hartnett,Ben Kingsley,Morgan Freeman,Lucy Liu,299524,"22,494,487" "https://m.media-amazon.com/images/M/MV5BMTQyODczNjU3NF5BMl5BanBnXkFtZTcwNjQ0NDIzMQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Joyeux Noël,2005,PG-13,116 min,"Drama, History, Music",7.7,"In December 1914, an unofficial Christmas truce on the Western Front allows soldiers from opposing sides of the First World War to gain insight into each other's way of life.",70,Christian Carion,Diane Kruger,Benno Fürmann,Guillaume Canet,Natalie Dessay,28003,"1,054,361" "https://m.media-amazon.com/images/M/MV5BNTEzOTYwMTcxN15BMl5BanBnXkFtZTcwNTgyNjI1MQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Control,2007,R,122 min,"Biography, Drama, Music",7.7,"A profile of Ian Curtis, the enigmatic singer of Joy Division whose personal, professional, and romantic troubles led him to commit suicide at the age of 23.",78,Anton Corbijn,Sam Riley,Samantha Morton,Craig Parkinson,Alexandra Maria Lara,61609,"871,577" "https://m.media-amazon.com/images/M/MV5BMTAxNDYxMjg0MjNeQTJeQWpwZ15BbWU3MDcyNTk2OTM@._V1_UX67_CR0,0,67,98_AL_.jpg",Tangled,2010,U,100 min,"Animation, Adventure, Comedy",7.7,"The magically long-haired Rapunzel has spent her entire life in a tower, but now that a runaway thief has stumbled upon her, she is about to discover the world for the first time, and who she really is.",71,Nathan Greno,Byron Howard,Mandy Moore,Zachary Levi,Donna Murphy,405922,"200,821,936" "https://m.media-amazon.com/images/M/MV5BODFlNTI0ZWQtOTcxNC00OTc0LTkwZDUtMmNkM2I1ZWFlYzZkXkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_UY98_CR2,0,67,98_AL_.jpg",Zwartboek,2006,R,145 min,"Drama, Thriller, War",7.7,"In the Nazi-occupied Netherlands during World War II, a Jewish singer infiltrates the regional Gestapo headquarters for the Dutch resistance.",71,Paul Verhoeven,Carice van Houten,Sebastian Koch,Thom Hoffman,Halina Reijn,72643,"4,398,392" "https://m.media-amazon.com/images/M/MV5BMTY5NTAzNTc1NF5BMl5BanBnXkFtZTYwNDY4MDc3._V1_UX67_CR0,0,67,98_AL_.jpg",Brokeback Mountain,2005,A,134 min,"Drama, Romance",7.7,"The story of a forbidden and secretive relationship between two cowboys, and their lives over the years.",87,Ang Lee,Jake Gyllenhaal,Heath Ledger,Michelle Williams,Randy Quaid,323103,"83,043,761" "https://m.media-amazon.com/images/M/MV5BODE0NTcxNTQzNF5BMl5BanBnXkFtZTcwMzczOTIzMw@@._V1_UX67_CR0,0,67,98_AL_.jpg",3:10 to Yuma,2007,A,122 min,"Action, Crime, Drama",7.7,A small-time rancher agrees to hold a captured outlaw who's awaiting a train to go to court in Yuma. A battle of wills ensues as the outlaw tries to psych out the rancher.,76,James Mangold,Russell Crowe,Christian Bale,Ben Foster,Logan Lerman,288797,"53,606,916" "https://m.media-amazon.com/images/M/MV5BOTk1OTA1MjIyNV5BMl5BanBnXkFtZTcwODQxMTkyMQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Crash,2004,UA,112 min,"Crime, Drama, Thriller",7.7,"Los Angeles citizens with vastly separate lives collide in interweaving stories of race, loss and redemption.",66,Paul Haggis,Don Cheadle,Sandra Bullock,Thandie Newton,Karina Arroyave,419483,"54,580,300" "https://m.media-amazon.com/images/M/MV5BMjZiOTNlMzYtZWYwZS00YWJjLTk5NDgtODkwNjRhMDI0MjhjXkEyXkFqcGdeQXVyMjgyNjk3MzE@._V1_UY98_CR1,0,67,98_AL_.jpg",Kung fu,2004,UA,99 min,"Action, Comedy, Fantasy",7.7,"In Shanghai, China in the 1940s, a wannabe gangster aspires to join the notorious ""Axe Gang"" while residents of a housing complex exhibit extraordinary powers in defending their turf.",78,Stephen Chow,Stephen Chow,Wah Yuen,Qiu Yuen,Siu-Lung Leung,127250,"17,108,591" "https://m.media-amazon.com/images/M/MV5BYTIyMDFmMmItMWQzYy00MjBiLTg2M2UtM2JiNDRhOWE4NjBhXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",The Bourne Supremacy,2004,A,108 min,"Action, Mystery, Thriller",7.7,"When Jason Bourne is framed for a CIA operation gone awry, he is forced to resume his former life as a trained assassin to survive.",73,Paul Greengrass,Matt Damon,Franka Potente,Joan Allen,Brian Cox,434841,"176,241,941" "https://m.media-amazon.com/images/M/MV5BNjk1NzBlY2YtNjJmNi00YTVmLWI2OTgtNDUxNDE5NjUzZmE0XkEyXkFqcGdeQXVyNTc1NTQxODI@._V1_UX67_CR0,0,67,98_AL_.jpg",The Machinist,2004,R,101 min,"Drama, Thriller",7.7,An industrial worker who hasn't slept in a year begins to doubt his own sanity.,61,Brad Anderson,Christian Bale,Jennifer Jason Leigh,Aitana Sánchez-Gijón,John Sharian,358432,"1,082,715" "https://m.media-amazon.com/images/M/MV5BMTQxNDQwNjQzOV5BMl5BanBnXkFtZTcwNTQxNDYyMQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Ray,2004,A,152 min,"Biography, Drama, Music",7.7,"The story of the life and career of the legendary rhythm and blues musician Ray Charles, from his humble beginnings in the South, where he went blind at age seven, to his meteoric rise to stardom during the 1950s and 1960s.",73,Taylor Hackford,Jamie Foxx,Regina King,Kerry Washington,Clifton Powell,138356,"75,331,600" "https://m.media-amazon.com/images/M/MV5BMTI2NDI5ODk4N15BMl5BanBnXkFtZTYwMTI3NTE3._V1_UX67_CR0,0,67,98_AL_.jpg",Lost in Translation,2003,UA,102 min,"Comedy, Drama",7.7,A faded movie star and a neglected young woman form an unlikely bond after crossing paths in Tokyo.,89,Sofia Coppola,Bill Murray,Scarlett Johansson,Giovanni Ribisi,Anna Faris,415074,"44,585,453" "https://m.media-amazon.com/images/M/MV5BMTI1NDMyMjExOF5BMl5BanBnXkFtZTcwOTc4MjQzMQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Harry Potter and the Goblet of Fire,2005,UA,157 min,"Adventure, Family, Fantasy",7.7,"Harry Potter finds himself competing in a hazardous tournament between rival schools of magic, but he is distracted by recurring nightmares.",81,Mike Newell,Daniel Radcliffe,Emma Watson,Rupert Grint,Eric Sykes,548619,"290,013,036" "https://m.media-amazon.com/images/M/MV5BODFlMmEwMDgtYjhmZi00ZTE5LTk2NWQtMWE1Y2M0NjkzOGYxXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Man on Fire,2004,UA,146 min,"Action, Crime, Drama",7.7,"In Mexico City, a former CIA operative swears vengeance on those who committed an unspeakable act against the family he was hired to protect.",47,Tony Scott,Denzel Washington,Christopher Walken,Dakota Fanning,Radha Mitchell,329592,"77,911,774" "https://m.media-amazon.com/images/M/MV5BMzQxNjM5NzkxNV5BMl5BanBnXkFtZTcwMzg5NDMwMg@@._V1_UX67_CR0,0,67,98_AL_.jpg",Coraline,2009,U,100 min,"Animation, Drama, Family",7.7,"An adventurous 11-year-old girl finds another world that is a strangely idealized version of her frustrating home, but it has sinister secrets.",80,Henry Selick,Dakota Fanning,Teri Hatcher,John Hodgman,Jennifer Saunders,197761,"75,286,229" "https://m.media-amazon.com/images/M/MV5BMzkyNzQ1Mzc0NV5BMl5BanBnXkFtZTcwODg3MzUzMw@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Last Samurai,2003,UA,154 min,"Action, Drama",7.7,An American military advisor embraces the Samurai culture he was hired to destroy after he is captured in battle.,55,Edward Zwick,Tom Cruise,Ken Watanabe,Billy Connolly,William Atherton,400049,"111,110,575" "https://m.media-amazon.com/images/M/MV5BMTI2NzU1NTc1NF5BMl5BanBnXkFtZTcwOTQ1MjAwMQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Magdalene Sisters,2002,R,114 min,Drama,7.7,Three young Irish women struggle to maintain their spirits while they endure dehumanizing abuse as inmates of a Magdalene Sisters Asylum.,83,Peter Mullan,Eileen Walsh,Dorothy Duffy,Nora-Jane Noone,Anne-Marie Duff,25938,"4,890,878" "https://m.media-amazon.com/images/M/MV5BMTI0MTg4NzI3M15BMl5BanBnXkFtZTcwOTE0MTUyMQ@@._V1_UY98_CR0,0,67,98_AL_.jpg",Good Bye Lenin!,2003,R,121 min,"Comedy, Drama, Romance",7.7,"In 1990, to protect his fragile mother from a fatal shock after a long coma, a young man must keep her from learning that her beloved nation of East Germany as she knew it has disappeared.",68,Wolfgang Becker,Daniel Brühl,Katrin Saß,Chulpan Khamatova,Florian Lukas,137981,"4,064,200" "https://m.media-amazon.com/images/M/MV5BOGY1YmUzN2MtNDQ3NC00Nzc4LWI5M2EtYzUwMGQ4NWM4NjE1XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UY98_CR0,0,67,98_AL_.jpg",In America,2002,PG-13,105 min,Drama,7.7,A family of Irish immigrants adjust to life on the mean streets of Hell's Kitchen while also grieving the death of a child.,76,Jim Sheridan,Paddy Considine,Samantha Morton,Djimon Hounsou,Sarah Bolger,40403,"15,539,266" "https://m.media-amazon.com/images/M/MV5BYzEyNzc0NjctZjJiZC00MWI1LWJlOTMtYWZkZDAzNzQ0ZDNkXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",I Am Sam,2001,PG-13,132 min,Drama,7.7,A mentally handicapped man fights for custody of his 7-year-old daughter and in the process teaches his cold-hearted lawyer the value of love and family.,28,Jessie Nelson,Sean Penn,Michelle Pfeiffer,Dakota Fanning,Dianne Wiest,142863,"40,311,852" "https://m.media-amazon.com/images/M/MV5BZjIwZWU0ZDItNzBlNS00MDIwLWFlZjctZTJjODdjZWYxNzczL2ltYWdlXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Adaptation.,2002,R,115 min,"Comedy, Drama",7.7,A lovelorn screenwriter becomes desperate as he tries and fails to adapt 'The Orchid Thief' by Susan Orlean for the screen.,83,Spike Jonze,Nicolas Cage,Meryl Streep,Chris Cooper,Tilda Swinton,178565,"22,245,861" "https://m.media-amazon.com/images/M/MV5BYWMwMzQxZjQtODM1YS00YmFiLTk1YjQtNzNiYWY1MDE4NTdiXkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Black Hawk Down,2001,A,144 min,"Drama, History, War",7.7,160 elite U.S. soldiers drop into Somalia to capture two top lieutenants of a renegade warlord and find themselves in a desperate battle with a large force of heavily-armed Somalis.,74,Ridley Scott,Josh Hartnett,Ewan McGregor,Tom Sizemore,Eric Bana,364254,"108,638,745" "https://m.media-amazon.com/images/M/MV5BNjcxMmQ0MmItYTkzYy00MmUyLTlhOTQtMmJmNjE3MDMwYjdlXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Road to Perdition,2002,A,117 min,"Crime, Drama, Thriller",7.7,"A mob enforcer's son witnesses a murder, forcing him and his father to take to the road, and his father down a path of redemption and revenge.",72,Sam Mendes,Tom Hanks,Tyler Hoechlin,Rob Maxey,Liam Aiken,246840,"104,454,762" "https://m.media-amazon.com/images/M/MV5BNThiMDc1YjUtYmE3Zi00MTM1LTkzM2MtNjdlNzQ4ZDlmYjRmXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UY98_CR1,0,67,98_AL_.jpg",Das Experiment,2001,R,120 min,"Drama, Thriller",7.7,"For two weeks, 20 male participants are hired to play prisoners and guards in a prison. The ""prisoners"" have to follow seemingly mild rules, and the ""guards"" are told to retain order without using physical violence.",60,Oliver Hirschbiegel,Moritz Bleibtreu,Christian Berkel,Oliver Stokowski,Wotan Wilke Möhring,90842,"141,072" "https://m.media-amazon.com/images/M/MV5BNGY3NWYwNzctNWU5Yi00ZjljLTgyNDgtZjNhZjRlNjc0ZTU1XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Billy Elliot,2000,R,110 min,"Drama, Music",7.7,A talented young boy becomes torn between his unexpected love of dance and the disintegration of his family.,74,Stephen Daldry,Jamie Bell,Julie Walters,Jean Heywood,Jamie Draven,126770,"21,995,263" "https://m.media-amazon.com/images/M/MV5BZGY5NWUyNDUtZWJhZi00ZjMxLWFmMjMtYmJhZjVkZGZhNWQ4XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Hedwig and the Angry Inch,2001,R,95 min,"Comedy, Drama, Music",7.7,A gender-queer punk-rock singer from East Berlin tours the U.S. with her band as she tells her life story and follows the former lover/band-mate who stole her songs.,85,John Cameron Mitchell,John Cameron Mitchell,Miriam Shor,Stephen Trask,Theodore Liscinski,31957,"3,029,081" "https://m.media-amazon.com/images/M/MV5BYzVmYzVkMmUtOGRhMi00MTNmLThlMmUtZTljYjlkMjNkMjJkXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Ocean's Eleven,2001,UA,116 min,"Crime, Thriller",7.7,Danny Ocean and his ten accomplices plan to rob three Las Vegas casinos simultaneously.,74,Steven Soderbergh,George Clooney,Brad Pitt,Julia Roberts,Matt Damon,516372,"183,417,150" "https://m.media-amazon.com/images/M/MV5BNTIyNThlMjMtMzUyMi00YmEyLTljMmYtMWRhN2Q3ZTllZjA4XkEyXkFqcGdeQXVyMzM4MjM0Nzg@._V1_UY98_CR1,0,67,98_AL_.jpg",Vampire Hunter D: Bloodlust,2000,U,103 min,"Animation, Action, Fantasy",7.7,"When a girl is abducted by a vampire, a legendary bounty hunter is hired to bring her back.",62,Yoshiaki Kawajiri,Andrew Philpot,John Rafter Lee,Pamela Adlon,Wendee Lee,29210,"151,086" "https://m.media-amazon.com/images/M/MV5BMjZkOTdmMWItOTkyNy00MDdjLTlhNTQtYzU3MzdhZjA0ZDEyXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg","O Brother, Where Art Thou?",2000,U,107 min,"Adventure, Comedy, Crime",7.7,"In the deep south during the 1930s, three escaped convicts search for hidden treasure while a relentless lawman pursues them.",69,Joel Coen,Ethan Coen,George Clooney,John Turturro,Tim Blake Nelson,286742,"45,512,588" "https://m.media-amazon.com/images/M/MV5BZDYwYzlhOTAtNDAwMC00ZTBhLWI4M2QtMTA1NmJhYTdiNTkxXkEyXkFqcGdeQXVyNTM0NTU5Mg@@._V1_UX67_CR0,0,67,98_AL_.jpg",Interstate 60: Episodes of the Road,2002,R,116 min,"Adventure, Comedy, Drama",7.7,"Neal Oliver, a very confused young man and an artist, takes a journey of a lifetime on a highway I60 that doesn't exist on any of the maps, going to the places he never even heard of, searching for an answer and his dreamgirl.",,Bob Gale,James Marsden,Gary Oldman,Kurt Russell,Matthew Edison,29999, "https://m.media-amazon.com/images/M/MV5BOGE0ZWI0YzAtY2NkZi00YjkyLWIzYWEtNTJmMzJjODllNjdjXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg","South Park: Bigger, Longer & Uncut",1999,A,81 min,"Animation, Comedy, Fantasy",7.7,"When Stan Marsh and his friends go see an R-rated movie, they start cursing and their parents think that Canada is to blame.",73,Trey Parker,Trey Parker,Matt Stone,Mary Kay Bergman,Isaac Hayes,192112,"52,037,603" "https://m.media-amazon.com/images/M/MV5BOTA5MzQ3MzI1NV5BMl5BanBnXkFtZTgwNTcxNTYxMTE@._V1_UX67_CR0,0,67,98_AL_.jpg",Office Space,1999,R,89 min,Comedy,7.7,Three company workers who hate their jobs decide to rebel against their greedy boss.,68,Mike Judge,Ron Livingston,Jennifer Aniston,David Herman,Ajay Naidu,241575,"10,824,921" "https://m.media-amazon.com/images/M/MV5BM2FlNzE0ZmUtMmVkZS00MWQ3LWE4OWQtYjQwZjdhNzRmNWE2XkEyXkFqcGdeQXVyMTAwMzUyOTc@._V1_UX67_CR0,0,67,98_AL_.jpg",Happiness,1998,,134 min,"Comedy, Drama",7.7,"The lives of several individuals intertwine as they go about their lives in their own unique ways, engaging in acts society as a whole might find disturbing in a desperate search for human connection.",81,Todd Solondz,Jane Adams,Jon Lovitz,Philip Seymour Hoffman,Dylan Baker,66408,"2,807,390" "https://m.media-amazon.com/images/M/MV5BMDZkMTUxYWEtMDY5NS00ZTA5LTg3MTItNTlkZWE1YWRjYjMwL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Training Day,2001,A,122 min,"Crime, Drama, Thriller",7.7,A rookie cop spends his first day as a Los Angeles narcotics officer with a rogue detective who isn't what he appears to be.,69,Antoine Fuqua,Denzel Washington,Ethan Hawke,Scott Glenn,Tom Berenger,390247,"76,631,907" "https://m.media-amazon.com/images/M/MV5BMjE2OTc3OTk2M15BMl5BanBnXkFtZTgwMjg2NjIyMDE@._V1_UX67_CR0,0,67,98_AL_.jpg",Rushmore,1998,UA,93 min,"Comedy, Drama, Romance",7.7,The extracurricular king of Rushmore Preparatory School is put on academic probation.,86,Wes Anderson,Jason Schwartzman,Bill Murray,Olivia Williams,Seymour Cassel,169229,"17,105,219" "https://m.media-amazon.com/images/M/MV5BYjA2MTA1MjUtYmUyNy00NGZiLTk2NTAtMDk3N2M3YmMwOTc1XkEyXkFqcGdeQXVyMjA0MzYwMDY@._V1_UY98_CR0,0,67,98_AL_.jpg",Abre los ojos,1997,U,119 min,"Drama, Mystery, Sci-Fi",7.7,"A very handsome man finds the love of his life, but he suffers an accident and needs to have his face rebuilt by surgery after it is severely disfigured.",,Alejandro Amenábar,Eduardo Noriega,Penélope Cruz,Chete Lera,Fele Martínez,64082,"368,234" "https://m.media-amazon.com/images/M/MV5BYmUxY2MyOTQtYjRlMi00ZWEwLTkzODctZDMxNDcyNTFhYjNjXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_UY98_CR1,0,67,98_AL_.jpg",Being John Malkovich,1999,R,113 min,"Comedy, Drama, Fantasy",7.7,A puppeteer discovers a portal that leads literally into the head of movie star John Malkovich.,90,Spike Jonze,John Cusack,Cameron Diaz,Catherine Keener,John Malkovich,312542,"22,858,926" "https://m.media-amazon.com/images/M/MV5BNWMxZTgzMWEtMTU0Zi00NDc5LWFkZjctMzUxNDIyNzZiMmNjXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",As Good as It Gets,1997,A,139 min,"Comedy, Drama, Romance",7.7,"A single mother and waitress, a misanthropic author, and a gay artist form an unlikely friendship after the artist is assaulted in a robbery.",67,James L. Brooks,Jack Nicholson,Helen Hunt,Greg Kinnear,Cuba Gooding Jr.,275755,"148,478,011" "https://m.media-amazon.com/images/M/MV5BZWFjYmZmZGQtYzg4YS00ZGE5LTgwYzAtZmQwZjQ2NDliMGVmXkEyXkFqcGdeQXVyNTUyMzE4Mzg@._V1_UY98_CR0,0,67,98_AL_.jpg",The Fifth Element,1997,UA,126 min,"Action, Adventure, Sci-Fi",7.7,"In the colorful future, a cab driver unwittingly becomes the central figure in the search for a legendary cosmic weapon to keep Evil and Mr. Zorg at bay.",52,Luc Besson,Bruce Willis,Milla Jovovich,Gary Oldman,Ian Holm,434125,"63,540,020" "https://m.media-amazon.com/images/M/MV5BZjFkOWM5NDUtODYwOS00ZDg0LWFkZGUtYzBkYzNjZjU3ODE3XkEyXkFqcGdeQXVyNzQzNzQxNzI@._V1_UX67_CR0,0,67,98_AL_.jpg",Le dîner de cons,1998,PG-13,80 min,Comedy,7.7,"A few friends have a weekly fools' dinner, where each brings a fool along. Pierre finds a champion fool for next dinner. Surprise.",73,Francis Veber,Thierry Lhermitte,Jacques Villeret,Francis Huster,Daniel Prévost,37424,"4,065,116" "https://m.media-amazon.com/images/M/MV5BYzMzMDZkYWEtODIzNS00YjI3LTkxNTktOWEyZGM3ZWI2MWM4XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Donnie Brasco,1997,A,127 min,"Biography, Crime, Drama",7.7,"An FBI undercover agent infiltrates the mob and finds himself identifying more with the mafia life, at the expense of his regular one.",76,Mike Newell,Al Pacino,Johnny Depp,Michael Madsen,Bruno Kirby,279318,"41,909,762" "https://m.media-amazon.com/images/M/MV5BMTQzMzcxMzUyMl5BMl5BanBnXkFtZTgwNDI1MjgxMTE@._V1_UX67_CR0,0,67,98_AL_.jpg",Shine,1996,U,105 min,"Biography, Drama, Music",7.7,"Pianist David Helfgott, driven by his father and teachers, has a breakdown. Years later he returns to the piano, to popular if not critical acclaim.",87,Scott Hicks,Geoffrey Rush,Armin Mueller-Stahl,Justin Braine,Sonia Todd,51350,"35,811,509" "https://m.media-amazon.com/images/M/MV5BZTM2NWI2OGYtYWNhMi00ZTlmLTg2ZTAtMmI5NWRjODA5YTE1XkEyXkFqcGdeQXVyODE2OTYwNTg@._V1_UX67_CR0,0,67,98_AL_.jpg",Primal Fear,1996,A,129 min,"Crime, Drama, Mystery",7.7,"An altar boy is accused of murdering a priest, and the truth is buried several layers deep.",47,Gregory Hoblit,Richard Gere,Laura Linney,Edward Norton,John Mahoney,189716,"56,116,183" "https://m.media-amazon.com/images/M/MV5BM2U5OWM5NWQtZDYwZS00NmI3LTk4NDktNzcwZjYzNmEzYWU1XkEyXkFqcGdeQXVyNjMwMjk0MTQ@._V1_UY98_CR0,0,67,98_AL_.jpg",Hamlet,1996,PG-13,242 min,Drama,7.7,"Hamlet, Prince of Denmark, returns home to find his father murdered and his mother remarrying the murderer, his uncle. Meanwhile, war is brewing.",,Kenneth Branagh,Kenneth Branagh,Julie Christie,Derek Jacobi,Kate Winslet,35991,"4,414,535" "https://m.media-amazon.com/images/M/MV5BZDQzMGE5ODYtZDdiNC00MzZjLTg2NjAtZTk0ODlkYmY4MTQzXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",A Little Princess,1995,U,97 min,"Drama, Family, Fantasy",7.7,A young girl is relegated to servitude at a boarding school when her father goes missing and is presumed dead.,83,Alfonso Cuarón,Liesel Matthews,Eleanor Bron,Liam Cunningham,Rusty Schwimmer,32236,"10,019,307" "https://m.media-amazon.com/images/M/MV5BZjM4NWRhYTQtYTJlNC00ZmMyLWEzNTAtZDA2MjJjYTQ5ZTVmXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Do lok tin si,1995,UA,99 min,"Comedy, Crime, Drama",7.7,"This Hong Kong-set crime drama follows the lives of a hitman, hoping to get out of the business, and his elusive female partner.",71,Kar-Wai Wong,Leon Lai,Michelle Reis,Takeshi Kaneshiro,Charlie Yeung,26429, "https://m.media-amazon.com/images/M/MV5BZmVhNWIzOTMtYmVlZC00ZDVmLWIyODEtODEzOTAxYjAwMzVlXkEyXkFqcGdeQXVyMzIwNDY4NDI@._V1_UY98_CR1,0,67,98_AL_.jpg",Il postino,1994,U,108 min,"Biography, Comedy, Drama",7.7,"A simple Italian postman learns to love poetry while delivering mail to a famous poet, and then uses this to woo local beauty Beatrice.",81,Michael Radford,Massimo Troisi,Massimo Troisi,Philippe Noiret,Maria Grazia Cucinotta,33600,"21,848,932" "https://m.media-amazon.com/images/M/MV5BNzE1Njk0NmItNDhlMC00ZmFlLWI4ZTUtYTY4ZjgzNjkyMTU1XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Clerks,1994,R,92 min,Comedy,7.7,"A day in the lives of two convenience clerks named Dante and Randal as they annoy customers, discuss movies, and play hockey on the store roof.",70,Kevin Smith,Brian O'Halloran,Jeff Anderson,Marilyn Ghigliotti,Lisa Spoonauer,211450,"3,151,130" "https://m.media-amazon.com/images/M/MV5BZWY0ODc2NDktYmYxNS00MGZiLTk5YjktZjgwZWFhNDQ0MzNhXkEyXkFqcGdeQXVyNTI4MjkwNjA@._V1_UX67_CR0,0,67,98_AL_.jpg",Short Cuts,1993,R,188 min,"Comedy, Drama",7.7,The day-to-day lives of several suburban Los Angeles residents.,79,Robert Altman,Andie MacDowell,Julianne Moore,Tim Robbins,Bruce Davison,42275,"6,110,979" "https://m.media-amazon.com/images/M/MV5BNDE0MWE1ZTMtOWFkMS00YjdiLTkwZTItMDljYjY3MjM0NTk5XkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Philadelphia,1993,UA,125 min,Drama,7.7,"When a man with HIV is fired by his law firm because of his condition, he hires a homophobic small time lawyer as the only willing advocate for a wrongful dismissal suit.",66,Jonathan Demme,Tom Hanks,Denzel Washington,Roberta Maxwell,Buzz Kilman,224169,"77,324,422" "https://m.media-amazon.com/images/M/MV5BN2Y0NWRkNWItZWEwNi00MDNlLWJmZDYtNTkwYzI5Nzg4MjVjXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",The Muppet Christmas Carol,1992,G,85 min,"Comedy, Drama, Family",7.7,The Muppet characters tell their version of the classic tale of an old and bitter miser's redemption on Christmas Eve.,64,Brian Henson,Michael Caine,Kermit the Frog,Dave Goelz,Miss Piggy,50298,"27,281,507" "https://m.media-amazon.com/images/M/MV5BZDkzOTFmMTUtMmI2OS00MDE4LTg5YTUtODMwNDMzNmI5OGYwL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UY98_CR3,0,67,98_AL_.jpg",Malcolm X,1992,U,202 min,"Biography, Drama, History",7.7,"Biographical epic of the controversial and influential Black Nationalist leader, from his early life and career as a small-time gangster, to his ministry as a member of the Nation of Islam.",73,Spike Lee,Denzel Washington,Angela Bassett,Delroy Lindo,Spike Lee,85819,"48,169,908" "https://m.media-amazon.com/images/M/MV5BZDNiYmRkNDYtOWU1NC00NmMxLWFkNmUtMGI5NTJjOTJmYTM5XkEyXkFqcGdeQXVyNzQ1ODk3MTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",The Last of the Mohicans,1992,UA,112 min,"Action, Adventure, Drama",7.7,Three trappers protect the daughters of a British Colonel in the midst of the French and Indian War.,76,Michael Mann,Daniel Day-Lewis,Madeleine Stowe,Russell Means,Eric Schweig,150409,"75,505,856" "https://m.media-amazon.com/images/M/MV5BZjVkYmFkZWQtZmNjYy00NmFhLTliMWYtNThlOTUxNjg5ODdhXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY98_CR4,0,67,98_AL_.jpg",Kurenai no buta,1992,U,94 min,"Animation, Adventure, Comedy",7.7,"In 1930s Italy, a veteran World War I pilot is cursed to look like an anthropomorphic pig.",83,Hayao Miyazaki,Shûichirô Moriyama,Tokiko Katô,Bunshi Katsura Vi,Tsunehiko Kamijô,77798, "https://m.media-amazon.com/images/M/MV5BNTYzN2MxODMtMDBhOC00Y2M0LTgzMTItMzQ4NDIyYWIwMDEzL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNTc1NTQxODI@._V1_UX67_CR0,0,67,98_AL_.jpg",Glengarry Glen Ross,1992,R,100 min,"Crime, Drama, Mystery",7.7,An examination of the machinations behind the scenes at a real estate office.,82,James Foley,Al Pacino,Jack Lemmon,Alec Baldwin,Alan Arkin,95826,"10,725,228" "https://m.media-amazon.com/images/M/MV5BMmRlZDQ1MmUtMzE2Yi00YTkxLTk1MGMtYmIyYWQwODcxYzRlXkEyXkFqcGdeQXVyNTI4MjkwNjA@._V1_UX67_CR0,0,67,98_AL_.jpg",A Few Good Men,1992,U,138 min,"Drama, Thriller",7.7,Military lawyer Lieutenant Daniel Kaffee defends Marines accused of murder. They contend they were acting under orders.,62,Rob Reiner,Tom Cruise,Jack Nicholson,Demi Moore,Kevin Bacon,235388,"141,340,178" "https://m.media-amazon.com/images/M/MV5BOWQ1ZWE0MTQtMmEwOS00YjA3LTgyZTAtNjY5ODEyZTJjNDI2XkEyXkFqcGdeQXVyNjE5MjUyOTM@._V1_UX67_CR0,0,67,98_AL_.jpg",Fried Green Tomatoes,1991,PG-13,130 min,Drama,7.7,A housewife who is unhappy with her life befriends an old lady in a nursing home and is enthralled by the tales she tells of people she used to know.,64,Jon Avnet,Kathy Bates,Jessica Tandy,Mary Stuart Masterson,Mary-Louise Parker,66941,"82,418,501" "https://m.media-amazon.com/images/M/MV5BMTgxMDMxMTctNDY0Zi00ZmNlLWFlYmQtODA2YjY4MDk4MjU1XkEyXkFqcGdeQXVyNTc1NTQxODI@._V1_UX67_CR0,0,67,98_AL_.jpg",Barton Fink,1991,U,116 min,"Comedy, Drama, Thriller",7.7,A renowned New York playwright is enticed to California to write for the movies and discovers the hellish truth of Hollywood.,69,Joel Coen,Ethan Coen,John Turturro,John Goodman,Judy Davis,113240,"6,153,939" "https://m.media-amazon.com/images/M/MV5BMTY2Njk3MTAzM15BMl5BanBnXkFtZTgwMTY5Mzk4NjE@._V1_UX67_CR0,0,67,98_AL_.jpg",Miller's Crossing,1990,R,115 min,"Crime, Drama, Thriller",7.7,"Tom Reagan, an advisor to a Prohibition-era crime boss, tries to keep the peace between warring mobs but gets caught in divided loyalties.",66,Joel Coen,Ethan Coen,Gabriel Byrne,Albert Finney,John Turturro,125822,"5,080,409" "https://m.media-amazon.com/images/M/MV5BMDhiOTM2OTctODk3Ny00NWI4LThhZDgtNGQ4NjRiYjFkZGQzXkEyXkFqcGdeQXVyMTA0MjU0Ng@@._V1_UX67_CR0,0,67,98_AL_.jpg",Who Framed Roger Rabbit,1988,U,104 min,"Animation, Adventure, Comedy",7.7,A toon-hating detective is a cartoon rabbit's only hope to prove his innocence when he is accused of murder.,83,Robert Zemeckis,Bob Hoskins,Christopher Lloyd,Joanna Cassidy,Charles Fleischer,182009,"156,452,370" "https://m.media-amazon.com/images/M/MV5BNDcwMTYzMjctN2M2Yy00ZDcxLWJhNTEtMGNhYzEwYzc2NDE4XkEyXkFqcGdeQXVyNTI4MjkwNjA@._V1_UY98_CR0,0,67,98_AL_.jpg",Spoorloos,1988,,107 min,"Mystery, Thriller",7.7,"Rex and Saskia, a young couple in love, are on vacation. They stop at a busy service station and Saskia is abducted. After three years and no sign of Saskia, Rex begins receiving letters from the abductor.",,George Sluizer,Bernard-Pierre Donnadieu,Gene Bervoets,Johanna ter Steege,Gwen Eckhaus,33982, "https://m.media-amazon.com/images/M/MV5BYjE3ODY5OWEtZmE0Mi00MjUxLTg5MmUtZmFkMzM1N2VjMmU5XkEyXkFqcGdeQXVyNTI4MjkwNjA@._V1_UX67_CR0,0,67,98_AL_.jpg",Withnail & I,1987,R,107 min,"Comedy, Drama",7.7,"In 1969, two substance-abusing, unemployed actors retreat to the countryside for a holiday that proves disastrous.",84,Bruce Robinson,Richard E. Grant,Paul McGann,Richard Griffiths,Ralph Brown,40396,"1,544,889" "https://m.media-amazon.com/images/M/MV5BZTk0NDU4YmItOTk0ZS00ODc2LTkwNGItNWI5MDJkNTJiYWMxXkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_UX67_CR0,0,67,98_AL_.jpg",The Last Emperor,1987,U,163 min,"Biography, Drama, History",7.7,The story of the final Emperor of China.,76,Bernardo Bertolucci,John Lone,Joan Chen,Peter O'Toole,Ruocheng Ying,94326,"43,984,230" "https://m.media-amazon.com/images/M/MV5BMmQwNzczZDItNmI0OS00MjRmLTliYWItZWIyMjk1MTU4ZTQ4L2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Empire of the Sun,1987,U,153 min,"Action, Drama, History",7.7,A young English boy struggles to survive under Japanese occupation during World War II.,62,Steven Spielberg,Christian Bale,John Malkovich,Miranda Richardson,Nigel Havers,115677,"22,238,696" "https://m.media-amazon.com/images/M/MV5BZjEyZTdhNDMtMWFkMS00ZmRjLWEyNmEtZDU3MWFkNDEzMDYwXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Der Name der Rose,1986,R,130 min,"Crime, Drama, Mystery",7.7,An intellectually nonconformist friar investigates a series of mysterious deaths in an isolated abbey.,54,Jean-Jacques Annaud,Sean Connery,Christian Slater,Helmut Qualtinger,Elya Baskin,102031,"7,153,487" "https://m.media-amazon.com/images/M/MV5BMzExOTczNTgtN2Q1Yy00MmI1LWE0NjgtNmIwMzdmZGNlODU1XkEyXkFqcGdeQXVyNDkzNTM2ODg@._V1_UX67_CR0,0,67,98_AL_.jpg",Blue Velvet,1986,A,120 min,"Drama, Mystery, Thriller",7.7,"The discovery of a severed human ear found in a field leads a young man on an investigation related to a beautiful, mysterious nightclub singer and a group of psychopathic criminals who have kidnapped her child.",76,David Lynch,Isabella Rossellini,Kyle MacLachlan,Dennis Hopper,Laura Dern,181285,"8,551,228" "https://m.media-amazon.com/images/M/MV5BY2E1YWRlNzAtYzAwYy00MDg5LTlmYTUtYjdlZDI0NzFkNjNlL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",The Purple Rose of Cairo,1985,U,82 min,"Comedy, Fantasy, Romance",7.7,"In New Jersey in 1935, a movie character walks off the screen and into the real world.",75,Woody Allen,Mia Farrow,Jeff Daniels,Danny Aiello,Irving Metzman,47102,"10,631,333" "https://m.media-amazon.com/images/M/MV5BMTUxMjEzMzI2MV5BMl5BanBnXkFtZTgwNTU3ODAxMDE@._V1_UX67_CR0,0,67,98_AL_.jpg",After Hours,1985,UA,97 min,"Comedy, Crime, Drama",7.7,An ordinary word processor has the worst night of his life after he agrees to visit a girl in Soho who he met that evening at a coffee shop.,90,Martin Scorsese,Griffin Dunne,Rosanna Arquette,Verna Bloom,Tommy Chong,59635,"10,600,000" "https://m.media-amazon.com/images/M/MV5BMGUwMjM0MTEtOGY2NS00MjJmLWEyMDAtYmNkMWJjOWJlNGM0XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Zelig,1983,PG,79 min,Comedy,7.7,"""Documentary"" about a man who can look and act like whoever he's around, and meets various famous people.",,Woody Allen,Woody Allen,Mia Farrow,Patrick Horgan,John Buckwalter,39881,"11,798,616" "https://m.media-amazon.com/images/M/MV5BMTU5MzMwMzAzM15BMl5BanBnXkFtZTcwNjYyMjA0Mg@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Verdict,1982,U,129 min,Drama,7.7,A lawyer sees the chance to salvage his career and self-respect by taking a medical malpractice case to trial rather than settling.,77,Sidney Lumet,Paul Newman,Charlotte Rampling,Jack Warden,James Mason,36096,"54,000,000" "https://m.media-amazon.com/images/M/MV5BMzcyYWE5YmQtNDE1Yi00ZjlmLWFlZTAtMzRjODBiYjM3OTA3XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Star Trek II: The Wrath of Khan,1982,U,113 min,"Action, Adventure, Sci-Fi",7.7,"With the assistance of the Enterprise crew, Admiral Kirk must stop an old nemesis, Khan Noonien Singh, from using the life-generating Genesis Device as the ultimate weapon.",67,Nicholas Meyer,William Shatner,Leonard Nimoy,DeForest Kelley,James Doohan,112704,"78,912,963" "https://m.media-amazon.com/images/M/MV5BODBmOWU2YWMtZGUzZi00YzRhLWJjNDAtYTUwNWVkNDcyZmU5XkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",First Blood,1982,A,93 min,"Action, Adventure",7.7,A veteran Green Beret is forced by a cruel Sheriff and his deputies to flee into the mountains and wage an escalating one-man war against his pursuers.,61,Ted Kotcheff,Sylvester Stallone,Brian Dennehy,Richard Crenna,Bill McKinney,226541,"47,212,904" "https://m.media-amazon.com/images/M/MV5BNWU3MDFkYWQtMWQ5YS00YTcwLThmNDItODY4OWE2ZTdhZmIwXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_UX67_CR0,0,67,98_AL_.jpg",Ordinary People,1980,U,124 min,Drama,7.7,"The accidental death of the older son of an affluent family deeply strains the relationships among the bitter mother, the good-natured father, and the guilt-ridden younger son.",86,Robert Redford,Donald Sutherland,Mary Tyler Moore,Judd Hirsch,Timothy Hutton,47099,"54,800,000" "https://m.media-amazon.com/images/M/MV5BZjA3YjdhMWEtYjc2Ni00YzVlLWI0MTUtMGZmNTJjNmU0Yzk2XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Airplane!,1980,U,88 min,Comedy,7.7,A man afraid to fly must ensure that a plane lands safely after the pilots become sick.,78,Jim Abrahams,David Zucker,Jerry Zucker,Robert Hays,Julie Hagerty,214882,"83,400,000" "https://m.media-amazon.com/images/M/MV5BYzYyNjg3OTctNzA2ZS00NjkzLWE4MmYtZDAzZWQ0NzkyMTJhXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Rupan sansei: Kariosutoro no shiro,1979,U,100 min,"Animation, Adventure, Family",7.7,"A dashing thief, his gang of desperadoes and an intrepid policeman struggle to free a princess from an evil count's clutches, and learn the hidden secret to a fabulous treasure that she holds part of a key to.",71,Hayao Miyazaki,Yasuo Yamada,Eiko Masuyama,Kiyoshi Kobayashi,Makio Inoue,27014, "https://m.media-amazon.com/images/M/MV5BNzk1OGU2NmMtNTdhZC00NjdlLWE5YTMtZTQ0MGExZTQzOGQyXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Halloween,1978,A,91 min,"Horror, Thriller",7.7,"Fifteen years after murdering his sister on Halloween night 1963, Michael Myers escapes from a mental hospital and returns to the small town of Haddonfield, Illinois to kill again.",87,John Carpenter,Donald Pleasence,Jamie Lee Curtis,Tony Moran,Nancy Kyes,233106,"47,000,000" "https://m.media-amazon.com/images/M/MV5BYmVhMDQ1YWUtYjgxOS00NzYyLWI0ZGItNTg3ZjM0MmQ4NmIwXkEyXkFqcGdeQXVyMjQzMzQzODY@._V1_UY98_CR3,0,67,98_AL_.jpg",Le locataire,1976,R,126 min,"Drama, Thriller",7.7,A bureaucrat rents a Paris apartment where he finds himself drawn into a rabbit hole of dangerous paranoia.,71,Roman Polanski,Roman Polanski,Isabelle Adjani,Melvyn Douglas,Jo Van Fleet,39889,"1,924,733" "https://m.media-amazon.com/images/M/MV5BMTYxMDk1NTA5NF5BMl5BanBnXkFtZTcwNDkzNzA2NA@@._V1_UX67_CR0,0,67,98_AL_.jpg",Love and Death,1975,PG,85 min,"Comedy, War",7.7,"In czarist Russia, a neurotic soldier and his distant cousin formulate a plot to assassinate Napoleon.",89,Woody Allen,Woody Allen,Diane Keaton,Georges Adet,Frank Adu,36037, "https://m.media-amazon.com/images/M/MV5BMjE1NDY0NDk3Ml5BMl5BanBnXkFtZTcwMTAzMTM3NA@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Taking of Pelham One Two Three,1974,U,104 min,"Action, Crime, Thriller",7.7,"In New York, armed men hijack a subway car and demand a ransom for the passengers. Even if it's paid, how could they get away?",68,Joseph Sargent,Walter Matthau,Robert Shaw,Martin Balsam,Hector Elizondo,26729, "https://m.media-amazon.com/images/M/MV5BZGZmMWE1MDYtNzAyNC00MDMzLTgzZjQtNTQ5NjYzN2E4MzkzXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Blazing Saddles,1974,A,93 min,"Comedy, Western",7.7,"In order to ruin a western town, a corrupt politician appoints a black Sheriff, who promptly becomes his most formidable adversary.",73,Mel Brooks,Cleavon Little,Gene Wilder,Slim Pickens,Harvey Korman,125993,"119,500,000" "https://m.media-amazon.com/images/M/MV5BYTU4ZTI0NzAtYzMwNi00YmMxLThmZWItNTY5NzgyMDAwYWVhXkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_UX67_CR0,0,67,98_AL_.jpg",Serpico,1973,A,130 min,"Biography, Crime, Drama",7.7,An honest New York cop named Frank Serpico blows the whistle on rampant corruption in the force only to have his comrades turn against him.,87,Sidney Lumet,Al Pacino,John Randolph,Jack Kehoe,Biff McGuire,109941,"29,800,000" "https://m.media-amazon.com/images/M/MV5BNGZiMTkyNzQtMDdmZi00ZDNkLWE4YTAtZGNlNTIzYzQyMGM2XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Enter the Dragon,1973,A,102 min,"Action, Crime, Drama",7.7,A secret agent comes to an opium lord's island fortress with other fighters for a martial-arts tournament.,83,Robert Clouse,Bruce Lee,John Saxon,Jim Kelly,Ahna Capri,96561,"25,000,000" "https://m.media-amazon.com/images/M/MV5BZjBhYzU3NWItOWZjMy00NjI5LWFmYmItZmIyOWFlMDIxMWNiXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Deliverance,1972,U,109 min,"Adventure, Drama, Thriller",7.7,"Intent on seeing the Cahulawassee River before it's dammed and turned into a lake, outdoor fanatic Lewis Medlock takes his friends on a canoeing trip they'll never forget into the dangerous American back-country.",80,John Boorman,Jon Voight,Burt Reynolds,Ned Beatty,Ronny Cox,98740,"7,056,013" "https://m.media-amazon.com/images/M/MV5BOTZhY2E3NmItMGIwNi00OTA2LThkYmEtODFiZTM0NGI0ZWU5XkEyXkFqcGdeQXVyNTc1NTQxODI@._V1_UY98_CR1,0,67,98_AL_.jpg",The French Connection,1971,A,104 min,"Action, Crime, Drama",7.7,A pair of NYC cops in the Narcotics Bureau stumble onto a drug smuggling job with a French connection.,94,William Friedkin,Gene Hackman,Roy Scheider,Fernando Rey,Tony Lo Bianco,110075,"15,630,710" "https://m.media-amazon.com/images/M/MV5BMzdhMTM2YTItOWU2YS00MTM0LTgyNDYtMDM1OWM3NzkzNTM2XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Dirty Harry,1971,A,102 min,"Action, Crime, Thriller",7.7,"When a madman calling himself ""the Scorpio Killer"" menaces the city, tough-as-nails San Francisco Police Inspector ""Dirty"" Harry Callahan is assigned to track down and ferret out the crazed psychopath.",90,Don Siegel,Clint Eastwood,Andrew Robinson,Harry Guardino,Reni Santoni,143292,"35,900,000" "https://m.media-amazon.com/images/M/MV5BNGE3ZWZiNzktMDIyOC00ZmVhLThjZTktZjQ5NjI4NGVhMDBlXkEyXkFqcGdeQXVyMjI4MjA5MzA@._V1_UX67_CR0,0,67,98_AL_.jpg",Where Eagles Dare,1968,U,158 min,"Action, Adventure, War",7.7,"Allied agents stage a daring raid on a castle where the Nazis are holding American brigadier general George Carnaby prisoner, but that's not all that's really going on.",63,Brian G. Hutton,Richard Burton,Clint Eastwood,Mary Ure,Patrick Wymark,51913, "https://m.media-amazon.com/images/M/MV5BZDVhNzQxZDEtMzcyZC00ZDg1LWFkZDctOWYxZTY0ZmYzYjc2XkEyXkFqcGdeQXVyMjA0MDQ0Mjc@._V1_UX67_CR0,0,67,98_AL_.jpg",The Odd Couple,1968,G,105 min,Comedy,7.7,"Two friends try sharing an apartment, but their ideas of housekeeping and lifestyles are as different as night and day.",86,Gene Saks,Jack Lemmon,Walter Matthau,John Fiedler,Herb Edelman,31572,"44,527,234" "https://m.media-amazon.com/images/M/MV5BM2Y1ZTI0NzktYzU3MS00YmE1LThkY2EtMDc0NGYxNTNlZDA5XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Dirty Dozen,1967,,150 min,"Action, Adventure, War",7.7,"During World War II, a rebellious U.S. Army Major is assigned a dozen convicted murderers to train and lead them into a mass assassination mission of German officers.",73,Robert Aldrich,Lee Marvin,Ernest Borgnine,Charles Bronson,John Cassavetes,67183,"45,300,000" "https://m.media-amazon.com/images/M/MV5BZjNkNGJjYWEtM2IyNi00ZjM5LWFlYjYtYjQ4NTU5MGFlMTI2XkEyXkFqcGdeQXVyMTMxMTY0OTQ@._V1_UY98_CR3,0,67,98_AL_.jpg",Belle de jour,1967,A,100 min,"Drama, Romance",7.7,A frigid young housewife decides to spend her midweek afternoons as a prostitute.,,Luis Buñuel,Catherine Deneuve,Jean Sorel,Michel Piccoli,Geneviève Page,40274,"26,331" "https://m.media-amazon.com/images/M/MV5BMTRjOTA1NzctNzFmMy00ZjcwLWExYjgtYWQyZDM5ZWY1Y2JlXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",A Man for All Seasons,1966,U,120 min,"Biography, Drama, History",7.7,"The story of Sir Thomas More, who stood up to King Henry VIII when the King rejected the Roman Catholic Church to obtain a divorce and remarry.",72,Fred Zinnemann,Paul Scofield,Wendy Hiller,Robert Shaw,Leo McKern,31222,"28,350,000" "https://m.media-amazon.com/images/M/MV5BZTU5ZThjNzAtNjc4NC00OTViLWIxYTYtODFmMTk5Y2NjZjZiL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Repulsion,1965,,105 min,"Drama, Horror, Thriller",7.7,A sex-repulsed woman who disapproves of her sister's boyfriend sinks into depression and has horrific visions of rape and violence.,91,Roman Polanski,Catherine Deneuve,Ian Hendry,John Fraser,Yvonne Furneaux,48883, "https://m.media-amazon.com/images/M/MV5BYzdlYmQ3MWMtMDY3My00MzVmLTg0YmMtYjRlZDUzNjBlMmE0L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Zulu,1964,U,138 min,"Drama, History, War",7.7,Outnumbered British soldiers do battle with Zulu warriors at Rorke's Drift.,77,Cy Endfield,Stanley Baker,Jack Hawkins,Ulla Jacobsson,James Booth,35999, "https://m.media-amazon.com/images/M/MV5BMTQ2MzE0OTU3NV5BMl5BanBnXkFtZTcwNjQxNTgzNA@@._V1_UX67_CR0,0,67,98_AL_.jpg",Goldfinger,1964,A,110 min,"Action, Adventure, Thriller",7.7,"While investigating a gold magnate's smuggling, James Bond uncovers a plot to contaminate the Fort Knox gold reserve.",87,Guy Hamilton,Sean Connery,Gert Fröbe,Honor Blackman,Shirley Eaton,174119,"51,081,062" "https://m.media-amazon.com/images/M/MV5BMTAxNDA1ODc5MDleQTJeQWpwZ15BbWU4MDg2MDA4OTEx._V1_UX67_CR0,0,67,98_AL_.jpg",The Birds,1963,A,119 min,"Drama, Horror, Mystery",7.7,A wealthy San Francisco socialite pursues a potential boyfriend to a small Northern California town that slowly takes a turn for the bizarre when birds of all kinds suddenly begin to attack people.,90,Alfred Hitchcock,Rod Taylor,Tippi Hedren,Jessica Tandy,Suzanne Pleshette,171739,"11,403,529" "https://m.media-amazon.com/images/M/MV5BOWNlMTJmMWUtYjk0MC00M2U4LWI1ODItZDgxNDZiODFmNjc5XkEyXkFqcGdeQXVyMTAwMzUyOTc@._V1_UX67_CR0,0,67,98_AL_.jpg",Cape Fear,1962,Passed,106 min,"Drama, Thriller",7.7,A lawyer's family is stalked by a man he once helped put in jail.,76,J. Lee Thompson,Gregory Peck,Robert Mitchum,Polly Bergen,Lori Martin,26457, "https://m.media-amazon.com/images/M/MV5BZjM3ZTAzZDYtZmFjZS00YmQ1LWJlOWEtN2I4MDRmYzY5YmRlL2ltYWdlXkEyXkFqcGdeQXVyMjgyNjk3MzE@._V1_UX67_CR0,0,67,98_AL_.jpg",Peeping Tom,1960,,101 min,"Drama, Horror, Thriller",7.7,"A young man murders women, using a movie camera to film their dying expressions of terror.",,Michael Powell,Karlheinz Böhm,Anna Massey,Moira Shearer,Maxine Audley,31354,"83,957" "https://m.media-amazon.com/images/M/MV5BMzYyNzU0MTM1OF5BMl5BanBnXkFtZTcwMzE1ODE1NA@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Magnificent Seven,1960,Approved,128 min,"Action, Adventure, Western",7.7,Seven gunfighters are hired by Mexican peasants to liberate their village from oppressive bandits.,74,John Sturges,Yul Brynner,Steve McQueen,Charles Bronson,Eli Wallach,87719,"4,905,000" "https://m.media-amazon.com/images/M/MV5BNzBiMWRhNzQtMjZhZS00NzFmLWE5YWMtOWY4NzIxMjYzZTEyXkEyXkFqcGdeQXVyMzg2MzE2OTE@._V1_UY98_CR3,0,67,98_AL_.jpg",Les yeux sans visage,1960,,90 min,"Drama, Horror",7.7,"A surgeon causes an accident which leaves his daughter disfigured, and goes to extremes to give her a new face.",90,Georges Franju,Pierre Brasseur,Alida Valli,Juliette Mayniel,Alexandre Rignault,27620,"52,709" "https://m.media-amazon.com/images/M/MV5BYTExYjM3MDYtMzg4MC00MjU4LTljZjAtYzdlMTFmYTJmYTE4XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Invasion of the Body Snatchers,1956,Approved,80 min,"Drama, Horror, Sci-Fi",7.7,A small-town doctor learns that the population of his community is being replaced by emotionless alien duplicates.,92,Don Siegel,Kevin McCarthy,Dana Wynter,Larry Gates,King Donovan,44839, "https://m.media-amazon.com/images/M/MV5BMTg2ODcxOTU1OV5BMl5BanBnXkFtZTgwNzA3ODI1MDE@._V1_UX67_CR0,0,67,98_AL_.jpg",Rebel Without a Cause,1955,PG-13,111 min,Drama,7.7,"A rebellious young man with a troubled past comes to a new town, finding friends and enemies.",89,Nicholas Ray,James Dean,Natalie Wood,Sal Mineo,Jim Backus,83363, "https://m.media-amazon.com/images/M/MV5BYTVlM2JmOGQtNWEwYy00NDQzLWIyZmEtOGZhMzgxZGRjZDA0XkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Ladykillers,1955,,91 min,"Comedy, Crime",7.7,Five oddball criminals planning a bank robbery rent rooms on a cul-de-sac from an octogenarian widow under the pretext that they are classical musicians.,91,Alexander Mackendrick,Alec Guinness,Peter Sellers,Cecil Parker,Herbert Lom,26464, "https://m.media-amazon.com/images/M/MV5BYmFlNTA1NWItODQxNC00YjFmLWE3ZWYtMzg3YTkwYmMxMjY2XkEyXkFqcGdeQXVyMTMxMTY0OTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Sabrina,1954,Passed,113 min,"Comedy, Drama, Romance",7.7,"A playboy becomes interested in the daughter of his family's chauffeur, but it's his more serious brother who would be the better man for her.",72,Billy Wilder,Humphrey Bogart,Audrey Hepburn,William Holden,Walter Hampden,59415, "https://m.media-amazon.com/images/M/MV5BMWM1ZDhlM2MtNDNmMi00MDk4LTg5MjgtODE4ODk1MjYxOTIwXkEyXkFqcGdeQXVyNjc0MzMzNjA@._V1_UX67_CR0,0,67,98_AL_.jpg",The Quiet Man,1952,Passed,129 min,"Comedy, Drama, Romance",7.7,"A retired American boxer returns to the village of his birth in Ireland, where he falls for a spirited redhead whose brother is contemptuous of their union.",,John Ford,John Wayne,Maureen O'Hara,Barry Fitzgerald,Ward Bond,34677,"10,550,000" "https://m.media-amazon.com/images/M/MV5BMTU5NTBmYTAtOTgyYi00NGM0LWE0ODctZjNiYWM5MmIxYzE4XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Day the Earth Stood Still,1951,U,92 min,"Drama, Sci-Fi",7.7,An alien lands and tells the people of Earth that they must live peacefully or be destroyed as a danger to other planets.,,Robert Wise,Michael Rennie,Patricia Neal,Hugh Marlowe,Sam Jaffe,76315, "https://m.media-amazon.com/images/M/MV5BYzM3YjE2NGMtODY3Zi00NTY0LWE4Y2EtMTE5YzNmM2U1NTg2XkEyXkFqcGdeQXVyMTY5Nzc4MDY@._V1_UX67_CR0,0,67,98_AL_.jpg",The African Queen,1951,PG,105 min,"Adventure, Drama, Romance",7.7,"In WWI Africa, a gin-swilling riverboat captain is persuaded by a strait-laced missionary to use his boat to attack an enemy warship.",91,John Huston,Humphrey Bogart,Katharine Hepburn,Robert Morley,Peter Bull,71481,"536,118" "https://m.media-amazon.com/images/M/MV5BYWUxMzViZTUtNTYxNy00YjY4LWJmMjYtMzNlOThjNjhiZmZkXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Gilda,1946,Approved,110 min,"Drama, Film-Noir, Romance",7.7,A small-time gambler hired to work in a Buenos Aires casino discovers his employer's new wife is his former lover.,,Charles Vidor,Rita Hayworth,Glenn Ford,George Macready,Joseph Calleia,27991, "https://m.media-amazon.com/images/M/MV5BMjAxMTI1Njk3OF5BMl5BanBnXkFtZTgwNjkzODk4NTE@._V1_UX67_CR0,0,67,98_AL_.jpg",Fantasia,1940,G,125 min,"Animation, Family, Fantasy",7.7,A collection of animated interpretations of great works of Western classical music.,96,James Algar,Samuel Armstrong,Ford Beebe Jr.,Norman Ferguson,David Hand,88662,"76,408,097" "https://m.media-amazon.com/images/M/MV5BYjllMmE0Y2YtYWIwZi00OWY1LWJhNWItYzM2MmNiYmFiZmRmXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",The Invisible Man,1933,TV-PG,71 min,"Horror, Sci-Fi",7.7,"A scientist finds a way of becoming invisible, but in doing so, he becomes murderously insane.",87,James Whale,Claude Rains,Gloria Stuart,William Harrigan,Henry Travers,30683, "https://m.media-amazon.com/images/M/MV5BODQ0M2Y5M2QtZGIwMC00MzJjLThlMzYtNmE3ZTMzZTYzOGEwXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Dark Waters,2019,PG-13,126 min,"Biography, Drama, History",7.6,A corporate defense attorney takes on an environmental lawsuit against a chemical company that exposes a lengthy history of pollution.,73,Todd Haynes,Mark Ruffalo,Anne Hathaway,Tim Robbins,Bill Pullman,60408, "https://m.media-amazon.com/images/M/MV5BMjIwOTA3NDI3MF5BMl5BanBnXkFtZTgwNzIzMzA5NTM@._V1_UX67_CR0,0,67,98_AL_.jpg",Searching,2018,U/A,102 min,"Drama, Mystery, Thriller",7.6,"After his teenage daughter goes missing, a desperate father tries to find clues on her laptop.",71,Aneesh Chaganty,John Cho,Debra Messing,Joseph Lee,Michelle La,140840,"26,020,957" "https://m.media-amazon.com/images/M/MV5BOTg4ZTNkZmUtMzNlZi00YmFjLTk1MmUtNWQwNTM0YjcyNTNkXkEyXkFqcGdeQXVyNjg2NjQwMDQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Once Upon a Time... in Hollywood,2019,A,161 min,"Comedy, Drama",7.6,A faded television actor and his stunt double strive to achieve fame and success in the final years of Hollywood's Golden Age in 1969 Los Angeles.,83,Quentin Tarantino,Leonardo DiCaprio,Brad Pitt,Margot Robbie,Emile Hirsch,551309,"142,502,728" "https://m.media-amazon.com/images/M/MV5BNzk2NmU3NmEtMTVhNS00NzJhLWE1M2ItMThjZjI5NWM3YmFmXkEyXkFqcGdeQXVyMjA1MzUyODk@._V1_UY98_CR1,0,67,98_AL_.jpg",Nelyubov,2017,R,127 min,Drama,7.6,A couple going through a divorce must team up to find their son who has disappeared during one of their bitter arguments.,86,Andrey Zvyagintsev,Maryana Spivak,Aleksey Rozin,Matvey Novikov,Marina Vasileva,29765,"566,356" "https://m.media-amazon.com/images/M/MV5BMjg4ZmY1MmItMjFjOS00ZTg2LWJjNDYtNDM2YmM2NzhiNmZhXkEyXkFqcGdeQXVyNTAzMTY4MDA@._V1_UX67_CR0,0,67,98_AL_.jpg",The Florida Project,2017,A,111 min,Drama,7.6,"Set over one summer, the film follows precocious six-year-old Moonee as she courts mischief and adventure with her ragtag playmates and bonds with her rebellious but caring mother, all while living in the shadows of Walt Disney World.",92,Sean Baker,Brooklynn Prince,Bria Vinaite,Willem Dafoe,Christopher Rivera,95181,"5,904,366" "https://m.media-amazon.com/images/M/MV5BYmM4YzA5NjUtZGEyOS00YzllLWJmM2UtZjhhNmJhM2E1NjUxXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Just Mercy,2019,A,137 min,"Biography, Crime, Drama",7.6,World-renowned civil rights defense attorney Bryan Stevenson works to free a wrongly condemned death row prisoner.,68,Destin Daniel Cretton,Michael B. Jordan,Jamie Foxx,Brie Larson,Charlie Pye Jr.,46739, "https://m.media-amazon.com/images/M/MV5BMjQ2NDU3NDE0M15BMl5BanBnXkFtZTgwMjA3OTg0MDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Gifted,2017,PG-13,101 min,Drama,7.6,"Frank, a single man raising his child prodigy niece Mary, is drawn into a custody battle with his mother.",60,Marc Webb,Chris Evans,Mckenna Grace,Lindsay Duncan,Octavia Spencer,99643,"24,801,212" "https://m.media-amazon.com/images/M/MV5BOWVmZGQ0MGYtMDI1Yy00MDkxLWJiYjQtMmZjZmQ0NDFmMDRhXkEyXkFqcGdeQXVyNjg3MDMxNzU@._V1_UX67_CR0,0,67,98_AL_.jpg",The Peanut Butter Falcon,2019,PG-13,97 min,"Adventure, Comedy, Drama",7.6,Zak runs away from his care home to make his dream of becoming a wrestler come true.,70,Tyler Nilson,Michael Schwartz,Zack Gottsagen,Ann Owens,Dakota Johnson,66346,"13,122,642" "https://m.media-amazon.com/images/M/MV5BMTc5NzQzNjk2NF5BMl5BanBnXkFtZTgwODU0MjI5NjE@._V1_UY98_CR0,0,67,98_AL_.jpg",Victoria,2015,,138 min,"Crime, Drama, Romance",7.6,A young Spanish woman who has recently moved to Berlin finds her flirtation with a local guy turn potentially deadly as their night out with his friends reveals a dangerous secret.,77,Sebastian Schipper,Laia Costa,Frederick Lau,Franz Rogowski,Burak Yigit,52903, "https://m.media-amazon.com/images/M/MV5BMTkwODUzODA0OV5BMl5BanBnXkFtZTgwMTA3ODkxNzE@._V1_UY98_CR0,0,67,98_AL_.jpg",Mustang,2015,PG-13,97 min,Drama,7.6,"When five orphan girls are seen innocently playing with boys on a beach, their scandalized conservative guardians confine them while forced marriages are arranged.",83,Deniz Gamze Ergüven,Günes Sensoy,Doga Zeynep Doguslu,Tugba Sunguroglu,Elit Iscan,35785,"845,464" "https://m.media-amazon.com/images/M/MV5BNjM0NTc0NzItM2FlYS00YzEwLWE0YmUtNTA2ZWIzODc2OTgxXkEyXkFqcGdeQXVyNTgwNzIyNzg@._V1_UX67_CR0,0,67,98_AL_.jpg",Guardians of the Galaxy Vol. 2,2017,UA,136 min,"Action, Adventure, Comedy",7.6,"The Guardians struggle to keep together as a team while dealing with their personal family issues, notably Star-Lord's encounter with his father the ambitious celestial being Ego.",67,James Gunn,Chris Pratt,Zoe Saldana,Dave Bautista,Vin Diesel,569974,"389,813,101" "https://m.media-amazon.com/images/M/MV5BMjM3MjQ1MzkxNl5BMl5BanBnXkFtZTgwODk1ODgyMjI@._V1_UX67_CR0,0,67,98_AL_.jpg",Baby Driver,2017,UA,113 min,"Action, Crime, Drama",7.6,"After being coerced into working for a crime boss, a young getaway driver finds himself taking part in a heist doomed to fail.",86,Edgar Wright,Ansel Elgort,Jon Bernthal,Jon Hamm,Eiza González,439406,"107,825,862" "https://m.media-amazon.com/images/M/MV5BYWFlOWI3YTMtYTk3NS00YWQ2LTlmYTMtZjk0ZDk4Y2NjODI0XkEyXkFqcGdeQXVyNTQxNTQ4Mg@@._V1_UX67_CR0,0,67,98_AL_.jpg",Only the Brave,2017,UA,134 min,"Action, Biography, Drama",7.6,"Based on the true story of the Granite Mountain Hotshots, a group of elite firefighters who risk everything to protect a town from a historic wildfire.",72,Joseph Kosinski,Josh Brolin,Miles Teller,Jeff Bridges,Jennifer Connelly,58371,"18,340,051" "https://m.media-amazon.com/images/M/MV5BMjIxOTI0MjU5NV5BMl5BanBnXkFtZTgwNzM4OTk4NTE@._V1_UX67_CR0,0,67,98_AL_.jpg",Bridge of Spies,2015,UA,142 min,"Drama, History, Thriller",7.6,"During the Cold War, an American lawyer is recruited to defend an arrested Soviet spy in court, and then help the CIA facilitate an exchange of the spy for the Soviet captured American U2 spy plane pilot, Francis Gary Powers.",81,Steven Spielberg,Tom Hanks,Mark Rylance,Alan Alda,Amy Ryan,287659,"72,313,754" "https://m.media-amazon.com/images/M/MV5BMTEzNzY0OTg0NTdeQTJeQWpwZ15BbWU4MDU3OTg3MjUz._V1_UX67_CR0,0,67,98_AL_.jpg",Incredibles 2,2018,UA,118 min,"Animation, Action, Adventure",7.6,The Incredibles family takes on a new mission which involves a change in family roles: Bob Parr (Mr. Incredible) must manage the house while his wife Helen (Elastigirl) goes out to save the world.,80,Brad Bird,Craig T. Nelson,Holly Hunter,Sarah Vowell,Huck Milner,250057,"608,581,744" "https://m.media-amazon.com/images/M/MV5BMjI4MzU5NTExNF5BMl5BanBnXkFtZTgwNzY1MTEwMDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Moana,2016,U,107 min,"Animation, Adventure, Comedy",7.6,"In Ancient Polynesia, when a terrible curse incurred by the Demigod Maui reaches Moana's island, she answers the Ocean's call to seek out the Demigod to set things right.",81,Ron Clements,John Musker,Don Hall,Chris Williams,Auli'i Cravalho,272784,"248,757,044" "https://m.media-amazon.com/images/M/MV5BMjA5NjM3NTk1M15BMl5BanBnXkFtZTgwMzg1MzU2NjE@._V1_UX67_CR0,0,67,98_AL_.jpg",Sicario,2015,A,121 min,"Action, Crime, Drama",7.6,An idealistic FBI agent is enlisted by a government task force to aid in the escalating war against drugs at the border area between the U.S. and Mexico.,82,Denis Villeneuve,Emily Blunt,Josh Brolin,Benicio Del Toro,Jon Bernthal,371291,"46,889,293" "https://m.media-amazon.com/images/M/MV5BNmZkYjQzY2QtNjdkNC00YjkzLTk5NjUtY2MyNDNiYTBhN2M2XkEyXkFqcGdeQXVyMjMwNDgzNjc@._V1_UX67_CR0,0,67,98_AL_.jpg",Creed,2015,A,133 min,"Drama, Sport",7.6,"The former World Heavyweight Champion Rocky Balboa serves as a trainer and mentor to Adonis Johnson, the son of his late friend and former rival Apollo Creed.",82,Ryan Coogler,Michael B. Jordan,Sylvester Stallone,Tessa Thompson,Phylicia Rashad,247666,"109,767,581" "https://m.media-amazon.com/images/M/MV5BYTYxZjQ2YTktNmVkMC00ZTY4LThkZmItMDc4MTJiYjVhZjM0L2ltYWdlXkEyXkFqcGdeQXVyMjgyNjk3MzE@._V1_UY98_CR1,0,67,98_AL_.jpg",Leviafan,2014,R,140 min,"Crime, Drama",7.6,"In a Russian coastal town, Kolya is forced to fight the corrupt mayor when he is told that his house will be demolished. He recruits a lawyer friend to help, but the man's arrival brings further misfortune for Kolya and his family.",92,Andrey Zvyagintsev,Aleksey Serebryakov,Elena Lyadova,Roman Madyanov,Vladimir Vdovichenkov,49397,"1,092,800" "https://m.media-amazon.com/images/M/MV5BMTg4NDA1OTA5NF5BMl5BanBnXkFtZTgwMDQ2MDM5ODE@._V1_UX67_CR0,0,67,98_AL_.jpg",Hell or High Water,2016,R,102 min,"Action, Crime, Drama",7.6,A divorced father and his ex-con older brother resort to a desperate scheme in order to save their family's ranch in West Texas.,88,David Mackenzie,Chris Pine,Ben Foster,Jeff Bridges,Gil Birmingham,204175,"26,862,450" "https://m.media-amazon.com/images/M/MV5BMjA5ODgyNzcxMV5BMl5BanBnXkFtZTgwMzkzOTYzMDE@._V1_UX67_CR0,0,67,98_AL_.jpg",Philomena,2013,PG-13,98 min,"Biography, Comedy, Drama",7.6,"A world-weary political journalist picks up the story of a woman's search for her son, who was taken away from her decades ago after she became pregnant and was forced to live in a convent.",77,Stephen Frears,Judi Dench,Steve Coogan,Sophie Kennedy Clark,Mare Winningham,94212,"37,707,719" "https://m.media-amazon.com/images/M/MV5BMTgwODk3NDc1N15BMl5BanBnXkFtZTgwNTc1NjQwMjE@._V1_UX67_CR0,0,67,98_AL_.jpg",Dawn of the Planet of the Apes,2014,UA,130 min,"Action, Adventure, Drama",7.6,A growing nation of genetically evolved apes led by Caesar is threatened by a band of human survivors of the devastating virus unleashed a decade earlier.,79,Matt Reeves,Gary Oldman,Keri Russell,Andy Serkis,Kodi Smit-McPhee,411599,"208,545,589" "https://m.media-amazon.com/images/M/MV5BNGMxZjFkN2EtMDRiMS00ZTBjLWI0M2MtZWUyYjFhZGViZDJlXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",El cuerpo,2012,,112 min,"Mystery, Thriller",7.6,A detective searches for the body of a femme fatale which has gone missing from a morgue.,,Oriol Paulo,Jose Coronado,Hugo Silva,Belén Rueda,Aura Garrido,57549, "https://m.media-amazon.com/images/M/MV5BZGIxODNjM2YtZjA5Mi00MjA5LTk2YjItODE0OWI5NThjNTBmXkEyXkFqcGdeQXVyNzQ1ODk3MTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Serbuan maut,2011,A,101 min,"Action, Thriller",7.6,A S.W.A.T. team becomes trapped in a tenement run by a ruthless mobster and his army of killers and thugs.,73,Gareth Evans,Iko Uwais,Ananda George,Ray Sahetapy,Donny Alamsyah,190531,"4,105,123" "https://m.media-amazon.com/images/M/MV5BMjMxNjU0ODU5Ml5BMl5BanBnXkFtZTcwNjI4MzAyOA@@._V1_UX67_CR0,0,67,98_AL_.jpg",End of Watch,2012,A,109 min,"Action, Crime, Drama",7.6,"Shot documentary-style, this film follows the daily grind of two young police officers in LA who are partners and friends, and what happens when they meet criminal forces greater than themselves.",68,David Ayer,Jake Gyllenhaal,Michael Peña,Anna Kendrick,America Ferrera,228132,"41,003,371" "https://m.media-amazon.com/images/M/MV5BZDY3ZGI0ZDAtMThlNy00MzAxLTg4YjAtNjkwYTkxNmQ4MjdlXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Kari-gurashi no Arietti,2010,U,94 min,"Animation, Adventure, Family",7.6,"The Clock family are four-inch-tall people who live anonymously in another family's residence, borrowing simple items to make their home. Life changes for the Clocks when their teenage daughter, Arrietty, is discovered.",80,Hiromasa Yonebayashi,Amy Poehler,Mirai Shida,Ryûnosuke Kamiki,Tatsuya Fujiwara,80939,"19,202,743" "https://m.media-amazon.com/images/M/MV5BNmE5ZmE3OGItNTdlNC00YmMxLWEzNjctYzAwOGQ5ODg0OTI0XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",A Star Is Born,2018,UA,136 min,"Drama, Music, Romance",7.6,A musician helps a young singer find fame as age and alcoholism send his own career into a downward spiral.,88,Bradley Cooper,Lady Gaga,Bradley Cooper,Sam Elliott,Greg Grunberg,334312,"215,288,866" "https://m.media-amazon.com/images/M/MV5BODhkZDIzNjgtOTA5ZS00MmMzLWFkNjYtM2Y2MzFjN2FkNjAzL2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UY98_CR1,0,67,98_AL_.jpg",True Grit,2010,PG-13,110 min,"Drama, Western",7.6,A stubborn teenager enlists the help of a tough U.S. Marshal to track down her father's murderer.,80,Ethan Coen,Joel Coen,Jeff Bridges,Matt Damon,Hailee Steinfeld,311822,"171,243,005" "https://m.media-amazon.com/images/M/MV5BNDY2OTE5MzE0Nl5BMl5BanBnXkFtZTcwNDAyOTc2NA@@._V1_UX67_CR0,0,67,98_AL_.jpg",Hævnen,2010,R,118 min,"Drama, Romance",7.6,"The lives of two Danish families cross each other, and an extraordinary but risky friendship comes into bud. But loneliness, frailty and sorrow lie in wait.",65,Susanne Bier,Mikael Persbrandt,Trine Dyrholm,Markus Rygaard,Wil Johnson,38491,"1,008,098" "https://m.media-amazon.com/images/M/MV5BMTY3NjY0MTQ0Nl5BMl5BanBnXkFtZTcwMzQ2MTc0Mw@@._V1_UX67_CR0,0,67,98_AL_.jpg",Despicable Me,2010,U,95 min,"Animation, Comedy, Crime",7.6,"When a criminal mastermind uses a trio of orphan girls as pawns for a grand scheme, he finds their love is profoundly changing him for the better.",72,Pierre Coffin,Chris Renaud,Steve Carell,Jason Segel,Russell Brand,500851,"251,513,985" "https://m.media-amazon.com/images/M/MV5BNjg3ODQyNTIyN15BMl5BanBnXkFtZTcwMjUzNzM5NQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",50/50,2011,R,100 min,"Comedy, Drama, Romance",7.6,"Inspired by a true story, a comedy centered on a 27-year-old guy who learns of his cancer diagnosis and his subsequent struggle to beat the disease.",72,Jonathan Levine,Joseph Gordon-Levitt,Seth Rogen,Anna Kendrick,Bryce Dallas Howard,315426,"35,014,192" "https://m.media-amazon.com/images/M/MV5BMTMzNzEzMDYxM15BMl5BanBnXkFtZTcwMTc0NTMxMw@@._V1_UX67_CR0,0,67,98_AL_.jpg",Kick-Ass,2010,UA,117 min,"Action, Comedy, Crime",7.6,"Dave Lizewski is an unnoticed high school student and comic book fan who one day decides to become a superhero, even though he has no powers, training or meaningful reason to do so.",66,Matthew Vaughn,Aaron Taylor-Johnson,Nicolas Cage,Chloë Grace Moretz,Garrett M. Brown,524081,"48,071,303" "https://m.media-amazon.com/images/M/MV5BMjI2ODE4ODAtMDA3MS00ODNkLTg4N2EtOGU0YjZmNGY4NjZlXkEyXkFqcGdeQXVyMTY5MDE5NA@@._V1_UY98_CR0,0,67,98_AL_.jpg",Celda 211,2009,,113 min,"Action, Adventure, Crime",7.6,"The story of two men on different sides of a prison riot -- the inmate leading the rebellion and the young guard trapped in the revolt, who poses as a prisoner in a desperate attempt to survive the ordeal.",,Daniel Monzón,Luis Tosar,Alberto Ammann,Antonio Resines,Manuel Morón,63882, "https://m.media-amazon.com/images/M/MV5BMjAxOTU3Mzc1M15BMl5BanBnXkFtZTcwMzk1ODUzNg@@._V1_UX67_CR0,0,67,98_AL_.jpg",Moneyball,2011,PG-13,133 min,"Biography, Drama, Sport",7.6,Oakland A's general manager Billy Beane's successful attempt to assemble a baseball team on a lean budget by employing computer-generated analysis to acquire new players.,87,Bennett Miller,Brad Pitt,Robin Wright,Jonah Hill,Philip Seymour Hoffman,369529,"75,605,492" "https://m.media-amazon.com/images/M/MV5BYmFmNjY5NDYtZjlhNi00YjQ5LTgzNzctNWRiNWUzNmIyNjc4XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY98_CR0,0,67,98_AL_.jpg",La piel que habito,2011,R,120 min,"Drama, Horror, Thriller",7.6,"A brilliant plastic surgeon, haunted by past tragedies, creates a type of synthetic skin that withstands any kind of damage. His guinea pig: a mysterious and volatile woman who holds the key to his obsession.",70,Pedro Almodóvar,Antonio Banderas,Elena Anaya,Jan Cornet,Marisa Paredes,138959,"3,185,812" "https://m.media-amazon.com/images/M/MV5BMTU5MDg0NTQ1N15BMl5BanBnXkFtZTcwMjA4Mjg3Mg@@._V1_UY98_CR1,0,67,98_AL_.jpg",Zombieland,2009,A,88 min,"Adventure, Comedy, Fantasy",7.6,"A shy student trying to reach his family in Ohio, a gun-toting tough guy trying to find the last Twinkie, and a pair of sisters trying to get to an amusement park join forces to travel across a zombie-filled America.",73,Ruben Fleischer,Jesse Eisenberg,Emma Stone,Woody Harrelson,Abigail Breslin,520041,"75,590,286" "https://m.media-amazon.com/images/M/MV5BMzc0ZmUyZjAtZThkMi00ZDY5LTg5YjctYmUwM2FiYjMyMDI5XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Die Welle,2008,,107 min,"Drama, Thriller",7.6,A high school teacher's experiment to demonstrate to his students what life is like under a dictatorship spins horribly out of control when he forms a social unit with a life of its own.,,Dennis Gansel,Jürgen Vogel,Frederick Lau,Max Riemelt,Jennifer Ulrich,102742, "https://m.media-amazon.com/images/M/MV5BMTg0NjEwNjUxM15BMl5BanBnXkFtZTcwMzk0MjQ5Mg@@._V1_UX67_CR0,0,67,98_AL_.jpg",Sherlock Holmes,2009,PG-13,128 min,"Action, Adventure, Mystery",7.6,Detective Sherlock Holmes and his stalwart partner Watson engage in a battle of wits and brawn with a nemesis whose plot is a threat to all of England.,57,Guy Ritchie,Robert Downey Jr.,Jude Law,Rachel McAdams,Mark Strong,583158,"209,028,679" "https://m.media-amazon.com/images/M/MV5BMjEzOTE3ODM3OF5BMl5BanBnXkFtZTcwMzYyODI4Mg@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Blind Side,2009,UA,129 min,"Biography, Drama, Sport",7.6,"The story of Michael Oher, a homeless and traumatized boy who became an All-American football player and first-round NFL draft pick with the help of a caring woman and her family.",53,John Lee Hancock,Quinton Aaron,Sandra Bullock,Tim McGraw,Jae Head,293266,"255,959,475" "https://m.media-amazon.com/images/M/MV5BMTIzNTg3NzkzNV5BMl5BanBnXkFtZTcwNzMwMjU2MQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Visitor,2007,PG-13,104 min,Drama,7.6,A college professor travels to New York City to attend a conference and finds a young couple living in his apartment.,79,Tom McCarthy,Richard Jenkins,Haaz Sleiman,Danai Gurira,Hiam Abbass,41544,"9,422,422" "https://m.media-amazon.com/images/M/MV5BMTU0NzY0MTY5OF5BMl5BanBnXkFtZTcwODY3MDEwMg@@._V1_UY98_CR3,0,67,98_AL_.jpg",Seven Pounds,2008,UA,123 min,Drama,7.6,A man with a fateful secret embarks on an extraordinary journey of redemption by forever changing the lives of seven strangers.,36,Gabriele Muccino,Will Smith,Rosario Dawson,Woody Harrelson,Michael Ealy,286770,"69,951,824" "https://m.media-amazon.com/images/M/MV5BMTcwMzU0OTY3NF5BMl5BanBnXkFtZTYwNzkwNjg2._V1_UX67_CR0,0,67,98_AL_.jpg",Eastern Promises,2007,R,100 min,"Action, Crime, Drama",7.6,A teenager who dies during childbirth leaves clues in her journal that could tie her child to a rape involving a violent Russian mob family.,82,David Cronenberg,Naomi Watts,Viggo Mortensen,Armin Mueller-Stahl,Josef Altin,227760,"17,114,882" "https://m.media-amazon.com/images/M/MV5BMjkyMTE1OTYwNF5BMl5BanBnXkFtZTcwMDIxODYzMw@@._V1_UX67_CR0,0,67,98_AL_.jpg",Stardust,2007,U,127 min,"Adventure, Family, Fantasy",7.6,"In a countryside town bordering on a magical land, a young man makes a promise to his beloved that he'll retrieve a fallen star by venturing into the magical realm.",66,Matthew Vaughn,Charlie Cox,Claire Danes,Sienna Miller,Ian McKellen,255036,"38,634,938" "https://m.media-amazon.com/images/M/MV5BMjEzMjEzNTIzOF5BMl5BanBnXkFtZTcwMTg2MjAyMw@@._V1_UY98_CR0,0,67,98_AL_.jpg",The Secret of Kells,2009,,71 min,"Animation, Adventure, Family",7.6,"A young boy in a remote medieval outpost under siege from barbarian raids is beckoned to adventure when a celebrated master illuminator arrives with an ancient book, brimming with secret wisdom and powers.",81,Tomm Moore,Nora Twomey,Evan McGuire,Brendan Gleeson,Mick Lally,31779,"686,383" "https://m.media-amazon.com/images/M/MV5BYjc4MjA2ZDgtOGY3YS00NDYzLTlmNTEtYWMxMzcwZjgzYWNjXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Inside Man,2006,R,129 min,"Crime, Drama, Mystery",7.6,"A police detective, a bank robber, and a high-power broker enter high-stakes negotiations after the criminal's brilliant heist spirals into a hostage situation.",76,Spike Lee,Denzel Washington,Clive Owen,Jodie Foster,Christopher Plummer,339757,"88,513,495" "https://m.media-amazon.com/images/M/MV5BYmM2NDNiNGItMTRhMi00ZDA2LTgzOWMtZTE2ZjFhMDQ2M2U5XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Gone Baby Gone,2007,R,114 min,"Crime, Drama, Mystery",7.6,"Two Boston area detectives investigate a little girl's kidnapping, which ultimately turns into a crisis both professionally and personally.",72,Ben Affleck,Morgan Freeman,Ed Harris,Casey Affleck,Michelle Monaghan,250590,"20,300,218" "https://m.media-amazon.com/images/M/MV5BOTBmZDZkNWYtODIzYi00N2Y4LWFjMmMtNmM1OGYyNGVhYzUzXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",La Vie En Rose,2007,PG-13,140 min,"Biography, Drama, Music",7.6,"Biopic of the iconic French singer Édith Piaf. Raised by her grandmother in a brothel, she was discovered while singing on a street corner at the age of 19. Despite her success, Piaf's life was filled with tragedy.",66,Olivier Dahan,Marion Cotillard,Sylvie Testud,Pascal Greggory,Emmanuelle Seigner,82781,"10,301,706" "https://m.media-amazon.com/images/M/MV5BMTI5MjA2Mzk2M15BMl5BanBnXkFtZTcwODY1MDUzMQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Huo Yuan Jia,2006,PG-13,104 min,"Action, Biography, Drama",7.6,"A biography of Chinese Martial Arts Master Huo Yuanjia, who is the founder and spiritual guru of the Jin Wu Sports Federation.",70,Ronny Yu,Jet Li,Li Sun,Yong Dong,Yun Qu,72863,"24,633,730" "https://m.media-amazon.com/images/M/MV5BY2VkMzZlZDAtNTkzNS00MDIzLWFmOTctMWQwZjQ1OWJiYzQ1XkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_UY98_CR1,0,67,98_AL_.jpg",The Illusionist,2006,U,110 min,"Drama, Fantasy, Mystery",7.6,"In turn-of-the-century Vienna, a magician uses his abilities to secure the love of a woman far above his social standing.",68,Neil Burger,Edward Norton,Jessica Biel,Paul Giamatti,Rufus Sewell,354728,"39,868,642" "https://m.media-amazon.com/images/M/MV5BMTI5Mzk1MDc2M15BMl5BanBnXkFtZTcwMjIzMDA0MQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Dead Man's Shoes,2004,,90 min,"Crime, Drama, Thriller",7.6,A disaffected soldier returns to his hometown to get even with the thugs who brutalized his mentally-challenged brother years ago.,52,Shane Meadows,Paddy Considine,Gary Stretch,Toby Kebbell,Stuart Wolfenden,49728,"6,013" "https://m.media-amazon.com/images/M/MV5BNzU3NDg4NTAyNV5BMl5BanBnXkFtZTcwOTg2ODg1Mg@@._V1_UX67_CR0,0,67,98_AL_.jpg",Harry Potter and the Half-Blood Prince,2009,UA,153 min,"Action, Adventure, Family",7.6,"As Harry Potter begins his sixth year at Hogwarts, he discovers an old book marked as ""the property of the Half-Blood Prince"" and begins to learn more about Lord Voldemort's dark past.",78,David Yates,Daniel Radcliffe,Emma Watson,Rupert Grint,Michael Gambon,474827,"301,959,197" "https://m.media-amazon.com/images/M/MV5BNWMxYTZlOTUtZDExMi00YzZmLTkwYTMtZmM2MmRjZmQ3OGY4XkEyXkFqcGdeQXVyMTAwMzUyMzUy._V1_UX67_CR0,0,67,98_AL_.jpg",300,2006,A,117 min,"Action, Drama",7.6,King Leonidas of Sparta and a force of 300 men fight the Persians at Thermopylae in 480 B.C.,52,Zack Snyder,Gerard Butler,Lena Headey,David Wenham,Dominic West,732876,"210,614,939" "https://m.media-amazon.com/images/M/MV5BMjRjOTMwMDEtNTY4NS00OWRjLWI4ZWItZDgwYmZhMzlkYzgxXkEyXkFqcGdeQXVyODIxOTg5MTc@._V1_UY98_CR1,0,67,98_AL_.jpg",Match Point,2005,R,124 min,"Drama, Romance, Thriller",7.6,"At a turning point in his life, a former tennis pro falls for an actress who happens to be dating his friend and soon-to-be brother-in-law.",72,Woody Allen,Scarlett Johansson,Jonathan Rhys Meyers,Emily Mortimer,Matthew Goode,206294,"23,089,926" "https://m.media-amazon.com/images/M/MV5BY2IzNGNiODgtOWYzOS00OTI0LTgxZTUtOTA5OTQ5YmI3NGUzXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Watchmen,2009,A,162 min,"Action, Drama, Mystery",7.6,"In 1985 where former superheroes exist, the murder of a colleague sends active vigilante Rorschach into his own sprawling investigation, uncovering something that could completely change the course of history as we know it.",56,Zack Snyder,Jackie Earle Haley,Patrick Wilson,Carla Gugino,Malin Akerman,500799,"107,509,799" "https://m.media-amazon.com/images/M/MV5BMTYzZWE3MDAtZjZkMi00MzhlLTlhZDUtNmI2Zjg3OWVlZWI0XkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",Lord of War,2005,R,122 min,"Action, Crime, Drama",7.6,An arms dealer confronts the morality of his work as he is being chased by an INTERPOL Agent.,62,Andrew Niccol,Nicolas Cage,Ethan Hawke,Jared Leto,Bridget Moynahan,294140,"24,149,632" "https://m.media-amazon.com/images/M/MV5BMzQ2ZTBhNmEtZDBmYi00ODU0LTgzZmQtNmMxM2M4NzM1ZjE4XkEyXkFqcGdeQXVyNjE5MjUyOTM@._V1_UX67_CR0,0,67,98_AL_.jpg",Saw,2004,UA,103 min,"Horror, Mystery, Thriller",7.6,"Two strangers awaken in a room with no recollection of how they got there, and soon discover they're pawns in a deadly game perpetrated by a notorious serial killer.",46,James Wan,Cary Elwes,Leigh Whannell,Danny Glover,Ken Leung,379020,"56,000,369" "https://m.media-amazon.com/images/M/MV5BMjA0MjIyOTI3MF5BMl5BanBnXkFtZTcwODM5NTY5MQ@@._V1_UX67_CR0,0,67,98_AL_.jpg","Synecdoche, New York",2008,R,124 min,Drama,7.6,"A theatre director struggles with his work, and the women in his life, as he creates a life-size replica of New York City inside a warehouse as part of his new play.",67,Charlie Kaufman,Philip Seymour Hoffman,Samantha Morton,Michelle Williams,Catherine Keener,83158,"3,081,925" "https://m.media-amazon.com/images/M/MV5BMTgxMjQ4NzE5OF5BMl5BanBnXkFtZTcwNzkwOTkyMQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Mysterious Skin,2004,R,105 min,Drama,7.6,"A teenage hustler and a young man obsessed with alien abductions cross paths, together discovering a horrible, liberating truth.",73,Gregg Araki,Brady Corbet,Joseph Gordon-Levitt,Elisabeth Shue,Chase Ellison,65939,"697,181" "https://m.media-amazon.com/images/M/MV5BNjIwOGJhY2QtMTA5Yi00MDhlLWE5OTgtYmIzZDNlM2UwZjMyXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UX67_CR0,0,67,98_AL_.jpg",Jeux d'enfants,2003,R,93 min,"Comedy, Drama, Romance",7.6,"As adults, best friends Julien and Sophie continue the odd game they started as children -- a fearless competition to outdo one another with daring and outrageous stunts. While they often act out to relieve one another's pain, their game might be a way to avoid the fact that they are truly meant for one another.",45,Yann Samuell,Guillaume Canet,Marion Cotillard,Thibault Verhaeghe,Joséphine Lebas-Joly,67360,"548,707" "https://m.media-amazon.com/images/M/MV5BZWI4ZTgwMzktNjk3Yy00OTlhLTg3YTAtMTA1MWVlMWJiOTRiXkEyXkFqcGdeQXVyMTAwMzUyOTc@._V1_UX67_CR0,0,67,98_AL_.jpg",Un long dimanche de fiançailles,2004,U,133 min,"Drama, Mystery, Romance",7.6,"Tells the story of a young woman's relentless search for her fiancé, who has disappeared from the trenches of the Somme during World War One.",76,Jean-Pierre Jeunet,Audrey Tautou,Gaspard Ulliel,Jodie Foster,Dominique Pinon,70925,"6,167,817" "https://m.media-amazon.com/images/M/MV5BMTUzNDgyMzg3Ml5BMl5BanBnXkFtZTcwMzIxNTAwMQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Station Agent,2003,R,89 min,"Comedy, Drama",7.6,"When his only friend dies, a man born with dwarfism moves to rural New Jersey to live a life of solitude, only to meet a chatty hot dog vendor and a woman dealing with her own personal loss.",81,Tom McCarthy,Peter Dinklage,Patricia Clarkson,Bobby Cannavale,Paul Benjamin,67370,"5,739,376" "https://m.media-amazon.com/images/M/MV5BMjA4MjI2OTM5N15BMl5BanBnXkFtZTcwNDA1NjUzMw@@._V1_UX67_CR0,0,67,98_AL_.jpg",21 Grams,2003,UA,124 min,"Crime, Drama, Thriller",7.6,"A freak accident brings together a critically ill mathematician, a grieving mother, and a born-again ex-con.",70,Alejandro G. Iñárritu,Sean Penn,Benicio Del Toro,Naomi Watts,Danny Huston,224545,"16,290,476" "https://m.media-amazon.com/images/M/MV5BYmNlNDVjMWUtZDZjNS00YTBmLWE3NGUtNDcxMzE0YTQ2ODMxXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Boksuneun naui geot,2002,R,129 min,"Crime, Drama, Thriller",7.6,"A recently laid off factory worker kidnaps his former boss' friend's daughter, hoping to use the ransom money to pay for his sister's kidney transplant.",56,Chan-wook Park,Kang-ho Song,Shin Ha-kyun,Bae Doona,Ji-Eun Lim,62659,"45,289" "https://m.media-amazon.com/images/M/MV5BMTMxNzYzNzUzMV5BMl5BanBnXkFtZTYwNjcwMjE3._V1_UX67_CR0,0,67,98_AL_.jpg",Finding Neverland,2004,U,106 min,"Biography, Drama, Family",7.6,The story of Sir J.M. Barrie's friendship with a family who inspired him to create Peter Pan.,67,Marc Forster,Johnny Depp,Kate Winslet,Julie Christie,Radha Mitchell,198677,"51,680,613" "https://m.media-amazon.com/images/M/MV5BNmE0YjdlYTktMTU4Ni00Mjk2LWI3NWMtM2RjNmFiOTk4YjYxL2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UY98_CR1,0,67,98_AL_.jpg",25th Hour,2002,R,135 min,Drama,7.6,"Cornered by the DEA, convicted New York drug dealer Montgomery Brogan reevaluates his life in the 24 remaining hours before facing a seven-year jail term.",68,Spike Lee,Edward Norton,Barry Pepper,Philip Seymour Hoffman,Rosario Dawson,169708,"13,060,843" "https://m.media-amazon.com/images/M/MV5BODNiZmY2MWUtMjFhMy00ZmM2LTg2MjYtNWY1OTY5NGU2MjdjL2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UY98_CR0,0,67,98_AL_.jpg",The Butterfly Effect,2004,U,113 min,"Drama, Sci-Fi, Thriller",7.6,"Evan Treborn suffers blackouts during significant events of his life. As he grows up, he finds a way to remember these lost memories and a supernatural way to alter his life by reading his journal.",30,Eric Bress,J. Mackye Gruber,Ashton Kutcher,Amy Smart,Melora Walters,451479,"57,938,693" "https://m.media-amazon.com/images/M/MV5BYTFkM2ViMmQtZmI5NS00MjQ2LWEyN2EtMTI1ZmNlZDU3MTZjXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",28 Days Later...,2002,A,113 min,"Drama, Horror, Sci-Fi",7.6,"Four weeks after a mysterious, incurable virus spreads throughout the UK, a handful of survivors try to find sanctuary.",73,Danny Boyle,Cillian Murphy,Naomie Harris,Christopher Eccleston,Alex Palmer,376853,"45,064,915" "https://m.media-amazon.com/images/M/MV5BMDc2MGYwYzAtNzE2Yi00YmU3LTkxMDUtODk2YjhiNDM5NDIyXkEyXkFqcGdeQXVyMTEwNDU1MzEy._V1_UX67_CR0,0,67,98_AL_.jpg",Batoru rowaiaru,2000,,114 min,"Action, Adventure, Drama",7.6,"In the future, the Japanese government captures a class of ninth-grade students and forces them to kill each other under the revolutionary ""Battle Royale"" act.",81,Kinji Fukasaku,Tatsuya Fujiwara,Aki Maeda,Tarô Yamamoto,Takeshi Kitano,169091, "https://m.media-amazon.com/images/M/MV5BYmUzODQ5MGItZTZlNy00MDBhLWIxMmItMjg4Y2QyNDFlMWQ2XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",The Royal Tenenbaums,2001,A,110 min,"Comedy, Drama",7.6,The eccentric members of a dysfunctional family reluctantly gather under the same roof for various reasons.,76,Wes Anderson,Gene Hackman,Gwyneth Paltrow,Anjelica Huston,Ben Stiller,266842,"52,364,010" "https://m.media-amazon.com/images/M/MV5BNDhjMzc3ZTgtY2Y4MC00Y2U3LWFiMDctZGM3MmM4N2YzNDQ5XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Y tu mamá también,2001,A,106 min,Drama,7.6,"In Mexico, two teenage boys and an attractive older woman embark on a road trip and learn a thing or two about life, friendship, sex, and each other.",88,Alfonso Cuarón,Maribel Verdú,Gael García Bernal,Daniel Giménez Cacho,Ana López Mercado,115827,"13,622,333" "https://m.media-amazon.com/images/M/MV5BNjQ3NWNlNmQtMTE5ZS00MDdmLTlkZjUtZTBlM2UxMGFiMTU3XkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_UX67_CR0,0,67,98_AL_.jpg",Harry Potter and the Sorcerer's Stone,2001,U,152 min,"Adventure, Family, Fantasy",7.6,"An orphaned boy enrolls in a school of wizardry, where he learns the truth about himself, his family and the terrible evil that haunts the magical world.",64,Chris Columbus,Daniel Radcliffe,Rupert Grint,Richard Harris,Maggie Smith,658185,"317,575,550" "https://m.media-amazon.com/images/M/MV5BMTAxMDE4Mzc3ODNeQTJeQWpwZ15BbWU4MDY2Mjg4MDcx._V1_UX67_CR0,0,67,98_AL_.jpg",The Others,2001,PG-13,101 min,"Horror, Mystery, Thriller",7.6,A woman who lives in her darkened old family house with her two photosensitive children becomes convinced that the home is haunted.,74,Alejandro Amenábar,Nicole Kidman,Christopher Eccleston,Fionnula Flanagan,Alakina Mann,337651,"96,522,687" "https://m.media-amazon.com/images/M/MV5BYjg5ZDkzZWEtZDQ2ZC00Y2ViLThhMzYtMmIxZDYzYTY2Y2Y2XkEyXkFqcGdeQXVyODAwMTU1MTE@._V1_UY98_CR1,0,67,98_AL_.jpg",Blow,2001,R,124 min,"Biography, Crime, Drama",7.6,"The story of how George Jung, along with the Medellín Cartel headed by Pablo Escobar, established the American cocaine market in the 1970s in the United States.",52,Ted Demme,Johnny Depp,Penélope Cruz,Franka Potente,Rachel Griffiths,240714,"52,990,775" "https://m.media-amazon.com/images/M/MV5BYWFlY2E3ODQtZWNiNi00ZGU4LTkzNWEtZTQ2ZTViMWRhYjIzL2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Enemy at the Gates,2001,A,131 min,"Drama, History, War",7.6,A Russian and a German sniper play a game of cat-and-mouse during the Battle of Stalingrad.,53,Jean-Jacques Annaud,Jude Law,Ed Harris,Joseph Fiennes,Rachel Weisz,243729,"51,401,758" "https://m.media-amazon.com/images/M/MV5BZTI3YzZjZjEtMDdjOC00OWVjLTk0YmYtYzI2MGMwZjFiMzBlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Minority Report,2002,A,145 min,"Action, Crime, Mystery",7.6,"In a future where a special police unit is able to arrest murderers before they commit their crimes, an officer from that unit is himself accused of a future murder.",80,Steven Spielberg,Tom Cruise,Colin Farrell,Samantha Morton,Max von Sydow,508417,"132,072,926" "https://m.media-amazon.com/images/M/MV5BMTA3OTYxMzg0MDFeQTJeQWpwZ15BbWU4MDY1MjY0MTEx._V1_UX67_CR0,0,67,98_AL_.jpg",The Hurricane,1999,R,146 min,"Biography, Drama, Sport",7.6,"The story of Rubin 'Hurricane' Carter, a boxer wrongly imprisoned for murder, and the people who aided in his fight to prove his innocence.",74,Norman Jewison,Denzel Washington,Vicellous Shannon,Deborah Kara Unger,Liev Schreiber,91557,"50,668,906" "https://m.media-amazon.com/images/M/MV5BZTM2ZGJmNjQtN2UyOS00NjcxLWFjMDktMDE2NzMyNTZlZTBiXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",American Psycho,2000,A,101 min,"Comedy, Crime, Drama",7.6,"A wealthy New York City investment banking executive, Patrick Bateman, hides his alternate psychopathic ego from his co-workers and friends as he delves deeper into his violent, hedonistic fantasies.",64,Mary Harron,Christian Bale,Justin Theroux,Josh Lucas,Bill Sage,490062,"15,070,285" "https://m.media-amazon.com/images/M/MV5BMmU5ZjFmYjQtYmNjZC00Yjk4LWI1ZTQtZDJiMjM0YjQyNDU0L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Lola rennt,1998,UA,81 min,"Crime, Drama, Thriller",7.6,"After a botched money delivery, Lola has 20 minutes to come up with 100,000 Deutschmarks.",77,Tom Tykwer,Franka Potente,Moritz Bleibtreu,Herbert Knaup,Nina Petri,188317,"7,267,585" "https://m.media-amazon.com/images/M/MV5BYjEzMTM2NjAtNWFmZC00MTVlLTgyMmQtMGQyNTFjZDk5N2NmXkEyXkFqcGdeQXVyNzQ1ODk3MTQ@._V1_UX67_CR0,0,67,98_AL_.jpg",The Thin Red Line,1998,A,170 min,"Drama, War",7.6,"Adaptation of James Jones' autobiographical 1962 novel, focusing on the conflict at Guadalcanal during the second World War.",78,Terrence Malick,Jim Caviezel,Sean Penn,Nick Nolte,Kirk Acevedo,172710,"36,400,491" "https://m.media-amazon.com/images/M/MV5BODkxNGQ1NWYtNzg0Ny00Yjg3LThmZTItMjE2YjhmZTQ0ODY5XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Mulan,1998,U,88 min,"Animation, Adventure, Family",7.6,"To save her father from death in the army, a young maiden secretly goes in his place and becomes one of China's greatest heroines in the process.",71,Tony Bancroft,Barry Cook,Ming-Na Wen,Eddie Murphy,BD Wong,256906,"120,620,254" "https://m.media-amazon.com/images/M/MV5BNjA2ZDY3ZjYtZmNiMC00MDU5LTgxMWEtNzk1YmI3NzdkMTU0XkEyXkFqcGdeQXVyNjQyMjcwNDM@._V1_UX67_CR0,0,67,98_AL_.jpg",Fear and Loathing in Las Vegas,1998,R,118 min,"Adventure, Comedy, Drama",7.6,An oddball journalist and his psychopathic lawyer travel to Las Vegas for a series of psychedelic escapades.,41,Terry Gilliam,Johnny Depp,Benicio Del Toro,Tobey Maguire,Michael Lee Gogin,259753,"10,680,275" "https://m.media-amazon.com/images/M/MV5BMTkyNTAzZDYtNWUzYi00ODVjLTliZjYtNjc2YzJmODZhNTg3XkEyXkFqcGdeQXVyNjUxMDQ0MTg@._V1_UY98_CR6,0,67,98_AL_.jpg",Funny Games,1997,A,108 min,"Crime, Drama, Thriller",7.6,"Two violent young men take a mother, father, and son hostage in their vacation cabin and force them to play sadistic ""games"" with one another for their own amusement.",69,Michael Haneke,Susanne Lothar,Ulrich Mühe,Arno Frisch,Frank Giering,65058, "https://m.media-amazon.com/images/M/MV5BMGExOGExM2UtNWM5ZS00OWEzLTllNzYtM2NlMTJlYjBlZTJkXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Dark City,1998,A,100 min,"Mystery, Sci-Fi, Thriller",7.6,"A man struggles with memories of his past, which include a wife he cannot remember and a nightmarish world no one else ever seems to wake up from.",66,Alex Proyas,Rufus Sewell,Kiefer Sutherland,Jennifer Connelly,William Hurt,187927,"14,378,331" "https://m.media-amazon.com/images/M/MV5BMzk1MmI4NzAtOGRiNS00YjY1LTllNmEtZDhiZDM4MjU2NTMxXkEyXkFqcGdeQXVyNjc3MjQzNTI@._V1_UY98_CR1,0,67,98_AL_.jpg",Sleepers,1996,UA,147 min,"Crime, Drama, Thriller",7.6,"After a prank goes disastrously wrong, a group of boys are sent to a detention center where they are brutalized. Thirteen years later, an unexpected random encounter with a former guard gives them a chance for revenge.",49,Barry Levinson,Robert De Niro,Kevin Bacon,Brad Pitt,Jason Patric,186734,"49,100,000" "https://m.media-amazon.com/images/M/MV5BYWUxOWY4NDctMDFmMS00ZTQwLWExMGEtODg0ZWNhOTE5NzZmXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UY98_CR0,0,67,98_AL_.jpg",Lost Highway,1997,A,134 min,"Mystery, Thriller",7.6,"Anonymous videotapes presage a musician's murder conviction, and a gangster's girlfriend leads a mechanic astray.",52,David Lynch,Bill Pullman,Patricia Arquette,John Roselius,Louis Eppolito,131101,"3,796,699" "https://m.media-amazon.com/images/M/MV5BNzk1MjU3MDQyMl5BMl5BanBnXkFtZTcwNjc1OTM2MQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Sense and Sensibility,1995,U,136 min,"Drama, Romance",7.6,"Rich Mr. Dashwood dies, leaving his second wife and her three daughters poor by the rules of inheritance. The two eldest daughters are the title opposites.",84,Ang Lee,Emma Thompson,Kate Winslet,James Fleet,Tom Wilkinson,102598,"43,182,776" "https://m.media-amazon.com/images/M/MV5BZjI0ZWFiMmQtMjRlZi00ZmFhLWI4NmYtMjQ5YmY0MzIyMzRiXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Die Hard: With a Vengeance,1995,A,128 min,"Action, Adventure, Thriller",7.6,"John McClane and a Harlem store owner are targeted by German terrorist Simon in New York City, where he plans to rob the Federal Reserve Building.",58,John McTiernan,Bruce Willis,Jeremy Irons,Samuel L. Jackson,Graham Greene,364420,"100,012,499" "https://m.media-amazon.com/images/M/MV5BYTJlZmQ1OTAtODQzZi00NGIzLWI1MmEtZGE4NjFlOWRhODIyXkEyXkFqcGdeQXVyNTc1NTQxODI@._V1_UY98_CR0,0,67,98_AL_.jpg",Dead Man,1995,R,121 min,"Adventure, Drama, Fantasy",7.6,"On the run after murdering a man, accountant William Blake encounters a strange aboriginal American man named Nobody who prepares him for his journey into the spiritual world.",62,Jim Jarmusch,Johnny Depp,Gary Farmer,Crispin Glover,Lance Henriksen,90442,"1,037,847" "https://m.media-amazon.com/images/M/MV5BNmRiZDZkN2EtNWI5ZS00ZDg3LTgyNDItMWI5NjVlNmE5ODJiXkEyXkFqcGdeQXVyMjQwMjk0NjI@._V1_UX67_CR0,0,67,98_AL_.jpg",The Bridges of Madison County,1995,A,135 min,"Drama, Romance",7.6,Photographer Robert Kincaid wanders into the life of housewife Francesca Johnson for four days in the 1960s.,69,Clint Eastwood,Clint Eastwood,Meryl Streep,Annie Corley,Victor Slezak,73172,"71,516,617" "https://m.media-amazon.com/images/M/MV5BNjEzYjJmNzgtNDkwNy00MTQ4LTlmMWMtNzA4YjE2NjI0ZDg4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg",Apollo 13,PG,U,140 min,"Adventure, Drama, History",7.6,NASA must devise a strategy to return Apollo 13 to Earth safely after the spacecraft undergoes massive internal damage putting the lives of the three astronauts on board in jeopardy.,77,Ron Howard,Tom Hanks,Bill Paxton,Kevin Bacon,Gary Sinise,269197,"173,837,933" "https://m.media-amazon.com/images/M/MV5BNTliYTI1YTctMTE0Mi00NDM0LThjZDgtYmY3NGNiODBjZjAwXkEyXkFqcGdeQXVyMTAwMzUyOTc@._V1_UX67_CR0,0,67,98_AL_.jpg",Trois couleurs: Blanc,1994,U,92 min,"Comedy, Drama, Romance",7.6,"After his wife divorces him, a Polish immigrant plots to get even with her.",88,Krzysztof Kieslowski,Zbigniew Zamachowski,Julie Delpy,Janusz Gajos,Jerzy Stuhr,64390,"1,464,625" "https://m.media-amazon.com/images/M/MV5BYjcxMzM3OWMtNmM3Yy00YzBkLTkxMmQtMDk4MmM3Y2Y4MDliL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",Falling Down,1993,R,113 min,"Action, Crime, Drama",7.6,An ordinary man frustrated with the various flaws he sees in society begins to psychotically and violently lash out against them.,56,Joel Schumacher,Michael Douglas,Robert Duvall,Barbara Hershey,Rachel Ticotin,171640,"40,903,593" "https://m.media-amazon.com/images/M/MV5BMTM5MDY5MDQyOV5BMl5BanBnXkFtZTgwMzM3NzMxMDE@._V1_UX67_CR0,0,67,98_AL_.jpg",Dazed and Confused,1993,U,102 min,Comedy,7.6,The adventures of high school and junior high students on the last day of school in May 1976.,78,Richard Linklater,Jason London,Wiley Wiggins,Matthew McConaughey,Rory Cochrane,165465,"7,993,039" "https://m.media-amazon.com/images/M/MV5BMTQxNDYzMTg1M15BMl5BanBnXkFtZTgwNzk4MDgxMTE@._V1_UX67_CR0,0,67,98_AL_.jpg",My Cousin Vinny,1992,UA,120 min,"Comedy, Crime",7.6,"Two New Yorkers accused of murder in rural Alabama while on their way back to college call in the help of one of their cousins, a loudmouth lawyer with no trial experience.",68,Jonathan Lynn,Joe Pesci,Marisa Tomei,Ralph Macchio,Mitchell Whitfield,107325,"52,929,168" "https://m.media-amazon.com/images/M/MV5BMTY5NjI2MjQxMl5BMl5BanBnXkFtZTgwMDA2MzM2NzE@._V1_UY98_CR0,0,67,98_AL_.jpg",Omohide poro poro,1991,U,118 min,"Animation, Drama, Romance",7.6,A twenty-seven-year-old office worker travels to the countryside while reminiscing about her childhood in Tokyo.,90,Isao Takahata,Miki Imai,Toshirô Yanagiba,Yoko Honna,Mayumi Izuka,27071,"453,243" "https://m.media-amazon.com/images/M/MV5BNjg5ZDM0MTEtYTZmNC00NDJiLWI5MTktYzk4N2QxY2IxZTc2L2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UY98_CR3,0,67,98_AL_.jpg",Delicatessen,1991,R,99 min,"Comedy, Crime",7.6,Post-apocalyptic surrealist black comedy about the landlord of an apartment building who occasionally prepares a delicacy for his odd tenants.,66,Marc Caro,Jean-Pierre Jeunet,Marie-Laure Dougnac,Dominique Pinon,Pascal Benezech,80487,"1,794,187" "https://m.media-amazon.com/images/M/MV5BMzFkM2YwOTQtYzk2Mi00N2VlLWE3NTItN2YwNDg1YmY0ZDNmXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg",Home Alone,1990,U,103 min,"Comedy, Family",7.6,An eight-year-old troublemaker must protect his house from a pair of burglars when he is accidentally left home alone by his family during Christmas vacation.,63,Chris Columbus,Macaulay Culkin,Joe Pesci,Daniel Stern,John Heard,488817,"285,761,243" "https://m.media-amazon.com/images/M/MV5BNWFlYWY2YjYtNjdhNi00MzVlLTg2MTMtMWExNzg4NmM5NmEzXkEyXkFqcGdeQXVyMDk5Mzc5MQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",The Godfather: Part III,1990,A,162 min,"Crime, Drama",7.6,"Follows Michael Corleone, now in his 60s, as he seeks to free his family from crime and find a suitable successor to his empire.",60,Francis Ford Coppola,Al Pacino,Diane Keaton,Andy Garcia,Talia Shire,359809,"66,666,062" "https://m.media-amazon.com/images/M/MV5BMjE0ODEwNjM2NF5BMl5BanBnXkFtZTcwMjU2Mzg3NA@@._V1_UX67_CR0,0,67,98_AL_.jpg",When Harry Met Sally...,1989,UA,95 min,"Comedy, Drama, Romance",7.6,"Harry and Sally have known each other for years, and are very good friends, but they fear sex would ruin the friendship.",76,Rob Reiner,Billy Crystal,Meg Ryan,Carrie Fisher,Bruno Kirby,195663,"92,823,600" "https://m.media-amazon.com/images/M/MV5BN2JlZTBhYTEtZDE3OC00NTA3LTk5NTQtNjg5M2RjODllM2M0XkEyXkFqcGdeQXVyNjk1Njg5NTA@._V1_UX67_CR0,0,67,98_AL_.jpg",The Little Mermaid,1989,U,83 min,"Animation, Family, Fantasy",7.6,A mermaid princess makes a Faustian bargain in an attempt to become human and win a prince's love.,88,Ron Clements,John Musker,Jodi Benson,Samuel E. Wright,Rene Auberjonois,237696,"111,543,479" "https://m.media-amazon.com/images/M/MV5BODk1ZWM4ZjItMjFhZi00MDMxLTgxNmYtODFhNWZlZTkwM2UwXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg",The Naked Gun: From the Files of Police Squad!,1988,U,85 min,"Comedy, Crime",7.6,Incompetent police Detective Frank Drebin must foil an attempt to assassinate Queen Elizabeth II.,76,David Zucker,Leslie Nielsen,Priscilla Presley,O.J. Simpson,Ricardo Montalban,152871,"78,756,177" "https://m.media-amazon.com/images/M/MV5BM2I1ZWNkYjEtYWY3ZS00MmMwLWI5OTEtNWNkZjNiYjIwNzY0XkEyXkFqcGdeQXVyNTI4MjkwNjA@._V1_UX67_CR0,0,67,98_AL_.jpg","Planes, Trains & Automobiles",1987,U,93 min,"Comedy, Drama",7.6,A man must struggle to travel home for Thanksgiving with a lovable oaf of a shower curtain ring salesman as his only companion.,72,John Hughes,Steve Martin,John Candy,Laila Robins,Michael McKean,124773,"49,530,280" "https://m.media-amazon.com/images/M/MV5BZTllNWNlZjctMWQwMS00ZDc3LTg5ZjMtNzhmNzhjMmVhYTFlXkEyXkFqcGdeQXVyNTc1NTQxODI@._V1_UX67_CR0,0,67,98_AL_.jpg",Lethal Weapon,1987,A,109 min,"Action, Crime, Thriller",7.6,Two newly paired cops who are complete opposites must put aside their differences in order to catch a gang of drug smugglers.,68,Richard Donner,Mel Gibson,Danny Glover,Gary Busey,Mitchell Ryan,236894,"65,207,127" "https://m.media-amazon.com/images/M/MV5BZmI5YzM1MjItMzFmNy00NGFkLThlMDUtZjZmYTZkM2QxMjU3XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg",Blood Simple,1984,A,99 min,"Crime, Drama, Thriller",7.6,"The owner of a seedy small-town Texas bar discovers that one of his employees is having an affair with his wife. A chaotic chain of misunderstandings, lies and mischief ensues after he devises a plot to have them murdered.",82,Joel Coen,Ethan Coen,John Getz,Frances McDormand,Dan Hedaya,87745,"2,150,000" "https://m.media-amazon.com/images/M/MV5BNWQ4MGZlZmYtZjY0MS00N2JhLWE0NmMtOTMwMTk4NDQ4NjE2XkEyXkFqcGdeQXVyNTI4MjkwNjA@._V1_UX67_CR0,0,67,98_AL_.jpg",On Golden Pond,1981,UA,109 min,Drama,7.6,"Norman is a curmudgeon with an estranged relationship with his daughter Chelsea. At Golden Pond, he and his wife nevertheless agree to care for Billy, the son of Chelsea's new boyfriend, and a most unexpected relationship blooms.",68,Mark Rydell,Katharine Hepburn,Henry Fonda,Jane Fonda,Doug McKeon,27650,"119,285,432" "https://m.media-amazon.com/images/M/MV5BN2VlNjNhZWQtMTY2OC00Y2E1LWJkNGUtMDU4M2ViNzliMGYwXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Mad Max 2,1981,A,96 min,"Action, Adventure, Sci-Fi",7.6,"In the post-apocalyptic Australian wasteland, a cynical drifter agrees to help a small, gasoline-rich community escape a horde of bandits.",77,George Miller,Mel Gibson,Bruce Spence,Michael Preston,Max Phipps,166588,"12,465,371" "https://m.media-amazon.com/images/M/MV5BYTU2MWRiMTMtYzAzZi00NGYzLTlkMDEtNWQ3MzZlNTJlNzZkL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",The Warriors,1979,UA,92 min,"Action, Crime, Thriller",7.6,"In the near future, a charismatic leader summons the street gangs of New York City in a bid to take it over. When he is killed, The Warriors are falsely blamed and now must fight their way home while every other gang is hunting them down.",65,Walter Hill,Michael Beck,James Remar,Dorsey Wright,Brian Tyler,93878,"22,490,039" "https://m.media-amazon.com/images/M/MV5BMGQ0OGM5YjItYzYyMi00NmVmLWI3ODMtMTY2NGRkZmI5MWU2XkEyXkFqcGdeQXVyMzI0NDc4ODY@._V1_UX67_CR0,0,67,98_AL_.jpg",The Muppet Movie,1979,U,95 min,"Adventure, Comedy, Family",7.6,"Kermit and his newfound friends trek across America to find success in Hollywood, but a frog legs merchant is after Kermit.",74,James Frawley,Jim Henson,Frank Oz,Jerry Nelson,Richard Hunt,32802,"76,657,000" "https://m.media-amazon.com/images/M/MV5BNDQ3MzNjMDItZjE0ZS00ZTYxLTgxNTAtM2I4YjZjNWFjYjJlL2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Escape from Alcatraz,1979,A,112 min,"Action, Biography, Crime",7.6,"Alcatraz is the most secure prison of its time. It is believed that no one can ever escape from it, until three daring men make a possible successful attempt at escaping from one of the most infamous prisons in the world.",76,Don Siegel,Clint Eastwood,Patrick McGoohan,Roberts Blossom,Jack Thibeau,121731,"43,000,000" "https://m.media-amazon.com/images/M/MV5BMzZiODUwNzktNzBiZi00MDc4LThkMGMtZmE3MTE0M2E1MTM3L2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX67_CR0,0,67,98_AL_.jpg",Watership Down,1978,U,91 min,"Animation, Adventure, Drama",7.6,"Hoping to escape destruction by human developers and save their community, a colony of rabbits, led by Hazel and Fiver, seek out a safe place to set up a new warren.",64,Martin Rosen,John Hubley,John Hurt,Richard Briers,Ralph Richardson,33656, "https://m.media-amazon.com/images/M/MV5BNDU1MjQ0YWMtMWQ2MS00NTdmLTg1MGItNDA5NTNkNTRhOTIyXkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_UX67_CR0,0,67,98_AL_.jpg",Midnight Express,1978,A,121 min,"Biography, Crime, Drama",7.6,"Billy Hayes, an American college student, is caught smuggling drugs out of Turkey and thrown into prison.",59,Alan Parker,Brad Davis,Irene Miracle,Bo Hopkins,Paolo Bonacelli,73662,"35,000,000" "https://m.media-amazon.com/images/M/MV5BMjM1NjE5NjQxN15BMl5BanBnXkFtZTgwMjYzMzQxMDE@._V1_UX67_CR0,0,67,98_AL_.jpg",Close Encounters of the Third Kind,1977,U,138 min,"Drama, Sci-Fi",7.6,"Roy Neary, an electric lineman, watches how his quiet and ordinary daily life turns upside down after a close encounter with a UFO.",90,Steven Spielberg,Richard Dreyfuss,François Truffaut,Teri Garr,Melinda Dillon,184966,"132,088,635" "https://m.media-amazon.com/images/M/MV5BYzZhODNiOWYtMmNkNS00OTFhLTkzYzktYTQ4ZmNmZWMyN2ZiL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",The Long Goodbye,1973,A,112 min,"Comedy, Crime, Drama",7.6,"Private investigator Philip Marlowe helps a friend out of a jam, but in doing so gets implicated in his wife's murder.",87,Robert Altman,Elliott Gould,Nina van Pallandt,Sterling Hayden,Mark Rydell,26337,"959,000" "https://m.media-amazon.com/images/M/MV5BYjRmY2VjN2ItMzBmYy00YTRjLWFiMTgtNGZhNWJjMjk3YjZjXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Giù la testa,1971,PG,157 min,"Drama, War, Western",7.6,A low-life bandit and an I.R.A. explosives expert rebel against the government and become heroes of the Mexican Revolution.,77,Sergio Leone,Rod Steiger,James Coburn,Romolo Valli,Maria Monti,30144,"696,690" "https://m.media-amazon.com/images/M/MV5BMzAyNDUwYzUtN2NlMC00ODliLWExMjgtMGMzNmYzZmUwYTg1XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Kelly's Heroes,1970,GP,144 min,"Adventure, Comedy, War",7.6,A group of U.S. soldiers sneaks across enemy lines to get their hands on a secret stash of Nazi treasure.,50,Brian G. Hutton,Clint Eastwood,Telly Savalas,Don Rickles,Carroll O'Connor,45338,"1,378,435" "https://m.media-amazon.com/images/M/MV5BMjAwMTExODExNl5BMl5BanBnXkFtZTgwMjM2MDgyMTE@._V1_UX67_CR0,0,67,98_AL_.jpg",The Jungle Book,1967,U,78 min,"Animation, Adventure, Family",7.6,Bagheera the Panther and Baloo the Bear have a difficult time trying to convince a boy to leave the jungle for human civilization.,65,Wolfgang Reitherman,Phil Harris,Sebastian Cabot,Louis Prima,Bruce Reitherman,166409,"141,843,612" "https://m.media-amazon.com/images/M/MV5BYTE4YWU0NjAtMjNiYi00MTNiLTgwYzctZjk0YjY5NGVhNWQwXkEyXkFqcGdeQXVyMTY5Nzc4MDY@._V1_UY98_CR0,0,67,98_AL_.jpg",Blowup,1966,A,111 min,"Drama, Mystery, Thriller",7.6,A fashion photographer unknowingly captures a death on film after following two lovers in a park.,82,Michelangelo Antonioni,David Hemmings,Vanessa Redgrave,Sarah Miles,John Castle,56513, "https://m.media-amazon.com/images/M/MV5BZjQyMGUwNzAtNTc2MC00Y2FjLThlM2ItZGRjNzM0OWVmZGYyXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",A Hard Day's Night,1964,U,87 min,"Comedy, Music, Musical",7.6,"Over two ""typical"" days in the life of The Beatles, the boys struggle to keep themselves and Sir Paul McCartney's mischievous grandfather in check while preparing for a live television performance.",96,Richard Lester,John Lennon,Paul McCartney,George Harrison,Ringo Starr,40351,"13,780,024" "https://m.media-amazon.com/images/M/MV5BNGEwMTRmZTQtMDY4Ni00MTliLTk5ZmMtOWMxYWMyMTllMDg0L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Breakfast at Tiffany's,1961,A,115 min,"Comedy, Drama, Romance",7.6,"A young New York socialite becomes interested in a young man who has moved into her apartment building, but her past threatens to get in the way.",76,Blake Edwards,Audrey Hepburn,George Peppard,Patricia Neal,Buddy Ebsen,166544, "https://m.media-amazon.com/images/M/MV5BODk3YjdjZTItOGVhYi00Mjc2LTgzMDAtMThmYTVkNTBlMWVkXkEyXkFqcGdeQXVyNDY2MTk1ODk@._V1_UX67_CR0,0,67,98_AL_.jpg",Giant,1956,G,201 min,"Drama, Western",7.6,Sprawling epic covering the life of a Texas cattle rancher and his family and associates.,84,George Stevens,Elizabeth Taylor,Rock Hudson,James Dean,Carroll Baker,34075, "https://m.media-amazon.com/images/M/MV5BM2U3YzkxNGMtYWE0YS00ODk0LTk1ZGEtNjk3ZTE0MTk4MzJjXkEyXkFqcGdeQXVyNDk0MDg4NDk@._V1_UX67_CR0,0,67,98_AL_.jpg",From Here to Eternity,1953,Passed,118 min,"Drama, Romance, War",7.6,"In Hawaii in 1941, a private is cruelly punished for not boxing on his unit's team, while his captain's wife and second-in-command are falling in love.",85,Fred Zinnemann,Burt Lancaster,Montgomery Clift,Deborah Kerr,Donna Reed,43374,"30,500,000" "https://m.media-amazon.com/images/M/MV5BZTBmMjUyMjItYTM4ZS00MjAwLWEyOGYtYjMyZTUxN2I3OTMxXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg",Lifeboat,1944,,97 min,"Drama, War",7.6,Several survivors of a torpedoed merchant ship in World War II find themselves in the same lifeboat with one of the crew members of the U-boat that sank their ship.,78,Alfred Hitchcock,Tallulah Bankhead,John Hodiak,Walter Slezak,William Bendix,26471, "https://m.media-amazon.com/images/M/MV5BMTY5ODAzMTcwOF5BMl5BanBnXkFtZTcwMzYxNDYyNA@@._V1_UX67_CR0,0,67,98_AL_.jpg",The 39 Steps,1935,,86 min,"Crime, Mystery, Thriller",7.6,"A man in London tries to help a counter-espionage Agent. But when the Agent is killed, and the man stands accused, he must go on the run to save himself and stop a spy ring which is trying to steal top secret information.",93,Alfred Hitchcock,Robert Donat,Madeleine Carroll,Lucie Mannheim,Godfrey Tearle,51853, ================================================ FILE: docs/third-party/data-science/files/matplotlib/mwh-spain-2021-clean.csv ================================================ Fecha,MWh 2021-01-02,48.72 2021-01-03,46.93 2021-01-04,59.85 2021-01-05,67.55 2021-01-06,70.6 2021-01-07,88.93 2021-01-08,94.99 2021-01-09,80.66 2021-01-10,66.27 2021-01-11,82.45 2021-01-12,84.25 2021-01-13,89.94 2021-01-14,87.25 2021-01-15,78.42 2021-01-16,67.72 2021-01-17,64.51 2021-01-18,82.08 2021-01-19,76.47 2021-01-20,51.66 2021-01-21,41.64 2021-01-22,41.97 2021-01-23,27.5 2021-01-24,28.73 2021-01-25,59.42 2021-01-26,65.98 2021-01-27,59.77 2021-01-28,55.39 2021-01-29,47.39 2021-01-30,4.19 2021-01-31,1.42 2021-02-01,11.9 2021-02-02,26.34 2021-02-03,36.26 2021-02-04,52.2 2021-02-05,50.99 2021-02-06,36.02 2021-02-07,12.58 2021-02-08,8.3 2021-02-09,7.1 2021-02-10,26.26 2021-02-11,48.0 2021-02-12,36.94 2021-02-13,36.9 2021-02-14,13.38 2021-02-15,14.85 2021-02-16,23.98 2021-02-17,41.93 2021-02-18,36.18 2021-02-19,22.27 2021-02-20,2.19 2021-02-21,5.67 2021-02-22,39.39 2021-02-23,43.65 2021-02-24,24.82 2021-02-25,45.83 2021-02-26,46.09 2021-02-27,29.24 2021-02-28,18.53 2021-03-01,42.24 2021-03-02,52.67 2021-03-03,53.24 2021-03-04,55.43 2021-03-05,52.45 2021-03-06,45.07 2021-03-07,47.05 2021-03-08,54.43 2021-03-09,56.88 2021-03-10,55.87 2021-03-11,40.76 2021-03-12,40.16 2021-03-13,27.75 2021-03-14,24.54 2021-03-15,47.59 2021-03-16,34.51 2021-03-17,17.35 2021-03-18,32.77 2021-03-19,29.66 2021-03-20,22.19 2021-03-21,30.28 2021-03-22,55.79 2021-03-23,64.47 2021-03-24,64.82 2021-03-25,66.35 2021-03-26,60.31 2021-03-27,41.11 2021-03-28,38.6 2021-03-29,45.69 2021-03-30,53.53 2021-03-31,55.16 2021-04-01,52.12 2021-04-02,51.0 2021-04-03,35.18 2021-04-04,27.74 2021-04-05,44.55 2021-04-06,55.97 2021-04-07,66.11 2021-04-08,69.78 2021-04-09,71.87 2021-04-10,65.01 2021-04-11,52.01 2021-04-12,63.04 2021-04-13,75.5 2021-04-14,73.96 2021-04-15,68.19 2021-04-16,68.93 2021-04-17,64.19 2021-04-18,64.54 2021-04-19,79.03 2021-04-20,78.58 2021-04-21,79.6 2021-04-22,74.41 2021-04-23,68.56 2021-04-24,57.31 2021-04-25,61.09 2021-04-26,75.99 2021-04-27,77.95 2021-04-28,74.4 2021-04-29,74.67 2021-04-30,79.29 2021-05-01,59.36 2021-05-02,61.39 2021-05-03,73.54 2021-05-04,81.27 2021-05-05,75.71 2021-05-06,73.11 2021-05-07,73.5 2021-05-08,47.25 2021-05-09,10.53 2021-05-10,59.26 2021-05-11,54.05 2021-05-12,53.04 2021-05-13,59.8 2021-05-14,71.53 2021-05-15,43.16 2021-05-16,26.65 2021-05-17,76.82 2021-05-18,77.65 2021-05-19,77.11 2021-05-20,79.79 2021-05-21,69.54 2021-05-22,66.41 2021-05-23,68.67 2021-05-24,67.4 2021-05-25,76.64 2021-05-26,80.72 2021-05-27,86.23 2021-05-28,88.95 2021-05-29,81.77 2021-05-30,71.93 2021-05-31,88.08 2021-06-01,86.56 2021-06-02,84.85 2021-06-03,79.8 2021-06-04,80.59 2021-06-05,76.17 2021-06-06,68.87 2021-06-07,79.69 2021-06-08,82.33 2021-06-09,81.6 2021-06-10,83.34 2021-06-11,82.53 2021-06-12,77.6 2021-06-13,79.2 2021-06-14,88.47 2021-06-15,90.95 2021-06-16,94.63 2021-06-17,93.0 2021-06-18,92.67 2021-06-19,87.22 2021-06-20,52.63 2021-06-21,82.55 2021-06-22,89.53 2021-06-23,89.88 2021-06-24,85.73 2021-06-25,86.57 2021-06-26,83.99 2021-06-27,64.21 2021-06-28,86.44 2021-06-29,93.49 2021-06-30,93.89 2021-07-01,92.44 2021-07-02,99.8 2021-07-03,94.23 2021-07-04,79.43 2021-07-05,93.85 2021-07-06,93.57 2021-07-07,98.72 2021-07-08,93.67 2021-07-09,93.5 2021-07-10,90.48 2021-07-11,90.77 2021-07-12,86.68 2021-07-13,94.39 2021-07-14,84.46 2021-07-15,87.18 2021-07-16,87.32 2021-07-17,90.95 2021-07-18,74.19 2021-07-19,98.8 2021-07-20,101.82 2021-07-21,106.57 2021-07-22,101.52 2021-07-23,95.89 2021-07-24,92.02 2021-07-25,93.2 2021-07-26,99.52 2021-07-27,99.05 2021-07-28,95.57 2021-07-29,98.83 2021-07-30,95.37 2021-07-31,61.09 2021-08-01,76.89 2021-08-02,103.07 2021-08-03,106.27 2021-08-04,105.24 2021-08-05,101.6 2021-08-06,97.22 2021-08-07,65.64 2021-08-08,85.29 2021-08-09,106.74 2021-08-10,111.88 2021-08-11,113.99 2021-08-12,115.83 2021-08-13,117.29 2021-08-14,114.63 2021-08-15,110.02 2021-08-16,88.92 2021-08-17,89.5 2021-08-18,105.4 2021-08-19,113.4 2021-08-20,117.14 2021-08-21,110.14 2021-08-22,100.51 2021-08-23,99.76 2021-08-24,102.06 2021-08-25,116.73 2021-08-26,122.76 2021-08-27,118.99 2021-08-28,110.22 2021-08-29,102.03 2021-08-30,124.45 2021-08-31,130.53 2021-09-01,132.47 2021-09-02,140.23 2021-09-03,137.7 2021-09-04,134.89 2021-09-05,128.7 2021-09-06,132.65 2021-09-07,127.36 2021-09-08,135.65 2021-09-09,141.71 2021-09-10,152.32 2021-09-11,150.78 2021-09-12,144.18 2021-09-13,154.16 2021-09-14,153.43 2021-09-15,172.78 2021-09-16,188.18 2021-09-17,166.29 2021-09-18,159.37 2021-09-19,146.57 2021-09-20,156.75 2021-09-21,150.26 2021-09-22,175.87 2021-09-23,165.19 ================================================ FILE: docs/third-party/data-science/files/matplotlib/mwh_spain.py ================================================ import matplotlib.pyplot as plt import pandas as pd from matplotlib.dates import DateFormatter, DayLocator df = pd.read_csv( 'pypi/datascience/files/mwh-spain-2021-clean.csv', parse_dates=['Fecha'], index_col='Fecha', ) fig, ax = plt.subplots(figsize=(6, 3), dpi=100) x = df.index y = df.iloc[:, 0] ax.plot(x, y, color='goldenrod') plt.fill_between(x, y, alpha=0.2, color='gold') # área # Anotación del valor máximo xmax, ymax = y.idxmax(), y.max() ax.annotate( f'max={ymax}€', xy=(xmax, ymax), xytext=(-75, 0), textcoords='offset points', ha='center', va='center', arrowprops=dict(facecolor='black', shrink=0.05, width=3), ) # Estilos para el eje x ax.set_xlim(x.min(), x.max()) ax.xaxis.set_major_locator(DayLocator(interval=8)) ax.xaxis.set_major_formatter(DateFormatter('%d %b')) ax.tick_params(axis='x', which='major', rotation=90) # Estilos para el eje y ax.set_ylim(0, 200) # Rejilla ax.grid(color='lightgray', linestyle='dashed') ax.spines['top'].set_visible(False) ax.spines['right'].set_visible(False) fig.tight_layout() ================================================ FILE: docs/third-party/data-science/files/matplotlib/nba-data.csv ================================================ ,player_name,team_abbreviation,age,player_height,player_weight,college,country,draft_year,draft_round,draft_number,gp,pts,reb,ast,net_rating,oreb_pct,dreb_pct,usg_pct,ts_pct,ast_pct,season 0,Travis Knight,LAL,22.0,213.36,106.59411999999999,Connecticut,USA,1996,1,29,71,4.8,4.5,0.5,6.2,0.127,0.182,0.142,0.536,0.052000000000000005,1996-97 1,Matt Fish,MIA,27.0,210.82,106.59411999999999,North Carolina-Wilmington,USA,1992,2,50,6,0.3,0.8,0.0,-15.1,0.14300000000000002,0.267,0.265,0.33299999999999996,0.0,1996-97 2,Matt Bullard,HOU,30.0,208.28,106.59411999999999,Iowa,USA,Undrafted,Undrafted,Undrafted,71,4.5,1.6,0.9,0.9,0.016,0.115,0.151,0.535,0.099,1996-97 3,Marty Conlon,BOS,29.0,210.82,111.13004,Providence,USA,Undrafted,Undrafted,Undrafted,74,7.8,4.4,1.4,-9.0,0.083,0.152,0.16699999999999998,0.542,0.10099999999999999,1996-97 4,Martin Muursepp,DAL,22.0,205.74,106.59411999999999,None,USA,1996,1,25,42,3.7,1.6,0.5,-14.5,0.109,0.11800000000000001,0.233,0.48200000000000004,0.114,1996-97 5,Martin Lewis,TOR,22.0,198.12,102.0582,Seward County Community College,USA,1995,2,50,9,1.6,0.7,0.4,-3.5,0.087,0.045,0.135,0.47,0.125,1996-97 6,Mark West,CLE,36.0,208.28,111.58363200000001,Old Dominion,USA,1983,2,30,70,3.2,2.7,0.3,3.5,0.092,0.146,0.13699999999999998,0.555,0.034,1996-97 7,Mark Strickland,MIA,26.0,208.28,99.79024,Temple,USA,Undrafted,Undrafted,Undrafted,31,2.0,1.2,0.0,-17.1,0.109,0.152,0.23199999999999998,0.44799999999999995,0.013000000000000001,1996-97 8,Mark Price,GSW,33.0,182.88,81.64656,Georgia Tech,USA,1986,2,25,70,11.3,2.6,4.9,-3.1,0.023,0.08800000000000001,0.192,0.597,0.289,1996-97 9,Mark Jackson,IND,32.0,190.5,83.91452,St. John's (NY),USA,1987,1,18,82,9.9,4.8,11.4,-2.0,0.035,0.11599999999999999,0.155,0.525,0.46399999999999997,1996-97 10,Mark Hendrickson,PHI,23.0,205.74,99.79024,Washington State,USA,1996,2,31,29,2.9,3.2,0.1,-5.1,0.113,0.201,0.133,0.48100000000000004,0.013999999999999999,1996-97 11,Mark Davis,PHI,24.0,200.66,95.25432,Texas Tech,USA,1995,2,48,75,8.5,4.3,1.8,-7.4,0.086,0.122,0.177,0.525,0.125,1996-97 12,Mark Bryant,PHX,32.0,205.74,111.13004,Seton Hall,USA,1988,1,21,41,9.3,5.2,1.1,3.3,0.084,0.18600000000000003,0.16699999999999998,0.589,0.07200000000000001,1996-97 13,Mark Bradtke,PHI,28.0,208.28,120.20188,None,USA,Undrafted,Undrafted,Undrafted,36,1.6,1.9,0.2,0.9,0.107,0.17600000000000002,0.11800000000000001,0.46299999999999997,0.043,1996-97 14,Mario Elie,HOU,33.0,195.58,95.25432,American International,USA,1985,7,160,78,11.7,3.0,4.0,5.6,0.027999999999999997,0.075,0.139,0.662,0.172,1996-97 15,Marcus Camby,TOR,23.0,210.82,99.79024,Massachusetts,USA,1996,1,2,63,14.8,6.3,1.5,-1.5,0.079,0.165,0.24100000000000002,0.523,0.092,1996-97 16,Marcus Brown,POR,23.0,190.5,83.91452,Murray State,USA,1996,2,46,21,3.9,0.7,1.0,4.0,0.027000000000000003,0.07,0.221,0.523,0.16899999999999998,1996-97 17,Malik Sealy,LAC,27.0,203.2,90.7184,St. John's (NY),USA,1992,1,14,80,13.5,3.0,2.1,-8.0,0.027000000000000003,0.09,0.222,0.504,0.114,1996-97 18,Malik Rose,CHH,22.0,200.66,113.398,Drexel,USA,1996,2,44,54,3.0,3.0,0.6,1.3,0.16899999999999998,0.21899999999999997,0.161,0.515,0.08900000000000001,1996-97 19,Mahmoud Abdul-Rauf,SAC,28.0,185.42,73.481904,Louisiana State,USA,1990,1,3,75,13.7,1.6,2.5,-4.9,0.009000000000000001,0.059000000000000004,0.23399999999999999,0.524,0.154,1996-97 20,Lucious Harris,PHI,26.0,195.58,92.98635999999999,Long Beach State,USA,1993,2,28,54,5.4,1.3,0.9,-5.5,0.036000000000000004,0.065,0.184,0.466,0.105,1996-97 21,Luc Longley,CHI,28.0,218.44,132.448864,New Mexico,USA,1991,1,7,59,9.1,5.6,2.4,10.4,0.095,0.159,0.19699999999999998,0.499,0.141,1996-97 22,Loy Vaught,LAC,29.0,205.74,108.86208,Michigan,USA,1990,1,13,82,14.9,10.0,1.3,-7.7,0.08800000000000001,0.255,0.20800000000000002,0.523,0.07,1996-97 23,Lou Roe,GSW,24.0,200.66,99.79024,Massachusetts,USA,1995,2,30,17,2.4,0.8,0.4,-14.4,0.054000000000000006,0.069,0.249,0.355,0.10300000000000001,1996-97 24,Matt Geiger,CHH,27.0,215.9,111.13004,Georgia Tech,USA,1992,2,42,49,8.9,5.3,0.8,0.9,0.12,0.179,0.215,0.5379999999999999,0.065,1996-97 25,Matt Maloney,HOU,25.0,190.5,90.7184,Pennsylvania,USA,Undrafted,Undrafted,Undrafted,82,9.4,2.0,3.7,6.3,0.01,0.064,0.147,0.585,0.188,1996-97 26,Matt Steigenga,CHI,27.0,200.66,102.0582,Michigan State,USA,1992,2,52,2,1.5,1.5,1.0,-19.8,0.0,0.16699999999999998,0.341,0.307,0.33299999999999996,1996-97 27,Melvin Booker,GSW,24.0,187.96,83.91452,Missouri,USA,Undrafted,Undrafted,Undrafted,21,5.8,1.4,2.5,-3.8,0.018000000000000002,0.064,0.14400000000000002,0.536,0.196,1996-97 28,Pervis Ellison,BOS,30.0,205.74,95.25432,Louisville,USA,1989,1,1,6,2.5,4.3,0.7,1.2,0.08800000000000001,0.16699999999999998,0.09,0.41200000000000003,0.04,1996-97 29,Patrick Ewing,NYK,34.0,213.36,108.86208,Georgetown,Jamaica,1985,1,1,78,22.4,10.7,2.0,6.4,0.077,0.258,0.297,0.5479999999999999,0.106,1996-97 30,P.J. Brown,MIA,27.0,210.82,108.86208,Louisiana Tech,USA,1992,2,29,80,9.5,8.4,1.2,7.4,0.11,0.192,0.157,0.505,0.059000000000000004,1996-97 31,Otis Thorpe,DET,34.0,208.28,111.58363200000001,Providence,USA,1984,1,9,79,13.1,7.9,1.7,6.2,0.10800000000000001,0.182,0.2,0.563,0.08900000000000001,1996-97 32,Othella Harrington,HOU,23.0,205.74,106.59411999999999,Georgetown,USA,1996,2,30,57,4.8,3.5,0.3,0.4,0.10300000000000001,0.155,0.154,0.57,0.033,1996-97 33,Oliver Miller,TOR,27.0,205.74,140.61352,Arkansas,USA,1992,1,22,61,4.8,5.0,1.4,-1.0,0.107,0.204,0.141,0.539,0.11599999999999999,1996-97 34,Olden Polynice,SAC,32.0,213.36,113.398,Virginia,USA,1987,1,8,82,12.5,9.4,2.2,-3.2,0.11,0.203,0.19399999999999998,0.47600000000000003,0.1,1996-97 35,Nick Van Exel,LAL,25.0,185.42,83.007336,Cincinnati,USA,1993,2,37,79,15.3,2.9,8.5,3.8,0.017,0.071,0.209,0.518,0.358,1996-97 36,Nick Anderson,ORL,29.0,198.12,103.418976,Illinois,USA,1989,1,11,63,12.0,4.8,2.9,3.6,0.035,0.128,0.18,0.494,0.13699999999999998,1996-97 37,Nate McMillan,SEA,32.0,195.58,90.7184,North Carolina State,USA,1986,2,30,37,4.6,3.2,3.8,14.1,0.023,0.161,0.113,0.522,0.265,1996-97 38,Nate Driggers,BOS,23.0,195.58,97.52228000000001,Montevallo,USA,Undrafted,Undrafted,Undrafted,15,2.4,1.5,0.4,-24.0,0.079,0.098,0.162,0.366,0.078,1996-97 39,Lorenzo Williams,WAS,27.0,205.74,104.32616,Stetson,USA,Undrafted,Undrafted,Undrafted,19,2.4,3.6,0.2,-10.9,0.121,0.18100000000000002,0.087,0.66,0.022000000000000002,1996-97 40,Muggsy Bogues,CHH,32.0,160.02,63.956472,Wake Forest,USA,1987,1,12,65,8.0,2.2,7.2,6.0,0.017,0.07400000000000001,0.149,0.5539999999999999,0.366,1996-97 41,Moochie Norris,VAN,23.0,187.96,85.275296,West Florida,USA,1996,2,33,8,1.5,1.5,2.9,-30.5,0.038,0.105,0.149,0.248,0.418,1996-97 42,Monty Williams,SAS,25.0,203.2,102.0582,Notre Dame,USA,1994,1,24,65,9.0,3.2,1.4,-6.3,0.085,0.099,0.225,0.5429999999999999,0.127,1996-97 43,Mitchell Butler,POR,26.0,195.58,95.25432,UCLA,USA,Undrafted,Undrafted,Undrafted,49,3.0,1.1,0.6,4.6,0.046,0.07400000000000001,0.168,0.503,0.114,1996-97 44,Mitch Richmond,SAC,32.0,195.58,97.52228000000001,Kansas State,USA,1988,1,5,81,25.9,3.9,4.2,-2.0,0.022000000000000002,0.09699999999999999,0.294,0.578,0.203,1996-97 45,Mike Brown,PHX,33.0,208.28,117.93392,George Washington,USA,1985,3,69,6,2.7,4.2,0.8,1.7,0.141,0.271,0.109,0.488,0.08900000000000001,1996-97 46,Michael Smith,SAC,25.0,203.2,104.32616,Providence,USA,1994,2,35,81,6.5,9.5,2.4,-1.8,0.11800000000000001,0.239,0.11,0.545,0.11199999999999999,1996-97 47,Michael Jordan,CHI,34.0,198.12,97.975872,North Carolina,USA,1984,1,3,82,29.6,5.9,4.3,13.4,0.042,0.132,0.331,0.5670000000000001,0.20800000000000002,1996-97 48,Michael Hawkins,BOS,24.0,182.88,80.73937600000001,Xavier,USA,Undrafted,Undrafted,Undrafted,29,2.8,1.1,2.2,-10.3,0.027999999999999997,0.08199999999999999,0.126,0.536,0.281,1996-97 49,Michael Finley,DAL,24.0,200.66,97.52228000000001,Wisconsin,USA,1995,1,21,83,15.0,4.5,2.7,-6.5,0.036000000000000004,0.12,0.221,0.53,0.147,1996-97 50,Michael Curry,DET,28.0,195.58,95.25432,Georgia Southern,USA,Undrafted,Undrafted,Undrafted,81,3.9,1.5,0.5,6.7,0.024,0.094,0.12,0.5920000000000001,0.062,1996-97 51,Michael Cage,PHI,35.0,205.74,112.490816,San Diego State,USA,1984,1,14,82,1.8,3.9,0.5,-12.0,0.09699999999999999,0.193,0.062,0.475,0.053,1996-97 52,Mookie Blaylock,ATL,30.0,185.42,83.91452,Oklahoma,USA,1989,1,12,78,17.4,5.3,5.9,10.5,0.046,0.114,0.221,0.5479999999999999,0.272,1996-97 53,Pooh Richardson,LAC,31.0,185.42,81.64656,UCLA,USA,1989,1,10,59,5.6,1.7,2.9,-5.2,0.026000000000000002,0.08,0.17800000000000002,0.455,0.271,1996-97 54,Lorenzen Wright,LAC,21.0,210.82,108.86208,Memphis,USA,1996,1,7,77,7.3,6.1,0.6,-3.7,0.12,0.168,0.146,0.503,0.039,1996-97 55,Lloyd Daniels,NJN,29.0,200.66,92.98635999999999,Mt. San Antonio,USA,Undrafted,Undrafted,Undrafted,22,4.5,2.0,1.2,-8.9,0.057999999999999996,0.10300000000000001,0.185,0.40299999999999997,0.135,1996-97 56,Keith Askins,MIA,29.0,203.2,101.604608,Alabama,USA,Undrafted,Undrafted,Undrafted,78,4.9,3.5,1.0,6.1,0.059000000000000004,0.127,0.10800000000000001,0.557,0.068,1996-97 57,Karl Malone,UTA,33.0,205.74,116.119552,Louisiana Tech,USA,1985,1,13,82,27.4,9.9,4.5,12.8,0.086,0.243,0.325,0.6,0.23399999999999999,1996-97 58,Juwan Howard,WAS,24.0,205.74,113.398,Michigan,USA,1994,1,5,82,19.1,8.0,3.8,1.3,0.073,0.156,0.23399999999999999,0.529,0.15,1996-97 59,Jud Buechler,CHI,29.0,198.12,103.418976,Arizona,USA,1990,2,38,76,1.8,1.7,0.8,5.4,0.07,0.121,0.12,0.423,0.121,1996-97 60,Jon Barry,ATL,27.0,195.58,92.98635999999999,Georgia Tech,USA,1992,1,21,58,4.9,1.7,2.0,5.0,0.031,0.087,0.152,0.535,0.193,1996-97 61,Johnny Newman,MIL,33.0,200.66,90.7184,Richmond,USA,1986,2,29,82,8.7,2.3,1.4,0.2,0.040999999999999995,0.07200000000000001,0.175,0.545,0.092,1996-97 62,John Wallace,NYK,23.0,205.74,102.0582,Syracuse,USA,1996,1,18,68,4.8,2.3,0.5,2.7,0.08,0.14800000000000002,0.204,0.5710000000000001,0.081,1996-97 63,John Stockton,UTA,35.0,185.42,79.3786,Gonzaga,USA,1984,1,16,82,14.4,2.8,10.5,11.4,0.021,0.075,0.18600000000000003,0.6559999999999999,0.45,1996-97 64,John Starks,NYK,31.0,195.58,83.91452,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,77,13.8,2.7,2.8,6.5,0.021,0.094,0.24600000000000002,0.555,0.19899999999999998,1996-97 65,John Long,TOR,40.0,195.58,90.7184,Detroit Mercy,USA,1978,2,29,32,4.0,1.3,0.7,-9.8,0.017,0.10099999999999999,0.182,0.499,0.10400000000000001,1996-97 66,John Crotty,MIA,27.0,187.96,83.91452,Virginia,USA,Undrafted,Undrafted,Undrafted,48,4.8,1.0,2.1,-2.1,0.028999999999999998,0.059000000000000004,0.161,0.637,0.287,1996-97 67,Joe Wolf,MIL,32.0,210.82,117.93392,North Carolina,USA,1987,1,13,56,1.7,2.0,0.4,-3.5,0.07200000000000001,0.191,0.09699999999999999,0.488,0.055999999999999994,1996-97 68,Joe Stephens,HOU,24.0,200.66,95.25432,Arkansas-Little Rock,USA,Undrafted,Undrafted,Undrafted,2,1.5,1.5,0.0,-17.4,0.25,0.111,0.27899999999999997,0.3,0.0,1996-97 69,Joe Smith,GSW,21.0,208.28,102.0582,Maryland,USA,1995,1,1,80,18.7,8.5,1.6,-3.3,0.10300000000000001,0.163,0.239,0.512,0.07,1996-97 70,Joe Kleine,NJN,35.0,213.36,122.923432,Arkansas,USA,1985,1,6,59,2.8,3.4,0.6,-7.6,0.081,0.191,0.11800000000000001,0.45,0.065,1996-97 71,Joe Dumars,DET,34.0,190.5,88.45044,McNeese State,USA,1985,1,18,79,14.7,2.4,4.0,6.1,0.017,0.065,0.19,0.586,0.185,1996-97 72,Joe Courtney,SAS,27.0,203.2,106.59411999999999,Southern Mississippi,USA,Undrafted,Undrafted,Undrafted,9,2.8,1.8,0.0,-6.1,0.09699999999999999,0.095,0.151,0.38799999999999996,0.0,1996-97 73,Jimmy Oliver,TOR,27.0,195.58,92.98635999999999,Purdue,USA,1991,2,39,4,2.8,1.3,0.3,-40.8,0.024,0.10800000000000001,0.165,0.396,0.038,1996-97 74,Jimmy King,DEN,23.0,195.58,95.25432,Michigan,USA,1995,2,35,2,3.0,1.0,1.0,-42.5,0.08,0.0,0.162,0.387,0.2,1996-97 75,Jimmy Carruth,MIL,27.0,208.28,120.20188,Virginia Tech,USA,Undrafted,Undrafted,Undrafted,4,1.3,1.0,0.0,-17.7,0.0,0.21100000000000002,0.10300000000000001,0.727,0.0,1996-97 76,Jim McIlvaine,SEA,24.0,215.9,117.93392,Marquette,USA,1994,2,32,82,3.8,4.0,0.3,9.7,0.10300000000000001,0.152,0.11599999999999999,0.48700000000000004,0.022000000000000002,1996-97 77,Jim Jackson,NJN,26.0,198.12,97.52228000000001,Ohio State,USA,1992,1,4,77,15.9,5.3,4.1,-8.4,0.051,0.113,0.214,0.526,0.191,1996-97 78,Jerry Stackhouse,PHI,22.0,198.12,98.88305600000001,North Carolina,USA,1995,1,3,81,20.7,4.2,3.1,-6.8,0.053,0.063,0.254,0.524,0.134,1996-97 79,Keith Tower,MIL,27.0,210.82,113.398,Notre Dame,USA,Undrafted,Undrafted,Undrafted,5,1.4,1.8,0.2,5.6,0.028999999999999998,0.106,0.087,0.304,0.024,1996-97 80,Ken Norman,ATL,32.0,203.2,97.52228000000001,Illinois,USA,1987,1,19,17,3.8,2.3,0.7,-9.1,0.039,0.142,0.23399999999999999,0.322,0.107,1996-97 81,Kendall Gill,NJN,29.0,195.58,97.975872,Illinois,USA,1990,1,5,82,21.8,6.1,4.0,-3.6,0.057999999999999996,0.114,0.255,0.53,0.182,1996-97 82,Kenny Anderson,POR,26.0,185.42,76.203456,Georgia Tech,USA,1991,1,2,82,17.5,4.4,7.1,4.8,0.036000000000000004,0.102,0.222,0.54,0.31,1996-97 83,Litterial Green,DET,27.0,185.42,83.91452,Georgia,USA,1992,2,39,45,2.0,0.5,0.9,17.0,0.025,0.055,0.159,0.531,0.22399999999999998,1996-97 84,Lionel Simmons,SAC,28.0,200.66,95.25432,La Salle,USA,1990,1,7,41,3.4,2.5,1.4,-10.5,0.065,0.17300000000000001,0.162,0.442,0.179,1996-97 85,Lindsey Hunter,DET,26.0,187.96,88.45044,Jackson State,USA,1993,1,10,82,14.2,2.8,1.9,5.1,0.025,0.071,0.201,0.515,0.08800000000000001,1996-97 86,Lee Mayberry,VAN,27.0,185.42,81.64656,Arkansas,USA,1992,1,23,80,5.1,1.7,4.1,-11.0,0.017,0.064,0.115,0.525,0.265,1996-97 87,Lawrence Moten,VAN,25.0,195.58,86.18248,Syracuse,USA,1995,2,36,67,6.7,1.8,1.9,-10.6,0.04,0.076,0.215,0.461,0.18,1996-97 88,Latrell Sprewell,GSW,26.0,195.58,86.18248,Alabama,USA,1992,1,24,80,24.2,4.6,6.3,-3.3,0.021,0.11,0.271,0.57,0.27,1996-97 89,Larry Stewart,SEA,28.0,203.2,104.32616,Coppin State,USA,Undrafted,Undrafted,Undrafted,70,4.3,2.4,0.7,5.8,0.08900000000000001,0.115,0.161,0.512,0.079,1996-97 90,Larry Krystkowiak,LAL,32.0,205.74,99.79024,Montana,USA,1986,2,28,3,1.0,1.7,1.0,13.9,0.182,0.3,0.14,0.521,0.273,1996-97 91,Larry Johnson,NYK,28.0,200.66,119.294696,Nevada-Las Vegas,USA,1991,1,1,76,12.8,5.2,2.3,4.7,0.08,0.10300000000000001,0.17800000000000002,0.57,0.115,1996-97 92,Lamond Murray,LAC,24.0,200.66,107.047712,California,USA,1994,1,7,74,7.4,3.1,0.8,-1.4,0.071,0.138,0.209,0.52,0.077,1996-97 93,LaSalle Thompson,IND,36.0,208.28,111.13004,Texas,USA,1982,1,5,26,0.4,1.3,0.1,-12.8,0.062,0.205,0.098,0.231,0.024,1996-97 94,Loren Meyer,PHX,24.0,208.28,117.93392,Iowa State,USA,1995,1,24,54,4.9,2.7,0.4,-6.7,0.085,0.14,0.215,0.489,0.046,1996-97 95,LaPhonso Ellis,DEN,27.0,203.2,108.86208,Notre Dame,USA,1992,1,5,55,21.9,7.0,2.4,-5.9,0.061,0.163,0.28,0.529,0.122,1996-97 96,Kobe Bryant,LAL,18.0,200.66,90.7184,None,USA,1996,1,13,71,7.6,1.9,1.3,2.2,0.048,0.084,0.244,0.544,0.14400000000000002,1996-97 97,Khalid Reeves,DAL,24.0,190.5,91.171992,Arizona,USA,1994,1,12,63,8.2,1.9,3.6,-9.7,0.025,0.07200000000000001,0.193,0.508,0.272,1996-97 98,Kevin Willis,HOU,34.0,213.36,111.13004,Michigan State,USA,1984,1,11,75,11.2,7.5,0.9,0.9,0.092,0.24100000000000002,0.22,0.515,0.064,1996-97 99,Kevin Salvadori,SAC,26.0,213.36,104.779752,North Carolina,USA,Undrafted,Undrafted,Undrafted,23,1.6,1.1,0.4,3.5,0.047,0.124,0.15,0.452,0.08900000000000001,1996-97 100,Kevin Johnson,PHX,31.0,185.42,86.18248,California,USA,1987,1,7,70,20.1,3.6,9.3,2.9,0.024,0.085,0.226,0.631,0.38799999999999996,1996-97 101,Kevin Garnett,MIN,21.0,210.82,99.79024,None,USA,1995,1,5,77,17.0,8.0,3.1,2.8,0.077,0.166,0.215,0.537,0.139,1996-97 102,Kevin Gamble,SAC,31.0,195.58,95.25432,Iowa,USA,1987,3,63,62,5.0,1.7,1.2,-5.6,0.015,0.11900000000000001,0.149,0.529,0.131,1996-97 103,Kevin Edwards,NJN,31.0,190.5,95.25432,DePaul,USA,1988,1,20,32,5.9,1.3,1.8,-10.1,0.02,0.086,0.22399999999999998,0.47,0.19899999999999998,1996-97 104,Kevin Duckworth,LAC,33.0,213.36,136.0776,Eastern Illinois,USA,1986,2,33,26,4.0,2.3,0.6,-19.5,0.07,0.12300000000000001,0.172,0.473,0.069,1996-97 105,Kerry Kittles,NJN,23.0,195.58,81.19296800000001,Villanova,USA,1996,1,8,82,16.4,3.9,3.0,-5.2,0.035,0.08199999999999999,0.19899999999999998,0.523,0.139,1996-97 106,Kenny Smith,DEN,32.0,190.5,77.11064,North Carolina,USA,1987,1,6,48,6.3,0.9,2.4,-14.2,0.006,0.057999999999999996,0.19399999999999998,0.58,0.262,1996-97 107,Kurt Thomas,MIA,24.0,205.74,106.59411999999999,Texas Christian,USA,1995,1,10,18,6.3,5.9,0.5,-0.8,0.094,0.239,0.183,0.451,0.042,1996-97 108,Popeye Jones,TOR,27.0,203.2,113.398,Murray State,USA,1992,2,41,79,7.8,8.6,1.1,-2.8,0.127,0.209,0.13,0.521,0.055999999999999994,1996-97 109,Priest Lauderdale,ATL,23.0,223.52,155.582056,Central State (OH),USA,1996,1,28,35,3.2,1.2,0.3,-4.0,0.09300000000000001,0.16399999999999998,0.284,0.56,0.107,1996-97 110,Rafael Addison,CHH,32.0,203.2,109.315672,Syracuse,USA,1986,2,39,41,3.1,1.1,0.8,-4.0,0.07,0.086,0.193,0.47600000000000003,0.15,1996-97 111,Wayman Tisdale,PHX,33.0,205.74,117.93392,Oklahoma,USA,1985,1,2,53,6.5,2.3,0.4,-3.5,0.052000000000000005,0.127,0.253,0.441,0.045,1996-97 112,Walter McCarty,NYK,23.0,208.28,104.32616,Kentucky,USA,1996,1,19,35,1.8,0.7,0.4,3.2,0.055999999999999994,0.08,0.217,0.431,0.11599999999999999,1996-97 113,Walt Williams,TOR,27.0,203.2,104.32616,Maryland,USA,1992,1,7,73,16.4,5.0,2.7,-1.7,0.046,0.122,0.215,0.551,0.128,1996-97 114,Voshon Lenard,MIA,24.0,193.04,92.98635999999999,Minnesota,USA,1994,2,46,73,12.3,3.0,2.2,8.2,0.022000000000000002,0.095,0.187,0.614,0.131,1996-97 115,Vlade Divac,CHH,29.0,215.9,117.93392,None,Serbia and Montenegro,1989,1,26,81,12.6,9.0,3.7,5.4,0.107,0.19699999999999998,0.19399999999999998,0.5329999999999999,0.172,1996-97 116,Vitaly Potapenko,CLE,22.0,208.28,127.00576000000001,Wright State,Ukraine,1996,1,12,80,5.8,2.7,0.5,-0.2,0.106,0.11900000000000001,0.23399999999999999,0.486,0.064,1996-97 117,Vinny Del Negro,SAS,30.0,193.04,90.7184,North Carolina State,USA,1988,2,29,72,12.3,2.9,3.2,-8.1,0.02,0.094,0.192,0.528,0.17800000000000002,1996-97 118,Vincent Askew,DEN,31.0,198.12,106.59411999999999,Memphis,USA,1987,2,39,43,5.6,2.3,2.1,0.0,0.038,0.096,0.152,0.532,0.187,1996-97 119,Vin Baker,MIL,25.0,210.82,111.13004,Hartford,USA,1993,1,8,78,21.0,10.3,2.7,-1.6,0.107,0.20600000000000002,0.255,0.5529999999999999,0.12,1996-97 120,Vernon Maxwell,SAS,31.0,193.04,86.18248,Florida,USA,1988,2,47,72,12.9,2.2,2.1,-7.0,0.015,0.079,0.248,0.47100000000000003,0.136,1996-97 121,Tyus Edney,SAC,24.0,177.8,68.945984,UCLA,USA,1995,2,47,70,6.9,1.6,3.2,-2.0,0.027999999999999997,0.067,0.192,0.499,0.264,1996-97 122,Tyrone Hill,CLE,29.0,205.74,111.13004,Xavier,USA,1990,1,11,74,12.9,9.9,1.2,5.3,0.131,0.245,0.17800000000000002,0.626,0.065,1996-97 123,Terry Cummings,SEA,36.0,205.74,113.398,DePaul,USA,1982,1,2,45,8.2,4.1,0.9,1.3,0.10400000000000001,0.174,0.23199999999999998,0.521,0.08800000000000001,1996-97 124,Terrell Brandon,CLE,27.0,180.34,81.64656,Oregon,USA,1991,1,11,78,19.5,3.9,6.3,2.7,0.022000000000000002,0.11900000000000001,0.28300000000000003,0.526,0.337,1996-97 125,Stojko Vrankovic,MIN,33.0,218.44,117.93392,None,USA,Undrafted,Undrafted,Undrafted,53,3.4,3.2,0.3,-7.1,0.08900000000000001,0.16899999999999998,0.125,0.583,0.027999999999999997,1996-97 126,Stevin Smith,DAL,25.0,187.96,94.34713599999999,Arizona State,USA,Undrafted,Undrafted,Undrafted,8,1.8,1.3,0.5,-6.8,0.028999999999999998,0.157,0.163,0.38,0.11800000000000001,1996-97 127,Steven Smith,ATL,28.0,203.2,97.52228000000001,Michigan State,USA,1991,1,5,72,20.1,3.3,4.2,7.4,0.04,0.061,0.253,0.5479999999999999,0.203,1996-97 128,Steve Scheffler,SEA,29.0,205.74,113.398,Purdue,USA,1990,2,39,7,1.6,0.4,0.0,-19.9,0.043,0.077,0.18600000000000003,0.799,0.0,1996-97 129,Steve Nash,PHX,23.0,190.5,88.45044,Santa Clara,Canada,1996,1,15,65,3.3,1.0,2.1,-8.5,0.026000000000000002,0.083,0.17,0.539,0.301,1996-97 130,Steve Kerr,CHI,31.0,190.5,81.64656,Arizona,USA,1988,2,50,82,8.1,1.6,2.1,10.1,0.018000000000000002,0.062,0.13,0.667,0.14,1996-97 131,Steve Hamer,BOS,23.0,213.36,111.13004,Tennessee,USA,1996,2,38,35,2.2,1.7,0.2,-3.1,0.065,0.18100000000000002,0.126,0.545,0.037000000000000005,1996-97 132,Stephon Marbury,MIN,20.0,187.96,81.64656,Georgia Tech,USA,1996,1,4,67,15.8,2.7,7.8,-3.1,0.027999999999999997,0.066,0.244,0.519,0.373,1996-97 133,Stephen Howard,UTA,26.0,205.74,111.13004,DePaul,USA,Undrafted,Undrafted,Undrafted,49,3.6,1.7,0.2,0.1,0.094,0.16399999999999998,0.187,0.613,0.046,1996-97 134,Wesley Person,PHX,26.0,198.12,88.45044,Auburn,USA,1994,1,23,80,13.5,3.7,1.5,0.7,0.033,0.114,0.195,0.5670000000000001,0.084,1996-97 135,Will Perdue,SAS,31.0,213.36,108.86208,Vanderbilt,USA,1988,1,11,65,8.7,9.8,0.6,-4.7,0.155,0.25,0.139,0.5820000000000001,0.033,1996-97 136,Willie Anderson,MIA,30.0,203.2,90.7184,Georgia,USA,1988,1,10,28,3.0,1.5,1.2,-1.0,0.06,0.11800000000000001,0.146,0.57,0.191,1996-97 137,Willie Burton,ATL,29.0,203.2,95.25432,Minnesota,USA,1990,1,9,24,6.2,1.7,0.5,-4.8,0.033,0.09699999999999999,0.21,0.507,0.055999999999999994,1996-97 138,Tyrone Corbin,ATL,34.0,198.12,102.0582,DePaul,USA,1985,2,35,70,9.5,4.2,1.8,10.5,0.040999999999999995,0.111,0.153,0.514,0.08900000000000001,1996-97 139,Terry Dehere,LAC,25.0,193.04,86.18248,Seton Hall,USA,1993,1,13,73,6.4,1.3,2.2,-0.5,0.016,0.08800000000000001,0.233,0.524,0.261,1996-97 140,Terry Mills,DET,29.0,208.28,113.398,Michigan,USA,1990,1,16,79,10.8,4.8,1.3,11.4,0.045,0.188,0.205,0.585,0.08900000000000001,1996-97 141,Terry Porter,MIN,34.0,190.5,88.45044,Wisconsin-Stevens Point,USA,1985,1,24,82,6.9,2.1,3.6,2.1,0.024,0.109,0.19,0.544,0.316,1996-97 142,Theo Ratliff,DET,24.0,208.28,102.0582,Wyoming,USA,1995,1,18,76,5.8,3.4,0.2,7.3,0.11,0.134,0.168,0.5660000000000001,0.016,1996-97 143,Tim Hardaway,MIA,30.0,182.88,88.45044,Texas-El Paso,USA,1989,1,14,81,20.3,3.4,8.6,8.9,0.018000000000000002,0.083,0.264,0.532,0.40399999999999997,1996-97 144,Tim Kempton,SAS,33.0,208.28,111.13004,Notre Dame,USA,1986,6,124,10,0.4,0.8,0.2,-6.2,0.051,0.08800000000000001,0.099,0.34,0.061,1996-97 145,Tim Legler,WAS,30.0,193.04,90.7184,La Salle,USA,Undrafted,Undrafted,Undrafted,15,2.9,1.4,0.5,-3.5,0.0,0.133,0.151,0.431,0.055,1996-97 146,Todd Day,BOS,27.0,198.12,85.275296,Arkansas,USA,1992,1,8,81,14.5,4.1,1.4,-7.8,0.05,0.122,0.23600000000000002,0.514,0.085,1996-97 147,Todd Fuller,GSW,22.0,210.82,115.66596000000001,North Carolina State,USA,1996,1,11,75,4.0,3.3,0.3,-8.6,0.127,0.171,0.166,0.48,0.04,1996-97 148,Tom Chambers,CHH,38.0,208.28,99.79024,Utah,USA,1981,1,8,12,1.6,1.2,0.3,-33.6,0.043,0.16899999999999998,0.23600000000000002,0.29,0.077,1996-97 149,Stanley Roberts,LAC,27.0,213.36,131.54168,Louisiana State,USA,1991,1,23,18,9.5,5.1,0.5,2.6,0.071,0.218,0.23800000000000002,0.485,0.049,1996-97 150,Tom Gugliotta,MIN,27.0,208.28,108.86208,North Carolina State,USA,1992,1,6,81,20.6,8.7,4.1,-2.0,0.07200000000000001,0.193,0.27699999999999997,0.526,0.19399999999999998,1996-97 151,Toni Kukoc,CHI,28.0,210.82,105.23334399999999,None,Croatia,1990,2,29,57,13.2,4.6,4.5,15.2,0.069,0.12,0.214,0.5529999999999999,0.23199999999999998,1996-97 152,Tony Delk,CHH,23.0,187.96,85.728888,Kentucky,USA,1996,1,16,61,5.4,1.6,1.6,0.9,0.044000000000000004,0.09,0.182,0.596,0.187,1996-97 153,Tony Dumas,PHX,24.0,198.12,86.18248,Missouri-Kansas City,USA,1994,1,19,24,3.6,0.7,1.0,-4.1,0.012,0.055,0.19899999999999998,0.402,0.134,1996-97 154,Tony Massenburg,NJN,29.0,205.74,113.398,Maryland,USA,1990,2,43,79,7.2,6.5,0.3,-6.2,0.11900000000000001,0.172,0.139,0.523,0.018000000000000002,1996-97 155,Tony Smith,CHH,29.0,193.04,92.98635999999999,Marquette,USA,1990,2,51,69,5.0,1.4,2.2,0.7,0.035,0.051,0.156,0.47700000000000004,0.175,1996-97 156,Tracy Moore,HOU,31.0,193.04,90.7184,Tulsa,USA,Undrafted,Undrafted,Undrafted,27,3.7,1.0,0.7,-7.7,0.055999999999999994,0.068,0.20800000000000002,0.502,0.147,1996-97 157,Tracy Murray,WAS,25.0,200.66,103.418976,UCLA,USA,1992,1,18,82,10.0,3.1,1.0,1.9,0.054000000000000006,0.10800000000000001,0.205,0.546,0.068,1996-97 158,Travis Best,IND,24.0,180.34,82.553744,Georgia Tech,USA,1995,1,23,76,9.9,2.2,4.2,2.5,0.021,0.07400000000000001,0.193,0.5329999999999999,0.265,1996-97 159,Zan Tabak,TOR,27.0,213.36,111.13004,None,USA,1991,2,51,13,6.5,3.8,1.1,-12.2,0.11,0.135,0.21899999999999997,0.501,0.111,1996-97 160,Yinka Dare,NJN,24.0,213.36,120.20188,George Washington,USA,1994,1,14,41,1.4,2.0,0.1,-1.4,0.113,0.191,0.12,0.406,0.013000000000000001,1996-97 161,Xavier McDaniel,NJN,34.0,200.66,98.88305600000001,Wichita State,USA,1985,1,4,62,5.6,5.1,1.0,-0.8,0.113,0.182,0.168,0.439,0.085,1996-97 162,Tom Hammonds,DEN,30.0,205.74,102.0582,Georgia Tech,USA,1989,1,9,81,6.2,5.0,0.8,-7.3,0.09,0.172,0.142,0.534,0.057999999999999996,1996-97 163,Stacey King,DAL,30.0,210.82,113.398,Oklahoma,USA,1989,1,6,11,2.2,2.5,0.1,-18.7,0.11199999999999999,0.23199999999999998,0.135,0.478,0.018000000000000002,1996-97 164,Stacey Augmon,POR,28.0,203.2,92.98635999999999,Nevada-Las Vegas,USA,1991,1,9,60,4.7,2.3,0.9,6.0,0.06,0.109,0.158,0.531,0.09300000000000001,1996-97 165,Sherman Douglas,MIL,30.0,185.42,88.45044,Syracuse,USA,1989,2,28,79,9.7,2.4,5.4,-3.0,0.03,0.069,0.168,0.557,0.289,1996-97 166,Rodney Rogers,LAC,26.0,200.66,115.66596000000001,Wake Forest,USA,1993,1,9,81,13.2,5.1,2.7,-3.5,0.063,0.132,0.223,0.53,0.152,1996-97 167,Rod Strickland,WAS,30.0,190.5,83.91452,DePaul,USA,1988,1,19,82,17.2,4.1,8.9,1.7,0.038,0.09300000000000001,0.237,0.5329999999999999,0.366,1996-97 168,Robert Werdann,NJN,26.0,210.82,113.398,St. John's (NY),USA,1992,2,46,6,1.5,1.0,0.0,-14.5,0.107,0.14300000000000002,0.14300000000000002,0.541,0.0,1996-97 169,Robert Parish,CHI,43.0,215.9,110.676448,Centenary (LA),USA,1976,1,8,43,3.7,2.1,0.5,14.9,0.114,0.13,0.201,0.514,0.08199999999999999,1996-97 170,Robert Pack,DAL,28.0,187.96,86.18248,Southern California,USA,Undrafted,Undrafted,Undrafted,54,14.3,2.7,8.4,-8.3,0.016,0.078,0.244,0.48200000000000004,0.435,1996-97 171,Robert Horry,LAL,26.0,208.28,99.79024,Alabama,USA,1992,1,11,54,7.8,4.4,2.0,2.7,0.055999999999999994,0.14300000000000002,0.149,0.529,0.11900000000000001,1996-97 172,Rik Smits,IND,30.0,223.52,120.20188,Marist,USA,1988,1,2,52,17.1,6.9,1.3,1.4,0.085,0.201,0.289,0.535,0.083,1996-97 173,Ricky Pierce,CHH,37.0,193.04,97.52228000000001,Rice,USA,1982,1,18,60,11.0,2.0,1.3,-1.6,0.035,0.078,0.231,0.583,0.111,1996-97 174,Rick Mahorn,DET,38.0,208.28,117.93392,Hampton,USA,1980,2,35,22,2.5,2.4,0.3,-0.1,0.091,0.192,0.16399999999999998,0.44,0.049,1996-97 175,Rick Fox,BOS,27.0,200.66,112.94440800000001,North Carolina,Canada,1991,1,24,76,15.4,5.2,3.8,-6.9,0.047,0.134,0.20199999999999999,0.551,0.175,1996-97 176,Richard Manning,LAC,27.0,210.82,111.13004,Washington,USA,1993,2,40,26,2.9,1.5,0.1,-6.8,0.079,0.136,0.21100000000000002,0.425,0.027000000000000003,1996-97 177,Ron Harper,CHI,33.0,198.12,97.975872,Miami (OH),USA,1986,1,8,76,6.3,2.5,2.5,14.0,0.03,0.091,0.127,0.5429999999999999,0.152,1996-97 178,Rex Walters,PHI,27.0,193.04,86.18248,Kansas,USA,1993,1,16,59,6.8,1.8,1.9,-11.1,0.021,0.09300000000000001,0.16899999999999998,0.5710000000000001,0.18,1996-97 179,Reggie Williams,NJN,33.0,201.0,86.0,Georgetown,USA,1987,1,4,13,5.8,2.4,0.8,-12.8,0.026000000000000002,0.142,0.196,0.46799999999999997,0.09300000000000001,1996-97 180,Reggie Slater,TOR,26.0,200.66,97.52228000000001,Wyoming,USA,Undrafted,Undrafted,Undrafted,26,7.8,3.7,0.8,1.5,0.10800000000000001,0.163,0.228,0.5579999999999999,0.092,1996-97 181,Reggie Miller,IND,31.0,200.66,83.91452,UCLA,USA,1987,1,11,81,21.6,3.5,3.4,0.9,0.021,0.092,0.25,0.603,0.17,1996-97 182,Reggie Jordan,MIN,29.0,193.04,88.45044,New Mexico State,USA,Undrafted,Undrafted,Undrafted,19,2.1,1.4,0.6,4.2,0.10300000000000001,0.13,0.13699999999999998,0.597,0.174,1996-97 183,Reggie Geary,CLE,23.0,187.96,84.821704,Arizona,USA,1996,2,56,39,1.5,0.4,0.9,7.7,0.019,0.054000000000000006,0.154,0.45399999999999996,0.26899999999999996,1996-97 184,Ray Owes,GSW,24.0,205.74,101.604608,Arizona,USA,Undrafted,Undrafted,Undrafted,57,3.1,2.9,0.3,-8.0,0.11699999999999999,0.187,0.166,0.442,0.043,1996-97 185,Ray Allen,MIL,21.0,195.58,92.98635999999999,Connecticut,USA,1996,1,5,82,13.4,4.0,2.6,-2.0,0.046,0.109,0.21100000000000002,0.541,0.133,1996-97 186,Rasheed Wallace,POR,22.0,210.82,102.0582,North Carolina,USA,1995,1,4,62,15.1,6.8,1.2,7.8,0.079,0.18100000000000002,0.218,0.588,0.067,1996-97 187,Randy Livingston,HOU,22.0,193.04,94.800728,Louisiana State,USA,1996,2,42,64,3.9,1.5,2.4,0.3,0.042,0.071,0.16899999999999998,0.48700000000000004,0.248,1996-97 188,Randy Brown,CHI,29.0,187.96,86.18248,New Mexico State,USA,1991,2,31,72,4.7,1.5,1.8,10.4,0.037000000000000005,0.079,0.17800000000000002,0.461,0.17800000000000002,1996-97 189,Randolph Childress,DET,24.0,187.96,85.275296,Wake Forest,USA,1995,1,19,23,1.7,0.3,0.7,-0.9,0.008,0.037000000000000005,0.17600000000000002,0.44799999999999995,0.205,1996-97 190,Rex Chapman,PHX,29.0,193.04,88.45044,Kentucky,USA,1988,1,8,65,13.8,2.8,2.8,2.7,0.016,0.099,0.223,0.551,0.159,1996-97 191,Jerome Williams,DET,24.0,205.74,93.439952,Georgetown,USA,1996,1,26,33,1.5,1.5,0.2,3.0,0.14400000000000002,0.182,0.18100000000000002,0.419,0.071,1996-97 192,Rony Seikaly,ORL,32.0,210.82,114.758776,Syracuse,USA,1988,1,9,74,17.3,9.5,1.2,-1.7,0.122,0.19699999999999998,0.23800000000000002,0.5670000000000001,0.064,1996-97 193,Ruben Nembhard,POR,25.0,190.5,94.34713599999999,Weber State,USA,Undrafted,Undrafted,Undrafted,10,4.0,0.8,1.7,-0.3,0.033,0.054000000000000006,0.19899999999999998,0.483,0.25,1996-97 194,Shawnelle Scott,CLE,25.0,210.82,113.398,St. John's (NY),USA,1994,2,43,16,1.3,1.0,0.0,6.8,0.16,0.222,0.191,0.48,0.0,1996-97 195,Shawn Respert,TOR,25.0,187.96,83.91452,Michigan State,USA,1995,1,8,41,4.2,1.0,1.0,-4.1,0.031,0.065,0.16399999999999998,0.551,0.132,1996-97 196,Shawn Kemp,SEA,27.0,208.28,116.119552,Trinity Valley Community College,USA,1989,1,17,81,18.7,10.0,1.9,8.9,0.122,0.23,0.262,0.583,0.098,1996-97 197,Shawn Bradley,DAL,25.0,228.6,112.490816,Brigham Young,USA,1993,1,2,73,13.2,8.4,0.7,-5.9,0.102,0.19699999999999998,0.22399999999999998,0.478,0.042,1996-97 198,Sharone Wright,TOR,24.0,210.82,117.93392,Clemson,USA,1994,1,6,60,6.5,3.1,0.5,-9.3,0.08900000000000001,0.126,0.255,0.423,0.054000000000000006,1996-97 199,Shareef Abdur-Rahim,VAN,20.0,205.74,104.32616,California,USA,1996,1,3,80,18.7,6.9,2.2,-12.3,0.08900000000000001,0.142,0.275,0.518,0.12,1996-97 200,Shaquille O'Neal,LAL,25.0,215.9,136.0776,Louisiana State,USA,1992,1,1,51,26.2,12.5,3.1,6.9,0.11900000000000001,0.26,0.314,0.556,0.159,1996-97 201,Shane Heal,MIN,26.0,182.88,81.64656,None,USA,Undrafted,Undrafted,Undrafted,43,1.7,0.4,0.8,-0.7,0.008,0.075,0.204,0.37799999999999995,0.214,1996-97 202,Shandon Anderson,UTA,23.0,198.12,94.34713599999999,Georgia,USA,1996,2,54,65,5.9,2.8,0.8,2.5,0.065,0.139,0.193,0.534,0.07400000000000001,1996-97 203,Sedale Threatt,HOU,35.0,187.96,83.91452,West Virginia Tech,USA,1983,6,139,21,3.3,1.1,1.9,-3.5,0.017,0.063,0.122,0.451,0.185,1996-97 204,Sean Rooks,LAL,27.0,208.28,117.93392,Arizona,USA,1992,2,30,69,3.8,2.4,0.6,1.3,0.08800000000000001,0.166,0.177,0.547,0.098,1996-97 205,Roy Rogers,VAN,23.0,208.28,106.59411999999999,Alabama,USA,1996,1,22,82,6.6,4.7,0.6,-13.6,0.08800000000000001,0.155,0.154,0.518,0.042,1996-97 206,Sean Elliott,SAS,29.0,203.2,99.79024,Arizona,USA,1989,1,3,39,14.9,4.9,3.2,-5.7,0.040999999999999995,0.126,0.22,0.529,0.161,1996-97 207,Scott Williams,PHI,29.0,208.28,104.32616,North Carolina,USA,Undrafted,Undrafted,Undrafted,62,5.8,6.4,0.7,-4.6,0.126,0.205,0.127,0.529,0.049,1996-97 208,Scott Burrell,GSW,26.0,200.66,102.511792,Connecticut,USA,1993,1,20,57,5.2,2.8,1.3,1.4,0.061,0.134,0.16899999999999998,0.485,0.121,1996-97 209,Scott Brooks,NYK,31.0,180.34,74.84268,California-Irvine,USA,Undrafted,Undrafted,Undrafted,38,1.5,0.5,0.8,3.8,0.032,0.057999999999999996,0.11599999999999999,0.625,0.191,1996-97 210,Sasha Danilovic,DAL,27.0,198.12,90.7184,None,USA,1992,2,43,56,12.5,2.4,1.8,1.5,0.019,0.069,0.196,0.552,0.10300000000000001,1996-97 211,Sarunas Marciulionis,DEN,33.0,195.58,90.7184,None,USA,1987,6,127,17,6.8,1.8,1.5,-7.6,0.057,0.086,0.27,0.496,0.188,1996-97 212,Samaki Walker,DAL,21.0,205.74,108.86208,Louisville,USA,1996,1,9,43,4.9,3.4,0.4,-12.6,0.094,0.198,0.201,0.485,0.05,1996-97 213,Sam Perkins,SEA,36.0,205.74,115.66596000000001,North Carolina,USA,1984,1,4,81,11.0,3.7,1.3,10.6,0.047,0.145,0.198,0.584,0.08900000000000001,1996-97 214,Sam Mitchell,MIN,33.0,200.66,97.52228000000001,Mercer,USA,1985,3,54,82,9.3,4.0,1.0,-4.9,0.064,0.124,0.183,0.523,0.068,1996-97 215,Sam Mack,HOU,27.0,200.66,99.79024,Houston,USA,Undrafted,Undrafted,Undrafted,52,5.6,2.0,1.1,-1.7,0.026000000000000002,0.10400000000000001,0.165,0.521,0.10800000000000001,1996-97 216,Sam Cassell,NJN,27.0,190.5,83.91452,Florida State,USA,1993,1,24,61,15.9,3.0,5.0,-1.7,0.03,0.08900000000000001,0.27399999999999997,0.541,0.313,1996-97 217,Rumeal Robinson,POR,30.0,187.96,88.45044,Michigan,USA,1990,1,10,54,3.3,0.9,1.4,4.5,0.013999999999999999,0.086,0.19899999999999998,0.491,0.233,1996-97 218,Scottie Pippen,CHI,31.0,200.66,103.418976,Central Arkansas,USA,1987,1,5,82,20.2,6.5,5.7,13.5,0.059000000000000004,0.133,0.245,0.5539999999999999,0.237,1996-97 219,Jerome Kersey,LAL,35.0,200.66,108.86208,Longwood,USA,1984,2,46,70,6.8,5.2,1.3,4.1,0.07200000000000001,0.16399999999999998,0.145,0.475,0.077,1996-97 220,Pete Chilcutt,VAN,28.0,208.28,108.86208,North Carolina,USA,1991,1,27,54,3.4,2.9,0.9,-16.2,0.11599999999999999,0.17,0.139,0.521,0.11699999999999999,1996-97 221,Jermaine O'Neal,POR,18.0,210.82,102.511792,None,USA,1996,1,17,45,4.1,2.8,0.2,1.3,0.099,0.198,0.19899999999999998,0.494,0.03,1996-97 222,Chris Webber,WAS,24.0,208.28,111.13004,Michigan,USA,1993,1,1,72,20.1,10.3,4.6,3.4,0.10099999999999999,0.207,0.244,0.5539999999999999,0.193,1996-97 223,Chris Robinson,VAN,23.0,195.58,90.7184,Western Kentucky,USA,1996,2,51,41,4.6,1.7,1.6,-11.4,0.039,0.08800000000000001,0.155,0.486,0.156,1996-97 224,Chris Mullin,GSW,33.0,200.66,97.52228000000001,St. John's (NY),USA,1985,1,7,79,14.5,4.0,4.1,-4.9,0.033,0.106,0.175,0.645,0.195,1996-97 225,Chris Morris,UTA,31.0,203.2,99.79024,Auburn,USA,1988,1,4,73,4.3,2.2,0.6,-7.3,0.049,0.155,0.17800000000000002,0.486,0.075,1996-97 226,Chris Mills,CLE,27.0,200.66,97.975872,Arizona,USA,1993,1,22,80,13.4,6.2,2.5,4.5,0.048,0.157,0.175,0.544,0.111,1996-97 227,Chris Jent,NYK,27.0,200.66,99.79024,Ohio State,USA,Undrafted,Undrafted,Undrafted,3,2.0,0.3,0.3,-29.8,0.1,0.0,0.233,0.5,0.125,1996-97 228,Chris Gatling,NJN,29.0,208.28,104.32616,Old Dominion,USA,1991,1,16,47,19.0,7.9,0.6,-4.1,0.11900000000000001,0.21600000000000003,0.312,0.58,0.046,1996-97 229,Chris Dudley,POR,32.0,210.82,108.86208,Yale,USA,1987,4,75,81,3.9,7.3,0.5,-0.2,0.134,0.249,0.107,0.449,0.036000000000000004,1996-97 230,Chris Childs,NYK,29.0,190.5,88.45044,Boise State,USA,Undrafted,Undrafted,Undrafted,65,9.3,2.9,6.1,5.2,0.013000000000000001,0.094,0.16899999999999998,0.526,0.309,1996-97 231,Chris Carr,MIN,23.0,198.12,99.79024,Southern Illinois,USA,1995,2,56,55,6.1,2.1,0.9,3.8,0.043,0.11599999999999999,0.184,0.5579999999999999,0.099,1996-97 232,Cherokee Parks,MIN,24.0,210.82,108.86208,Duke,USA,1995,1,12,76,3.3,2.6,0.4,-0.6,0.098,0.135,0.12300000000000001,0.535,0.055,1996-97 233,Charlie Ward,NYK,26.0,187.96,86.18248,Florida State,USA,1994,1,26,79,5.2,2.8,4.1,4.0,0.031,0.11599999999999999,0.14,0.522,0.282,1996-97 234,Charles Smith,SAS,31.0,208.28,110.676448,Pittsburgh,USA,1988,1,3,19,4.6,3.4,0.7,-4.9,0.057999999999999996,0.179,0.165,0.461,0.07200000000000001,1996-97 235,Charles Oakley,NYK,33.0,205.74,111.13004,Virginia Union,USA,1985,1,9,80,10.8,9.8,2.8,3.4,0.107,0.218,0.155,0.545,0.127,1996-97 236,Charles Jones,HOU,40.0,205.74,97.52228000000001,Albany State (GA),USA,1979,8,165,12,0.3,1.1,0.3,2.6,0.068,0.10300000000000001,0.025,0.4,0.046,1996-97 237,Charles Barkley,HOU,34.0,198.12,114.30518400000001,Auburn,USA,1984,1,5,53,19.2,13.5,4.7,7.5,0.127,0.28,0.23,0.581,0.20800000000000002,1996-97 238,Cedric Ceballos,PHX,27.0,200.66,102.0582,Cal State-Fullerton,USA,1990,2,48,50,14.6,6.6,1.3,4.1,0.08800000000000001,0.18100000000000002,0.24600000000000002,0.522,0.073,1996-97 239,Carlos Rogers,TOR,26.0,210.82,99.79024,Tennessee State,USA,1994,1,11,56,9.8,5.4,0.7,-5.7,0.098,0.154,0.168,0.575,0.046,1996-97 240,Carl Thomas,CLE,27.0,193.04,79.3786,Eastern Michigan,USA,Undrafted,Undrafted,Undrafted,19,1.1,0.7,0.4,-8.9,0.043,0.152,0.16699999999999998,0.43,0.19,1996-97 241,Carl Herrera,SAS,30.0,205.74,102.0582,Houston,USA,1990,2,30,75,8.0,4.5,0.7,-9.7,0.076,0.151,0.19,0.46299999999999997,0.047,1996-97 242,Calbert Cheaney,WAS,25.0,200.66,97.52228000000001,Indiana,USA,1993,1,6,79,10.6,3.4,1.4,2.0,0.036000000000000004,0.095,0.165,0.53,0.07,1996-97 243,Byron Scott,LAL,36.0,193.04,92.98635999999999,Arizona State,USA,1983,1,4,79,6.7,1.5,1.3,6.7,0.017,0.075,0.157,0.59,0.11,1996-97 244,Bryon Russell,UTA,26.0,200.66,102.0582,Long Beach State,USA,1993,2,45,81,10.8,4.1,1.5,13.5,0.040999999999999995,0.11800000000000001,0.15,0.6,0.07,1996-97 245,Chris Whitney,WAS,25.0,182.88,77.11064,Clemson,USA,1993,2,47,82,5.2,1.3,2.2,2.0,0.013999999999999999,0.09300000000000001,0.183,0.5660000000000001,0.268,1996-97 246,Christian Laettner,ATL,27.0,210.82,111.13004,Duke,USA,1992,1,3,82,18.1,8.8,2.7,11.0,0.084,0.18600000000000003,0.23600000000000002,0.562,0.133,1996-97 247,Chucky Brown,MIL,29.0,203.2,97.52228000000001,North Carolina State,USA,1989,2,43,70,2.9,2.1,0.4,-5.9,0.063,0.177,0.12300000000000001,0.552,0.057,1996-97 248,Clar. Weatherspoon,PHI,26.0,200.66,108.86208,Southern Mississippi,USA,1992,1,9,82,12.2,8.3,1.7,-8.3,0.079,0.172,0.155,0.537,0.078,1996-97 249,David Wingate,SEA,33.0,195.58,83.91452,Georgetown,USA,1986,2,44,65,3.6,1.1,1.2,2.8,0.031,0.069,0.134,0.509,0.13699999999999998,1996-97 250,David Wesley,BOS,26.0,185.42,89.811216,Baylor,USA,Undrafted,Undrafted,Undrafted,74,16.8,3.6,7.3,-7.4,0.024,0.084,0.18899999999999997,0.563,0.28600000000000003,1996-97 251,David Vaughn,ORL,24.0,205.74,108.86208,Memphis,USA,1995,1,25,35,2.3,2.7,0.2,-7.5,0.128,0.21600000000000003,0.172,0.475,0.045,1996-97 252,David Robinson,SAS,31.0,215.9,106.59411999999999,Navy,USA,1987,1,1,6,17.7,8.5,1.3,9.6,0.161,0.237,0.33399999999999996,0.5589999999999999,0.111,1996-97 253,Darvin Ham,IND,23.0,200.66,99.79024,Texas Tech,USA,Undrafted,Undrafted,Undrafted,36,2.3,1.6,0.4,-2.0,0.109,0.09699999999999999,0.14,0.536,0.07200000000000001,1996-97 254,Darrin Hancock,ATL,25.0,200.66,92.98635999999999,Kansas,USA,1994,2,38,24,1.8,0.8,0.5,-2.6,0.03,0.11800000000000001,0.159,0.51,0.136,1996-97 255,Darrick Martin,LAC,26.0,180.34,77.11064,UCLA,USA,Undrafted,Undrafted,Undrafted,82,10.9,1.4,4.1,-4.5,0.016,0.06,0.23199999999999998,0.539,0.292,1996-97 256,Darrell Armstrong,ORL,29.0,185.42,81.64656,Fayetteville State,USA,Undrafted,Undrafted,Undrafted,67,6.1,1.1,2.6,0.3,0.039,0.05,0.222,0.525,0.308,1996-97 257,Danny Manning,PHX,31.0,208.28,106.140528,Kansas,USA,1988,1,1,77,13.5,6.1,2.2,3.1,0.079,0.184,0.22699999999999998,0.574,0.136,1996-97 258,Danny Ferry,CLE,30.0,208.28,106.59411999999999,Duke,USA,1989,1,2,82,10.6,4.1,1.8,2.3,0.04,0.134,0.177,0.523,0.102,1996-97 259,Dana Barros,BOS,30.0,180.34,73.935496,Boston College,USA,1989,1,16,24,12.5,2.0,3.4,-10.0,0.006999999999999999,0.07400000000000001,0.188,0.552,0.195,1996-97 260,Bryant Stith,DEN,26.0,195.58,94.34713599999999,Virginia,USA,1992,1,13,52,14.9,4.2,2.6,-5.6,0.048,0.09,0.201,0.5479999999999999,0.125,1996-97 261,Dan Schayes,ORL,38.0,210.82,117.93392,Syracuse,USA,1981,1,13,45,3.0,2.8,0.3,-1.5,0.091,0.183,0.15,0.465,0.045,1996-97 262,Damon Stoudamire,TOR,23.0,177.8,77.56423199999999,Arizona,USA,1995,1,7,81,20.2,4.1,8.8,-3.7,0.028999999999999998,0.09,0.253,0.516,0.38,1996-97 263,Dale Ellis,DEN,36.0,200.66,97.52228000000001,Tennessee,USA,1983,1,9,82,16.6,3.6,2.0,-9.1,0.039,0.07400000000000001,0.214,0.537,0.1,1996-97 264,Dale Davis,IND,28.0,210.82,104.32616,Clemson,USA,1991,1,13,80,10.4,9.7,0.7,-0.2,0.138,0.215,0.159,0.532,0.04,1996-97 265,Cuonzo Martin,MIL,25.0,195.58,96.615096,Purdue,USA,1995,2,57,3,0.0,0.3,0.3,-12.1,0.048,0.0,0.214,0.0,0.1,1996-97 266,Craig Ehlo,SEA,35.0,198.12,81.64656,Washington State,USA,1983,3,48,62,3.5,1.8,1.1,5.7,0.055999999999999994,0.107,0.166,0.41200000000000003,0.13,1996-97 267,Cory Alexander,SAS,24.0,185.42,86.18248,Virginia,USA,1995,1,29,80,7.2,1.5,3.2,-8.8,0.023,0.081,0.218,0.528,0.3,1996-97 268,Corliss Williamson,SAC,23.0,200.66,111.13004,Arkansas,USA,1995,1,13,79,11.6,4.1,1.6,-4.2,0.08199999999999999,0.11199999999999999,0.23,0.535,0.10800000000000001,1996-97 269,Corie Blount,LAL,28.0,208.28,109.769264,Cincinnati,USA,1993,1,25,58,4.2,4.8,0.6,2.0,0.13,0.182,0.11900000000000001,0.5589999999999999,0.055999999999999994,1996-97 270,Clyde Drexler,HOU,35.0,200.66,100.697424,Houston,USA,1983,1,14,62,18.0,6.0,5.7,7.5,0.062,0.122,0.231,0.5479999999999999,0.261,1996-97 271,Clifford Rozier,TOR,24.0,210.82,104.32616,Louisville,USA,1994,1,16,42,4.5,5.6,0.7,-6.3,0.151,0.223,0.14,0.47100000000000003,0.067,1996-97 272,Clifford Robinson,POR,30.0,208.28,102.0582,Connecticut,USA,1989,2,36,81,15.1,4.0,3.2,4.4,0.036000000000000004,0.08800000000000001,0.19899999999999998,0.519,0.13699999999999998,1996-97 273,Dan Majerle,MIA,31.0,198.12,99.79024,Central Michigan,USA,1988,1,14,36,10.8,4.5,3.2,4.7,0.043,0.111,0.157,0.523,0.158,1996-97 274,Bryant Reeves,VAN,24.0,213.36,124.7378,Oklahoma State,USA,1995,1,6,75,16.2,8.1,2.1,-10.6,0.07200000000000001,0.185,0.223,0.523,0.106,1996-97 275,Bruce Bowen,MIA,26.0,200.66,90.7184,Cal State-Fullerton,USA,Undrafted,Undrafted,Undrafted,1,0.0,0.0,0.0,300.0,0.0,0.0,0.0,0.0,0.0,1996-97 276,Brooks Thompson,DEN,26.0,193.04,87.543256,Oklahoma State,USA,1994,1,27,67,6.6,1.4,2.7,-6.2,0.019,0.087,0.214,0.526,0.27699999999999997,1996-97 277,Antonio Davis,IND,28.0,205.74,104.32616,Texas-El Paso,USA,1990,2,45,82,10.5,7.3,0.8,3.4,0.098,0.20600000000000002,0.187,0.537,0.049,1996-97 278,Antoine Walker,BOS,20.0,205.74,101.604608,Kentucky,USA,1996,1,6,82,17.5,9.0,3.2,-9.3,0.10300000000000001,0.18899999999999997,0.251,0.474,0.15,1996-97 279,Antoine Carr,UTA,35.0,205.74,115.66596000000001,Wichita State,USA,1983,1,8,82,7.4,2.4,0.9,2.2,0.054000000000000006,0.111,0.21,0.522,0.08900000000000001,1996-97 280,Anthony Peeler,VAN,27.0,193.04,94.34713599999999,Missouri,USA,1992,1,15,72,14.5,3.4,3.6,-10.4,0.027000000000000003,0.096,0.248,0.48700000000000004,0.20800000000000002,1996-97 281,Anthony Miller,ATL,25.0,205.74,115.66596000000001,Michigan State,USA,1994,2,39,1,0.0,7.0,0.0,-50.0,0.111,0.7140000000000001,0.149,0.0,0.0,1996-97 282,Anthony Mason,CHH,30.0,203.2,113.398,Tennessee State,USA,1988,3,53,73,16.2,11.4,5.7,2.6,0.07400000000000001,0.239,0.179,0.585,0.21600000000000003,1996-97 283,Anthony Goldwire,DEN,25.0,187.96,82.553744,Houston,USA,1994,2,52,60,6.5,1.4,3.7,-4.1,0.011000000000000001,0.066,0.168,0.531,0.305,1996-97 284,Anfernee Hardaway,ORL,25.0,200.66,97.52228000000001,Memphis,USA,1993,1,3,59,20.5,4.5,5.6,4.6,0.040999999999999995,0.096,0.254,0.5539999999999999,0.27,1996-97 285,Andrew Lang,MIL,31.0,210.82,124.7378,Arkansas,USA,1988,2,28,52,5.3,5.3,0.5,-1.2,0.096,0.182,0.12300000000000001,0.498,0.031,1996-97 286,Andrew DeClercq,GSW,24.0,208.28,104.32616,Florida,USA,1995,2,34,71,5.3,4.2,0.5,-5.6,0.132,0.198,0.17300000000000001,0.552,0.05,1996-97 287,Amal McCaskill,ORL,23.0,210.82,106.59411999999999,Marquette,USA,1996,2,49,17,1.6,1.3,0.4,-15.7,0.038,0.2,0.20600000000000002,0.376,0.146,1996-97 288,Antonio Harvey,SEA,26.0,210.82,102.0582,Pfeiffer,USA,Undrafted,Undrafted,Undrafted,6,2.5,1.7,0.2,1.4,0.07400000000000001,0.22899999999999998,0.217,0.55,0.063,1996-97 289,Alton Lister,BOS,38.0,213.36,111.13004,Arizona State,USA,1981,1,21,53,1.6,3.2,0.2,-13.3,0.136,0.249,0.1,0.48,0.038,1996-97 290,Allen Iverson,PHI,22.0,182.88,74.84268,Georgetown,USA,1996,1,1,76,23.5,4.1,7.5,-7.0,0.04,0.07200000000000001,0.284,0.513,0.32,1996-97 291,Allan Houston,NYK,26.0,198.12,90.7184,Tennessee,USA,1993,1,11,81,14.8,3.0,2.2,2.9,0.02,0.086,0.223,0.531,0.11699999999999999,1996-97 292,Aleksandar Djordjevic,POR,29.0,187.96,89.811216,None,USA,Undrafted,Undrafted,Undrafted,8,3.1,0.6,0.6,4.8,0.021,0.07,0.179,0.687,0.135,1996-97 293,Alan Henderson,ATL,24.0,205.74,106.59411999999999,Indiana,USA,1995,1,16,30,6.6,3.9,0.8,-9.7,0.114,0.184,0.20199999999999999,0.51,0.078,1996-97 294,Adrian Caldwell,PHI,30.0,203.2,120.20188,Lamar,USA,Undrafted,Undrafted,Undrafted,45,2.2,3.7,0.3,-6.2,0.10800000000000001,0.20800000000000002,0.105,0.44299999999999995,0.03,1996-97 295,Adam Keefe,UTA,27.0,205.74,109.315672,Stanford,USA,1992,1,10,62,3.8,3.5,0.5,6.7,0.11,0.177,0.126,0.5720000000000001,0.051,1996-97 296,Acie Earl,MIL,27.0,210.82,108.86208,Iowa,USA,1993,1,19,47,4.0,2.0,0.4,-6.4,0.079,0.14,0.22399999999999998,0.435,0.077,1996-97 297,Aaron Williams,VAN,25.0,205.74,102.0582,Xavier,USA,Undrafted,Undrafted,Undrafted,33,6.2,4.3,0.5,-8.3,0.129,0.163,0.168,0.599,0.051,1996-97 298,Aaron McKie,DET,24.0,195.58,94.800728,Temple,USA,1994,1,17,83,5.2,2.7,1.9,5.2,0.031,0.129,0.147,0.524,0.163,1996-97 299,Jerome Allen,DEN,24.0,193.04,83.46092800000001,Pennsylvania,USA,1995,2,49,76,3.0,1.3,2.0,-3.7,0.031,0.08800000000000001,0.154,0.449,0.264,1996-97 300,A.C. Green,DAL,33.0,205.74,102.0582,Oregon State,USA,1985,1,23,83,7.2,7.9,0.8,-8.0,0.1,0.207,0.11900000000000001,0.523,0.045,1996-97 301,Alonzo Mourning,MIA,27.0,208.28,118.38751200000002,Georgetown,USA,1992,1,2,66,19.8,9.9,1.6,10.5,0.1,0.22899999999999998,0.275,0.578,0.086,1996-97 302,David Wood,MIL,32.0,205.74,104.32616,Nevada-Reno,USA,Undrafted,Undrafted,Undrafted,46,1.2,0.6,0.3,3.9,0.026000000000000002,0.128,0.1,0.621,0.085,1996-97 303,Antonio Lang,CLE,25.0,203.2,104.32616,Duke,USA,1994,2,29,64,2.7,2.0,0.5,0.7,0.081,0.11800000000000001,0.136,0.467,0.068,1996-97 304,Armen Gilliam,MIL,33.0,205.74,117.93392,Nevada-Las Vegas,USA,1987,1,2,80,8.6,6.2,0.7,-3.7,0.084,0.21899999999999997,0.16899999999999998,0.5429999999999999,0.042,1996-97 305,Brian Shaw,ORL,31.0,198.12,90.7184,California-Santa Barbara,USA,1988,1,24,77,7.2,2.5,4.1,-10.5,0.028999999999999998,0.095,0.184,0.478,0.297,1996-97 306,Brian Grant,SAC,25.0,205.74,115.212368,Xavier,USA,1994,1,8,24,10.5,5.9,1.2,-7.7,0.098,0.185,0.213,0.511,0.078,1996-97 307,Brian Evans,ORL,23.0,203.2,99.79024,Indiana,USA,1996,1,27,14,1.4,0.6,0.5,-12.5,0.017,0.121,0.168,0.455,0.19399999999999998,1996-97 308,Brett Szabo,BOS,29.0,210.82,104.32616,Augustana (SD),USA,Undrafted,Undrafted,Undrafted,70,2.2,2.4,0.2,-11.1,0.08900000000000001,0.196,0.11900000000000001,0.517,0.039,1996-97 309,Brent Scott,IND,26.0,208.28,113.398,Rice,USA,Undrafted,Undrafted,Undrafted,16,1.2,0.6,0.2,4.9,0.073,0.109,0.18600000000000003,0.484,0.086,1996-97 310,Brent Price,HOU,28.0,185.42,83.91452,Oklahoma,USA,1992,2,32,25,5.0,1.2,2.6,2.9,0.032,0.052000000000000005,0.17,0.551,0.249,1996-97 311,Brent Barry,LAC,25.0,198.12,88.45044,Oregon State,USA,1995,1,15,59,7.5,1.9,2.6,4.1,0.03,0.08900000000000001,0.2,0.526,0.22399999999999998,1996-97 312,Brad Lohaus,TOR,32.0,210.82,104.32616,Iowa,USA,1987,2,45,6,1.7,1.2,0.2,-38.4,0.023,0.171,0.153,0.33299999999999996,0.048,1996-97 313,Bobby Phills,CLE,27.0,195.58,99.79024,Southern,USA,1991,2,45,69,12.6,3.6,3.4,3.3,0.034,0.10099999999999999,0.20800000000000002,0.514,0.17800000000000002,1996-97 314,Bobby Hurley,SAC,26.0,182.88,74.84268,Duke,USA,1993,1,7,49,2.9,0.8,3.0,-2.6,0.015,0.05,0.14,0.48200000000000004,0.336,1996-97 315,Bob Sura,CLE,24.0,195.58,90.7184,Florida State,USA,1995,1,17,82,9.2,3.8,4.8,1.0,0.042,0.134,0.19899999999999998,0.519,0.318,1996-97 316,Antonio McDyess,DEN,22.0,205.74,99.79024,Alabama,USA,1995,1,2,74,18.3,7.3,1.4,-7.5,0.07,0.163,0.267,0.509,0.079,1996-97 317,Bo Outlaw,LAC,26.0,203.2,95.25432,Houston,USA,Undrafted,Undrafted,Undrafted,82,7.6,5.5,1.9,4.0,0.092,0.152,0.129,0.602,0.113,1996-97 318,Bison Dele,CHI,28.0,210.82,117.93392,Arizona,USA,1991,1,10,9,7.0,3.7,1.3,0.9,0.11800000000000001,0.154,0.27699999999999997,0.45299999999999996,0.14,1996-97 319,Bimbo Coles,GSW,29.0,187.96,82.553744,Virginia Tech,USA,1990,2,40,51,6.1,2.3,2.9,-6.3,0.04,0.078,0.153,0.46299999999999997,0.204,1996-97 320,Billy Owens,SAC,28.0,205.74,102.0582,Syracuse,USA,1991,1,3,66,11.0,5.9,2.8,-3.0,0.077,0.152,0.18899999999999997,0.514,0.154,1996-97 321,Bill Wennington,CHI,34.0,213.36,111.13004,St. John's (NY),USA,1985,1,16,61,4.6,2.1,0.7,7.7,0.068,0.11900000000000001,0.168,0.5379999999999999,0.079,1996-97 322,Benoit Benjamin,TOR,32.0,213.36,113.398,Creighton,USA,1985,1,3,4,3.3,2.3,0.3,-9.1,0.067,0.16699999999999998,0.157,0.47200000000000003,0.036000000000000004,1996-97 323,Ben Wallace,WAS,22.0,205.74,108.86208,Virginia Union,USA,Undrafted,Undrafted,Undrafted,34,1.1,1.7,0.1,-3.5,0.132,0.18,0.165,0.34700000000000003,0.018000000000000002,1996-97 324,Ben Davis,PHX,24.0,205.74,108.86208,Arizona,USA,1996,2,43,20,1.5,1.4,0.0,-0.4,0.132,0.192,0.156,0.41700000000000004,0.0,1996-97 325,B.J. Armstrong,GSW,29.0,187.96,79.3786,Iowa,USA,1989,1,18,49,7.9,1.5,2.6,-6.5,0.008,0.078,0.18600000000000003,0.5379999999999999,0.209,1996-97 326,Avery Johnson,SAS,32.0,180.34,81.64656,Southern,USA,Undrafted,Undrafted,Undrafted,76,10.5,1.9,6.8,-8.6,0.015,0.057999999999999996,0.175,0.517,0.353,1996-97 327,Ashraf Amaya,WAS,25.0,203.2,104.32616,Southern Illinois,USA,Undrafted,Undrafted,Undrafted,31,1.3,1.7,0.1,-8.6,0.127,0.289,0.184,0.382,0.038,1996-97 328,Arvydas Sabonis,POR,32.0,220.98,132.448864,None,Lithuania,1986,1,24,69,13.4,7.9,2.1,8.1,0.08199999999999999,0.282,0.24,0.5920000000000001,0.136,1996-97 329,Blue Edwards,VAN,31.0,193.04,103.418976,East Carolina,USA,1989,1,21,61,7.8,3.1,1.9,-11.1,0.039,0.11599999999999999,0.193,0.47200000000000003,0.14,1996-97 330,Dean Garrett,MIN,30.0,210.82,113.398,Indiana,USA,1988,2,38,68,8.0,7.3,0.6,1.2,0.10800000000000001,0.247,0.135,0.603,0.035,1996-97 331,Buck Williams,NYK,37.0,203.2,102.0582,Maryland,USA,1981,1,3,74,6.3,5.4,0.7,6.9,0.135,0.184,0.149,0.574,0.059000000000000004,1996-97 332,Dell Curry,CHH,33.0,195.58,92.98635999999999,Virginia Tech,USA,1986,1,15,68,14.8,3.1,1.7,1.6,0.024,0.098,0.226,0.562,0.10400000000000001,1996-97 333,Hakeem Olajuwon,HOU,34.0,213.36,115.66596000000001,Houston,Nigeria,1984,1,1,78,23.2,9.2,3.0,6.5,0.075,0.20600000000000002,0.308,0.5579999999999999,0.158,1996-97 334,Greg Ostertag,UTA,24.0,218.44,127.00576000000001,Kansas,USA,1995,1,28,77,7.3,7.3,0.4,15.9,0.133,0.24600000000000002,0.146,0.561,0.021,1996-97 335,Greg Minor,BOS,25.0,198.12,95.25432,Louisville,USA,1994,1,25,23,9.6,3.5,1.5,-2.1,0.057999999999999996,0.11,0.18899999999999997,0.519,0.10300000000000001,1996-97 336,Greg Graham,SEA,26.0,193.04,82.553744,Indiana,USA,1993,1,17,28,3.3,0.5,0.4,3.6,0.013000000000000001,0.063,0.245,0.47600000000000003,0.1,1996-97 337,Greg Foster,UTA,28.0,210.82,113.398,Texas-El Paso,USA,1990,2,35,79,3.5,2.4,0.4,-0.9,0.078,0.166,0.168,0.508,0.055,1996-97 338,Greg Dreiling,DAL,33.0,215.9,120.20188,Kansas,USA,1986,2,26,40,2.0,1.9,0.3,-8.0,0.059000000000000004,0.192,0.114,0.466,0.048,1996-97 339,Greg Anthony,VAN,29.0,185.42,81.64656,Nevada-Las Vegas,USA,1991,1,12,65,9.5,2.8,6.3,-9.4,0.015,0.099,0.177,0.526,0.358,1996-97 340,Greg Anderson,SAS,33.0,208.28,113.398,Houston,USA,1987,1,23,82,3.9,5.5,0.4,-14.2,0.109,0.21899999999999997,0.106,0.531,0.033,1996-97 341,Grant Long,DET,31.0,205.74,112.490816,Eastern Michigan,USA,1988,2,33,65,5.0,3.4,0.6,4.0,0.096,0.15,0.154,0.523,0.057999999999999996,1996-97 342,Grant Hill,DET,24.0,203.2,102.0582,Duke,USA,1994,1,3,80,21.4,9.0,7.3,6.9,0.049,0.23199999999999998,0.28300000000000003,0.556,0.35600000000000004,1996-97 343,Glenn Robinson,MIL,24.0,200.66,106.59411999999999,Purdue,USA,1994,1,1,80,21.1,6.3,3.1,-2.9,0.051,0.14400000000000002,0.278,0.528,0.146,1996-97 344,Harvey Grant,WAS,31.0,205.74,102.0582,Oklahoma,USA,1988,1,12,78,4.1,3.3,0.9,1.7,0.045,0.136,0.102,0.47700000000000004,0.059000000000000004,1996-97 345,Glen Rice,CHH,30.0,203.2,99.79024,Michigan,USA,1989,1,4,79,26.8,4.0,2.0,3.2,0.025,0.087,0.272,0.605,0.08800000000000001,1996-97 346,Gerald Wilkins,ORL,33.0,198.12,102.0582,Tennessee-Chattanooga,USA,1985,2,47,80,10.6,2.2,2.2,-5.8,0.031,0.064,0.203,0.503,0.14300000000000002,1996-97 347,George Zidek,DEN,23.0,213.36,119.74828799999999,UCLA,USA,1995,1,22,52,2.8,1.7,0.3,-14.1,0.102,0.16899999999999998,0.195,0.5,0.064,1996-97 348,George McCloud,LAL,30.0,203.2,102.0582,Florida State,USA,1989,1,7,64,10.2,2.8,1.7,-2.7,0.027000000000000003,0.111,0.20600000000000002,0.527,0.125,1996-97 349,George Lynch,VAN,26.0,203.2,103.418976,North Carolina,USA,1993,1,12,41,8.3,6.4,1.9,-8.2,0.106,0.185,0.175,0.512,0.125,1996-97 350,Gaylon Nickerson,WAS,28.0,190.5,86.18248,Northwestern Oklahoma,USA,1994,2,34,4,3.8,1.3,0.3,8.9,0.03,0.111,0.174,0.49700000000000005,0.043,1996-97 351,Gary Trent,POR,22.0,203.2,113.398,Ohio,USA,1995,1,11,82,10.8,5.2,1.1,2.5,0.10099999999999999,0.16699999999999998,0.212,0.569,0.077,1996-97 352,Gary Payton,SEA,28.0,193.04,86.18248,Oregon State,USA,1990,1,2,82,21.8,4.6,7.1,10.3,0.04,0.102,0.264,0.545,0.33,1996-97 353,Gary Grant,MIA,32.0,190.5,83.91452,Michigan,USA,1988,1,15,28,3.9,1.4,1.6,3.2,0.028999999999999998,0.105,0.19399999999999998,0.46,0.215,1996-97 354,Fred Roberts,DAL,36.0,208.28,98.88305600000001,Brigham Young,USA,1982,2,27,12,1.8,0.8,0.0,-13.1,0.053,0.17800000000000002,0.265,0.52,0.0,1996-97 355,Fred Hoiberg,IND,24.0,193.04,92.079176,Iowa State,USA,1995,2,52,47,4.8,1.7,0.9,4.9,0.027999999999999997,0.146,0.172,0.59,0.122,1996-97 356,Frankie King,PHI,25.0,185.42,83.91452,Western Carolina,USA,1995,2,37,7,2.9,2.0,0.7,1.4,0.065,0.156,0.13,0.521,0.106,1996-97 357,Gheorghe Muresan,WAS,26.0,231.14,137.438376,None,USA,1993,2,30,73,10.6,6.6,0.4,6.9,0.098,0.217,0.185,0.618,0.024,1996-97 358,Frank Brickowski,BOS,37.0,205.74,108.86208,Penn State,USA,1981,3,57,17,4.8,2.0,0.9,-22.4,0.026000000000000002,0.133,0.17300000000000001,0.512,0.11599999999999999,1996-97 359,Haywoode Workman,IND,31.0,187.96,81.64656,Oral Roberts,USA,1989,2,49,4,5.5,1.8,2.8,-7.3,0.055999999999999994,0.045,0.139,0.5379999999999999,0.23399999999999999,1996-97 360,Herb Williams,NYK,39.0,210.82,117.93392,Ohio State,USA,1981,1,14,21,1.9,1.5,0.2,-10.8,0.055999999999999994,0.141,0.132,0.408,0.045,1996-97 361,Jeff McInnis,DEN,22.0,193.04,86.18248,North Carolina,USA,1996,2,37,13,5.0,0.5,1.4,-17.8,0.021,0.04,0.259,0.609,0.327,1996-97 362,Dee Brown,BOS,28.0,187.96,87.089664,Jacksonville,USA,1990,1,19,21,7.6,2.3,3.2,-7.5,0.015,0.095,0.163,0.455,0.20199999999999999,1996-97 363,Jeff Grayer,SAC,31.0,195.58,95.25432,Iowa State,USA,1988,1,13,25,3.6,1.5,1.0,0.7,0.077,0.067,0.154,0.496,0.124,1996-97 364,Jayson Williams,NJN,29.0,205.74,108.86208,St. John's (NY),USA,1990,1,21,41,13.4,13.5,1.2,-8.8,0.16699999999999998,0.248,0.209,0.44299999999999995,0.062,1996-97 365,Jason Sasser,DAL,23.0,200.66,102.0582,Texas Tech,USA,1996,2,41,8,2.4,1.0,0.3,-24.2,0.018000000000000002,0.14,0.172,0.413,0.067,1996-97 366,Jason Kidd,PHX,24.0,193.04,94.34713599999999,California,USA,1994,1,2,55,10.9,4.5,9.0,2.4,0.039,0.106,0.17,0.498,0.37,1996-97 367,Jason Caffey,CHI,24.0,203.2,116.119552,Alabama,USA,1995,1,20,75,7.3,4.0,1.2,9.0,0.114,0.134,0.184,0.574,0.094,1996-97 368,Jaren Jackson,WAS,29.0,198.12,95.25432,Georgetown,USA,Undrafted,Undrafted,Undrafted,75,5.0,1.8,0.9,1.7,0.03,0.10400000000000001,0.16699999999999998,0.52,0.09,1996-97 369,Jamie Watson,DAL,25.0,200.66,86.18248,South Carolina,USA,1994,2,47,23,3.4,2.0,1.4,-7.8,0.069,0.098,0.149,0.493,0.159,1996-97 370,Jamie Feick,SAS,22.0,203.2,115.66596000000001,Michigan State,USA,1996,2,48,41,3.7,5.2,0.6,-12.2,0.133,0.253,0.15,0.405,0.065,1996-97 371,James Scott,MIA,25.0,198.12,81.64656,St. John's (NY),USA,Undrafted,Undrafted,Undrafted,8,0.1,0.8,0.4,-14.7,0.036000000000000004,0.147,0.158,0.055999999999999994,0.136,1996-97 372,Henry James,ATL,31.0,203.2,99.79024,St. Mary's (TX),USA,Undrafted,Undrafted,Undrafted,53,6.7,1.5,0.4,1.2,0.034,0.067,0.171,0.555,0.036000000000000004,1996-97 373,James Robinson,MIN,26.0,187.96,81.64656,Alabama,USA,1993,1,21,69,8.3,1.6,1.8,-2.7,0.021,0.076,0.207,0.537,0.163,1996-97 374,Jalen Rose,IND,24.0,203.2,95.25432,Michigan,USA,1994,1,13,66,7.3,1.8,2.3,1.3,0.027999999999999997,0.095,0.214,0.541,0.23399999999999999,1996-97 375,Jack Haley,NJN,33.0,208.28,109.769264,UCLA,USA,1987,4,79,20,2.0,1.6,0.3,5.0,0.16699999999999998,0.284,0.22399999999999998,0.441,0.08800000000000001,1996-97 376,Ivano Newbill,ATL,26.0,208.28,111.13004,Georgia Tech,USA,1994,Undrafted,Undrafted,72,1.4,2.8,0.3,2.5,0.10400000000000001,0.18899999999999997,0.083,0.439,0.042,1996-97 377,Isaiah Rider,POR,26.0,195.58,97.52228000000001,Nevada-Las Vegas,USA,1993,1,5,76,16.1,4.0,2.6,3.4,0.045,0.09699999999999999,0.22899999999999998,0.557,0.129,1996-97 378,Ike Austin,MIA,27.0,208.28,122.46983999999999,Arizona State,USA,1991,2,48,82,9.7,5.8,1.2,2.9,0.09,0.218,0.22699999999999998,0.536,0.1,1996-97 379,Hubert Davis,TOR,27.0,195.58,83.007336,North Carolina,USA,1992,1,20,36,5.0,1.1,0.9,-3.3,0.02,0.054000000000000006,0.154,0.466,0.08800000000000001,1996-97 380,Howard Eisley,UTA,24.0,187.96,80.28578399999998,Boston College,USA,1994,2,30,82,4.5,1.0,2.4,2.5,0.024,0.067,0.192,0.53,0.29600000000000004,1996-97 381,Hot Rod Williams,PHX,34.0,210.82,111.13004,Tulane,USA,1985,2,45,68,8.0,8.3,1.5,4.3,0.099,0.19899999999999998,0.122,0.5379999999999999,0.067,1996-97 382,Horacio Llamas,PHX,23.0,210.82,129.27372,Grand Canyon,USA,Undrafted,Undrafted,Undrafted,20,1.7,0.9,0.2,11.5,0.048,0.13699999999999998,0.19,0.539,0.055999999999999994,1996-97 383,Horace Grant,ORL,31.0,208.28,111.13004,Clemson,USA,1987,1,10,67,12.6,9.0,2.4,1.1,0.094,0.19,0.161,0.546,0.11199999999999999,1996-97 384,Hersey Hawkins,SEA,30.0,190.5,86.18248,Bradley,USA,1988,1,6,82,13.9,3.9,3.0,10.3,0.04,0.098,0.17300000000000001,0.616,0.14300000000000002,1996-97 385,Jamal Mashburn,MIA,24.0,203.2,113.398,Kentucky,USA,1993,1,4,69,11.9,4.3,2.9,1.4,0.037000000000000005,0.121,0.207,0.48700000000000004,0.158,1996-97 386,Felton Spencer,GSW,29.0,213.36,127.00576000000001,Louisville,USA,1990,1,6,73,5.1,5.7,0.3,-1.2,0.124,0.205,0.128,0.524,0.02,1996-97 387,Jeff Hornacek,UTA,34.0,193.04,86.18248,Iowa State,USA,1986,2,46,82,14.5,2.9,4.4,14.4,0.031,0.08199999999999999,0.2,0.596,0.21,1996-97 388,Ervin Johnson,DEN,29.0,210.82,111.13004,New Orleans,USA,1993,1,23,82,7.1,11.1,0.9,-5.9,0.10300000000000001,0.294,0.114,0.5429999999999999,0.042,1996-97 389,Donyell Marshall,GSW,24.0,205.74,104.32616,Connecticut,USA,1994,1,4,61,7.3,4.5,0.9,-8.6,0.098,0.21,0.222,0.478,0.08800000000000001,1996-97 390,Dontonio Wingfield,POR,23.0,203.2,116.119552,Cincinnati,USA,1994,2,37,47,4.5,2.9,1.0,1.3,0.132,0.14400000000000002,0.204,0.501,0.14,1996-97 391,Donny Marshall,CLE,24.0,200.66,104.32616,Connecticut,USA,1995,2,39,56,3.1,1.3,0.4,-8.7,0.045,0.11800000000000001,0.19,0.47600000000000003,0.085,1996-97 392,Donnie Boyce,ATL,23.0,195.58,88.904032,Colorado,USA,1995,2,42,22,2.5,0.7,0.6,-10.3,0.051,0.059000000000000004,0.244,0.37799999999999995,0.146,1996-97 393,Donald Whiteside,TOR,28.0,177.8,72.57472,Northern Illinois,USA,Undrafted,Undrafted,Undrafted,27,2.2,0.4,1.3,-12.4,0.009000000000000001,0.046,0.134,0.479,0.23399999999999999,1996-97 394,Donald Royal,CHH,31.0,203.2,98.88305600000001,Notre Dame,USA,1987,3,52,62,3.5,2.5,0.4,-4.6,0.073,0.13699999999999998,0.131,0.552,0.047,1996-97 395,Don Reid,DET,23.0,203.2,113.398,Georgetown,USA,1995,2,58,47,2.8,2.1,0.3,-1.5,0.092,0.159,0.154,0.523,0.053,1996-97 396,Don MacLean,PHI,27.0,208.28,106.59411999999999,UCLA,USA,1992,1,19,37,10.9,3.8,1.0,-5.9,0.06,0.152,0.264,0.493,0.091,1996-97 397,Dominique Wilkins,SAS,37.0,203.2,104.32616,Georgia,USA,1982,1,3,63,18.2,6.4,1.9,-10.3,0.10099999999999999,0.154,0.297,0.517,0.11800000000000001,1996-97 398,Dino Radja,BOS,30.0,210.82,102.0582,None,USA,1989,2,40,25,14.0,8.4,1.9,-3.3,0.057999999999999996,0.217,0.22699999999999998,0.47100000000000003,0.092,1996-97 399,Dikembe Mutombo,ATL,31.0,218.44,113.398,Georgetown,Congo,1991,1,4,80,13.3,11.6,1.4,8.1,0.11199999999999999,0.256,0.179,0.584,0.066,1996-97 400,Doug Christie,TOR,27.0,198.12,92.98635999999999,Pepperdine,USA,1992,1,17,81,14.5,5.3,3.9,-2.6,0.031,0.135,0.184,0.5429999999999999,0.165,1996-97 401,Dickey Simpkins,CHI,25.0,205.74,112.490816,Providence,USA,1994,1,21,48,1.9,1.9,0.6,-0.9,0.099,0.151,0.163,0.41100000000000003,0.11199999999999999,1996-97 402,Devin Gray,SAS,25.0,200.66,108.86208,Clemson,USA,1995,Undrafted,Undrafted,6,3.0,2.3,0.3,-42.1,0.113,0.25,0.263,0.319,0.071,1996-97 403,Detlef Schrempf,SEA,34.0,208.28,106.59411999999999,Washington,USA,1985,1,8,61,16.8,6.5,4.4,12.2,0.049,0.166,0.21100000000000002,0.5920000000000001,0.2,1996-97 404,Derrick McKey,IND,30.0,205.74,92.98635999999999,Alabama,USA,1987,1,9,50,8.0,4.8,2.7,-0.2,0.067,0.127,0.16699999999999998,0.462,0.154,1996-97 405,Derrick Coleman,PHI,30.0,208.28,117.93392,Syracuse,USA,1990,1,1,57,18.1,10.1,3.4,-5.4,0.08,0.225,0.24,0.518,0.161,1996-97 406,Derrick Alston,ATL,24.0,210.82,102.0582,Duquesne,USA,1994,2,33,2,0.0,2.0,0.0,-39.9,0.188,0.2,0.213,0.0,0.0,1996-97 407,Derek Strong,ORL,29.0,205.74,108.86208,Xavier,USA,1990,2,47,82,8.5,6.3,0.9,-0.7,0.1,0.20800000000000002,0.182,0.513,0.064,1996-97 408,Derek Harper,DAL,35.0,193.04,93.439952,Illinois,USA,1983,1,11,75,10.0,1.8,4.3,-7.7,0.016,0.057,0.18100000000000002,0.516,0.252,1996-97 409,Derek Fisher,LAL,22.0,185.42,90.7184,Arkansas-Little Rock,USA,1996,1,24,80,3.9,1.2,1.5,5.1,0.031,0.087,0.18600000000000003,0.491,0.223,1996-97 410,Dennis Scott,ORL,28.0,203.2,106.59411999999999,Georgia Tech,USA,1990,1,4,66,12.5,3.1,2.1,1.9,0.021,0.092,0.188,0.519,0.106,1996-97 411,Dennis Rodman,CHI,36.0,198.12,99.79024,Southeastern Oklahoma State,USA,1986,2,27,55,5.7,16.1,3.1,16.1,0.18600000000000003,0.32299999999999995,0.1,0.479,0.113,1996-97 412,Evric Gray,NJN,27.0,200.66,106.59411999999999,Nevada-Las Vegas,USA,Undrafted,Undrafted,Undrafted,5,2.6,0.6,0.4,17.5,0.026000000000000002,0.049,0.192,0.38799999999999996,0.065,1996-97 413,Dexter Boney,PHX,27.0,193.04,83.91452,Nevada-Las Vegas,USA,Undrafted,Undrafted,Undrafted,8,2.4,0.8,0.0,-19.6,0.057999999999999996,0.071,0.231,0.42200000000000004,0.0,1996-97 414,Doug Overton,PHI,27.0,190.5,86.18248,La Salle,USA,1991,2,40,61,3.6,1.1,1.7,-1.3,0.031,0.085,0.172,0.514,0.258,1996-97 415,Dell Demps,ORL,27.0,190.5,92.98635999999999,Pacific,USA,Undrafted,Undrafted,Undrafted,2,1.0,0.0,0.0,-53.7,0.0,0.0,0.185,0.258,0.0,1996-97 416,Duane Causwell,SAC,29.0,213.36,108.86208,Temple,USA,1990,1,18,46,2.6,2.8,0.4,-11.8,0.11199999999999999,0.14300000000000002,0.111,0.535,0.055999999999999994,1996-97 417,Doug West,MIN,30.0,198.12,99.79024,Villanova,USA,1989,2,38,68,7.8,2.2,1.7,-3.1,0.024,0.07,0.14300000000000002,0.505,0.092,1996-97 418,Erick Strickland,DAL,23.0,190.5,95.25432,Nebraska,USA,Undrafted,Undrafted,Undrafted,28,10.6,3.2,2.4,-6.4,0.032,0.11199999999999999,0.21600000000000003,0.51,0.161,1996-97 419,Erick Dampier,IND,21.0,210.82,120.20188,Mississippi State,USA,1996,1,10,72,5.1,4.1,0.6,-2.0,0.107,0.21600000000000003,0.218,0.451,0.07400000000000001,1996-97 420,Eric Williams,BOS,24.0,203.2,99.79024,Providence,USA,1995,1,14,72,15.0,4.6,1.8,-6.8,0.057,0.107,0.207,0.5329999999999999,0.087,1996-97 421,Eric Snow,SEA,24.0,190.5,90.7184,Michigan State,USA,1995,2,43,67,3.0,1.0,2.4,-1.2,0.027000000000000003,0.085,0.145,0.515,0.33899999999999997,1996-97 422,Eric Piatkowski,LAC,26.0,200.66,97.52228000000001,Nebraska,USA,1994,1,15,65,6.0,1.6,0.8,2.4,0.071,0.08800000000000001,0.22,0.579,0.111,1996-97 423,Eric Murdock,DEN,29.0,185.42,86.18248,Providence,USA,1991,1,21,12,3.8,0.9,2.0,-1.4,0.01,0.102,0.188,0.588,0.436,1996-97 424,Eric Mobley,VAN,27.0,210.82,106.59411999999999,Pittsburgh,USA,1994,1,18,28,2.6,2.1,0.5,-15.4,0.106,0.102,0.158,0.47200000000000003,0.076,1996-97 425,Eric Leckner,VAN,31.0,210.82,120.20188,Wyoming,USA,1988,1,17,20,1.7,1.8,0.3,-3.9,0.044000000000000004,0.258,0.175,0.444,0.067,1996-97 426,Ennis Whatley,POR,34.0,190.5,80.28578399999998,Alabama,USA,1983,1,13,3,1.3,1.0,1.0,-57.4,0.0,0.15,0.115,0.5,0.375,1996-97 427,Emanual Davis,HOU,28.0,195.58,87.996848,Delaware State,USA,Undrafted,Undrafted,Undrafted,13,5.0,1.7,2.0,6.6,0.011000000000000001,0.098,0.14400000000000002,0.565,0.191,1996-97 428,Eric Montross,NJN,25.0,213.36,122.46983999999999,North Carolina,USA,1994,1,9,78,4.4,6.6,0.8,-6.6,0.107,0.20600000000000002,0.11199999999999999,0.452,0.05,1996-97 429,Elmer Bennett,DEN,27.0,182.88,77.11064,Notre Dame,USA,1992,2,38,9,2.4,0.4,1.2,-7.4,0.0,0.053,0.187,0.47,0.21600000000000003,1996-97 430,Duane Ferrell,IND,32.0,200.66,97.52228000000001,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,62,6.4,2.3,1.1,2.3,0.066,0.091,0.18100000000000002,0.521,0.1,1996-97 431,Elmore Spencer,SEA,27.0,213.36,122.46983999999999,Nevada-Las Vegas,USA,1992,1,25,1,0.0,0.0,0.0,-147.5,0.0,0.0,0.126,0.0,0.0,1996-97 432,Earl Cureton,TOR,39.0,205.74,95.25432,Detroit Mercy,USA,1979,3,58,9,0.8,1.0,0.4,-2.1,0.105,0.102,0.10300000000000001,0.376,0.14800000000000002,1996-97 433,Ed O'Bannon,DAL,24.0,203.2,100.697424,UCLA,USA,1995,1,9,64,3.7,2.3,0.6,-8.7,0.06,0.149,0.16699999999999998,0.39899999999999997,0.077,1996-97 434,Ed Pinckney,MIA,34.0,205.74,108.86208,Villanova,USA,1985,1,10,27,2.4,2.4,0.2,-11.2,0.109,0.179,0.127,0.611,0.04,1996-97 435,Dwayne Schintzius,LAC,28.0,215.9,117.93392,Florida,USA,1990,1,24,15,2.3,1.5,0.3,12.3,0.078,0.151,0.175,0.43,0.048,1996-97 436,Eddie Jones,LAL,25.0,198.12,86.18248,Temple,USA,1994,1,10,80,17.2,4.1,3.4,4.1,0.035,0.091,0.209,0.5589999999999999,0.149,1996-97 437,Elden Campbell,LAL,28.0,213.36,113.398,Clemson,USA,1990,1,27,77,14.9,8.0,1.6,3.3,0.095,0.183,0.222,0.52,0.087,1996-97 438,Eldridge Recasner,ATL,29.0,193.04,86.18248,Washington,USA,1992,Undrafted,Undrafted,71,5.7,1.6,1.3,-0.3,0.036000000000000004,0.076,0.172,0.539,0.141,1996-97 439,Elliot Perry,MIL,28.0,182.88,72.57472,Memphis,USA,1991,2,37,82,6.9,1.5,3.0,-1.2,0.018000000000000002,0.081,0.177,0.557,0.262,1996-97 440,Eddie Johnson,HOU,38.0,200.66,97.52228000000001,Illinois,USA,1981,2,29,52,8.2,2.7,1.0,4.1,0.034,0.126,0.22,0.541,0.102,1996-97 441,Ed Gray,ATL,22.0,190.5,95.25432,California,USA,1997,1,22,30,7.6,1.5,1.1,-8.3,0.023,0.09,0.248,0.49200000000000005,0.132,1997-98 442,Dontonio Wingfield,POR,24.0,203.2,116.119552,Cincinnati,USA,1994,2,37,3,0.3,1.3,0.0,-35.3,0.14300000000000002,0.222,0.23399999999999999,0.129,0.0,1997-98 443,Donyell Marshall,GSW,25.0,205.74,104.32616,Connecticut,USA,1994,1,4,73,15.4,8.6,2.2,-9.5,0.08199999999999999,0.17300000000000001,0.221,0.474,0.109,1997-98 444,Doug Christie,TOR,28.0,198.12,92.98635999999999,Pepperdine,USA,1992,1,17,78,16.5,5.2,3.6,-7.6,0.035,0.124,0.21600000000000003,0.53,0.16,1997-98 445,Doug Overton,PHI,28.0,190.5,86.18248,La Salle,USA,1991,2,40,23,2.7,0.6,1.6,-8.7,0.009000000000000001,0.052000000000000005,0.15,0.44299999999999995,0.233,1997-98 446,Doug West,MIN,31.0,198.12,90.7184,Villanova,USA,1989,2,38,38,4.1,2.2,1.2,-2.3,0.037000000000000005,0.091,0.13699999999999998,0.41600000000000004,0.105,1997-98 447,Drew Barry,ATL,25.0,195.58,86.636072,Georgia Tech,USA,1996,2,57,27,2.1,1.3,1.8,16.0,0.024,0.129,0.124,0.64,0.257,1997-98 448,Duane Causwell,MIA,30.0,213.36,108.86208,Temple,USA,1990,1,18,37,2.4,2.7,0.1,-6.1,0.095,0.21899999999999997,0.154,0.44299999999999995,0.024,1997-98 449,Duane Ferrell,GSW,33.0,200.66,97.52228000000001,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,50,1.9,0.9,0.5,-17.8,0.055999999999999994,0.055,0.13,0.389,0.09300000000000001,1997-98 450,Ed Stokes,TOR,26.0,213.36,119.74828799999999,Arizona,USA,1993,2,35,4,0.8,1.0,0.3,-47.4,0.059000000000000004,0.214,0.134,0.387,0.125,1997-98 451,Eric Washington,DEN,24.0,193.04,86.18248,Alabama,USA,1997,2,46,66,7.7,1.9,1.2,-18.1,0.034,0.063,0.17600000000000002,0.478,0.09300000000000001,1997-98 452,Eddie Jones,LAL,26.0,198.12,90.7184,Temple,USA,1994,1,10,80,16.8,3.8,3.1,10.3,0.034,0.083,0.196,0.591,0.133,1997-98 453,Elden Campbell,LAL,29.0,213.36,115.66596000000001,Clemson,USA,1990,1,27,81,10.1,5.6,1.0,1.7,0.09300000000000001,0.201,0.223,0.527,0.075,1997-98 454,Eldridge Recasner,ATL,30.0,193.04,86.18248,Washington,USA,1992,Undrafted,Undrafted,59,9.3,2.4,2.0,-1.9,0.027000000000000003,0.087,0.18600000000000003,0.563,0.14300000000000002,1997-98 455,Elliot Perry,MIL,29.0,182.88,68.945984,Memphis,USA,1991,2,37,81,7.3,1.3,2.8,-6.4,0.013999999999999999,0.061,0.19399999999999998,0.485,0.233,1997-98 456,Emanual Davis,HOU,29.0,195.58,88.45044,Delaware State,USA,Undrafted,Undrafted,Undrafted,45,4.1,1.0,1.3,-2.0,0.019,0.075,0.156,0.581,0.158,1997-98 457,Eric Montross,DET,26.0,213.36,122.46983999999999,North Carolina,USA,1994,1,9,48,2.9,4.1,0.2,-12.3,0.111,0.223,0.126,0.42700000000000005,0.025,1997-98 458,Eric Murdock,MIA,30.0,185.42,90.7184,Providence,USA,1991,1,21,82,6.2,1.9,2.7,2.0,0.034,0.098,0.20199999999999999,0.52,0.284,1997-98 459,Eric Piatkowski,LAC,27.0,200.66,97.52228000000001,Nebraska,USA,1994,1,15,67,11.3,3.5,1.3,-8.3,0.045,0.11,0.184,0.591,0.084,1997-98 460,Eric Riley,DAL,28.0,213.36,111.13004,Michigan,USA,1993,2,33,39,3.6,3.4,0.6,-6.3,0.08900000000000001,0.19399999999999998,0.16,0.461,0.065,1997-98 461,Eric Snow,PHI,25.0,190.5,92.532768,Michigan State,USA,1995,2,43,64,3.3,1.3,2.8,-0.3,0.025,0.08,0.14,0.486,0.317,1997-98 462,Dontae' Jones,BOS,23.0,203.2,99.79024,Mississippi State,USA,1996,1,21,15,2.9,0.6,0.3,-7.1,0.03,0.08,0.289,0.386,0.08900000000000001,1997-98 463,Eric Williams,DEN,25.0,203.2,99.79024,Providence,USA,1995,1,14,4,19.8,5.3,3.0,-7.6,0.07,0.105,0.257,0.489,0.14300000000000002,1997-98 464,Eddie Johnson,HOU,39.0,200.66,97.52228000000001,Illinois,USA,1981,2,29,75,8.4,2.0,1.2,-3.9,0.040999999999999995,0.084,0.20199999999999999,0.524,0.10300000000000001,1997-98 465,Donald Whiteside,ATL,29.0,177.8,72.57472,Northern Illinois,USA,Undrafted,Undrafted,Undrafted,3,0.7,0.3,0.3,-52.7,0.0,0.083,0.12300000000000001,0.34700000000000003,0.111,1997-98 466,Derek Fisher,LAL,23.0,185.42,90.7184,Arkansas-Little Rock,USA,1996,1,24,82,5.8,2.4,4.1,9.1,0.026000000000000002,0.099,0.141,0.5329999999999999,0.27,1997-98 467,Don Reid,DET,24.0,203.2,113.398,Georgetown,USA,1995,2,58,68,3.5,2.6,0.4,0.9,0.09300000000000001,0.122,0.11199999999999999,0.574,0.04,1997-98 468,Darrick Martin,LAC,27.0,180.34,77.11064,UCLA,USA,Undrafted,Undrafted,Undrafted,82,10.3,2.0,4.0,-5.8,0.009000000000000001,0.07200000000000001,0.19,0.509,0.23,1997-98 469,Erick Dampier,GSW,22.0,210.82,120.20188,Mississippi State,USA,1996,1,10,82,11.8,8.7,1.1,-10.1,0.10800000000000001,0.182,0.191,0.502,0.06,1997-98 470,Darvin Ham,WAS,24.0,200.66,104.32616,Texas Tech,USA,Undrafted,Undrafted,Undrafted,71,2.0,1.8,0.2,7.1,0.133,0.10099999999999999,0.12300000000000001,0.531,0.039,1997-98 471,David Benoit,ORL,30.0,203.2,99.79024,Alabama,USA,Undrafted,Undrafted,Undrafted,77,5.5,2.6,0.3,-0.6,0.055999999999999994,0.153,0.191,0.47700000000000004,0.037000000000000005,1997-98 472,David Robinson,SAS,32.0,215.9,113.398,Navy,USA,1987,1,1,73,21.6,10.6,2.7,7.7,0.121,0.231,0.297,0.581,0.159,1997-98 473,David Vaughn,NJN,25.0,205.74,108.86208,Memphis,USA,1995,1,25,40,4.1,3.8,0.5,-11.4,0.111,0.215,0.184,0.48,0.069,1997-98 474,David Wesley,CHH,27.0,185.42,91.625584,Baylor,USA,Undrafted,Undrafted,Undrafted,81,13.0,2.6,6.5,2.3,0.021,0.069,0.2,0.532,0.303,1997-98 475,David Wingate,SEA,34.0,195.58,83.91452,Georgetown,USA,1986,2,44,58,2.6,1.4,0.6,-0.7,0.04,0.11699999999999999,0.156,0.494,0.113,1997-98 476,DeJuan Wheat,MIN,24.0,182.88,74.84268,Louisville,USA,1997,2,51,34,1.7,0.3,0.7,-1.6,0.021,0.057,0.182,0.504,0.26899999999999996,1997-98 477,Dean Garrett,DEN,31.0,210.82,113.398,Indiana,USA,1988,2,38,82,7.3,7.9,1.1,-15.4,0.098,0.193,0.126,0.465,0.057999999999999996,1997-98 478,Dee Brown,TOR,29.0,187.96,83.91452,Jacksonville,USA,1990,1,19,72,9.1,2.1,2.1,-7.0,0.015,0.09,0.166,0.555,0.149,1997-98 479,Donald Royal,CHH,32.0,203.2,98.88305600000001,Notre Dame,USA,1987,3,52,31,2.5,1.3,0.5,7.7,0.065,0.081,0.131,0.473,0.08,1997-98 480,Dell Curry,CHH,34.0,195.58,92.98635999999999,Virginia Tech,USA,1986,1,15,52,9.4,1.9,1.3,-1.1,0.032,0.091,0.24100000000000002,0.536,0.127,1997-98 481,Dennis Scott,PHX,29.0,203.2,103.872568,Georgia Tech,USA,1990,1,4,81,11.0,3.0,1.9,-4.7,0.023,0.1,0.19899999999999998,0.502,0.115,1997-98 482,Derek Anderson,CLE,23.0,195.58,88.45044,Kentucky,USA,1997,1,13,66,11.7,2.8,3.4,3.9,0.038,0.091,0.215,0.531,0.21899999999999997,1997-98 483,Derek Grimm,SAC,23.0,205.74,104.32616,Missouri,USA,Undrafted,Undrafted,Undrafted,9,1.6,0.4,0.0,-18.2,0.0,0.14800000000000002,0.19899999999999998,0.47,0.0,1997-98 484,Derek Harper,ORL,36.0,193.04,93.439952,Illinois,USA,1983,1,11,66,8.6,1.6,3.5,-0.4,0.015,0.055,0.179,0.491,0.233,1997-98 485,Derek Strong,ORL,30.0,205.74,108.86208,Xavier,USA,1990,2,47,58,12.7,7.4,0.9,1.0,0.109,0.19699999999999998,0.226,0.498,0.055999999999999994,1997-98 486,Derrick Coleman,PHI,31.0,208.28,117.93392,Syracuse,USA,1990,1,1,59,17.6,9.9,2.5,-2.8,0.079,0.23199999999999998,0.252,0.5,0.12300000000000001,1997-98 487,Derrick McKey,IND,31.0,208.28,102.0582,Alabama,USA,1987,1,9,57,6.3,3.7,1.5,2.2,0.073,0.126,0.16399999999999998,0.49700000000000005,0.11900000000000001,1997-98 488,Detlef Schrempf,SEA,35.0,208.28,106.59411999999999,Washington,USA,1985,1,8,78,15.7,7.1,4.4,10.7,0.06,0.17800000000000002,0.20600000000000002,0.584,0.198,1997-98 489,Dickey Simpkins,CHI,26.0,205.74,119.74828799999999,Providence,USA,1994,1,21,40,3.3,1.9,0.8,4.8,0.077,0.139,0.157,0.551,0.115,1997-98 490,Dikembe Mutombo,ATL,32.0,218.44,118.38751200000002,Georgetown,Congo,1991,1,4,82,13.4,11.4,1.0,8.0,0.11599999999999999,0.254,0.18,0.584,0.048,1997-98 491,Don MacLean,NJN,28.0,208.28,106.59411999999999,UCLA,USA,1992,1,19,9,0.3,0.6,0.0,-18.0,0.067,0.067,0.115,0.15,0.0,1997-98 492,Dennis Rodman,CHI,37.0,198.12,99.79024,Southeastern Oklahoma State,USA,1986,2,27,80,4.7,15.0,2.9,6.7,0.16899999999999998,0.319,0.08800000000000001,0.45899999999999996,0.11199999999999999,1997-98 493,Erick Strickland,DAL,24.0,190.5,95.25432,Nebraska,USA,Undrafted,Undrafted,Undrafted,67,7.6,2.4,2.5,-7.4,0.025,0.098,0.214,0.429,0.187,1997-98 494,Harvey Grant,WAS,32.0,205.74,102.0582,Oklahoma,USA,1988,1,12,65,2.6,2.6,0.6,-3.0,0.075,0.131,0.12,0.406,0.067,1997-98 495,Etdrick Bohannon,IND,25.0,205.74,99.79024,Auburn-Montgomery,USA,Undrafted,Undrafted,Undrafted,5,0.0,1.2,0.2,-20.6,0.14300000000000002,0.222,0.256,0.0,0.14300000000000002,1997-98 496,Hot Rod Williams,PHX,35.0,210.82,111.13004,Tulane,USA,1985,2,45,71,3.6,4.4,0.7,8.7,0.096,0.163,0.096,0.525,0.053,1997-98 497,Howard Eisley,UTA,25.0,187.96,81.64656,Boston College,USA,1994,2,30,82,7.7,2.0,4.2,0.9,0.019,0.096,0.203,0.541,0.34700000000000003,1997-98 498,Hubert Davis,DAL,28.0,195.58,83.007336,North Carolina,USA,1992,1,20,81,11.1,2.1,2.0,-6.9,0.015,0.065,0.17300000000000001,0.5489999999999999,0.114,1997-98 499,Ike Austin,LAC,28.0,208.28,122.46983999999999,Arizona State,USA,1991,2,48,78,13.5,7.1,2.2,-2.5,0.10400000000000001,0.18100000000000002,0.248,0.512,0.14,1997-98 500,Isaiah Rider,POR,27.0,195.58,97.52228000000001,Nevada-Las Vegas,USA,1993,1,5,74,19.7,4.7,3.1,1.7,0.043,0.099,0.263,0.514,0.153,1997-98 501,Ivano Newbill,VAN,27.0,208.28,111.13004,Georgia Tech,USA,1994,Undrafted,Undrafted,28,2.1,2.5,0.3,-9.5,0.102,0.20199999999999999,0.152,0.413,0.06,1997-98 502,J.R. Reid,CHH,30.0,208.28,112.037224,North Carolina,USA,1989,1,5,79,4.9,2.7,0.6,1.2,0.078,0.14800000000000002,0.179,0.517,0.078,1997-98 503,Jack Haley,NJN,34.0,208.28,108.86208,UCLA,USA,1987,4,79,16,1.4,0.9,0.0,-6.8,0.08800000000000001,0.25,0.242,0.40399999999999997,0.0,1997-98 504,Jacque Vaughn,UTA,23.0,185.42,86.18248,Kansas,USA,1997,1,27,45,3.1,0.8,1.9,2.9,0.012,0.086,0.218,0.457,0.315,1997-98 505,Jalen Rose,IND,25.0,203.2,95.25432,Michigan,USA,1994,1,13,82,9.4,2.4,1.9,1.9,0.021,0.12,0.239,0.545,0.18,1997-98 506,Jamal Mashburn,MIA,25.0,203.2,113.398,Kentucky,USA,1993,1,4,48,15.1,4.9,2.8,4.4,0.051,0.107,0.212,0.5329999999999999,0.134,1997-98 507,James Collins,LAC,24.0,193.04,88.904032,Florida State,USA,1997,2,36,23,2.6,0.6,0.1,-13.0,0.057999999999999996,0.067,0.251,0.48200000000000004,0.055999999999999994,1997-98 508,James Cotton,SEA,22.0,195.58,99.79024,Long Beach State,USA,1997,2,32,9,2.7,0.7,0.0,-36.2,0.061,0.121,0.332,0.48100000000000004,0.0,1997-98 509,James Robinson,LAC,27.0,187.96,81.64656,Alabama,USA,1993,1,21,70,7.7,1.6,1.9,-11.6,0.033,0.07200000000000001,0.22699999999999998,0.494,0.19399999999999998,1997-98 510,Jamie Feick,MIL,23.0,203.2,115.66596000000001,Michigan State,USA,1996,2,48,45,2.3,2.8,0.4,0.3,0.113,0.218,0.125,0.47200000000000003,0.054000000000000006,1997-98 511,Jaren Jackson,SAS,30.0,198.12,97.52228000000001,Georgetown,USA,Undrafted,Undrafted,Undrafted,82,8.8,2.6,1.9,9.0,0.03,0.076,0.171,0.511,0.11599999999999999,1997-98 512,Jason Caffey,GSW,25.0,203.2,116.119552,Alabama,USA,1995,1,20,80,7.3,4.3,0.8,-3.4,0.122,0.146,0.207,0.526,0.08800000000000001,1997-98 513,Jason Kidd,PHX,25.0,193.04,96.16150400000001,California,USA,1994,1,2,82,11.6,6.2,9.1,5.1,0.040999999999999995,0.149,0.17600000000000002,0.502,0.35600000000000004,1997-98 514,Jason Lawson,ORL,23.0,210.82,108.86208,Villanova,USA,1997,2,41,17,1.5,1.6,0.3,7.4,0.10400000000000001,0.345,0.111,0.67,0.083,1997-98 515,Jayson Williams,NJN,30.0,208.28,111.13004,St. John's (NY),USA,1990,1,21,65,12.9,13.6,1.0,3.3,0.203,0.23,0.161,0.541,0.045,1997-98 516,Jeff Grayer,GSW,32.0,195.58,95.25432,Iowa State,USA,1988,1,13,5,2.0,0.8,0.4,-7.3,0.0,0.1,0.19,0.455,0.11800000000000001,1997-98 517,Jeff Hornacek,UTA,35.0,193.04,86.18248,Iowa State,USA,1986,2,46,80,14.2,3.4,4.4,9.4,0.035,0.095,0.204,0.5870000000000001,0.22899999999999998,1997-98 518,Darrell Armstrong,ORL,30.0,185.42,81.64656,Fayetteville State,USA,Undrafted,Undrafted,Undrafted,48,9.2,3.3,4.9,-2.7,0.061,0.096,0.203,0.509,0.34600000000000003,1997-98 519,Horacio Llamas,PHX,24.0,210.82,129.27372,Grand Canyon,USA,Undrafted,Undrafted,Undrafted,8,3.0,2.3,0.1,20.3,0.10800000000000001,0.226,0.331,0.47200000000000003,0.034,1997-98 520,Horace Grant,ORL,32.0,208.28,111.13004,Clemson,USA,1987,1,10,76,12.1,8.1,2.3,-1.5,0.09300000000000001,0.166,0.16899999999999998,0.488,0.11,1997-98 521,Hersey Hawkins,SEA,31.0,190.5,90.7184,Bradley,USA,1988,1,6,82,10.5,4.1,2.7,10.0,0.033,0.11599999999999999,0.146,0.594,0.125,1997-98 522,Herb Williams,NYK,40.0,208.28,109.769264,Ohio State,USA,1981,1,14,27,1.4,1.1,0.1,-8.0,0.042,0.16,0.14300000000000002,0.39799999999999996,0.040999999999999995,1997-98 523,Felton Spencer,GSW,30.0,213.36,120.20188,Louisville,USA,1990,1,6,68,2.4,3.3,0.3,-11.3,0.12,0.187,0.114,0.495,0.033,1997-98 524,Fred Hoiberg,IND,25.0,193.04,92.079176,Iowa State,USA,1995,2,52,65,4.0,1.9,0.7,1.5,0.02,0.142,0.15,0.517,0.08900000000000001,1997-98 525,Gary Grant,POR,33.0,190.5,83.91452,Michigan,USA,1988,1,15,22,4.8,2.2,3.8,0.0,0.024,0.127,0.154,0.529,0.389,1997-98 526,Gary Payton,SEA,29.0,193.04,81.64656,Oregon State,USA,1990,1,2,82,19.2,4.6,8.3,10.4,0.03,0.113,0.24600000000000002,0.544,0.361,1997-98 527,Jeff Nordgaard,MIL,25.0,200.66,102.0582,Wisconsin-Green Bay,USA,1996,2,53,13,1.4,1.1,0.2,4.4,0.071,0.22699999999999998,0.19899999999999998,0.41,0.086,1997-98 528,George Lynch,VAN,27.0,203.2,103.418976,North Carolina,USA,1993,1,12,82,7.5,4.4,1.5,-3.3,0.115,0.17,0.207,0.526,0.146,1997-98 529,George McCloud,PHX,31.0,203.2,102.0582,Florida State,USA,1989,1,7,63,7.2,3.5,1.3,3.5,0.042,0.16699999999999998,0.18899999999999997,0.507,0.105,1997-98 530,George Zidek,SEA,24.0,213.36,113.398,UCLA,USA,1995,1,22,12,2.4,1.4,0.2,-12.3,0.069,0.18600000000000003,0.266,0.402,0.061,1997-98 531,Gerald Madkins,GSW,29.0,193.04,90.7184,UCLA,USA,Undrafted,Undrafted,Undrafted,19,1.9,0.8,2.4,-2.8,0.009000000000000001,0.063,0.094,0.499,0.313,1997-98 532,Gerald Wilkins,ORL,34.0,198.12,102.0582,Tennessee-Chattanooga,USA,1985,2,47,72,5.3,1.3,1.1,-7.6,0.013999999999999999,0.075,0.20600000000000002,0.39799999999999996,0.11199999999999999,1997-98 533,Glen Rice,CHH,31.0,203.2,99.79024,Michigan,USA,1989,1,4,82,22.3,4.3,2.2,2.0,0.033,0.09699999999999999,0.253,0.568,0.099,1997-98 534,Ervin Johnson,MIL,30.0,210.82,111.13004,New Orleans,USA,1993,1,23,81,8.0,8.5,0.7,-1.3,0.131,0.24100000000000002,0.141,0.564,0.04,1997-98 535,Glenn Robinson,MIL,25.0,200.66,104.32616,Purdue,USA,1994,1,1,56,23.4,5.5,2.8,0.9,0.045,0.11900000000000001,0.289,0.522,0.132,1997-98 536,Grant Hill,DET,25.0,203.2,102.0582,Duke,USA,1994,1,3,81,21.1,7.7,6.8,3.2,0.033,0.192,0.272,0.52,0.309,1997-98 537,Grant Long,DET,32.0,205.74,112.490816,Eastern Michigan,USA,1988,2,33,40,3.5,3.8,0.6,1.4,0.08900000000000001,0.154,0.105,0.496,0.055999999999999994,1997-98 538,Greg Anderson,ATL,34.0,208.28,113.398,Houston,USA,1987,1,23,50,1.8,2.4,0.3,-6.9,0.11,0.231,0.126,0.444,0.055999999999999994,1997-98 539,Greg Anthony,SEA,30.0,185.42,81.64656,Nevada-Las Vegas,USA,1991,1,12,80,5.2,1.4,2.6,0.4,0.022000000000000002,0.106,0.218,0.545,0.344,1997-98 540,Greg Foster,UTA,29.0,210.82,113.398,Texas-El Paso,USA,1990,2,35,78,5.7,3.5,0.7,3.0,0.08,0.157,0.17,0.483,0.054000000000000006,1997-98 541,Greg Graham,CLE,27.0,193.04,78.92500799999999,Indiana,USA,1993,1,17,6,2.7,0.2,1.0,-16.7,0.0,0.024,0.191,0.621,0.2,1997-98 542,Greg Minor,BOS,26.0,198.12,104.32616,Louisville,USA,1994,1,25,69,5.0,2.2,1.3,-0.2,0.055,0.10800000000000001,0.153,0.48100000000000004,0.11800000000000001,1997-98 543,Greg Ostertag,UTA,25.0,218.44,127.00576000000001,Kansas,USA,1995,1,28,63,4.7,5.9,0.4,7.0,0.131,0.21,0.133,0.494,0.028999999999999998,1997-98 544,Hakeem Olajuwon,HOU,35.0,213.36,115.66596000000001,Houston,Nigeria,1984,1,1,47,16.4,9.8,3.0,1.8,0.086,0.22899999999999998,0.23800000000000002,0.531,0.159,1997-98 545,Harold Ellis,DEN,27.0,195.58,99.79024,Morehouse,USA,Undrafted,Undrafted,Undrafted,27,6.1,1.9,0.7,-9.4,0.08900000000000001,0.092,0.204,0.591,0.105,1997-98 546,Henry James,CLE,32.0,203.2,99.79024,St. Mary's (TX),USA,Undrafted,Undrafted,Undrafted,28,2.9,0.5,0.2,-0.5,0.013000000000000001,0.102,0.22399999999999998,0.5820000000000001,0.055,1997-98 547,God Shammgod,WAS,22.0,182.88,76.657048,Providence,USA,1997,2,45,20,3.1,0.4,1.8,-5.9,0.013000000000000001,0.036000000000000004,0.256,0.428,0.419,1997-98 548,Danny Manning,PHX,32.0,208.28,106.140528,Kansas,USA,1988,1,1,70,13.5,5.6,2.0,8.0,0.073,0.17800000000000002,0.24100000000000002,0.5539999999999999,0.138,1997-98 549,A.C. Green,DAL,34.0,205.74,102.0582,Oregon State,USA,1985,1,23,82,7.3,8.1,1.5,-7.2,0.09,0.196,0.11800000000000001,0.496,0.07400000000000001,1997-98 550,Dana Barros,BOS,31.0,180.34,73.935496,Boston College,USA,1989,1,16,80,9.8,1.9,3.6,-2.2,0.018000000000000002,0.094,0.201,0.583,0.282,1997-98 551,Armen Gilliam,MIL,34.0,205.74,117.93392,Nevada-Las Vegas,USA,1987,1,2,82,11.2,5.4,1.3,-3.2,0.083,0.168,0.209,0.56,0.087,1997-98 552,Arvydas Sabonis,POR,33.0,220.98,132.448864,None,Lithuania,1986,1,24,73,16.0,10.0,3.0,4.6,0.079,0.284,0.231,0.581,0.161,1997-98 553,Austin Croshere,IND,23.0,205.74,106.59411999999999,Providence,USA,1997,1,12,26,2.9,1.7,0.3,-3.1,0.047,0.16899999999999998,0.19399999999999998,0.41200000000000003,0.052000000000000005,1997-98 554,Avery Johnson,SAS,33.0,180.34,81.64656,Southern,USA,Undrafted,Undrafted,Undrafted,75,10.2,2.0,7.9,5.6,0.013999999999999999,0.048,0.158,0.514,0.35100000000000003,1997-98 555,B.J. Armstrong,CHH,30.0,187.96,83.91452,Iowa,USA,1989,1,18,66,4.0,1.2,2.3,-1.8,0.021,0.084,0.147,0.555,0.278,1997-98 556,Ben Davis,NYK,25.0,205.74,108.86208,Arizona,USA,1996,2,43,7,0.6,0.9,0.0,-29.9,0.316,0.0,0.256,0.2,0.0,1997-98 557,Ben Wallace,WAS,23.0,205.74,108.86208,Virginia Union,USA,Undrafted,Undrafted,Undrafted,67,3.1,4.8,0.3,8.7,0.111,0.207,0.09300000000000001,0.495,0.023,1997-98 558,Benoit Benjamin,PHI,33.0,213.36,120.20188,Creighton,USA,1985,1,3,14,4.5,3.8,0.2,2.5,0.106,0.24600000000000002,0.147,0.581,0.024,1997-98 559,Bill Curley,MIN,26.0,205.74,111.13004,Boston College,USA,1994,1,22,11,3.1,2.5,0.4,6.6,0.08900000000000001,0.145,0.11599999999999999,0.495,0.037000000000000005,1997-98 560,Bill Wennington,CHI,35.0,213.36,125.64498400000001,St. John's (NY),USA,1985,1,16,48,3.5,1.7,0.4,3.7,0.073,0.114,0.193,0.461,0.07200000000000001,1997-98 561,Billy Owens,SAC,29.0,205.74,102.0582,Syracuse,USA,1991,1,3,78,10.5,7.5,2.8,-5.2,0.079,0.2,0.183,0.502,0.151,1997-98 562,Bimbo Coles,GSW,30.0,187.96,82.553744,Virginia Tech,USA,1990,2,40,53,8.0,2.3,4.7,-12.2,0.012,0.078,0.166,0.444,0.28,1997-98 563,Bison Dele,DET,29.0,210.82,117.93392,Arizona,USA,1991,1,10,78,16.2,8.9,1.2,0.4,0.10099999999999999,0.22,0.24100000000000002,0.542,0.068,1997-98 564,Blue Edwards,VAN,32.0,193.04,103.872568,East Carolina,USA,1989,1,21,81,10.8,2.7,2.5,-5.0,0.037000000000000005,0.09300000000000001,0.221,0.521,0.17,1997-98 565,Bo Outlaw,ORL,27.0,203.2,95.25432,Houston,USA,Undrafted,Undrafted,Undrafted,82,9.5,7.8,2.6,-0.4,0.10099999999999999,0.154,0.135,0.575,0.122,1997-98 566,Bob McCann,TOR,34.0,198.12,110.676448,Morehead State,USA,1987,2,32,1,0.0,1.0,0.0,-27.5,0.0,0.2,0.08800000000000001,0.0,0.0,1997-98 567,Bob Sura,CLE,25.0,195.58,90.7184,Florida State,USA,1995,1,17,46,5.8,2.0,3.7,-0.3,0.033,0.092,0.187,0.46299999999999997,0.305,1997-98 568,Bobby Hurley,VAN,27.0,182.88,74.84268,Duke,USA,1993,1,7,61,4.1,1.1,2.9,-8.0,0.016,0.07400000000000001,0.18100000000000002,0.461,0.33,1997-98 569,Bobby Jackson,DEN,25.0,185.42,83.91452,Minnesota,USA,1997,1,23,68,11.6,4.4,4.7,-12.5,0.043,0.128,0.23199999999999998,0.45299999999999996,0.28800000000000003,1997-98 570,Bobby Phills,CHH,28.0,195.58,102.511792,Southern,USA,1991,2,45,62,10.4,3.5,3.0,3.6,0.039,0.1,0.17800000000000002,0.523,0.155,1997-98 571,Brad Lohaus,SAS,33.0,210.82,104.32616,Iowa,USA,1987,2,45,9,2.1,1.3,0.6,-17.0,0.031,0.10800000000000001,0.122,0.426,0.08800000000000001,1997-98 572,Brandon Williams,GSW,23.0,198.12,97.52228000000001,Davidson,USA,Undrafted,Undrafted,Undrafted,9,4.1,1.7,0.3,-2.4,0.031,0.07200000000000001,0.182,0.35700000000000004,0.031,1997-98 573,Brent Barry,MIA,26.0,198.12,88.45044,Oregon State,USA,1995,1,15,58,10.9,2.9,2.6,-6.5,0.021,0.102,0.184,0.5579999999999999,0.153,1997-98 574,Antonio McDyess,PHX,23.0,205.74,99.79024,Alabama,USA,1995,1,2,81,15.1,7.6,1.3,4.1,0.102,0.188,0.22699999999999998,0.5710000000000001,0.076,1997-98 575,Antonio Lang,MIA,26.0,203.2,92.98635999999999,Duke,USA,1994,2,29,6,2.0,0.8,0.2,-12.6,0.083,0.081,0.174,0.7040000000000001,0.063,1997-98 576,Antonio Davis,IND,29.0,205.74,104.32616,Texas-El Paso,USA,1990,2,45,82,9.6,6.8,0.7,5.8,0.111,0.19699999999999998,0.177,0.5579999999999999,0.049,1997-98 577,Antonio Daniels,VAN,23.0,193.04,88.45044,Bowling Green,USA,1997,1,4,74,7.8,1.9,4.5,-12.8,0.013000000000000001,0.069,0.17800000000000002,0.465,0.268,1997-98 578,Jerald Honeycutt,MIL,23.0,205.74,115.212368,Tulane,USA,1997,2,38,38,6.4,2.4,0.9,2.1,0.057999999999999996,0.149,0.245,0.49700000000000005,0.111,1997-98 579,Aaron McKie,PHI,25.0,195.58,94.800728,Temple,USA,1994,1,17,81,4.1,2.9,2.2,1.6,0.036000000000000004,0.113,0.121,0.41,0.159,1997-98 580,Aaron Williams,SEA,26.0,205.74,102.0582,Xavier,USA,Undrafted,Undrafted,Undrafted,65,4.6,2.3,0.2,5.5,0.084,0.147,0.18600000000000003,0.5770000000000001,0.028999999999999998,1997-98 581,Adam Keefe,UTA,28.0,205.74,104.32616,Stanford,USA,1992,1,10,80,7.8,5.5,1.1,9.7,0.11900000000000001,0.147,0.131,0.605,0.063,1997-98 582,Adonal Foyle,GSW,23.0,208.28,113.398,Colgate,St. Vincent & Grenadines,1997,1,8,55,3.0,3.3,0.3,-11.8,0.11199999999999999,0.182,0.162,0.418,0.037000000000000005,1997-98 583,Adrian Caldwell,DAL,31.0,203.2,120.20188,Lamar,USA,Undrafted,Undrafted,Undrafted,1,0.0,0.0,0.0,18.5,0.0,0.0,0.0,0.0,0.0,1997-98 584,Alan Henderson,ATL,25.0,205.74,106.59411999999999,Indiana,USA,1995,1,16,69,14.3,6.4,1.1,3.4,0.11599999999999999,0.134,0.23399999999999999,0.534,0.068,1997-98 585,Allan Houston,NYK,27.0,198.12,90.7184,Tennessee,USA,1993,1,11,82,18.4,3.3,2.6,2.8,0.018000000000000002,0.096,0.266,0.53,0.14,1997-98 586,Allen Iverson,PHI,23.0,182.88,74.84268,Georgetown,USA,1996,1,1,80,22.0,3.7,6.2,-2.8,0.031,0.076,0.267,0.535,0.294,1997-98 587,Alonzo Mourning,MIA,28.0,208.28,118.38751200000002,Georgetown,USA,1992,1,2,58,19.3,9.6,0.9,12.0,0.124,0.212,0.273,0.596,0.052000000000000005,1997-98 588,Alton Lister,POR,39.0,213.36,111.13004,Arizona State,USA,1981,1,21,7,0.9,1.6,0.1,-8.6,0.054000000000000006,0.22,0.105,0.375,0.04,1997-98 589,Brent Price,HOU,29.0,185.42,83.91452,Oklahoma,USA,1992,2,32,72,5.6,1.5,2.7,-0.2,0.034,0.06,0.156,0.575,0.22899999999999998,1997-98 590,Alvin Williams,TOR,23.0,195.58,83.91452,Villanova,USA,1997,2,47,54,6.0,1.5,1.9,1.1,0.027000000000000003,0.055999999999999994,0.158,0.504,0.156,1997-98 591,Andrew Lang,MIL,32.0,210.82,122.46983999999999,Arkansas,USA,1988,2,28,57,2.7,2.7,0.3,-12.0,0.09300000000000001,0.175,0.132,0.452,0.04,1997-98 592,Anfernee Hardaway,ORL,26.0,200.66,97.52228000000001,Memphis,USA,1993,1,3,19,16.4,4.0,3.6,-5.3,0.015,0.12300000000000001,0.273,0.479,0.21600000000000003,1997-98 593,Anthony Bowie,NYK,34.0,198.12,90.7184,Oklahoma,USA,1986,3,66,27,2.8,1.0,0.4,-2.2,0.049,0.094,0.151,0.586,0.078,1997-98 594,Anthony Goldwire,DEN,26.0,187.96,82.553744,Houston,USA,1994,2,52,82,9.2,1.8,3.4,-13.0,0.021,0.06,0.166,0.524,0.226,1997-98 595,Anthony Johnson,SAC,23.0,190.5,86.18248,College of Charleston,USA,1997,2,39,77,7.5,2.2,4.3,-7.7,0.025,0.061,0.154,0.43700000000000006,0.222,1997-98 596,Anthony Mason,CHH,31.0,203.2,113.398,Tennessee State,USA,1988,3,53,81,12.8,10.2,4.2,2.5,0.07,0.247,0.162,0.552,0.174,1997-98 597,Anthony Miller,ATL,26.0,205.74,115.66596000000001,Michigan State,USA,1994,2,39,37,2.1,1.9,0.1,-2.8,0.145,0.205,0.15,0.5710000000000001,0.02,1997-98 598,Anthony Parker,PHI,23.0,198.12,97.52228000000001,Bradley,USA,1997,1,21,37,1.9,0.7,0.5,-5.0,0.040999999999999995,0.106,0.17800000000000002,0.501,0.179,1997-98 599,Anthony Peeler,MIN,28.0,193.04,94.34713599999999,Missouri,USA,1992,1,15,38,12.3,3.2,3.6,1.0,0.035,0.08199999999999999,0.184,0.532,0.17,1997-98 600,Antoine Carr,UTA,36.0,205.74,122.46983999999999,Wichita State,USA,1983,1,8,66,5.7,2.0,0.7,4.5,0.05,0.098,0.18100000000000002,0.513,0.075,1997-98 601,Antoine Walker,BOS,21.0,205.74,111.13004,Kentucky,USA,1996,1,6,82,22.4,10.2,3.3,-4.9,0.08900000000000001,0.22399999999999998,0.293,0.48100000000000004,0.154,1997-98 602,Andrew DeClercq,BOS,25.0,208.28,104.32616,Florida,USA,1995,2,34,81,5.4,4.8,0.7,-3.4,0.126,0.179,0.14300000000000002,0.53,0.061,1997-98 603,Brevin Knight,CLE,22.0,177.8,78.471416,Stanford,USA,1997,1,16,80,9.0,3.2,8.2,6.4,0.033,0.08800000000000001,0.166,0.515,0.418,1997-98 604,Brian Evans,NJN,24.0,203.2,99.79024,Indiana,USA,1996,1,27,72,4.5,1.9,0.8,-4.0,0.061,0.124,0.185,0.47600000000000003,0.105,1997-98 605,Brian Grant,POR,26.0,205.74,115.212368,Xavier,USA,1994,1,8,61,12.1,9.1,1.4,2.7,0.12300000000000001,0.213,0.18100000000000002,0.561,0.077,1997-98 606,Chris Garner,TOR,23.0,177.8,70.760352,Memphis,USA,Undrafted,Undrafted,Undrafted,38,1.4,0.6,1.2,-15.1,0.025,0.073,0.14400000000000002,0.363,0.24100000000000002,1997-98 607,Chris Gatling,NJN,30.0,208.28,104.32616,Old Dominion,USA,1991,1,16,57,11.5,5.9,0.9,-0.7,0.096,0.2,0.24100000000000002,0.496,0.066,1997-98 608,Chris Mills,NYK,28.0,200.66,97.975872,Arizona,USA,1993,1,22,80,9.7,5.1,1.7,5.3,0.065,0.157,0.18600000000000003,0.512,0.10400000000000001,1997-98 609,Chris Morris,UTA,32.0,203.2,103.418976,Auburn,USA,1988,1,4,54,4.3,2.1,0.4,0.8,0.076,0.16399999999999998,0.226,0.498,0.08,1997-98 610,Chris Mullin,IND,34.0,200.66,97.52228000000001,St. John's (NY),USA,1985,1,7,82,11.3,3.0,2.3,10.6,0.022000000000000002,0.107,0.18899999999999997,0.607,0.135,1997-98 611,Chris Robinson,SAC,24.0,195.58,90.7184,Western Kentucky,USA,1996,2,51,35,4.6,1.3,1.1,-8.9,0.022000000000000002,0.098,0.225,0.447,0.16699999999999998,1997-98 612,Chris Webber,WAS,25.0,208.28,111.13004,Michigan,USA,1993,1,1,71,21.9,9.5,3.8,0.9,0.071,0.209,0.268,0.523,0.17600000000000002,1997-98 613,Chris Whitney,WAS,26.0,182.88,77.11064,Clemson,USA,1993,2,47,82,5.1,1.4,2.4,0.9,0.017,0.10800000000000001,0.2,0.512,0.293,1997-98 614,Christian Laettner,ATL,28.0,210.82,111.13004,Duke,USA,1992,1,3,74,13.8,6.6,2.6,4.0,0.08,0.174,0.22,0.5760000000000001,0.14800000000000002,1997-98 615,Chuck Person,SAS,34.0,203.2,106.59411999999999,Auburn,USA,1986,1,4,61,6.7,3.3,1.4,5.6,0.013999999999999999,0.14,0.155,0.494,0.095,1997-98 616,Chucky Brown,ATL,30.0,203.2,97.52228000000001,North Carolina State,USA,1989,2,43,77,5.0,2.4,0.7,2.8,0.057999999999999996,0.11900000000000001,0.177,0.47200000000000003,0.077,1997-98 617,Chris Dudley,NYK,33.0,210.82,108.86208,Yale,USA,1987,4,75,51,3.1,5.4,0.4,8.2,0.153,0.221,0.124,0.428,0.039,1997-98 618,Clar. Weatherspoon,GSW,27.0,200.66,108.86208,Southern Mississippi,USA,1992,1,9,79,9.3,7.5,1.1,-4.0,0.096,0.19399999999999998,0.16399999999999998,0.504,0.065,1997-98 619,Clifford Rozier,MIN,25.0,210.82,111.13004,Louisville,USA,1994,1,16,6,1.0,1.0,0.0,-21.5,0.094,0.214,0.145,0.466,0.0,1997-98 620,Clyde Drexler,HOU,36.0,200.66,100.697424,Houston,USA,1983,1,14,70,18.4,4.9,5.5,1.1,0.05,0.113,0.256,0.531,0.268,1997-98 621,Corey Beck,CHH,27.0,190.5,90.7184,Arkansas,USA,Undrafted,Undrafted,Undrafted,59,3.2,1.5,1.7,2.4,0.045,0.10400000000000001,0.16,0.516,0.21,1997-98 622,Corie Blount,LAL,29.0,208.28,109.769264,Cincinnati,USA,1993,1,25,70,3.6,4.3,0.5,5.1,0.126,0.201,0.115,0.5720000000000001,0.053,1997-98 623,Corliss Williamson,SAC,24.0,200.66,111.13004,Arkansas,USA,1995,1,13,79,17.7,5.6,2.9,-4.6,0.063,0.114,0.243,0.527,0.147,1997-98 624,Cory Alexander,DEN,25.0,185.42,86.18248,Virginia,USA,1995,1,29,60,8.1,2.4,3.5,-6.3,0.016,0.11699999999999999,0.2,0.5479999999999999,0.28600000000000003,1997-98 625,Dale Davis,IND,29.0,210.82,104.32616,Clemson,USA,1991,1,13,78,8.0,7.8,0.9,10.1,0.134,0.193,0.14,0.546,0.049,1997-98 626,Dale Ellis,SEA,37.0,200.66,97.52228000000001,Tennessee,USA,1983,1,9,79,11.8,2.3,1.1,8.4,0.034,0.084,0.205,0.611,0.081,1997-98 627,Damon Stoudamire,POR,24.0,177.8,77.56423199999999,Arizona,USA,1995,1,7,71,17.2,4.2,8.2,-4.6,0.035,0.08900000000000001,0.226,0.502,0.34,1997-98 628,Dan Majerle,MIA,32.0,198.12,99.79024,Central Michigan,USA,1988,1,14,72,7.2,3.7,2.2,8.3,0.031,0.128,0.131,0.562,0.135,1997-98 629,Dan Schayes,ORL,39.0,210.82,117.93392,Syracuse,USA,1981,1,13,74,5.5,3.3,0.6,-0.6,0.08900000000000001,0.146,0.17800000000000002,0.479,0.059000000000000004,1997-98 630,Clifford Robinson,PHX,31.0,208.28,102.0582,Connecticut,USA,1989,2,36,80,14.2,5.1,2.1,5.2,0.079,0.129,0.23,0.5379999999999999,0.11699999999999999,1997-98 631,Danny Fortson,DEN,22.0,200.66,117.93392,Cincinnati,USA,1997,1,10,80,10.2,5.6,1.0,-13.2,0.12,0.182,0.23,0.537,0.081,1997-98 632,Chris Crawford,ATL,23.0,205.74,106.59411999999999,Marquette,USA,1997,2,50,40,3.8,1.0,0.2,-7.1,0.081,0.084,0.252,0.536,0.062,1997-98 633,Chris Carr,MIN,24.0,198.12,99.79024,Southern Illinois,USA,1995,2,56,51,9.9,3.0,1.7,-0.7,0.043,0.105,0.212,0.509,0.11199999999999999,1997-98 634,Brian Oliver,ATL,30.0,193.04,95.25432,Georgia Tech,USA,1990,2,32,5,3.0,1.8,0.4,-1.8,0.05,0.115,0.14400000000000002,0.361,0.047,1997-98 635,Brian Shaw,PHI,32.0,198.12,90.7184,California-Santa Barbara,USA,1988,1,24,59,6.3,3.6,4.4,-8.2,0.026000000000000002,0.13,0.16399999999999998,0.397,0.273,1997-98 636,Brooks Thompson,NYK,27.0,193.04,87.543256,Oklahoma State,USA,1994,1,27,30,2.0,0.5,0.9,-8.3,0.006999999999999999,0.098,0.201,0.496,0.245,1997-98 637,Bruce Bowen,BOS,27.0,200.66,90.7184,Cal State-Fullerton,USA,Undrafted,Undrafted,Undrafted,61,5.6,2.9,1.3,0.4,0.067,0.09300000000000001,0.133,0.483,0.096,1997-98 638,Bryant Reeves,VAN,25.0,213.36,124.7378,Oklahoma State,USA,1995,1,6,74,16.3,7.9,2.1,-8.0,0.09,0.174,0.22,0.5589999999999999,0.10800000000000001,1997-98 639,Bryant Stith,DEN,27.0,195.58,94.34713599999999,Virginia,USA,1992,1,13,31,7.6,2.1,1.6,-14.5,0.024,0.08900000000000001,0.19,0.447,0.122,1997-98 640,Bryon Russell,UTA,27.0,200.66,102.0582,Long Beach State,USA,1993,2,45,82,9.0,4.0,1.2,5.6,0.046,0.131,0.153,0.57,0.075,1997-98 641,Bubba Wells,DAL,23.0,195.58,104.32616,Austin Peay,USA,1997,2,34,39,3.3,1.7,0.9,-14.0,0.057,0.138,0.185,0.474,0.142,1997-98 642,Buck Williams,NYK,38.0,203.2,102.0582,Maryland,USA,1981,1,3,41,4.9,4.5,0.5,2.7,0.128,0.172,0.138,0.56,0.046,1997-98 643,Calbert Cheaney,WAS,26.0,200.66,97.52228000000001,Indiana,USA,1993,1,6,82,12.8,4.0,2.1,0.2,0.032,0.10300000000000001,0.185,0.488,0.096,1997-98 644,Carl Herrera,SAS,31.0,205.74,102.0582,Houston,USA,1990,2,30,58,2.9,1.6,0.4,-5.3,0.055999999999999994,0.145,0.21600000000000003,0.43700000000000006,0.083,1997-98 645,Chris Childs,NYK,30.0,190.5,88.45044,Boise State,USA,Undrafted,Undrafted,Undrafted,68,6.3,2.4,3.9,-0.1,0.022000000000000002,0.10300000000000001,0.152,0.524,0.285,1997-98 646,Carl Thomas,CLE,28.0,193.04,88.45044,Eastern Michigan,USA,Undrafted,Undrafted,Undrafted,43,3.4,1.1,0.4,-5.1,0.026000000000000002,0.102,0.179,0.49,0.086,1997-98 647,Cedric Ceballos,DAL,28.0,200.66,99.79024,Cal State-Fullerton,USA,1990,2,48,47,11.4,4.7,1.3,0.6,0.085,0.165,0.249,0.56,0.111,1997-98 648,Cedric Henderson,CLE,23.0,200.66,97.52228000000001,Memphis,USA,1997,2,44,82,10.1,4.0,2.0,3.1,0.036000000000000004,0.121,0.17800000000000002,0.514,0.113,1997-98 649,Charles Barkley,HOU,35.0,198.12,114.30518400000001,Auburn,USA,1984,1,5,68,15.2,11.7,3.2,2.4,0.131,0.297,0.218,0.564,0.162,1997-98 650,Charles Jones,HOU,41.0,205.74,97.52228000000001,Albany State (GA),USA,1979,8,165,24,0.6,1.0,0.2,-6.2,0.098,0.111,0.049,0.6890000000000001,0.055,1997-98 651,Charles O'Bannon,DET,23.0,195.58,94.800728,UCLA,USA,1997,2,31,30,2.1,1.1,0.6,4.0,0.065,0.11,0.152,0.423,0.11199999999999999,1997-98 652,Charles Oakley,NYK,34.0,205.74,111.13004,Virginia Union,USA,1985,1,9,79,9.0,9.2,2.5,2.7,0.094,0.228,0.149,0.475,0.12,1997-98 653,Charles Smith,LAC,22.0,193.04,87.996848,New Mexico,USA,1997,1,26,34,3.5,0.8,0.6,-7.5,0.05,0.052000000000000005,0.233,0.45799999999999996,0.128,1997-98 654,Charlie Ward,NYK,27.0,187.96,86.18248,Florida State,USA,1994,1,26,82,7.8,3.3,5.7,6.7,0.016,0.122,0.14800000000000002,0.5670000000000001,0.306,1997-98 655,Chauncey Billups,TOR,21.0,190.5,91.625584,Colorado,USA,1997,1,3,80,11.2,2.4,3.9,-10.6,0.028999999999999998,0.07200000000000001,0.203,0.516,0.242,1997-98 656,Cherokee Parks,MIN,25.0,210.82,108.86208,Duke,USA,1995,1,12,79,7.1,5.5,0.7,-0.5,0.095,0.191,0.154,0.5329999999999999,0.046,1997-98 657,Chris Anstey,DAL,23.0,213.36,112.94440800000001,None,USA,1997,1,18,41,5.9,3.8,0.9,-9.8,0.08199999999999999,0.174,0.201,0.455,0.094,1997-98 658,Carlos Rogers,POR,27.0,210.82,99.79024,Tennessee State,USA,1994,1,11,21,5.3,3.2,0.9,-12.0,0.092,0.106,0.14,0.5329999999999999,0.08,1997-98 659,Jermaine O'Neal,POR,19.0,210.82,102.511792,None,USA,1996,1,17,60,4.5,3.4,0.3,-0.1,0.11699999999999999,0.165,0.18100000000000002,0.498,0.037000000000000005,1997-98 660,Danny Ferry,CLE,31.0,208.28,106.59411999999999,Duke,USA,1989,1,2,69,4.2,1.7,0.9,-0.5,0.028999999999999998,0.111,0.163,0.479,0.102,1997-98 661,Jerome Williams,DET,25.0,205.74,93.439952,Georgetown,USA,1996,1,26,77,5.3,4.9,0.6,6.6,0.155,0.185,0.147,0.568,0.061,1997-98 662,Scott Williams,PHI,30.0,208.28,104.32616,North Carolina,USA,Undrafted,Undrafted,Undrafted,58,4.1,3.6,0.5,-3.0,0.121,0.18600000000000003,0.153,0.49200000000000005,0.061,1997-98 663,Scottie Pippen,CHI,32.0,200.66,103.418976,Central Arkansas,USA,1987,1,5,44,19.2,5.2,5.8,8.9,0.038,0.12300000000000001,0.243,0.534,0.244,1997-98 664,Sean Elliott,SAS,30.0,203.2,92.98635999999999,Arizona,USA,1989,1,3,36,9.3,3.4,1.7,3.4,0.02,0.11,0.183,0.495,0.1,1997-98 665,Sean Higgins,POR,29.0,205.74,92.98635999999999,Michigan,USA,1990,2,54,2,0.0,0.0,0.0,-49.8,0.0,0.0,0.18100000000000002,0.0,0.0,1997-98 666,Sean Rooks,LAL,28.0,208.28,117.93392,Arizona,USA,1992,2,30,41,3.4,2.9,0.6,1.6,0.11699999999999999,0.17300000000000001,0.155,0.512,0.085,1997-98 667,Shandon Anderson,UTA,24.0,198.12,95.25432,Georgia,USA,1996,2,54,82,8.3,2.8,1.1,3.7,0.073,0.10800000000000001,0.198,0.586,0.099,1997-98 668,Shaquille O'Neal,LAL,26.0,215.9,142.88148,Louisiana State,USA,1992,1,1,60,28.3,11.4,2.4,15.6,0.114,0.23600000000000002,0.331,0.5870000000000001,0.125,1997-98 669,Shareef Abdur-Rahim,VAN,21.0,205.74,104.32616,California,USA,1996,1,3,82,22.3,7.1,2.6,-8.4,0.08800000000000001,0.135,0.282,0.561,0.131,1997-98 670,Sharone Wright,TOR,25.0,210.82,117.93392,Clemson,USA,1994,1,6,7,2.3,1.3,0.6,1.2,0.027999999999999997,0.182,0.187,0.508,0.14800000000000002,1997-98 671,Shawn Bradley,DAL,26.0,228.6,112.490816,Brigham Young,USA,1993,1,2,64,11.4,8.1,0.9,-2.8,0.098,0.21,0.223,0.46299999999999997,0.057999999999999996,1997-98 672,Shawn Kemp,CLE,28.0,208.28,116.119552,Trinity Valley Community College,USA,1989,1,17,80,18.0,9.3,2.5,5.3,0.098,0.22899999999999998,0.278,0.512,0.132,1997-98 673,Shawn Respert,DAL,26.0,187.96,88.45044,Michigan State,USA,1995,1,8,57,5.9,1.8,1.1,-11.9,0.043,0.085,0.179,0.53,0.109,1997-98 674,Shawnelle Scott,CLE,26.0,210.82,113.398,St. John's (NY),USA,1994,2,43,41,1.1,1.4,0.2,6.2,0.135,0.247,0.133,0.501,0.071,1997-98 675,Shea Seals,LAL,22.0,195.58,95.25432,Tulsa,USA,Undrafted,Undrafted,Undrafted,4,1.0,1.0,0.0,-13.1,0.158,0.1,0.355,0.205,0.0,1997-98 676,Sherman Douglas,NJN,31.0,185.42,88.45044,Syracuse,USA,1989,2,28,80,8.0,1.7,4.0,1.6,0.034,0.061,0.184,0.541,0.327,1997-98 677,Spud Webb,ORL,34.0,167.64,60.327736,North Carolina State,USA,1985,4,87,4,3.0,0.8,1.3,-24.6,0.067,0.038,0.252,0.466,0.294,1997-98 678,Stacey Augmon,POR,29.0,203.2,92.98635999999999,Nevada-Las Vegas,USA,1991,1,9,71,5.7,3.3,1.2,0.2,0.086,0.10099999999999999,0.16399999999999998,0.457,0.099,1997-98 679,Stanley Roberts,MIN,28.0,213.36,131.54168,Louisiana State,USA,1991,1,23,74,6.2,4.9,0.4,-0.3,0.092,0.212,0.177,0.503,0.032,1997-98 680,Stephen Howard,SEA,27.0,205.74,102.0582,DePaul,USA,Undrafted,Undrafted,Undrafted,13,1.9,0.9,0.2,-16.2,0.115,0.113,0.248,0.43200000000000005,0.094,1997-98 681,Stephon Marbury,MIN,21.0,187.96,81.64656,Georgia Tech,USA,1996,1,4,82,17.7,2.8,8.6,0.9,0.021,0.062,0.24100000000000002,0.505,0.359,1997-98 682,Steve Henson,DET,30.0,185.42,81.64656,Kansas State,USA,1990,2,44,23,1.6,0.1,0.2,10.2,0.0,0.040999999999999995,0.249,0.619,0.105,1997-98 683,Steve Kerr,CHI,32.0,190.5,82.10015200000001,Arizona,USA,1988,2,50,50,7.5,1.5,1.9,5.5,0.013999999999999999,0.065,0.141,0.581,0.14800000000000002,1997-98 684,Steve Nash,PHX,24.0,190.5,88.45044,Santa Clara,Canada,1996,1,15,76,9.1,2.1,3.4,8.1,0.023,0.08900000000000001,0.195,0.556,0.249,1997-98 685,Scott Burrell,CHI,27.0,200.66,98.88305600000001,Connecticut,USA,1993,1,20,80,5.2,2.5,0.8,7.2,0.079,0.126,0.183,0.516,0.102,1997-98 686,Scott Brooks,CLE,32.0,180.34,74.84268,California-Irvine,USA,Undrafted,Undrafted,Undrafted,43,1.8,0.7,1.1,-5.0,0.021,0.09300000000000001,0.128,0.528,0.275,1997-98 687,Scot Pollard,DET,23.0,210.82,120.20188,Kansas,USA,1997,1,19,33,2.7,2.2,0.3,0.8,0.133,0.15,0.136,0.555,0.05,1997-98 688,Samaki Walker,DAL,22.0,205.74,108.86208,Louisville,USA,1996,1,9,41,8.9,7.4,0.6,-11.2,0.1,0.226,0.191,0.503,0.043,1997-98 689,Reggie Jordan,MIN,30.0,193.04,88.45044,New Mexico State,USA,Undrafted,Undrafted,Undrafted,57,2.6,1.7,0.9,6.8,0.135,0.098,0.156,0.515,0.147,1997-98 690,Reggie Miller,IND,32.0,200.66,83.91452,UCLA,USA,1987,1,11,81,19.5,2.9,2.1,10.5,0.021,0.075,0.237,0.619,0.106,1997-98 691,Reggie Slater,TOR,27.0,200.66,115.66596000000001,Wyoming,USA,Undrafted,Undrafted,Undrafted,78,8.0,3.9,0.9,-7.2,0.091,0.12,0.188,0.52,0.073,1997-98 692,Rex Chapman,PHX,30.0,193.04,88.45044,Kentucky,USA,1988,1,8,68,15.9,2.5,3.0,3.2,0.015,0.07200000000000001,0.22899999999999998,0.521,0.149,1997-98 693,Rex Walters,MIA,28.0,193.04,86.18248,Kansas,USA,1993,1,16,38,2.1,0.6,0.9,-9.9,0.025,0.085,0.17,0.612,0.25,1997-98 694,Rick Brunson,POR,26.0,193.04,88.45044,Temple,USA,Undrafted,Undrafted,Undrafted,38,4.3,1.5,2.6,-1.4,0.027999999999999997,0.076,0.161,0.48100000000000004,0.253,1997-98 695,Rick Fox,LAL,28.0,200.66,109.769264,North Carolina,Canada,1991,1,24,82,12.0,4.4,3.4,7.8,0.034,0.11199999999999999,0.177,0.564,0.155,1997-98 696,Rick Mahorn,DET,39.0,208.28,117.93392,Hampton,USA,1980,2,35,59,2.4,3.3,0.3,5.5,0.10800000000000001,0.207,0.11800000000000001,0.49,0.034,1997-98 697,Ricky Pierce,MIL,38.0,193.04,97.52228000000001,Rice,USA,1982,1,18,39,3.9,1.2,0.9,-12.5,0.049,0.078,0.195,0.455,0.155,1997-98 698,Rik Smits,IND,31.0,223.52,120.20188,Marist,USA,1988,1,2,73,16.7,6.9,1.4,10.7,0.079,0.203,0.292,0.532,0.091,1997-98 699,Robert Horry,LAL,27.0,208.28,99.79024,Alabama,USA,1992,1,11,72,7.4,7.5,2.3,11.6,0.1,0.179,0.121,0.542,0.10400000000000001,1997-98 700,Steven Smith,ATL,29.0,203.2,100.243832,Michigan State,USA,1991,1,5,73,20.1,4.2,4.0,4.4,0.057,0.07,0.242,0.563,0.187,1997-98 701,Robert Pack,DAL,29.0,187.96,86.18248,Southern California,USA,Undrafted,Undrafted,Undrafted,12,7.8,2.8,3.5,-19.7,0.03,0.102,0.235,0.413,0.243,1997-98 702,Rodney Rogers,LAC,27.0,200.66,115.66596000000001,Wake Forest,USA,1993,1,9,76,15.1,5.6,2.7,-10.0,0.07,0.127,0.22699999999999998,0.532,0.139,1997-98 703,Rodrick Rhodes,HOU,24.0,198.12,102.0582,Southern California,USA,1997,1,24,58,5.8,1.2,1.9,-4.2,0.03,0.047,0.2,0.439,0.175,1997-98 704,Ron Harper,CHI,34.0,198.12,97.975872,Miami (OH),USA,1986,1,8,82,9.3,3.5,2.9,10.5,0.054000000000000006,0.091,0.16699999999999998,0.503,0.157,1997-98 705,Ron Mercer,BOS,22.0,200.66,95.25432,Kentucky,USA,1997,1,6,80,15.3,3.5,2.2,-2.8,0.044000000000000004,0.084,0.22399999999999998,0.491,0.114,1997-98 706,Rony Seikaly,NJN,33.0,210.82,114.758776,Syracuse,USA,1988,1,9,56,13.3,7.0,1.4,-7.5,0.102,0.179,0.243,0.514,0.08900000000000001,1997-98 707,Roy Rogers,TOR,24.0,208.28,106.59411999999999,Alabama,USA,1996,1,22,15,1.3,1.1,0.1,-21.7,0.083,0.092,0.133,0.36200000000000004,0.032,1997-98 708,Rusty LaRue,CHI,24.0,190.5,83.91452,Wake Forest,USA,Undrafted,Undrafted,Undrafted,14,3.5,0.6,0.4,9.9,0.009000000000000001,0.055999999999999994,0.191,0.466,0.054000000000000006,1997-98 709,Sam Cassell,NJN,28.0,190.5,83.91452,Florida State,USA,1993,1,24,75,19.6,3.0,8.0,2.1,0.03,0.07400000000000001,0.272,0.5329999999999999,0.38799999999999996,1997-98 710,Sam Mack,VAN,28.0,200.66,99.79024,Houston,USA,Undrafted,Undrafted,Undrafted,57,10.8,2.3,1.8,-10.5,0.024,0.081,0.207,0.519,0.11800000000000001,1997-98 711,Sam Mitchell,MIN,34.0,200.66,97.52228000000001,Mercer,USA,1985,3,54,81,12.3,4.8,1.3,1.8,0.059000000000000004,0.135,0.198,0.539,0.078,1997-98 712,Sam Perkins,SEA,37.0,205.74,117.93392,North Carolina,USA,1984,1,4,81,7.2,3.1,1.4,10.8,0.039,0.147,0.168,0.55,0.107,1997-98 713,Rod Strickland,WAS,31.0,190.5,83.91452,DePaul,USA,1988,1,19,76,17.8,5.3,10.5,1.3,0.04,0.115,0.235,0.501,0.41700000000000004,1997-98 714,Reggie Hanson,BOS,29.0,203.2,88.45044,Kentucky,USA,1998,Undrafted,Undrafted,8,0.8,0.8,0.1,7.3,0.16699999999999998,0.188,0.161,0.5,0.055999999999999994,1997-98 715,Stojko Vrankovic,LAC,34.0,218.44,117.93392,None,USA,Undrafted,Undrafted,Undrafted,65,3.0,4.0,0.6,-6.9,0.081,0.21,0.11699999999999999,0.45399999999999996,0.053,1997-98 716,Terrell Brandon,MIL,28.0,180.34,78.471416,Oregon,USA,1991,1,11,50,16.8,3.5,7.7,2.5,0.016,0.106,0.237,0.526,0.363,1997-98 717,Travis Williams,CHH,29.0,200.66,113.398,South Carolina State,USA,Undrafted,Undrafted,Undrafted,39,3.5,2.4,0.5,-5.4,0.162,0.134,0.205,0.488,0.094,1997-98 718,Troy Hudson,UTA,22.0,185.42,80.73937600000001,Southern Illinois,USA,Undrafted,Undrafted,Undrafted,8,1.5,0.3,0.5,-6.4,0.053,0.048,0.302,0.429,0.444,1997-98 719,Tyrone Corbin,ATL,35.0,198.12,102.0582,DePaul,USA,1985,2,35,79,10.2,4.6,2.2,7.0,0.036000000000000004,0.11900000000000001,0.155,0.502,0.105,1997-98 720,Tyrone Hill,MIL,30.0,205.74,113.398,Xavier,USA,1990,1,11,57,10.0,10.7,1.5,1.1,0.127,0.242,0.142,0.5379999999999999,0.067,1997-98 721,Tyus Edney,BOS,25.0,177.8,68.945984,UCLA,USA,1995,2,47,52,5.3,1.1,2.7,0.2,0.034,0.068,0.217,0.523,0.33399999999999996,1997-98 722,Vernon Maxwell,CHH,32.0,193.04,81.64656,Florida,USA,1988,2,47,42,6.9,1.4,1.2,2.9,0.024,0.081,0.22899999999999998,0.512,0.154,1997-98 723,Vin Baker,SEA,26.0,210.82,113.398,Hartford,USA,1993,1,8,82,19.2,8.0,1.9,7.7,0.11699999999999999,0.14800000000000002,0.247,0.564,0.092,1997-98 724,Vincent Askew,POR,32.0,198.12,95.25432,Memphis,USA,1987,2,39,30,2.2,2.3,1.3,0.0,0.057999999999999996,0.11800000000000001,0.106,0.46399999999999997,0.134,1997-98 725,Vinny Del Negro,SAS,31.0,193.04,90.7184,North Carolina State,USA,1988,2,29,54,9.5,2.8,3.4,4.0,0.009000000000000001,0.09,0.158,0.493,0.172,1997-98 726,Vitaly Potapenko,CLE,23.0,208.28,127.00576000000001,Wright State,Ukraine,1996,1,12,80,7.1,3.9,0.7,0.1,0.09699999999999999,0.177,0.22899999999999998,0.517,0.083,1997-98 727,Vlade Divac,CHH,30.0,215.9,117.93392,None,Serbia and Montenegro,1989,1,26,64,10.4,8.1,2.7,5.5,0.125,0.22,0.188,0.539,0.154,1997-98 728,Voshon Lenard,MIA,25.0,193.04,92.98635999999999,Minnesota,USA,1994,2,46,81,12.6,3.6,2.2,7.4,0.033,0.094,0.182,0.547,0.115,1997-98 729,Walt Williams,POR,28.0,203.2,104.32616,Maryland,USA,1992,1,7,59,10.3,3.4,2.1,-7.5,0.038,0.124,0.209,0.508,0.149,1997-98 730,Walter McCarty,BOS,24.0,208.28,104.32616,Kentucky,USA,1996,1,19,82,9.6,4.4,2.2,-4.5,0.066,0.122,0.179,0.483,0.11900000000000001,1997-98 731,Wesley Person,CLE,27.0,198.12,88.45044,Auburn,USA,1994,1,23,82,14.7,4.4,2.3,3.5,0.025,0.111,0.16399999999999998,0.583,0.102,1997-98 732,Will Perdue,SAS,32.0,213.36,108.86208,Vanderbilt,USA,1988,1,11,79,5.0,6.8,0.7,7.1,0.14300000000000002,0.264,0.136,0.557,0.059000000000000004,1997-98 733,William Cunningham,PHI,24.0,210.82,113.398,Temple,USA,Undrafted,Undrafted,Undrafted,7,1.1,1.4,0.1,27.4,0.138,0.14,0.11199999999999999,0.444,0.042,1997-98 734,Willie Burton,SAS,30.0,203.2,95.25432,Minnesota,USA,1990,1,9,13,2.1,0.7,0.1,-6.8,0.068,0.154,0.276,0.514,0.043,1997-98 735,Xavier McDaniel,NJN,35.0,200.66,92.98635999999999,Wichita State,USA,1985,1,4,20,1.3,1.6,0.5,-2.1,0.069,0.135,0.102,0.373,0.083,1997-98 736,Yinka Dare,NJN,25.0,213.36,120.20188,George Washington,USA,1994,1,14,10,1.2,1.7,0.1,-15.9,0.135,0.163,0.162,0.27899999999999997,0.026000000000000002,1997-98 737,Zan Tabak,BOS,28.0,213.36,111.13004,None,USA,1991,2,51,57,5.4,3.7,0.8,-11.4,0.094,0.17,0.18,0.46399999999999997,0.083,1997-98 738,Zydrunas Ilgauskas,CLE,23.0,220.98,117.93392,None,Lithuania,1996,1,20,82,13.9,8.8,0.9,4.4,0.147,0.222,0.223,0.564,0.054000000000000006,1997-98 739,Jerome Kersey,SEA,36.0,200.66,102.0582,Longwood,USA,1984,2,46,37,6.3,3.6,1.2,8.7,0.09300000000000001,0.141,0.188,0.447,0.095,1997-98 740,Travis Knight,BOS,23.0,213.36,106.59411999999999,Connecticut,USA,1996,1,29,74,6.5,4.9,1.4,-4.9,0.10400000000000001,0.188,0.162,0.499,0.10800000000000001,1997-98 741,Travis Best,IND,25.0,180.34,82.553744,Georgia Tech,USA,1995,1,23,82,6.5,1.5,3.4,2.2,0.023,0.07400000000000001,0.204,0.498,0.331,1997-98 742,Tracy Murray,WAS,26.0,200.66,103.418976,UCLA,USA,1992,1,18,82,15.1,3.4,1.0,-0.2,0.037000000000000005,0.106,0.235,0.563,0.065,1997-98 743,Tracy McGrady,TOR,19.0,203.2,95.25432,None,USA,1997,1,9,64,7.0,4.2,1.5,-9.5,0.095,0.155,0.187,0.505,0.136,1997-98 744,Terry Cummings,NYK,37.0,205.74,113.398,DePaul,USA,1982,1,2,74,6.2,3.8,0.6,1.1,0.098,0.195,0.207,0.495,0.07,1997-98 745,Terry Davis,WAS,31.0,208.28,113.398,Virginia Union,USA,Undrafted,Undrafted,Undrafted,74,4.4,6.5,0.4,-1.2,0.129,0.19399999999999998,0.095,0.524,0.025,1997-98 746,Terry Dehere,SAC,26.0,193.04,86.18248,Seton Hall,USA,1993,1,13,77,6.4,1.4,2.5,-7.2,0.017,0.07,0.18899999999999997,0.494,0.233,1997-98 747,Terry Mills,MIA,30.0,208.28,113.398,Michigan,USA,1990,1,16,50,4.2,3.0,0.8,2.3,0.053,0.175,0.159,0.48100000000000004,0.08199999999999999,1997-98 748,Terry Porter,MIN,35.0,190.5,88.45044,Wisconsin-Stevens Point,USA,1985,1,24,82,9.5,2.0,3.3,3.1,0.025,0.085,0.19,0.586,0.23600000000000002,1997-98 749,Theo Ratliff,PHI,25.0,208.28,102.0582,Wyoming,USA,1995,1,18,82,9.9,6.7,0.7,-0.4,0.105,0.153,0.156,0.562,0.039,1997-98 750,Tim Breaux,MIL,27.0,200.66,97.52228000000001,Wyoming,USA,Undrafted,Undrafted,Undrafted,6,1.7,0.3,0.3,1.2,0.0,0.069,0.209,0.42100000000000004,0.154,1997-98 751,Tim Duncan,SAS,22.0,213.36,112.490816,Wake Forest,US Virgin Islands,1997,1,1,82,21.1,11.9,2.7,8.0,0.10800000000000001,0.23800000000000002,0.262,0.5770000000000001,0.131,1997-98 752,Tim Hardaway,MIA,31.0,182.88,88.45044,Texas-El Paso,USA,1989,1,14,81,18.9,3.7,8.3,8.1,0.019,0.094,0.254,0.53,0.401,1997-98 753,Tim Kempton,TOR,34.0,208.28,111.13004,Notre Dame,USA,1986,6,124,8,0.5,0.8,0.4,-12.7,0.10800000000000001,0.045,0.128,0.222,0.094,1997-98 754,Tim Legler,WAS,31.0,193.04,90.7184,La Salle,USA,Undrafted,Undrafted,Undrafted,8,1.1,0.5,0.4,-5.6,0.026000000000000002,0.036000000000000004,0.14400000000000002,0.217,0.057999999999999996,1997-98 755,Tariq Abdul-Wahad,SAC,23.0,198.12,101.151016,San Jose State,France,1997,1,11,59,6.4,2.0,0.9,-7.0,0.048,0.085,0.217,0.456,0.087,1997-98 756,Tim Thomas,PHI,21.0,208.28,104.32616,Villanova,USA,1997,1,7,77,11.0,3.7,1.2,-4.9,0.069,0.11800000000000001,0.22699999999999998,0.5379999999999999,0.092,1997-98 757,Todd Fuller,GSW,23.0,210.82,115.66596000000001,North Carolina State,USA,1996,1,11,57,4.0,3.4,0.2,-4.6,0.099,0.233,0.187,0.473,0.027000000000000003,1997-98 758,Tom Chambers,PHI,39.0,208.28,99.79024,Utah,USA,1981,1,8,1,6.0,2.0,0.0,-17.8,0.0,0.16699999999999998,0.157,1.042,0.0,1997-98 759,Tom Gugliotta,MIN,28.0,208.28,108.86208,North Carolina State,USA,1992,1,6,41,20.1,8.7,4.1,3.2,0.078,0.17600000000000002,0.23600000000000002,0.561,0.177,1997-98 760,Tom Hammonds,MIN,31.0,205.74,102.0582,Georgia Tech,USA,1989,1,9,57,6.1,4.8,0.6,-2.3,0.1,0.17800000000000002,0.13699999999999998,0.569,0.048,1997-98 761,Toni Kukoc,CHI,29.0,210.82,105.23334399999999,None,Croatia,1990,2,29,74,13.3,4.4,4.2,10.2,0.062,0.10400000000000001,0.218,0.524,0.231,1997-98 762,Tony Battie,DEN,22.0,210.82,108.86208,Texas Tech,USA,1997,1,5,65,8.4,5.4,0.9,-15.6,0.10099999999999999,0.16699999999999998,0.20199999999999999,0.47700000000000004,0.075,1997-98 763,Tony Delk,GSW,24.0,187.96,87.089664,Kentucky,USA,1996,1,16,77,10.1,2.2,2.2,-9.3,0.024,0.086,0.254,0.452,0.19399999999999998,1997-98 764,Tony Dumas,CLE,25.0,198.12,86.18248,Missouri-Kansas City,USA,1994,1,19,7,2.0,0.7,0.7,11.0,0.031,0.10800000000000001,0.20199999999999999,0.526,0.179,1997-98 765,Tony Farmer,CHH,28.0,205.74,111.13004,Nebraska,USA,Undrafted,Undrafted,Undrafted,27,2.5,1.2,0.2,-6.4,0.10300000000000001,0.10800000000000001,0.198,0.47700000000000004,0.046,1997-98 766,Tony Massenburg,VAN,30.0,205.74,113.398,Maryland,USA,1990,2,43,61,6.5,3.8,0.3,-10.5,0.10400000000000001,0.19699999999999998,0.214,0.536,0.04,1997-98 767,Tony Smith,MIL,30.0,190.5,83.91452,Marquette,USA,1990,2,51,7,2.7,1.0,1.4,-13.7,0.052000000000000005,0.057,0.195,0.369,0.23800000000000002,1997-98 768,Todd Day,MIA,28.0,198.12,85.275296,Arkansas,USA,1992,1,8,5,6.0,1.2,1.4,9.7,0.062,0.042,0.22399999999999998,0.429,0.132,1997-98 769,Reggie Geary,SAS,24.0,187.96,84.821704,Arizona,USA,1996,2,56,62,2.5,1.1,1.2,7.5,0.034,0.078,0.16399999999999998,0.392,0.175,1997-98 770,Gary Trent,TOR,23.0,203.2,113.398,Ohio,USA,1995,1,11,54,11.7,6.3,1.3,-5.6,0.106,0.17800000000000002,0.228,0.527,0.1,1997-98 771,Rasheed Wallace,POR,23.0,210.82,102.0582,North Carolina,USA,1995,1,4,77,14.6,6.2,2.5,4.5,0.057,0.134,0.184,0.564,0.114,1997-98 772,Kevin Edwards,ORL,32.0,190.5,86.18248,DePaul,USA,1988,1,20,39,3.8,1.4,1.0,-2.7,0.04,0.087,0.18100000000000002,0.41600000000000004,0.125,1997-98 773,Kevin Garnett,MIN,22.0,210.82,99.79024,None,USA,1995,1,5,82,18.5,9.6,4.2,2.5,0.08,0.19699999999999998,0.225,0.527,0.17800000000000002,1997-98 774,Kevin Johnson,PHX,32.0,185.42,86.18248,California,USA,1987,1,7,50,9.5,3.3,4.9,6.8,0.034,0.114,0.18899999999999997,0.555,0.28800000000000003,1997-98 775,Kevin Ollie,ORL,25.0,193.04,88.45044,Connecticut,USA,Undrafted,Undrafted,Undrafted,35,3.5,1.1,1.9,-1.9,0.023,0.078,0.18600000000000003,0.47700000000000004,0.263,1997-98 776,Kevin Salvadori,SAC,27.0,213.36,104.779752,North Carolina,USA,Undrafted,Undrafted,Undrafted,16,0.3,1.3,0.2,-9.4,0.055999999999999994,0.156,0.106,0.16,0.051,1997-98 777,Kevin Willis,HOU,35.0,213.36,111.13004,Michigan State,USA,1984,1,11,81,16.1,8.4,1.0,-1.9,0.109,0.209,0.244,0.555,0.057999999999999996,1997-98 778,Khalid Reeves,DAL,25.0,190.5,91.171992,Arizona,USA,1994,1,12,82,8.7,2.3,2.8,-4.5,0.031,0.075,0.195,0.522,0.196,1997-98 779,Kiwane Garris,DEN,23.0,187.96,83.007336,Illinois,USA,Undrafted,Undrafted,Undrafted,28,2.4,0.7,1.0,-17.4,0.016,0.08199999999999999,0.179,0.447,0.214,1997-98 780,Kobe Bryant,LAL,19.0,200.66,95.25432,None,USA,1996,1,13,79,15.4,3.1,2.5,6.9,0.044000000000000004,0.08800000000000001,0.268,0.5479999999999999,0.165,1997-98 781,Kurt Thomas,DAL,25.0,205.74,104.32616,Texas Christian,USA,1995,1,10,5,7.4,4.8,0.6,-5.5,0.11599999999999999,0.25,0.34700000000000003,0.39899999999999997,0.077,1997-98 782,LaPhonso Ellis,DEN,28.0,203.2,108.86208,Notre Dame,USA,1992,1,5,76,14.3,7.2,2.8,-13.2,0.065,0.187,0.22899999999999998,0.484,0.158,1997-98 783,Lamond Murray,LAC,25.0,200.66,107.047712,California,USA,1994,1,7,79,15.4,6.1,1.8,-8.2,0.077,0.14,0.223,0.5479999999999999,0.099,1997-98 784,Larry Johnson,NYK,29.0,200.66,119.294696,Nevada-Las Vegas,USA,1991,1,1,70,15.5,5.7,2.1,2.3,0.087,0.11599999999999999,0.22399999999999998,0.539,0.11199999999999999,1997-98 785,Larry Robinson,VAN,30.0,190.5,81.64656,Centenary (LA),USA,Undrafted,Undrafted,Undrafted,6,2.8,2.0,0.2,-2.8,0.043,0.233,0.221,0.428,0.043,1997-98 786,Latrell Sprewell,GSW,27.0,195.58,86.18248,Alabama,USA,1992,1,24,14,21.4,3.6,4.9,-16.7,0.012,0.091,0.273,0.47,0.22699999999999998,1997-98 787,Lawrence Funderburke,SAC,27.0,205.74,104.32616,Ohio State,USA,1994,2,51,52,9.5,4.5,1.2,-7.0,0.081,0.168,0.212,0.534,0.102,1997-98 788,Lawrence Moten,WAS,26.0,195.58,83.91452,Syracuse,USA,1995,2,36,8,1.1,0.1,0.4,-29.5,0.034,0.0,0.253,0.305,0.214,1997-98 789,Ledell Eackles,WAS,31.0,195.58,104.779752,New Orleans,USA,1988,2,36,42,5.2,1.8,0.4,0.4,0.05,0.102,0.184,0.542,0.054000000000000006,1997-98 790,Lee Mayberry,VAN,28.0,185.42,81.64656,Arkansas,USA,1992,1,23,79,4.6,1.4,4.4,-3.5,0.012,0.06,0.11699999999999999,0.489,0.271,1997-98 791,Lindsey Hunter,DET,27.0,187.96,88.45044,Jackson State,USA,1993,1,10,71,12.1,3.5,3.2,-0.3,0.028999999999999998,0.08800000000000001,0.191,0.47200000000000003,0.15,1997-98 792,Litterial Green,MIL,28.0,185.42,88.45044,Georgia,USA,1992,2,39,21,1.2,0.3,0.8,-1.0,0.009000000000000001,0.054000000000000006,0.142,0.39299999999999996,0.21100000000000002,1997-98 793,Lloyd Daniels,TOR,30.0,200.66,92.98635999999999,Mt. San Antonio,USA,Undrafted,Undrafted,Undrafted,6,5.7,1.2,0.7,-16.9,0.057999999999999996,0.045,0.201,0.509,0.08900000000000001,1997-98 794,Lorenzen Wright,LAC,22.0,210.82,108.86208,Memphis,USA,1996,1,7,69,9.0,8.8,0.8,-5.5,0.099,0.233,0.156,0.49,0.044000000000000004,1997-98 795,Kerry Kittles,NJN,24.0,195.58,81.19296800000001,Villanova,USA,1996,1,8,77,17.2,4.7,2.3,1.9,0.051,0.1,0.21,0.525,0.10400000000000001,1997-98 796,Kenny Anderson,BOS,27.0,185.42,76.203456,Georgia Tech,USA,1991,1,2,61,12.2,2.8,5.7,-0.5,0.024,0.081,0.21600000000000003,0.491,0.311,1997-98 797,Kendall Gill,NJN,30.0,195.58,97.975872,Illinois,USA,1990,1,5,81,13.4,4.8,2.5,1.1,0.044000000000000004,0.128,0.19899999999999998,0.486,0.12,1997-98 798,Kelvin Cato,POR,23.0,210.82,115.66596000000001,Iowa State,USA,1997,1,15,74,3.8,3.4,0.3,-2.3,0.10300000000000001,0.17300000000000001,0.147,0.496,0.038,1997-98 799,Jerry Stackhouse,DET,23.0,198.12,98.88305600000001,North Carolina,USA,1995,1,3,79,15.8,3.4,3.1,-0.6,0.049,0.07400000000000001,0.25,0.532,0.17,1997-98 800,Jim McIlvaine,SEA,25.0,215.9,119.74828799999999,Marquette,USA,1994,2,32,78,3.2,3.3,0.2,7.0,0.09300000000000001,0.151,0.11699999999999999,0.47700000000000004,0.021,1997-98 801,Jimmy Oliver,WAS,28.0,195.58,92.98635999999999,Purdue,USA,1991,2,39,1,5.0,2.0,1.0,4.2,0.0,0.222,0.18600000000000003,0.625,0.25,1997-98 802,Joe Dumars,DET,35.0,190.5,88.45044,McNeese State,USA,1985,1,18,72,13.1,1.4,3.5,0.8,0.006999999999999999,0.047,0.191,0.5489999999999999,0.187,1997-98 803,Joe Kleine,CHI,36.0,210.82,115.66596000000001,Arkansas,USA,1985,1,6,46,2.0,1.7,0.7,-4.0,0.076,0.14300000000000002,0.162,0.408,0.12300000000000001,1997-98 804,Joe Smith,PHI,22.0,208.28,102.0582,Maryland,USA,1995,1,1,79,14.6,6.0,1.2,-9.9,0.087,0.131,0.251,0.48200000000000004,0.077,1997-98 805,Joe Stephens,HOU,25.0,200.66,95.25432,Arkansas-Little Rock,USA,Undrafted,Undrafted,Undrafted,7,3.9,0.9,0.1,-24.2,0.071,0.09699999999999999,0.316,0.441,0.063,1997-98 806,Joe Wolf,DEN,33.0,210.82,104.32616,North Carolina,USA,1987,1,13,57,1.5,2.2,0.5,-9.3,0.067,0.179,0.11,0.34700000000000003,0.08,1997-98 807,John Crotty,POR,28.0,185.42,83.91452,Virginia,USA,Undrafted,Undrafted,Undrafted,26,3.7,1.2,2.4,-5.5,0.012,0.08800000000000001,0.171,0.457,0.276,1997-98 808,John Starks,NYK,32.0,195.58,83.91452,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,82,12.9,2.8,2.7,2.4,0.026000000000000002,0.10099999999999999,0.255,0.505,0.188,1997-98 809,John Stockton,UTA,36.0,185.42,79.3786,Gonzaga,USA,1984,1,16,64,12.0,2.6,8.5,13.4,0.026000000000000002,0.084,0.19399999999999998,0.628,0.447,1997-98 810,Lorenzo Williams,WAS,28.0,205.74,90.7184,Stetson,USA,Undrafted,Undrafted,Undrafted,14,1.9,1.9,0.2,-18.2,0.152,0.11,0.076,0.727,0.039,1997-98 811,John Thomas,TOR,22.0,205.74,120.20188,Minnesota,USA,1997,1,25,54,2.8,2.0,0.3,-2.6,0.099,0.133,0.145,0.552,0.05,1997-98 812,Johnny Newman,DEN,34.0,200.66,92.98635999999999,Richmond,USA,1986,2,29,74,14.7,1.9,1.9,-12.0,0.027000000000000003,0.05,0.24,0.547,0.126,1997-98 813,Johnny Taylor,ORL,24.0,205.74,99.79024,Tennessee-Chattanooga,USA,1997,1,17,12,3.2,1.1,0.1,4.8,0.043,0.127,0.215,0.431,0.013999999999999999,1997-98 814,Jon Barry,LAL,28.0,195.58,95.25432,Georgia Tech,USA,1992,1,21,49,2.5,0.8,1.0,4.7,0.021,0.077,0.151,0.518,0.19399999999999998,1997-98 815,Jud Buechler,CHI,30.0,198.12,103.418976,Arizona,USA,1990,2,38,74,2.7,1.0,0.7,-0.9,0.043,0.102,0.142,0.5539999999999999,0.134,1997-98 816,Juwan Howard,WAS,25.0,205.74,108.86208,Michigan,USA,1994,1,5,64,18.5,7.0,3.3,-0.6,0.07,0.13699999999999998,0.233,0.515,0.135,1997-98 817,Karl Malone,UTA,34.0,205.74,116.119552,Louisiana Tech,USA,1985,1,13,81,27.0,10.3,3.9,9.8,0.085,0.24600000000000002,0.318,0.597,0.204,1997-98 818,Kebu Stewart,PHI,24.0,203.2,108.40848799999999,Cal State-Bakersfield,USA,1997,2,35,15,2.7,2.1,0.1,11.7,0.087,0.212,0.17300000000000001,0.541,0.03,1997-98 819,Keith Askins,MIA,30.0,203.2,101.604608,Alabama,USA,Undrafted,Undrafted,Undrafted,46,2.4,2.2,0.6,5.5,0.051,0.13,0.10800000000000001,0.426,0.065,1997-98 820,Keith Booth,CHI,23.0,198.12,102.511792,Maryland,USA,1997,1,28,6,1.7,0.7,0.2,-10.0,0.1,0.125,0.23600000000000002,0.579,0.077,1997-98 821,Keith Closs,LAC,22.0,220.98,96.16150400000001,Central Connecticut State,USA,Undrafted,Undrafted,Undrafted,58,4.0,2.9,0.3,-8.0,0.092,0.155,0.162,0.48200000000000004,0.040999999999999995,1997-98 822,Keith Van Horn,NJN,22.0,208.28,99.79024,Utah,USA,1997,1,2,62,19.7,6.6,1.7,2.9,0.068,0.139,0.251,0.516,0.075,1997-98 823,John Wallace,TOR,24.0,205.74,102.0582,Syracuse,USA,1996,1,18,82,14.0,4.5,1.3,-10.4,0.054000000000000006,0.12300000000000001,0.235,0.518,0.083,1997-98 824,Loy Vaught,LAC,30.0,205.74,104.32616,Michigan,USA,1990,1,13,10,7.5,6.5,0.7,-16.6,0.062,0.228,0.168,0.428,0.045,1997-98 825,Jim Jackson,GSW,27.0,198.12,99.79024,Ohio State,USA,1992,1,4,79,15.7,5.1,4.8,-6.1,0.048,0.1,0.21899999999999997,0.505,0.222,1997-98 826,Lucious Harris,NJN,27.0,195.58,92.98635999999999,Long Beach State,USA,1993,2,28,50,3.8,1.0,0.8,2.0,0.036000000000000004,0.057,0.14800000000000002,0.475,0.098,1997-98 827,Micheal Williams,MIN,31.0,187.96,79.3786,Baylor,USA,1988,2,48,25,2.6,0.6,1.3,0.4,0.015,0.077,0.209,0.512,0.299,1997-98 828,Mitch Richmond,SAC,33.0,195.58,97.52228000000001,Kansas State,USA,1988,1,5,70,23.2,3.3,4.0,-2.6,0.021,0.079,0.276,0.569,0.19899999999999998,1997-98 829,Mitchell Butler,CLE,27.0,195.58,95.25432,UCLA,USA,Undrafted,Undrafted,Undrafted,18,2.1,1.2,1.0,2.0,0.036000000000000004,0.08900000000000001,0.129,0.36,0.15,1997-98 830,Monty Williams,SAS,26.0,203.2,102.0582,Notre Dame,USA,1994,1,24,72,6.3,2.5,1.2,0.7,0.064,0.091,0.188,0.505,0.115,1997-98 831,Mookie Blaylock,ATL,31.0,185.42,83.91452,Oklahoma,USA,1989,1,12,70,13.2,4.9,6.7,8.4,0.037000000000000005,0.11,0.20199999999999999,0.462,0.28800000000000003,1997-98 832,Muggsy Bogues,GSW,33.0,160.02,63.956472,Wake Forest,USA,1987,1,12,61,5.7,2.2,5.4,-8.4,0.02,0.07400000000000001,0.129,0.49200000000000005,0.344,1997-98 833,Nate McMillan,SEA,33.0,195.58,95.25432,North Carolina State,USA,1986,2,30,18,3.4,2.2,3.1,10.4,0.055,0.13699999999999998,0.136,0.46,0.29600000000000004,1997-98 834,Nick Anderson,ORL,30.0,198.12,103.418976,Illinois,USA,1989,1,11,58,15.3,5.1,2.1,0.1,0.066,0.13699999999999998,0.249,0.529,0.135,1997-98 835,Nick Van Exel,LAL,26.0,185.42,86.18248,Cincinnati,USA,1993,2,37,64,13.8,3.0,6.9,8.1,0.017,0.08800000000000001,0.198,0.5379999999999999,0.335,1997-98 836,Luc Longley,CHI,29.0,218.44,132.448864,New Mexico,USA,1991,1,7,58,11.4,5.9,2.8,7.5,0.075,0.151,0.212,0.49200000000000005,0.151,1997-98 837,Oliver Miller,TOR,28.0,205.74,147.4174,Arkansas,USA,1992,1,22,64,6.3,6.3,3.1,-9.9,0.099,0.177,0.149,0.485,0.187,1997-98 838,Michael Stewart,SAC,23.0,208.28,104.32616,California,USA,Undrafted,Undrafted,Undrafted,81,4.6,6.6,0.8,-3.0,0.125,0.21100000000000002,0.12,0.486,0.054000000000000006,1997-98 839,Othella Harrington,HOU,24.0,205.74,106.59411999999999,Georgetown,USA,1996,2,30,58,6.0,3.6,0.4,-7.3,0.099,0.183,0.182,0.547,0.047,1997-98 840,P.J. Brown,MIA,28.0,210.82,108.86208,Louisiana Tech,USA,1992,2,29,74,9.6,8.6,1.4,8.0,0.121,0.193,0.154,0.522,0.071,1997-98 841,Patrick Ewing,NYK,35.0,213.36,115.66596000000001,Georgetown,Jamaica,1985,1,1,26,20.8,10.2,1.1,6.6,0.083,0.278,0.303,0.557,0.065,1997-98 842,Pervis Ellison,BOS,31.0,205.74,95.25432,Louisville,USA,1989,1,1,33,3.0,3.3,0.9,0.8,0.131,0.163,0.11,0.589,0.102,1997-98 843,Pete Chilcutt,VAN,29.0,208.28,108.86208,North Carolina,USA,1991,1,27,82,4.9,3.7,1.3,-8.3,0.063,0.191,0.138,0.526,0.11199999999999999,1997-98 844,Pete Myers,NYK,34.0,198.12,81.64656,Arkansas-Little Rock,USA,1986,6,120,9,1.6,1.1,0.3,6.8,0.14300000000000002,0.14300000000000002,0.198,0.5539999999999999,0.158,1997-98 845,Pooh Richardson,LAC,32.0,185.42,81.64656,UCLA,USA,1989,1,10,69,4.2,1.4,3.3,-12.8,0.015,0.07200000000000001,0.14400000000000002,0.41100000000000003,0.28,1997-98 846,Popeye Jones,TOR,28.0,203.2,120.20188,Murray State,USA,1992,2,41,14,8.6,7.3,1.3,-1.4,0.151,0.183,0.184,0.44299999999999995,0.08199999999999999,1997-98 847,Priest Lauderdale,DEN,24.0,223.52,147.4174,Central State (OH),USA,1996,1,28,39,3.7,2.6,0.5,-6.2,0.09300000000000001,0.251,0.268,0.46,0.121,1997-98 848,Randy Brown,CHI,30.0,187.96,86.636072,New Mexico State,USA,1991,2,31,71,4.1,1.3,2.1,3.0,0.033,0.061,0.157,0.428,0.207,1997-98 849,Ray Allen,MIL,22.0,195.58,92.98635999999999,Connecticut,USA,1996,1,5,82,19.5,4.9,4.3,-0.9,0.047,0.10400000000000001,0.243,0.539,0.18899999999999997,1997-98 850,Randy Livingston,ATL,23.0,193.04,95.25432,Louisiana State,USA,1996,2,42,12,0.8,0.5,0.4,-5.0,0.013000000000000001,0.063,0.10400000000000001,0.35200000000000004,0.10400000000000001,1997-98 851,Otis Thorpe,SAC,35.0,208.28,111.58363200000001,Providence,USA,1984,1,9,74,10.2,7.3,3.0,-12.5,0.079,0.19899999999999998,0.18100000000000002,0.515,0.168,1997-98 852,Michael Smith,VAN,26.0,203.2,104.32616,Providence,USA,1994,2,35,48,5.2,6.4,1.8,-6.6,0.129,0.20600000000000002,0.12300000000000001,0.524,0.121,1997-98 853,Olden Polynice,SAC,33.0,213.36,113.398,Virginia,USA,1987,1,8,70,7.9,6.3,1.5,-5.9,0.126,0.218,0.207,0.46399999999999997,0.122,1997-98 854,Michael Jordan,CHI,35.0,198.12,97.975872,North Carolina,USA,1984,1,3,82,28.7,5.8,3.5,8.5,0.047,0.125,0.336,0.5329999999999999,0.174,1997-98 855,Michael McDonald,CHH,29.0,208.28,105.23334399999999,New Orleans,USA,1995,2,55,1,0.0,1.0,0.0,-71.4,0.25,0.0,0.25,0.0,0.0,1997-98 856,Malik Rose,SAS,23.0,200.66,113.398,Drexel,USA,1996,2,44,53,3.0,1.7,0.4,-6.8,0.10400000000000001,0.131,0.212,0.485,0.086,1997-98 857,Malik Sealy,DET,28.0,203.2,90.7184,St. John's (NY),USA,1992,1,14,77,7.7,2.8,1.3,4.2,0.035,0.126,0.187,0.505,0.10800000000000001,1997-98 858,Marcus Camby,TOR,24.0,210.82,99.79024,Massachusetts,USA,1996,1,2,63,12.1,7.4,1.8,-7.5,0.106,0.151,0.217,0.44799999999999995,0.095,1997-98 859,Mario Bennett,LAL,24.0,205.74,106.59411999999999,Arizona State,USA,1995,1,27,45,3.9,2.8,0.4,5.0,0.16399999999999998,0.207,0.201,0.573,0.084,1997-98 860,Mario Elie,HOU,34.0,195.58,95.25432,American International,USA,1985,7,160,73,8.4,2.1,3.0,-0.6,0.024,0.069,0.145,0.575,0.17300000000000001,1997-98 861,Mark Bryant,PHX,33.0,205.74,111.13004,Seton Hall,USA,1988,1,21,70,4.2,3.5,0.7,6.5,0.106,0.16,0.134,0.545,0.059000000000000004,1997-98 862,Mark Davis,PHI,25.0,200.66,95.25432,Texas Tech,USA,1995,2,48,71,4.0,2.2,1.0,-4.4,0.079,0.11699999999999999,0.185,0.489,0.141,1997-98 863,Mark Hendrickson,SAC,24.0,205.74,99.79024,Washington State,USA,1996,2,31,48,3.4,3.0,0.9,-7.6,0.049,0.16399999999999998,0.125,0.46799999999999997,0.086,1997-98 864,Mark Jackson,IND,33.0,190.5,83.91452,St. John's (NY),USA,1987,1,18,82,8.3,3.9,8.7,10.2,0.035,0.11599999999999999,0.166,0.501,0.44299999999999995,1997-98 865,Mark Pope,IND,25.0,208.28,106.59411999999999,Kentucky,USA,1996,2,52,28,1.4,0.9,0.3,-0.2,0.055999999999999994,0.115,0.145,0.402,0.062,1997-98 866,Mark Price,ORL,34.0,182.88,81.64656,Georgia Tech,USA,1986,2,25,63,9.5,2.0,4.7,-3.1,0.019,0.086,0.23,0.518,0.363,1997-98 867,Mahmoud Abdul-Rauf,SAC,29.0,185.42,73.481904,Louisiana State,USA,1990,1,3,31,7.3,1.2,1.9,-6.4,0.012,0.067,0.24600000000000002,0.405,0.195,1997-98 868,Mark West,IND,37.0,208.28,111.58363200000001,Old Dominion,USA,1983,2,30,15,1.5,1.0,0.1,-4.5,0.067,0.10300000000000001,0.135,0.486,0.036000000000000004,1997-98 869,Marko Milic,PHX,21.0,198.12,106.59411999999999,None,Slovenia,1997,2,33,33,2.8,0.8,0.4,7.4,0.076,0.099,0.245,0.644,0.113,1997-98 870,Martin Muursepp,DAL,23.0,205.74,106.59411999999999,None,USA,1996,1,25,41,5.7,2.8,0.7,-3.7,0.085,0.133,0.179,0.528,0.079,1997-98 871,Marty Conlon,MIA,30.0,210.82,111.13004,Providence,USA,Undrafted,Undrafted,Undrafted,18,4.9,2.6,0.7,4.4,0.083,0.162,0.191,0.541,0.10099999999999999,1997-98 872,Matt Bullard,HOU,31.0,208.28,106.59411999999999,Iowa,USA,Undrafted,Undrafted,Undrafted,67,7.0,2.2,0.9,-3.1,0.024,0.11800000000000001,0.16699999999999998,0.581,0.08199999999999999,1997-98 873,Matt Geiger,CHH,28.0,215.9,111.13004,Georgia Tech,USA,1992,2,42,78,11.3,6.7,1.0,-1.1,0.128,0.214,0.231,0.544,0.076,1997-98 874,Matt Maloney,HOU,26.0,190.5,90.7184,Pennsylvania,USA,Undrafted,Undrafted,Undrafted,78,8.6,1.8,2.8,-1.9,0.009000000000000001,0.065,0.151,0.539,0.151,1997-98 875,Maurice Taylor,LAC,21.0,205.74,117.93392,Michigan,USA,1997,1,14,71,11.5,4.2,0.7,-9.5,0.08900000000000001,0.136,0.262,0.521,0.069,1997-98 876,Michael Cage,NJN,36.0,205.74,112.490816,San Diego State,USA,1984,1,14,79,1.3,3.9,0.4,2.4,0.106,0.203,0.046,0.531,0.038,1997-98 877,Michael Curry,MIL,29.0,195.58,102.965384,Georgia Southern,USA,Undrafted,Undrafted,Undrafted,82,6.6,1.2,1.7,-3.9,0.016,0.045,0.134,0.5479999999999999,0.11699999999999999,1997-98 878,Michael Finley,DAL,25.0,200.66,97.52228000000001,Wisconsin,USA,1995,1,21,82,21.5,5.3,4.9,-6.7,0.048,0.096,0.256,0.522,0.222,1997-98 879,Mark Strickland,MIA,27.0,208.28,99.79024,Temple,USA,Undrafted,Undrafted,Undrafted,51,6.8,4.2,0.5,1.3,0.10800000000000001,0.17800000000000002,0.18899999999999997,0.5710000000000001,0.052000000000000005,1997-98 880,Dana Barros,BOS,32.0,180.34,73.935496,Boston College,USA,1989,1,16,50,9.3,2.1,4.2,0.3,0.016,0.09,0.192,0.5760000000000001,0.3,1998-99 881,Dan Schayes,ORL,40.0,210.82,117.93392,Syracuse,USA,1981,1,13,19,1.5,0.7,0.2,7.2,0.026000000000000002,0.098,0.131,0.431,0.044000000000000004,1998-99 882,Dan Majerle,MIA,33.0,198.12,99.79024,Central Michigan,USA,1988,1,14,48,7.0,4.3,3.1,8.1,0.017,0.13,0.113,0.529,0.151,1998-99 883,Damon Stoudamire,POR,25.0,177.8,77.56423199999999,Arizona,USA,1995,1,7,50,12.6,3.3,6.2,2.0,0.028999999999999998,0.084,0.215,0.462,0.322,1998-99 884,Cory Carr,CHI,23.0,193.04,95.25432,Texas Tech,USA,1998,2,49,42,4.1,1.2,1.6,-14.0,0.015,0.08199999999999999,0.21,0.37200000000000005,0.20600000000000002,1998-99 885,Dale Ellis,SEA,38.0,200.66,92.98635999999999,Tennessee,USA,1983,1,9,48,10.3,2.4,0.8,-0.7,0.024,0.085,0.175,0.581,0.055,1998-99 886,Dale Davis,IND,30.0,210.82,104.32616,Clemson,USA,1991,1,13,50,8.0,8.3,0.4,6.9,0.13699999999999998,0.205,0.138,0.5589999999999999,0.025,1998-99 887,Cuttino Mobley,HOU,23.0,193.04,86.18248,Rhode Island,USA,1998,2,41,49,9.9,2.3,2.5,3.7,0.019,0.067,0.174,0.537,0.13699999999999998,1998-99 888,Danny Ferry,CLE,32.0,208.28,106.59411999999999,Duke,USA,1989,1,2,50,7.0,2.0,1.1,-0.9,0.021,0.105,0.16899999999999998,0.562,0.10099999999999999,1998-99 889,Damon Jones,BOS,22.0,190.5,83.91452,Houston,USA,Undrafted,Undrafted,Undrafted,24,5.2,1.8,1.8,-3.0,0.018000000000000002,0.12,0.183,0.494,0.209,1998-99 890,Danny Fortson,DEN,23.0,200.66,117.93392,Cincinnati,USA,1997,1,10,50,11.0,11.6,0.6,-7.1,0.16699999999999998,0.312,0.179,0.564,0.038,1998-99 891,David Wesley,CHH,28.0,185.42,91.625584,Baylor,USA,Undrafted,Undrafted,Undrafted,50,14.1,3.2,6.4,2.2,0.015,0.085,0.198,0.561,0.312,1998-99 892,Darrell Armstrong,ORL,31.0,185.42,81.64656,Fayetteville State,USA,Undrafted,Undrafted,Undrafted,50,13.8,3.6,6.7,4.7,0.04,0.10099999999999999,0.225,0.575,0.401,1998-99 893,Darrick Martin,LAC,28.0,180.34,77.11064,UCLA,USA,Undrafted,Undrafted,Undrafted,37,8.0,1.3,3.9,-11.2,0.006,0.057,0.184,0.475,0.257,1998-99 894,David Robinson,SAS,33.0,215.9,113.398,Navy,USA,1987,1,1,49,15.8,10.0,2.1,11.2,0.113,0.235,0.24,0.564,0.12,1998-99 895,David Vaughn,NJN,26.0,205.74,108.86208,Memphis,USA,1995,1,25,10,3.4,3.4,0.1,3.3,0.155,0.196,0.174,0.599,0.015,1998-99 896,David Wingate,NYK,35.0,195.58,84.821704,Georgetown,USA,1986,2,44,20,0.7,0.4,0.3,14.4,0.038,0.07200000000000001,0.11,0.43799999999999994,0.086,1998-99 897,DeJuan Wheat,VAN,25.0,182.88,74.84268,Louisville,USA,1997,2,51,46,4.5,1.0,2.2,-9.9,0.021,0.073,0.20600000000000002,0.479,0.32899999999999996,1998-99 898,Dean Garrett,MIN,32.0,210.82,113.398,Indiana,USA,1988,2,38,49,5.5,5.2,0.6,-3.3,0.099,0.185,0.12,0.5329999999999999,0.04,1998-99 899,Dee Brown,TOR,30.0,187.96,83.91452,Jacksonville,USA,1990,1,19,49,11.2,2.1,2.9,-1.0,0.013000000000000001,0.075,0.19399999999999998,0.529,0.187,1998-99 900,Dell Curry,MIL,35.0,195.58,92.98635999999999,Virginia Tech,USA,1986,1,15,42,10.1,2.0,1.1,2.2,0.026000000000000002,0.08800000000000001,0.222,0.603,0.105,1998-99 901,Dennis Rodman,LAL,38.0,200.66,95.25432,Southeastern Oklahoma State,USA,1986,2,27,23,2.1,11.2,1.3,-1.4,0.114,0.348,0.065,0.38799999999999996,0.063,1998-99 902,Danny Manning,PHX,33.0,208.28,110.676448,Kansas,USA,1988,1,1,50,9.1,4.4,2.3,3.9,0.064,0.16,0.2,0.52,0.168,1998-99 903,Cory Alexander,DEN,26.0,185.42,86.18248,Virginia,USA,1995,1,29,36,7.3,2.1,3.3,-1.1,0.01,0.102,0.2,0.467,0.275,1998-99 904,Charles R. Jones,CHI,23.0,190.5,81.64656,Long Island-Brooklyn,USA,Undrafted,Undrafted,Undrafted,29,3.7,1.4,1.4,-12.2,0.022000000000000002,0.087,0.163,0.40700000000000003,0.156,1998-99 905,Corie Blount,CLE,30.0,208.28,109.769264,Cincinnati,USA,1993,1,25,34,2.9,4.4,0.4,2.7,0.127,0.196,0.126,0.40399999999999997,0.037000000000000005,1998-99 906,Charles Shackleford,CHH,33.0,210.82,111.13004,North Carolina State,USA,1988,2,32,32,3.3,4.0,0.4,-5.4,0.142,0.264,0.16899999999999998,0.521,0.07,1998-99 907,Charles Smith,LAC,23.0,193.04,87.996848,New Mexico,USA,1997,1,26,23,3.7,1.0,0.6,-15.4,0.025,0.069,0.17800000000000002,0.40399999999999997,0.071,1998-99 908,Charlie Ward,NYK,28.0,187.96,86.18248,Florida State,USA,1994,1,26,50,7.6,3.4,5.4,2.6,0.018000000000000002,0.10800000000000001,0.152,0.513,0.289,1998-99 909,Chauncey Billups,DEN,22.0,190.5,91.625584,Colorado,USA,1997,1,3,45,13.9,2.1,3.8,-6.0,0.019,0.059000000000000004,0.203,0.547,0.192,1998-99 910,Cherokee Parks,VAN,26.0,210.82,108.86208,Duke,USA,1995,1,12,48,5.5,5.1,0.8,-12.4,0.076,0.18,0.14400000000000002,0.445,0.057,1998-99 911,Chris Anstey,DAL,24.0,213.36,112.94440800000001,None,USA,1997,1,18,41,3.3,2.4,0.7,-5.4,0.083,0.155,0.18,0.418,0.09300000000000001,1998-99 912,Chris Carr,NJN,25.0,198.12,99.79024,Southern Illinois,USA,1995,2,56,39,5.3,1.8,0.6,-6.4,0.054000000000000006,0.129,0.247,0.465,0.102,1998-99 913,Chris Childs,NYK,31.0,190.5,88.45044,Boise State,USA,Undrafted,Undrafted,Undrafted,48,6.8,2.8,4.0,1.6,0.017,0.102,0.145,0.544,0.267,1998-99 914,Chris Crawford,ATL,24.0,205.74,106.59411999999999,Marquette,USA,1997,2,50,42,6.9,2.1,0.6,0.5,0.055999999999999994,0.077,0.205,0.504,0.059000000000000004,1998-99 915,Chris Dudley,NYK,34.0,210.82,117.93392,Yale,USA,1987,4,75,46,2.5,4.2,0.2,7.5,0.145,0.198,0.107,0.45399999999999996,0.017,1998-99 916,Chris Gatling,MIL,31.0,208.28,104.32616,Old Dominion,USA,1991,1,16,48,5.7,3.7,0.7,-3.1,0.08,0.195,0.223,0.445,0.077,1998-99 917,Corliss Williamson,SAC,25.0,200.66,111.13004,Arkansas,USA,1995,1,13,50,13.2,4.1,1.3,-1.5,0.064,0.08900000000000001,0.217,0.517,0.076,1998-99 918,Chris King,UTA,29.0,203.2,97.52228000000001,Wake Forest,USA,1992,2,45,8,0.5,1.4,0.1,-16.3,0.026000000000000002,0.25,0.14,0.228,0.048,1998-99 919,Chris Morris,PHX,33.0,203.2,103.418976,Auburn,USA,1988,1,4,44,4.2,2.8,0.5,4.0,0.111,0.15,0.161,0.544,0.073,1998-99 920,Chris Mullin,IND,35.0,200.66,97.52228000000001,St. John's (NY),USA,1985,1,7,50,10.1,3.2,1.6,6.2,0.027000000000000003,0.127,0.19399999999999998,0.616,0.11199999999999999,1998-99 921,Chris Webber,SAC,26.0,208.28,111.13004,Michigan,USA,1993,1,1,42,20.0,13.0,4.1,1.3,0.09300000000000001,0.237,0.249,0.491,0.171,1998-99 922,Chris Whitney,WAS,27.0,182.88,79.3786,Clemson,USA,1993,2,47,39,4.8,1.2,1.8,0.7,0.02,0.102,0.214,0.551,0.276,1998-99 923,Christian Laettner,DET,29.0,210.82,111.13004,Duke,USA,1992,1,3,16,7.6,3.4,1.5,3.1,0.07200000000000001,0.132,0.207,0.462,0.14,1998-99 924,Chuck Person,CHH,35.0,203.2,106.59411999999999,Auburn,USA,1986,1,4,50,6.1,2.6,1.2,-1.3,0.021,0.127,0.163,0.5,0.107,1998-99 925,Chucky Brown,CHH,31.0,203.2,97.52228000000001,North Carolina State,USA,1989,2,43,48,8.5,3.6,1.2,1.3,0.037000000000000005,0.133,0.175,0.51,0.086,1998-99 926,Clar. Weatherspoon,MIA,28.0,200.66,120.20188,Southern Mississippi,USA,1992,1,9,49,8.1,5.0,0.7,2.9,0.094,0.191,0.19,0.607,0.065,1998-99 927,Clifford Robinson,PHX,32.0,208.28,102.0582,Connecticut,USA,1989,2,36,50,16.4,4.5,2.6,6.2,0.045,0.10800000000000001,0.218,0.5589999999999999,0.128,1998-99 928,Corey Beck,CHH,28.0,190.5,90.7184,Arkansas,USA,Undrafted,Undrafted,Undrafted,24,1.9,1.2,0.8,4.9,0.042,0.142,0.158,0.493,0.183,1998-99 929,Corey Benjamin,CHI,21.0,198.12,90.7184,Oregon State,USA,1998,1,28,30,3.9,1.3,0.3,-16.4,0.057999999999999996,0.095,0.22699999999999998,0.43799999999999994,0.065,1998-99 930,Chris Mills,GSW,29.0,200.66,97.975872,Arizona,USA,1993,1,22,47,10.3,5.0,2.2,-4.3,0.039,0.146,0.18,0.488,0.13,1998-99 931,Dennis Scott,MIN,30.0,203.2,103.872568,Georgia Tech,USA,1990,1,4,36,6.5,1.6,1.1,-0.1,0.013000000000000001,0.084,0.157,0.516,0.091,1998-99 932,Elden Campbell,CHH,30.0,213.36,115.66596000000001,Clemson,USA,1990,1,27,49,12.6,8.1,1.4,1.3,0.10400000000000001,0.214,0.214,0.528,0.091,1998-99 933,Derek Fisher,LAL,24.0,185.42,90.7184,Arkansas-Little Rock,USA,1996,1,24,50,5.9,1.8,3.9,8.9,0.023,0.07400000000000001,0.149,0.49700000000000005,0.256,1998-99 934,Eric Riley,BOS,29.0,213.36,111.13004,Michigan,USA,1993,2,33,35,2.2,2.8,0.4,2.8,0.121,0.201,0.126,0.5770000000000001,0.06,1998-99 935,Eric Snow,PHI,26.0,190.5,92.532768,Michigan State,USA,1995,2,43,48,8.6,3.4,6.3,3.7,0.017,0.096,0.14,0.499,0.29600000000000004,1998-99 936,Eric Washington,DEN,25.0,193.04,86.18248,Alabama,USA,1997,2,46,38,5.4,2.3,0.8,-6.3,0.05,0.083,0.139,0.517,0.069,1998-99 937,Eric Williams,DEN,26.0,203.2,99.79024,Providence,USA,1995,1,14,38,7.3,2.1,1.0,-9.8,0.049,0.073,0.196,0.494,0.094,1998-99 938,Erick Dampier,GSW,23.0,210.82,120.20188,Mississippi State,USA,1996,1,10,50,8.8,7.6,1.1,-3.5,0.12300000000000001,0.171,0.193,0.439,0.064,1998-99 939,Erick Strickland,DAL,25.0,190.5,95.25432,Nebraska,USA,Undrafted,Undrafted,Undrafted,33,7.5,2.5,1.9,-3.0,0.023,0.14300000000000002,0.221,0.499,0.2,1998-99 940,Ervin Johnson,MIL,31.0,210.82,111.13004,New Orleans,USA,1993,1,23,50,5.1,6.4,0.4,-0.6,0.138,0.226,0.13,0.544,0.031,1998-99 941,Etdrick Bohannon,WAS,26.0,205.74,99.79024,Auburn-Montgomery,USA,Undrafted,Undrafted,Undrafted,2,0.0,0.0,0.0,-14.7,0.0,0.0,0.0,0.0,0.0,1998-99 942,Felipe Lopez,VAN,24.0,198.12,88.45044,St. John's (NY),Dominican Republic,1998,1,24,47,9.3,3.5,1.3,-9.1,0.065,0.09699999999999999,0.196,0.498,0.09300000000000001,1998-99 943,Felton Spencer,GSW,31.0,213.36,120.20188,Louisville,USA,1990,1,6,26,1.6,1.8,0.0,-3.4,0.113,0.17800000000000002,0.139,0.473,0.0,1998-99 944,Fred Hoiberg,IND,26.0,193.04,92.079176,Iowa State,USA,1995,2,52,12,1.6,0.9,0.3,0.1,0.027000000000000003,0.136,0.14400000000000002,0.402,0.077,1998-99 945,Gary Grant,POR,34.0,190.5,83.91452,Michigan,USA,1988,1,15,2,0.0,0.0,1.5,66.6,0.0,0.0,0.073,0.0,0.5,1998-99 946,Gary Payton,SEA,30.0,193.04,81.64656,Oregon State,USA,1990,1,2,50,21.7,4.9,8.7,-0.1,0.035,0.10800000000000001,0.26899999999999996,0.519,0.39799999999999996,1998-99 947,Gary Trent,DAL,24.0,203.2,113.398,Ohio,USA,1995,1,11,45,16.0,7.8,1.7,-1.5,0.106,0.18600000000000003,0.261,0.51,0.106,1998-99 948,George Lynch,PHI,28.0,203.2,103.418976,North Carolina,USA,1993,1,12,43,8.3,6.5,1.8,5.1,0.095,0.15,0.16,0.461,0.1,1998-99 949,George McCloud,PHX,32.0,203.2,102.0582,Florida State,USA,1989,1,7,48,8.9,3.4,1.6,1.4,0.032,0.125,0.153,0.591,0.10099999999999999,1998-99 950,Gerald Brown,PHX,23.0,193.04,95.25432,Pepperdine,USA,Undrafted,Undrafted,Undrafted,33,2.4,0.7,0.9,-12.1,0.022000000000000002,0.078,0.226,0.42,0.23,1998-99 951,Gerald Wilkins,ORL,35.0,198.12,83.91452,Tennessee-Chattanooga,USA,1985,2,47,3,0.7,0.3,0.3,-2.0,0.0,0.053,0.192,0.10099999999999999,0.067,1998-99 952,Gerard King,SAS,26.0,205.74,104.32616,Nicholls State,USA,Undrafted,Undrafted,Undrafted,19,1.2,0.7,0.2,5.7,0.102,0.11599999999999999,0.174,0.525,0.10300000000000001,1998-99 953,Gheorghe Muresan,NJN,28.0,231.14,137.438376,None,USA,1993,2,30,1,0.0,0.0,0.0,-200.0,0.0,0.0,1.0,0.0,0.0,1998-99 954,Glen Rice,LAL,32.0,203.2,99.79024,Michigan,USA,1989,1,4,27,17.5,3.7,2.6,4.2,0.011000000000000001,0.10800000000000001,0.22399999999999998,0.542,0.11800000000000001,1998-99 955,Glenn Robinson,MIL,26.0,200.66,104.32616,Purdue,USA,1994,1,1,47,18.4,5.9,2.1,5.7,0.057999999999999996,0.153,0.28300000000000003,0.523,0.11800000000000001,1998-99 956,Charles Oakley,TOR,35.0,205.74,111.13004,Virginia Union,USA,1985,1,9,50,7.0,7.5,3.4,-0.4,0.068,0.204,0.129,0.479,0.171,1998-99 957,Eric Piatkowski,LAC,28.0,200.66,97.52228000000001,Nebraska,USA,1994,1,15,49,10.5,2.9,1.1,-9.0,0.035,0.098,0.188,0.555,0.07400000000000001,1998-99 958,Eric Murdock,NJN,31.0,185.42,86.18248,Providence,USA,1991,1,21,15,7.9,2.3,4.4,-3.3,0.008,0.08900000000000001,0.171,0.474,0.289,1998-99 959,Eric Montross,DET,27.0,213.36,122.46983999999999,North Carolina,USA,1994,1,9,46,2.1,3.0,0.3,2.2,0.098,0.201,0.094,0.505,0.042,1998-99 960,Elliot Perry,NJN,30.0,182.88,68.945984,Memphis,USA,1991,2,37,35,2.8,1.0,1.3,-7.5,0.024,0.096,0.21100000000000002,0.449,0.305,1998-99 961,Derek Harper,LAL,37.0,193.04,93.439952,Illinois,USA,1983,1,11,45,6.9,1.5,4.2,-2.6,0.013999999999999999,0.052000000000000005,0.14300000000000002,0.506,0.255,1998-99 962,Derek Strong,ORL,31.0,205.74,108.86208,Xavier,USA,1990,2,47,44,5.1,3.7,0.4,2.4,0.107,0.18100000000000002,0.165,0.499,0.042,1998-99 963,Derrick Coleman,CHH,32.0,208.28,117.93392,Syracuse,USA,1990,1,1,37,13.1,8.9,2.1,-4.1,0.078,0.242,0.23399999999999999,0.496,0.128,1998-99 964,Derrick McKey,IND,32.0,208.28,102.0582,Alabama,USA,1987,1,9,13,4.6,3.2,1.0,12.8,0.09,0.13,0.14800000000000002,0.504,0.094,1998-99 965,Detlef Schrempf,SEA,36.0,208.28,106.59411999999999,Washington,USA,1985,1,8,50,15.0,7.4,3.7,2.3,0.05,0.193,0.196,0.573,0.177,1998-99 966,Dickey Simpkins,CHI,27.0,205.74,119.74828799999999,Providence,USA,1994,1,21,50,9.1,6.8,1.3,-10.0,0.086,0.2,0.162,0.528,0.08199999999999999,1998-99 967,Dikembe Mutombo,ATL,33.0,218.44,118.38751200000002,Georgetown,Congo,1991,1,4,50,10.8,12.2,1.1,6.0,0.127,0.265,0.14400000000000002,0.584,0.055999999999999994,1998-99 968,Dirk Nowitzki,DAL,21.0,213.36,107.501304,None,Germany,1998,1,9,47,8.2,3.4,1.0,-1.5,0.052000000000000005,0.139,0.223,0.49200000000000005,0.08199999999999999,1998-99 969,Dominique Wilkins,ORL,39.0,203.2,104.32616,Georgia,USA,1982,1,3,27,5.0,2.6,0.6,-1.6,0.133,0.182,0.301,0.445,0.131,1998-99 970,Don MacLean,SEA,29.0,208.28,106.59411999999999,UCLA,USA,1992,1,19,17,10.9,3.8,0.9,-8.6,0.057999999999999996,0.14400000000000002,0.271,0.47600000000000003,0.078,1998-99 971,Don Reid,DET,25.0,203.2,113.398,Georgetown,USA,1995,2,58,47,5.1,3.6,0.7,5.5,0.084,0.135,0.12300000000000001,0.58,0.057,1998-99 972,Derek Anderson,CLE,24.0,195.58,88.45044,Kentucky,USA,1997,1,13,38,10.8,2.9,3.8,-1.5,0.027000000000000003,0.12,0.23600000000000002,0.529,0.305,1998-99 973,Donyell Marshall,GSW,26.0,205.74,104.32616,Connecticut,USA,1994,1,4,48,11.0,7.1,1.4,-1.2,0.095,0.195,0.218,0.484,0.094,1998-99 974,Doug Overton,PHI,29.0,190.5,86.18248,La Salle,USA,1991,2,40,24,3.8,0.9,1.0,-5.1,0.027999999999999997,0.065,0.198,0.496,0.174,1998-99 975,Doug West,VAN,32.0,198.12,90.7184,Villanova,USA,1989,2,38,14,5.8,1.8,1.4,-6.7,0.021,0.085,0.136,0.5329999999999999,0.109,1998-99 976,Drew Barry,SEA,26.0,195.58,86.636072,Georgia Tech,USA,1996,2,57,17,2.2,1.2,1.7,0.4,0.02,0.09300000000000001,0.12,0.49,0.23800000000000002,1998-99 977,Duane Causwell,MIA,31.0,213.36,115.66596000000001,Temple,USA,1990,1,18,19,2.3,1.8,0.1,-20.5,0.12300000000000001,0.16899999999999998,0.2,0.546,0.028999999999999998,1998-99 978,Duane Ferrell,GSW,34.0,200.66,97.52228000000001,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,8,0.6,0.8,0.0,21.3,0.102,0.024,0.149,0.159,0.0,1998-99 979,Dwayne Schintzius,BOS,30.0,218.44,129.27372,Florida,USA,1990,1,24,16,0.7,1.2,0.5,-29.2,0.10099999999999999,0.17600000000000002,0.175,0.31,0.2,1998-99 980,Earl Boykins,CLE,23.0,165.1,65.77083999999999,Eastern Michigan,USA,Undrafted,Undrafted,Undrafted,22,3.0,0.8,1.5,-10.8,0.037000000000000005,0.057999999999999996,0.22,0.405,0.303,1998-99 981,Ed Gray,ATL,23.0,190.5,95.25432,California,USA,1997,1,22,30,4.9,0.9,0.4,-12.5,0.022000000000000002,0.079,0.304,0.368,0.083,1998-99 982,Eddie Johnson,HOU,40.0,200.66,97.52228000000001,Illinois,USA,1981,2,29,3,4.0,0.7,0.3,-20.8,0.0,0.154,0.292,0.462,0.063,1998-99 983,Eddie Jones,CHH,27.0,198.12,90.7184,Temple,USA,1994,1,10,50,15.6,3.9,3.7,5.8,0.032,0.086,0.19899999999999998,0.546,0.17,1998-99 984,Eldridge Recasner,CHH,31.0,193.04,86.18248,Washington,USA,1992,Undrafted,Undrafted,44,5.0,1.8,2.1,-3.8,0.035,0.095,0.172,0.552,0.23199999999999998,1998-99 985,Doug Christie,TOR,29.0,198.12,92.98635999999999,Pepperdine,USA,1992,1,17,50,15.2,4.1,3.7,-3.3,0.038,0.1,0.226,0.501,0.198,1998-99 986,Charles O'Bannon,DET,24.0,195.58,94.800728,UCLA,USA,1997,2,31,18,3.1,1.9,0.7,11.4,0.11699999999999999,0.10099999999999999,0.191,0.47,0.126,1998-99 987,Anfernee Hardaway,ORL,27.0,200.66,97.52228000000001,Memphis,USA,1993,1,3,50,15.8,5.7,5.3,1.9,0.044000000000000004,0.127,0.22399999999999998,0.488,0.248,1998-99 988,Cedric Henderson,CLE,24.0,200.66,102.0582,Memphis,USA,1997,2,44,50,9.1,3.9,2.3,-3.2,0.037000000000000005,0.121,0.18600000000000003,0.46,0.13699999999999998,1998-99 989,Tony Delk,GSW,25.0,187.96,87.089664,Kentucky,USA,1996,1,16,36,6.8,1.5,2.6,-10.9,0.017,0.07,0.22699999999999998,0.433,0.276,1998-99 990,Tony Battie,BOS,23.0,210.82,108.86208,Texas Tech,USA,1997,1,5,50,6.7,6.0,1.1,1.2,0.096,0.209,0.14300000000000002,0.541,0.077,1998-99 991,Toni Kukoc,CHI,30.0,210.82,105.23334399999999,None,Croatia,1990,2,29,44,18.8,7.0,5.3,-5.1,0.044000000000000004,0.179,0.275,0.491,0.305,1998-99 992,Tom Hammonds,MIN,32.0,205.74,102.0582,Georgia Tech,USA,1989,1,9,49,4.3,2.8,0.4,-1.2,0.083,0.142,0.154,0.5,0.047,1998-99 993,Tom Gugliotta,PHX,29.0,208.28,108.86208,North Carolina State,USA,1992,1,6,43,17.0,8.9,2.8,4.9,0.095,0.188,0.222,0.545,0.134,1998-99 994,Todd Fuller,UTA,24.0,210.82,115.66596000000001,North Carolina State,USA,1996,1,11,42,3.4,2.4,0.1,-1.5,0.077,0.183,0.175,0.486,0.023,1998-99 995,Toby Bailey,PHX,23.0,198.12,96.615096,UCLA,USA,1998,2,45,27,2.9,2.0,0.5,-7.3,0.10099999999999999,0.146,0.185,0.425,0.083,1998-99 996,Tim Thomas,MIL,22.0,208.28,104.32616,Villanova,USA,1997,1,7,50,7.2,2.5,0.9,-3.4,0.07400000000000001,0.11800000000000001,0.212,0.545,0.1,1998-99 997,Tim Legler,WAS,32.0,193.04,99.79024,La Salle,USA,Undrafted,Undrafted,Undrafted,30,4.0,1.3,0.7,-4.2,0.023,0.095,0.154,0.506,0.091,1998-99 998,Tim Hardaway,MIA,32.0,182.88,88.45044,Texas-El Paso,USA,1989,1,14,48,17.4,3.2,7.3,7.2,0.011000000000000001,0.08800000000000001,0.263,0.511,0.38299999999999995,1998-99 999,Tim Duncan,SAS,23.0,213.36,112.490816,Wake Forest,US Virgin Islands,1997,1,1,50,21.7,11.4,2.4,10.1,0.098,0.221,0.27399999999999997,0.541,0.11699999999999999,1998-99 1000,Tony Massenburg,VAN,31.0,205.74,113.398,Maryland,USA,1990,2,43,43,11.2,6.0,0.5,-9.8,0.086,0.184,0.20800000000000002,0.527,0.039,1998-99 1001,A.C. Green,DAL,35.0,205.74,102.0582,Oregon State,USA,1985,1,23,50,4.9,4.6,0.5,-5.6,0.09699999999999999,0.179,0.14800000000000002,0.441,0.043,1998-99 1002,Aaron Williams,SEA,27.0,205.74,102.0582,Xavier,USA,Undrafted,Undrafted,Undrafted,40,4.0,3.2,0.6,-11.2,0.129,0.191,0.18,0.508,0.094,1998-99 1003,Adam Keefe,UTA,29.0,205.74,104.32616,Stanford,USA,1992,1,10,44,4.0,3.2,0.6,4.2,0.10300000000000001,0.16,0.142,0.5329999999999999,0.07400000000000001,1998-99 1004,Adonal Foyle,GSW,24.0,208.28,113.398,Colgate,St. Vincent & Grenadines,1997,1,8,44,2.9,4.4,0.4,-3.9,0.14,0.20199999999999999,0.126,0.45,0.049,1998-99 1005,Adonis Jordan,MIL,28.0,180.34,77.11064,Kansas,USA,1993,2,42,4,1.5,0.0,0.8,-36.4,0.0,0.0,0.185,0.521,0.273,1998-99 1006,Al Harrington,IND,19.0,205.74,104.32616,None,USA,1998,1,25,21,2.1,1.9,0.2,-8.3,0.132,0.14800000000000002,0.21,0.359,0.06,1998-99 1007,Alan Henderson,ATL,26.0,205.74,106.59411999999999,Indiana,USA,1995,1,16,38,12.5,6.6,0.7,-3.1,0.102,0.152,0.22399999999999998,0.485,0.048,1998-99 1008,Allan Houston,NYK,28.0,198.12,90.7184,Tennessee,USA,1993,1,11,50,16.3,3.0,2.7,1.8,0.013000000000000001,0.08,0.24100000000000002,0.515,0.152,1998-99 1009,Allen Iverson,PHI,24.0,182.88,74.84268,Georgetown,USA,1996,1,1,48,26.8,4.9,4.6,3.6,0.038,0.10099999999999999,0.32299999999999995,0.508,0.23399999999999999,1998-99 1010,Alonzo Mourning,MIA,29.0,208.28,118.38751200000002,Georgetown,USA,1992,1,2,46,20.1,11.0,1.6,10.6,0.125,0.21600000000000003,0.27,0.564,0.086,1998-99 1011,Alvin Sims,PHX,24.0,193.04,106.59411999999999,Louisville,USA,Undrafted,Undrafted,Undrafted,4,2.8,1.0,1.3,-30.0,0.14300000000000002,0.045,0.272,0.451,0.33299999999999996,1998-99 1012,Alvin Williams,TOR,24.0,195.58,83.91452,Villanova,USA,1997,2,47,50,5.0,1.6,2.6,-3.1,0.02,0.067,0.13699999999999998,0.47700000000000004,0.207,1998-99 1013,Aaron McKie,PHI,26.0,195.58,94.800728,Temple,USA,1994,1,17,50,4.8,2.8,2.0,-1.9,0.033,0.139,0.152,0.45399999999999996,0.183,1998-99 1014,Andrae Patterson,MIN,23.0,205.74,107.95489599999999,Indiana,USA,1998,2,46,35,3.3,1.9,0.4,-1.6,0.10400000000000001,0.14400000000000002,0.20600000000000002,0.505,0.094,1998-99 1015,Tracy McGrady,TOR,20.0,203.2,95.25432,None,USA,1997,1,9,49,9.3,5.7,2.3,-1.5,0.12300000000000001,0.16899999999999998,0.214,0.504,0.187,1998-99 1016,Travis Best,IND,26.0,180.34,82.553744,Georgia Tech,USA,1995,1,23,49,7.1,1.6,3.4,2.2,0.022000000000000002,0.073,0.188,0.507,0.308,1998-99 1017,Zydrunas Ilgauskas,CLE,24.0,220.98,117.93392,None,Lithuania,1996,1,20,5,15.2,8.8,0.8,-4.6,0.127,0.21600000000000003,0.218,0.541,0.05,1998-99 1018,Willie Burton,CHH,31.0,203.2,95.25432,Minnesota,USA,1990,1,9,3,1.3,2.0,0.0,7.2,0.308,0.133,0.231,0.228,0.0,1998-99 1019,William Cunningham,NJN,25.0,210.82,108.86208,Temple,USA,Undrafted,Undrafted,Undrafted,16,0.4,1.8,0.1,-14.3,0.08,0.10400000000000001,0.067,0.159,0.009000000000000001,1998-99 1020,Will Perdue,SAS,33.0,213.36,108.86208,Vanderbilt,USA,1988,1,11,37,2.4,3.7,0.5,5.6,0.096,0.245,0.098,0.63,0.064,1998-99 1021,Wesley Person,CLE,28.0,198.12,88.45044,Auburn,USA,1994,1,23,45,11.2,3.2,1.8,-3.7,0.018000000000000002,0.115,0.17800000000000002,0.546,0.111,1998-99 1022,Walter McCarty,BOS,25.0,208.28,104.32616,Kentucky,USA,1996,1,19,32,5.7,3.6,1.3,1.2,0.059000000000000004,0.133,0.161,0.44799999999999995,0.09300000000000001,1998-99 1023,Walt Williams,POR,29.0,203.2,104.32616,Maryland,USA,1992,1,7,48,9.3,3.0,1.7,9.8,0.040999999999999995,0.113,0.196,0.5660000000000001,0.132,1998-99 1024,Voshon Lenard,MIA,26.0,193.04,92.98635999999999,Minnesota,USA,1994,2,46,12,6.8,1.3,0.8,-13.5,0.027000000000000003,0.08800000000000001,0.24100000000000002,0.489,0.115,1998-99 1025,Vladimir Stepania,SEA,23.0,213.36,107.047712,None,Georgia,1998,1,27,23,5.5,3.3,0.5,-6.2,0.10099999999999999,0.166,0.244,0.445,0.065,1998-99 1026,Vlade Divac,SAC,31.0,215.9,117.93392,None,Serbia and Montenegro,1989,1,26,50,14.3,10.0,4.3,1.2,0.08199999999999999,0.21,0.19399999999999998,0.5329999999999999,0.19,1998-99 1027,Vitaly Potapenko,BOS,24.0,208.28,127.00576000000001,Wright State,Ukraine,1996,1,12,50,10.0,6.6,1.5,-0.4,0.099,0.191,0.195,0.52,0.095,1998-99 1028,Tracy Murray,WAS,27.0,200.66,103.418976,UCLA,USA,1992,1,18,36,6.5,2.3,0.8,-5.9,0.028999999999999998,0.12,0.19699999999999998,0.456,0.07,1998-99 1029,Vinny Del Negro,MIL,32.0,193.04,83.91452,North Carolina State,USA,1988,2,29,48,5.9,2.1,3.6,-0.2,0.015,0.098,0.154,0.48100000000000004,0.26899999999999996,1998-99 1030,Vin Baker,SEA,27.0,210.82,113.398,Hartford,USA,1993,1,8,34,13.8,6.2,1.6,2.4,0.08800000000000001,0.125,0.233,0.461,0.086,1998-99 1031,Vernon Maxwell,SAC,33.0,193.04,86.18248,Florida,USA,1988,2,47,46,10.7,1.8,1.7,2.8,0.013999999999999999,0.078,0.23399999999999999,0.522,0.129,1998-99 1032,Tyson Wheeler,DEN,23.0,177.8,74.84268,Rhode Island,USA,1998,2,47,1,4.0,0.0,2.0,62.2,0.0,0.0,0.32,1.064,0.667,1998-99 1033,Tyronn Lue,LAL,22.0,182.88,79.3786,Nebraska,USA,1998,1,23,15,5.0,0.3,1.7,1.7,0.006,0.025,0.19899999999999998,0.505,0.207,1998-99 1034,Tyrone Nesby,LAC,23.0,198.12,102.0582,Nevada-Las Vegas,USA,Undrafted,Undrafted,Undrafted,50,10.1,3.5,1.6,-6.4,0.049,0.115,0.183,0.5429999999999999,0.109,1998-99 1035,Tyrone Hill,PHI,31.0,205.74,113.398,Xavier,USA,1990,1,11,38,8.6,7.6,0.9,0.0,0.11599999999999999,0.188,0.165,0.48700000000000004,0.055999999999999994,1998-99 1036,Tyrone Corbin,ATL,36.0,198.12,102.0582,DePaul,USA,1985,2,35,47,7.5,3.1,0.9,3.6,0.04,0.12,0.179,0.47700000000000004,0.08,1998-99 1037,Troy Hudson,LAC,23.0,185.42,77.11064,Southern Illinois,USA,Undrafted,Undrafted,Undrafted,25,6.8,2.2,3.7,-7.4,0.032,0.094,0.17600000000000002,0.507,0.28600000000000003,1998-99 1038,Trevor Winter,MIN,25.0,213.36,124.7378,Minnesota,USA,Undrafted,Undrafted,Undrafted,1,0.0,3.0,0.0,-21.3,0.1,0.5,0.0,0.0,0.0,1998-99 1039,Travis Williams,CHH,30.0,198.12,97.52228000000001,South Carolina State,USA,Undrafted,Undrafted,Undrafted,8,1.9,2.4,0.3,-21.5,0.095,0.217,0.14800000000000002,0.508,0.071,1998-99 1040,Travis Knight,LAL,24.0,213.36,106.59411999999999,Connecticut,USA,1996,1,29,37,4.2,3.5,0.8,0.9,0.077,0.195,0.15,0.546,0.087,1998-99 1041,Vince Carter,TOR,22.0,200.66,97.52228000000001,North Carolina,USA,1998,1,5,50,18.3,5.7,3.0,1.2,0.061,0.127,0.257,0.516,0.16399999999999998,1998-99 1042,Charles Barkley,HOU,36.0,198.12,114.30518400000001,Auburn,USA,1984,1,5,42,16.1,12.3,4.6,4.7,0.14,0.261,0.225,0.546,0.21600000000000003,1998-99 1043,Andrew DeClercq,CLE,26.0,208.28,104.32616,Florida,USA,1995,2,34,47,7.9,5.4,0.7,-2.6,0.11,0.172,0.166,0.5489999999999999,0.049,1998-99 1044,Andrew Lang,CHI,33.0,210.82,111.13004,Arkansas,USA,1988,2,28,21,3.8,4.4,0.6,-7.1,0.096,0.196,0.155,0.36700000000000005,0.057999999999999996,1998-99 1045,Bob Sura,CLE,26.0,195.58,90.7184,Florida State,USA,1995,1,17,50,4.3,2.0,3.0,-4.0,0.032,0.124,0.19399999999999998,0.419,0.361,1998-99 1046,Bobby Jackson,MIN,26.0,185.42,83.91452,Minnesota,USA,1997,1,23,50,7.1,2.7,3.3,-1.7,0.048,0.11699999999999999,0.217,0.461,0.305,1998-99 1047,Bobby Phills,CHH,29.0,195.58,102.511792,Southern,USA,1991,2,45,43,14.3,4.0,3.5,3.4,0.031,0.095,0.2,0.537,0.168,1998-99 1048,Bonzi Wells,POR,22.0,195.58,95.25432,Ball State,USA,1998,1,11,7,4.4,1.3,0.4,-8.0,0.125,0.125,0.389,0.555,0.231,1998-99 1049,Brad Miller,CHH,23.0,210.82,113.398,Purdue,USA,Undrafted,Undrafted,Undrafted,38,6.3,3.1,0.6,6.6,0.098,0.19699999999999998,0.214,0.6509999999999999,0.081,1998-99 1050,Brandon Williams,SAS,24.0,198.12,97.52228000000001,Davidson,USA,Undrafted,Undrafted,Undrafted,3,0.7,0.3,0.0,-38.9,0.33299999999999996,0.0,0.187,0.568,0.0,1998-99 1051,Brent Barry,CHI,27.0,198.12,88.45044,Oregon State,USA,1995,1,15,37,11.1,3.9,3.1,-11.2,0.036000000000000004,0.111,0.18600000000000003,0.514,0.193,1998-99 1052,Brent Price,HOU,30.0,185.42,83.91452,Oklahoma,USA,1992,2,32,40,7.3,2.0,2.8,1.6,0.028999999999999998,0.08199999999999999,0.17,0.624,0.22699999999999998,1998-99 1053,Brevin Knight,CLE,23.0,177.8,78.471416,Stanford,USA,1997,1,16,39,9.6,3.4,7.7,1.1,0.017,0.11800000000000001,0.19,0.495,0.442,1998-99 1054,Brian Evans,MIN,25.0,203.2,99.79024,Indiana,USA,1996,1,27,16,2.1,1.2,0.9,-2.5,0.043,0.107,0.135,0.37200000000000005,0.188,1998-99 1055,Brian Grant,POR,27.0,205.74,115.212368,Xavier,USA,1994,1,8,48,11.5,9.8,1.4,8.4,0.138,0.222,0.174,0.5710000000000001,0.073,1998-99 1056,Bo Outlaw,ORL,28.0,203.2,95.25432,Houston,USA,Undrafted,Undrafted,Undrafted,31,6.5,5.4,1.8,-0.5,0.073,0.155,0.136,0.535,0.111,1998-99 1057,Brian Shaw,POR,33.0,198.12,90.7184,California-Santa Barbara,USA,1988,1,24,1,0.0,1.0,1.0,-31.2,0.0,0.25,0.154,0.0,0.33299999999999996,1998-99 1058,Bruce Bowen,BOS,28.0,200.66,90.7184,Cal State-Fullerton,USA,Undrafted,Undrafted,Undrafted,30,2.3,1.7,0.9,-3.9,0.032,0.086,0.10400000000000001,0.33799999999999997,0.092,1998-99 1059,Bruno Sundov,DAL,19.0,218.44,99.79024,None,Croatia,1998,2,35,3,1.3,0.0,0.3,-64.9,0.0,0.0,0.287,0.28600000000000003,0.14300000000000002,1998-99 1060,Bryant Reeves,VAN,26.0,213.36,124.7378,Oklahoma State,USA,1995,1,6,25,10.8,5.5,1.5,-12.1,0.08199999999999999,0.149,0.228,0.449,0.099,1998-99 1061,Bryant Stith,DEN,28.0,195.58,94.34713599999999,Virginia,USA,1992,1,13,46,7.0,2.3,1.8,-9.3,0.027999999999999997,0.077,0.139,0.498,0.113,1998-99 1062,Bryce Drew,HOU,24.0,190.5,83.91452,Valparaiso,USA,1998,1,16,34,3.5,0.9,1.5,-1.2,0.008,0.073,0.171,0.445,0.193,1998-99 1063,Bryon Russell,UTA,28.0,200.66,102.0582,Long Beach State,USA,1993,2,45,50,12.4,5.3,1.5,9.5,0.049,0.13,0.17,0.5720000000000001,0.07200000000000001,1998-99 1064,Calbert Cheaney,WAS,27.0,200.66,97.52228000000001,Indiana,USA,1993,1,6,50,7.7,2.8,1.5,-1.2,0.03,0.10400000000000001,0.179,0.433,0.096,1998-99 1065,Carl Herrera,DEN,32.0,205.74,102.0582,Houston,USA,1990,2,30,28,2.3,2.2,0.1,-7.8,0.085,0.147,0.14300000000000002,0.402,0.025,1998-99 1066,Carlos Rogers,POR,28.0,210.82,99.79024,Tennessee State,USA,1994,1,11,2,2.5,0.5,0.5,24.9,0.0,0.091,0.22899999999999998,0.665,0.2,1998-99 1067,Casey Shaw,PHI,23.0,210.82,117.93392,Toledo,USA,1998,2,37,9,0.2,0.3,0.0,-10.7,0.16699999999999998,0.0,0.28600000000000003,0.125,0.0,1998-99 1068,Cedric Ceballos,DAL,29.0,198.12,86.18248,Cal State-Fullerton,USA,1990,2,48,13,12.5,6.5,0.9,-8.5,0.066,0.193,0.244,0.504,0.07400000000000001,1998-99 1069,Brian Skinner,LAC,23.0,205.74,115.66596000000001,Baylor,USA,1998,1,22,21,4.1,2.5,0.0,0.5,0.085,0.152,0.182,0.503,0.006999999999999999,1998-99 1070,Andrew Gaze,SAS,33.0,200.66,92.98635999999999,Seton Hall,USA,Undrafted,Undrafted,Undrafted,19,1.1,0.3,0.3,27.4,0.038,0.048,0.20600000000000002,0.42,0.182,1998-99 1071,Blue Edwards,MIA,33.0,193.04,90.7184,East Carolina,USA,1989,1,21,24,3.2,1.4,1.3,-1.1,0.031,0.096,0.168,0.495,0.19,1998-99 1072,Bimbo Coles,GSW,31.0,187.96,82.553744,Virginia Tech,USA,1990,2,40,48,9.5,2.4,4.6,-2.7,0.017,0.08199999999999999,0.187,0.496,0.28600000000000003,1998-99 1073,Grant Hill,DET,26.0,203.2,102.0582,Duke,USA,1994,1,3,50,21.1,7.1,6.0,4.4,0.044000000000000004,0.193,0.295,0.5429999999999999,0.324,1998-99 1074,Antawn Jamison,GSW,23.0,205.74,101.151016,North Carolina,USA,1998,1,4,47,9.6,6.4,0.7,-3.0,0.12,0.17300000000000001,0.21600000000000003,0.48700000000000004,0.057999999999999996,1998-99 1075,Anthony Avent,UTA,29.0,205.74,106.59411999999999,Seton Hall,USA,1991,1,15,5,1.8,2.4,0.2,5.4,0.17800000000000002,0.1,0.20199999999999999,0.324,0.043,1998-99 1076,Anthony Johnson,ATL,24.0,190.5,86.18248,College of Charleston,USA,1997,2,39,49,5.0,1.5,2.2,-1.8,0.022000000000000002,0.077,0.177,0.467,0.249,1998-99 1077,Anthony Miller,HOU,27.0,205.74,115.66596000000001,Michigan State,USA,1994,2,39,29,2.4,2.3,0.2,7.2,0.136,0.177,0.142,0.502,0.044000000000000004,1998-99 1078,Anthony Parker,PHI,24.0,198.12,97.52228000000001,Bradley,USA,1997,1,21,2,1.0,0.0,0.0,38.3,0.0,0.0,0.177,1.0,0.0,1998-99 1079,Anthony Peeler,MIN,29.0,193.04,94.34713599999999,Missouri,USA,1992,1,15,28,9.6,3.0,2.8,3.4,0.037000000000000005,0.081,0.172,0.465,0.139,1998-99 1080,Antoine Carr,HOU,37.0,205.74,122.46983999999999,Wichita State,USA,1983,1,8,18,2.6,1.7,0.5,-6.4,0.065,0.151,0.198,0.42700000000000005,0.107,1998-99 1081,Antoine Walker,BOS,22.0,205.74,111.13004,Kentucky,USA,1996,1,6,42,18.7,8.5,3.1,-6.2,0.073,0.19399999999999998,0.273,0.47600000000000003,0.152,1998-99 1082,Antonio Daniels,SAS,24.0,193.04,90.7184,Bowling Green,USA,1997,1,4,47,4.7,1.1,2.3,10.1,0.025,0.07,0.192,0.52,0.31,1998-99 1083,Antonio Davis,IND,30.0,205.74,104.32616,Texas-El Paso,USA,1990,2,45,49,9.4,7.0,0.7,1.2,0.10800000000000001,0.22,0.18100000000000002,0.535,0.049,1998-99 1084,Bison Dele,DET,30.0,210.82,117.93392,Arizona,USA,1991,1,10,49,10.5,5.6,1.4,2.1,0.099,0.187,0.243,0.531,0.115,1998-99 1085,Antonio Lang,CLE,27.0,203.2,92.98635999999999,Duke,USA,1994,2,29,10,1.3,1.6,0.1,-23.9,0.15,0.20800000000000002,0.113,0.653,0.028999999999999998,1998-99 1086,Armen Gilliam,MIL,35.0,205.74,117.93392,Nevada-Las Vegas,USA,1987,1,2,34,8.3,3.7,0.6,-1.3,0.061,0.166,0.222,0.525,0.053,1998-99 1087,Arvydas Sabonis,POR,34.0,220.98,132.448864,None,Lithuania,1986,1,24,50,12.1,7.9,2.4,4.4,0.078,0.254,0.21899999999999997,0.546,0.156,1998-99 1088,Austin Croshere,IND,24.0,205.74,106.59411999999999,Providence,USA,1997,1,12,27,3.4,1.7,0.4,-12.5,0.071,0.152,0.20800000000000002,0.54,0.075,1998-99 1089,Avery Johnson,SAS,34.0,180.34,81.64656,Southern,USA,Undrafted,Undrafted,Undrafted,50,9.7,2.4,7.4,9.7,0.016,0.061,0.171,0.48700000000000004,0.36200000000000004,1998-99 1090,B.J. Armstrong,ORL,31.0,187.96,83.91452,Iowa,USA,1989,1,18,32,3.3,1.2,1.9,-5.2,0.006999999999999999,0.111,0.16,0.54,0.305,1998-99 1091,Ben Davis,NYK,26.0,205.74,108.86208,Arizona,USA,1996,2,43,8,2.1,1.4,0.4,16.6,0.3,0.154,0.341,0.433,0.25,1998-99 1092,Ben Wallace,WAS,24.0,205.74,108.86208,Virginia Union,USA,Undrafted,Undrafted,Undrafted,46,6.0,8.3,0.4,1.8,0.128,0.23199999999999998,0.11,0.537,0.023,1998-99 1093,Benoit Benjamin,PHI,34.0,213.36,113.398,Creighton,USA,1985,1,3,6,0.7,1.3,0.2,-1.8,0.1,0.217,0.132,0.28600000000000003,0.043,1998-99 1094,Bill Curley,MIN,27.0,205.74,99.79024,Boston College,USA,1994,1,22,35,2.2,1.5,0.4,5.9,0.057999999999999996,0.10300000000000001,0.107,0.47700000000000004,0.05,1998-99 1095,Bill Wennington,CHI,36.0,213.36,125.64498400000001,St. John's (NY),USA,1985,1,16,38,3.8,2.1,0.5,-7.7,0.048,0.159,0.218,0.381,0.085,1998-99 1096,Billy Owens,SEA,30.0,203.2,99.79024,Syracuse,USA,1991,1,3,21,7.8,3.8,1.8,-2.3,0.087,0.128,0.21,0.452,0.133,1998-99 1097,Antonio McDyess,DEN,24.0,205.74,99.79024,Alabama,USA,1995,1,2,50,21.2,10.7,1.6,-5.9,0.09699999999999999,0.22899999999999998,0.273,0.515,0.085,1998-99 1098,Grant Long,ATL,33.0,205.74,112.490816,Eastern Michigan,USA,1988,2,33,50,9.8,5.9,1.1,8.2,0.08800000000000001,0.168,0.18600000000000003,0.529,0.078,1998-99 1099,Greg Minor,BOS,27.0,198.12,95.25432,Louisville,USA,1994,1,25,44,4.9,2.7,1.1,6.9,0.044000000000000004,0.129,0.152,0.475,0.10099999999999999,1998-99 1100,Greg Foster,UTA,30.0,210.82,113.398,Texas-El Paso,USA,1990,2,35,42,2.8,2.0,0.6,-6.6,0.076,0.14,0.18,0.401,0.10300000000000001,1998-99 1101,Pat Garrity,PHX,22.0,205.74,107.95489599999999,Notre Dame,USA,1998,1,19,39,5.6,1.9,0.5,3.2,0.057999999999999996,0.107,0.185,0.557,0.055,1998-99 1102,Patrick Ewing,NYK,36.0,213.36,115.66596000000001,Georgetown,Jamaica,1985,1,1,38,17.3,9.9,1.1,1.8,0.068,0.24600000000000002,0.28,0.491,0.068,1998-99 1103,Paul Grant,MIL,25.0,213.36,111.13004,Wisconsin,USA,1997,1,20,6,0.7,0.2,0.0,-28.8,0.067,0.0,0.23,0.33299999999999996,0.0,1998-99 1104,Paul Pierce,BOS,21.0,200.66,99.79024,Kansas,USA,1998,1,10,48,16.5,6.4,2.4,-2.0,0.079,0.134,0.23199999999999998,0.54,0.121,1998-99 1105,Peja Stojakovic,SAC,22.0,205.74,103.872568,None,Serbia and Montenegro,1996,1,14,48,8.4,3.0,1.5,1.3,0.045,0.10800000000000001,0.195,0.496,0.115,1998-99 1106,Pete Chilcutt,VAN,30.0,208.28,108.86208,North Carolina,USA,1991,1,27,46,3.6,2.5,0.7,-6.3,0.049,0.14800000000000002,0.138,0.462,0.07200000000000001,1998-99 1107,Peter Aluma,SAC,26.0,208.28,117.93392,Liberty,USA,Undrafted,Undrafted,Undrafted,2,1.0,1.0,0.0,-65.1,0.125,0.125,0.218,0.5,0.0,1998-99 1108,Pooh Richardson,LAC,33.0,185.42,81.64656,UCLA,USA,1989,1,10,11,2.5,1.2,2.7,-14.1,0.008,0.114,0.155,0.371,0.395,1998-99 1109,Popeye Jones,BOS,29.0,203.2,110.22285600000001,Murray State,USA,1992,2,41,18,3.0,2.9,0.8,5.0,0.145,0.14,0.134,0.462,0.105,1998-99 1110,Raef LaFrentz,DEN,23.0,210.82,108.86208,Kansas,USA,1998,1,3,12,13.8,7.6,0.7,-7.9,0.09300000000000001,0.184,0.182,0.5529999999999999,0.038,1998-99 1111,Randell Jackson,WAS,23.0,210.82,97.52228000000001,Florida State,USA,1999,Undrafted,Undrafted,27,4.2,2.0,0.3,-9.6,0.11599999999999999,0.10099999999999999,0.23800000000000002,0.467,0.055999999999999994,1998-99 1112,Randy Brown,CHI,31.0,187.96,86.636072,New Mexico State,USA,1991,2,31,39,8.8,3.4,3.8,-9.6,0.025,0.111,0.182,0.47100000000000003,0.256,1998-99 1113,Randy Livingston,PHX,24.0,193.04,94.800728,Louisiana State,USA,1996,2,42,1,12.0,2.0,3.0,16.8,0.0,0.095,0.22,0.6759999999999999,0.25,1998-99 1114,Rashard Lewis,SEA,19.0,208.28,97.52228000000001,None,USA,1998,2,32,20,2.4,1.3,0.2,-13.5,0.085,0.085,0.22,0.40399999999999997,0.047,1998-99 1115,Rasheed Wallace,POR,24.0,210.82,102.0582,North Carolina,USA,1995,1,4,49,12.8,4.9,1.2,10.6,0.05,0.145,0.20600000000000002,0.5660000000000001,0.076,1998-99 1116,Rasho Nesterovic,MIN,23.0,213.36,112.490816,None,Slovenia,1998,1,17,2,4.0,4.0,0.5,2.9,0.086,0.25,0.187,0.311,0.045,1998-99 1117,Ray Allen,MIL,23.0,195.58,92.98635999999999,Connecticut,USA,1996,1,5,50,17.1,4.2,3.6,4.4,0.04,0.109,0.24100000000000002,0.564,0.183,1998-99 1118,Reggie Jordan,MIN,31.0,193.04,88.45044,New Mexico State,USA,Undrafted,Undrafted,Undrafted,27,1.9,2.2,1.5,3.0,0.09,0.14,0.124,0.361,0.19399999999999998,1998-99 1119,Reggie Miller,IND,33.0,200.66,83.91452,UCLA,USA,1987,1,11,50,18.4,2.7,2.2,6.0,0.017,0.069,0.228,0.59,0.109,1998-99 1120,Reggie Slater,TOR,28.0,200.66,115.66596000000001,Wyoming,USA,Undrafted,Undrafted,Undrafted,30,3.8,2.3,0.2,-7.2,0.14300000000000002,0.155,0.235,0.486,0.037000000000000005,1998-99 1121,Rex Chapman,PHX,31.0,193.04,88.45044,Kentucky,USA,1988,1,8,38,12.1,2.7,2.9,4.3,0.011000000000000001,0.091,0.215,0.46,0.149,1998-99 1122,Greg Anthony,POR,31.0,185.42,81.64656,Nevada-Las Vegas,USA,1991,1,12,50,6.4,1.3,2.0,12.7,0.021,0.068,0.19899999999999998,0.55,0.223,1998-99 1123,Rick Brunson,NYK,27.0,193.04,86.18248,Temple,USA,Undrafted,Undrafted,Undrafted,17,1.0,0.6,1.1,13.5,0.034,0.111,0.2,0.294,0.33299999999999996,1998-99 1124,P.J. Brown,MIA,29.0,210.82,108.86208,Louisiana Tech,USA,1992,2,29,50,11.4,6.9,1.3,8.3,0.092,0.162,0.187,0.527,0.075,1998-99 1125,Otis Thorpe,WAS,36.0,208.28,111.58363200000001,Providence,USA,1984,1,9,49,11.3,6.8,2.1,-3.8,0.07400000000000001,0.18600000000000003,0.175,0.569,0.111,1998-99 1126,Othella Harrington,HOU,25.0,205.74,106.59411999999999,Georgetown,USA,1996,2,30,41,9.8,6.0,0.4,3.0,0.10400000000000001,0.205,0.218,0.5589999999999999,0.031,1998-99 1127,Oliver Miller,SAC,29.0,205.74,147.4174,Arkansas,USA,1992,1,22,4,2.5,2.0,0.0,-18.8,0.19399999999999998,0.038,0.177,0.455,0.0,1998-99 1128,Maurice Taylor,LAC,22.0,205.74,117.93392,Michigan,USA,1997,1,14,46,16.8,5.3,1.5,-12.2,0.075,0.11900000000000001,0.27,0.505,0.087,1998-99 1129,Michael Curry,MIL,30.0,195.58,102.965384,Georgia Southern,USA,Undrafted,Undrafted,Undrafted,50,4.9,2.2,1.6,1.9,0.021,0.09,0.12,0.507,0.113,1998-99 1130,Michael Dickerson,HOU,24.0,195.58,86.18248,Arizona,USA,1998,1,14,50,10.9,1.7,1.9,4.4,0.021,0.039,0.16899999999999998,0.5539999999999999,0.10099999999999999,1998-99 1131,Michael Doleac,ORL,22.0,210.82,118.841104,Utah,USA,1998,1,12,49,6.2,3.0,0.4,5.5,0.09699999999999999,0.13,0.18600000000000003,0.503,0.044000000000000004,1998-99 1132,Michael Finley,DAL,26.0,200.66,97.52228000000001,Wisconsin,USA,1995,1,21,50,20.2,5.3,4.4,-2.4,0.037000000000000005,0.106,0.242,0.517,0.193,1998-99 1133,Michael Hawkins,SAC,26.0,182.88,80.73937600000001,Xavier,USA,Undrafted,Undrafted,Undrafted,24,1.5,1.0,1.1,-0.4,0.057,0.087,0.12300000000000001,0.436,0.203,1998-99 1134,Michael Olowokandi,LAC,24.0,213.36,122.016248,Pacific,Nigeria,1998,1,1,45,8.9,7.9,0.6,-12.1,0.107,0.24,0.19399999999999998,0.445,0.034,1998-99 1135,Michael Smith,VAN,27.0,203.2,104.32616,Providence,USA,1994,2,35,48,4.8,7.3,1.0,-6.8,0.14300000000000002,0.235,0.11,0.574,0.07400000000000001,1998-99 1136,Michael Stewart,TOR,24.0,208.28,104.32616,California,USA,Undrafted,Undrafted,Undrafted,42,1.5,2.4,0.1,-2.4,0.121,0.17300000000000001,0.085,0.47700000000000004,0.021,1998-99 1137,Micheal Williams,TOR,32.0,187.96,79.3786,Baylor,USA,1988,2,48,2,1.0,0.5,0.0,-20.4,0.1,0.0,0.20199999999999999,0.2,0.0,1998-99 1138,Mike Bibby,VAN,21.0,187.96,86.18248,Arizona,USA,1998,1,2,50,13.2,2.7,6.5,-9.6,0.02,0.07200000000000001,0.215,0.48700000000000004,0.34299999999999997,1998-99 1139,Rick Fox,LAL,29.0,200.66,109.769264,North Carolina,Canada,1991,1,24,44,9.0,2.0,2.0,4.2,0.033,0.078,0.20199999999999999,0.534,0.16,1998-99 1140,Mikki Moore,DET,23.0,213.36,104.32616,Nebraska,USA,Undrafted,Undrafted,Undrafted,2,2.0,0.5,0.0,89.7,0.0,0.16699999999999998,0.158,1.064,0.0,1998-99 1141,Mitch Richmond,WAS,33.0,195.58,99.79024,Kansas State,USA,1988,1,5,50,19.7,3.4,2.4,-2.7,0.018000000000000002,0.08900000000000001,0.258,0.527,0.114,1998-99 1142,Mitchell Butler,CLE,28.0,195.58,102.965384,UCLA,USA,Undrafted,Undrafted,Undrafted,31,5.4,1.4,0.7,-0.9,0.042,0.092,0.221,0.5489999999999999,0.11599999999999999,1998-99 1143,Monty Williams,DEN,27.0,203.2,102.0582,Notre Dame,USA,1994,1,24,1,1.0,0.0,0.0,-21.6,0.0,0.0,0.201,0.174,0.0,1998-99 1144,Moochie Norris,SEA,25.0,187.96,85.275296,West Florida,USA,1996,2,33,12,3.2,1.7,2.0,-9.7,0.03,0.13699999999999998,0.201,0.40399999999999997,0.316,1998-99 1145,Mookie Blaylock,ATL,32.0,185.42,83.91452,Oklahoma,USA,1989,1,12,48,13.3,4.7,5.8,6.2,0.03,0.11800000000000001,0.214,0.46299999999999997,0.308,1998-99 1146,Muggsy Bogues,GSW,34.0,160.02,63.956472,Wake Forest,USA,1987,1,12,36,5.1,2.0,3.7,-2.1,0.025,0.091,0.138,0.539,0.33799999999999997,1998-99 1147,Nazr Mohammed,PHI,21.0,208.28,108.86208,Kentucky,USA,1998,1,29,26,1.6,1.4,0.1,15.9,0.175,0.165,0.22699999999999998,0.41,0.031,1998-99 1148,Negele Knight,TOR,32.0,185.42,79.3786,Dayton,USA,1990,2,31,6,1.3,1.0,1.3,-11.6,0.02,0.125,0.138,0.41,0.25,1998-99 1149,Nick Anderson,ORL,31.0,198.12,103.418976,Illinois,USA,1989,1,11,47,14.9,5.9,1.9,2.1,0.037000000000000005,0.162,0.23,0.493,0.107,1998-99 1150,Nick Van Exel,DEN,27.0,185.42,86.18248,Cincinnati,USA,1993,2,37,50,16.5,2.3,7.4,-8.4,0.009000000000000001,0.065,0.242,0.488,0.375,1998-99 1151,Olden Polynice,SEA,34.0,213.36,113.398,Virginia,USA,1987,1,8,48,7.7,8.9,0.9,-3.0,0.13699999999999998,0.196,0.139,0.461,0.047,1998-99 1152,Miles Simon,ORL,23.0,190.5,91.625584,Arizona,USA,1998,2,42,5,0.4,0.4,0.0,-29.2,0.071,0.059000000000000004,0.20800000000000002,0.2,0.0,1998-99 1153,Matt Maloney,HOU,27.0,190.5,87.089664,Pennsylvania,USA,Undrafted,Undrafted,Undrafted,15,1.4,0.7,1.4,-3.6,0.012,0.047,0.11199999999999999,0.32,0.159,1998-99 1154,Rick Mahorn,PHI,40.0,208.28,117.93392,Hampton,USA,1980,2,35,16,0.8,1.4,0.1,-12.2,0.061,0.17,0.099,0.302,0.024,1998-99 1155,Rik Smits,IND,32.0,223.52,120.20188,Marist,USA,1988,1,2,49,14.9,5.6,1.1,6.6,0.07200000000000001,0.179,0.28800000000000003,0.527,0.077,1998-99 1156,Shaquille O'Neal,LAL,27.0,215.9,142.88148,Louisiana State,USA,1992,1,1,49,26.3,10.7,2.3,6.4,0.135,0.22699999999999998,0.325,0.584,0.132,1998-99 1157,Shareef Abdur-Rahim,VAN,22.0,205.74,104.32616,California,USA,1996,1,3,50,23.0,7.5,3.4,-9.7,0.066,0.154,0.28800000000000003,0.53,0.174,1998-99 1158,Shawn Bradley,DAL,27.0,228.6,119.294696,Brigham Young,USA,1993,1,2,49,8.6,8.0,0.8,5.4,0.114,0.226,0.16399999999999998,0.527,0.051,1998-99 1159,Shawn Kemp,CLE,29.0,208.28,127.00576000000001,Trinity Valley Community College,USA,1989,1,17,42,20.5,9.2,2.4,0.5,0.114,0.218,0.281,0.578,0.14,1998-99 1160,Shawn Respert,PHX,27.0,185.42,88.45044,Michigan State,USA,1995,1,8,12,3.1,1.1,0.7,-1.4,0.023,0.11599999999999999,0.218,0.45799999999999996,0.17,1998-99 1161,Sherman Douglas,LAC,32.0,185.42,88.45044,Syracuse,USA,1989,2,28,30,8.2,1.9,4.1,-10.4,0.021,0.064,0.171,0.48,0.248,1998-99 1162,Stacey Augmon,POR,30.0,203.2,92.98635999999999,Nevada-Las Vegas,USA,1991,1,9,48,4.3,2.6,1.2,8.6,0.066,0.10099999999999999,0.128,0.501,0.109,1998-99 1163,Stanley Roberts,HOU,29.0,213.36,131.54168,Louisiana State,USA,1991,1,23,6,2.3,1.8,0.0,26.5,0.16699999999999998,0.212,0.304,0.424,0.0,1998-99 1164,Stephon Marbury,NJN,22.0,187.96,81.64656,Georgia Tech,USA,1996,1,4,49,21.3,2.9,8.9,2.4,0.02,0.067,0.271,0.519,0.41100000000000003,1998-99 1165,Steve Henson,DET,31.0,180.34,80.28578399999998,Kansas State,USA,1990,2,44,4,1.0,0.0,0.8,1.0,0.0,0.0,0.111,0.6940000000000001,0.3,1998-99 1166,Steve Kerr,SAS,33.0,190.5,82.10015200000001,Arizona,USA,1988,2,50,44,4.4,1.0,1.1,6.3,0.01,0.055,0.134,0.507,0.111,1998-99 1167,Steve Nash,DAL,25.0,190.5,88.45044,Santa Clara,Canada,1996,1,15,40,7.9,2.9,5.5,-1.0,0.027999999999999997,0.073,0.151,0.47100000000000003,0.26899999999999996,1998-99 1168,Steven Smith,ATL,30.0,203.2,97.52228000000001,Michigan State,USA,1991,1,5,36,18.7,4.2,3.3,9.8,0.047,0.086,0.265,0.526,0.17800000000000002,1998-99 1169,Stojko Vrankovic,LAC,35.0,218.44,117.93392,None,USA,Undrafted,Undrafted,Undrafted,2,1.0,3.0,0.0,-56.2,0.267,0.222,0.14,0.25,0.0,1998-99 1170,Tariq Abdul-Wahad,SAC,24.0,198.12,101.151016,San Jose State,France,1997,1,11,49,9.3,3.8,1.0,-2.7,0.062,0.098,0.188,0.486,0.062,1998-99 1171,Terrell Brandon,MIN,29.0,180.34,78.471416,Oregon,USA,1991,1,11,36,13.9,3.7,8.6,1.3,0.024,0.109,0.22899999999999998,0.46299999999999997,0.41100000000000003,1998-99 1172,Terry Cummings,GSW,38.0,205.74,113.398,DePaul,USA,1982,1,2,50,9.1,5.1,1.2,-4.6,0.099,0.179,0.231,0.479,0.107,1998-99 1173,Terry Davis,WAS,32.0,205.74,102.0582,Virginia Union,USA,Undrafted,Undrafted,Undrafted,37,3.4,3.8,0.3,-1.4,0.10099999999999999,0.19899999999999998,0.102,0.579,0.026000000000000002,1998-99 1174,Terry Dehere,VAN,27.0,193.04,86.18248,Seton Hall,USA,1993,1,13,26,3.2,0.9,1.0,-12.6,0.027000000000000003,0.067,0.165,0.47100000000000003,0.171,1998-99 1175,Terry Mills,MIA,31.0,208.28,104.32616,Michigan,USA,1990,1,16,1,9.0,4.0,0.0,-13.9,0.158,0.053,0.191,0.507,0.0,1998-99 1176,Thurl Bailey,UTA,38.0,210.82,112.037224,North Carolina State,USA,1983,1,7,43,4.2,2.2,0.6,2.7,0.085,0.132,0.19,0.47600000000000003,0.09300000000000001,1998-99 1177,Theo Ratliff,PHI,26.0,208.28,102.0582,Wyoming,USA,1995,1,18,50,11.2,8.1,0.6,2.0,0.098,0.19699999999999998,0.174,0.539,0.033,1998-99 1178,Terry Porter,MIA,36.0,190.5,88.45044,Wisconsin-Stevens Point,USA,1985,1,24,50,10.5,2.8,2.9,4.4,0.013000000000000001,0.106,0.187,0.603,0.212,1998-99 1179,Shandon Anderson,UTA,25.0,198.12,95.25432,Georgia,USA,1996,2,54,50,8.5,2.6,1.1,2.0,0.059000000000000004,0.09,0.215,0.511,0.105,1998-99 1180,Shammond Williams,ATL,24.0,185.42,91.171992,North Carolina,USA,1998,2,34,2,1.5,0.0,0.5,-42.9,0.0,0.0,0.294,0.5429999999999999,1.0,1998-99 1181,Sean Rooks,LAL,29.0,208.28,117.93392,Arizona,USA,1992,2,30,36,2.7,2.0,0.3,-7.6,0.111,0.156,0.172,0.489,0.051,1998-99 1182,Sean Marks,TOR,23.0,208.28,113.398,California,New Zealand,1998,2,44,8,1.4,0.1,0.0,-42.6,0.0,0.055999999999999994,0.204,0.619,0.0,1998-99 1183,Robert Horry,LAL,28.0,208.28,106.59411999999999,Alabama,USA,1992,1,11,38,4.9,4.0,1.5,9.0,0.091,0.14800000000000002,0.13,0.565,0.11199999999999999,1998-99 1184,Robert Pack,DAL,30.0,187.96,86.18248,Southern California,USA,Undrafted,Undrafted,Undrafted,25,8.9,1.4,3.2,-8.5,0.021,0.062,0.252,0.522,0.33299999999999996,1998-99 1185,Robert Traylor,MIL,22.0,203.2,128.820128,Michigan,USA,1998,1,6,49,5.3,3.7,0.8,6.9,0.129,0.158,0.16699999999999998,0.5479999999999999,0.07200000000000001,1998-99 1186,Rod Strickland,WAS,32.0,190.5,83.91452,DePaul,USA,1988,1,19,44,15.7,4.8,9.9,-1.5,0.039,0.11199999999999999,0.23600000000000002,0.488,0.43799999999999994,1998-99 1187,Rodney Rogers,LAC,28.0,200.66,115.66596000000001,Wake Forest,USA,1993,1,9,47,7.4,3.8,1.6,-11.5,0.073,0.14800000000000002,0.192,0.51,0.14800000000000002,1998-99 1188,Rodrick Rhodes,VAN,25.0,198.12,102.0582,Southern California,USA,1997,1,24,13,3.3,1.3,0.8,-28.3,0.06,0.06,0.235,0.341,0.16399999999999998,1998-99 1189,Ron Harper,CHI,35.0,198.12,97.975872,Miami (OH),USA,1986,1,8,35,11.2,5.1,3.3,-4.8,0.05,0.149,0.214,0.451,0.19699999999999998,1998-99 1190,Ron Mercer,BOS,23.0,200.66,95.25432,Kentucky,USA,1997,1,6,41,17.0,3.8,2.5,-5.9,0.026000000000000002,0.091,0.24600000000000002,0.46299999999999997,0.12,1998-99 1191,Rony Seikaly,NJN,34.0,210.82,114.758776,Syracuse,USA,1988,1,9,9,1.7,2.3,0.2,-26.5,0.055,0.242,0.18899999999999997,0.26899999999999996,0.049,1998-99 1192,Roshown McLeod,ATL,23.0,203.2,99.79024,Duke,USA,1998,1,20,34,4.8,1.5,0.4,-5.9,0.042,0.131,0.276,0.44299999999999995,0.09,1998-99 1193,Ruben Patterson,LAL,23.0,198.12,102.965384,Cincinnati,USA,1998,2,31,24,2.7,1.3,0.1,-4.0,0.13,0.107,0.22899999999999998,0.503,0.024,1998-99 1194,Ricky Davis,CHH,19.0,200.66,88.45044,Iowa,USA,1998,1,21,46,4.5,1.8,1.3,0.2,0.09,0.091,0.233,0.462,0.18600000000000003,1998-99 1195,Rusty LaRue,CHI,25.0,190.5,86.18248,Wake Forest,USA,Undrafted,Undrafted,Undrafted,43,4.7,1.3,1.5,-10.1,0.013999999999999999,0.081,0.168,0.452,0.157,1998-99 1196,Sam Cassell,MIL,29.0,190.5,83.91452,Florida State,USA,1993,1,24,8,15.9,1.9,4.5,9.7,0.027999999999999997,0.057,0.29600000000000004,0.552,0.33,1998-99 1197,Sam Jacobson,LAL,23.0,193.04,97.52228000000001,Minnesota,USA,1998,1,26,2,4.0,1.5,0.0,26.0,0.0,0.214,0.24,0.68,0.0,1998-99 1198,Sam Mack,HOU,29.0,200.66,99.79024,Houston,USA,Undrafted,Undrafted,Undrafted,44,10.7,2.2,1.3,-2.8,0.015,0.086,0.19,0.5760000000000001,0.094,1998-99 1199,Sam Mitchell,MIN,35.0,200.66,97.52228000000001,Mercer,USA,1985,3,54,50,11.2,3.6,2.0,-0.5,0.042,0.115,0.20800000000000002,0.47200000000000003,0.124,1998-99 1200,Sam Perkins,IND,38.0,205.74,117.93392,North Carolina,USA,1984,1,4,48,5.0,2.9,0.5,2.3,0.054000000000000006,0.16699999999999998,0.154,0.526,0.057,1998-99 1201,Samaki Walker,DAL,23.0,205.74,117.02673600000001,Louisville,USA,1996,1,9,39,5.9,3.7,0.2,-12.4,0.08800000000000001,0.188,0.221,0.491,0.021,1998-99 1202,Scot Pollard,SAC,24.0,210.82,120.20188,Kansas,USA,1997,1,19,16,5.1,5.1,0.3,11.0,0.152,0.183,0.12300000000000001,0.5760000000000001,0.024,1998-99 1203,Scott Burrell,NJN,28.0,200.66,98.88305600000001,Connecticut,USA,1993,1,20,32,6.6,3.7,1.4,-1.4,0.048,0.145,0.155,0.46799999999999997,0.111,1998-99 1204,Scott Williams,MIL,31.0,208.28,104.32616,North Carolina,USA,Undrafted,Undrafted,Undrafted,7,2.0,2.0,0.1,-16.1,0.065,0.21600000000000003,0.243,0.349,0.048,1998-99 1205,Scottie Pippen,HOU,33.0,200.66,103.418976,Central Arkansas,USA,1987,1,5,50,14.5,6.5,5.9,1.6,0.04,0.141,0.19899999999999998,0.53,0.248,1998-99 1206,Sean Elliott,SAS,31.0,203.2,99.79024,Arizona,USA,1989,1,3,50,11.2,4.3,2.3,6.2,0.027000000000000003,0.124,0.198,0.493,0.132,1998-99 1207,Ryan Stack,CLE,23.0,210.82,97.52228000000001,South Carolina,USA,1998,2,48,18,2.6,1.9,0.3,-19.4,0.11699999999999999,0.094,0.14,0.513,0.045,1998-99 1208,Matt Harpring,ORL,23.0,200.66,104.779752,Georgia Tech,USA,1998,1,15,50,8.2,4.3,0.9,-0.3,0.09,0.14,0.184,0.5329999999999999,0.07200000000000001,1998-99 1209,Rex Walters,MIA,29.0,193.04,88.45044,Kansas,USA,1993,1,16,33,3.1,1.5,1.8,3.4,0.026000000000000002,0.086,0.134,0.47600000000000003,0.191,1998-99 1210,Matt Bullard,HOU,32.0,208.28,106.59411999999999,Iowa,USA,Undrafted,Undrafted,Undrafted,41,2.9,1.0,0.4,-1.6,0.026000000000000002,0.09,0.149,0.494,0.067,1998-99 1211,Jeff Hornacek,UTA,36.0,193.04,86.18248,Iowa State,USA,1986,2,46,48,12.2,3.3,4.0,11.6,0.03,0.099,0.196,0.575,0.231,1998-99 1212,Jeff McInnis,WAS,24.0,193.04,86.18248,North Carolina,USA,1996,2,37,35,3.7,0.6,2.1,-8.5,0.023,0.035,0.193,0.444,0.317,1998-99 1213,Jeff Sheppard,ATL,24.0,190.5,86.18248,Kentucky,USA,Undrafted,Undrafted,Undrafted,17,2.4,1.3,0.9,-2.9,0.036000000000000004,0.098,0.13,0.447,0.157,1998-99 1214,Jelani McCoy,SEA,21.0,208.28,111.13004,UCLA,USA,1998,2,33,26,5.1,3.0,0.2,-6.6,0.096,0.171,0.147,0.7040000000000001,0.023,1998-99 1215,Jerald Honeycutt,PHI,24.0,205.74,115.212368,Tulane,USA,1997,2,38,16,1.9,0.8,0.2,-10.6,0.028999999999999998,0.11,0.2,0.41200000000000003,0.067,1998-99 1216,Jermaine O'Neal,POR,20.0,210.82,102.511792,None,USA,1996,1,17,36,2.5,2.7,0.4,-7.7,0.14800000000000002,0.188,0.16399999999999998,0.457,0.07,1998-99 1217,Jerome James,SAC,23.0,215.9,136.0776,Florida A&M,USA,1998,2,36,16,1.5,1.1,0.1,-20.5,0.11800000000000001,0.268,0.33799999999999997,0.41,0.053,1998-99 1218,Jerome Kersey,SAS,37.0,200.66,102.0582,Longwood,USA,1984,2,46,45,3.2,2.9,0.9,7.6,0.07,0.139,0.157,0.35200000000000004,0.099,1998-99 1219,Jerome Williams,DET,26.0,205.74,93.439952,Georgetown,USA,1996,1,26,50,7.1,7.0,0.5,3.0,0.16699999999999998,0.21,0.149,0.5579999999999999,0.036000000000000004,1998-99 1220,Jerry Stackhouse,DET,24.0,198.12,98.88305600000001,North Carolina,USA,1995,1,3,42,14.5,2.5,2.8,0.6,0.026000000000000002,0.083,0.27899999999999997,0.509,0.198,1998-99 1221,Matt Geiger,PHI,29.0,215.9,112.490816,Georgia Tech,USA,1992,2,42,50,13.5,7.2,1.2,4.9,0.10300000000000001,0.17300000000000001,0.217,0.532,0.071,1998-99 1222,Jim Jackson,POR,28.0,198.12,99.79024,Ohio State,USA,1992,1,4,49,8.4,3.2,2.6,9.7,0.037000000000000005,0.11800000000000001,0.192,0.499,0.188,1998-99 1223,Jim McIlvaine,NJN,26.0,215.9,108.86208,Marquette,USA,1994,2,32,22,2.2,2.5,0.1,-3.8,0.11800000000000001,0.099,0.107,0.447,0.013000000000000001,1998-99 1224,Jimmy Oliver,PHX,29.0,195.58,92.98635999999999,Purdue,USA,1991,2,39,2,1.5,0.0,0.0,2.1,0.0,0.0,0.131,0.5,0.0,1998-99 1225,Joe Dumars,DET,36.0,190.5,88.45044,McNeese State,USA,1985,1,18,38,11.3,1.8,3.5,3.9,0.013000000000000001,0.063,0.18600000000000003,0.568,0.2,1998-99 1226,Joe Kleine,PHX,37.0,213.36,122.923432,Arkansas,USA,1985,1,6,31,2.2,2.2,0.4,-7.6,0.084,0.135,0.113,0.429,0.05,1998-99 1227,Joe Smith,MIN,23.0,208.28,102.0582,Maryland,USA,1995,1,1,43,13.7,8.2,1.6,1.0,0.109,0.16699999999999998,0.20600000000000002,0.486,0.079,1998-99 1228,Joe Wolf,CHH,34.0,210.82,104.32616,North Carolina,USA,1987,1,13,3,0.0,0.3,0.0,-49.0,0.0,0.111,0.08800000000000001,0.0,0.0,1998-99 1229,John Coker,WAS,27.0,213.36,114.758776,Boise State,USA,Undrafted,Undrafted,Undrafted,14,2.2,1.6,0.0,-25.5,0.061,0.19,0.15,0.461,0.0,1998-99 1230,John Crotty,SEA,29.0,187.96,87.996848,Virginia,USA,Undrafted,Undrafted,Undrafted,27,5.9,1.1,2.3,-7.8,0.026000000000000002,0.068,0.212,0.545,0.28300000000000003,1998-99 1231,John Starks,GSW,33.0,195.58,83.91452,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,50,13.8,3.3,4.7,-2.9,0.02,0.086,0.225,0.447,0.245,1998-99 1232,John Stockton,UTA,37.0,185.42,79.3786,Gonzaga,USA,1984,1,16,50,11.1,2.9,7.5,11.2,0.028999999999999998,0.092,0.20199999999999999,0.5710000000000001,0.457,1998-99 1233,John Thomas,TOR,23.0,205.74,120.20188,Minnesota,USA,1997,1,25,39,4.3,3.4,0.4,6.0,0.133,0.13,0.127,0.586,0.042,1998-99 1234,Jayson Williams,NJN,31.0,205.74,108.86208,St. John's (NY),USA,1990,1,21,30,8.1,12.0,1.1,-5.7,0.15,0.239,0.13,0.474,0.054000000000000006,1998-99 1235,Jason Williams,SAC,23.0,185.42,86.18248,Florida,USA,1998,1,7,50,12.8,3.1,6.0,-1.4,0.008,0.08,0.18600000000000003,0.483,0.243,1998-99 1236,Jason Sasser,VAN,25.0,200.66,102.0582,Texas Tech,USA,1996,2,41,6,1.8,1.2,0.3,-10.4,0.061,0.192,0.177,0.46299999999999997,0.1,1998-99 1237,Jason Kidd,PHX,26.0,193.04,96.16150400000001,California,USA,1994,1,2,50,16.9,6.8,10.8,6.5,0.048,0.146,0.213,0.527,0.431,1998-99 1238,Greg Ostertag,UTA,26.0,218.44,127.00576000000001,Kansas,USA,1995,1,28,48,5.7,7.3,0.5,12.6,0.105,0.198,0.11,0.523,0.027000000000000003,1998-99 1239,Hakeem Olajuwon,HOU,36.0,213.36,115.66596000000001,Houston,Nigeria,1984,1,1,50,18.9,9.6,1.8,1.9,0.07400000000000001,0.226,0.262,0.5589999999999999,0.09699999999999999,1998-99 1240,Harvey Grant,PHI,33.0,205.74,102.0582,Oklahoma,USA,1988,1,12,47,3.1,2.3,0.5,3.5,0.052000000000000005,0.113,0.11699999999999999,0.40399999999999997,0.048,1998-99 1241,Haywoode Workman,MIL,33.0,190.5,81.64656,Oral Roberts,USA,1989,2,49,29,6.9,3.5,5.9,4.2,0.022000000000000002,0.129,0.147,0.524,0.32299999999999995,1998-99 1242,Herb Williams,NYK,41.0,210.82,117.93392,Ohio State,USA,1981,1,14,6,1.7,1.0,0.0,0.9,0.08800000000000001,0.10300000000000001,0.138,0.563,0.0,1998-99 1243,Hersey Hawkins,SEA,32.0,190.5,90.7184,Bradley,USA,1988,1,6,50,10.3,4.0,2.5,1.8,0.036000000000000004,0.107,0.15,0.5539999999999999,0.11900000000000001,1998-99 1244,Horace Grant,ORL,33.0,208.28,111.13004,Clemson,USA,1987,1,10,50,8.9,7.0,1.8,0.4,0.081,0.16399999999999998,0.147,0.455,0.095,1998-99 1245,Hot Rod Williams,DAL,36.0,210.82,111.13004,Tulane,USA,1985,2,45,25,1.2,3.3,0.6,-11.8,0.09699999999999999,0.131,0.057,0.38799999999999996,0.057,1998-99 1246,Howard Eisley,UTA,26.0,187.96,81.64656,Boston College,USA,1994,2,30,50,7.4,1.9,3.7,2.5,0.015,0.091,0.213,0.527,0.35,1998-99 1247,Hubert Davis,DAL,29.0,195.58,83.007336,North Carolina,USA,1992,1,20,50,9.1,1.7,1.8,-1.9,0.002,0.07200000000000001,0.162,0.545,0.10800000000000001,1998-99 1248,Ike Austin,ORL,29.0,208.28,122.46983999999999,Arizona State,USA,1991,2,48,49,9.7,4.8,1.8,-1.6,0.07400000000000001,0.13699999999999998,0.233,0.457,0.128,1998-99 1249,John Wallace,TOR,25.0,205.74,102.0582,Syracuse,USA,1996,1,18,48,8.6,3.6,1.0,-4.3,0.078,0.16,0.276,0.489,0.113,1998-99 1250,Isaiah Rider,POR,28.0,195.58,97.52228000000001,Nevada-Las Vegas,USA,1993,1,5,47,13.9,4.2,2.2,0.5,0.05,0.11,0.253,0.486,0.141,1998-99 1251,J.R. Reid,LAL,31.0,208.28,112.037224,North Carolina,USA,1989,1,5,41,9.0,5.2,1.2,-0.7,0.055,0.18100000000000002,0.18,0.547,0.081,1998-99 1252,Jacque Vaughn,UTA,24.0,185.42,86.18248,Kansas,USA,1997,1,27,19,2.3,0.6,0.6,-20.1,0.012,0.133,0.276,0.542,0.316,1998-99 1253,Jahidi White,WAS,23.0,205.74,131.54168,Georgetown,USA,1998,2,43,20,2.5,2.9,0.1,-4.7,0.139,0.191,0.147,0.517,0.008,1998-99 1254,Jalen Rose,IND,26.0,203.2,95.25432,Michigan,USA,1994,1,13,49,11.1,3.1,1.9,4.8,0.033,0.11800000000000001,0.244,0.479,0.147,1998-99 1255,Jamal Mashburn,MIA,26.0,203.2,109.315672,Kentucky,USA,1993,1,4,24,14.8,6.1,3.1,7.0,0.037000000000000005,0.162,0.23399999999999999,0.519,0.16399999999999998,1998-99 1256,James Cotton,SEA,23.0,195.58,99.79024,Long Beach State,USA,1997,2,32,10,2.5,1.0,0.0,-34.0,0.033,0.129,0.214,0.48200000000000004,0.0,1998-99 1257,James Robinson,MIN,28.0,187.96,81.64656,Alabama,USA,1993,1,21,31,5.9,2.0,1.8,-9.5,0.037000000000000005,0.115,0.213,0.451,0.204,1998-99 1258,Jamie Feick,NJN,24.0,203.2,115.66596000000001,Michigan State,USA,1996,2,48,28,6.3,10.3,0.9,-0.5,0.139,0.253,0.10099999999999999,0.552,0.042,1998-99 1259,Jamie Watson,MIA,27.0,200.66,86.18248,South Carolina,USA,1994,2,47,3,0.7,0.3,0.3,32.6,0.0,0.045,0.09,0.5,0.111,1998-99 1260,Jaren Jackson,SAS,31.0,198.12,97.52228000000001,Georgetown,USA,Undrafted,Undrafted,Undrafted,47,6.4,2.1,1.0,12.3,0.028999999999999998,0.09699999999999999,0.18100000000000002,0.5,0.099,1998-99 1261,Jason Caffey,GSW,26.0,203.2,116.119552,Alabama,USA,1995,1,20,35,8.8,5.9,0.5,-5.1,0.096,0.162,0.20800000000000002,0.48100000000000004,0.037000000000000005,1998-99 1262,J.R. Henderson,VAN,22.0,203.2,105.68693600000002,UCLA,USA,1998,2,56,30,3.2,1.6,0.7,-6.9,0.069,0.09699999999999999,0.18899999999999997,0.419,0.128,1998-99 1263,Johnny Newman,CLE,35.0,200.66,95.25432,Richmond,USA,1986,2,29,50,6.1,1.5,0.8,-1.2,0.022000000000000002,0.084,0.17600000000000002,0.526,0.087,1998-99 1264,Jonathan Kerner,ORL,25.0,210.82,111.13004,East Carolina,USA,Undrafted,Undrafted,Undrafted,1,0.0,0.0,0.0,1.3,0.0,0.0,0.09300000000000001,0.0,0.0,1998-99 1265,Jon Barry,SAC,29.0,195.58,95.25432,Georgia Tech,USA,1992,1,21,43,5.0,2.2,2.6,6.0,0.038,0.099,0.133,0.609,0.226,1998-99 1266,Malik Sealy,MIN,29.0,203.2,90.7184,St. John's (NY),USA,1992,1,14,31,8.1,3.0,1.2,-2.9,0.032,0.11199999999999999,0.17600000000000002,0.48700000000000004,0.084,1998-99 1267,Malik Rose,SAS,24.0,200.66,113.398,Drexel,USA,1996,2,44,47,6.0,3.9,0.6,7.0,0.174,0.16699999999999998,0.24,0.535,0.091,1998-99 1268,Lucious Harris,NJN,28.0,195.58,92.98635999999999,Long Beach State,USA,1993,2,28,36,5.4,1.9,0.9,4.9,0.039,0.08900000000000001,0.16699999999999998,0.47700000000000004,0.091,1998-99 1269,Luc Longley,PHX,30.0,218.44,117.93392,New Mexico,USA,1991,1,7,39,8.7,5.7,1.2,4.8,0.07200000000000001,0.20199999999999999,0.188,0.524,0.08199999999999999,1998-99 1270,Loy Vaught,DET,31.0,205.74,108.86208,Michigan,USA,1990,1,13,37,3.4,3.9,0.3,-0.6,0.09,0.259,0.18100000000000002,0.39399999999999996,0.043,1998-99 1271,Lorenzen Wright,LAC,23.0,210.82,118.841104,Memphis,USA,1996,1,7,48,6.6,7.5,0.7,-8.0,0.141,0.237,0.14300000000000002,0.512,0.049,1998-99 1272,Loren Meyer,DEN,26.0,208.28,117.93392,Iowa State,USA,1995,1,24,14,1.1,1.1,0.1,-4.3,0.059000000000000004,0.14800000000000002,0.195,0.27699999999999997,0.026000000000000002,1998-99 1273,Litterial Green,CLE,29.0,185.42,83.91452,Georgia,USA,1992,2,39,1,0.0,0.0,0.0,-42.0,0.0,0.0,0.33299999999999996,0.0,0.0,1998-99 1274,Lindsey Hunter,DET,28.0,187.96,88.45044,Jackson State,USA,1993,1,10,49,11.9,3.4,3.9,5.0,0.018000000000000002,0.1,0.179,0.517,0.191,1998-99 1275,Lee Mayberry,VAN,29.0,185.42,78.017824,Arkansas,USA,1992,1,23,9,2.2,0.3,2.6,-10.1,0.0,0.027000000000000003,0.115,0.47200000000000003,0.28,1998-99 1276,Lawrence Funderburke,SAC,28.0,205.74,104.32616,Ohio State,USA,1994,2,51,47,8.9,4.7,0.6,-5.8,0.11900000000000001,0.147,0.18899999999999997,0.597,0.057,1998-99 1277,Marcus Camby,NYK,25.0,210.82,102.0582,Massachusetts,USA,1996,1,2,46,7.2,5.5,0.3,0.6,0.136,0.19,0.18100000000000002,0.537,0.025,1998-99 1278,Latrell Sprewell,NYK,28.0,195.58,86.18248,Alabama,USA,1992,1,24,37,16.4,4.2,2.5,-1.5,0.04,0.11,0.263,0.503,0.14800000000000002,1998-99 1279,Lamond Murray,LAC,26.0,200.66,107.047712,California,USA,1994,1,7,50,12.2,3.9,1.2,-13.3,0.049,0.13,0.254,0.473,0.08900000000000001,1998-99 1280,LaPhonso Ellis,ATL,29.0,203.2,108.86208,Notre Dame,USA,1992,1,5,20,10.2,5.5,0.9,1.2,0.053,0.18,0.21600000000000003,0.47,0.065,1998-99 1281,Kurt Thomas,NYK,26.0,205.74,104.32616,Texas Christian,USA,1995,1,10,50,8.1,5.7,1.1,-0.6,0.087,0.19899999999999998,0.2,0.489,0.091,1998-99 1282,Kornel David,CHI,27.0,205.74,106.59411999999999,None,USA,Undrafted,Undrafted,Undrafted,50,6.2,3.5,0.8,-15.2,0.08800000000000001,0.142,0.175,0.528,0.087,1998-99 1283,Korleone Young,DET,20.0,200.66,96.615096,None,USA,1998,2,40,3,4.3,1.3,0.3,26.9,0.14300000000000002,0.154,0.341,0.597,0.125,1998-99 1284,Kobe Bryant,LAL,20.0,200.66,97.52228000000001,None,USA,1996,1,13,50,19.9,5.3,3.8,2.8,0.033,0.128,0.254,0.5489999999999999,0.17600000000000002,1998-99 1285,Kevin Garnett,MIN,23.0,210.82,99.79024,None,USA,1995,1,5,47,20.8,10.4,4.3,2.3,0.09699999999999999,0.21899999999999997,0.278,0.493,0.20600000000000002,1998-99 1286,Khalid Reeves,DET,26.0,190.5,90.264808,Arizona,USA,1994,1,12,11,2.3,0.6,1.0,0.3,0.027000000000000003,0.047,0.13699999999999998,0.46,0.18,1998-99 1287,Kevin Willis,TOR,36.0,213.36,111.13004,Michigan State,USA,1984,1,11,42,12.0,8.3,1.6,-3.6,0.102,0.231,0.228,0.489,0.107,1998-99 1288,Kevin Ollie,ORL,26.0,193.04,88.45044,Connecticut,USA,Undrafted,Undrafted,Undrafted,8,1.6,0.9,0.4,-8.6,0.0,0.111,0.12,0.381,0.065,1998-99 1289,Johnny Taylor,DEN,25.0,205.74,99.79024,Tennessee-Chattanooga,USA,1997,1,17,36,5.8,2.8,0.7,-4.0,0.046,0.11699999999999999,0.154,0.49700000000000005,0.055,1998-99 1290,Larry Hughes,PHI,20.0,195.58,83.91452,Saint Louis,USA,1998,1,8,50,9.1,3.8,1.5,1.1,0.09300000000000001,0.126,0.24600000000000002,0.474,0.15,1998-99 1291,Mario Bennett,CHI,25.0,198.12,106.59411999999999,Arizona State,USA,1995,1,27,3,2.3,1.7,0.0,-33.1,0.083,0.2,0.192,0.451,0.0,1998-99 1292,Larry Johnson,NYK,30.0,200.66,106.59411999999999,Nevada-Las Vegas,USA,1991,1,1,49,12.0,5.8,2.4,4.0,0.07,0.131,0.182,0.5539999999999999,0.135,1998-99 1293,Mark Baker,TOR,29.0,185.42,79.3786,Ohio State,USA,Undrafted,Undrafted,Undrafted,1,0.0,0.0,0.0,-64.2,0.0,0.0,0.4,0.0,0.0,1998-99 1294,Jud Buechler,DET,31.0,198.12,103.418976,Arizona,USA,1990,2,38,50,5.5,2.7,1.1,1.9,0.032,0.122,0.11900000000000001,0.5529999999999999,0.09699999999999999,1998-99 1295,Mario Elie,SAS,35.0,195.58,95.25432,American International,USA,1985,7,160,47,9.7,2.9,1.9,10.1,0.034,0.08199999999999999,0.161,0.593,0.11199999999999999,1998-99 1296,Juwan Howard,WAS,26.0,205.74,113.398,Michigan,USA,1994,1,5,36,19.0,8.2,3.0,-2.5,0.07400000000000001,0.17,0.248,0.511,0.14400000000000002,1998-99 1297,Karl Malone,UTA,35.0,205.74,116.119552,Louisiana Tech,USA,1985,1,13,49,23.8,9.4,4.1,9.9,0.079,0.218,0.305,0.5770000000000001,0.22,1998-99 1298,Keith Askins,MIA,31.0,203.2,97.52228000000001,Alabama,USA,Undrafted,Undrafted,Undrafted,33,1.6,1.3,0.3,9.6,0.028999999999999998,0.09,0.092,0.40399999999999997,0.038,1998-99 1299,Keith Booth,CHI,24.0,198.12,102.511792,Maryland,USA,1997,1,28,39,3.1,2.4,1.0,-18.3,0.067,0.19399999999999998,0.22699999999999998,0.354,0.172,1998-99 1300,Keith Closs,LAC,23.0,220.98,96.16150400000001,Central Connecticut State,USA,Undrafted,Undrafted,Undrafted,15,2.1,1.7,0.0,-9.8,0.067,0.29,0.17,0.584,0.0,1998-99 1301,Keith Van Horn,NJN,23.0,208.28,113.398,Utah,USA,1997,1,2,42,21.8,8.5,1.5,-4.1,0.076,0.18,0.28300000000000003,0.519,0.08199999999999999,1998-99 1302,Kelvin Cato,POR,24.0,210.82,115.66596000000001,Iowa State,USA,1997,1,15,43,3.5,3.5,0.4,8.6,0.10400000000000001,0.195,0.154,0.47600000000000003,0.059000000000000004,1998-99 1303,Kendall Gill,NJN,31.0,195.58,97.975872,Illinois,USA,1990,1,5,50,11.7,4.9,2.4,-5.3,0.039,0.132,0.2,0.441,0.135,1998-99 1304,Kenny Anderson,BOS,28.0,185.42,76.203456,Georgia Tech,USA,1991,1,2,34,12.1,3.0,5.7,-6.4,0.025,0.092,0.205,0.513,0.316,1998-99 1305,Keon Clark,DEN,24.0,210.82,99.79024,Nevada-Las Vegas,USA,1998,1,13,28,3.3,3.4,0.4,-3.0,0.106,0.18100000000000002,0.133,0.483,0.044000000000000004,1998-99 1306,Kelly McCarty,DEN,23.0,200.66,90.7184,Southern Mississippi,USA,Undrafted,Undrafted,Undrafted,2,2.0,1.5,0.0,6.4,0.33299999999999996,0.071,0.38799999999999996,0.667,0.0,1998-99 1307,Mark Pope,IND,26.0,208.28,106.59411999999999,Kentucky,USA,1996,2,52,4,0.5,1.0,0.0,-6.3,0.071,0.105,0.14300000000000002,0.134,0.0,1998-99 1308,Mark Bryant,CHI,34.0,205.74,111.13004,Seton Hall,USA,1988,1,21,45,9.0,5.2,1.1,-12.8,0.08800000000000001,0.14800000000000002,0.184,0.513,0.085,1998-99 1309,Marty Conlon,MIA,31.0,208.28,101.604608,Providence,USA,Undrafted,Undrafted,Undrafted,7,1.1,0.7,0.1,-10.7,0.033,0.125,0.204,0.28800000000000003,0.045,1998-99 1310,Marlon Garnett,BOS,23.0,187.96,84.368112,Santa Clara,USA,Undrafted,Undrafted,Undrafted,24,2.1,0.9,0.8,-9.5,0.013999999999999999,0.08800000000000001,0.15,0.426,0.171,1998-99 1311,Marko Milic,PHX,22.0,198.12,106.59411999999999,None,Slovenia,1997,2,33,11,1.5,0.5,0.2,-19.5,0.061,0.044000000000000004,0.21899999999999997,0.4,0.07400000000000001,1998-99 1312,Mark Davis,MIA,26.0,200.66,95.25432,Texas Tech,USA,1995,2,48,4,2.3,1.8,0.3,-4.4,0.065,0.125,0.205,0.521,0.059000000000000004,1998-99 1313,Mark West,ATL,38.0,208.28,111.58363200000001,Old Dominion,USA,1983,2,30,49,1.2,2.6,0.3,-6.3,0.106,0.17600000000000002,0.09,0.381,0.046,1998-99 1314,Mark Strickland,MIA,28.0,208.28,99.79024,Temple,USA,Undrafted,Undrafted,Undrafted,32,3.7,2.4,0.3,0.7,0.08900000000000001,0.16699999999999998,0.172,0.529,0.048,1998-99 1315,Mark Macon,DET,30.0,193.04,83.91452,Temple,USA,1991,1,8,7,1.3,0.7,0.6,6.4,0.048,0.036000000000000004,0.165,0.225,0.078,1998-99 1316,Mark Jackson,IND,34.0,190.5,83.91452,St. John's (NY),USA,1987,1,18,49,7.6,3.8,7.9,6.8,0.028999999999999998,0.121,0.159,0.513,0.423,1998-99 1317,Mark Hendrickson,NJN,25.0,205.74,99.79024,Washington State,USA,1996,2,31,22,5.5,3.1,0.6,-3.7,0.077,0.128,0.14300000000000002,0.545,0.053,1998-99 1318,Kerry Kittles,NJN,25.0,195.58,81.19296800000001,Villanova,USA,1996,1,8,46,12.9,4.2,2.5,-8.7,0.034,0.10400000000000001,0.203,0.446,0.13,1998-99 1319,Michael Stewart,TOR,25.0,208.28,104.32616,California,USA,Undrafted,Undrafted,Undrafted,42,1.4,2.2,0.1,-7.5,0.086,0.2,0.094,0.43200000000000005,0.024,1999-00 1320,Michael Curry,DET,31.0,195.58,102.965384,Georgia Southern,USA,Undrafted,Undrafted,Undrafted,82,6.2,1.3,1.1,-0.7,0.016,0.06,0.146,0.56,0.091,1999-00 1321,Mike Bibby,VAN,22.0,187.96,86.18248,Arizona,USA,1998,1,2,82,14.5,3.7,8.1,-6.4,0.027999999999999997,0.08900000000000001,0.2,0.521,0.35,1999-00 1322,Mikki Moore,DET,24.0,213.36,102.0582,Nebraska,USA,Undrafted,Undrafted,Undrafted,29,7.9,3.9,0.6,14.4,0.122,0.152,0.18100000000000002,0.6709999999999999,0.057,1999-00 1323,Michael Smith,WAS,28.0,203.2,108.86208,Providence,USA,1994,2,35,46,6.3,7.2,1.2,-6.0,0.11900000000000001,0.20800000000000002,0.10800000000000001,0.611,0.07400000000000001,1999-00 1324,Michael Ruffin,CHI,23.0,205.74,111.58363200000001,Tulsa,USA,1999,2,32,71,2.2,3.5,0.6,-8.1,0.142,0.168,0.111,0.45,0.08199999999999999,1999-00 1325,Michael Dickerson,VAN,25.0,195.58,86.18248,Arizona,USA,1998,1,14,82,18.2,3.4,2.5,-6.1,0.03,0.077,0.23,0.53,0.121,1999-00 1326,Michael Hawkins,CHH,27.0,182.88,80.73937600000001,Xavier,USA,Undrafted,Undrafted,Undrafted,12,0.7,0.6,1.1,9.6,0.0,0.159,0.16899999999999998,0.28800000000000003,0.39399999999999996,1999-00 1327,Michael Finley,DAL,27.0,200.66,97.52228000000001,Wisconsin,USA,1995,1,21,82,22.6,6.3,5.3,0.0,0.038,0.121,0.252,0.522,0.213,1999-00 1328,Michael Doleac,ORL,23.0,210.82,118.841104,Utah,USA,1998,1,12,81,7.0,4.1,0.8,1.2,0.071,0.19899999999999998,0.201,0.49,0.075,1999-00 1329,Milt Palacio,VAN,22.0,190.5,88.45044,Colorado State,Belize,Undrafted,Undrafted,Undrafted,53,2.0,1.0,0.9,-4.4,0.05,0.10800000000000001,0.185,0.473,0.239,1999-00 1330,Michael Cage,NJN,38.0,205.74,101.604608,San Diego State,USA,1984,1,14,20,1.4,4.1,0.5,-4.2,0.14,0.23399999999999999,0.054000000000000006,0.5329999999999999,0.059000000000000004,1999-00 1331,Michael Olowokandi,LAC,25.0,213.36,122.016248,Pacific,Nigeria,1998,1,1,80,9.8,8.2,0.5,-14.1,0.083,0.214,0.183,0.467,0.026000000000000002,1999-00 1332,Mirsad Turkcan,MIL,24.0,205.74,97.975872,None,USA,1998,1,18,17,1.9,1.9,0.3,-23.8,0.14,0.299,0.23800000000000002,0.397,0.11900000000000001,1999-00 1333,Othella Harrington,VAN,26.0,205.74,106.59411999999999,Georgetown,USA,1996,2,30,82,13.1,6.9,1.2,-7.5,0.087,0.162,0.201,0.56,0.063,1999-00 1334,Monty Williams,ORL,28.0,203.2,102.0582,Notre Dame,USA,1994,1,24,75,8.7,3.3,1.4,-3.9,0.071,0.115,0.19899999999999998,0.5329999999999999,0.111,1999-00 1335,Moochie Norris,HOU,26.0,185.42,79.3786,West Florida,USA,1996,2,33,30,6.9,2.3,3.1,7.4,0.038,0.111,0.195,0.542,0.29600000000000004,1999-00 1336,Mookie Blaylock,GSW,33.0,185.42,83.91452,Oklahoma,USA,1989,1,12,73,11.3,3.7,6.7,-9.9,0.022000000000000002,0.09699999999999999,0.175,0.46799999999999997,0.317,1999-00 1337,Muggsy Bogues,TOR,35.0,160.02,63.956472,Wake Forest,USA,1987,1,12,80,5.1,1.7,3.7,0.4,0.016,0.076,0.11699999999999999,0.517,0.266,1999-00 1338,Nazr Mohammed,PHI,22.0,208.28,100.243832,Kentucky,USA,1998,1,29,28,1.9,1.8,0.1,-7.6,0.083,0.187,0.183,0.424,0.018000000000000002,1999-00 1339,Nick Anderson,SAC,32.0,198.12,103.418976,Illinois,USA,1989,1,11,72,10.8,4.7,1.7,-0.1,0.04,0.124,0.17600000000000002,0.479,0.08199999999999999,1999-00 1340,Nick Van Exel,DEN,28.0,185.42,86.18248,Cincinnati,USA,1993,2,37,79,16.1,3.9,9.0,-0.9,0.012,0.10300000000000001,0.22699999999999998,0.483,0.38,1999-00 1341,Obinna Ekezie,VAN,24.0,205.74,122.46983999999999,Maryland,Nigeria,1999,2,37,39,3.2,2.4,0.2,-2.6,0.125,0.214,0.18899999999999997,0.5379999999999999,0.039,1999-00 1342,Olden Polynice,UTA,35.0,213.36,113.398,Virginia,USA,1987,1,8,82,5.3,5.5,0.5,4.3,0.11199999999999999,0.19399999999999998,0.129,0.49700000000000005,0.03,1999-00 1343,Oliver Miller,PHX,30.0,205.74,142.88148,Arkansas,USA,1992,1,22,51,6.3,5.1,1.3,6.0,0.09300000000000001,0.16699999999999998,0.13699999999999998,0.609,0.095,1999-00 1344,Otis Thorpe,MIA,37.0,208.28,111.58363200000001,Providence,USA,1984,1,9,51,5.5,3.3,0.6,-3.3,0.091,0.17300000000000001,0.198,0.528,0.077,1999-00 1345,P.J. Brown,MIA,30.0,210.82,108.86208,Louisiana Tech,USA,1992,2,29,80,9.6,7.5,1.8,9.3,0.115,0.18100000000000002,0.17,0.516,0.098,1999-00 1346,Metta World Peace,CHI,20.0,198.12,110.676448,St. John's (NY),USA,1999,1,16,72,12.0,4.3,2.7,-8.6,0.031,0.129,0.215,0.491,0.171,1999-00 1347,Jerome Williams,DET,27.0,205.74,93.439952,Georgetown,USA,1996,1,26,82,8.4,9.6,0.8,4.0,0.153,0.278,0.142,0.593,0.053,1999-00 1348,Mitch Richmond,WAS,35.0,195.58,99.79024,Kansas State,USA,1988,1,5,74,17.4,2.9,2.5,-2.4,0.018000000000000002,0.085,0.251,0.536,0.136,1999-00 1349,Maurice Taylor,LAC,23.0,205.74,117.93392,Michigan,USA,1997,1,14,62,17.1,6.5,1.6,-13.4,0.047,0.156,0.25,0.49200000000000005,0.085,1999-00 1350,Mark Jackson,IND,35.0,190.5,83.91452,St. John's (NY),USA,1987,1,18,81,8.1,3.7,8.0,3.0,0.033,0.11199999999999999,0.161,0.5379999999999999,0.429,1999-00 1351,Matt Harpring,ORL,24.0,200.66,104.779752,Georgia Tech,USA,1998,1,15,4,4.0,3.0,2.0,0.3,0.081,0.11699999999999999,0.131,0.39799999999999996,0.17800000000000002,1999-00 1352,Jud Buechler,DET,32.0,198.12,103.418976,Arizona,USA,1990,2,38,58,2.2,1.6,0.6,2.6,0.05,0.107,0.115,0.409,0.077,1999-00 1353,Jumaine Jones,PHI,21.0,203.2,98.88305600000001,Georgia,USA,1999,1,27,33,1.7,1.2,0.2,1.2,0.109,0.152,0.24600000000000002,0.43200000000000005,0.07400000000000001,1999-00 1354,Juwan Howard,WAS,27.0,205.74,113.398,Michigan,USA,1994,1,5,82,14.9,5.7,3.0,-4.3,0.052000000000000005,0.13699999999999998,0.222,0.496,0.14300000000000002,1999-00 1355,Karl Malone,UTA,36.0,205.74,116.119552,Louisiana Tech,USA,1985,1,13,82,25.5,9.5,3.7,7.8,0.07400000000000001,0.251,0.318,0.5820000000000001,0.19699999999999998,1999-00 1356,Keith Closs,LAC,24.0,220.98,96.16150400000001,Central Connecticut State,USA,Undrafted,Undrafted,Undrafted,57,4.2,3.1,0.4,-11.4,0.087,0.156,0.141,0.514,0.048,1999-00 1357,Keith Van Horn,NJN,24.0,208.28,113.398,Utah,USA,1997,1,2,80,19.2,8.5,2.0,-4.5,0.076,0.198,0.265,0.537,0.102,1999-00 1358,Jonathan Bender,IND,19.0,210.82,91.625584,None,USA,1999,1,5,24,2.7,0.9,0.1,-0.3,0.033,0.126,0.27699999999999997,0.397,0.036000000000000004,1999-00 1359,Kelvin Cato,HOU,25.0,210.82,115.66596000000001,Iowa State,USA,1997,1,15,65,8.7,6.0,0.4,0.2,0.078,0.191,0.16,0.574,0.027000000000000003,1999-00 1360,Kenny Anderson,BOS,29.0,185.42,76.203456,Georgia Tech,USA,1991,1,2,82,14.0,2.7,5.1,1.4,0.023,0.079,0.204,0.524,0.253,1999-00 1361,Kenny Thomas,HOU,22.0,203.2,117.93392,New Mexico,USA,1999,1,22,72,8.3,6.1,1.6,0.9,0.094,0.17800000000000002,0.18,0.47700000000000004,0.099,1999-00 1362,Keon Clark,DEN,25.0,210.82,99.79024,Nevada-Las Vegas,USA,1998,1,13,81,8.6,6.2,0.9,-0.8,0.095,0.19899999999999998,0.172,0.573,0.063,1999-00 1363,Kerry Kittles,NJN,26.0,195.58,81.64656,Villanova,USA,1996,1,8,62,13.0,3.6,2.3,1.0,0.027000000000000003,0.107,0.19,0.535,0.122,1999-00 1364,Kevin Garnett,MIN,24.0,210.82,99.79024,None,USA,1995,1,5,81,22.9,11.8,5.0,5.7,0.08,0.267,0.276,0.545,0.21100000000000002,1999-00 1365,Kevin Johnson,PHX,34.0,185.42,86.18248,California,USA,1987,1,7,6,6.7,2.7,4.0,21.3,0.0,0.131,0.16,0.644,0.324,1999-00 1366,Kendall Gill,NJN,32.0,195.58,97.975872,Illinois,USA,1990,1,5,76,13.1,3.7,2.8,-1.5,0.036000000000000004,0.09699999999999999,0.21600000000000003,0.465,0.145,1999-00 1367,Kevin Ollie,PHI,27.0,193.04,88.45044,Connecticut,USA,Undrafted,Undrafted,Undrafted,40,1.8,0.8,1.2,0.9,0.015,0.10400000000000001,0.121,0.551,0.256,1999-00 1368,Jon Barry,SAC,30.0,195.58,95.25432,Georgia Tech,USA,1992,1,21,62,8.0,2.6,2.4,6.9,0.032,0.1,0.163,0.623,0.177,1999-00 1369,Johnny Newman,NJN,36.0,200.66,95.25432,Richmond,USA,1986,2,29,82,10.0,1.9,0.8,0.2,0.025,0.078,0.212,0.5660000000000001,0.067,1999-00 1370,Jerry Stackhouse,DET,25.0,198.12,98.88305600000001,North Carolina,USA,1995,1,3,82,23.6,3.8,4.5,0.0,0.043,0.07200000000000001,0.289,0.545,0.2,1999-00 1371,Jim Jackson,ATL,29.0,198.12,99.79024,Ohio State,USA,1992,1,4,79,16.7,5.0,2.9,-5.5,0.04,0.11599999999999999,0.243,0.496,0.142,1999-00 1372,Jim McIlvaine,NJN,27.0,215.9,119.74828799999999,Marquette,USA,1994,2,32,66,2.4,3.5,0.5,-0.5,0.109,0.131,0.092,0.439,0.048,1999-00 1373,Joe Kleine,POR,38.0,210.82,115.66596000000001,Arkansas,USA,1985,1,6,7,1.6,0.9,0.3,23.7,0.0,0.16699999999999998,0.214,0.446,0.1,1999-00 1374,Joe Smith,MIN,24.0,208.28,102.0582,Maryland,USA,1995,1,1,78,9.9,6.2,1.1,3.0,0.109,0.183,0.19399999999999998,0.525,0.07,1999-00 1375,Joe Stephens,VAN,27.0,200.66,95.25432,Arkansas-Little Rock,USA,Undrafted,Undrafted,Undrafted,13,3.2,2.8,0.8,7.1,0.087,0.146,0.14300000000000002,0.389,0.087,1999-00 1376,Johnny Taylor,ORL,26.0,205.74,99.79024,Tennessee-Chattanooga,USA,1997,1,17,6,1.8,1.0,0.2,16.5,0.059000000000000004,0.1,0.187,0.39299999999999996,0.042,1999-00 1377,John Amaechi,ORL,29.0,208.28,122.46983999999999,Penn State,England,Undrafted,Undrafted,Undrafted,80,10.5,3.3,1.2,0.8,0.040999999999999995,0.132,0.247,0.505,0.092,1999-00 1378,John Crotty,DET,30.0,187.96,87.996848,Virginia,USA,Undrafted,Undrafted,Undrafted,69,4.7,1.1,1.9,4.6,0.021,0.07,0.16399999999999998,0.557,0.21899999999999997,1999-00 1379,John Salley,LAL,36.0,210.82,115.66596000000001,Georgia Tech,USA,1986,1,11,45,1.6,1.4,0.6,0.7,0.068,0.156,0.14800000000000002,0.43700000000000006,0.146,1999-00 1380,John Starks,CHI,34.0,190.5,81.64656,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,37,13.9,2.7,4.9,-3.7,0.009000000000000001,0.083,0.22699999999999998,0.45299999999999996,0.242,1999-00 1381,John Stockton,UTA,38.0,185.42,79.3786,Gonzaga,USA,1984,1,16,82,12.1,2.6,8.6,10.0,0.024,0.084,0.192,0.591,0.456,1999-00 1382,John Thomas,TOR,24.0,205.74,120.20188,Minnesota,USA,1997,1,25,55,2.1,1.4,0.2,-4.4,0.079,0.09699999999999999,0.126,0.456,0.028999999999999998,1999-00 1383,John Wallace,NYK,26.0,205.74,102.0582,Syracuse,USA,1996,1,18,60,6.5,2.3,0.4,-6.0,0.064,0.13699999999999998,0.26,0.52,0.055,1999-00 1384,John Celestand,LAL,23.0,193.04,80.73937600000001,Villanova,USA,1999,2,30,16,2.3,0.7,1.3,-3.1,0.006,0.055999999999999994,0.14800000000000002,0.38799999999999996,0.165,1999-00 1385,Matt Maloney,CHI,28.0,190.5,90.7184,Pennsylvania,USA,Undrafted,Undrafted,Undrafted,51,6.4,1.3,2.7,-4.4,0.01,0.052000000000000005,0.157,0.484,0.218,1999-00 1386,Kevin Willis,TOR,37.0,213.36,111.13004,Michigan State,USA,1984,1,11,79,7.6,6.1,0.6,-2.1,0.129,0.19699999999999998,0.19699999999999998,0.47100000000000003,0.05,1999-00 1387,Kiwane Garris,ORL,25.0,187.96,83.007336,Illinois,USA,Undrafted,Undrafted,Undrafted,3,1.3,0.3,0.7,14.0,0.0,0.059000000000000004,0.203,0.2,0.1,1999-00 1388,Malik Rose,SAS,25.0,200.66,115.66596000000001,Drexel,USA,1996,2,44,74,6.7,4.5,0.6,4.1,0.115,0.162,0.19399999999999998,0.525,0.061,1999-00 1389,Malik Sealy,MIN,30.0,203.2,90.7184,St. John's (NY),USA,1992,1,14,82,11.3,4.3,2.4,8.3,0.059000000000000004,0.115,0.18600000000000003,0.53,0.12,1999-00 1390,Marcus Brown,DET,26.0,190.5,83.91452,Murray State,USA,1996,2,46,6,1.7,1.2,0.5,-36.1,0.061,0.11800000000000001,0.17300000000000001,0.336,0.15,1999-00 1391,Marcus Camby,NYK,26.0,210.82,102.0582,Massachusetts,USA,1996,1,2,59,10.2,7.8,0.8,4.8,0.136,0.209,0.193,0.529,0.053,1999-00 1392,Mario Bennett,LAC,26.0,198.12,106.59411999999999,Arizona State,USA,1995,1,27,1,0.0,2.0,0.0,32.7,0.14300000000000002,0.25,0.276,0.0,0.0,1999-00 1393,Mario Elie,SAS,36.0,195.58,102.0582,American International,USA,1985,7,160,79,7.5,3.2,2.4,6.6,0.026000000000000002,0.098,0.136,0.565,0.13,1999-00 1394,Lucious Harris,NJN,29.0,195.58,92.98635999999999,Long Beach State,USA,1993,2,28,77,6.7,2.4,1.3,-0.3,0.038,0.10300000000000001,0.16399999999999998,0.506,0.11,1999-00 1395,Mark Bryant,CLE,35.0,205.74,111.13004,Seton Hall,USA,1988,1,21,75,5.7,4.7,0.8,-3.1,0.083,0.152,0.124,0.547,0.057,1999-00 1396,Mark Hendrickson,NJN,26.0,205.74,99.79024,Washington State,USA,1996,2,31,15,0.9,0.9,0.4,-18.7,0.049,0.16699999999999998,0.083,0.6659999999999999,0.182,1999-00 1397,Mark Strickland,MIA,29.0,208.28,99.79024,Temple,USA,Undrafted,Undrafted,Undrafted,58,4.9,2.4,0.4,-5.2,0.076,0.153,0.187,0.5710000000000001,0.06,1999-00 1398,Mark West,PHX,39.0,208.28,104.32616,Old Dominion,USA,1983,2,30,22,0.7,1.4,0.1,-4.1,0.048,0.217,0.075,0.483,0.023,1999-00 1399,Marty Conlon,LAC,32.0,208.28,101.604608,Providence,USA,Undrafted,Undrafted,Undrafted,3,0.7,0.7,0.0,-29.7,0.083,0.083,0.087,0.5,0.0,1999-00 1400,Matt Bullard,HOU,33.0,208.28,106.59411999999999,Iowa,USA,Undrafted,Undrafted,Undrafted,56,6.8,2.5,1.1,-2.5,0.013999999999999999,0.135,0.165,0.541,0.09699999999999999,1999-00 1401,Matt Geiger,PHI,30.0,215.9,112.490816,Georgia Tech,USA,1992,2,42,65,9.7,6.0,0.6,-2.0,0.12,0.192,0.233,0.483,0.048,1999-00 1402,Mark Davis,GSW,27.0,200.66,92.98635999999999,Texas Tech,USA,1995,2,48,23,6.2,3.7,1.7,-4.8,0.066,0.131,0.177,0.45299999999999996,0.129,1999-00 1403,Khalid Reeves,CHI,27.0,190.5,90.264808,Arizona,USA,1994,1,12,3,3.7,1.3,4.3,14.9,0.053,0.057,0.188,0.387,0.419,1999-00 1404,Luc Longley,PHX,31.0,218.44,117.93392,New Mexico,USA,1991,1,7,72,6.3,4.5,1.1,0.5,0.078,0.171,0.182,0.512,0.086,1999-00 1405,Lorenzo Williams,WAS,30.0,205.74,90.7184,Stetson,USA,Undrafted,Undrafted,Undrafted,8,1.8,3.1,0.1,-10.4,0.17600000000000002,0.16699999999999998,0.067,0.778,0.019,1999-00 1406,Kornel David,CLE,28.0,205.74,106.59411999999999,None,USA,Undrafted,Undrafted,Undrafted,32,5.6,2.5,0.5,-15.3,0.06,0.149,0.19899999999999998,0.493,0.065,1999-00 1407,Kurt Thomas,NYK,27.0,205.74,104.32616,Texas Christian,USA,1995,1,10,80,8.0,6.3,1.0,2.9,0.09300000000000001,0.209,0.17,0.542,0.07,1999-00 1408,LaPhonso Ellis,ATL,30.0,203.2,108.86208,Notre Dame,USA,1992,1,5,58,8.4,5.0,1.0,-6.4,0.083,0.162,0.193,0.48100000000000004,0.08,1999-00 1409,Lamar Odom,LAC,20.0,208.28,99.79024,Rhode Island,USA,1999,1,4,76,16.6,7.8,4.2,-8.2,0.063,0.18,0.23399999999999999,0.521,0.19899999999999998,1999-00 1410,Lamond Murray,CLE,27.0,200.66,107.047712,California,USA,1994,1,7,74,15.9,5.7,1.8,-3.7,0.057999999999999996,0.139,0.242,0.517,0.10099999999999999,1999-00 1411,Lari Ketner,CLE,23.0,208.28,129.27372,Massachusetts,USA,1999,2,49,22,1.5,1.5,0.0,-27.2,0.08900000000000001,0.20800000000000002,0.152,0.456,0.015,1999-00 1412,Loy Vaught,DET,32.0,205.74,108.86208,Michigan,USA,1990,1,13,43,1.7,2.1,0.3,-1.5,0.096,0.257,0.157,0.39,0.064,1999-00 1413,Laron Profit,WAS,22.0,195.58,92.532768,Maryland,USA,1999,2,38,33,1.5,0.8,0.8,-1.5,0.01,0.111,0.159,0.386,0.185,1999-00 1414,Larry Johnson,NYK,31.0,200.66,106.59411999999999,Nevada-Las Vegas,USA,1991,1,1,70,10.7,5.4,2.5,2.0,0.046,0.151,0.17300000000000001,0.517,0.127,1999-00 1415,Latrell Sprewell,NYK,29.0,195.58,86.18248,Alabama,USA,1992,1,24,82,18.6,4.3,4.0,2.9,0.018000000000000002,0.10400000000000001,0.24600000000000002,0.515,0.18,1999-00 1416,Lawrence Funderburke,SAC,29.0,205.74,104.32616,Ohio State,USA,1994,2,51,75,6.4,3.1,0.4,3.5,0.1,0.14400000000000002,0.192,0.569,0.053,1999-00 1417,Lazaro Borrell,SEA,27.0,203.2,99.79024,None,USA,Undrafted,Undrafted,Undrafted,17,3.6,2.4,0.6,9.7,0.08900000000000001,0.188,0.191,0.457,0.079,1999-00 1418,Lindsey Hunter,DET,29.0,187.96,88.45044,Jackson State,USA,1993,1,10,82,12.7,3.0,4.0,1.9,0.013999999999999999,0.085,0.165,0.5429999999999999,0.171,1999-00 1419,Lorenzen Wright,ATL,24.0,210.82,108.86208,Memphis,USA,1996,1,7,75,6.0,4.1,0.3,-9.0,0.10300000000000001,0.17300000000000001,0.175,0.5329999999999999,0.028999999999999998,1999-00 1420,Larry Hughes,GSW,21.0,195.58,83.91452,Saint Louis,USA,1998,1,8,82,15.0,4.3,2.5,-8.6,0.049,0.11599999999999999,0.27399999999999997,0.467,0.162,1999-00 1421,Kobe Bryant,LAL,21.0,200.66,95.25432,None,USA,1996,1,13,66,22.5,6.3,4.9,10.4,0.046,0.128,0.266,0.546,0.215,1999-00 1422,Jermaine Jackson,DET,24.0,195.58,92.532768,Detroit Mercy,USA,Undrafted,Undrafted,Undrafted,7,1.0,1.6,0.6,3.6,0.019,0.154,0.132,0.24100000000000002,0.083,1999-00 1423,Patrick Ewing,NYK,37.0,213.36,115.66596000000001,Georgetown,Jamaica,1985,1,1,62,15.0,9.7,0.9,2.9,0.085,0.265,0.243,0.516,0.051,1999-00 1424,Tony Battie,BOS,24.0,210.82,108.86208,Texas Tech,USA,1997,1,5,82,6.6,5.0,0.8,-0.3,0.11199999999999999,0.20800000000000002,0.171,0.515,0.069,1999-00 1425,Toni Kukoc,PHI,31.0,210.82,106.59411999999999,None,Croatia,1990,2,29,56,14.8,4.9,4.7,0.0,0.048,0.131,0.251,0.491,0.268,1999-00 1426,Tom Hammonds,MIN,33.0,205.74,102.0582,Georgia Tech,USA,1989,1,9,56,2.1,1.8,0.2,-14.5,0.095,0.18899999999999997,0.166,0.48100000000000004,0.044000000000000004,1999-00 1427,Tom Gugliotta,PHX,30.0,208.28,108.86208,North Carolina State,USA,1992,1,6,54,13.7,7.9,2.3,7.3,0.092,0.18,0.205,0.519,0.113,1999-00 1428,Todd Fuller,CHH,25.0,210.82,115.66596000000001,North Carolina State,USA,1996,1,11,41,3.3,2.7,0.1,-1.9,0.1,0.187,0.184,0.461,0.019,1999-00 1429,Todd Day,PHX,30.0,198.12,85.275296,Arkansas,USA,1992,1,8,58,6.8,2.2,1.1,9.5,0.038,0.115,0.19699999999999998,0.524,0.105,1999-00 1430,Toby Bailey,PHX,24.0,198.12,96.615096,UCLA,USA,1998,2,45,46,3.5,1.6,0.7,3.5,0.063,0.11199999999999999,0.18,0.483,0.099,1999-00 1431,Tim Young,GSW,24.0,218.44,122.46983999999999,Stanford,USA,1999,2,56,25,2.2,1.4,0.2,-4.6,0.086,0.19,0.18100000000000002,0.49200000000000005,0.057,1999-00 1432,Tim Thomas,MIL,23.0,208.28,104.32616,Villanova,USA,1997,1,7,80,11.8,4.2,1.4,-3.8,0.055999999999999994,0.129,0.21100000000000002,0.5489999999999999,0.092,1999-00 1433,Tim Legler,GSW,33.0,193.04,90.7184,La Salle,USA,Undrafted,Undrafted,Undrafted,23,3.3,1.0,1.0,-16.6,0.013000000000000001,0.077,0.13699999999999998,0.44799999999999995,0.134,1999-00 1434,Tim James,MIA,23.0,200.66,96.16150400000001,Miami (FL),USA,1999,1,25,4,2.8,1.0,0.5,38.9,0.13,0.042,0.319,0.359,0.14300000000000002,1999-00 1435,Tim Hardaway,MIA,33.0,182.88,88.45044,Texas-El Paso,USA,1989,1,14,52,13.4,2.9,7.4,7.4,0.018000000000000002,0.083,0.22699999999999998,0.5,0.368,1999-00 1436,Tim Duncan,SAS,24.0,213.36,117.93392,Wake Forest,US Virgin Islands,1997,1,1,74,23.2,12.4,3.2,9.5,0.109,0.244,0.28600000000000003,0.555,0.152,1999-00 1437,Thomas Hamilton,HOU,25.0,218.44,149.68536,Pittsburgh,USA,Undrafted,Undrafted,Undrafted,22,3.7,4.1,0.7,-8.0,0.129,0.27399999999999997,0.187,0.46,0.087,1999-00 1438,Theo Ratliff,PHI,27.0,208.28,102.0582,Wyoming,USA,1995,1,18,57,11.9,7.6,0.6,3.3,0.08800000000000001,0.179,0.175,0.568,0.032,1999-00 1439,Terry Porter,SAS,37.0,190.5,92.98635999999999,Wisconsin-Stevens Point,USA,1985,1,24,68,9.4,2.8,3.3,13.0,0.018000000000000002,0.111,0.183,0.596,0.22699999999999998,1999-00 1440,Terry Mills,DET,32.0,208.28,113.398,Michigan,USA,1990,1,16,82,6.7,4.8,1.0,-0.1,0.031,0.213,0.132,0.545,0.068,1999-00 1441,Terry Cummings,GSW,39.0,205.74,99.79024,DePaul,USA,1982,1,2,22,8.4,4.9,1.0,-7.6,0.10800000000000001,0.16899999999999998,0.22899999999999998,0.474,0.094,1999-00 1442,Terrell Brandon,MIN,30.0,180.34,78.471416,Oregon,USA,1991,1,11,71,17.1,3.4,8.9,6.9,0.02,0.08800000000000001,0.22899999999999998,0.535,0.375,1999-00 1443,Tariq Abdul-Wahad,DEN,25.0,198.12,101.151016,San Jose State,France,1997,1,11,61,11.4,4.8,1.6,-1.6,0.067,0.126,0.218,0.47700000000000004,0.098,1999-00 1444,Steven Smith,POR,31.0,203.2,97.52228000000001,Michigan State,USA,1991,1,5,82,14.9,3.8,2.5,9.1,0.055999999999999994,0.078,0.2,0.584,0.124,1999-00 1445,Steve Nash,DAL,26.0,190.5,88.45044,Santa Clara,Canada,1996,1,15,56,8.6,2.2,4.9,3.9,0.025,0.062,0.14800000000000002,0.601,0.252,1999-00 1446,Steve Kerr,SAS,34.0,190.5,81.64656,Arizona,USA,1988,2,50,32,2.8,0.6,0.4,0.8,0.012,0.062,0.14400000000000002,0.564,0.078,1999-00 1447,Steve Francis,HOU,23.0,190.5,87.543256,Maryland,USA,1999,1,2,77,18.0,5.3,6.6,-3.7,0.062,0.102,0.249,0.5429999999999999,0.315,1999-00 1448,Stephon Marbury,NJN,23.0,187.96,81.64656,Georgia Tech,USA,1996,1,4,74,22.2,3.2,8.4,0.0,0.022000000000000002,0.071,0.27699999999999997,0.528,0.38,1999-00 1449,Stanley Roberts,PHI,30.0,213.36,131.54168,Louisiana State,USA,1991,1,23,5,2.0,3.0,0.6,-16.3,0.115,0.2,0.16399999999999998,0.289,0.107,1999-00 1450,Stacey Augmon,POR,31.0,203.2,92.98635999999999,Nevada-Las Vegas,USA,1991,1,9,59,3.4,2.0,0.9,-3.6,0.07200000000000001,0.12300000000000001,0.158,0.51,0.131,1999-00 1451,Tony Delk,SAC,26.0,187.96,87.089664,Kentucky,USA,1996,1,16,46,6.4,1.9,1.2,12.0,0.057,0.08800000000000001,0.21,0.485,0.122,1999-00 1452,Sherman Douglas,NJN,33.0,185.42,88.45044,Syracuse,USA,1989,2,28,20,6.0,1.5,1.7,-11.5,0.040999999999999995,0.063,0.18100000000000002,0.586,0.215,1999-00 1453,Tony Farmer,GSW,30.0,205.74,110.676448,Nebraska,USA,Undrafted,Undrafted,Undrafted,74,6.3,4.0,1.0,-4.6,0.1,0.17600000000000002,0.177,0.542,0.094,1999-00 1454,Tracy McGrady,TOR,21.0,203.2,95.25432,None,USA,1997,1,9,79,15.4,6.3,3.3,0.4,0.084,0.146,0.24600000000000002,0.509,0.192,1999-00 1455,Jerome Kersey,SAS,38.0,200.66,111.13004,Longwood,USA,1984,2,46,72,4.5,3.1,1.0,6.4,0.051,0.138,0.149,0.431,0.086,1999-00 1456,Zan Tabak,IND,30.0,213.36,111.13004,None,USA,1991,2,51,18,2.1,1.8,0.2,4.2,0.15,0.138,0.175,0.493,0.057,1999-00 1457,William Avery,MIN,20.0,187.96,81.64656,Duke,USA,1999,1,14,59,2.6,0.7,1.5,-11.2,0.017,0.081,0.22,0.391,0.289,1999-00 1458,Will Perdue,CHI,34.0,213.36,108.86208,Vanderbilt,USA,1988,1,11,67,2.5,3.9,0.9,-12.8,0.102,0.205,0.132,0.392,0.106,1999-00 1459,Wesley Person,CLE,29.0,198.12,88.45044,Auburn,USA,1994,1,23,79,9.2,3.4,1.8,-2.1,0.023,0.124,0.158,0.528,0.114,1999-00 1460,Wayne Turner,BOS,24.0,187.96,86.18248,Kentucky,USA,Undrafted,Undrafted,Undrafted,3,1.3,1.0,1.7,-1.2,0.026000000000000002,0.053,0.124,0.231,0.192,1999-00 1461,Walter McCarty,BOS,26.0,208.28,104.32616,Kentucky,USA,1996,1,19,61,3.8,1.8,1.1,-4.6,0.042,0.10300000000000001,0.161,0.451,0.122,1999-00 1462,Walt Williams,HOU,30.0,203.2,104.32616,Maryland,USA,1992,1,7,76,10.9,4.0,2.1,1.6,0.042,0.141,0.201,0.562,0.138,1999-00 1463,Wally Szczerbiak,MIN,23.0,200.66,110.22285600000001,Miami (OH),USA,1999,1,6,73,11.6,3.7,2.8,5.0,0.048,0.1,0.171,0.5710000000000001,0.136,1999-00 1464,Voshon Lenard,MIA,27.0,193.04,97.52228000000001,Minnesota,USA,1994,2,46,53,11.9,2.9,2.6,4.3,0.03,0.087,0.21899999999999997,0.518,0.16399999999999998,1999-00 1465,Vonteego Cummings,GSW,24.0,190.5,86.18248,Pittsburgh,USA,1999,1,26,75,9.4,2.5,3.3,-7.6,0.032,0.08199999999999999,0.204,0.484,0.23199999999999998,1999-00 1466,Vladimir Stepania,SEA,24.0,213.36,107.047712,None,Georgia,1998,1,27,30,2.5,1.6,0.1,-10.9,0.09699999999999999,0.14400000000000002,0.235,0.395,0.026000000000000002,1999-00 1467,Vlade Divac,SAC,32.0,215.9,117.93392,None,Serbia and Montenegro,1989,1,26,82,12.3,8.0,3.0,2.5,0.075,0.205,0.19,0.552,0.14800000000000002,1999-00 1468,Vitaly Potapenko,BOS,25.0,208.28,127.00576000000001,Wright State,Ukraine,1996,1,12,79,9.2,6.3,1.0,-0.4,0.109,0.207,0.20199999999999999,0.527,0.068,1999-00 1469,Vinny Del Negro,MIL,33.0,193.04,90.7184,North Carolina State,USA,1988,2,29,67,5.2,1.6,2.4,-6.8,0.009000000000000001,0.096,0.146,0.51,0.20600000000000002,1999-00 1470,Vince Carter,TOR,23.0,200.66,97.52228000000001,North Carolina,USA,1998,1,5,82,25.7,5.8,3.9,3.6,0.052000000000000005,0.12,0.299,0.5429999999999999,0.195,1999-00 1471,Vin Baker,SEA,28.0,210.82,113.398,Hartford,USA,1993,1,8,79,16.6,7.7,1.9,0.4,0.087,0.14800000000000002,0.23800000000000002,0.5,0.086,1999-00 1472,Vernon Maxwell,SEA,34.0,193.04,81.64656,Florida,USA,1988,2,47,47,10.9,1.7,1.6,-3.7,0.015,0.073,0.27,0.462,0.134,1999-00 1473,Tyronn Lue,LAL,23.0,182.88,79.3786,Nebraska,USA,1998,1,23,8,6.0,1.5,2.1,-10.3,0.013999999999999999,0.078,0.149,0.564,0.185,1999-00 1474,Tyrone Nesby,LAC,24.0,198.12,102.0582,Nevada-Las Vegas,USA,Undrafted,Undrafted,Undrafted,73,13.3,3.8,1.7,-13.3,0.037000000000000005,0.098,0.212,0.48700000000000004,0.094,1999-00 1475,Tyrone Hill,PHI,32.0,205.74,113.398,Xavier,USA,1990,1,11,68,12.0,9.2,0.8,1.5,0.111,0.213,0.183,0.529,0.039,1999-00 1476,Tyrone Corbin,SAC,37.0,198.12,102.0582,DePaul,USA,1985,2,35,54,4.1,3.1,1.1,0.6,0.042,0.14,0.13,0.415,0.092,1999-00 1477,Troy Hudson,LAC,24.0,185.42,80.73937600000001,Southern Illinois,USA,Undrafted,Undrafted,Undrafted,62,8.8,2.4,3.9,-11.4,0.02,0.085,0.192,0.46799999999999997,0.24100000000000002,1999-00 1478,Travis Knight,LAL,25.0,213.36,106.59411999999999,Connecticut,USA,1996,1,29,63,1.7,2.0,0.4,3.7,0.124,0.22,0.16699999999999998,0.418,0.092,1999-00 1479,Travis Best,IND,27.0,180.34,82.553744,Georgia Tech,USA,1995,1,23,82,8.9,1.7,3.3,8.6,0.011000000000000001,0.084,0.207,0.569,0.285,1999-00 1480,Trajan Langdon,CLE,24.0,190.5,88.45044,Duke,USA,1999,1,11,10,4.9,1.5,1.1,18.8,0.031,0.079,0.147,0.546,0.10400000000000001,1999-00 1481,Tracy Murray,WAS,28.0,200.66,103.418976,UCLA,USA,1992,1,18,80,10.1,3.4,0.9,-3.5,0.039,0.134,0.19699999999999998,0.555,0.067,1999-00 1482,Tony Massenburg,HOU,32.0,205.74,113.398,Maryland,USA,1990,2,43,10,4.6,2.7,0.3,-3.4,0.07400000000000001,0.2,0.2,0.534,0.047,1999-00 1483,Shawn Marion,PHX,22.0,200.66,97.52228000000001,Nevada-Las Vegas,USA,1999,1,9,51,10.2,6.5,1.4,5.5,0.094,0.195,0.19399999999999998,0.511,0.08900000000000001,1999-00 1484,Shawn Kemp,CLE,30.0,208.28,127.00576000000001,Trinity Valley Community College,USA,1989,1,17,82,17.8,8.8,1.7,-2.3,0.10099999999999999,0.22399999999999998,0.298,0.508,0.098,1999-00 1485,Shawn Bradley,DAL,28.0,228.6,119.294696,Brigham Young,USA,1993,1,2,77,8.4,6.5,0.8,2.6,0.09300000000000001,0.179,0.165,0.521,0.049,1999-00 1486,Robert Pack,DAL,31.0,187.96,86.18248,Southern California,USA,Undrafted,Undrafted,Undrafted,29,8.9,1.4,5.8,-7.6,0.011000000000000001,0.055,0.217,0.49,0.36700000000000005,1999-00 1487,Robert Horry,LAL,29.0,208.28,106.59411999999999,Alabama,USA,1992,1,11,76,5.7,4.8,1.6,12.3,0.08800000000000001,0.14300000000000002,0.126,0.528,0.10300000000000001,1999-00 1488,Rik Smits,IND,33.0,223.52,120.20188,Marist,USA,1988,1,2,79,12.9,5.1,1.1,1.0,0.057,0.17800000000000002,0.265,0.518,0.079,1999-00 1489,Ricky Davis,CHH,20.0,200.66,89.357624,Iowa,USA,1998,1,21,48,4.7,1.7,1.3,-6.7,0.057999999999999996,0.10400000000000001,0.193,0.542,0.17600000000000002,1999-00 1490,Rick Hughes,DAL,26.0,205.74,106.59411999999999,Thomas More,USA,Undrafted,Undrafted,Undrafted,21,3.9,2.3,0.4,2.2,0.106,0.122,0.17800000000000002,0.491,0.057999999999999996,1999-00 1491,Rick Fox,LAL,30.0,200.66,109.769264,North Carolina,Canada,1991,1,24,82,6.5,2.4,1.7,8.3,0.046,0.098,0.183,0.502,0.14400000000000002,1999-00 1492,Rick Brunson,NYK,28.0,193.04,86.18248,Temple,USA,Undrafted,Undrafted,Undrafted,37,1.9,0.7,1.3,-9.3,0.013000000000000001,0.09300000000000001,0.17300000000000001,0.456,0.292,1999-00 1493,Richard Hamilton,WAS,22.0,198.12,83.91452,Connecticut,USA,1999,1,7,71,9.0,1.8,1.5,-3.9,0.031,0.079,0.243,0.48200000000000004,0.131,1999-00 1494,Rex Walters,MIA,30.0,193.04,86.18248,Kansas,USA,1993,1,16,33,2.8,1.1,2.0,-0.8,0.025,0.073,0.152,0.474,0.265,1999-00 1495,Rex Chapman,PHX,32.0,193.04,83.91452,Kentucky,USA,1988,1,8,53,6.6,1.5,1.2,-0.8,0.012,0.081,0.182,0.491,0.099,1999-00 1496,Reggie Miller,IND,34.0,200.66,83.91452,UCLA,USA,1987,1,11,81,18.1,3.0,2.3,4.6,0.019,0.068,0.205,0.603,0.099,1999-00 1497,Reggie Jordan,WAS,32.0,193.04,88.45044,New Mexico State,USA,Undrafted,Undrafted,Undrafted,36,1.1,1.1,0.9,4.7,0.076,0.102,0.14,0.349,0.213,1999-00 1498,Ray Allen,MIL,24.0,195.58,92.98635999999999,Connecticut,USA,1996,1,5,82,22.1,4.4,3.8,1.7,0.032,0.10400000000000001,0.254,0.57,0.166,1999-00 1499,Rasho Nesterovic,MIN,24.0,213.36,112.490816,None,Slovenia,1998,1,17,82,5.7,4.6,1.1,5.0,0.08900000000000001,0.16399999999999998,0.145,0.49200000000000005,0.075,1999-00 1500,Rasheed Wallace,POR,25.0,210.82,102.0582,North Carolina,USA,1995,1,4,81,16.4,7.0,1.8,9.5,0.057,0.172,0.21899999999999997,0.556,0.085,1999-00 1501,Rashard Lewis,SEA,20.0,208.28,97.52228000000001,None,USA,1998,2,32,82,8.2,4.1,0.9,1.6,0.086,0.146,0.192,0.5429999999999999,0.071,1999-00 1502,Randy Livingston,PHX,25.0,193.04,94.800728,Louisiana State,USA,1996,2,42,79,4.8,1.6,2.2,1.4,0.026000000000000002,0.109,0.203,0.47600000000000003,0.254,1999-00 1503,Randy Brown,CHI,32.0,187.96,86.636072,New Mexico State,USA,1991,2,31,59,6.4,2.4,3.4,-17.5,0.016,0.09300000000000001,0.163,0.402,0.22699999999999998,1999-00 1504,Randell Jackson,DAL,24.0,210.82,97.52228000000001,Florida State,USA,1999,Undrafted,Undrafted,1,0.0,0.0,0.0,60.4,0.0,0.0,0.0,0.0,0.0,1999-00 1505,Rafer Alston,MIL,23.0,187.96,77.56423199999999,Fresno State,USA,1998,2,39,27,2.2,0.9,2.6,-14.5,0.016,0.065,0.159,0.31,0.321,1999-00 1506,Raef LaFrentz,DEN,24.0,210.82,108.86208,Kansas,USA,1998,1,3,81,12.4,7.9,1.2,-2.4,0.075,0.21100000000000002,0.195,0.512,0.065,1999-00 1507,Quincy Lewis,UTA,23.0,200.66,97.52228000000001,Minnesota,USA,1999,1,19,74,3.8,1.5,0.5,-5.7,0.059000000000000004,0.087,0.187,0.441,0.08,1999-00 1508,Popeye Jones,DEN,30.0,203.2,113.398,Murray State,USA,1992,2,41,40,2.6,2.6,0.5,2.3,0.129,0.201,0.156,0.46299999999999997,0.087,1999-00 1509,Pete Chilcutt,LAC,31.0,208.28,111.13004,North Carolina,USA,1991,1,27,56,2.1,2.3,0.5,-13.7,0.081,0.159,0.111,0.46,0.07200000000000001,1999-00 1510,Pervis Ellison,BOS,33.0,205.74,95.25432,Louisville,USA,1989,1,1,30,1.8,2.2,0.4,-21.5,0.113,0.184,0.109,0.507,0.077,1999-00 1511,Peja Stojakovic,SAC,23.0,205.74,103.872568,None,Serbia and Montenegro,1996,1,14,74,11.9,3.7,1.4,3.3,0.046,0.124,0.213,0.56,0.099,1999-00 1512,Paul Pierce,BOS,22.0,200.66,99.79024,Kansas,USA,1998,1,10,73,19.5,5.4,3.0,3.5,0.035,0.142,0.247,0.55,0.142,1999-00 1513,Robert Traylor,MIL,23.0,203.2,128.820128,Michigan,USA,1998,1,6,44,3.6,2.6,0.5,-5.2,0.129,0.179,0.17300000000000001,0.517,0.063,1999-00 1514,Rod Strickland,WAS,33.0,190.5,83.91452,DePaul,USA,1988,1,19,69,12.6,3.8,7.5,-6.2,0.038,0.098,0.218,0.485,0.377,1999-00 1515,Rodney Buford,MIA,22.0,195.58,85.728888,Creighton,USA,1999,2,53,34,4.3,1.4,0.6,-3.5,0.031,0.11699999999999999,0.20199999999999999,0.457,0.094,1999-00 1516,Rodney Rogers,PHX,29.0,200.66,115.66596000000001,Wake Forest,USA,1993,1,9,82,13.8,5.5,2.1,9.6,0.07,0.146,0.222,0.57,0.128,1999-00 1517,Shareef Abdur-Rahim,VAN,23.0,205.74,104.32616,California,USA,1996,1,3,82,20.3,10.1,3.3,-5.3,0.081,0.226,0.249,0.547,0.152,1999-00 1518,Shaquille O'Neal,LAL,28.0,215.9,142.88148,Louisiana State,USA,1992,1,1,79,29.7,13.6,3.8,11.0,0.11599999999999999,0.24600000000000002,0.313,0.578,0.184,1999-00 1519,Shandon Anderson,HOU,26.0,198.12,95.25432,Georgia,USA,1996,2,54,82,12.3,4.7,2.9,-2.3,0.039,0.11900000000000001,0.17600000000000002,0.5670000000000001,0.139,1999-00 1520,Shammond Williams,SEA,25.0,185.42,91.171992,North Carolina,USA,1998,2,34,43,5.2,1.2,1.8,-2.8,0.024,0.083,0.23600000000000002,0.455,0.24100000000000002,1999-00 1521,Sean Rooks,DAL,30.0,208.28,122.46983999999999,Arizona,USA,1992,2,30,71,4.4,3.5,1.0,-3.0,0.08800000000000001,0.179,0.172,0.48,0.099,1999-00 1522,Sean Marks,TOR,24.0,208.28,113.398,California,New Zealand,1998,2,44,5,1.6,0.4,0.0,-21.0,0.0,0.33299999999999996,0.293,0.515,0.0,1999-00 1523,Sean Elliott,SAS,32.0,203.2,99.79024,Arizona,USA,1989,1,3,19,6.0,2.5,1.5,10.6,0.02,0.11599999999999999,0.171,0.475,0.111,1999-00 1524,Scottie Pippen,POR,34.0,200.66,103.418976,Central Arkansas,USA,1987,1,5,82,12.5,6.3,5.0,7.5,0.051,0.162,0.195,0.5329999999999999,0.233,1999-00 1525,Scott Williams,MIL,32.0,208.28,104.32616,North Carolina,USA,Undrafted,Undrafted,Undrafted,68,7.6,6.6,0.4,0.0,0.138,0.218,0.163,0.539,0.027999999999999997,1999-00 1526,Scott Padgett,UTA,24.0,205.74,108.86208,Kentucky,USA,1999,1,28,47,2.6,1.9,0.5,-3.8,0.068,0.16899999999999998,0.184,0.395,0.092,1999-00 1527,Scott Burrell,NJN,29.0,200.66,98.88305600000001,Connecticut,USA,1993,1,20,74,6.1,3.5,1.0,3.1,0.053,0.168,0.163,0.511,0.08800000000000001,1999-00 1528,Scot Pollard,SAC,25.0,210.82,120.20188,Kansas,USA,1997,1,19,76,5.4,5.3,0.6,3.4,0.134,0.19699999999999998,0.128,0.584,0.048,1999-00 1529,Samaki Walker,SAS,24.0,205.74,117.93392,Louisville,USA,1996,1,9,71,5.1,3.8,0.5,2.5,0.09,0.218,0.19899999999999998,0.499,0.064,1999-00 1530,Pat Garrity,ORL,23.0,205.74,107.95489599999999,Notre Dame,USA,1998,1,19,82,8.2,2.6,0.7,-1.7,0.033,0.129,0.205,0.532,0.063,1999-00 1531,Sam Perkins,IND,39.0,205.74,117.93392,North Carolina,USA,1984,1,4,81,6.6,3.6,0.8,9.0,0.047,0.156,0.157,0.555,0.07,1999-00 1532,Sam Mack,GSW,30.0,200.66,99.79024,Houston,USA,Undrafted,Undrafted,Undrafted,23,5.0,1.7,1.0,-9.7,0.021,0.11,0.184,0.436,0.11599999999999999,1999-00 1533,Sam Jacobson,GSW,24.0,193.04,99.336648,Minnesota,USA,1998,1,26,52,4.9,1.4,0.6,-8.8,0.039,0.08199999999999999,0.16399999999999998,0.5539999999999999,0.077,1999-00 1534,Sam Cassell,MIL,30.0,190.5,83.91452,Florida State,USA,1993,1,24,81,18.6,3.7,9.0,2.4,0.027999999999999997,0.091,0.247,0.551,0.39899999999999997,1999-00 1535,Ryan Stack,CLE,24.0,210.82,97.52228000000001,South Carolina,USA,1998,2,48,25,2.1,1.8,0.2,-8.3,0.079,0.175,0.17,0.413,0.040999999999999995,1999-00 1536,Ryan Robertson,SAC,23.0,195.58,86.18248,Kansas,USA,1999,2,45,1,5.0,0.0,0.0,-33.4,0.0,0.0,0.11900000000000001,0.38799999999999996,0.0,1999-00 1537,Ryan Bowen,DEN,24.0,200.66,97.52228000000001,Iowa,USA,1998,2,55,52,2.5,2.2,0.4,-1.5,0.126,0.076,0.11,0.467,0.052000000000000005,1999-00 1538,Rusty LaRue,CHI,26.0,190.5,86.18248,Wake Forest,USA,Undrafted,Undrafted,Undrafted,4,9.3,2.5,2.8,-20.1,0.008,0.083,0.19,0.401,0.172,1999-00 1539,Ruben Patterson,SEA,24.0,198.12,102.965384,Cincinnati,USA,1998,2,31,81,11.6,5.4,1.6,1.9,0.115,0.114,0.2,0.5870000000000001,0.095,1999-00 1540,Roy Rogers,DEN,26.0,208.28,106.59411999999999,Alabama,USA,1996,1,22,40,2.2,2.0,0.2,-0.1,0.102,0.147,0.138,0.42,0.04,1999-00 1541,Roshown McLeod,ATL,24.0,203.2,100.243832,Duke,USA,1998,1,20,44,7.2,3.1,1.2,-8.5,0.052000000000000005,0.12,0.214,0.43799999999999994,0.102,1999-00 1542,Ron Mercer,ORL,24.0,200.66,95.25432,Kentucky,USA,1997,1,6,68,16.9,3.7,2.3,0.4,0.03,0.086,0.247,0.479,0.11,1999-00 1543,Ron Harper,LAL,36.0,198.12,97.52228000000001,Miami (OH),USA,1986,1,8,80,7.0,4.2,3.4,7.6,0.051,0.128,0.157,0.46799999999999997,0.18899999999999997,1999-00 1544,Rodrick Rhodes,DAL,26.0,198.12,102.0582,Southern California,USA,1997,1,24,1,0.0,1.0,0.0,-91.2,0.091,0.0,0.23800000000000002,0.0,0.0,1999-00 1545,Sam Mitchell,MIN,36.0,200.66,97.52228000000001,Mercer,USA,1985,3,54,66,6.5,2.1,1.7,-2.6,0.026000000000000002,0.105,0.171,0.513,0.141,1999-00 1546,Jermaine O'Neal,POR,21.0,210.82,102.511792,None,USA,1996,1,17,70,3.9,3.3,0.3,2.9,0.13699999999999998,0.17300000000000001,0.16699999999999998,0.515,0.036000000000000004,1999-00 1547,Todd MacCulloch,PHI,24.0,213.36,127.00576000000001,Washington,Canada,1999,2,47,56,3.7,2.6,0.2,0.0,0.099,0.201,0.168,0.557,0.04,1999-00 1548,Jason Williams,SAC,24.0,185.42,86.18248,Florida,USA,1998,1,7,81,12.3,2.8,7.3,0.4,0.008,0.077,0.19899999999999998,0.47700000000000004,0.297,1999-00 1549,Derek Fisher,LAL,25.0,185.42,90.7184,Arkansas-Little Rock,USA,1996,1,24,78,6.3,1.8,2.8,13.4,0.013000000000000001,0.07,0.153,0.449,0.17600000000000002,1999-00 1550,Derek Hood,CHH,23.0,203.2,104.32616,Arkansas,USA,Undrafted,Undrafted,Undrafted,2,0.0,0.5,0.0,-87.9,0.0,0.5,0.244,0.0,0.0,1999-00 1551,Derek Strong,ORL,32.0,205.74,108.86208,Xavier,USA,1990,2,47,20,2.7,2.2,0.2,-8.3,0.076,0.23600000000000002,0.177,0.499,0.04,1999-00 1552,Derrick Coleman,CHH,33.0,208.28,122.46983999999999,Syracuse,USA,1990,1,1,74,16.7,8.5,2.4,1.2,0.061,0.233,0.253,0.541,0.13699999999999998,1999-00 1553,Derrick Dial,SAS,24.0,193.04,83.46092800000001,Eastern Michigan,USA,1998,2,52,8,5.0,3.3,0.6,10.3,0.156,0.15,0.256,0.415,0.08900000000000001,1999-00 1554,Derrick McKey,IND,33.0,208.28,109.315672,Alabama,USA,1987,1,9,32,4.3,4.2,1.1,6.0,0.057999999999999996,0.17800000000000002,0.115,0.524,0.09,1999-00 1555,Detlef Schrempf,POR,37.0,208.28,106.59411999999999,Washington,USA,1985,1,8,77,7.5,4.3,2.6,7.0,0.061,0.168,0.17600000000000002,0.544,0.192,1999-00 1556,Devean George,LAL,22.0,203.2,99.79024,Augsburg,USA,1999,1,23,49,3.2,1.5,0.2,4.1,0.08800000000000001,0.135,0.22699999999999998,0.478,0.061,1999-00 1557,Devin Gray,HOU,28.0,200.66,108.86208,Clemson,USA,1995,Undrafted,Undrafted,21,2.3,1.2,0.2,-7.1,0.096,0.132,0.18,0.49200000000000005,0.069,1999-00 1558,Dickey Simpkins,CHI,28.0,205.74,115.66596000000001,Providence,USA,1994,1,21,69,4.2,5.4,1.4,-12.1,0.085,0.177,0.128,0.439,0.105,1999-00 1559,Dikembe Mutombo,ATL,34.0,218.44,118.38751200000002,Georgetown,Congo,1991,1,4,82,11.5,14.1,1.3,-2.5,0.114,0.308,0.141,0.621,0.054000000000000006,1999-00 1560,Dion Glover,ATL,21.0,195.58,103.418976,Georgia Tech,USA,1999,1,20,30,6.5,1.3,0.9,-13.9,0.037000000000000005,0.059000000000000004,0.22399999999999998,0.483,0.10800000000000001,1999-00 1561,Dirk Nowitzki,DAL,22.0,213.36,107.501304,None,Germany,1998,1,9,82,17.5,6.5,2.5,0.5,0.038,0.156,0.212,0.564,0.107,1999-00 1562,Don MacLean,PHX,30.0,208.28,106.59411999999999,UCLA,USA,1992,1,19,16,2.6,1.4,0.5,-8.5,0.043,0.138,0.179,0.40700000000000003,0.1,1999-00 1563,Don Reid,WAS,26.0,203.2,113.398,Georgetown,USA,1995,2,58,38,3.8,2.7,0.3,0.1,0.068,0.17300000000000001,0.135,0.5670000000000001,0.034,1999-00 1564,Donny Marshall,CLE,27.0,200.66,104.32616,Connecticut,USA,1995,2,39,6,1.8,0.2,0.0,1.6,0.0,0.028999999999999998,0.203,0.40299999999999997,0.0,1999-00 1565,Donyell Marshall,GSW,27.0,205.74,104.32616,Connecticut,USA,1994,1,4,64,14.2,10.0,2.6,-10.4,0.09,0.231,0.22,0.478,0.13699999999999998,1999-00 1566,Doug Christie,TOR,30.0,198.12,92.98635999999999,Pepperdine,USA,1992,1,17,73,12.4,3.9,4.4,0.3,0.03,0.11199999999999999,0.19399999999999998,0.526,0.22699999999999998,1999-00 1567,Doug Overton,BOS,30.0,190.5,86.18248,La Salle,USA,1991,2,40,48,3.2,0.7,1.1,-2.9,0.035,0.05,0.185,0.466,0.205,1999-00 1568,Doug West,VAN,33.0,198.12,99.79024,Villanova,USA,1989,2,38,38,4.0,1.9,1.1,3.2,0.038,0.109,0.14400000000000002,0.467,0.12300000000000001,1999-00 1569,Drew Barry,ATL,27.0,195.58,86.636072,Georgia Tech,USA,1996,2,57,16,2.6,0.8,2.1,-9.6,0.0,0.078,0.132,0.5820000000000001,0.33,1999-00 1570,Duane Causwell,MIA,32.0,213.36,115.66596000000001,Temple,USA,1990,1,18,25,2.6,1.9,0.1,-14.9,0.064,0.2,0.154,0.614,0.017,1999-00 1571,Earl Boykins,CLE,24.0,165.1,60.327736,Eastern Michigan,USA,Undrafted,Undrafted,Undrafted,26,5.3,1.0,1.8,-11.8,0.046,0.076,0.245,0.547,0.345,1999-00 1572,Eddie Jones,CHH,28.0,198.12,90.7184,Temple,USA,1994,1,10,72,20.1,4.8,4.2,6.3,0.033,0.10300000000000001,0.23600000000000002,0.555,0.191,1999-00 1573,Eddie Robinson,CHH,24.0,205.74,95.25432,Central Oklahoma,USA,Undrafted,Undrafted,Undrafted,67,7.0,2.7,0.5,6.1,0.059000000000000004,0.127,0.18100000000000002,0.569,0.048,1999-00 1574,Derek Anderson,LAC,25.0,195.58,88.45044,Kentucky,USA,1997,1,13,64,16.9,4.0,3.4,-13.3,0.04,0.098,0.235,0.542,0.179,1999-00 1575,Dennis Scott,VAN,31.0,203.2,103.872568,Georgia Tech,USA,1990,1,4,66,5.6,1.6,1.0,-6.5,0.015,0.091,0.14,0.515,0.08900000000000001,1999-00 1576,Dennis Rodman,DAL,39.0,200.66,95.25432,Southeastern Oklahoma State,USA,1986,2,27,12,2.8,14.3,1.2,-7.1,0.136,0.35100000000000003,0.064,0.457,0.046,1999-00 1577,Dell Curry,TOR,36.0,195.58,92.98635999999999,Virginia Tech,USA,1986,1,15,67,7.6,1.5,1.3,-1.3,0.011000000000000001,0.099,0.207,0.542,0.141,1999-00 1578,Clifford Robinson,PHX,33.0,208.28,102.0582,Connecticut,USA,1989,2,36,80,18.5,4.5,2.8,4.6,0.042,0.096,0.22899999999999998,0.564,0.134,1999-00 1579,Corey Benjamin,CHI,22.0,198.12,92.98635999999999,Oregon State,USA,1998,1,28,48,7.7,1.8,1.1,-11.2,0.027999999999999997,0.094,0.245,0.479,0.129,1999-00 1580,Corey Maggette,ORL,20.0,198.12,98.88305600000001,Duke,USA,1999,1,13,77,8.4,3.9,0.8,-1.6,0.10099999999999999,0.14400000000000002,0.22399999999999998,0.5529999999999999,0.071,1999-00 1581,Corie Blount,PHX,31.0,208.28,109.769264,Cincinnati,USA,1993,1,25,38,2.8,3.0,0.3,5.8,0.129,0.161,0.129,0.517,0.032,1999-00 1582,Corliss Williamson,SAC,26.0,200.66,111.13004,Arkansas,USA,1995,1,13,76,10.3,3.8,1.1,-1.4,0.073,0.10099999999999999,0.19699999999999998,0.5489999999999999,0.069,1999-00 1583,Cory Alexander,DEN,27.0,185.42,86.18248,Virginia,USA,1995,1,29,29,2.8,1.4,2.0,-3.9,0.026000000000000002,0.111,0.183,0.381,0.305,1999-00 1584,Cuttino Mobley,HOU,24.0,193.04,86.18248,Rhode Island,USA,1998,2,41,81,15.8,3.6,2.6,-1.6,0.027999999999999997,0.099,0.24,0.545,0.14800000000000002,1999-00 1585,Dale Davis,IND,31.0,210.82,104.32616,Clemson,USA,1991,1,13,74,10.0,9.9,0.9,4.7,0.138,0.235,0.166,0.537,0.046,1999-00 1586,Dale Ellis,CHH,39.0,200.66,92.98635999999999,Tennessee,USA,1983,1,9,42,4.2,1.3,0.3,4.8,0.027000000000000003,0.091,0.14800000000000002,0.54,0.038,1999-00 1587,Damon Jones,DAL,23.0,190.5,83.91452,Houston,USA,Undrafted,Undrafted,Undrafted,55,4.2,1.0,1.7,-7.8,0.019,0.079,0.18600000000000003,0.508,0.242,1999-00 1588,Damon Stoudamire,POR,26.0,177.8,77.56423199999999,Arizona,USA,1995,1,7,78,12.5,3.1,5.2,7.4,0.031,0.085,0.212,0.508,0.26899999999999996,1999-00 1589,Dan Majerle,MIA,34.0,198.12,100.697424,Central Michigan,USA,1988,1,14,69,7.3,4.8,3.0,5.6,0.013999999999999999,0.146,0.10400000000000001,0.5589999999999999,0.131,1999-00 1590,Elden Campbell,CHH,31.0,213.36,115.66596000000001,Clemson,USA,1990,1,27,78,12.7,7.6,1.7,2.7,0.076,0.187,0.2,0.5,0.087,1999-00 1591,Dana Barros,BOS,33.0,180.34,73.935496,Boston College,USA,1989,1,16,72,7.2,1.4,1.8,-6.0,0.013000000000000001,0.092,0.20199999999999999,0.552,0.203,1999-00 1592,Danny Fortson,BOS,24.0,200.66,117.93392,Cincinnati,USA,1997,1,10,55,7.6,6.7,0.5,-1.7,0.17600000000000002,0.33899999999999997,0.20199999999999999,0.602,0.057999999999999996,1999-00 1593,Danny Manning,MIL,34.0,208.28,110.676448,Kansas,USA,1988,1,1,72,4.6,2.9,1.0,-2.0,0.051,0.157,0.162,0.46,0.096,1999-00 1594,Darrell Armstrong,ORL,32.0,185.42,81.64656,Fayetteville State,USA,Undrafted,Undrafted,Undrafted,82,16.2,3.3,6.1,0.4,0.027000000000000003,0.085,0.235,0.542,0.309,1999-00 1595,Darrick Martin,SAC,29.0,180.34,77.11064,UCLA,USA,Undrafted,Undrafted,Undrafted,71,5.7,0.6,1.7,1.9,0.009000000000000001,0.045,0.228,0.5,0.225,1999-00 1596,Darvin Ham,MIL,26.0,200.66,104.32616,Texas Tech,USA,Undrafted,Undrafted,Undrafted,35,5.1,4.9,1.2,4.9,0.12300000000000001,0.126,0.106,0.545,0.07400000000000001,1999-00 1597,David Robinson,SAS,34.0,215.9,113.398,Navy,USA,1987,1,1,80,17.8,9.6,1.8,8.5,0.091,0.251,0.26,0.568,0.10099999999999999,1999-00 1598,David Wesley,CHH,29.0,185.42,91.625584,Baylor,USA,Undrafted,Undrafted,Undrafted,82,13.6,2.7,5.6,1.8,0.016,0.073,0.20199999999999999,0.519,0.284,1999-00 1599,David Wingate,NYK,36.0,195.58,83.91452,Georgetown,USA,1986,2,44,7,0.3,0.3,0.4,-29.0,0.033,0.031,0.145,0.111,0.188,1999-00 1600,DeMarco Johnson,NYK,24.0,205.74,111.13004,North Carolina-Charlotte,USA,1998,2,38,5,1.2,1.4,0.0,-0.3,0.09699999999999999,0.105,0.154,0.33299999999999996,0.0,1999-00 1601,Dean Garrett,MIN,33.0,210.82,113.398,Indiana,USA,1988,2,38,56,2.0,2.5,0.3,3.1,0.077,0.183,0.105,0.47700000000000004,0.043,1999-00 1602,Dedric Willoughby,CHI,26.0,190.5,81.64656,Iowa State,USA,Undrafted,Undrafted,Undrafted,25,7.6,2.0,2.6,-6.0,0.024,0.09699999999999999,0.204,0.47200000000000003,0.225,1999-00 1603,Dee Brown,TOR,31.0,187.96,92.98635999999999,Jacksonville,USA,1990,1,19,38,6.9,1.4,2.3,-1.2,0.013999999999999999,0.075,0.19699999999999998,0.498,0.214,1999-00 1604,Danny Ferry,CLE,33.0,208.28,106.59411999999999,Duke,USA,1989,1,2,63,7.3,3.8,1.1,-0.6,0.048,0.156,0.153,0.5710000000000001,0.081,1999-00 1605,Clar. Weatherspoon,MIA,29.0,200.66,120.20188,Southern Mississippi,USA,1992,1,9,78,7.2,5.8,1.2,3.3,0.1,0.223,0.177,0.5660000000000001,0.1,1999-00 1606,Eldridge Recasner,CHH,32.0,193.04,86.18248,Washington,USA,1992,Undrafted,Undrafted,7,1.0,0.6,0.7,-13.6,0.0,0.11800000000000001,0.10300000000000001,0.5,0.278,1999-00 1607,Elton Brand,CHI,21.0,203.2,117.93392,Duke,USA,1999,1,1,81,20.1,10.0,1.9,-12.8,0.131,0.184,0.26899999999999996,0.528,0.11800000000000001,1999-00 1608,Harold Jamison,MIA,23.0,203.2,117.93392,Clemson,USA,Undrafted,Undrafted,Undrafted,12,1.5,1.8,0.3,-14.6,0.203,0.081,0.18600000000000003,0.322,0.1,1999-00 1609,Haywoode Workman,TOR,34.0,187.96,81.64656,Oral Roberts,USA,1989,2,49,36,2.4,0.7,1.7,-9.0,0.003,0.086,0.147,0.445,0.272,1999-00 1610,Hersey Hawkins,CHI,33.0,190.5,90.7184,Bradley,USA,1988,1,6,61,7.9,2.9,2.2,-14.3,0.022000000000000002,0.10300000000000001,0.15,0.562,0.154,1999-00 1611,Horace Grant,SEA,34.0,208.28,111.13004,Clemson,USA,1987,1,10,76,8.1,7.8,2.5,1.8,0.068,0.175,0.11699999999999999,0.47200000000000003,0.10099999999999999,1999-00 1612,Howard Eisley,UTA,27.0,187.96,81.64656,Boston College,USA,1994,2,30,82,8.6,2.1,4.2,-1.0,0.013999999999999999,0.083,0.19,0.49200000000000005,0.28600000000000003,1999-00 1613,Hubert Davis,DAL,30.0,195.58,83.007336,North Carolina,USA,1992,1,20,79,7.4,1.7,1.8,-4.3,0.01,0.071,0.138,0.585,0.113,1999-00 1614,Ike Austin,WAS,30.0,208.28,122.46983999999999,Arizona State,USA,1991,2,48,59,6.7,4.8,1.3,-8.2,0.062,0.21600000000000003,0.19899999999999998,0.48100000000000004,0.10400000000000001,1999-00 1615,Ira Bowman,PHI,27.0,195.58,88.45044,Pennsylvania,USA,Undrafted,Undrafted,Undrafted,11,0.5,0.2,0.1,-32.1,0.0,0.095,0.109,0.868,0.125,1999-00 1616,Isaiah Rider,ATL,29.0,195.58,97.52228000000001,Nevada-Las Vegas,USA,1993,1,5,60,19.3,4.3,3.7,-1.3,0.033,0.099,0.289,0.488,0.18600000000000003,1999-00 1617,J.R. Reid,MIL,32.0,205.74,112.037224,North Carolina,USA,1989,1,5,34,4.4,3.4,0.5,-3.8,0.057,0.17,0.131,0.495,0.044000000000000004,1999-00 1618,Jacque Vaughn,UTA,25.0,185.42,86.18248,Kansas,USA,1997,1,27,78,3.7,0.8,1.6,-5.1,0.015,0.07400000000000001,0.201,0.489,0.247,1999-00 1619,Jahidi White,WAS,24.0,205.74,131.54168,Georgetown,USA,1998,2,43,80,7.1,6.9,0.2,-3.4,0.152,0.261,0.184,0.524,0.015,1999-00 1620,Jalen Rose,IND,27.0,203.2,95.25432,Michigan,USA,1994,1,13,80,18.2,4.8,4.0,4.5,0.016,0.12300000000000001,0.23199999999999998,0.547,0.18,1999-00 1621,Jamal Mashburn,MIA,27.0,203.2,109.315672,Kentucky,USA,1993,1,4,76,17.5,5.0,3.9,6.6,0.027999999999999997,0.125,0.23800000000000002,0.526,0.17800000000000002,1999-00 1622,James Posey,DEN,23.0,203.2,97.52228000000001,Xavier,USA,1999,1,18,81,8.2,3.9,1.8,-1.6,0.045,0.125,0.14800000000000002,0.55,0.106,1999-00 1623,Jamie Feick,NJN,25.0,203.2,115.66596000000001,Michigan State,USA,1996,2,48,81,5.7,9.3,0.8,-1.1,0.126,0.256,0.107,0.47700000000000004,0.046,1999-00 1624,Jaren Jackson,SAS,32.0,198.12,102.0582,Georgetown,USA,Undrafted,Undrafted,Undrafted,81,6.3,2.2,1.5,4.3,0.023,0.098,0.155,0.503,0.11199999999999999,1999-00 1625,Jason Caffey,GSW,27.0,203.2,116.119552,Alabama,USA,1995,1,20,71,12.0,6.8,1.7,-10.1,0.08800000000000001,0.156,0.195,0.515,0.09,1999-00 1626,Jason Kidd,PHX,27.0,193.04,96.16150400000001,California,USA,1994,1,2,67,14.3,7.2,10.1,5.8,0.040999999999999995,0.16399999999999998,0.19899999999999998,0.498,0.395,1999-00 1627,Jason Miskiri,CHH,24.0,187.96,83.91452,George Mason,USA,Undrafted,Undrafted,Undrafted,1,0.0,0.0,1.0,-158.3,0.0,0.0,0.125,0.0,0.5,1999-00 1628,Jason Terry,ATL,22.0,187.96,78.017824,Arizona,USA,1999,1,10,81,8.1,2.0,4.3,-7.0,0.013999999999999999,0.083,0.191,0.49700000000000005,0.3,1999-00 1629,Jeff Foster,IND,23.0,210.82,107.95489599999999,Texas State,USA,1999,1,21,19,2.3,1.7,0.3,-6.3,0.15,0.247,0.16699999999999998,0.632,0.08800000000000001,1999-00 1630,Jeff Hornacek,UTA,37.0,193.04,86.18248,Iowa State,USA,1986,2,46,77,12.4,2.4,2.6,7.3,0.027999999999999997,0.07400000000000001,0.196,0.59,0.151,1999-00 1631,Jeff McInnis,LAC,25.0,193.04,86.18248,North Carolina,USA,1996,2,37,25,7.2,2.9,3.6,-15.0,0.031,0.107,0.162,0.465,0.245,1999-00 1632,Jelani McCoy,SEA,22.0,208.28,111.13004,UCLA,USA,1998,2,33,58,4.3,3.1,0.4,0.3,0.08,0.18,0.156,0.574,0.051,1999-00 1633,Hakeem Olajuwon,HOU,37.0,213.36,115.66596000000001,Houston,Nigeria,1984,1,1,44,10.3,6.2,1.4,-3.2,0.071,0.226,0.228,0.484,0.102,1999-00 1634,Greg Ostertag,UTA,27.0,218.44,127.00576000000001,Kansas,USA,1995,1,28,81,4.5,6.0,0.2,4.6,0.13699999999999998,0.22,0.125,0.525,0.018000000000000002,1999-00 1635,Greg Foster,SEA,31.0,210.82,113.398,Texas-El Paso,USA,1990,2,35,60,3.4,1.8,0.7,-0.3,0.025,0.13699999999999998,0.168,0.43,0.091,1999-00 1636,Greg Buckner,DAL,23.0,193.04,95.25432,Clemson,USA,1998,2,53,48,5.7,3.6,1.1,3.3,0.068,0.141,0.146,0.527,0.08800000000000001,1999-00 1637,Emanual Davis,SEA,31.0,195.58,88.45044,Delaware State,USA,Undrafted,Undrafted,Undrafted,54,4.0,1.9,1.3,-2.0,0.023,0.131,0.17600000000000002,0.45799999999999996,0.162,1999-00 1638,Eric Montross,DET,28.0,213.36,122.46983999999999,North Carolina,USA,1994,1,9,51,0.8,1.4,0.1,-4.6,0.062,0.19,0.111,0.332,0.032,1999-00 1639,Eric Murdock,LAC,32.0,185.42,86.18248,Providence,USA,1991,1,21,40,5.6,1.9,2.7,-9.9,0.023,0.1,0.19,0.46799999999999997,0.26,1999-00 1640,Eric Piatkowski,LAC,29.0,200.66,97.52228000000001,Nebraska,USA,1994,1,15,75,8.7,3.0,1.1,-13.9,0.045,0.1,0.17300000000000001,0.53,0.079,1999-00 1641,Eric Snow,PHI,27.0,190.5,92.532768,Michigan State,USA,1995,2,43,82,7.9,3.2,7.6,1.0,0.016,0.086,0.129,0.48200000000000004,0.327,1999-00 1642,Eric Williams,BOS,27.0,203.2,99.79024,Providence,USA,1995,1,14,68,7.2,2.3,1.4,-2.9,0.044000000000000004,0.08900000000000001,0.166,0.531,0.105,1999-00 1643,Erick Dampier,GSW,24.0,210.82,120.20188,Mississippi State,USA,1996,1,10,21,8.0,6.4,0.9,-10.1,0.09300000000000001,0.182,0.19,0.42700000000000005,0.064,1999-00 1644,Erick Strickland,DAL,26.0,190.5,95.25432,Nebraska,USA,Undrafted,Undrafted,Undrafted,68,12.8,4.8,3.1,1.1,0.036000000000000004,0.131,0.196,0.531,0.155,1999-00 1645,Ervin Johnson,MIL,32.0,210.82,111.13004,New Orleans,USA,1993,1,23,80,4.8,8.1,0.6,3.1,0.128,0.22,0.08900000000000001,0.55,0.027999999999999997,1999-00 1646,Etdrick Bohannon,LAC,27.0,205.74,106.59411999999999,Auburn-Montgomery,USA,Undrafted,Undrafted,Undrafted,13,2.2,2.4,0.4,-9.3,0.13699999999999998,0.20199999999999999,0.131,0.615,0.068,1999-00 1647,Evan Eschmeyer,NJN,25.0,210.82,115.66596000000001,Northwestern,USA,1999,2,34,31,2.9,3.5,0.7,-2.8,0.11800000000000001,0.218,0.128,0.534,0.08800000000000001,1999-00 1648,Felipe Lopez,VAN,25.0,198.12,88.45044,St. John's (NY),Dominican Republic,1998,1,24,65,4.5,1.9,0.7,-6.0,0.09,0.102,0.21,0.473,0.1,1999-00 1649,Elliot Perry,NJN,31.0,182.88,68.945984,Memphis,USA,1991,2,37,60,5.3,1.0,2.3,-2.5,0.018000000000000002,0.068,0.21899999999999997,0.493,0.307,1999-00 1650,Felton Spencer,SAS,32.0,213.36,120.20188,Louisville,USA,1990,1,6,26,1.9,1.5,0.1,-0.5,0.11599999999999999,0.185,0.16899999999999998,0.541,0.035,1999-00 1651,Gary Grant,POR,35.0,190.5,83.91452,Michigan,USA,1988,1,15,3,4.0,1.0,0.3,-25.7,0.0,0.111,0.295,0.429,0.1,1999-00 1652,Gary Payton,SEA,31.0,193.04,81.64656,Oregon State,USA,1990,1,2,82,24.2,6.5,8.9,2.9,0.032,0.139,0.268,0.535,0.368,1999-00 1653,Gary Trent,DAL,25.0,203.2,113.398,Ohio,USA,1995,1,11,11,13.7,4.7,2.0,-9.4,0.067,0.132,0.261,0.499,0.124,1999-00 1654,George Lynch,PHI,29.0,203.2,103.418976,North Carolina,USA,1993,1,12,75,9.6,7.8,1.8,2.6,0.09699999999999999,0.16899999999999998,0.154,0.498,0.08900000000000001,1999-00 1655,George McCloud,DEN,33.0,203.2,102.0582,Florida State,USA,1989,1,7,78,10.1,3.7,3.2,-2.4,0.038,0.11199999999999999,0.17600000000000002,0.5479999999999999,0.182,1999-00 1656,Gerard King,WAS,27.0,205.74,113.398,Nicholls State,USA,Undrafted,Undrafted,Undrafted,62,5.3,4.0,0.8,-1.3,0.087,0.188,0.146,0.534,0.075,1999-00 1657,Gheorghe Muresan,NJN,29.0,231.14,137.438376,None,USA,1993,2,30,30,3.5,2.3,0.3,4.8,0.10300000000000001,0.163,0.20199999999999999,0.49200000000000005,0.055999999999999994,1999-00 1658,Glen Rice,LAL,33.0,203.2,99.79024,Michigan,USA,1989,1,4,80,15.9,4.1,2.2,7.9,0.024,0.114,0.221,0.551,0.11,1999-00 1659,Glenn Robinson,MIL,27.0,200.66,104.32616,Purdue,USA,1994,1,1,81,20.9,6.0,2.4,1.8,0.043,0.149,0.273,0.534,0.11199999999999999,1999-00 1660,Grant Hill,DET,27.0,203.2,102.0582,Duke,USA,1994,1,3,74,25.8,6.6,5.2,3.7,0.040999999999999995,0.16399999999999998,0.304,0.565,0.253,1999-00 1661,Grant Long,VAN,34.0,205.74,112.490816,Eastern Michigan,USA,1988,2,33,42,4.8,5.6,1.0,-1.1,0.111,0.19699999999999998,0.12300000000000001,0.512,0.076,1999-00 1662,Greg Anthony,POR,32.0,185.42,81.64656,Nevada-Las Vegas,USA,1991,1,12,82,6.3,1.6,2.5,9.1,0.013999999999999999,0.085,0.168,0.551,0.218,1999-00 1663,Fred Hoiberg,CHI,27.0,193.04,92.079176,Iowa State,USA,1995,2,52,31,9.0,3.5,2.7,-10.2,0.01,0.146,0.16699999999999998,0.53,0.19399999999999998,1999-00 1664,Chucky Brown,CHH,32.0,203.2,97.52228000000001,North Carolina State,USA,1989,2,43,63,5.3,2.7,1.0,1.2,0.037000000000000005,0.124,0.16699999999999998,0.47600000000000003,0.099,1999-00 1665,Fred Vinson,SEA,29.0,193.04,86.18248,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,8,1.6,0.1,0.0,22.6,0.0,0.021,0.22899999999999998,0.364,0.0,1999-00 1666,Chuck Person,SEA,36.0,203.2,109.315672,Auburn,USA,1986,1,4,37,2.8,1.4,0.6,-5.3,0.018000000000000002,0.157,0.18,0.40299999999999997,0.106,1999-00 1667,Anthony Mason,CHH,33.0,203.2,122.46983999999999,Tennessee State,USA,1988,3,53,82,11.6,8.5,4.5,3.2,0.053,0.196,0.145,0.56,0.184,1999-00 1668,Anthony Miller,HOU,28.0,205.74,115.66596000000001,Michigan State,USA,1994,2,39,35,3.7,4.7,0.5,7.4,0.111,0.245,0.125,0.544,0.05,1999-00 1669,Anthony Parker,ORL,25.0,198.12,97.52228000000001,Bradley,USA,1997,1,21,16,3.6,1.7,0.6,-7.3,0.03,0.11900000000000001,0.162,0.461,0.083,1999-00 1670,Anthony Peeler,MIN,30.0,193.04,94.34713599999999,Missouri,USA,1992,1,15,82,9.8,2.8,2.4,-1.4,0.032,0.099,0.18600000000000003,0.52,0.152,1999-00 1671,Antoine Carr,VAN,38.0,205.74,102.0582,Wichita State,USA,1983,1,8,21,3.2,1.5,0.3,-18.8,0.047,0.129,0.168,0.47700000000000004,0.063,1999-00 1672,Antoine Walker,BOS,23.0,205.74,111.13004,Kentucky,USA,1996,1,6,82,20.5,8.0,3.7,-0.2,0.071,0.18,0.28300000000000003,0.494,0.17800000000000002,1999-00 1673,Antonio Daniels,SAS,25.0,193.04,92.98635999999999,Bowling Green,USA,1997,1,4,68,6.2,1.3,2.6,8.7,0.016,0.066,0.174,0.541,0.247,1999-00 1674,Antonio Davis,TOR,31.0,205.74,104.32616,Texas-El Paso,USA,1990,2,45,79,11.5,8.8,1.3,0.6,0.106,0.213,0.179,0.52,0.066,1999-00 1675,Antonio Harvey,POR,29.0,210.82,102.0582,Pfeiffer,USA,Undrafted,Undrafted,Undrafted,19,2.2,1.7,0.3,13.1,0.08,0.16899999999999998,0.168,0.581,0.057,1999-00 1676,Antonio Lang,PHI,28.0,203.2,92.98635999999999,Duke,USA,1994,2,29,10,0.6,0.5,0.2,-13.4,0.0,0.172,0.111,0.366,0.091,1999-00 1677,Antonio McDyess,DEN,25.0,205.74,99.79024,Alabama,USA,1995,1,2,81,19.1,8.5,2.0,-3.6,0.095,0.183,0.271,0.539,0.10800000000000001,1999-00 1678,Armen Gilliam,UTA,36.0,205.74,117.93392,Nevada-Las Vegas,USA,1987,1,2,50,6.7,4.2,0.8,-4.7,0.10400000000000001,0.203,0.23399999999999999,0.486,0.106,1999-00 1679,Arvydas Sabonis,POR,35.0,220.98,132.448864,None,Lithuania,1986,1,24,66,11.8,7.8,1.8,9.0,0.071,0.27,0.215,0.568,0.113,1999-00 1680,Austin Croshere,IND,25.0,205.74,106.59411999999999,Providence,USA,1997,1,12,81,10.3,6.4,1.1,8.2,0.087,0.222,0.212,0.5529999999999999,0.078,1999-00 1681,Avery Johnson,SAS,35.0,180.34,81.64656,Southern,USA,Undrafted,Undrafted,Undrafted,82,11.2,1.9,6.0,6.3,0.015,0.053,0.192,0.5,0.319,1999-00 1682,B.J. Armstrong,CHI,32.0,187.96,83.91452,Iowa,USA,1989,1,18,27,7.4,1.7,2.9,-12.9,0.004,0.09,0.19,0.51,0.26,1999-00 1683,Baron Davis,CHH,21.0,190.5,95.25432,UCLA,USA,1999,1,3,82,5.9,2.0,3.8,1.7,0.037000000000000005,0.086,0.188,0.486,0.33399999999999996,1999-00 1684,Ben Davis,PHX,27.0,205.74,111.13004,Arizona,USA,1996,2,43,5,0.8,1.8,0.4,-30.9,0.125,0.375,0.188,0.33299999999999996,0.16699999999999998,1999-00 1685,Ben Wallace,ORL,25.0,205.74,108.86208,Virginia Union,USA,Undrafted,Undrafted,Undrafted,81,4.8,8.2,0.8,1.9,0.11599999999999999,0.24600000000000002,0.09699999999999999,0.508,0.047,1999-00 1686,Anthony Johnson,ORL,25.0,190.5,86.18248,College of Charleston,USA,1997,2,39,56,2.8,0.9,1.3,-3.5,0.036000000000000004,0.051,0.14300000000000002,0.425,0.16699999999999998,1999-00 1687,Benoit Benjamin,CLE,35.0,213.36,113.398,Creighton,USA,1985,1,3,3,0.7,0.3,0.0,46.4,0.0,0.1,0.18899999999999997,0.33299999999999996,0.0,1999-00 1688,Anthony Carter,MIA,25.0,185.42,86.18248,Hawaii,USA,Undrafted,Undrafted,Undrafted,79,6.3,2.5,4.8,1.8,0.032,0.091,0.185,0.442,0.321,1999-00 1689,Antawn Jamison,GSW,24.0,205.74,101.151016,North Carolina,USA,1998,1,4,43,19.6,8.3,2.1,-8.3,0.10800000000000001,0.131,0.257,0.496,0.102,1999-00 1690,Chucky Atkins,ORL,25.0,180.34,72.57472,South Florida,USA,Undrafted,Undrafted,Undrafted,82,9.5,1.5,3.7,-1.2,0.013999999999999999,0.07200000000000001,0.24600000000000002,0.489,0.319,1999-00 1691,A.C. Green,LAL,36.0,205.74,102.0582,Oregon State,USA,1985,1,23,82,5.0,5.9,1.0,8.1,0.08900000000000001,0.179,0.111,0.48200000000000004,0.057999999999999996,1999-00 1692,Aaron McKie,PHI,27.0,195.58,94.800728,Temple,USA,1994,1,17,82,8.0,3.0,2.9,0.1,0.026000000000000002,0.115,0.172,0.49700000000000005,0.20199999999999999,1999-00 1693,Aaron Williams,WAS,28.0,205.74,102.0582,Xavier,USA,Undrafted,Undrafted,Undrafted,81,7.6,5.0,0.7,2.2,0.122,0.18600000000000003,0.18,0.5720000000000001,0.062,1999-00 1694,Adam Keefe,UTA,30.0,205.74,104.32616,Stanford,USA,1992,1,10,62,2.2,2.2,0.5,-3.3,0.09699999999999999,0.187,0.149,0.46299999999999997,0.09300000000000001,1999-00 1695,Adonal Foyle,GSW,25.0,208.28,113.398,Colgate,St. Vincent & Grenadines,1997,1,8,76,5.5,5.6,0.6,-9.8,0.10400000000000001,0.163,0.127,0.5,0.04,1999-00 1696,Adrian Griffin,BOS,25.0,195.58,97.52228000000001,Seton Hall,USA,Undrafted,Undrafted,Undrafted,72,6.7,5.2,2.5,-1.1,0.071,0.156,0.129,0.503,0.135,1999-00 1697,Al Harrington,IND,20.0,205.74,115.212368,None,USA,1998,1,25,50,6.6,3.2,0.8,6.0,0.066,0.151,0.201,0.524,0.073,1999-00 1698,Alan Henderson,ATL,27.0,205.74,106.59411999999999,Indiana,USA,1995,1,16,82,13.2,7.0,0.9,-6.7,0.10400000000000001,0.12300000000000001,0.19399999999999998,0.503,0.045,1999-00 1699,Aleksandar Radojevic,TOR,23.0,220.98,111.13004,Barton Community College,USA,1999,1,12,3,2.3,2.7,0.3,-22.1,0.061,0.231,0.228,0.363,0.077,1999-00 1700,Allan Houston,NYK,29.0,198.12,90.7184,Tennessee,USA,1993,1,11,82,19.7,3.3,2.7,2.6,0.015,0.085,0.24,0.569,0.13,1999-00 1701,Allen Iverson,PHI,25.0,182.88,74.84268,Georgetown,USA,1996,1,1,70,28.4,3.8,4.7,1.2,0.027000000000000003,0.078,0.33899999999999997,0.496,0.22,1999-00 1702,Alonzo Mourning,MIA,30.0,208.28,118.38751200000002,Georgetown,USA,1992,1,2,79,21.7,9.5,1.6,5.8,0.096,0.212,0.282,0.596,0.086,1999-00 1703,Alvin Williams,TOR,25.0,195.58,83.91452,Villanova,USA,1997,2,47,55,5.3,1.5,2.3,-4.8,0.035,0.083,0.198,0.46299999999999997,0.258,1999-00 1704,Andrae Patterson,MIN,24.0,205.74,107.95489599999999,Indiana,USA,1998,2,46,5,1.2,0.4,0.2,-9.8,0.053,0.083,0.099,0.75,0.063,1999-00 1705,Andre Miller,CLE,24.0,187.96,92.079176,Utah,USA,1999,1,8,82,11.1,3.4,5.8,-1.6,0.046,0.105,0.222,0.517,0.386,1999-00 1706,Andrew DeClercq,CLE,27.0,208.28,104.32616,Florida,USA,1995,2,34,82,6.6,5.4,0.7,-2.6,0.095,0.17300000000000001,0.149,0.53,0.05,1999-00 1707,Andrew Lang,NYK,34.0,210.82,124.7378,Arkansas,USA,1988,2,28,19,3.1,3.2,0.2,0.7,0.076,0.198,0.14,0.44,0.021,1999-00 1708,Anfernee Hardaway,PHX,28.0,200.66,97.52228000000001,Memphis,USA,1993,1,3,60,16.9,5.8,5.3,8.8,0.047,0.121,0.212,0.5489999999999999,0.23,1999-00 1709,Anthony Avent,LAC,30.0,205.74,108.86208,Seton Hall,USA,1991,1,15,49,1.7,1.5,0.2,-11.9,0.062,0.155,0.154,0.368,0.046,1999-00 1710,Bill Curley,GSW,28.0,205.74,111.13004,Boston College,USA,1994,1,22,28,2.7,1.8,0.5,-14.1,0.062,0.133,0.141,0.48100000000000004,0.073,1999-00 1711,A.J. Bramlett,CLE,23.0,208.28,102.965384,Arizona,USA,1999,2,39,8,1.0,2.8,0.0,-32.6,0.158,0.20800000000000002,0.146,0.19,0.0,1999-00 1712,Billy Owens,GSW,31.0,205.74,102.0582,Syracuse,USA,1991,1,3,62,6.0,4.9,1.6,-2.7,0.079,0.17,0.162,0.462,0.122,1999-00 1713,Cedric Henderson,CLE,25.0,200.66,102.0582,Memphis,USA,1997,2,44,61,5.4,2.3,0.9,-6.3,0.035,0.111,0.17600000000000002,0.441,0.083,1999-00 1714,Charles Barkley,HOU,37.0,198.12,114.30518400000001,Auburn,USA,1984,1,5,20,14.5,10.5,3.2,-2.4,0.125,0.252,0.21600000000000003,0.534,0.165,1999-00 1715,Charles Oakley,TOR,36.0,205.74,111.13004,Virginia Union,USA,1985,1,9,80,6.9,6.8,3.2,0.9,0.052000000000000005,0.19899999999999998,0.13699999999999998,0.45899999999999996,0.157,1999-00 1716,Charles R. Jones,LAC,24.0,190.5,81.64656,Long Island-Brooklyn,USA,Undrafted,Undrafted,Undrafted,56,3.4,1.1,1.7,-14.6,0.026000000000000002,0.078,0.159,0.445,0.233,1999-00 1717,Charlie Ward,NYK,29.0,187.96,86.18248,Florida State,USA,1994,1,26,72,7.3,3.2,4.2,4.4,0.013999999999999999,0.11699999999999999,0.135,0.5589999999999999,0.22399999999999998,1999-00 1718,Chauncey Billups,DEN,23.0,190.5,91.625584,Colorado,USA,1997,1,3,13,8.6,2.6,3.0,-3.8,0.025,0.095,0.207,0.465,0.214,1999-00 1719,Cherokee Parks,VAN,27.0,210.82,108.86208,Duke,USA,1995,1,12,56,3.0,3.3,0.6,-6.2,0.079,0.191,0.107,0.521,0.068,1999-00 1720,Chris Anstey,CHI,25.0,213.36,112.94440800000001,None,USA,1997,1,18,73,6.0,3.8,0.9,-6.5,0.106,0.221,0.22899999999999998,0.512,0.126,1999-00 1721,Chris Carr,CHI,26.0,198.12,99.79024,Southern Illinois,USA,1995,2,56,57,9.3,3.0,1.5,-11.3,0.040999999999999995,0.133,0.257,0.48200000000000004,0.147,1999-00 1722,Chris Childs,NYK,32.0,190.5,88.45044,Boise State,USA,Undrafted,Undrafted,Undrafted,71,5.3,2.1,4.0,-0.8,0.012,0.092,0.14,0.491,0.284,1999-00 1723,Chris Crawford,ATL,25.0,205.74,106.59411999999999,Marquette,USA,1997,2,50,55,4.6,1.8,0.6,-4.6,0.083,0.079,0.2,0.47600000000000003,0.084,1999-00 1724,Chris Dudley,NYK,35.0,210.82,117.93392,Yale,USA,1987,4,75,47,1.2,2.9,0.1,-9.1,0.161,0.19,0.096,0.349,0.017,1999-00 1725,Chris Gatling,DEN,32.0,208.28,99.79024,Old Dominion,USA,1991,1,16,85,11.9,5.9,0.8,-1.9,0.091,0.209,0.263,0.525,0.068,1999-00 1726,Chris Herren,DEN,24.0,187.96,86.18248,Fresno State,USA,1999,2,33,45,3.1,1.2,2.5,-5.5,0.023,0.075,0.136,0.498,0.297,1999-00 1727,Chris Mills,GSW,30.0,200.66,97.975872,Arizona,USA,1993,1,22,20,16.1,6.2,2.4,-6.3,0.071,0.138,0.22899999999999998,0.489,0.121,1999-00 1728,Chris Mullin,IND,36.0,200.66,97.52228000000001,St. John's (NY),USA,1985,1,7,47,5.1,1.6,0.8,6.5,0.027000000000000003,0.11800000000000001,0.179,0.59,0.10800000000000001,1999-00 1729,Chris Webber,SAC,27.0,208.28,111.13004,Michigan,USA,1993,1,1,75,24.5,10.5,4.6,1.3,0.069,0.21600000000000003,0.282,0.53,0.207,1999-00 1730,Chris Whitney,WAS,28.0,182.88,79.3786,Clemson,USA,1993,2,47,82,7.8,1.6,3.8,-1.8,0.013999999999999999,0.084,0.187,0.5539999999999999,0.319,1999-00 1731,Bill Wennington,SAC,37.0,213.36,111.13004,St. John's (NY),USA,1985,1,16,7,2.0,2.7,0.1,-7.8,0.091,0.28600000000000003,0.16899999999999998,0.335,0.028999999999999998,1999-00 1732,Cedric Ceballos,DAL,30.0,200.66,99.79024,Cal State-Fullerton,USA,1990,2,48,69,16.6,6.7,1.3,-2.4,0.08800000000000001,0.147,0.263,0.516,0.07400000000000001,1999-00 1733,Carlos Rogers,HOU,29.0,210.82,105.23334399999999,Tennessee State,USA,1994,1,11,53,8.0,5.2,0.8,-10.7,0.1,0.17800000000000002,0.179,0.5489999999999999,0.068,1999-00 1734,Christian Laettner,DET,30.0,210.82,111.13004,Duke,USA,1992,1,3,82,12.2,6.7,2.3,-0.8,0.083,0.183,0.201,0.539,0.121,1999-00 1735,Calbert Cheaney,BOS,28.0,200.66,97.52228000000001,Indiana,USA,1993,1,6,67,4.0,2.1,1.2,-3.7,0.019,0.109,0.11199999999999999,0.473,0.09300000000000001,1999-00 1736,Bo Outlaw,ORL,29.0,203.2,95.25432,Houston,USA,Undrafted,Undrafted,Undrafted,82,6.0,6.4,3.0,6.0,0.09699999999999999,0.14800000000000002,0.1,0.597,0.14800000000000002,1999-00 1737,Bimbo Coles,ATL,32.0,187.96,82.553744,Virginia Tech,USA,1990,2,40,80,8.1,2.2,3.6,-5.5,0.017,0.081,0.175,0.494,0.239,1999-00 1738,Bob Sura,CLE,27.0,195.58,90.7184,Florida State,USA,1995,1,17,73,13.8,3.9,3.9,-3.6,0.025,0.12,0.20800000000000002,0.545,0.215,1999-00 1739,Bobby Jackson,MIN,27.0,185.42,83.91452,Minnesota,USA,1997,1,23,73,5.1,2.1,2.4,-2.4,0.054000000000000006,0.113,0.195,0.474,0.262,1999-00 1740,Bobby Phills,CHH,30.0,195.58,95.25432,Southern,USA,1991,2,45,28,13.6,2.5,2.8,0.8,0.024,0.077,0.21899999999999997,0.524,0.175,1999-00 1741,Bonzi Wells,POR,23.0,195.58,95.25432,Ball State,USA,1998,1,11,66,8.8,2.8,1.5,6.2,0.08900000000000001,0.102,0.252,0.54,0.153,1999-00 1742,Brad Miller,CHH,24.0,213.36,118.38751200000002,Purdue,USA,Undrafted,Undrafted,Undrafted,55,7.7,5.3,0.8,9.9,0.136,0.198,0.19,0.5579999999999999,0.076,1999-00 1743,Calvin Booth,WAS,24.0,210.82,109.315672,Penn State,USA,1999,2,35,11,3.8,2.9,0.6,-2.7,0.12300000000000001,0.157,0.184,0.40299999999999997,0.073,1999-00 1744,Brent Price,VAN,31.0,185.42,83.91452,Oklahoma,USA,1992,2,32,41,3.4,0.9,1.7,-3.7,0.022000000000000002,0.083,0.19399999999999998,0.518,0.271,1999-00 1745,Brevin Knight,CLE,24.0,177.8,77.11064,Stanford,USA,1997,1,16,65,9.3,3.0,7.0,-2.6,0.023,0.098,0.191,0.47100000000000003,0.41700000000000004,1999-00 1746,Brent Barry,SEA,28.0,198.12,88.45044,Oregon State,USA,1995,1,15,80,11.8,4.7,3.6,0.6,0.02,0.133,0.15,0.609,0.157,1999-00 1747,Brian Shaw,LAL,34.0,198.12,90.7184,California-Santa Barbara,USA,1988,1,24,74,4.1,2.9,2.7,5.6,0.039,0.14400000000000002,0.147,0.441,0.239,1999-00 1748,Cal Bowdler,ATL,23.0,208.28,111.13004,Old Dominion,USA,1999,1,17,46,2.7,1.8,0.3,-13.0,0.055,0.16899999999999998,0.156,0.46299999999999997,0.055999999999999994,1999-00 1749,Brian Grant,POR,28.0,205.74,115.212368,Xavier,USA,1994,1,8,63,7.3,5.5,1.0,4.9,0.114,0.2,0.17800000000000002,0.54,0.08,1999-00 1750,Bryce Drew,HOU,25.0,190.5,83.91452,Valparaiso,USA,1998,1,16,72,5.8,1.4,2.3,1.4,0.02,0.068,0.17,0.48100000000000004,0.19699999999999998,1999-00 1751,Bryant Stith,DEN,29.0,195.58,94.34713599999999,Virginia,USA,1992,1,13,45,5.6,1.9,1.4,1.7,0.036000000000000004,0.09699999999999999,0.162,0.568,0.138,1999-00 1752,Bryon Russell,UTA,29.0,200.66,102.0582,Long Beach State,USA,1993,2,45,82,14.1,5.2,1.9,8.9,0.043,0.136,0.184,0.55,0.087,1999-00 1753,Bruno Sundov,DAL,20.0,218.44,99.79024,None,Croatia,1998,2,35,14,1.9,0.9,0.1,-10.3,0.086,0.135,0.242,0.408,0.051,1999-00 1754,Bruce Bowen,MIA,29.0,200.66,90.7184,Cal State-Fullerton,USA,Undrafted,Undrafted,Undrafted,69,2.8,1.4,0.5,3.0,0.036000000000000004,0.09300000000000001,0.125,0.46,0.066,1999-00 1755,Brian Skinner,LAC,24.0,205.74,115.66596000000001,Baylor,USA,1998,1,22,33,5.4,6.1,0.3,-6.9,0.09300000000000001,0.2,0.115,0.55,0.024,1999-00 1756,Bryant Reeves,VAN,27.0,213.36,124.7378,Oklahoma State,USA,1995,1,6,69,8.9,5.7,1.2,-5.8,0.08199999999999999,0.179,0.193,0.48100000000000004,0.075,1999-00 1757,Mike Miller,ORL,21.0,203.2,98.88305600000001,Florida,USA,2000,1,5,82,11.9,4.0,1.7,2.6,0.03,0.122,0.183,0.541,0.095,2000-01 1758,Mike Penberthy,LAL,26.0,190.5,81.64656,Master's,USA,Undrafted,Undrafted,Undrafted,53,5.0,1.2,1.3,-0.6,0.013000000000000001,0.067,0.141,0.5670000000000001,0.129,2000-01 1759,Mike Smith,WAS,25.0,203.2,88.45044,Louisiana-Monroe,USA,2000,2,35,17,3.0,1.3,0.6,-8.5,0.061,0.084,0.177,0.386,0.09300000000000001,2000-01 1760,Mikki Moore,DET,25.0,213.36,104.32616,Nebraska,USA,Undrafted,Undrafted,Undrafted,81,4.4,3.9,0.4,-2.8,0.114,0.187,0.151,0.552,0.049,2000-01 1761,Milt Palacio,BOS,23.0,190.5,88.45044,Colorado State,Belize,Undrafted,Undrafted,Undrafted,58,5.9,1.8,2.6,-0.8,0.024,0.08,0.155,0.556,0.23399999999999999,2000-01 1762,Mitch Richmond,WAS,36.0,195.58,97.52228000000001,Kansas State,USA,1988,1,5,37,16.2,2.9,3.0,-2.4,0.013999999999999999,0.09300000000000001,0.24,0.521,0.16,2000-01 1763,Monty Williams,ORL,29.0,203.2,102.0582,Notre Dame,USA,1994,1,24,82,5.0,3.0,1.0,-6.6,0.08,0.145,0.191,0.485,0.122,2000-01 1764,Moochie Norris,HOU,27.0,185.42,79.3786,West Florida,USA,1996,2,33,82,6.6,2.4,3.5,3.2,0.031,0.106,0.16899999999999998,0.546,0.284,2000-01 1765,Olumide Oyedeji,SEA,20.0,208.28,108.86208,None,Nigeria,2000,2,42,30,1.5,2.2,0.1,11.6,0.13699999999999998,0.21899999999999997,0.114,0.532,0.013999999999999999,2000-01 1766,Morris Peterson,TOR,23.0,200.66,98.88305600000001,Michigan State,USA,2000,1,21,80,9.3,3.2,1.3,2.5,0.068,0.094,0.20199999999999999,0.507,0.09300000000000001,2000-01 1767,Muggsy Bogues,TOR,36.0,160.02,61.688512,Wake Forest,USA,1987,1,12,3,0.0,1.0,1.7,-27.4,0.0,0.12,0.078,0.0,0.294,2000-01 1768,Nazr Mohammed,ATL,23.0,208.28,108.86208,Kentucky,USA,1998,1,29,58,7.6,5.3,0.3,-2.0,0.135,0.233,0.23,0.52,0.034,2000-01 1769,Nick Anderson,SAC,33.0,198.12,103.418976,Illinois,USA,1989,1,11,21,1.8,1.2,0.6,0.9,0.019,0.136,0.171,0.33299999999999996,0.125,2000-01 1770,Nick Van Exel,DEN,29.0,185.42,86.18248,Cincinnati,USA,1993,2,37,71,17.7,3.4,8.5,-0.4,0.018000000000000002,0.08,0.23399999999999999,0.515,0.38299999999999995,2000-01 1771,Obinna Ekezie,DAL,25.0,205.74,117.93392,Maryland,Nigeria,1999,2,37,33,3.1,2.4,0.3,-11.1,0.133,0.201,0.193,0.484,0.06,2000-01 1772,Olden Polynice,UTA,36.0,213.36,113.398,Virginia,USA,1987,1,8,81,5.3,4.7,0.4,3.2,0.122,0.165,0.15,0.484,0.028999999999999998,2000-01 1773,Othella Harrington,NYK,27.0,205.74,106.59411999999999,Georgetown,USA,1996,2,30,74,9.0,5.2,0.8,-2.3,0.09300000000000001,0.155,0.192,0.5489999999999999,0.052000000000000005,2000-01 1774,Mookie Blaylock,GSW,34.0,185.42,83.91452,Oklahoma,USA,1989,1,12,69,11.0,3.9,6.7,-8.0,0.03,0.09699999999999999,0.174,0.455,0.32,2000-01 1775,Mike Bibby,VAN,23.0,185.42,86.18248,Arizona,USA,1998,1,2,82,15.9,3.7,8.4,-6.8,0.017,0.091,0.21100000000000002,0.525,0.376,2000-01 1776,Metta World Peace,CHI,21.0,200.66,111.58363200000001,St. John's (NY),USA,1999,1,16,76,11.9,3.9,3.0,-8.4,0.028999999999999998,0.124,0.217,0.483,0.171,2000-01 1777,Michael Smith,WAS,29.0,203.2,108.86208,Providence,USA,1994,2,35,79,3.8,7.1,1.3,-11.7,0.11900000000000001,0.29,0.095,0.527,0.099,2000-01 1778,Mark Bryant,DAL,36.0,205.74,113.398,Seton Hall,USA,1988,1,21,18,1.1,1.2,0.2,-9.6,0.044000000000000004,0.191,0.121,0.428,0.042,2000-01 1779,Otis Thorpe,CHH,38.0,208.28,112.490816,Providence,USA,1984,1,9,49,2.8,3.0,0.6,-0.7,0.095,0.174,0.126,0.48700000000000004,0.077,2000-01 1780,Mark Madsen,LAL,25.0,205.74,108.86208,Stanford,USA,2000,1,29,70,2.0,2.2,0.3,-5.1,0.127,0.13699999999999998,0.10800000000000001,0.53,0.06,2000-01 1781,Mark Pope,MIL,28.0,208.28,106.59411999999999,Kentucky,USA,1996,2,52,63,2.4,2.3,0.6,6.4,0.066,0.105,0.083,0.48,0.052000000000000005,2000-01 1782,Mark Strickland,NJN,30.0,208.28,99.79024,Temple,USA,Undrafted,Undrafted,Undrafted,55,4.5,2.9,0.4,-8.3,0.078,0.17300000000000001,0.183,0.465,0.059000000000000004,2000-01 1783,Mateen Cleaves,DET,23.0,187.96,92.98635999999999,Michigan State,USA,2000,1,14,78,5.4,1.7,2.7,-2.4,0.022000000000000002,0.091,0.205,0.45799999999999996,0.281,2000-01 1784,Matt Bullard,HOU,34.0,208.28,106.59411999999999,Iowa,USA,Undrafted,Undrafted,Undrafted,61,5.8,2.1,0.7,7.9,0.027000000000000003,0.11800000000000001,0.151,0.569,0.067,2000-01 1785,Matt Geiger,PHI,31.0,215.9,112.490816,Georgia Tech,USA,1992,2,42,35,6.1,4.0,0.4,4.0,0.1,0.191,0.22699999999999998,0.43,0.047,2000-01 1786,Matt Harpring,CLE,25.0,200.66,104.779752,Georgia Tech,USA,1998,1,15,56,11.1,4.3,1.8,-4.9,0.065,0.105,0.191,0.522,0.11,2000-01 1787,Matt Maloney,ATL,29.0,190.5,90.7184,Pennsylvania,USA,Undrafted,Undrafted,Undrafted,55,6.7,2.1,2.8,-2.8,0.011000000000000001,0.081,0.14,0.508,0.187,2000-01 1788,Maurice Taylor,HOU,24.0,205.74,117.93392,Michigan,USA,1997,1,14,69,13.0,5.5,1.5,-3.5,0.065,0.16,0.231,0.518,0.096,2000-01 1789,Michael Curry,DET,32.0,195.58,95.25432,Georgia Southern,USA,Undrafted,Undrafted,Undrafted,68,5.2,1.8,1.9,-3.6,0.015,0.077,0.124,0.507,0.138,2000-01 1790,Michael Dickerson,VAN,26.0,193.04,86.18248,Arizona,USA,1998,1,14,70,16.3,3.3,3.3,-5.9,0.032,0.069,0.226,0.501,0.157,2000-01 1791,Michael Doleac,ORL,24.0,210.82,118.841104,Utah,USA,1998,1,12,77,6.4,3.5,0.8,3.4,0.055,0.171,0.196,0.44299999999999995,0.077,2000-01 1792,Michael Finley,DAL,28.0,200.66,97.52228000000001,Wisconsin,USA,1995,1,21,82,21.5,5.2,4.4,5.5,0.036000000000000004,0.1,0.249,0.521,0.18,2000-01 1793,Michael Hawkins,CLE,28.0,182.88,80.73937600000001,Xavier,USA,Undrafted,Undrafted,Undrafted,10,0.8,0.5,1.3,-20.8,0.028999999999999998,0.054000000000000006,0.094,0.444,0.271,2000-01 1794,Michael Olowokandi,LAC,26.0,213.36,131.995272,Pacific,Nigeria,1998,1,1,82,8.5,6.4,0.6,-6.9,0.09300000000000001,0.192,0.209,0.451,0.038,2000-01 1795,Michael Redd,MIL,21.0,198.12,97.068688,Ohio State,USA,2000,2,43,6,2.2,0.7,0.2,-13.3,0.073,0.038,0.28300000000000003,0.3,0.055999999999999994,2000-01 1796,Michael Ruffin,CHI,24.0,203.2,112.490816,Tulsa,USA,1999,2,32,45,2.6,5.8,0.9,-7.0,0.134,0.225,0.091,0.48,0.07,2000-01 1797,Michael Stewart,TOR,26.0,208.28,104.32616,California,USA,Undrafted,Undrafted,Undrafted,26,1.3,1.1,0.1,-21.2,0.131,0.14800000000000002,0.16699999999999998,0.39399999999999996,0.03,2000-01 1798,Mark Jackson,NYK,36.0,190.5,92.98635999999999,St. John's (NY),USA,1987,1,18,83,7.6,3.7,8.0,0.4,0.027999999999999997,0.107,0.14300000000000002,0.505,0.396,2000-01 1799,Reggie Slater,MIN,30.0,200.66,115.66596000000001,Wyoming,USA,Undrafted,Undrafted,Undrafted,55,4.6,3.4,0.5,3.5,0.133,0.17300000000000001,0.174,0.568,0.055,2000-01 1800,Pat Garrity,ORL,24.0,205.74,107.95489599999999,Notre Dame,USA,1998,1,19,76,8.3,2.8,0.7,-1.6,0.034,0.11900000000000001,0.192,0.507,0.055999999999999994,2000-01 1801,Robert Horry,LAL,30.0,208.28,106.59411999999999,Alabama,USA,1992,1,11,79,5.2,3.7,1.6,2.1,0.068,0.149,0.141,0.489,0.124,2000-01 1802,Robert Pack,DEN,32.0,187.96,86.18248,Southern California,USA,Undrafted,Undrafted,Undrafted,74,6.5,1.9,4.0,-4.4,0.025,0.094,0.213,0.493,0.375,2000-01 1803,Robert Traylor,CLE,24.0,203.2,131.088088,Michigan,USA,1998,1,6,70,5.7,4.3,0.9,-3.7,0.12,0.175,0.18100000000000002,0.521,0.08800000000000001,2000-01 1804,Rod Strickland,POR,34.0,190.5,83.91452,DePaul,USA,1988,1,19,54,9.2,2.6,5.6,-6.2,0.031,0.08900000000000001,0.204,0.493,0.385,2000-01 1805,Rodney Buford,PHI,23.0,195.58,85.728888,Creighton,USA,1999,2,53,47,5.3,1.6,0.4,-0.3,0.031,0.11699999999999999,0.22399999999999998,0.489,0.055,2000-01 1806,Rodney Rogers,PHX,30.0,200.66,115.66596000000001,Wake Forest,USA,1993,1,9,82,12.2,4.4,2.2,1.3,0.049,0.14400000000000002,0.23199999999999998,0.507,0.145,2000-01 1807,Ron Harper,LAL,37.0,198.12,97.52228000000001,Miami (OH),USA,1986,1,8,47,6.5,3.5,2.4,4.2,0.046,0.11599999999999999,0.139,0.525,0.14400000000000002,2000-01 1808,Ron Mercer,CHI,25.0,200.66,95.25432,Kentucky,USA,1997,1,6,61,19.7,3.9,3.3,-11.0,0.033,0.08,0.248,0.49200000000000005,0.16,2000-01 1809,Roshown McLeod,PHI,25.0,203.2,100.243832,Duke,USA,1998,1,20,35,9.6,3.4,1.7,-2.6,0.046,0.1,0.205,0.475,0.11199999999999999,2000-01 1810,Ruben Garces,GSW,27.0,205.74,111.13004,Providence,USA,Undrafted,Undrafted,Undrafted,13,1.2,2.2,0.4,11.3,0.172,0.16699999999999998,0.149,0.313,0.08800000000000001,2000-01 1811,Ruben Patterson,SEA,25.0,195.58,101.604608,Cincinnati,USA,1998,2,31,76,13.0,5.0,2.1,3.1,0.106,0.11,0.23199999999999998,0.544,0.13,2000-01 1812,Ruben Wolkowyski,SEA,27.0,208.28,122.46983999999999,None,Argentina,Undrafted,Undrafted,Undrafted,34,2.2,1.4,0.1,0.9,0.043,0.113,0.153,0.39899999999999997,0.015,2000-01 1813,Ryan Bowen,DEN,25.0,200.66,99.79024,Iowa,USA,1998,2,55,57,3.4,2.0,0.5,-2.4,0.09300000000000001,0.083,0.11699999999999999,0.585,0.068,2000-01 1814,Sam Cassell,MIL,31.0,190.5,83.91452,Florida State,USA,1993,1,24,76,18.2,3.8,7.6,4.7,0.019,0.098,0.24600000000000002,0.542,0.34600000000000003,2000-01 1815,Sam Jacobson,MIN,25.0,193.04,97.52228000000001,Minnesota,USA,1998,1,26,14,1.4,0.4,0.3,2.5,0.055999999999999994,0.067,0.14400000000000002,0.518,0.08199999999999999,2000-01 1816,Sam Mitchell,MIN,37.0,200.66,97.52228000000001,Mercer,USA,1985,3,54,82,3.5,1.5,0.7,-4.7,0.031,0.122,0.161,0.455,0.08900000000000001,2000-01 1817,Sam Perkins,IND,40.0,205.74,117.93392,North Carolina,USA,1984,1,4,64,3.8,2.6,0.6,0.1,0.037000000000000005,0.159,0.12300000000000001,0.499,0.066,2000-01 1818,Mark Blount,BOS,25.0,213.36,104.32616,Pittsburgh,USA,1997,2,54,64,3.9,3.6,0.5,-2.0,0.1,0.147,0.12300000000000001,0.541,0.049,2000-01 1819,Samaki Walker,SAS,25.0,205.74,117.93392,Louisville,USA,1996,1,9,61,5.3,4.0,0.5,-0.6,0.083,0.209,0.185,0.524,0.053,2000-01 1820,Ricky Davis,MIA,21.0,200.66,89.357624,Iowa,USA,1998,1,21,7,4.6,1.0,1.6,21.1,0.015,0.083,0.22899999999999998,0.49200000000000005,0.23399999999999999,2000-01 1821,P.J. Brown,CHH,31.0,210.82,108.86208,Louisiana Tech,USA,1992,2,29,80,8.5,9.3,1.6,5.3,0.10400000000000001,0.19899999999999998,0.124,0.518,0.071,2000-01 1822,Rick Fox,LAL,31.0,200.66,109.769264,North Carolina,Canada,1991,1,24,82,9.6,4.0,3.2,6.1,0.04,0.11599999999999999,0.162,0.562,0.168,2000-01 1823,Richard Hamilton,WAS,23.0,198.12,83.91452,Connecticut,USA,1999,1,7,78,18.1,3.1,2.9,-7.2,0.034,0.076,0.281,0.508,0.172,2000-01 1824,Patrick Ewing,SEA,38.0,213.36,115.66596000000001,Georgetown,Jamaica,1985,1,1,79,9.6,7.4,1.2,-4.2,0.066,0.248,0.20199999999999999,0.478,0.071,2000-01 1825,Paul McPherson,GSW,22.0,193.04,95.25432,DePaul,USA,Undrafted,Undrafted,Undrafted,55,4.8,1.4,0.7,-2.5,0.069,0.078,0.204,0.542,0.105,2000-01 1826,Paul Pierce,BOS,23.0,198.12,104.32616,Kansas,USA,1998,1,10,82,25.3,6.4,3.1,-1.3,0.034,0.16699999999999998,0.306,0.563,0.166,2000-01 1827,Peja Stojakovic,SAC,24.0,205.74,103.872568,None,Serbia and Montenegro,1996,1,14,75,20.4,5.8,2.2,5.7,0.036000000000000004,0.124,0.223,0.5760000000000001,0.094,2000-01 1828,Pepe Sanchez,PHI,24.0,193.04,88.45044,Temple,Argentina,Undrafted,Undrafted,Undrafted,29,0.7,0.5,1.4,-1.4,0.023,0.08900000000000001,0.107,0.34600000000000003,0.402,2000-01 1829,Pervis Ellison,SEA,34.0,205.74,95.25432,Louisville,USA,1989,1,1,9,0.7,1.3,0.3,6.8,0.065,0.23800000000000002,0.115,0.381,0.125,2000-01 1830,Popeye Jones,WAS,31.0,203.2,113.398,Murray State,USA,1992,2,41,45,3.6,4.9,0.7,-3.1,0.141,0.267,0.134,0.457,0.075,2000-01 1831,Quentin Richardson,LAC,21.0,198.12,101.151016,DePaul,USA,2000,1,18,76,8.1,3.4,0.8,-5.6,0.08800000000000001,0.127,0.218,0.516,0.08199999999999999,2000-01 1832,Quincy Lewis,UTA,24.0,200.66,97.52228000000001,Minnesota,USA,1999,1,19,35,3.5,1.3,0.5,6.1,0.046,0.1,0.172,0.469,0.077,2000-01 1833,Raef LaFrentz,DEN,25.0,210.82,108.86208,Kansas,USA,1998,1,3,78,12.9,7.8,1.4,-0.6,0.075,0.191,0.18600000000000003,0.544,0.073,2000-01 1834,Rafer Alston,MIL,24.0,187.96,78.471416,Fresno State,USA,1998,2,39,37,2.1,0.8,1.8,-5.9,0.015,0.114,0.17800000000000002,0.429,0.386,2000-01 1835,Raja Bell,PHI,24.0,195.58,92.532768,Florida International,U.S. Virgin Islands,Undrafted,Undrafted,Undrafted,5,1.0,0.2,0.0,11.7,0.0,0.038,0.138,0.35700000000000004,0.0,2000-01 1836,Randy Brown,BOS,33.0,187.96,86.18248,New Mexico State,USA,1991,2,31,54,4.1,1.8,2.9,-1.5,0.021,0.078,0.115,0.43799999999999994,0.19699999999999998,2000-01 1837,Randy Livingston,GSW,26.0,193.04,95.25432,Louisiana State,USA,1996,2,42,2,0.0,0.5,0.5,-25.6,0.0,0.16699999999999998,0.13,0.0,0.33299999999999996,2000-01 1838,Rashard Lewis,SEA,21.0,208.28,97.52228000000001,None,USA,1998,2,32,78,14.8,6.9,1.6,1.5,0.06,0.165,0.182,0.5870000000000001,0.073,2000-01 1839,Rasheed Wallace,POR,26.0,210.82,104.32616,North Carolina,USA,1995,1,4,77,19.2,7.8,2.8,6.3,0.063,0.177,0.23399999999999999,0.56,0.128,2000-01 1840,Rasho Nesterovic,MIN,25.0,213.36,113.398,None,Slovenia,1998,1,17,73,4.5,3.9,0.6,0.6,0.08800000000000001,0.171,0.147,0.47200000000000003,0.053,2000-01 1841,Ray Allen,MIL,25.0,195.58,92.98635999999999,Connecticut,USA,1996,1,5,82,22.0,5.2,4.6,6.6,0.037000000000000005,0.11599999999999999,0.242,0.61,0.19899999999999998,2000-01 1842,Reggie Miller,IND,35.0,200.66,91.625584,UCLA,USA,1987,1,11,81,18.9,3.5,3.2,0.8,0.013999999999999999,0.086,0.215,0.574,0.145,2000-01 1843,Rick Brunson,NYK,29.0,193.04,86.18248,Temple,USA,Undrafted,Undrafted,Undrafted,22,2.1,1.0,1.4,-3.0,0.026000000000000002,0.091,0.166,0.38,0.287,2000-01 1844,Mario Elie,PHX,37.0,195.58,102.0582,American International,USA,1985,7,160,68,4.4,2.3,1.9,2.4,0.027999999999999997,0.09,0.10099999999999999,0.541,0.133,2000-01 1845,Johnny Newman,NJN,37.0,200.66,95.25432,Richmond,USA,1986,2,29,82,10.9,2.1,1.4,-8.6,0.019,0.08199999999999999,0.20800000000000002,0.542,0.105,2000-01 1846,Marcus Camby,NYK,27.0,210.82,102.0582,Massachusetts,USA,1996,1,2,63,12.0,11.5,0.8,2.3,0.115,0.29,0.171,0.5589999999999999,0.043,2000-01 1847,Hubert Davis,WAS,31.0,195.58,83.007336,North Carolina,USA,1992,1,20,66,7.9,2.1,1.7,-0.1,0.019,0.073,0.14400000000000002,0.569,0.10400000000000001,2000-01 1848,Jabari Smith,SAC,24.0,210.82,113.398,Louisiana State,USA,2000,2,45,9,2.9,0.9,0.7,2.6,0.019,0.106,0.2,0.528,0.15,2000-01 1849,J.R. Reid,CLE,33.0,205.74,112.037224,North Carolina,USA,1989,1,5,6,1.7,1.3,0.2,-22.4,0.128,0.081,0.109,0.5870000000000001,0.042,2000-01 1850,Isaiah Rider,LAL,30.0,195.58,97.52228000000001,Nevada-Las Vegas,USA,1993,1,5,67,7.6,2.3,1.7,0.0,0.040999999999999995,0.107,0.226,0.499,0.155,2000-01 1851,Ira Newble,SAS,26.0,200.66,97.52228000000001,Miami (OH),USA,Undrafted,Undrafted,Undrafted,27,2.0,1.3,0.2,-15.1,0.07400000000000001,0.142,0.171,0.435,0.063,2000-01 1852,Jelani McCoy,SEA,23.0,208.28,111.13004,UCLA,USA,1998,2,33,70,4.5,3.6,0.8,-4.2,0.091,0.153,0.155,0.52,0.08199999999999999,2000-01 1853,Jermaine O'Neal,IND,22.0,210.82,102.511792,None,USA,1996,1,17,81,12.9,9.8,1.2,0.7,0.111,0.22,0.214,0.501,0.066,2000-01 1854,Jerome Kersey,MIL,39.0,200.66,97.52228000000001,Longwood,USA,1984,2,46,22,3.3,2.0,0.7,1.3,0.036000000000000004,0.196,0.15,0.473,0.098,2000-01 1855,Jacque Vaughn,UTA,26.0,185.42,86.18248,Kansas,USA,1997,1,27,82,6.1,1.8,3.9,-6.3,0.013999999999999999,0.1,0.171,0.535,0.34299999999999997,2000-01 1856,Jerome Moiso,BOS,23.0,208.28,105.23334399999999,UCLA,France,2000,1,11,24,1.5,1.8,0.1,-2.2,0.091,0.273,0.187,0.42200000000000004,0.043,2000-01 1857,Jerry Stackhouse,DET,26.0,198.12,98.88305600000001,North Carolina,USA,1995,1,3,80,29.8,3.9,5.1,-1.2,0.032,0.073,0.348,0.521,0.258,2000-01 1858,Jim Jackson,CLE,30.0,198.12,99.79024,Ohio State,USA,1992,1,4,56,11.5,4.0,2.9,-8.9,0.035,0.11900000000000001,0.22399999999999998,0.455,0.17600000000000002,2000-01 1859,Jim McIlvaine,NJN,28.0,215.9,108.86208,Marquette,USA,1994,2,32,18,1.6,1.9,0.2,-11.7,0.048,0.179,0.099,0.42100000000000004,0.038,2000-01 1860,Joe Smith,DET,25.0,208.28,102.0582,Maryland,USA,1995,1,1,69,12.3,7.1,1.1,-0.1,0.086,0.188,0.22,0.475,0.069,2000-01 1861,Joel Przybilla,MIL,21.0,215.9,115.66596000000001,Minnesota,USA,2000,1,9,33,0.8,2.2,0.1,-9.5,0.115,0.161,0.09,0.33899999999999997,0.011000000000000001,2000-01 1862,John Amaechi,ORL,30.0,208.28,122.46983999999999,Penn State,England,Undrafted,Undrafted,Undrafted,82,7.9,3.3,0.9,-5.3,0.048,0.128,0.21899999999999997,0.455,0.07400000000000001,2000-01 1863,John Coker,GSW,29.0,213.36,114.758776,Boise State,USA,Undrafted,Undrafted,Undrafted,6,0.3,0.8,0.3,-0.1,0.115,0.087,0.13699999999999998,0.125,0.083,2000-01 1864,John Crotty,UTA,31.0,187.96,87.996848,Virginia,USA,Undrafted,Undrafted,Undrafted,31,2.1,0.9,1.1,0.7,0.057999999999999996,0.07,0.159,0.44299999999999995,0.21100000000000002,2000-01 1865,Jerome Williams,TOR,28.0,205.74,93.439952,Georgetown,USA,1996,1,26,59,6.3,6.5,0.8,0.1,0.121,0.239,0.153,0.526,0.062,2000-01 1866,Jahidi White,WAS,25.0,205.74,131.54168,Georgetown,USA,1998,2,43,68,8.6,7.7,0.3,-7.3,0.131,0.255,0.192,0.535,0.021,2000-01 1867,Jake Tsakalidis,PHX,22.0,218.44,129.27372,None,Greece,2000,1,25,57,4.5,4.2,0.3,-3.1,0.09699999999999999,0.187,0.155,0.502,0.033,2000-01 1868,Jake Voskuhl,CHI,23.0,210.82,111.13004,Connecticut,USA,2000,2,33,16,1.9,2.1,0.3,-24.7,0.098,0.2,0.141,0.48100000000000004,0.068,2000-01 1869,Scot Pollard,SAC,26.0,210.82,120.20188,Kansas,USA,1997,1,19,77,6.5,6.0,0.6,9.1,0.11699999999999999,0.184,0.146,0.53,0.046,2000-01 1870,Jeff McInnis,LAC,26.0,193.04,80.73937600000001,North Carolina,USA,1996,2,37,81,12.9,2.7,5.5,-5.5,0.017,0.071,0.183,0.521,0.27,2000-01 1871,Jeff Foster,IND,24.0,210.82,109.769264,Texas State,USA,1999,1,21,71,3.5,5.5,0.5,4.1,0.14400000000000002,0.23600000000000002,0.121,0.49200000000000005,0.047,2000-01 1872,Jason Williams,SAC,25.0,185.42,86.18248,Florida,USA,1998,1,7,77,9.4,2.4,5.4,5.4,0.009000000000000001,0.075,0.16699999999999998,0.498,0.256,2000-01 1873,Jason Terry,ATL,23.0,187.96,78.017824,Arizona,USA,1999,1,10,82,19.7,3.3,4.9,-5.8,0.015,0.081,0.252,0.531,0.23600000000000002,2000-01 1874,Jason Kidd,PHX,28.0,193.04,96.16150400000001,California,USA,1994,1,2,77,16.9,6.4,9.8,2.0,0.033,0.151,0.22699999999999998,0.51,0.419,2000-01 1875,Jason Hart,MIL,23.0,187.96,82.10015200000001,Syracuse,USA,2000,2,49,1,2.0,0.0,1.0,-7.3,0.0,0.0,0.126,1.0,0.25,2000-01 1876,Jason Collier,HOU,23.0,213.36,117.93392,Georgia Tech,USA,2000,1,15,23,3.1,1.6,0.3,-12.5,0.059000000000000004,0.16,0.19399999999999998,0.435,0.05,2000-01 1877,Jason Caffey,MIL,28.0,203.2,116.119552,Alabama,USA,1995,1,20,70,7.1,5.0,0.8,-1.2,0.106,0.16899999999999998,0.168,0.544,0.057,2000-01 1878,Jaren Jackson,SAS,33.0,193.04,86.18248,Georgetown,USA,Undrafted,Undrafted,Undrafted,16,2.4,0.8,0.4,-4.5,0.011000000000000001,0.10099999999999999,0.18100000000000002,0.47700000000000004,0.095,2000-01 1879,Jamie Feick,NJN,26.0,205.74,115.66596000000001,Michigan State,USA,1996,2,48,6,3.7,9.3,0.8,-4.3,0.091,0.319,0.105,0.389,0.053,2000-01 1880,James Robinson,ORL,30.0,187.96,81.64656,Alabama,USA,1993,1,21,6,1.7,1.3,0.0,1.3,0.0,0.21100000000000002,0.13699999999999998,0.455,0.0,2000-01 1881,James Posey,DEN,24.0,203.2,97.52228000000001,Xavier,USA,1999,1,18,82,8.1,5.3,2.0,1.3,0.057999999999999996,0.146,0.149,0.511,0.11,2000-01 1882,Jamel Thomas,NJN,24.0,198.12,99.336648,Providence,USA,Undrafted,Undrafted,Undrafted,5,2.6,1.8,0.0,-16.2,0.068,0.10400000000000001,0.19399999999999998,0.342,0.0,2000-01 1883,Jamal Robinson,MIA,27.0,200.66,96.16150400000001,Virginia,USA,1997,Undrafted,Undrafted,6,1.0,1.8,0.3,-4.8,0.042,0.145,0.161,0.136,0.051,2000-01 1884,Jamal Mashburn,CHH,28.0,203.2,109.315672,Kentucky,USA,1993,1,4,76,20.1,7.6,5.4,3.7,0.034,0.184,0.268,0.493,0.262,2000-01 1885,Jamal Crawford,CHI,21.0,195.58,90.7184,Michigan,USA,2000,1,8,61,4.6,1.5,2.3,-14.1,0.01,0.092,0.17800000000000002,0.442,0.235,2000-01 1886,Jamaal Magloire,CHH,23.0,208.28,117.93392,Kentucky,Canada,2000,1,19,74,4.6,4.0,0.4,3.2,0.111,0.195,0.16399999999999998,0.506,0.042,2000-01 1887,Jalen Rose,IND,28.0,203.2,102.0582,Michigan,USA,1994,1,13,72,20.5,5.0,6.0,-0.3,0.015,0.11900000000000001,0.257,0.53,0.28800000000000003,2000-01 1888,John Starks,UTA,35.0,195.58,86.18248,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,75,9.3,2.1,2.4,3.8,0.017,0.073,0.18100000000000002,0.47600000000000003,0.13,2000-01 1889,John Stockton,UTA,39.0,185.42,79.3786,Gonzaga,USA,1984,1,16,82,11.5,2.8,8.7,11.4,0.028999999999999998,0.087,0.18600000000000003,0.61,0.452,2000-01 1890,John Wallace,DET,27.0,205.74,102.0582,Syracuse,USA,1996,1,18,40,5.9,2.1,0.6,-8.8,0.049,0.121,0.23399999999999999,0.46299999999999997,0.08199999999999999,2000-01 1891,Jon Barry,SAC,31.0,195.58,95.25432,Georgia Tech,USA,1992,1,21,62,5.1,1.5,2.1,4.7,0.017,0.081,0.151,0.55,0.207,2000-01 1892,Lamond Murray,CLE,28.0,200.66,107.047712,California,USA,1994,1,7,78,12.8,4.4,1.6,-4.9,0.054000000000000006,0.124,0.233,0.49,0.099,2000-01 1893,Lari Ketner,IND,24.0,205.74,125.64498400000001,Massachusetts,USA,1999,2,49,3,0.0,0.0,0.3,-19.7,0.0,0.0,0.155,0.0,0.2,2000-01 1894,Laron Profit,WAS,23.0,195.58,92.532768,Maryland,USA,1999,2,38,35,4.3,1.8,2.5,-5.9,0.035,0.08800000000000001,0.151,0.47,0.22399999999999998,2000-01 1895,Larry Hughes,GSW,22.0,195.58,83.46092800000001,Saint Louis,USA,1998,1,8,50,16.5,5.5,4.5,-7.5,0.042,0.122,0.24600000000000002,0.449,0.2,2000-01 1896,Larry Johnson,NYK,32.0,200.66,106.59411999999999,Nevada-Las Vegas,USA,1991,1,1,65,9.9,5.6,2.0,0.0,0.053,0.156,0.17600000000000002,0.493,0.10800000000000001,2000-01 1897,Larry Robinson,ATL,33.0,190.5,81.64656,Centenary (LA),USA,Undrafted,Undrafted,Undrafted,34,5.9,2.6,1.1,-6.4,0.043,0.122,0.157,0.511,0.1,2000-01 1898,Latrell Sprewell,NYK,30.0,195.58,86.18248,Alabama,USA,1992,1,24,77,17.7,4.5,3.5,2.1,0.02,0.11599999999999999,0.258,0.49700000000000005,0.172,2000-01 1899,Lavor Postell,NYK,23.0,195.58,92.98635999999999,St. John's (NY),USA,2000,2,39,26,2.3,1.0,0.2,4.1,0.057999999999999996,0.10099999999999999,0.233,0.44799999999999995,0.057999999999999996,2000-01 1900,Lawrence Funderburke,SAC,30.0,205.74,104.32616,Ohio State,USA,1994,2,51,59,4.9,3.3,0.3,0.2,0.11599999999999999,0.188,0.196,0.522,0.043,2000-01 1901,Lee Nailon,CHH,26.0,203.2,109.315672,Texas Christian,USA,1999,2,43,42,3.9,2.2,0.6,2.6,0.076,0.147,0.182,0.529,0.102,2000-01 1902,Lindsey Hunter,MIL,30.0,187.96,90.7184,Jackson State,USA,1993,1,10,82,10.1,2.1,2.7,5.1,0.018000000000000002,0.08199999999999999,0.204,0.5,0.191,2000-01 1903,Lorenzen Wright,ATL,25.0,210.82,108.86208,Memphis,USA,1996,1,7,71,12.4,7.5,1.2,-7.6,0.10099999999999999,0.19699999999999998,0.233,0.486,0.079,2000-01 1904,Loy Vaught,WAS,33.0,205.74,108.86208,Michigan,USA,1990,1,13,51,3.3,3.4,0.5,-6.0,0.107,0.263,0.165,0.484,0.068,2000-01 1905,Luc Longley,NYK,32.0,218.44,120.20188,New Mexico,USA,1991,1,7,25,2.0,2.6,0.3,6.6,0.10300000000000001,0.145,0.136,0.39899999999999997,0.04,2000-01 1906,Lucious Harris,NJN,30.0,195.58,92.98635999999999,Long Beach State,USA,1993,2,28,73,9.4,3.9,1.8,-5.8,0.038,0.127,0.16399999999999998,0.498,0.109,2000-01 1907,Mahmoud Abdul-Rauf,VAN,32.0,185.42,73.481904,Louisiana State,USA,1990,1,3,41,6.5,0.6,1.9,-1.6,0.012,0.048,0.26899999999999996,0.514,0.285,2000-01 1908,Malik Rose,SAS,26.0,200.66,115.66596000000001,Drexel,USA,1996,2,44,57,7.7,5.4,0.8,9.6,0.094,0.187,0.19699999999999998,0.498,0.067,2000-01 1909,Mamadou N'diaye,TOR,26.0,213.36,115.66596000000001,Auburn,Senegal,2000,1,26,3,1.3,0.7,0.0,-10.8,0.14300000000000002,0.14300000000000002,0.21100000000000002,0.41,0.0,2000-01 1910,Marc Jackson,GSW,26.0,208.28,122.46983999999999,Temple,USA,1997,2,37,48,13.2,7.5,1.2,-10.2,0.086,0.19899999999999998,0.20800000000000002,0.534,0.071,2000-01 1911,Lamar Odom,LAC,21.0,208.28,96.615096,Rhode Island,USA,1999,1,4,76,17.2,7.8,5.2,-2.9,0.047,0.19,0.243,0.536,0.24600000000000002,2000-01 1912,Marcus Fizer,CHI,22.0,205.74,118.841104,Iowa State,USA,2000,1,4,72,9.5,4.3,1.1,-14.2,0.055,0.19,0.247,0.47600000000000003,0.09699999999999999,2000-01 1913,LaPhonso Ellis,MIN,31.0,203.2,108.86208,Notre Dame,USA,1992,1,5,82,9.4,6.0,1.1,1.2,0.11699999999999999,0.182,0.196,0.524,0.079,2000-01 1914,Kornel David,DET,29.0,205.74,104.32616,None,USA,Undrafted,Undrafted,Undrafted,27,2.3,1.9,0.3,-9.1,0.077,0.2,0.142,0.547,0.057,2000-01 1915,Jonathan Bender,IND,20.0,210.82,89.811216,None,USA,1999,1,5,59,3.3,1.3,0.5,-8.4,0.027999999999999997,0.11,0.203,0.447,0.111,2000-01 1916,Jud Buechler,DET,33.0,198.12,103.418976,Arizona,USA,1990,2,38,57,3.4,1.6,0.7,0.0,0.028999999999999998,0.111,0.114,0.568,0.083,2000-01 1917,Jumaine Jones,PHI,22.0,203.2,98.88305600000001,Georgia,USA,1999,1,27,65,4.7,2.9,0.5,-0.7,0.079,0.166,0.17300000000000001,0.51,0.064,2000-01 1918,Juwan Howard,DAL,28.0,205.74,113.398,Michigan,USA,1994,1,5,81,18.0,7.1,2.8,-1.4,0.067,0.156,0.24600000000000002,0.527,0.135,2000-01 1919,Karl Malone,UTA,37.0,205.74,116.119552,Louisiana Tech,USA,1985,1,13,81,23.2,8.3,4.5,5.8,0.05,0.23600000000000002,0.299,0.5720000000000001,0.23399999999999999,2000-01 1920,Keith Van Horn,NJN,25.0,208.28,115.66596000000001,Utah,USA,1997,1,2,49,17.0,7.1,1.7,-4.0,0.052000000000000005,0.182,0.23399999999999999,0.526,0.08199999999999999,2000-01 1921,Kelvin Cato,HOU,26.0,210.82,115.66596000000001,Iowa State,USA,1997,1,15,35,4.7,4.0,0.3,8.8,0.09300000000000001,0.162,0.12,0.606,0.027999999999999997,2000-01 1922,Kendall Gill,NJN,33.0,195.58,97.975872,Illinois,USA,1990,1,5,31,9.1,4.2,2.8,-5.4,0.039,0.128,0.207,0.39,0.17,2000-01 1923,Kenny Anderson,BOS,30.0,185.42,76.203456,Georgia Tech,USA,1991,1,2,33,7.5,2.2,4.1,-3.3,0.021,0.08199999999999999,0.16399999999999998,0.47600000000000003,0.261,2000-01 1924,Kenny Thomas,HOU,23.0,203.2,117.93392,New Mexico,USA,1999,1,22,74,7.1,5.6,1.0,3.6,0.081,0.18100000000000002,0.162,0.507,0.068,2000-01 1925,Kenyon Martin,NJN,23.0,205.74,104.32616,Cincinnati,USA,2000,1,1,68,12.0,7.4,1.9,-6.4,0.066,0.191,0.2,0.47200000000000003,0.10300000000000001,2000-01 1926,Keon Clark,TOR,26.0,210.82,100.243832,Nevada-Las Vegas,USA,1998,1,13,81,7.9,5.4,0.9,1.4,0.087,0.192,0.185,0.512,0.068,2000-01 1927,Kevin Edwards,VAN,35.0,190.5,95.25432,DePaul,USA,1988,1,20,46,3.5,1.8,1.1,-3.2,0.040999999999999995,0.102,0.162,0.414,0.126,2000-01 1928,Kevin Garnett,MIN,25.0,210.82,99.79024,None,USA,1995,1,5,81,22.0,11.4,5.0,3.7,0.078,0.252,0.271,0.531,0.215,2000-01 1929,Kevin Ollie,PHI,28.0,187.96,88.45044,Connecticut,USA,Undrafted,Undrafted,Undrafted,70,3.1,1.4,2.1,1.1,0.02,0.099,0.142,0.467,0.268,2000-01 1930,Kevin Willis,DEN,38.0,213.36,111.13004,Michigan State,USA,1984,1,11,78,9.3,6.8,0.6,-6.6,0.10400000000000001,0.217,0.207,0.478,0.048,2000-01 1931,Keyon Dooling,LAC,21.0,195.58,87.543256,Missouri,USA,2000,1,10,76,5.9,1.2,2.3,-0.4,0.008,0.07,0.19899999999999998,0.509,0.253,2000-01 1932,Khalid El-Amin,CHI,22.0,177.8,90.7184,Connecticut,USA,2000,2,34,50,6.3,1.6,2.9,-10.7,0.023,0.08,0.193,0.45799999999999996,0.28800000000000003,2000-01 1933,Kobe Bryant,LAL,22.0,200.66,95.25432,None,USA,1996,1,13,68,28.5,5.9,5.0,6.3,0.042,0.11699999999999999,0.315,0.552,0.22,2000-01 1934,Kurt Thomas,NYK,28.0,205.74,104.32616,Texas Christian,USA,1995,1,10,77,10.4,6.7,0.8,7.4,0.105,0.191,0.184,0.5660000000000001,0.052000000000000005,2000-01 1935,Ira Bowman,ATL,28.0,195.58,88.45044,Pennsylvania,USA,Undrafted,Undrafted,Undrafted,3,0.0,0.7,2.3,-15.3,0.077,0.091,0.085,0.0,0.636,2000-01 1936,Scott Burrell,CHH,30.0,200.66,98.88305600000001,Connecticut,USA,1993,1,20,4,4.3,0.8,0.3,-10.3,0.032,0.055999999999999994,0.196,0.507,0.048,2000-01 1937,Scott Williams,MIL,33.0,208.28,104.32616,North Carolina,USA,Undrafted,Undrafted,Undrafted,66,6.1,5.5,0.5,12.2,0.08800000000000001,0.239,0.153,0.514,0.04,2000-01 1938,Tyrone Hill,PHI,33.0,205.74,113.398,Xavier,USA,1990,1,11,76,9.6,9.0,0.6,3.8,0.11599999999999999,0.21,0.16,0.515,0.033,2000-01 1939,Tyrone Nesby,WAS,25.0,198.12,111.13004,Nevada-Las Vegas,USA,Undrafted,Undrafted,Undrafted,62,8.3,2.8,1.2,-6.5,0.037000000000000005,0.09300000000000001,0.184,0.444,0.08199999999999999,2000-01 1940,Tyronn Lue,LAL,24.0,182.88,80.73937600000001,Nebraska,USA,1998,1,23,38,3.4,0.8,1.2,-5.2,0.012,0.066,0.14800000000000002,0.51,0.157,2000-01 1941,Tyus Edney,IND,28.0,177.8,75.296272,UCLA,USA,1995,2,47,24,4.4,1.0,2.3,-8.1,0.021,0.08199999999999999,0.225,0.49,0.37799999999999995,2000-01 1942,Vernon Maxwell,DAL,35.0,193.04,86.18248,Florida,USA,1988,2,47,43,4.7,1.5,1.1,0.1,0.006999999999999999,0.1,0.187,0.424,0.12,2000-01 1943,Vin Baker,SEA,29.0,210.82,113.398,Hartford,USA,1993,1,8,76,12.2,5.7,1.2,-0.8,0.098,0.139,0.23800000000000002,0.48100000000000004,0.07200000000000001,2000-01 1944,Vince Carter,TOR,24.0,198.12,102.0582,North Carolina,USA,1998,1,5,75,27.6,5.5,3.9,5.1,0.065,0.09300000000000001,0.305,0.551,0.187,2000-01 1945,Vinny Del Negro,PHX,34.0,193.04,90.7184,North Carolina State,USA,1988,2,29,65,3.9,1.3,1.9,-2.1,0.013999999999999999,0.091,0.13699999999999998,0.501,0.213,2000-01 1946,Vitaly Potapenko,BOS,26.0,208.28,129.27372,Wright State,Ukraine,1996,1,12,82,7.5,6.0,0.8,-2.2,0.121,0.192,0.166,0.517,0.059000000000000004,2000-01 1947,Vlade Divac,SAC,33.0,215.9,117.93392,None,Serbia and Montenegro,1989,1,26,81,12.0,8.3,2.9,5.4,0.096,0.205,0.2,0.536,0.14300000000000002,2000-01 1948,Vladimir Stepania,NJN,25.0,213.36,107.047712,None,Georgia,1998,1,27,29,2.8,3.8,0.6,-1.9,0.125,0.303,0.191,0.39799999999999996,0.107,2000-01 1949,Vonteego Cummings,GSW,25.0,190.5,86.18248,Pittsburgh,USA,1999,1,26,66,7.3,2.1,3.4,-14.9,0.03,0.073,0.183,0.425,0.253,2000-01 1950,Voshon Lenard,DEN,28.0,193.04,92.98635999999999,Minnesota,USA,1994,2,46,80,12.2,2.9,2.4,-2.1,0.021,0.087,0.198,0.522,0.134,2000-01 1951,Tyrone Corbin,TOR,38.0,198.12,95.25432,DePaul,USA,1985,2,35,15,1.3,0.9,0.3,-19.0,0.027000000000000003,0.10400000000000001,0.16,0.252,0.059000000000000004,2000-01 1952,Wally Szczerbiak,MIN,24.0,200.66,110.676448,Miami (OH),USA,1999,1,6,82,14.0,5.5,3.2,4.7,0.053,0.125,0.182,0.5660000000000001,0.141,2000-01 1953,Walter McCarty,BOS,27.0,208.28,104.32616,Kentucky,USA,1996,1,19,60,2.2,1.4,0.7,-2.7,0.057,0.141,0.147,0.474,0.136,2000-01 1954,Chris Garner,GSW,26.0,177.8,70.760352,Memphis,USA,Undrafted,Undrafted,Undrafted,8,2.4,1.5,2.3,-8.4,0.013000000000000001,0.079,0.139,0.24,0.17800000000000002,2000-01 1955,Wang Zhi-zhi,DAL,23.0,215.9,99.79024,None,China,1999,2,36,5,4.8,1.4,0.0,-38.0,0.028999999999999998,0.17600000000000002,0.285,0.513,0.0,2000-01 1956,Wesley Person,CLE,30.0,198.12,90.7184,Auburn,USA,1994,1,23,44,7.1,3.0,1.5,-1.9,0.013999999999999999,0.14400000000000002,0.163,0.514,0.109,2000-01 1957,Will Perdue,POR,35.0,213.36,108.86208,Vanderbilt,USA,1988,1,11,13,1.1,1.4,0.2,3.7,0.14,0.293,0.085,0.6509999999999999,0.053,2000-01 1958,William Avery,MIN,21.0,187.96,89.357624,Duke,USA,1999,1,14,55,2.8,0.5,1.4,-6.1,0.013000000000000001,0.057,0.2,0.48200000000000004,0.28600000000000003,2000-01 1959,Zan Tabak,IND,31.0,213.36,116.573144,None,USA,1991,2,51,55,3.9,3.9,0.6,1.4,0.10400000000000001,0.203,0.161,0.523,0.07,2000-01 1960,Zendon Hamilton,LAC,26.0,210.82,115.212368,St. John's (NY),USA,Undrafted,Undrafted,Undrafted,3,3.0,2.7,0.0,-23.7,0.14300000000000002,0.294,0.306,0.359,0.0,2000-01 1961,Zydrunas Ilgauskas,CLE,26.0,220.98,117.93392,None,Lithuania,1996,1,20,24,11.7,6.7,0.8,-0.4,0.129,0.171,0.245,0.524,0.057,2000-01 1962,Chris Dudley,PHX,36.0,210.82,117.93392,Yale,USA,1987,4,75,53,1.4,3.5,0.3,1.5,0.114,0.22399999999999998,0.084,0.405,0.04,2000-01 1963,Chris Crawford,ATL,26.0,205.74,106.59411999999999,Marquette,USA,1997,2,50,47,6.8,2.3,0.8,-8.5,0.034,0.106,0.18100000000000002,0.519,0.07,2000-01 1964,Chris Childs,TOR,33.0,190.5,88.45044,Boise State,USA,Undrafted,Undrafted,Undrafted,77,4.7,2.6,4.6,1.6,0.016,0.11,0.135,0.494,0.32,2000-01 1965,Chris Carr,BOS,27.0,198.12,99.79024,Southern Illinois,USA,1995,2,56,35,4.8,1.3,0.3,-11.4,0.038,0.11699999999999999,0.226,0.611,0.07200000000000001,2000-01 1966,Walt Williams,HOU,31.0,203.2,104.32616,Maryland,USA,1992,1,7,72,8.3,3.4,1.3,2.4,0.023,0.151,0.187,0.527,0.102,2000-01 1967,Troy Hudson,ORL,25.0,185.42,77.11064,Southern Illinois,USA,Undrafted,Undrafted,Undrafted,75,4.8,1.4,2.2,-5.1,0.040999999999999995,0.075,0.22,0.42700000000000005,0.26899999999999996,2000-01 1968,Travis Knight,NYK,26.0,213.36,106.59411999999999,Connecticut,USA,1996,1,29,45,0.6,1.2,0.1,-1.1,0.08800000000000001,0.15,0.135,0.23800000000000002,0.038,2000-01 1969,Travis Best,IND,28.0,180.34,83.46092800000001,Georgia Tech,USA,1995,1,23,77,11.9,2.9,6.1,2.1,0.018000000000000002,0.083,0.193,0.517,0.34,2000-01 1970,Corey Maggette,LAC,21.0,198.12,98.88305600000001,Duke,USA,1999,1,13,69,10.0,4.2,1.2,-2.4,0.075,0.162,0.242,0.562,0.11199999999999999,2000-01 1971,Corey Benjamin,CHI,23.0,198.12,92.98635999999999,Oregon State,USA,1998,1,28,65,4.7,1.5,1.1,-12.5,0.049,0.08900000000000001,0.217,0.45299999999999996,0.14800000000000002,2000-01 1972,Clifford Robinson,PHX,34.0,208.28,102.0582,Connecticut,USA,1989,2,36,82,16.4,4.1,2.9,2.2,0.043,0.095,0.251,0.501,0.155,2000-01 1973,Clar. Weatherspoon,CLE,30.0,200.66,120.20188,Southern Mississippi,USA,1992,1,9,82,11.3,9.7,1.3,-5.1,0.092,0.231,0.151,0.563,0.061,2000-01 1974,Chucky Brown,CLE,33.0,203.2,99.79024,North Carolina State,USA,1989,2,43,26,3.9,2.1,0.4,-6.4,0.027000000000000003,0.16399999999999998,0.157,0.46399999999999997,0.054000000000000006,2000-01 1975,Chucky Atkins,DET,26.0,180.34,72.57472,South Florida,USA,Undrafted,Undrafted,Undrafted,81,12.0,2.1,4.1,-1.2,0.013000000000000001,0.067,0.213,0.48100000000000004,0.23399999999999999,2000-01 1976,Christian Laettner,WAS,31.0,210.82,111.13004,Duke,USA,1992,1,3,78,9.3,4.7,1.6,-2.4,0.085,0.17300000000000001,0.21100000000000002,0.568,0.126,2000-01 1977,Chris Whitney,WAS,29.0,182.88,79.3786,Clemson,USA,1993,2,47,59,9.5,1.8,4.2,-7.7,0.009000000000000001,0.075,0.182,0.537,0.273,2000-01 1978,Chris Webber,SAC,28.0,208.28,111.13004,Michigan,USA,1993,1,1,70,27.1,11.1,4.2,6.3,0.069,0.22,0.313,0.516,0.20199999999999999,2000-01 1979,Chris Porter,GSW,23.0,200.66,98.88305600000001,Auburn,USA,2000,2,55,51,8.6,3.7,1.2,-13.4,0.071,0.10300000000000001,0.204,0.434,0.08800000000000001,2000-01 1980,Chris Mullin,GSW,37.0,198.12,90.7184,St. John's (NY),USA,1985,1,7,20,5.8,2.1,1.0,-9.2,0.025,0.095,0.158,0.486,0.08800000000000001,2000-01 1981,Chris Mills,GSW,31.0,200.66,97.975872,Arizona,USA,1993,1,22,15,12.0,6.2,1.2,-4.3,0.049,0.147,0.195,0.435,0.061,2000-01 1982,Chris Mihm,CLE,21.0,215.9,120.20188,Texas,USA,2000,1,7,59,7.6,4.7,0.3,-3.8,0.106,0.16699999999999998,0.203,0.5,0.024,2000-01 1983,Chris Herren,BOS,25.0,187.96,86.18248,Fresno State,USA,1999,2,33,25,3.3,0.8,2.2,2.2,0.011000000000000001,0.049,0.133,0.41,0.204,2000-01 1984,Chris Gatling,CLE,33.0,208.28,104.32616,Old Dominion,USA,1991,1,16,74,11.4,5.3,0.8,-6.6,0.068,0.215,0.258,0.505,0.067,2000-01 1985,Tim Thomas,MIL,24.0,208.28,104.32616,Villanova,USA,1997,1,7,76,12.6,4.1,1.8,7.0,0.044000000000000004,0.128,0.214,0.5489999999999999,0.10800000000000001,2000-01 1986,Todd Day,MIN,31.0,198.12,85.275296,Arkansas,USA,1992,1,8,31,4.3,1.2,0.9,0.1,0.035,0.094,0.203,0.515,0.131,2000-01 1987,Todd Fuller,MIA,26.0,210.82,115.66596000000001,North Carolina State,USA,1996,1,11,10,2.8,1.8,0.1,-4.4,0.092,0.2,0.256,0.363,0.027000000000000003,2000-01 1988,Todd MacCulloch,PHI,25.0,213.36,115.66596000000001,Washington,Canada,1999,2,47,63,4.1,2.7,0.2,0.1,0.135,0.182,0.18100000000000002,0.607,0.03,2000-01 1989,Tom Gugliotta,PHX,31.0,208.28,108.86208,North Carolina State,USA,1992,1,6,57,6.4,4.5,1.0,2.1,0.071,0.17800000000000002,0.179,0.43700000000000006,0.078,2000-01 1990,Tom Hammonds,MIN,34.0,205.74,97.52228000000001,Georgia Tech,USA,1989,1,9,7,1.0,0.6,0.1,22.5,0.071,0.08,0.198,0.322,0.04,2000-01 1991,Toni Kukoc,ATL,32.0,210.82,106.59411999999999,None,Croatia,1990,2,29,65,11.1,4.0,3.1,4.5,0.05,0.13699999999999998,0.21600000000000003,0.5529999999999999,0.207,2000-01 1992,Tony Battie,BOS,25.0,210.82,108.86208,Texas Tech,USA,1997,1,5,40,6.5,5.8,0.4,-2.1,0.096,0.21600000000000003,0.14400000000000002,0.562,0.034,2000-01 1993,Tony Delk,PHX,27.0,187.96,85.728888,Kentucky,USA,1996,1,16,82,12.3,3.2,2.0,2.0,0.038,0.09300000000000001,0.217,0.49,0.11800000000000001,2000-01 1994,Tony Massenburg,VAN,33.0,205.74,113.398,Maryland,USA,1990,2,43,52,4.5,4.0,0.2,-7.0,0.10400000000000001,0.184,0.158,0.507,0.018000000000000002,2000-01 1995,Tony Smith,ATL,33.0,190.5,83.91452,Marquette,USA,1990,2,51,6,2.8,0.5,1.7,-14.8,0.033,0.016,0.191,0.35600000000000004,0.204,2000-01 1996,Tracy McGrady,ORL,22.0,203.2,95.25432,None,USA,1997,1,9,77,26.8,7.5,4.6,4.5,0.067,0.142,0.311,0.521,0.218,2000-01 1997,Tracy Murray,TOR,29.0,200.66,103.418976,UCLA,USA,1992,1,18,51,5.0,1.6,0.5,-5.0,0.04,0.11800000000000001,0.217,0.48200000000000004,0.068,2000-01 1998,Trajan Langdon,CLE,25.0,190.5,89.357624,Duke,USA,1999,1,11,65,6.0,1.4,1.2,-2.4,0.013000000000000001,0.081,0.161,0.561,0.11900000000000001,2000-01 1999,Scott Padgett,UTA,25.0,205.74,108.86208,Kentucky,USA,1999,1,28,27,2.1,1.4,0.2,-2.9,0.17800000000000002,0.192,0.214,0.541,0.076,2000-01 2000,Chauncey Billups,MIN,24.0,190.5,91.625584,Colorado,USA,1997,1,3,77,9.3,2.1,3.4,2.3,0.021,0.084,0.198,0.5379999999999999,0.22899999999999998,2000-01 2001,Charlie Ward,NYK,30.0,187.96,86.18248,Florida State,USA,1994,1,26,61,7.1,2.6,4.5,6.3,0.026000000000000002,0.10099999999999999,0.16699999999999998,0.536,0.297,2000-01 2002,Charles Oakley,TOR,37.0,205.74,111.13004,Virginia Union,USA,1985,1,9,78,9.6,9.5,3.4,4.6,0.057,0.249,0.161,0.439,0.14400000000000002,2000-01 2003,Antonio McDyess,DEN,26.0,205.74,111.13004,Alabama,USA,1995,1,2,70,20.8,12.1,2.1,0.6,0.10400000000000001,0.254,0.26899999999999996,0.5379999999999999,0.106,2000-01 2004,Antonio Harvey,POR,30.0,210.82,113.398,Pfeiffer,USA,Undrafted,Undrafted,Undrafted,12,2.6,1.2,0.3,-14.3,0.071,0.129,0.21100000000000002,0.506,0.10300000000000001,2000-01 2005,Antonio Davis,TOR,32.0,205.74,104.32616,Texas-El Paso,USA,1990,2,45,78,13.7,10.1,1.4,4.2,0.111,0.21600000000000003,0.196,0.508,0.062,2000-01 2006,Antonio Daniels,SAS,26.0,193.04,92.98635999999999,Bowling Green,USA,1997,1,4,79,9.4,2.1,3.8,6.6,0.015,0.07400000000000001,0.175,0.5670000000000001,0.24600000000000002,2000-01 2007,Antoine Walker,BOS,24.0,205.74,111.13004,Kentucky,USA,1996,1,6,81,23.4,8.9,5.5,-1.9,0.05,0.204,0.292,0.505,0.261,2000-01 2008,Anthony Peeler,MIN,31.0,193.04,94.34713599999999,Missouri,USA,1992,1,15,75,10.5,2.6,2.6,2.3,0.023,0.078,0.18600000000000003,0.513,0.138,2000-01 2009,Anthony Miller,PHI,29.0,205.74,115.66596000000001,Michigan State,USA,1994,2,39,4,0.5,0.5,0.0,-45.9,0.0,0.28600000000000003,0.133,0.5,0.0,2000-01 2010,Anthony Mason,MIA,34.0,203.2,115.66596000000001,Tennessee State,USA,1988,3,53,80,16.1,9.6,3.1,2.2,0.062,0.223,0.201,0.555,0.14400000000000002,2000-01 2011,Anthony Johnson,CLE,26.0,190.5,86.18248,College of Charleston,USA,1997,2,39,53,2.5,0.8,1.5,-10.8,0.021,0.084,0.17600000000000002,0.39,0.266,2000-01 2012,Anthony Goldwire,DEN,29.0,187.96,82.553744,Houston,USA,1994,2,52,20,4.1,0.6,1.7,-7.0,0.005,0.064,0.21899999999999997,0.469,0.276,2000-01 2013,Anthony Carter,MIA,26.0,185.42,86.18248,Hawaii,USA,Undrafted,Undrafted,Undrafted,72,6.4,2.5,3.7,2.6,0.034,0.094,0.19,0.439,0.305,2000-01 2014,Antawn Jamison,GSW,25.0,205.74,101.151016,North Carolina,USA,1998,1,4,82,24.9,8.7,2.0,-9.3,0.081,0.14800000000000002,0.27899999999999997,0.499,0.094,2000-01 2015,Anfernee Hardaway,PHX,29.0,200.66,97.52228000000001,Memphis,USA,1993,1,3,4,9.8,4.5,3.8,-3.1,0.045,0.13,0.17300000000000001,0.47700000000000004,0.22399999999999998,2000-01 2016,Andy Panko,ATL,23.0,205.74,111.13004,Lebanon Valley,USA,Undrafted,Undrafted,Undrafted,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2000-01 2017,Andrew DeClercq,ORL,28.0,208.28,115.66596000000001,Florida,USA,1995,2,34,67,3.9,3.5,0.5,7.4,0.111,0.179,0.13699999999999998,0.57,0.049,2000-01 2018,Andre Miller,CLE,25.0,187.96,90.7184,Utah,USA,1999,1,8,82,15.8,4.4,8.0,-1.3,0.039,0.105,0.23,0.541,0.389,2000-01 2019,Alvin Williams,TOR,26.0,195.58,83.91452,Villanova,USA,1997,2,47,82,9.8,2.6,5.0,3.1,0.023,0.078,0.175,0.483,0.267,2000-01 2020,Alonzo Mourning,MIA,31.0,208.28,118.38751200000002,Georgetown,USA,1992,1,2,13,13.6,7.8,0.9,5.9,0.142,0.23199999999999998,0.301,0.536,0.079,2000-01 2021,Allen Iverson,PHI,26.0,182.88,74.84268,Georgetown,USA,1996,1,1,71,31.1,3.8,4.6,5.7,0.019,0.081,0.354,0.518,0.226,2000-01 2022,Allan Houston,NYK,30.0,198.12,90.7184,Tennessee,USA,1993,1,11,78,18.7,3.6,2.2,2.2,0.009000000000000001,0.107,0.256,0.5429999999999999,0.11900000000000001,2000-01 2023,Alan Henderson,ATL,28.0,205.74,106.59411999999999,Indiana,USA,1995,1,16,73,10.5,5.6,0.7,-8.8,0.109,0.147,0.22399999999999998,0.48700000000000004,0.05,2000-01 2024,Al Harrington,IND,21.0,205.74,115.212368,None,USA,1998,1,25,78,7.5,4.9,1.7,0.5,0.07400000000000001,0.151,0.187,0.479,0.11599999999999999,2000-01 2025,Adrian Griffin,BOS,26.0,195.58,97.52228000000001,Seton Hall,USA,Undrafted,Undrafted,Undrafted,44,2.1,2.0,0.6,-4.9,0.077,0.20199999999999999,0.149,0.43200000000000005,0.125,2000-01 2026,Adonal Foyle,GSW,26.0,208.28,113.398,Colgate,St. Vincent & Grenadines,1997,1,8,58,5.9,7.0,0.8,-11.7,0.10099999999999999,0.18899999999999997,0.139,0.42200000000000004,0.052000000000000005,2000-01 2027,Adam Keefe,GSW,31.0,205.74,104.32616,Stanford,USA,1992,1,10,67,2.5,3.1,0.5,-9.2,0.105,0.175,0.11599999999999999,0.45,0.066,2000-01 2028,Aaron Williams,NJN,29.0,205.74,102.0582,Xavier,USA,Undrafted,Undrafted,Undrafted,82,10.2,7.2,1.1,-9.1,0.102,0.2,0.18,0.5329999999999999,0.068,2000-01 2029,Aaron McKie,PHI,28.0,195.58,94.800728,Temple,USA,1994,1,17,76,11.6,4.1,5.0,6.8,0.016,0.13,0.19,0.5489999999999999,0.264,2000-01 2030,A.J. Guyton,CHI,23.0,185.42,81.64656,Indiana,USA,2000,2,32,33,6.0,1.1,1.9,-12.4,0.018000000000000002,0.053,0.16899999999999998,0.495,0.198,2000-01 2031,A.C. Green,MIA,37.0,205.74,102.0582,Oregon State,USA,1985,1,23,82,4.5,3.8,0.5,3.3,0.08900000000000001,0.171,0.141,0.49200000000000005,0.05,2000-01 2032,Art Long,SAC,28.0,205.74,108.86208,Cincinnati,USA,Undrafted,Undrafted,Undrafted,9,0.0,0.9,0.1,-8.3,0.1,0.25,0.155,0.0,0.083,2000-01 2033,Corie Blount,GSW,32.0,208.28,109.769264,Cincinnati,USA,1993,1,25,68,4.6,5.9,0.9,-11.9,0.135,0.193,0.131,0.473,0.07400000000000001,2000-01 2034,Arvydas Sabonis,POR,36.0,220.98,132.448864,None,Lithuania,1986,1,24,61,10.1,5.4,1.5,8.5,0.049,0.239,0.24100000000000002,0.527,0.121,2000-01 2035,Avery Johnson,SAS,36.0,180.34,81.64656,Southern,USA,Undrafted,Undrafted,Undrafted,55,5.6,1.5,4.3,8.1,0.02,0.054000000000000006,0.14400000000000002,0.475,0.302,2000-01 2036,Cedric Henderson,CLE,26.0,200.66,102.0582,Memphis,USA,1997,2,44,55,4.3,1.6,1.4,-6.6,0.023,0.086,0.165,0.41600000000000004,0.134,2000-01 2037,Cedric Ceballos,MIA,31.0,200.66,99.79024,Cal State-Fullerton,USA,1990,2,48,40,6.5,2.7,0.5,-3.6,0.07200000000000001,0.14800000000000002,0.228,0.526,0.067,2000-01 2038,Carlos Rogers,HOU,30.0,210.82,105.23334399999999,Tennessee State,USA,1994,1,11,39,4.6,3.6,0.2,2.8,0.106,0.184,0.128,0.674,0.027000000000000003,2000-01 2039,Calvin Booth,DAL,25.0,210.82,109.315672,Penn State,USA,1999,2,35,55,5.3,4.5,0.8,-7.0,0.091,0.196,0.163,0.512,0.07400000000000001,2000-01 2040,Calbert Cheaney,DEN,29.0,200.66,98.429464,Indiana,USA,1993,1,6,9,2.3,2.2,1.0,10.6,0.034,0.109,0.10400000000000001,0.34,0.076,2000-01 2041,Cal Bowdler,ATL,24.0,208.28,111.13004,Old Dominion,USA,1999,1,17,44,3.2,1.8,0.1,1.3,0.091,0.142,0.168,0.532,0.016,2000-01 2042,Bryon Russell,UTA,30.0,200.66,102.0582,Long Beach State,USA,1993,2,45,78,12.0,4.2,2.1,4.7,0.048,0.11800000000000001,0.175,0.565,0.105,2000-01 2043,Bryce Drew,CHI,26.0,190.5,83.91452,Valparaiso,USA,1998,1,16,48,6.3,1.4,3.9,-7.4,0.011000000000000001,0.052000000000000005,0.14300000000000002,0.45,0.231,2000-01 2044,Bryant Stith,BOS,30.0,195.58,95.25432,Virginia,USA,1992,1,13,78,9.7,3.6,2.2,-2.3,0.028999999999999998,0.106,0.145,0.5379999999999999,0.111,2000-01 2045,Bryant Reeves,VAN,28.0,213.36,131.54168,Oklahoma State,USA,1995,1,6,75,8.3,6.0,1.1,-5.6,0.083,0.198,0.175,0.506,0.073,2000-01 2046,Bruno Sundov,IND,21.0,218.44,108.40848799999999,None,Croatia,1998,2,35,11,3.9,2.1,0.2,-12.5,0.037000000000000005,0.15,0.175,0.498,0.03,2000-01 2047,Bruce Bowen,MIA,30.0,200.66,90.7184,Cal State-Fullerton,USA,Undrafted,Undrafted,Undrafted,82,7.6,3.0,1.6,3.1,0.02,0.08900000000000001,0.132,0.478,0.08199999999999999,2000-01 2048,Brian Skinner,LAC,25.0,205.74,120.20188,Baylor,USA,1998,1,22,39,4.1,4.3,0.5,-8.4,0.107,0.215,0.172,0.428,0.054000000000000006,2000-01 2049,Brian Shaw,LAL,35.0,198.12,90.7184,California-Santa Barbara,USA,1988,1,24,80,5.3,3.8,3.2,2.2,0.03,0.158,0.131,0.479,0.20600000000000002,2000-01 2050,Brian Grant,MIA,29.0,205.74,113.398,Xavier,USA,1994,1,8,82,15.2,8.8,1.2,3.7,0.09300000000000001,0.214,0.23600000000000002,0.536,0.07200000000000001,2000-01 2051,Brian Cardinal,DET,24.0,203.2,111.13004,Purdue,USA,2000,2,44,15,2.1,1.5,0.2,-14.2,0.068,0.14,0.162,0.39799999999999996,0.052000000000000005,2000-01 2052,Brevin Knight,ATL,25.0,177.8,77.11064,Stanford,USA,1997,1,16,53,6.3,3.2,5.9,-8.4,0.017,0.109,0.147,0.41600000000000004,0.32,2000-01 2053,Brent Price,VAN,32.0,185.42,83.91452,Oklahoma,USA,1992,2,32,6,2.2,0.7,0.8,-17.0,0.034,0.091,0.265,0.462,0.263,2000-01 2054,Brent Barry,SEA,29.0,198.12,97.52228000000001,Oregon State,USA,1995,1,15,67,8.8,3.1,3.4,2.1,0.023,0.113,0.135,0.66,0.19,2000-01 2055,Brad Miller,CHI,25.0,213.36,118.38751200000002,Purdue,USA,Undrafted,Undrafted,Undrafted,57,8.9,7.4,1.9,-9.1,0.114,0.22899999999999998,0.18100000000000002,0.52,0.13,2000-01 2056,Bonzi Wells,POR,24.0,195.58,95.25432,Ball State,USA,1998,1,11,75,12.6,4.9,2.8,4.4,0.077,0.14300000000000002,0.233,0.5710000000000001,0.179,2000-01 2057,Bobby Jackson,SAC,28.0,185.42,83.91452,Minnesota,USA,1997,1,23,79,7.2,3.1,2.0,7.2,0.05,0.111,0.182,0.501,0.166,2000-01 2058,Bob Sura,GSW,28.0,195.58,90.7184,Florida State,USA,1995,1,17,53,11.1,4.3,4.6,-11.4,0.032,0.121,0.193,0.48700000000000004,0.23199999999999998,2000-01 2059,Bo Outlaw,ORL,30.0,203.2,95.25432,Houston,USA,Undrafted,Undrafted,Undrafted,80,7.3,7.7,2.8,4.1,0.092,0.183,0.107,0.623,0.128,2000-01 2060,Bimbo Coles,CLE,33.0,187.96,82.553744,Virginia Tech,USA,1990,2,40,47,4.9,1.0,2.9,-10.0,0.013999999999999999,0.06,0.187,0.44,0.309,2000-01 2061,Billy Owens,DET,32.0,203.2,99.79024,Syracuse,USA,1991,1,3,45,4.4,4.6,1.2,-1.1,0.10400000000000001,0.158,0.151,0.4,0.10800000000000001,2000-01 2062,Bill Curley,GSW,29.0,205.74,99.79024,Boston College,USA,1994,1,22,20,3.2,1.9,0.2,-6.8,0.11800000000000001,0.1,0.159,0.569,0.027999999999999997,2000-01 2063,Ben Wallace,DET,26.0,205.74,108.86208,Virginia Union,USA,Undrafted,Undrafted,Undrafted,80,6.4,13.2,1.5,1.0,0.11599999999999999,0.293,0.105,0.47100000000000003,0.067,2000-01 2064,Baron Davis,CHH,22.0,190.5,96.16150400000001,UCLA,USA,1999,1,3,82,13.8,5.0,7.3,4.9,0.046,0.099,0.192,0.512,0.319,2000-01 2065,Austin Croshere,IND,26.0,205.74,109.769264,Providence,USA,1997,1,12,81,10.1,4.8,1.1,0.2,0.077,0.159,0.23,0.512,0.087,2000-01 2066,Corliss Williamson,DET,27.0,200.66,111.13004,Arkansas,USA,1995,1,13,69,11.6,4.7,0.9,2.6,0.068,0.133,0.222,0.5329999999999999,0.066,2000-01 2067,Cherokee Parks,LAC,28.0,210.82,108.86208,Duke,USA,1995,1,12,65,4.6,3.5,0.7,-6.5,0.078,0.179,0.149,0.51,0.071,2000-01 2068,Courtney Alexander,WAS,24.0,195.58,92.98635999999999,Fresno State,USA,2000,1,13,65,9.5,2.2,1.0,-10.1,0.036000000000000004,0.085,0.23199999999999998,0.484,0.083,2000-01 2069,Tim Hardaway,MIA,34.0,182.88,88.45044,Texas-El Paso,USA,1989,1,14,77,14.9,2.6,6.3,4.7,0.012,0.081,0.244,0.513,0.344,2000-01 2070,Tim James,CHH,24.0,200.66,96.16150400000001,Miami (FL),USA,1999,1,25,30,1.5,1.2,0.3,0.2,0.099,0.11,0.154,0.387,0.065,2000-01 2071,Howard Eisley,DAL,28.0,187.96,81.64656,Boston College,USA,1994,2,30,82,9.0,2.4,3.6,3.4,0.011000000000000001,0.08,0.155,0.507,0.183,2000-01 2072,Horace Grant,LAL,35.0,208.28,111.13004,Clemson,USA,1987,1,10,77,8.5,7.1,1.6,7.1,0.106,0.149,0.13,0.511,0.073,2000-01 2073,Hersey Hawkins,CHH,34.0,190.5,90.7184,Bradley,USA,1988,1,6,59,3.1,1.4,1.2,-0.3,0.03,0.10800000000000001,0.128,0.555,0.19399999999999998,2000-01 2074,Hedo Turkoglu,SAC,22.0,203.2,99.79024,None,Turkey,2000,1,16,74,5.3,2.8,0.9,5.7,0.044000000000000004,0.129,0.156,0.509,0.08800000000000001,2000-01 2075,Hanno Mottola,ATL,24.0,210.82,112.037224,Utah,Finland,2000,2,40,73,4.4,2.4,0.3,-12.8,0.055,0.145,0.175,0.504,0.044000000000000004,2000-01 2076,Hakeem Olajuwon,HOU,38.0,213.36,115.66596000000001,Houston,Nigeria,1984,1,1,58,11.9,7.4,1.2,1.1,0.094,0.226,0.21600000000000003,0.526,0.08199999999999999,2000-01 2077,Greg Ostertag,UTA,28.0,218.44,127.00576000000001,Kansas,USA,1995,1,28,81,4.5,5.1,0.3,0.9,0.139,0.201,0.128,0.522,0.025,2000-01 2078,Greg Foster,LAL,32.0,210.82,113.398,Texas-El Paso,USA,1990,2,35,62,2.0,1.8,0.5,-11.2,0.071,0.22,0.171,0.449,0.125,2000-01 2079,Greg Buckner,DAL,24.0,193.04,95.25432,Clemson,USA,1998,2,53,37,6.2,4.2,1.3,5.0,0.086,0.135,0.145,0.503,0.08900000000000001,2000-01 2080,Greg Anthony,POR,33.0,185.42,81.64656,Nevada-Las Vegas,USA,1991,1,12,58,4.9,1.1,1.4,0.0,0.032,0.055999999999999994,0.171,0.527,0.162,2000-01 2081,Grant Long,VAN,35.0,205.74,113.398,Eastern Michigan,USA,1988,2,33,66,6.0,4.2,1.3,-7.8,0.057999999999999996,0.149,0.13699999999999998,0.51,0.092,2000-01 2082,Grant Hill,ORL,28.0,203.2,102.0582,Duke,USA,1994,1,3,4,13.8,6.3,6.3,-5.5,0.061,0.147,0.21600000000000003,0.505,0.32899999999999996,2000-01 2083,Glenn Robinson,MIL,28.0,200.66,104.32616,Purdue,USA,1994,1,1,76,22.0,6.9,3.3,4.6,0.051,0.156,0.28800000000000003,0.525,0.157,2000-01 2084,Glen Rice,NYK,34.0,203.2,99.79024,Michigan,USA,1989,1,4,75,12.0,4.1,1.2,4.5,0.035,0.135,0.20600000000000002,0.54,0.07400000000000001,2000-01 2085,Gerard King,WAS,28.0,205.74,104.32616,Nicholls State,USA,Undrafted,Undrafted,Undrafted,45,4.8,2.9,0.7,-8.9,0.062,0.16399999999999998,0.153,0.552,0.08,2000-01 2086,George McCloud,DEN,34.0,203.2,102.0582,Florida State,USA,1989,1,7,76,9.6,2.9,3.7,-5.1,0.031,0.096,0.19,0.496,0.223,2000-01 2087,George Lynch,PHI,30.0,203.2,103.418976,North Carolina,USA,1993,1,12,82,8.4,7.2,1.7,4.1,0.087,0.163,0.138,0.496,0.084,2000-01 2088,Gary Trent,DAL,26.0,203.2,113.398,Ohio,USA,1995,1,11,33,4.0,2.8,0.3,-9.9,0.128,0.183,0.23600000000000002,0.456,0.055999999999999994,2000-01 2089,Gary Payton,SEA,32.0,193.04,81.64656,Oregon State,USA,1990,1,2,79,23.1,4.6,8.1,-0.6,0.025,0.10099999999999999,0.27,0.522,0.364,2000-01 2090,Gary Grant,POR,36.0,190.5,83.91452,Michigan,USA,1988,1,15,4,2.5,0.0,0.3,14.9,0.0,0.0,0.20199999999999999,0.7140000000000001,0.1,2000-01 2091,Garth Joseph,DEN,27.0,218.44,138.799152,Saint Rose,USA,Undrafted,Undrafted,Undrafted,4,0.5,0.5,0.3,-35.0,0.111,0.0,0.21100000000000002,0.17,0.1,2000-01 2092,Fred Hoiberg,CHI,28.0,195.58,95.25432,Iowa State,USA,1995,2,52,74,9.1,4.2,3.6,-10.2,0.011000000000000001,0.159,0.132,0.598,0.2,2000-01 2093,Felton Spencer,NYK,33.0,213.36,120.20188,Louisville,USA,1990,1,6,18,2.2,1.9,0.1,7.3,0.152,0.21600000000000003,0.174,0.629,0.031,2000-01 2094,Felipe Lopez,MIN,26.0,195.58,88.45044,St. John's (NY),Dominican Republic,1998,1,24,70,7.9,3.3,1.5,-4.7,0.04,0.131,0.18,0.503,0.114,2000-01 2095,Evan Eschmeyer,NJN,26.0,210.82,115.66596000000001,Northwestern,USA,1999,2,34,74,3.4,4.9,0.5,1.2,0.115,0.195,0.10099999999999999,0.512,0.044000000000000004,2000-01 2096,Etdrick Bohannon,CLE,28.0,205.74,99.79024,Auburn-Montgomery,USA,Undrafted,Undrafted,Undrafted,6,1.3,1.2,0.0,20.9,0.214,0.235,0.16399999999999998,0.6940000000000001,0.0,2000-01 2097,Ervin Johnson,MIL,33.0,210.82,115.66596000000001,New Orleans,USA,1993,1,23,82,3.2,7.5,0.5,6.9,0.121,0.237,0.067,0.557,0.027999999999999997,2000-01 2098,Tim Duncan,SAS,25.0,213.36,117.93392,Wake Forest,US Virgin Islands,1997,1,1,82,22.2,12.2,3.0,12.3,0.09699999999999999,0.24600000000000002,0.287,0.536,0.15,2000-01 2099,Erick Strickland,VAN,27.0,190.5,95.25432,Nebraska,USA,Undrafted,Undrafted,Undrafted,50,5.2,2.6,1.9,3.7,0.026000000000000002,0.153,0.19899999999999998,0.431,0.203,2000-01 2100,Theo Ratliff,PHI,28.0,208.28,102.0582,Wyoming,USA,1995,1,18,50,12.4,8.3,1.2,5.8,0.08199999999999999,0.172,0.172,0.562,0.054000000000000006,2000-01 2101,Terry Mills,IND,33.0,208.28,104.32616,Michigan,USA,1990,1,16,14,1.8,1.5,0.4,-15.9,0.037000000000000005,0.168,0.174,0.368,0.08199999999999999,2000-01 2102,Cory Alexander,ORL,28.0,185.42,86.18248,Virginia,USA,1995,1,29,26,2.0,1.0,1.4,-6.6,0.0,0.13699999999999998,0.17800000000000002,0.40700000000000003,0.273,2000-01 2103,Scottie Pippen,POR,35.0,200.66,103.418976,Central Arkansas,USA,1987,1,5,64,11.3,5.2,4.6,5.8,0.04,0.14400000000000002,0.17800000000000002,0.541,0.212,2000-01 2104,Sean Colson,HOU,25.0,182.88,79.3786,North Carolina-Charlotte,USA,Undrafted,Undrafted,Undrafted,13,1.2,0.5,0.8,-35.2,0.04,0.111,0.264,0.29100000000000004,0.455,2000-01 2105,Sean Elliott,SAS,33.0,203.2,99.79024,Arizona,USA,1989,1,3,52,7.9,3.3,1.6,8.5,0.016,0.129,0.16399999999999998,0.544,0.115,2000-01 2106,Sean Rooks,LAC,31.0,208.28,117.93392,Arizona,USA,1992,2,30,82,5.4,3.7,0.9,0.9,0.071,0.146,0.157,0.48700000000000004,0.081,2000-01 2107,Shammond Williams,SEA,26.0,185.42,91.171992,North Carolina,USA,1998,2,34,69,6.8,1.9,2.8,-0.1,0.031,0.091,0.18,0.569,0.242,2000-01 2108,Shandon Anderson,HOU,27.0,198.12,95.25432,Georgia,USA,1996,2,54,82,8.7,4.1,2.3,-0.3,0.036000000000000004,0.12300000000000001,0.154,0.528,0.12300000000000001,2000-01 2109,Shaquille O'Neal,LAL,29.0,215.9,142.88148,Louisiana State,USA,1992,1,1,74,28.7,12.7,3.7,7.9,0.11599999999999999,0.247,0.318,0.574,0.177,2000-01 2110,Shareef Abdur-Rahim,VAN,24.0,205.74,104.32616,California,USA,1996,1,3,81,20.5,9.1,3.1,-7.3,0.063,0.195,0.245,0.5489999999999999,0.142,2000-01 2111,Shawn Bradley,DAL,29.0,228.6,120.20188,Brigham Young,USA,1993,1,2,82,7.1,7.4,0.5,10.4,0.092,0.228,0.14300000000000002,0.551,0.028999999999999998,2000-01 2112,Shawn Kemp,POR,31.0,208.28,127.00576000000001,Trinity Valley Community College,USA,1989,1,17,68,6.5,3.8,1.0,-1.5,0.071,0.221,0.243,0.469,0.106,2000-01 2113,Shawn Marion,PHX,23.0,200.66,97.52228000000001,Nevada-Las Vegas,USA,1999,1,9,79,17.3,10.7,2.0,4.8,0.086,0.254,0.222,0.532,0.102,2000-01 2114,Shawnelle Scott,SAS,29.0,210.82,113.398,St. John's (NY),USA,1994,2,43,27,1.6,1.9,0.1,-15.5,0.185,0.235,0.21100000000000002,0.424,0.051,2000-01 2115,Sherman Douglas,NJN,34.0,182.88,81.64656,Syracuse,USA,1989,2,28,59,5.7,1.3,2.4,-6.2,0.023,0.06,0.185,0.478,0.243,2000-01 2116,Slava Medvedenko,LAL,22.0,208.28,113.398,None,Ukraine,Undrafted,Undrafted,Undrafted,7,4.6,1.3,0.3,3.3,0.026000000000000002,0.16,0.337,0.528,0.087,2000-01 2117,Soumaila Samake,NJN,23.0,213.36,101.604608,None,Mali,2000,2,36,34,1.4,1.6,0.0,-9.0,0.10400000000000001,0.161,0.12300000000000001,0.39299999999999996,0.008,2000-01 2118,Stacey Augmon,POR,32.0,203.2,92.98635999999999,Nevada-Las Vegas,USA,1991,1,9,66,4.7,2.4,1.5,2.8,0.062,0.09300000000000001,0.139,0.511,0.131,2000-01 2119,Stephen Jackson,NJN,23.0,203.2,98.88305600000001,Butler Community College,USA,1997,2,42,77,8.2,2.7,1.8,-5.1,0.027000000000000003,0.11699999999999999,0.20600000000000002,0.503,0.15,2000-01 2120,Stephon Marbury,NJN,24.0,187.96,81.64656,Georgia Tech,USA,1996,1,4,67,23.9,3.1,7.6,-5.7,0.023,0.069,0.293,0.54,0.389,2000-01 2121,Steve Francis,HOU,24.0,190.5,87.543256,Maryland,USA,1999,1,2,80,19.9,6.9,6.5,2.6,0.071,0.129,0.24100000000000002,0.563,0.278,2000-01 2122,Steve Goodrich,CHI,25.0,208.28,99.79024,Princeton,USA,Undrafted,Undrafted,Undrafted,12,1.6,1.8,0.5,-8.2,0.068,0.128,0.10400000000000001,0.451,0.075,2000-01 2123,Steve Kerr,SAS,35.0,190.5,81.64656,Arizona,USA,1988,2,50,55,3.3,0.6,1.0,2.4,0.011000000000000001,0.051,0.135,0.546,0.14300000000000002,2000-01 2124,Steve Nash,DAL,27.0,190.5,88.45044,Santa Clara,Canada,1996,1,15,70,15.6,3.2,7.3,6.5,0.023,0.078,0.21100000000000002,0.603,0.335,2000-01 2125,Steven Smith,POR,32.0,203.2,100.243832,Michigan State,USA,1991,1,5,81,13.6,3.4,2.6,5.6,0.042,0.086,0.19699999999999998,0.5870000000000001,0.139,2000-01 2126,Stromile Swift,VAN,21.0,205.74,102.0582,Louisiana State,USA,2000,1,2,80,4.9,3.6,0.4,-5.1,0.099,0.154,0.165,0.48700000000000004,0.035,2000-01 2127,Tariq Abdul-Wahad,DEN,26.0,198.12,101.151016,San Jose State,France,1997,1,11,29,3.8,2.0,0.8,-7.9,0.035,0.11900000000000001,0.17,0.43799999999999994,0.087,2000-01 2128,Terrance Roberson,CHH,24.0,200.66,97.52228000000001,Fresno State,USA,Undrafted,Undrafted,Undrafted,3,0.0,0.3,0.3,-15.6,0.0,0.077,0.134,0.0,0.111,2000-01 2129,Terrell Brandon,MIN,31.0,180.34,78.471416,Oregon,USA,1991,1,11,78,16.0,3.8,7.5,2.6,0.024,0.098,0.221,0.507,0.326,2000-01 2130,Terry Davis,DEN,34.0,208.28,122.46983999999999,Virginia Union,USA,Undrafted,Undrafted,Undrafted,19,1.7,2.8,0.4,-8.5,0.102,0.174,0.07400000000000001,0.47600000000000003,0.05,2000-01 2131,Terry Porter,SAS,38.0,190.5,92.98635999999999,Wisconsin-Stevens Point,USA,1985,1,24,80,7.2,2.5,3.1,13.3,0.017,0.11199999999999999,0.16699999999999998,0.583,0.248,2000-01 2132,Erick Dampier,GSW,25.0,210.82,120.20188,Mississippi State,USA,1996,1,10,43,7.4,5.8,1.4,-14.1,0.09,0.17600000000000002,0.183,0.43200000000000005,0.096,2000-01 2133,Ike Austin,VAN,31.0,208.28,122.46983999999999,Arizona State,USA,1991,2,48,52,4.3,4.3,1.1,-5.4,0.066,0.244,0.185,0.39299999999999996,0.114,2000-01 2134,Eric Williams,BOS,28.0,203.2,99.79024,Providence,USA,1995,1,14,81,6.6,2.6,1.4,0.6,0.04,0.10300000000000001,0.162,0.48700000000000004,0.109,2000-01 2135,Derek Fisher,LAL,26.0,185.42,90.7184,Arkansas-Little Rock,USA,1996,1,24,20,11.5,3.0,4.4,11.1,0.008,0.08900000000000001,0.153,0.534,0.18100000000000002,2000-01 2136,Derek Anderson,SAS,26.0,195.58,88.45044,Kentucky,USA,1997,1,13,82,15.5,4.4,3.7,12.7,0.031,0.107,0.218,0.542,0.177,2000-01 2137,DerMarr Johnson,ATL,21.0,205.74,91.171992,Cincinnati,USA,2000,1,6,78,5.1,2.3,0.8,-7.4,0.046,0.105,0.177,0.46299999999999997,0.079,2000-01 2138,Dell Curry,TOR,37.0,195.58,92.98635999999999,Virginia Tech,USA,1986,1,15,71,6.0,1.2,1.1,-3.7,0.018000000000000002,0.087,0.20600000000000002,0.53,0.135,2000-01 2139,Dee Brown,ORL,32.0,187.96,92.98635999999999,Jacksonville,USA,1990,1,19,7,6.9,1.6,1.7,-10.3,0.0,0.083,0.153,0.519,0.152,2000-01 2140,Dean Garrett,MIN,34.0,210.82,113.398,Indiana,USA,1988,2,38,70,2.5,3.1,0.3,-4.1,0.085,0.21,0.109,0.511,0.042,2000-01 2141,DeShawn Stevenson,UTA,20.0,195.58,95.25432,None,USA,2000,1,23,40,2.2,0.7,0.5,-3.0,0.037000000000000005,0.073,0.20199999999999999,0.413,0.105,2000-01 2142,David Wingate,SEA,37.0,195.58,84.821704,Georgetown,USA,1986,2,44,1,6.0,0.0,2.0,70.6,0.0,0.0,0.14,1.0,0.28600000000000003,2000-01 2143,David Wesley,CHH,30.0,185.42,95.707912,Baylor,USA,Undrafted,Undrafted,Undrafted,82,17.2,2.7,4.4,2.6,0.023,0.059000000000000004,0.23,0.509,0.214,2000-01 2144,David Vanterpool,WAS,28.0,195.58,90.7184,St. Bonaventure,USA,Undrafted,Undrafted,Undrafted,22,5.5,1.7,3.0,-1.3,0.043,0.064,0.18100000000000002,0.462,0.254,2000-01 2145,David Robinson,SAS,35.0,215.9,113.398,Navy,USA,1987,1,1,80,14.4,8.6,1.5,13.2,0.102,0.21600000000000003,0.22699999999999998,0.5589999999999999,0.087,2000-01 2146,David Benoit,UTA,33.0,203.2,99.79024,Alabama,USA,Undrafted,Undrafted,Undrafted,49,3.6,1.7,0.4,-2.0,0.059000000000000004,0.172,0.201,0.542,0.087,2000-01 2147,Darvin Ham,MIL,27.0,200.66,104.32616,Texas Tech,USA,Undrafted,Undrafted,Undrafted,29,3.8,4.2,0.9,0.3,0.115,0.136,0.115,0.537,0.07,2000-01 2148,Darrick Martin,SAC,30.0,180.34,77.11064,UCLA,USA,Undrafted,Undrafted,Undrafted,31,3.3,0.5,0.5,1.8,0.012,0.073,0.263,0.563,0.152,2000-01 2149,Darrell Armstrong,ORL,33.0,185.42,81.64656,Fayetteville State,USA,Undrafted,Undrafted,Undrafted,75,15.8,4.6,7.0,3.8,0.036000000000000004,0.102,0.20800000000000002,0.535,0.299,2000-01 2150,Darius Miles,LAC,19.0,205.74,91.625584,None,USA,2000,1,3,81,9.4,5.9,1.2,1.7,0.07200000000000001,0.17300000000000001,0.191,0.518,0.08,2000-01 2151,Danny Manning,UTA,35.0,208.28,110.676448,Kansas,USA,1988,1,1,82,7.4,2.6,1.1,3.5,0.065,0.136,0.23199999999999998,0.537,0.135,2000-01 2152,Danny Fortson,GSW,25.0,203.2,117.93392,Cincinnati,USA,1997,1,10,6,16.7,16.3,0.8,-9.6,0.152,0.371,0.166,0.6779999999999999,0.042,2000-01 2153,Danny Ferry,SAS,34.0,208.28,106.59411999999999,Duke,USA,1989,1,2,80,5.6,2.8,0.9,12.9,0.04,0.107,0.122,0.5770000000000001,0.066,2000-01 2154,Daniel Santiago,PHX,25.0,215.9,116.119552,Saint Vincent,Puerto Rico,Undrafted,Undrafted,Undrafted,54,3.1,1.9,0.2,0.4,0.068,0.132,0.156,0.528,0.03,2000-01 2155,Dana Barros,DET,34.0,180.34,73.935496,Boston College,USA,1989,1,16,60,8.0,1.6,1.8,-3.6,0.006,0.091,0.20199999999999999,0.534,0.187,2000-01 2156,Dan McClintock,DEN,24.0,213.36,122.46983999999999,Northern Arizona,USA,2000,2,53,6,3.0,2.8,0.2,-24.2,0.149,0.171,0.158,0.446,0.025,2000-01 2157,Dan Majerle,MIA,35.0,198.12,100.697424,Central Michigan,USA,1988,1,14,53,5.0,3.1,1.7,4.4,0.018000000000000002,0.135,0.11599999999999999,0.48,0.10800000000000001,2000-01 2158,Dan Langhi,HOU,23.0,210.82,99.79024,Vanderbilt,USA,2000,2,31,33,2.7,1.2,0.1,-11.3,0.057,0.126,0.222,0.40299999999999997,0.031,2000-01 2159,Damon Stoudamire,POR,27.0,177.8,77.56423199999999,Arizona,USA,1995,1,7,82,13.0,3.7,5.7,6.8,0.032,0.1,0.21,0.519,0.275,2000-01 2160,Damon Jones,VAN,24.0,190.5,83.91452,Houston,USA,Undrafted,Undrafted,Undrafted,71,6.5,1.7,3.2,-8.0,0.013000000000000001,0.085,0.168,0.525,0.276,2000-01 2161,Dalibor Bagaric,CHI,20.0,215.9,125.64498400000001,None,Croatia,2000,1,24,35,1.3,1.6,0.3,-15.3,0.091,0.158,0.174,0.304,0.065,2000-01 2162,Dale Davis,POR,32.0,210.82,114.30518400000001,Clemson,USA,1991,1,13,81,7.2,7.5,1.3,4.7,0.132,0.19699999999999998,0.134,0.524,0.073,2000-01 2163,Erick Barkley,POR,23.0,185.42,80.28578399999998,St. John's (NY),USA,2000,1,28,8,2.4,0.4,0.8,-10.5,0.0,0.086,0.304,0.43200000000000005,0.25,2000-01 2164,Derek Strong,LAC,33.0,205.74,108.86208,Xavier,USA,1990,2,47,28,4.2,3.9,0.3,-3.4,0.08,0.18,0.14800000000000002,0.44299999999999995,0.023,2000-01 2165,Derrick Coleman,CHH,34.0,208.28,122.46983999999999,Syracuse,USA,1990,1,1,34,8.1,5.4,1.1,-8.6,0.073,0.23,0.22899999999999998,0.469,0.113,2000-01 2166,Cuttino Mobley,HOU,25.0,193.04,86.18248,Rhode Island,USA,1998,2,41,79,19.5,5.0,2.5,3.8,0.033,0.11800000000000001,0.244,0.541,0.114,2000-01 2167,Derrick McKey,IND,34.0,208.28,109.315672,Alabama,USA,1987,1,9,66,2.2,2.7,1.1,-1.2,0.059000000000000004,0.14300000000000002,0.094,0.49,0.12300000000000001,2000-01 2168,Derrick Dial,SAS,25.0,193.04,83.91452,Eastern Michigan,USA,1998,2,52,33,2.6,1.2,0.6,9.8,0.076,0.146,0.24,0.466,0.154,2000-01 2169,Eric Snow,PHI,28.0,190.5,92.532768,Michigan State,USA,1995,2,43,50,9.8,3.3,7.4,5.2,0.018000000000000002,0.08900000000000001,0.16,0.488,0.337,2000-01 2170,Eric Piatkowski,LAC,30.0,198.12,98.429464,Nebraska,USA,1994,1,15,81,10.6,3.0,1.2,-2.3,0.03,0.098,0.179,0.5720000000000001,0.07400000000000001,2000-01 2171,Eric Montross,TOR,29.0,213.36,122.46983999999999,North Carolina,USA,1994,1,9,54,2.2,3.2,0.4,-11.1,0.085,0.212,0.128,0.396,0.045,2000-01 2172,Emanual Davis,SEA,32.0,195.58,88.45044,Delaware State,USA,Undrafted,Undrafted,Undrafted,62,5.8,2.5,2.2,0.6,0.026000000000000002,0.11599999999999999,0.15,0.527,0.162,2000-01 2173,Elton Brand,CHI,22.0,203.2,117.93392,Duke,USA,1999,1,1,74,20.1,10.1,3.2,-8.8,0.113,0.196,0.262,0.523,0.16399999999999998,2000-01 2174,Elliot Perry,PHX,32.0,182.88,68.945984,Memphis,USA,1991,2,37,49,3.0,0.9,1.6,3.3,0.02,0.083,0.166,0.491,0.248,2000-01 2175,Eldridge Recasner,CHH,33.0,193.04,87.089664,Washington,USA,1992,Undrafted,Undrafted,43,2.4,1.2,0.9,-1.5,0.04,0.099,0.174,0.42200000000000004,0.172,2000-01 2176,Elden Campbell,CHH,32.0,213.36,124.7378,Clemson,USA,1990,1,27,78,13.1,7.8,1.3,4.3,0.076,0.218,0.23,0.505,0.08,2000-01 2177,Eddie Robinson,CHH,25.0,205.74,92.98635999999999,Central Oklahoma,USA,Undrafted,Undrafted,Undrafted,67,7.4,3.0,0.9,2.6,0.06,0.129,0.19,0.5589999999999999,0.094,2000-01 2178,Eddie Jones,MIA,29.0,200.66,87.996848,Temple,USA,1994,1,10,63,17.4,4.6,2.7,3.6,0.04,0.115,0.24100000000000002,0.5529999999999999,0.15,2000-01 2179,Eddie House,MIA,23.0,185.42,81.64656,Arizona State,USA,2000,2,37,50,5.0,0.8,1.0,-0.6,0.01,0.078,0.256,0.478,0.192,2000-01 2180,Eddie Gill,NJN,22.0,182.88,86.18248,Weber State,USA,Undrafted,Undrafted,Undrafted,8,4.9,1.1,3.0,-15.9,0.0,0.07400000000000001,0.157,0.451,0.324,2000-01 2181,Earl Boykins,LAC,25.0,165.1,60.327736,Eastern Michigan,USA,Undrafted,Undrafted,Undrafted,10,6.5,1.1,3.2,-6.4,0.028999999999999998,0.055,0.235,0.461,0.405,2000-01 2182,Eduardo Najera,DAL,24.0,203.2,106.140528,Oklahoma,Mexico,2000,2,38,40,3.3,2.4,0.7,-4.9,0.107,0.142,0.146,0.522,0.09300000000000001,2000-01 2183,Dragan Tarlac,CHI,28.0,210.82,122.46983999999999,None,USA,1995,2,31,43,2.4,2.8,0.7,-17.5,0.07200000000000001,0.177,0.11800000000000001,0.45399999999999996,0.087,2000-01 2184,Desmond Mason,SEA,23.0,195.58,97.52228000000001,Oklahoma State,USA,2000,1,17,78,5.9,3.2,0.8,-2.0,0.055,0.138,0.157,0.483,0.066,2000-01 2185,Duane Causwell,MIA,33.0,213.36,115.66596000000001,Temple,USA,1990,1,18,31,2.5,2.7,0.2,-8.7,0.07200000000000001,0.19899999999999998,0.154,0.396,0.023,2000-01 2186,Devean George,LAL,23.0,203.2,99.79024,Augsburg,USA,1999,1,23,59,3.1,1.9,0.3,-6.0,0.065,0.145,0.201,0.39399999999999996,0.055,2000-01 2187,Dikembe Mutombo,PHI,35.0,218.44,120.20188,Georgetown,Congo,1991,1,4,75,10.0,13.5,1.0,0.6,0.135,0.294,0.146,0.547,0.048,2000-01 2188,Dion Glover,ATL,22.0,195.58,103.418976,Georgia Tech,USA,1999,1,20,57,5.9,2.3,1.2,-3.8,0.047,0.106,0.2,0.461,0.12300000000000001,2000-01 2189,Dirk Nowitzki,DAL,23.0,210.82,107.501304,None,Germany,1998,1,9,82,21.8,9.2,2.1,7.8,0.044000000000000004,0.22,0.237,0.601,0.092,2000-01 2190,Don MacLean,MIA,31.0,208.28,106.59411999999999,UCLA,USA,1992,1,19,8,3.9,2.3,0.5,-3.4,0.096,0.157,0.203,0.613,0.095,2000-01 2191,Detlef Schrempf,POR,38.0,208.28,106.59411999999999,Washington,USA,1985,1,8,26,4.0,3.0,1.7,-2.0,0.053,0.185,0.161,0.48700000000000004,0.182,2000-01 2192,Donnell Harvey,DAL,20.0,203.2,99.79024,Florida,USA,2000,1,22,18,1.2,1.1,0.1,-5.7,0.094,0.20600000000000002,0.187,0.523,0.059000000000000004,2000-01 2193,Doug West,VAN,34.0,198.12,90.7184,Villanova,USA,1989,2,38,15,1.9,1.0,0.9,-16.5,0.023,0.071,0.11599999999999999,0.341,0.14,2000-01 2194,Donyell Marshall,UTA,28.0,205.74,104.32616,Connecticut,USA,1994,1,4,81,13.6,7.0,1.6,6.6,0.094,0.2,0.215,0.568,0.099,2000-01 2195,Doug Christie,SAC,31.0,198.12,92.98635999999999,Pepperdine,USA,1992,1,17,81,12.3,4.4,3.6,6.0,0.035,0.094,0.161,0.5379999999999999,0.142,2000-01 2196,Doug Overton,NJN,31.0,190.5,86.18248,La Salle,USA,1991,2,40,21,6.0,1.9,3.4,-9.5,0.009000000000000001,0.08199999999999999,0.168,0.428,0.24600000000000002,2000-01 2197,Don Reid,ORL,27.0,203.2,113.398,Georgetown,USA,1995,2,58,64,3.3,3.8,0.3,-0.3,0.12,0.22899999999999998,0.129,0.59,0.044000000000000004,2000-01 2198,Tim Duncan,SAS,26.0,213.36,117.93392,Wake Forest,US Virgin Islands,1997,1,1,82,25.5,12.7,3.7,8.7,0.09699999999999999,0.257,0.29100000000000004,0.5760000000000001,0.182,2001-02 2199,Tim Hardaway,DEN,35.0,182.88,88.45044,Texas-El Paso,USA,1989,1,14,68,9.6,1.8,4.1,-1.7,0.01,0.077,0.217,0.49200000000000005,0.28300000000000003,2001-02 2200,Tim James,PHI,25.0,200.66,96.16150400000001,Miami (FL),USA,1999,1,25,9,1.3,0.8,0.1,-22.5,0.11900000000000001,0.07400000000000001,0.19699999999999998,0.384,0.048,2001-02 2201,Tim Thomas,MIL,25.0,208.28,108.86208,Villanova,USA,1997,1,7,74,11.7,4.1,1.4,1.2,0.039,0.132,0.225,0.522,0.091,2001-02 2202,Todd MacCulloch,NJN,26.0,213.36,127.00576000000001,Washington,Canada,1999,2,47,62,9.7,6.1,1.3,6.3,0.114,0.158,0.175,0.562,0.078,2001-02 2203,Toni Kukoc,ATL,33.0,210.82,106.59411999999999,None,Croatia,1990,2,29,59,9.9,3.7,3.5,-1.8,0.033,0.13699999999999998,0.20600000000000002,0.511,0.23399999999999999,2001-02 2204,Tony Battie,BOS,26.0,210.82,108.86208,Texas Tech,USA,1997,1,5,74,6.9,6.5,0.5,5.1,0.109,0.17800000000000002,0.126,0.57,0.031,2001-02 2205,Tony Delk,BOS,28.0,187.96,85.728888,Kentucky,USA,1996,1,16,63,9.5,3.2,2.1,4.2,0.042,0.114,0.21,0.473,0.146,2001-02 2206,Tony Massenburg,MEM,34.0,205.74,113.398,Maryland,USA,1990,2,43,73,5.5,4.4,0.4,-13.5,0.092,0.21100000000000002,0.17300000000000001,0.503,0.036000000000000004,2001-02 2207,Tony Parker,SAS,20.0,187.96,80.28578399999998,None,France,2001,1,28,77,9.2,2.6,4.3,5.8,0.017,0.08199999999999999,0.177,0.49700000000000005,0.237,2001-02 2208,Tierre Brown,HOU,23.0,187.96,85.728888,McNeese State,USA,Undrafted,Undrafted,Undrafted,40,3.1,1.1,1.8,-18.9,0.03,0.091,0.188,0.483,0.341,2001-02 2209,Tom Gugliotta,PHX,32.0,208.28,108.86208,North Carolina State,USA,1992,1,6,44,6.5,5.0,1.8,-1.2,0.057,0.161,0.15,0.449,0.1,2001-02 2210,Theo Ratliff,ATL,29.0,208.28,104.32616,Wyoming,USA,1995,1,18,3,8.7,5.3,0.3,-11.2,0.075,0.141,0.183,0.523,0.024,2001-02 2211,Stacey Augmon,CHH,33.0,203.2,96.615096,Nevada-Las Vegas,USA,1991,1,9,77,4.7,2.9,1.3,5.3,0.053,0.139,0.149,0.48100000000000004,0.128,2001-02 2212,Terrell Brandon,MIN,32.0,180.34,78.471416,Oregon,USA,1991,1,11,32,12.4,2.9,8.3,7.2,0.02,0.085,0.201,0.494,0.387,2001-02 2213,Terence Morris,HOU,23.0,205.74,100.243832,Maryland,USA,2001,2,33,68,3.8,3.1,0.9,-11.0,0.076,0.14,0.142,0.423,0.096,2001-02 2214,Tariq Abdul-Wahad,DAL,27.0,198.12,101.151016,San Jose State,France,1997,1,11,24,5.6,3.5,1.0,-7.8,0.09699999999999999,0.115,0.19,0.418,0.09,2001-02 2215,Tang Hamilton,MIA,24.0,203.2,99.79024,Mississippi State,USA,Undrafted,Undrafted,Undrafted,9,2.2,2.0,0.6,-0.5,0.065,0.145,0.10300000000000001,0.514,0.08800000000000001,2001-02 2216,Stromile Swift,MEM,22.0,205.74,102.0582,Louisiana State,USA,2000,1,2,68,11.8,6.3,0.7,-9.1,0.10300000000000001,0.158,0.21899999999999997,0.539,0.052000000000000005,2001-02 2217,Steven Smith,SAS,33.0,203.2,100.243832,Michigan State,USA,1991,1,5,77,11.6,2.5,2.0,6.6,0.024,0.075,0.183,0.588,0.113,2001-02 2218,Steven Hunter,ORL,20.0,208.28,101.604608,DePaul,USA,2001,1,15,53,3.6,1.8,0.1,-7.1,0.08199999999999999,0.11199999999999999,0.17600000000000002,0.502,0.016,2001-02 2219,Steve Nash,DAL,28.0,190.5,88.45044,Santa Clara,Canada,1996,1,15,82,17.9,3.1,7.7,5.2,0.02,0.077,0.23,0.602,0.355,2001-02 2220,Steve Kerr,POR,36.0,190.5,81.64656,Arizona,USA,1988,2,50,65,4.1,0.9,1.0,3.3,0.009000000000000001,0.081,0.154,0.573,0.134,2001-02 2221,Steve Goodrich,NJN,26.0,208.28,99.79024,Princeton,USA,Undrafted,Undrafted,Undrafted,9,0.6,0.6,0.6,-5.8,0.019,0.091,0.134,0.23,0.16699999999999998,2001-02 2222,Steve Francis,HOU,25.0,190.5,88.45044,Maryland,USA,1999,1,2,57,21.6,7.0,6.4,-1.6,0.051,0.142,0.281,0.517,0.281,2001-02 2223,Stephon Marbury,PHX,25.0,187.96,81.64656,Georgia Tech,USA,1996,1,4,82,20.4,3.2,8.1,-1.7,0.026000000000000002,0.069,0.265,0.519,0.355,2001-02 2224,Stephen Jackson,SAS,24.0,203.2,98.88305600000001,Butler Community College,USA,1997,2,42,23,3.9,1.1,0.5,-3.0,0.015,0.111,0.245,0.452,0.098,2001-02 2225,Terry Porter,SAS,39.0,190.5,92.98635999999999,Wisconsin-Stevens Point,USA,1985,1,24,72,5.5,2.3,2.8,14.0,0.011000000000000001,0.125,0.156,0.5579999999999999,0.25,2001-02 2226,Tracy McGrady,ORL,23.0,203.2,95.25432,None,USA,1997,1,9,76,25.6,7.8,5.3,4.6,0.057,0.171,0.311,0.532,0.25,2001-02 2227,Vince Carter,TOR,25.0,198.12,102.0582,North Carolina,USA,1998,1,5,60,24.7,5.2,4.0,1.5,0.063,0.085,0.302,0.515,0.19,2001-02 2228,Trajan Langdon,CLE,26.0,190.5,89.357624,Duke,USA,1999,1,11,44,4.8,1.3,1.4,-0.1,0.03,0.1,0.218,0.5329999999999999,0.221,2001-02 2229,Speedy Claxton,PHI,24.0,180.34,75.296272,Hofstra,USA,2000,1,20,67,7.2,2.4,3.0,-1.5,0.034,0.086,0.18100000000000002,0.469,0.22699999999999998,2001-02 2230,Zeljko Rebraca,DET,30.0,213.36,116.573144,None,Yugoslavia,1994,2,54,74,6.9,3.9,0.5,3.4,0.094,0.198,0.217,0.569,0.055999999999999994,2001-02 2231,Zach Randolph,POR,20.0,205.74,122.46983999999999,Michigan State,USA,2001,1,19,41,2.8,1.7,0.3,-3.7,0.14400000000000002,0.193,0.253,0.479,0.10300000000000001,2001-02 2232,William Avery,MIN,22.0,187.96,89.357624,Duke,USA,1999,1,14,28,2.5,0.9,1.3,-1.9,0.018000000000000002,0.087,0.205,0.361,0.217,2001-02 2233,Will Solomon,MEM,23.0,185.42,83.91452,Clemson,USA,2001,2,32,62,5.2,1.1,1.5,-6.8,0.013999999999999999,0.07,0.215,0.442,0.18899999999999997,2001-02 2234,Wesley Person,CLE,31.0,198.12,90.7184,Auburn,USA,1994,1,23,78,15.1,3.8,2.2,-0.5,0.021,0.10099999999999999,0.17600000000000002,0.589,0.10300000000000001,2001-02 2235,Wang Zhi-zhi,DAL,24.0,215.9,99.79024,None,China,1999,2,36,55,5.6,2.0,0.4,5.8,0.034,0.17300000000000001,0.22399999999999998,0.564,0.063,2001-02 2236,Walter McCarty,BOS,28.0,208.28,104.32616,Kentucky,USA,1996,1,19,56,3.8,2.3,0.7,0.4,0.05,0.154,0.135,0.563,0.09699999999999999,2001-02 2237,Walt Williams,HOU,32.0,203.2,104.32616,Maryland,USA,1992,1,7,48,9.4,3.4,1.4,-4.1,0.038,0.129,0.195,0.5379999999999999,0.107,2001-02 2238,Wally Szczerbiak,MIN,25.0,200.66,110.676448,Miami (OH),USA,1999,1,6,82,18.7,4.8,3.1,5.0,0.045,0.098,0.217,0.58,0.133,2001-02 2239,Voshon Lenard,DEN,29.0,193.04,92.98635999999999,Minnesota,USA,1994,2,46,71,11.5,2.6,1.8,-7.2,0.025,0.107,0.24600000000000002,0.495,0.14400000000000002,2001-02 2240,Vonteego Cummings,PHI,26.0,190.5,86.18248,Pittsburgh,USA,1999,1,26,58,3.3,0.9,1.0,-12.4,0.031,0.092,0.215,0.47700000000000004,0.23,2001-02 2241,Vladimir Stepania,MIA,26.0,213.36,107.047712,None,Georgia,1998,1,27,67,4.3,4.0,0.2,-4.5,0.13,0.239,0.185,0.483,0.033,2001-02 2242,Vladimir Radmanovic,SEA,21.0,208.28,106.140528,None,Serbia,2001,1,12,61,6.7,3.8,1.3,3.3,0.044000000000000004,0.175,0.172,0.528,0.1,2001-02 2243,Vlade Divac,SAC,34.0,215.9,117.93392,None,Serbia and Montenegro,1989,1,26,80,11.1,8.4,3.7,9.2,0.09300000000000001,0.19899999999999998,0.18600000000000003,0.513,0.177,2001-02 2244,Vitaly Potapenko,BOS,27.0,208.28,129.27372,Wright State,Ukraine,1996,1,12,79,4.6,4.4,0.4,-1.0,0.132,0.154,0.141,0.513,0.038,2001-02 2245,Vinny Del Negro,PHX,35.0,193.04,83.91452,North Carolina State,USA,1988,2,29,2,1.0,0.0,1.0,-3.1,0.0,0.0,0.405,0.25,0.667,2001-02 2246,Vin Baker,SEA,30.0,210.82,113.398,Hartford,USA,1993,1,8,55,14.1,6.4,1.3,-1.5,0.11699999999999999,0.126,0.235,0.517,0.071,2001-02 2247,Victor Alexander,DET,32.0,208.28,120.20188,Iowa State,USA,1991,1,17,14,2.9,2.1,0.4,5.1,0.075,0.237,0.28,0.36700000000000005,0.105,2001-02 2248,Tyson Chandler,CHI,19.0,215.9,106.59411999999999,None,USA,2001,1,2,71,6.1,4.8,0.8,-7.1,0.09699999999999999,0.18600000000000003,0.16399999999999998,0.5429999999999999,0.063,2001-02 2249,Tyronn Lue,WAS,25.0,182.88,80.73937600000001,Nebraska,USA,1998,1,23,71,7.8,1.7,3.5,-0.8,0.011000000000000001,0.08199999999999999,0.205,0.507,0.293,2001-02 2250,Tyrone Nesby,WAS,26.0,198.12,111.13004,Nevada-Las Vegas,USA,Undrafted,Undrafted,Undrafted,70,6.3,4.5,1.3,-0.5,0.079,0.171,0.157,0.48100000000000004,0.099,2001-02 2251,Tyrone Hill,CLE,34.0,205.74,113.398,Xavier,USA,1990,1,11,26,8.0,10.5,0.9,-1.5,0.11199999999999999,0.29100000000000004,0.153,0.46,0.043,2001-02 2252,Troy Murphy,GSW,22.0,210.82,111.13004,Notre Dame,USA,2001,1,14,82,5.9,3.9,0.9,-8.2,0.075,0.18100000000000002,0.172,0.488,0.08,2001-02 2253,Troy Hudson,ORL,26.0,185.42,77.11064,Southern Illinois,USA,Undrafted,Undrafted,Undrafted,81,11.7,1.8,3.1,-1.4,0.019,0.069,0.258,0.526,0.23600000000000002,2001-02 2254,Trenton Hassell,CHI,23.0,195.58,90.7184,Austin Peay,USA,2001,2,29,78,8.7,3.3,2.2,-10.3,0.033,0.10300000000000001,0.161,0.502,0.13,2001-02 2255,Tremaine Fowlkes,LAC,26.0,203.2,99.79024,Fresno State,USA,1998,2,54,22,3.4,2.9,0.8,-9.0,0.1,0.113,0.11900000000000001,0.47700000000000004,0.076,2001-02 2256,Travis Knight,NYK,27.0,213.36,106.59411999999999,Connecticut,USA,1996,1,29,49,2.0,2.1,0.2,-10.5,0.121,0.15,0.162,0.401,0.034,2001-02 2257,Travis Best,CHI,29.0,180.34,82.10015200000001,Georgia Tech,USA,1995,1,23,74,7.9,2.0,4.4,-4.7,0.013000000000000001,0.087,0.177,0.511,0.301,2001-02 2258,Tracy Murray,TOR,30.0,200.66,103.418976,UCLA,USA,1992,1,18,40,5.7,1.3,0.5,-7.8,0.040999999999999995,0.09300000000000001,0.231,0.525,0.07400000000000001,2001-02 2259,Slava Medvedenko,LAL,23.0,208.28,113.398,None,Ukraine,Undrafted,Undrafted,Undrafted,70,4.7,2.3,0.6,6.9,0.127,0.113,0.228,0.501,0.099,2001-02 2260,Robert Horry,LAL,31.0,208.28,106.59411999999999,Alabama,USA,1992,1,11,81,6.8,5.9,2.9,8.3,0.068,0.17800000000000002,0.128,0.528,0.158,2001-02 2261,Shawn Marion,PHX,24.0,200.66,97.52228000000001,Nevada-Las Vegas,USA,1999,1,9,81,19.1,9.9,2.0,0.0,0.075,0.217,0.235,0.518,0.091,2001-02 2262,Richard Hamilton,WAS,24.0,200.66,87.543256,Connecticut,USA,1999,1,7,63,20.0,3.4,2.7,-1.0,0.038,0.077,0.28600000000000003,0.511,0.14300000000000002,2001-02 2263,Reggie Slater,ATL,31.0,200.66,115.66596000000001,Wyoming,USA,Undrafted,Undrafted,Undrafted,8,2.6,1.1,0.1,-14.2,0.096,0.11800000000000001,0.182,0.541,0.038,2001-02 2264,Reggie Miller,IND,36.0,200.66,88.45044,UCLA,USA,1987,1,11,79,16.5,2.8,3.2,-0.7,0.009000000000000001,0.075,0.184,0.617,0.14400000000000002,2001-02 2265,Ray Allen,MIL,26.0,195.58,92.98635999999999,Connecticut,USA,1996,1,5,69,21.8,4.5,3.9,1.2,0.039,0.10099999999999999,0.262,0.598,0.193,2001-02 2266,Ratko Varda,DET,23.0,215.9,117.93392,None,Yugoslavia,Undrafted,Undrafted,Undrafted,1,5.0,1.0,0.0,-41.6,0.0,0.5,0.31,0.727,0.0,2001-02 2267,Rasho Nesterovic,MIN,26.0,213.36,112.490816,None,Slovenia,1998,1,17,82,8.4,6.5,0.9,6.1,0.105,0.171,0.159,0.499,0.049,2001-02 2268,Rasheed Wallace,POR,27.0,210.82,102.0582,North Carolina,USA,1995,1,4,79,19.3,8.2,1.9,6.4,0.054000000000000006,0.20199999999999999,0.237,0.54,0.09,2001-02 2269,Rashard Lewis,SEA,22.0,208.28,97.52228000000001,None,USA,1998,2,32,71,16.8,7.0,1.7,5.4,0.064,0.157,0.207,0.564,0.076,2001-02 2270,Randy Livingston,SEA,27.0,193.04,94.800728,Louisiana State,USA,1996,2,42,13,3.2,1.9,2.0,14.3,0.06,0.105,0.159,0.348,0.205,2001-02 2271,Randy Brown,BOS,34.0,187.96,86.18248,New Mexico State,USA,1991,2,31,1,0.0,0.0,2.0,-29.9,0.0,0.0,0.071,0.0,1.0,2001-02 2272,Raja Bell,PHI,25.0,195.58,92.532768,Florida International,U.S. Virgin Islands,Undrafted,Undrafted,Undrafted,74,3.4,1.5,1.0,-5.0,0.04,0.1,0.159,0.486,0.141,2001-02 2273,Rafer Alston,MIL,25.0,187.96,77.56423199999999,Fresno State,USA,1998,2,39,50,3.5,1.4,2.9,-4.1,0.02,0.113,0.19699999999999998,0.434,0.41,2001-02 2274,Raef LaFrentz,DAL,26.0,210.82,111.13004,Kansas,USA,1998,1,3,78,13.5,7.4,1.1,-1.9,0.078,0.185,0.19899999999999998,0.5329999999999999,0.059000000000000004,2001-02 2275,Richard Jefferson,NJN,22.0,200.66,100.697424,Arizona,USA,2001,1,13,79,9.4,3.7,1.8,2.7,0.049,0.125,0.193,0.524,0.125,2001-02 2276,Quincy Lewis,UTA,25.0,200.66,97.52228000000001,Minnesota,USA,1999,1,19,36,4.0,1.2,1.0,-3.1,0.026000000000000002,0.077,0.16899999999999998,0.474,0.12,2001-02 2277,Primoz Brezec,IND,22.0,215.9,110.22285600000001,None,Slovenia,2000,1,27,22,2.0,1.3,0.3,-7.0,0.1,0.083,0.125,0.5379999999999999,0.065,2001-02 2278,Predrag Drobnjak,SEA,26.0,210.82,123.377024,None,Yugoslavia,1997,2,48,64,6.8,3.4,0.8,4.3,0.078,0.146,0.2,0.49,0.069,2001-02 2279,Popeye Jones,WAS,32.0,203.2,113.398,Murray State,USA,1992,2,41,79,7.0,7.3,1.6,1.5,0.13699999999999998,0.21100000000000002,0.156,0.49,0.10300000000000001,2001-02 2280,Peja Stojakovic,SAC,25.0,205.74,103.872568,None,Serbia and Montenegro,1996,1,14,71,21.2,5.3,2.5,7.5,0.03,0.12,0.23399999999999999,0.5920000000000001,0.106,2001-02 2281,Paul Pierce,BOS,24.0,198.12,104.32616,Kansas,USA,1998,1,10,82,26.1,6.9,3.2,5.3,0.026000000000000002,0.166,0.293,0.57,0.153,2001-02 2282,Pau Gasol,MEM,21.0,213.36,102.965384,None,Spain,2001,1,3,82,17.6,8.9,2.7,-6.2,0.08900000000000001,0.182,0.226,0.5660000000000001,0.133,2001-02 2283,Patrick Ewing,ORL,39.0,213.36,115.66596000000001,Georgetown,Jamaica,1985,1,1,65,6.0,4.0,0.5,-1.9,0.07200000000000001,0.253,0.226,0.49700000000000005,0.066,2001-02 2284,Pat Garrity,ORL,25.0,205.74,107.95489599999999,Notre Dame,USA,1998,1,19,80,11.1,4.2,1.2,4.0,0.036000000000000004,0.124,0.16399999999999998,0.5529999999999999,0.063,2001-02 2285,P.J. Brown,CHH,32.0,210.82,108.40848799999999,Louisiana Tech,USA,1992,2,29,80,8.4,9.8,1.3,3.1,0.122,0.23,0.124,0.545,0.064,2001-02 2286,Othella Harrington,NYK,28.0,205.74,106.59411999999999,Georgetown,USA,1996,2,30,77,7.7,4.5,0.5,1.5,0.10099999999999999,0.16399999999999998,0.188,0.5670000000000001,0.042,2001-02 2287,Oscar Torres,HOU,25.0,198.12,95.25432,Venezuela,Venezuela,Undrafted,Undrafted,Undrafted,65,6.0,1.9,0.6,-9.2,0.047,0.083,0.185,0.502,0.065,2001-02 2288,Olumide Oyedeji,SEA,21.0,208.28,115.66596000000001,None,Nigeria,2000,2,42,36,1.5,2.2,0.1,5.0,0.14400000000000002,0.245,0.13,0.562,0.026000000000000002,2001-02 2289,Obinna Ekezie,LAC,26.0,205.74,122.46983999999999,Maryland,Nigeria,1999,2,37,29,1.9,1.2,0.1,1.0,0.092,0.162,0.198,0.47700000000000004,0.032,2001-02 2290,Quentin Richardson,LAC,22.0,198.12,101.151016,DePaul,USA,2000,1,18,81,13.3,4.1,1.6,1.3,0.06,0.11599999999999999,0.23199999999999998,0.534,0.105,2001-02 2291,Rick Brunson,POR,30.0,193.04,86.18248,Temple,USA,Undrafted,Undrafted,Undrafted,59,2.1,1.2,1.9,-1.0,0.055999999999999994,0.10300000000000001,0.158,0.48100000000000004,0.336,2001-02 2292,Rick Fox,LAL,32.0,200.66,109.769264,North Carolina,Canada,1991,1,24,82,7.9,4.7,3.5,6.1,0.044000000000000004,0.14300000000000002,0.152,0.502,0.174,2001-02 2293,Ricky Davis,CLE,22.0,200.66,89.357624,Iowa,USA,1998,1,21,82,11.7,3.0,2.2,-4.3,0.039,0.10800000000000001,0.24100000000000002,0.539,0.168,2001-02 2294,Shawn Kemp,POR,32.0,208.28,127.00576000000001,Trinity Valley Community College,USA,1989,1,17,75,6.1,3.8,0.7,-1.7,0.085,0.203,0.20199999999999999,0.489,0.071,2001-02 2295,Shawn Bradley,DAL,30.0,228.6,120.20188,Brigham Young,USA,1993,1,2,53,4.1,3.3,0.4,6.2,0.084,0.17600000000000002,0.136,0.562,0.04,2001-02 2296,Shareef Abdur-Rahim,ATL,25.0,205.74,104.32616,California,USA,1996,1,3,77,21.2,9.0,3.1,-4.4,0.075,0.191,0.27,0.536,0.152,2001-02 2297,Shaquille O'Neal,LAL,30.0,215.9,142.88148,Louisiana State,USA,1992,1,1,67,27.2,10.7,3.0,11.5,0.11,0.21100000000000002,0.318,0.59,0.157,2001-02 2298,Shane Battier,MEM,23.0,203.2,99.79024,Duke,USA,2001,1,6,78,14.4,5.4,2.8,-5.6,0.064,0.086,0.18100000000000002,0.518,0.11599999999999999,2001-02 2299,Shandon Anderson,NYK,28.0,198.12,95.25432,Georgia,USA,1996,2,54,82,5.0,3.0,0.9,-3.6,0.043,0.138,0.153,0.489,0.083,2001-02 2300,Shammond Williams,SEA,27.0,185.42,91.171992,North Carolina,USA,1998,2,34,50,4.4,1.3,1.7,0.2,0.033,0.094,0.192,0.526,0.225,2001-02 2301,Sean Rooks,LAC,32.0,208.28,117.93392,Arizona,USA,1992,2,30,61,3.0,2.0,0.4,-0.3,0.051,0.14400000000000002,0.14300000000000002,0.44299999999999995,0.055,2001-02 2302,Sean Marks,MIA,26.0,208.28,113.398,California,New Zealand,1998,2,44,21,4.6,3.6,0.4,-6.1,0.067,0.201,0.182,0.466,0.046,2001-02 2303,Scottie Pippen,POR,36.0,200.66,103.418976,Central Arkansas,USA,1987,1,5,62,10.6,5.2,5.9,2.8,0.043,0.147,0.188,0.49700000000000005,0.28300000000000003,2001-02 2304,Scott Williams,DEN,34.0,208.28,111.13004,North Carolina,USA,Undrafted,Undrafted,Undrafted,41,4.9,5.1,0.3,-12.2,0.11699999999999999,0.2,0.16699999999999998,0.43,0.028999999999999998,2001-02 2305,Scott Padgett,UTA,26.0,205.74,108.86208,Kentucky,USA,1999,1,28,75,6.7,3.8,1.1,2.4,0.10300000000000001,0.156,0.17800000000000002,0.568,0.109,2001-02 2306,Scot Pollard,SAC,27.0,210.82,120.20188,Kansas,USA,1997,1,19,80,6.4,7.1,0.7,7.2,0.107,0.214,0.115,0.59,0.039,2001-02 2307,Samuel Dalembert,PHI,22.0,210.82,113.398,Seton Hall,Haiti,2001,1,26,34,1.5,2.0,0.1,-4.5,0.153,0.285,0.172,0.44,0.047,2001-02 2308,Samaki Walker,LAL,26.0,205.74,117.93392,Louisville,USA,1996,1,9,69,6.7,7.0,0.9,3.1,0.087,0.231,0.131,0.545,0.057,2001-02 2309,Sam Mitchell,MIN,38.0,200.66,97.52228000000001,Mercer,USA,1985,3,54,74,3.3,1.1,0.6,1.9,0.027999999999999997,0.105,0.171,0.491,0.096,2001-02 2310,Sam Mack,MIA,32.0,200.66,99.79024,Houston,USA,Undrafted,Undrafted,Undrafted,12,3.3,1.2,0.3,1.0,0.013999999999999999,0.083,0.16899999999999998,0.384,0.04,2001-02 2311,Sam Cassell,MIL,32.0,190.5,83.91452,Florida State,USA,1993,1,24,74,19.7,4.2,6.7,3.1,0.025,0.10800000000000001,0.26899999999999996,0.545,0.324,2001-02 2312,Ryan Bowen,DEN,26.0,205.74,102.965384,Iowa,USA,1998,2,55,75,4.9,4.0,0.7,1.0,0.08900000000000001,0.11599999999999999,0.10300000000000001,0.524,0.046,2001-02 2313,Rusty LaRue,UTA,28.0,190.5,83.91452,Wake Forest,USA,Undrafted,Undrafted,Undrafted,33,5.8,1.5,2.2,-5.9,0.024,0.08199999999999999,0.20199999999999999,0.48200000000000004,0.23399999999999999,2001-02 2314,Ruben Patterson,POR,26.0,195.58,101.604608,Cincinnati,USA,1998,2,31,75,11.2,4.0,1.4,2.6,0.10300000000000001,0.098,0.222,0.5670000000000001,0.109,2001-02 2315,Ruben Boumtje-Boumtje,POR,24.0,213.36,111.13004,Georgetown,USA,2001,2,49,33,1.2,1.7,0.1,-12.8,0.094,0.165,0.11,0.45299999999999996,0.027999999999999997,2001-02 2316,Ron Mercer,IND,26.0,200.66,95.25432,Kentucky,USA,1997,1,6,53,13.9,3.4,2.4,-11.1,0.032,0.09,0.245,0.439,0.154,2001-02 2317,Rodney White,DET,22.0,205.74,107.95489599999999,North Carolina-Charlotte,USA,2001,1,9,16,3.5,1.1,0.8,6.6,0.02,0.13699999999999998,0.287,0.423,0.138,2001-02 2318,Rodney Rogers,BOS,31.0,200.66,115.66596000000001,Wake Forest,USA,1993,1,9,77,11.9,4.5,1.4,4.0,0.075,0.134,0.21899999999999997,0.5579999999999999,0.10099999999999999,2001-02 2319,Rodney Buford,MEM,24.0,195.58,85.728888,Creighton,USA,1999,2,53,63,9.4,4.3,1.1,-9.5,0.033,0.13699999999999998,0.179,0.47,0.068,2001-02 2320,Rod Strickland,MIA,35.0,190.5,83.91452,DePaul,USA,1988,1,19,76,10.4,3.1,6.1,1.9,0.026000000000000002,0.091,0.2,0.495,0.34700000000000003,2001-02 2321,Robert Traylor,CHH,25.0,203.2,128.820128,Michigan,USA,1998,1,6,61,3.7,3.1,0.6,-3.1,0.115,0.19699999999999998,0.193,0.473,0.09300000000000001,2001-02 2322,Robert Pack,MIN,33.0,187.96,86.18248,Southern California,USA,Undrafted,Undrafted,Undrafted,16,3.9,1.4,3.1,-6.3,0.031,0.07200000000000001,0.17,0.41600000000000004,0.316,2001-02 2323,Shawnelle Scott,DEN,30.0,208.28,113.398,St. John's (NY),USA,1994,2,43,21,3.9,4.9,0.4,-5.8,0.19399999999999998,0.22699999999999998,0.16699999999999998,0.489,0.055999999999999994,2001-02 2324,Norman Richardson,CHI,24.0,195.58,90.7184,Hofstra,USA,Undrafted,Undrafted,Undrafted,11,2.7,0.7,0.2,-17.1,0.047,0.085,0.221,0.501,0.057,2001-02 2325,Nick Van Exel,DAL,30.0,185.42,88.45044,Cincinnati,USA,1993,2,37,72,18.4,3.5,6.6,-3.3,0.012,0.10300000000000001,0.268,0.495,0.33899999999999997,2001-02 2326,Dell Curry,TOR,38.0,195.58,92.98635999999999,Virginia Tech,USA,1986,1,15,56,6.4,1.4,1.1,-0.6,0.028999999999999998,0.081,0.209,0.495,0.12,2001-02 2327,Jermaine Jackson,TOR,26.0,195.58,92.532768,Detroit Mercy,USA,Undrafted,Undrafted,Undrafted,24,2.4,1.1,2.4,-3.0,0.012,0.10300000000000001,0.113,0.542,0.32799999999999996,2001-02 2328,Jelani McCoy,LAL,24.0,208.28,111.13004,UCLA,USA,1998,2,33,21,1.2,1.2,0.3,-14.8,0.092,0.185,0.14800000000000002,0.53,0.109,2001-02 2329,Jeff Trepagnier,CLE,22.0,193.04,90.7184,Southern California,USA,2001,2,35,12,1.5,1.0,1.0,3.6,0.046,0.127,0.203,0.345,0.255,2001-02 2330,Jeff McInnis,LAC,27.0,193.04,81.19296800000001,North Carolina,USA,1996,2,37,81,14.6,2.6,6.2,-2.1,0.017,0.061,0.204,0.486,0.27699999999999997,2001-02 2331,Jeff Foster,IND,25.0,210.82,109.769264,Texas State,USA,1999,1,21,82,5.7,6.8,0.9,0.3,0.131,0.21600000000000003,0.14,0.493,0.062,2001-02 2332,Jason Williams,MEM,26.0,185.42,86.18248,Florida,USA,1998,1,7,65,14.8,3.0,8.0,-7.6,0.011000000000000001,0.085,0.25,0.466,0.39299999999999996,2001-02 2333,Jason Terry,ATL,24.0,187.96,79.83219199999998,Arizona,USA,1999,1,10,78,19.3,3.5,5.7,-3.8,0.015,0.08800000000000001,0.23600000000000002,0.5489999999999999,0.261,2001-02 2334,Jason Richardson,GSW,21.0,198.12,99.79024,Michigan State,USA,2001,1,5,80,14.4,4.3,3.0,-6.0,0.049,0.08900000000000001,0.213,0.48700000000000004,0.149,2001-02 2335,Jason Kidd,NJN,29.0,193.04,96.16150400000001,California,USA,1994,1,2,82,14.7,7.3,9.9,5.7,0.047,0.16899999999999998,0.221,0.484,0.40700000000000003,2001-02 2336,Jason Hart,SAS,24.0,187.96,82.10015200000001,Syracuse,USA,2000,2,49,10,2.6,1.3,1.2,5.0,0.057999999999999996,0.12300000000000001,0.161,0.601,0.231,2001-02 2337,Jason Collins,NJN,23.0,213.36,117.93392,Stanford,USA,2001,1,18,77,4.5,3.9,1.1,3.5,0.107,0.142,0.138,0.5,0.094,2001-02 2338,Jason Collier,HOU,24.0,213.36,117.93392,Georgia Tech,USA,2000,1,15,25,4.2,3.3,0.4,-17.4,0.091,0.166,0.152,0.486,0.042,2001-02 2339,Jason Caffey,MIL,29.0,203.2,116.119552,Alabama,USA,1995,1,20,23,4.3,2.2,0.5,-2.9,0.096,0.092,0.179,0.544,0.073,2001-02 2340,Jarron Collins,UTA,23.0,210.82,114.30518400000001,Stanford,USA,2001,2,52,70,6.4,4.2,0.8,2.4,0.113,0.14,0.152,0.532,0.065,2001-02 2341,Jaren Jackson,ORL,34.0,198.12,102.0582,Georgetown,USA,Undrafted,Undrafted,Undrafted,9,4.3,1.9,0.9,-13.9,0.008,0.136,0.145,0.503,0.09,2001-02 2342,Jermaine O'Neal,IND,23.0,210.82,109.769264,None,USA,1996,1,17,72,19.0,10.5,1.6,1.7,0.08199999999999999,0.225,0.251,0.521,0.079,2001-02 2343,Jerome James,SEA,26.0,215.9,123.377024,Florida A&M,USA,1998,2,36,56,5.3,4.1,0.4,9.7,0.11599999999999999,0.161,0.183,0.498,0.036000000000000004,2001-02 2344,Jerome Moiso,CHH,24.0,208.28,105.23334399999999,UCLA,France,2000,1,11,15,1.1,1.7,0.3,0.8,0.061,0.3,0.171,0.4,0.085,2001-02 2345,Jerome Williams,TOR,29.0,205.74,93.439952,Georgetown,USA,1996,1,26,68,7.6,5.7,1.1,2.9,0.113,0.16399999999999998,0.152,0.542,0.07400000000000001,2001-02 2346,Joseph Forte,BOS,21.0,193.04,87.996848,North Carolina,USA,2001,1,21,8,0.8,0.8,0.8,-25.6,0.027000000000000003,0.14300000000000002,0.19,0.218,0.273,2001-02 2347,Jonathan Bender,IND,21.0,213.36,99.336648,None,USA,1999,1,5,78,7.4,3.1,0.8,-1.6,0.045,0.11900000000000001,0.17600000000000002,0.5379999999999999,0.064,2001-02 2348,Jon Barry,DET,32.0,195.58,95.25432,Georgia Tech,USA,1992,1,21,82,9.0,2.9,3.3,4.6,0.026000000000000002,0.113,0.162,0.644,0.233,2001-02 2349,Johnny Newman,DAL,38.0,200.66,95.25432,Richmond,USA,1986,2,29,47,4.2,1.0,0.3,2.4,0.013999999999999999,0.059000000000000004,0.122,0.5710000000000001,0.027999999999999997,2001-02 2350,John Wallace,PHX,28.0,205.74,102.0582,Syracuse,USA,1996,1,18,46,5.0,1.8,0.6,-6.9,0.064,0.136,0.24,0.493,0.099,2001-02 2351,John Stockton,UTA,40.0,185.42,79.3786,Gonzaga,USA,1984,1,16,82,13.4,3.2,8.2,3.1,0.027999999999999997,0.099,0.19699999999999998,0.601,0.442,2001-02 2352,John Starks,UTA,36.0,195.58,86.18248,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,66,4.4,1.0,1.1,-1.1,0.019,0.069,0.184,0.442,0.132,2001-02 2353,Jamison Brewer,IND,21.0,187.96,80.73937600000001,Auburn,USA,2001,2,40,13,0.3,0.6,0.7,3.8,0.044000000000000004,0.15,0.083,0.4,0.321,2001-02 2354,John Crotty,UTA,32.0,185.42,83.91452,Virginia,USA,Undrafted,Undrafted,Undrafted,41,6.9,1.8,3.4,2.6,0.024,0.085,0.163,0.599,0.313,2001-02 2355,Joel Przybilla,MIL,22.0,215.9,115.66596000000001,Minnesota,USA,2000,1,9,71,2.7,4.0,0.3,-2.4,0.08199999999999999,0.192,0.09300000000000001,0.523,0.026000000000000002,2001-02 2356,Joe Smith,MIN,26.0,208.28,102.0582,Maryland,USA,1995,1,1,72,10.7,6.3,1.1,9.3,0.09699999999999999,0.174,0.17800000000000002,0.5710000000000001,0.063,2001-02 2357,Joe Johnson,PHX,21.0,200.66,102.0582,Arkansas,USA,2001,1,10,77,7.5,3.3,2.3,-0.4,0.042,0.106,0.162,0.478,0.151,2001-02 2358,Joe Crispin,PHX,22.0,182.88,83.91452,Penn State,USA,Undrafted,Undrafted,Undrafted,21,3.8,0.5,1.2,-5.3,0.013999999999999999,0.068,0.239,0.536,0.27699999999999997,2001-02 2359,Jim Jackson,MIA,31.0,198.12,99.79024,Ohio State,USA,1992,1,4,55,10.7,5.3,2.5,0.0,0.036000000000000004,0.151,0.17800000000000002,0.511,0.134,2001-02 2360,Jeryl Sasser,ORL,23.0,198.12,90.7184,Southern Methodist,USA,2001,1,22,7,1.4,1.0,0.3,-26.5,0.1,0.133,0.23199999999999998,0.309,0.087,2001-02 2361,Jerry Stackhouse,DET,27.0,198.12,98.88305600000001,North Carolina,USA,1995,1,3,76,21.4,4.1,5.3,2.7,0.033,0.10300000000000001,0.321,0.518,0.28800000000000003,2001-02 2362,John Amaechi,UTA,31.0,208.28,122.46983999999999,Penn State,England,Undrafted,Undrafted,Undrafted,54,3.2,2.0,0.5,-12.3,0.099,0.11900000000000001,0.204,0.41200000000000003,0.091,2001-02 2363,Jud Buechler,ORL,34.0,198.12,103.418976,Arizona,USA,1990,2,38,66,1.7,1.8,0.5,-7.5,0.047,0.149,0.08900000000000001,0.46299999999999997,0.069,2001-02 2364,James Posey,DEN,25.0,203.2,97.52228000000001,Xavier,USA,1999,1,18,73,10.7,5.9,2.5,-6.4,0.052000000000000005,0.175,0.18899999999999997,0.474,0.129,2001-02 2365,Jamal Crawford,CHI,22.0,195.58,79.3786,Michigan,USA,2000,1,8,23,9.3,1.5,2.4,-11.6,0.012,0.07200000000000001,0.21899999999999997,0.555,0.204,2001-02 2366,Greg Ostertag,UTA,29.0,218.44,127.00576000000001,Kansas,USA,1995,1,28,74,3.3,4.2,0.7,2.2,0.14,0.193,0.126,0.474,0.068,2001-02 2367,Greg Foster,MIL,33.0,210.82,108.86208,Texas-El Paso,USA,1990,2,35,6,1.2,1.3,0.2,-16.6,0.0,0.364,0.196,0.325,0.083,2001-02 2368,Greg Buckner,DAL,25.0,193.04,95.25432,Clemson,USA,1998,2,53,44,5.8,3.9,1.1,0.9,0.086,0.136,0.127,0.5660000000000001,0.077,2001-02 2369,Greg Anthony,MIL,34.0,185.42,81.64656,Nevada-Las Vegas,USA,1991,1,12,60,7.9,2.2,4.7,-9.1,0.017,0.086,0.185,0.46,0.31,2001-02 2370,Grant Long,MEM,36.0,205.74,113.398,Eastern Michigan,USA,1988,2,33,66,6.3,3.5,2.1,-10.1,0.019,0.11699999999999999,0.133,0.475,0.11699999999999999,2001-02 2371,Grant Hill,ORL,29.0,203.2,102.0582,Duke,USA,1994,1,3,14,16.8,8.9,4.6,1.3,0.057,0.21,0.225,0.51,0.20600000000000002,2001-02 2372,Glenn Robinson,MIL,29.0,200.66,104.32616,Purdue,USA,1994,1,1,66,20.7,6.2,2.5,-1.5,0.037000000000000005,0.158,0.287,0.537,0.13,2001-02 2373,Glen Rice,HOU,35.0,203.2,99.79024,Michigan,USA,1989,1,4,20,8.6,2.4,1.6,-2.7,0.01,0.08199999999999999,0.162,0.47700000000000004,0.084,2001-02 2374,Gilbert Arenas,GSW,20.0,190.5,86.636072,Arizona,USA,2001,2,30,47,10.9,2.8,3.7,-6.5,0.036000000000000004,0.083,0.19699999999999998,0.562,0.24100000000000002,2001-02 2375,Gerald Wallace,SAC,19.0,200.66,97.52228000000001,Alabama,USA,2001,1,25,54,3.2,1.6,0.5,1.6,0.11199999999999999,0.086,0.205,0.44299999999999995,0.094,2001-02 2376,George McCloud,DEN,35.0,203.2,102.0582,Florida State,USA,1989,1,7,69,8.8,3.6,3.0,-10.4,0.04,0.12300000000000001,0.192,0.466,0.187,2001-02 2377,George Lynch,CHH,31.0,203.2,103.418976,North Carolina,USA,1993,1,12,45,3.8,4.1,1.2,0.2,0.085,0.146,0.131,0.39899999999999997,0.1,2001-02 2378,Gary Trent,MIN,27.0,203.2,113.398,Ohio,USA,1995,1,11,64,7.5,4.2,0.9,-2.7,0.10800000000000001,0.172,0.203,0.5379999999999999,0.087,2001-02 2379,Gary Payton,SEA,33.0,193.04,81.64656,Oregon State,USA,1990,1,2,82,22.1,4.8,9.0,3.2,0.028999999999999998,0.11,0.271,0.526,0.391,2001-02 2380,Fred Hoiberg,CHI,29.0,195.58,95.25432,Iowa State,USA,1995,2,52,79,4.4,2.7,1.7,-7.8,0.015,0.16399999999999998,0.121,0.519,0.158,2001-02 2381,Hakeem Olajuwon,TOR,39.0,213.36,115.66596000000001,Houston,Nigeria,1984,1,1,61,7.1,6.0,1.1,0.5,0.079,0.221,0.184,0.478,0.076,2001-02 2382,Hanno Mottola,ATL,25.0,210.82,112.037224,Utah,Finland,2000,2,40,82,4.8,3.3,0.6,-5.7,0.069,0.161,0.163,0.474,0.06,2001-02 2383,Harold Jamison,LAC,25.0,205.74,122.016248,Clemson,USA,Undrafted,Undrafted,Undrafted,25,2.2,1.6,0.2,-6.0,0.14,0.1,0.131,0.544,0.051,2001-02 2384,Hedo Turkoglu,SAC,23.0,203.2,99.79024,None,Turkey,2000,1,16,80,10.1,4.5,2.0,10.7,0.035,0.163,0.193,0.514,0.126,2001-02 2385,Jamaal Tinsley,IND,24.0,190.5,88.45044,Iowa State,USA,2001,1,27,80,9.4,3.7,8.1,0.7,0.036000000000000004,0.099,0.20199999999999999,0.446,0.409,2001-02 2386,Jamaal Magloire,CHH,24.0,210.82,117.480328,Kentucky,Canada,2000,1,19,82,8.5,5.6,0.4,3.7,0.11599999999999999,0.221,0.19899999999999998,0.623,0.035,2001-02 2387,Jalen Rose,CHI,29.0,203.2,98.429464,Michigan,USA,1994,1,13,83,20.4,4.5,4.3,-2.1,0.016,0.11699999999999999,0.26,0.528,0.203,2001-02 2388,Jake Voskuhl,PHX,24.0,210.82,111.13004,Connecticut,USA,2000,2,33,59,5.0,4.2,0.3,-4.2,0.127,0.193,0.14400000000000002,0.614,0.031,2001-02 2389,Jake Tsakalidis,PHX,23.0,218.44,129.27372,None,Greece,2000,1,25,67,7.3,5.6,0.3,1.1,0.09,0.171,0.156,0.522,0.022000000000000002,2001-02 2390,Jahidi White,WAS,26.0,205.74,131.54168,Georgetown,USA,1998,2,43,71,5.4,6.3,0.2,-3.5,0.13699999999999998,0.257,0.142,0.552,0.019,2001-02 2391,Jacque Vaughn,ATL,27.0,185.42,86.18248,Kansas,USA,1997,1,27,82,6.6,2.0,4.3,-6.8,0.011000000000000001,0.096,0.149,0.547,0.316,2001-02 2392,Jamal Mashburn,CHH,29.0,203.2,112.037224,Kentucky,USA,1993,1,4,40,21.5,6.1,4.3,1.8,0.022000000000000002,0.149,0.276,0.505,0.20199999999999999,2001-02 2393,Jabari Smith,PHI,25.0,210.82,113.398,Louisiana State,USA,2000,2,45,23,3.2,1.2,0.5,4.7,0.048,0.106,0.191,0.474,0.095,2001-02 2394,Ira Newble,ATL,27.0,200.66,97.52228000000001,Miami (OH),USA,Undrafted,Undrafted,Undrafted,42,8.0,5.3,1.1,-0.8,0.073,0.126,0.125,0.56,0.055,2001-02 2395,Ira Bowman,PHI,29.0,195.58,88.45044,Pennsylvania,USA,Undrafted,Undrafted,Undrafted,3,3.3,0.3,0.3,-10.8,0.0,0.033,0.113,0.7140000000000001,0.063,2001-02 2396,Ike Fontaine,MEM,27.0,193.04,95.25432,Washington State,USA,Undrafted,Undrafted,Undrafted,6,1.8,0.8,0.7,-39.0,0.0,0.08800000000000001,0.124,0.331,0.09300000000000001,2001-02 2397,Ike Austin,MEM,32.0,208.28,130.63449599999998,Arizona State,USA,1991,2,48,21,3.6,3.4,0.6,-13.4,0.038,0.22399999999999998,0.157,0.405,0.07200000000000001,2001-02 2398,Hubert Davis,WAS,32.0,195.58,83.007336,North Carolina,USA,1992,1,20,51,7.2,1.5,2.1,-1.6,0.006999999999999999,0.065,0.14300000000000002,0.544,0.14400000000000002,2001-02 2399,Howard Eisley,NYK,29.0,187.96,81.64656,Boston College,USA,1994,2,30,39,4.4,1.3,2.6,-0.1,0.018000000000000002,0.07400000000000001,0.19399999999999998,0.435,0.292,2001-02 2400,Horace Grant,ORL,36.0,208.28,111.13004,Clemson,USA,1987,1,10,76,8.0,6.3,1.4,6.2,0.08,0.166,0.126,0.539,0.069,2001-02 2401,Isaiah Rider,DEN,31.0,195.58,97.52228000000001,Nevada-Las Vegas,USA,1993,1,5,10,9.3,3.3,1.2,9.0,0.068,0.149,0.27,0.526,0.12,2001-02 2402,Felton Spencer,NYK,34.0,213.36,131.54168,Louisville,USA,1990,1,6,32,0.9,1.6,0.1,-4.6,0.075,0.151,0.098,0.358,0.019,2001-02 2403,Jumaine Jones,CLE,23.0,203.2,98.88305600000001,Georgia,USA,1999,1,27,81,8.3,6.0,1.4,-2.2,0.07,0.2,0.162,0.501,0.085,2001-02 2404,Karl Malone,UTA,38.0,205.74,116.119552,Louisiana Tech,USA,1985,1,13,80,22.4,8.6,4.3,0.8,0.057,0.218,0.28800000000000003,0.532,0.21600000000000003,2001-02 2405,Michael Dickerson,MEM,27.0,195.58,86.18248,Arizona,USA,1998,1,14,4,10.8,3.0,2.3,-4.8,0.023,0.092,0.193,0.425,0.113,2001-02 2406,Michael Curry,DET,33.0,195.58,95.25432,Georgia Southern,USA,Undrafted,Undrafted,Undrafted,82,4.0,2.0,1.5,0.1,0.009000000000000001,0.096,0.094,0.521,0.10400000000000001,2001-02 2407,Michael Bradley,TOR,23.0,205.74,102.965384,Villanova,USA,2001,1,17,26,1.2,0.9,0.1,-23.1,0.071,0.175,0.133,0.526,0.042,2001-02 2408,Metta World Peace,IND,22.0,200.66,111.58363200000001,St. John's (NY),USA,1999,1,16,55,13.2,4.9,2.3,-1.2,0.05,0.141,0.23199999999999998,0.501,0.142,2001-02 2409,Mengke Bateer,DEN,26.0,210.82,131.54168,None,China,Undrafted,Undrafted,Undrafted,27,5.1,3.6,0.8,-7.6,0.084,0.195,0.198,0.469,0.096,2001-02 2410,Maurice Evans,MIN,23.0,195.58,99.79024,Texas,USA,Undrafted,Undrafted,Undrafted,10,2.1,0.4,0.4,-6.1,0.06,0.026000000000000002,0.198,0.506,0.154,2001-02 2411,Matt Harpring,PHI,26.0,200.66,104.779752,Georgia Tech,USA,1998,1,15,81,11.8,7.1,1.3,3.8,0.091,0.16399999999999998,0.191,0.512,0.073,2001-02 2412,Matt Geiger,PHI,32.0,205.74,110.22285600000001,Georgia Tech,USA,1992,2,42,4,0.8,1.5,0.0,-42.0,0.091,0.09699999999999999,0.149,0.16899999999999998,0.0,2001-02 2413,Matt Bullard,CHH,35.0,208.28,97.52228000000001,Iowa,USA,Undrafted,Undrafted,Undrafted,31,3.4,1.5,0.5,-6.3,0.03,0.12,0.172,0.436,0.077,2001-02 2414,Mateen Cleaves,SAC,24.0,187.96,92.98635999999999,Michigan State,USA,2000,1,14,32,2.2,0.3,0.8,-11.1,0.006999999999999999,0.043,0.262,0.486,0.253,2001-02 2415,Mark Strickland,ATL,31.0,208.28,99.79024,Temple,USA,Undrafted,Undrafted,Undrafted,46,4.5,2.8,0.4,-7.0,0.069,0.162,0.171,0.466,0.051,2001-02 2416,Mark Pope,MIL,29.0,208.28,106.59411999999999,Kentucky,USA,1996,2,52,45,1.9,1.6,0.4,-4.5,0.055,0.136,0.127,0.434,0.06,2001-02 2417,Mark Madsen,LAL,26.0,205.74,107.047712,Stanford,USA,2000,1,29,59,2.8,2.7,0.7,5.7,0.14300000000000002,0.13699999999999998,0.129,0.49200000000000005,0.096,2001-02 2418,Mark Jackson,NYK,37.0,190.5,88.45044,St. John's (NY),USA,1987,1,18,82,8.4,3.8,7.4,-6.7,0.027000000000000003,0.126,0.154,0.536,0.405,2001-02 2419,Mark Bryant,SAS,37.0,205.74,113.398,Seton Hall,USA,1988,1,21,30,1.9,1.5,0.3,-4.0,0.13,0.107,0.14400000000000002,0.478,0.078,2001-02 2420,Michael Doleac,CLE,25.0,210.82,118.841104,Utah,USA,1998,1,12,42,4.6,4.0,0.6,-8.7,0.08,0.20800000000000002,0.158,0.46799999999999997,0.055999999999999994,2001-02 2421,Michael Finley,DAL,29.0,200.66,97.52228000000001,Wisconsin,USA,1995,1,21,69,20.6,5.2,3.3,3.9,0.036000000000000004,0.109,0.239,0.532,0.138,2001-02 2422,Michael Jordan,WAS,39.0,198.12,97.975872,North Carolina,USA,1984,1,3,60,22.9,5.7,5.2,-0.3,0.027000000000000003,0.163,0.361,0.46799999999999997,0.295,2001-02 2423,Michael Olowokandi,LAC,27.0,213.36,122.46983999999999,Pacific,Nigeria,1998,1,1,80,11.1,8.9,1.1,-2.3,0.073,0.239,0.203,0.457,0.059000000000000004,2001-02 2424,Nazr Mohammed,ATL,24.0,208.28,113.398,Kentucky,USA,1998,1,29,82,9.7,7.9,0.4,-6.3,0.127,0.215,0.19399999999999998,0.49,0.026000000000000002,2001-02 2425,Morris Peterson,TOR,24.0,200.66,98.88305600000001,Michigan State,USA,2000,1,21,63,14.0,3.5,2.4,-0.7,0.05,0.079,0.21,0.524,0.131,2001-02 2426,Mookie Blaylock,GSW,35.0,182.88,81.64656,Oklahoma,USA,1989,1,12,35,3.4,1.5,3.3,-8.7,0.015,0.086,0.138,0.39799999999999996,0.33,2001-02 2427,Moochie Norris,HOU,28.0,185.42,79.3786,West Florida,USA,1996,2,33,82,8.1,3.0,4.9,-6.1,0.037000000000000005,0.091,0.17800000000000002,0.47100000000000003,0.302,2001-02 2428,Monty Williams,ORL,30.0,203.2,102.0582,Notre Dame,USA,1994,1,24,68,7.1,3.5,1.4,-2.9,0.07200000000000001,0.14,0.179,0.575,0.126,2001-02 2429,Mitchell Butler,POR,31.0,195.58,97.975872,UCLA,USA,Undrafted,Undrafted,Undrafted,11,2.6,1.3,0.5,-9.4,0.076,0.11,0.17800000000000002,0.513,0.098,2001-02 2430,Mitch Richmond,LAL,37.0,195.58,99.79024,Kansas State,USA,1988,1,5,64,4.1,1.5,0.9,9.8,0.021,0.114,0.19399999999999998,0.488,0.131,2001-02 2431,Mark Blount,BOS,26.0,213.36,113.398,Pittsburgh,USA,1997,2,54,44,2.1,1.9,0.2,-6.5,0.065,0.166,0.125,0.509,0.039,2001-02 2432,Milt Palacio,PHX,24.0,190.5,88.45044,Colorado State,Belize,Undrafted,Undrafted,Undrafted,69,3.3,1.1,1.2,-4.5,0.015,0.095,0.17,0.46799999999999997,0.18899999999999997,2001-02 2433,Mike Penberthy,LAL,27.0,190.5,81.64656,Master's,USA,Undrafted,Undrafted,Undrafted,3,1.7,0.7,0.7,-10.9,0.0,0.154,0.132,0.665,0.25,2001-02 2434,Mike Miller,ORL,22.0,203.2,98.88305600000001,Florida,USA,2000,1,5,63,15.2,4.3,3.1,3.6,0.026000000000000002,0.11699999999999999,0.209,0.542,0.149,2001-02 2435,Mike James,MIA,27.0,187.96,86.18248,Duquesne,USA,Undrafted,Undrafted,Undrafted,15,2.8,0.9,1.3,-17.2,0.019,0.14300000000000002,0.237,0.456,0.306,2001-02 2436,Mike Bibby,SAC,24.0,185.42,86.18248,Arizona,USA,1998,1,2,80,13.7,2.8,5.0,7.3,0.015,0.071,0.19699999999999998,0.513,0.22699999999999998,2001-02 2437,Michael Stewart,TOR,27.0,208.28,104.32616,California,USA,Undrafted,Undrafted,Undrafted,11,2.0,2.3,0.3,-0.5,0.136,0.188,0.163,0.395,0.068,2001-02 2438,Michael Ruffin,PHI,25.0,203.2,112.490816,Tulsa,USA,1999,2,32,15,1.1,3.4,0.3,-11.0,0.147,0.184,0.10800000000000001,0.271,0.048,2001-02 2439,Michael Redd,MIL,22.0,198.12,99.79024,Ohio State,USA,2000,2,43,67,11.4,3.3,1.4,2.0,0.065,0.115,0.235,0.581,0.11599999999999999,2001-02 2440,Mikki Moore,DET,26.0,213.36,104.32616,Nebraska,USA,Undrafted,Undrafted,Undrafted,30,2.6,1.7,0.4,1.1,0.126,0.175,0.183,0.545,0.087,2001-02 2441,Juwan Howard,DEN,29.0,205.74,113.398,Michigan,USA,1994,1,5,81,14.6,7.6,2.1,-2.3,0.096,0.17,0.22399999999999998,0.513,0.109,2001-02 2442,Marcus Fizer,CHI,23.0,205.74,118.841104,Iowa State,USA,2000,1,4,76,12.3,5.6,1.6,-8.2,0.075,0.187,0.26,0.48200000000000004,0.11599999999999999,2001-02 2443,Marc Jackson,MIN,27.0,208.28,122.46983999999999,Temple,USA,1997,2,37,39,4.8,3.3,0.4,-3.5,0.107,0.184,0.205,0.467,0.05,2001-02 2444,Kirk Haston,CHH,23.0,205.74,109.769264,Indiana,USA,2001,1,16,15,1.7,1.3,0.3,-9.3,0.07200000000000001,0.188,0.249,0.306,0.114,2001-02 2445,Keyon Dooling,LAC,22.0,190.5,88.904032,Missouri,USA,2000,1,10,14,4.1,0.2,0.9,10.4,0.0,0.02,0.19899999999999998,0.466,0.11900000000000001,2001-02 2446,Kevin Willis,HOU,39.0,213.36,111.13004,Michigan State,USA,1984,1,11,52,6.1,5.8,0.3,-6.7,0.129,0.264,0.193,0.489,0.031,2001-02 2447,Kevin Ollie,IND,29.0,187.96,88.45044,Connecticut,USA,Undrafted,Undrafted,Undrafted,81,5.7,2.3,3.6,-4.9,0.017,0.107,0.151,0.51,0.293,2001-02 2448,Kevin Garnett,MIN,26.0,210.82,99.79024,None,USA,1995,1,5,81,21.2,12.1,5.2,5.8,0.091,0.264,0.261,0.536,0.22,2001-02 2449,Kerry Kittles,NJN,28.0,195.58,81.64656,Villanova,USA,1996,1,8,82,13.4,3.4,2.6,4.3,0.028999999999999998,0.08900000000000001,0.191,0.542,0.131,2001-02 2450,Keon Clark,TOR,27.0,210.82,100.243832,Nevada-Las Vegas,USA,1998,1,13,81,11.3,7.4,1.1,-0.8,0.095,0.23199999999999998,0.214,0.522,0.071,2001-02 2451,Kenyon Martin,NJN,24.0,205.74,106.140528,Cincinnati,USA,2000,1,1,73,14.9,5.3,2.6,6.2,0.051,0.122,0.222,0.503,0.12300000000000001,2001-02 2452,Kenny Thomas,HOU,24.0,200.66,111.13004,New Mexico,USA,1999,1,22,72,14.1,7.2,1.9,-6.5,0.073,0.16899999999999998,0.212,0.52,0.10099999999999999,2001-02 2453,Kenny Satterfield,DEN,21.0,185.42,79.83219199999998,Cincinnati,USA,2001,2,53,36,5.3,1.4,3.0,-5.0,0.032,0.084,0.218,0.431,0.335,2001-02 2454,Kenny Anderson,BOS,31.0,185.42,76.203456,Georgia Tech,USA,1991,1,2,76,9.6,3.6,5.3,5.4,0.025,0.1,0.168,0.47200000000000003,0.267,2001-02 2455,Kendall Gill,MIA,34.0,195.58,97.52228000000001,Illinois,USA,1990,1,5,65,5.7,2.8,1.5,-2.6,0.024,0.126,0.171,0.414,0.11800000000000001,2001-02 2456,Kelvin Cato,HOU,27.0,210.82,115.66596000000001,Iowa State,USA,1997,1,15,75,6.6,7.0,0.4,-5.0,0.106,0.21100000000000002,0.11199999999999999,0.599,0.024,2001-02 2457,Keith Van Horn,NJN,26.0,208.28,115.66596000000001,Utah,USA,1997,1,2,81,14.8,7.5,2.0,4.8,0.061,0.213,0.237,0.51,0.11,2001-02 2458,Kedrick Brown,BOS,21.0,200.66,100.697424,Northwest Florida State,USA,2001,1,11,29,2.2,1.7,0.5,-0.2,0.046,0.168,0.159,0.4,0.102,2001-02 2459,Kobe Bryant,LAL,23.0,200.66,95.25432,None,USA,1996,1,13,80,25.2,5.5,5.5,7.6,0.040999999999999995,0.11800000000000001,0.304,0.544,0.254,2001-02 2460,Kurt Thomas,NYK,29.0,205.74,106.59411999999999,Texas Christian,USA,1995,1,10,82,13.9,9.1,1.1,-5.5,0.08800000000000001,0.223,0.20199999999999999,0.542,0.057,2001-02 2461,Kwame Brown,WAS,20.0,210.82,110.22285600000001,None,USA,2001,1,1,57,4.5,3.5,0.8,-4.6,0.08900000000000001,0.198,0.184,0.45,0.09,2001-02 2462,LaPhonso Ellis,MIA,32.0,203.2,108.86208,Notre Dame,USA,1992,1,5,66,7.1,4.3,0.8,-5.3,0.073,0.126,0.16,0.48,0.059000000000000004,2001-02 2463,Mamadou N'diaye,TOR,27.0,213.36,115.66596000000001,Auburn,Senegal,2000,1,26,5,4.0,2.2,0.0,-3.1,0.113,0.122,0.149,0.6940000000000001,0.0,2001-02 2464,Malik Rose,SAS,27.0,200.66,115.66596000000001,Drexel,USA,1996,2,44,82,9.4,6.0,0.7,8.7,0.12,0.205,0.23800000000000002,0.517,0.064,2001-02 2465,Malik Allen,MIA,24.0,208.28,115.66596000000001,Villanova,USA,Undrafted,Undrafted,Undrafted,12,4.3,3.2,0.4,-5.8,0.10300000000000001,0.15,0.16399999999999998,0.469,0.055,2001-02 2466,Lucious Harris,NJN,31.0,195.58,92.98635999999999,Long Beach State,USA,1993,2,28,74,9.1,2.8,1.6,4.0,0.036000000000000004,0.11900000000000001,0.198,0.556,0.136,2001-02 2467,Lorenzen Wright,MEM,26.0,210.82,108.86208,Memphis,USA,1996,1,7,43,12.0,9.4,1.0,-6.3,0.11199999999999999,0.258,0.221,0.478,0.063,2001-02 2468,Loren Woods,MIN,24.0,215.9,111.58363200000001,Arizona,USA,2001,2,45,60,1.8,2.0,0.4,-4.1,0.098,0.168,0.139,0.449,0.063,2001-02 2469,Lindsey Hunter,LAL,31.0,187.96,88.45044,Jackson State,USA,1993,1,10,82,5.8,1.5,1.6,4.6,0.012,0.07,0.158,0.466,0.11900000000000001,2001-02 2470,Marcus Camby,NYK,28.0,210.82,106.59411999999999,Massachusetts,USA,1996,1,2,29,11.1,11.1,1.1,-5.1,0.10300000000000001,0.26899999999999996,0.174,0.483,0.055,2001-02 2471,Leon Smith,ATL,21.0,208.28,106.59411999999999,None,USA,1999,1,29,14,2.2,2.2,0.2,0.5,0.109,0.253,0.158,0.46299999999999997,0.046,2001-02 2472,Lawrence Funderburke,SAC,31.0,205.74,104.32616,Ohio State,USA,1994,2,51,56,4.7,3.5,0.6,4.0,0.113,0.17800000000000002,0.18100000000000002,0.49,0.069,2001-02 2473,Lavor Postell,NYK,24.0,195.58,97.52228000000001,St. John's (NY),USA,2000,2,39,23,4.0,0.7,0.2,4.2,0.013000000000000001,0.08900000000000001,0.298,0.456,0.062,2001-02 2474,Latrell Sprewell,NYK,31.0,195.58,88.45044,Alabama,USA,1992,1,24,81,19.4,3.7,3.9,-3.9,0.02,0.083,0.25,0.501,0.171,2001-02 2475,Larry Robinson,NYK,34.0,190.5,81.64656,Centenary (LA),USA,Undrafted,Undrafted,Undrafted,2,1.5,1.0,0.0,9.5,0.0,0.25,0.162,0.375,0.0,2001-02 2476,Larry Hughes,GSW,23.0,195.58,83.46092800000001,Saint Louis,USA,1998,1,8,73,12.3,3.4,4.3,-6.1,0.040999999999999995,0.086,0.22,0.484,0.251,2001-02 2477,Lamond Murray,CLE,29.0,200.66,107.047712,California,USA,1994,1,7,71,16.6,5.2,2.2,-2.3,0.040999999999999995,0.146,0.24600000000000002,0.534,0.11900000000000001,2001-02 2478,Lamar Odom,LAC,22.0,208.28,100.243832,Rhode Island,USA,1999,1,4,29,13.1,6.1,5.9,-0.7,0.036000000000000004,0.147,0.228,0.473,0.294,2001-02 2479,Lee Nailon,CHH,27.0,205.74,107.95489599999999,Texas Christian,USA,1999,2,43,79,10.8,3.7,1.2,0.2,0.062,0.114,0.22,0.513,0.08900000000000001,2001-02 2480,Felipe Lopez,MIN,27.0,195.58,88.45044,St. John's (NY),Dominican Republic,1998,1,24,67,2.5,1.2,0.6,-2.5,0.057999999999999996,0.10099999999999999,0.172,0.469,0.10800000000000001,2001-02 2481,Evan Eschmeyer,DAL,27.0,210.82,115.66596000000001,Northwestern,USA,1999,2,34,31,2.0,3.2,0.3,3.4,0.122,0.214,0.12,0.48,0.043,2001-02 2482,Etan Thomas,WAS,24.0,208.28,117.93392,Syracuse,USA,2000,1,12,47,4.3,3.9,0.1,-0.1,0.10400000000000001,0.23,0.154,0.5529999999999999,0.015,2001-02 2483,Cal Bowdler,ATL,25.0,208.28,114.758776,Old Dominion,USA,1999,1,17,52,3.1,2.1,0.2,-1.1,0.076,0.14300000000000002,0.159,0.41600000000000004,0.03,2001-02 2484,Calbert Cheaney,DEN,30.0,200.66,98.429464,Indiana,USA,1993,1,6,68,7.3,3.5,1.6,-10.2,0.039,0.133,0.158,0.499,0.11199999999999999,2001-02 2485,Calvin Booth,SEA,26.0,210.82,104.779752,Penn State,USA,1999,2,35,15,6.2,3.6,1.1,-8.3,0.08,0.133,0.17800000000000002,0.502,0.092,2001-02 2486,Carlos Arroyo,DEN,22.0,187.96,91.625584,Florida International,Puerto Rico,Undrafted,Undrafted,Undrafted,37,3.0,1.1,1.9,-6.3,0.034,0.09,0.168,0.467,0.32299999999999995,2001-02 2487,Carlos Rogers,IND,31.0,210.82,105.23334399999999,Tennessee State,USA,1994,1,11,22,2.7,1.7,0.1,-5.9,0.09699999999999999,0.153,0.16,0.574,0.03,2001-02 2488,Cedric Henderson,GSW,27.0,200.66,102.0582,Memphis,USA,1997,2,44,12,3.0,0.3,0.3,12.9,0.013000000000000001,0.032,0.242,0.528,0.1,2001-02 2489,Charles Oakley,CHI,38.0,205.74,111.13004,Virginia Union,USA,1985,1,9,57,3.8,6.0,2.0,-12.2,0.057999999999999996,0.24100000000000002,0.122,0.392,0.134,2001-02 2490,Charles Smith,SAS,26.0,193.04,87.996848,New Mexico,USA,1997,1,26,60,7.4,2.2,1.3,-0.2,0.034,0.098,0.20600000000000002,0.483,0.121,2001-02 2491,Charlie Bell,DAL,23.0,190.5,90.7184,Michigan State,USA,Undrafted,Undrafted,Undrafted,7,1.1,0.7,0.3,-20.7,0.063,0.075,0.188,0.337,0.07400000000000001,2001-02 2492,Charlie Ward,NYK,31.0,187.96,83.91452,Florida State,USA,1994,1,26,63,5.2,2.0,3.2,-0.9,0.017,0.11900000000000001,0.18,0.496,0.33899999999999997,2001-02 2493,Chauncey Billups,MIN,25.0,190.5,91.625584,Colorado,USA,1997,1,3,82,12.5,2.8,5.5,3.6,0.017,0.094,0.207,0.555,0.29600000000000004,2001-02 2494,Cherokee Parks,SAS,29.0,210.82,108.86208,Duke,USA,1995,1,12,42,1.5,1.4,0.2,-11.2,0.109,0.183,0.188,0.364,0.07,2001-02 2495,Chris Andersen,DEN,23.0,208.28,104.32616,Blinn,USA,Undrafted,Undrafted,Undrafted,24,3.0,3.2,0.3,5.4,0.15,0.162,0.16399999999999998,0.41700000000000004,0.039,2001-02 2496,Chris Childs,TOR,34.0,190.5,88.45044,Boise State,USA,Undrafted,Undrafted,Undrafted,69,4.1,2.2,5.1,-0.7,0.013000000000000001,0.105,0.133,0.435,0.35200000000000004,2001-02 2497,Chris Crawford,ATL,27.0,205.74,106.59411999999999,Marquette,USA,1997,2,50,7,7.6,3.6,0.7,-12.4,0.07,0.14400000000000002,0.212,0.514,0.071,2001-02 2498,Bryon Russell,UTA,31.0,200.66,102.0582,Long Beach State,USA,1993,2,45,66,9.6,4.5,2.1,3.9,0.048,0.134,0.171,0.493,0.111,2001-02 2499,Bryce Drew,CHH,27.0,190.5,83.46092800000001,Valparaiso,USA,1998,1,16,61,3.4,1.2,1.7,2.7,0.021,0.086,0.139,0.539,0.209,2001-02 2500,Bryant Stith,CLE,31.0,195.58,95.25432,Virginia,USA,1992,1,13,50,4.2,1.7,0.8,-8.7,0.035,0.114,0.168,0.493,0.11199999999999999,2001-02 2501,Bruno Sundov,IND,22.0,218.44,111.58363200000001,None,Croatia,1998,2,35,22,1.5,1.0,0.1,-0.4,0.081,0.19399999999999998,0.221,0.391,0.057999999999999996,2001-02 2502,Bob Sura,GSW,29.0,195.58,90.7184,Florida State,USA,1995,1,17,78,10.0,3.3,3.5,-4.8,0.053,0.106,0.209,0.53,0.263,2001-02 2503,Bobby Jackson,SAC,29.0,185.42,83.91452,Minnesota,USA,1997,1,23,81,11.1,3.1,2.0,8.6,0.05,0.105,0.23199999999999998,0.537,0.157,2001-02 2504,Bobby Simmons,WAS,22.0,198.12,106.59411999999999,DePaul,USA,2001,2,41,30,3.7,1.7,0.6,0.5,0.087,0.095,0.166,0.518,0.085,2001-02 2505,Bonzi Wells,POR,25.0,195.58,96.615096,Ball State,USA,1998,1,11,74,17.0,6.0,2.8,4.2,0.06,0.163,0.263,0.5379999999999999,0.152,2001-02 2506,Brad Miller,IND,26.0,213.36,118.38751200000002,Purdue,USA,Undrafted,Undrafted,Undrafted,76,13.6,8.2,2.0,-5.3,0.128,0.193,0.204,0.5720000000000001,0.124,2001-02 2507,Brandon Armstrong,NJN,22.0,195.58,85.275296,Pepperdine,USA,2001,1,23,35,1.8,0.5,0.2,-8.9,0.051,0.034,0.226,0.358,0.079,2001-02 2508,Brendan Haywood,WAS,22.0,213.36,120.655472,North Carolina,USA,2001,1,20,62,5.1,5.2,0.5,-1.3,0.126,0.159,0.126,0.54,0.038,2001-02 2509,Chris Dudley,POR,37.0,210.82,117.93392,Yale,USA,1987,4,75,43,1.1,1.9,0.3,2.5,0.096,0.196,0.098,0.424,0.057999999999999996,2001-02 2510,Brent Barry,SEA,30.0,198.12,92.079176,Oregon State,USA,1995,1,15,81,14.4,5.4,5.3,3.3,0.023,0.146,0.161,0.652,0.209,2001-02 2511,Brevin Knight,MEM,26.0,177.8,77.11064,Stanford,USA,1997,1,16,53,7.0,2.1,5.7,-6.6,0.011000000000000001,0.09699999999999999,0.198,0.48200000000000004,0.447,2001-02 2512,Brian Cardinal,DET,25.0,203.2,111.13004,Purdue,USA,2000,2,44,8,2.1,0.8,0.3,24.5,0.053,0.11800000000000001,0.154,0.612,0.069,2001-02 2513,Brian Grant,MIA,30.0,205.74,115.212368,Xavier,USA,1994,1,8,72,9.3,8.0,1.9,-1.4,0.09,0.212,0.168,0.508,0.10300000000000001,2001-02 2514,Brian Scalabrine,NJN,24.0,205.74,108.86208,Southern California,USA,2001,2,34,28,2.1,1.8,0.8,2.4,0.047,0.171,0.153,0.408,0.113,2001-02 2515,Brian Shaw,LAL,36.0,198.12,90.7184,California-Santa Barbara,USA,1988,1,24,58,2.9,1.9,1.5,8.0,0.033,0.16399999999999998,0.153,0.45799999999999996,0.207,2001-02 2516,Brian Skinner,CLE,26.0,205.74,120.20188,Baylor,USA,1998,1,22,65,3.4,4.3,0.3,-1.4,0.10400000000000001,0.19,0.1,0.569,0.024,2001-02 2517,Bruce Bowen,SAS,31.0,200.66,90.7184,Cal State-Fullerton,USA,Undrafted,Undrafted,Undrafted,59,7.0,2.7,1.5,11.3,0.03,0.08,0.141,0.46799999999999997,0.079,2001-02 2518,Brent Price,SAC,33.0,185.42,83.91452,Oklahoma,USA,1992,2,32,20,1.6,0.4,0.5,-19.4,0.04,0.039,0.187,0.474,0.16399999999999998,2001-02 2519,Bo Outlaw,PHX,31.0,203.2,95.25432,Houston,USA,Undrafted,Undrafted,Undrafted,83,4.5,4.4,1.5,2.1,0.08800000000000001,0.128,0.10400000000000001,0.547,0.09699999999999999,2001-02 2520,Chris Gatling,MIA,34.0,208.28,99.79024,Old Dominion,USA,1991,1,16,54,6.4,3.8,0.5,-4.1,0.102,0.19699999999999998,0.23600000000000002,0.501,0.061,2001-02 2521,Chris Mills,GSW,32.0,200.66,99.79024,Arizona,USA,1993,1,22,66,7.4,2.9,1.1,-6.7,0.044000000000000004,0.134,0.185,0.516,0.099,2001-02 2522,Daniel Santiago,PHX,26.0,215.9,116.119552,Saint Vincent,Puerto Rico,Undrafted,Undrafted,Undrafted,3,2.7,2.3,0.7,-21.1,0.0,0.292,0.185,0.5,0.2,2001-02 2523,Danny Ferry,SAS,35.0,208.28,106.59411999999999,Duke,USA,1989,1,2,50,4.6,1.8,1.0,9.5,0.023,0.10099999999999999,0.127,0.594,0.099,2001-02 2524,Danny Fortson,GSW,26.0,203.2,117.93392,Cincinnati,USA,1997,1,10,77,11.2,11.7,1.6,-4.8,0.133,0.299,0.18899999999999997,0.504,0.08900000000000001,2001-02 2525,Danny Manning,DAL,36.0,208.28,106.140528,Kansas,USA,1988,1,1,41,4.0,2.6,0.7,-2.1,0.05,0.158,0.156,0.505,0.084,2001-02 2526,Darius Miles,LAC,20.0,205.74,95.25432,None,USA,2000,1,3,82,9.5,5.5,2.2,-0.1,0.057,0.172,0.185,0.516,0.13699999999999998,2001-02 2527,Darrell Armstrong,ORL,34.0,185.42,81.64656,Fayetteville State,USA,Undrafted,Undrafted,Undrafted,82,12.4,3.9,5.5,3.2,0.033,0.09699999999999999,0.17800000000000002,0.5529999999999999,0.249,2001-02 2528,Darrick Martin,DAL,31.0,180.34,77.11064,UCLA,USA,Undrafted,Undrafted,Undrafted,3,0.3,0.3,1.0,-54.6,0.0,0.055999999999999994,0.235,0.046,0.25,2001-02 2529,Darvin Ham,MIL,28.0,200.66,104.32616,Texas Tech,USA,Undrafted,Undrafted,Undrafted,70,4.3,2.9,1.0,1.3,0.091,0.10099999999999999,0.134,0.5710000000000001,0.094,2001-02 2530,David Robinson,SAS,36.0,215.9,113.398,Navy,USA,1987,1,1,78,12.2,8.3,1.2,9.9,0.1,0.22,0.193,0.562,0.068,2001-02 2531,David Wesley,CHH,31.0,185.42,92.079176,Baylor,USA,Undrafted,Undrafted,Undrafted,67,14.2,2.1,3.5,-1.0,0.02,0.045,0.204,0.479,0.163,2001-02 2532,DeSagana Diop,CLE,20.0,213.36,136.0776,None,Senegal,2001,1,8,18,1.4,0.9,0.3,-1.4,0.057,0.11800000000000001,0.182,0.401,0.069,2001-02 2533,DeShawn Stevenson,UTA,21.0,195.58,95.25432,None,USA,2000,1,23,67,4.9,2.0,1.7,-5.6,0.045,0.094,0.184,0.41200000000000003,0.171,2001-02 2534,Dean Garrett,GSW,35.0,210.82,113.398,Indiana,USA,1988,2,38,34,1.1,1.7,0.1,0.0,0.086,0.22399999999999998,0.153,0.32,0.038,2001-02 2535,Dean Oliver,GSW,23.0,180.34,79.3786,Iowa,USA,Undrafted,Undrafted,Undrafted,20,2.1,0.4,1.1,-16.8,0.0,0.064,0.185,0.42,0.25,2001-02 2536,Dee Brown,ORL,33.0,185.42,72.57472,Jacksonville,USA,1990,1,19,7,1.0,1.3,0.3,-4.4,0.0,0.138,0.163,0.175,0.043,2001-02 2537,Dana Barros,DET,35.0,180.34,74.84268,Boston College,USA,1989,1,16,29,6.7,2.0,2.7,0.8,0.002,0.109,0.192,0.473,0.221,2001-02 2538,Dan Majerle,PHX,36.0,198.12,100.697424,Central Michigan,USA,1988,1,14,65,4.6,2.7,1.4,1.9,0.026000000000000002,0.142,0.129,0.49,0.11199999999999999,2001-02 2539,Dan Langhi,HOU,24.0,210.82,99.79024,Vanderbilt,USA,2000,2,31,34,3.1,2.0,0.4,-21.4,0.053,0.122,0.146,0.41200000000000003,0.057999999999999996,2001-02 2540,Damone Brown,PHI,23.0,203.2,91.625584,Syracuse,USA,2001,2,36,17,1.4,0.2,0.1,-10.1,0.037000000000000005,0.042,0.22899999999999998,0.469,0.051,2001-02 2541,Chris Webber,SAC,29.0,208.28,111.13004,Michigan,USA,1993,1,1,54,24.5,10.1,4.8,9.4,0.081,0.201,0.29,0.54,0.21,2001-02 2542,Chris Whitney,WAS,30.0,182.88,79.3786,Clemson,USA,1993,2,47,82,10.2,1.9,3.8,-2.2,0.006,0.079,0.172,0.568,0.22899999999999998,2001-02 2543,Christian Laettner,WAS,32.0,210.82,111.13004,Duke,USA,1992,1,3,57,7.1,5.3,2.6,-5.1,0.06,0.187,0.155,0.511,0.166,2001-02 2544,Chucky Atkins,DET,27.0,180.34,72.57472,South Florida,USA,Undrafted,Undrafted,Undrafted,79,12.1,2.0,3.3,1.4,0.016,0.067,0.19899999999999998,0.568,0.204,2001-02 2545,Chucky Brown,SAC,34.0,203.2,99.79024,North Carolina State,USA,1989,2,43,18,1.2,1.8,0.3,-9.1,0.098,0.223,0.147,0.377,0.094,2001-02 2546,Clar. Weatherspoon,NYK,31.0,200.66,122.46983999999999,Southern Mississippi,USA,1992,1,9,56,8.8,8.2,1.1,-5.9,0.09699999999999999,0.214,0.152,0.478,0.057999999999999996,2001-02 2547,Clifford Robinson,DET,35.0,208.28,102.0582,Connecticut,USA,1989,2,36,80,14.6,4.8,2.5,2.9,0.032,0.127,0.217,0.503,0.125,2001-02 2548,Chris Mihm,CLE,22.0,213.36,120.20188,Texas,USA,2000,1,7,74,7.7,5.3,0.3,-7.7,0.09300000000000001,0.175,0.196,0.47,0.025,2001-02 2549,Corey Maggette,LAC,22.0,198.12,103.418976,Duke,USA,1999,1,13,63,11.4,3.7,1.8,-3.1,0.038,0.12300000000000001,0.21100000000000002,0.56,0.114,2001-02 2550,Corliss Williamson,DET,28.0,200.66,111.13004,Arkansas,USA,1995,1,13,78,13.6,4.1,1.2,5.8,0.084,0.139,0.295,0.5670000000000001,0.113,2001-02 2551,Courtney Alexander,WAS,25.0,198.12,92.98635999999999,Fresno State,USA,2000,1,13,56,9.8,2.6,1.5,-6.4,0.037000000000000005,0.094,0.204,0.521,0.114,2001-02 2552,Cuttino Mobley,HOU,26.0,193.04,95.25432,Rhode Island,USA,1998,2,41,74,21.7,4.1,2.5,-3.9,0.023,0.08800000000000001,0.251,0.537,0.11199999999999999,2001-02 2553,Dale Davis,POR,33.0,210.82,114.30518400000001,Clemson,USA,1991,1,13,78,9.5,8.8,1.2,5.1,0.124,0.20199999999999999,0.138,0.551,0.06,2001-02 2554,Dalibor Bagaric,CHI,21.0,215.9,122.46983999999999,None,Croatia,2000,1,24,50,3.7,3.2,0.5,-11.9,0.1,0.201,0.188,0.44299999999999995,0.059000000000000004,2001-02 2555,Damon Jones,DET,25.0,190.5,83.91452,Houston,USA,Undrafted,Undrafted,Undrafted,67,5.1,1.5,2.1,7.6,0.013999999999999999,0.09300000000000001,0.162,0.5479999999999999,0.21,2001-02 2556,Damon Stoudamire,POR,28.0,177.8,77.56423199999999,Arizona,USA,1995,1,7,75,13.5,3.9,6.5,3.5,0.032,0.08900000000000001,0.18899999999999997,0.506,0.28,2001-02 2557,Corie Blount,PHI,33.0,208.28,109.769264,Cincinnati,USA,1993,1,25,72,3.6,5.1,0.6,-3.7,0.114,0.17800000000000002,0.10400000000000001,0.478,0.051,2001-02 2558,Bimbo Coles,CLE,34.0,187.96,82.553744,Virginia Tech,USA,1990,2,40,47,3.2,1.2,2.3,-14.8,0.021,0.075,0.132,0.45899999999999996,0.26899999999999996,2001-02 2559,Ben Wallace,DET,27.0,205.74,108.86208,Virginia Union,USA,Undrafted,Undrafted,Undrafted,80,7.6,13.0,1.4,3.7,0.127,0.292,0.106,0.522,0.062,2001-02 2560,Baron Davis,CHH,23.0,190.5,101.151016,UCLA,USA,1999,1,3,82,18.1,4.3,8.5,2.4,0.032,0.08900000000000001,0.237,0.498,0.364,2001-02 2561,Eddie Gill,MEM,23.0,182.88,86.18248,Weber State,USA,Undrafted,Undrafted,Undrafted,23,5.0,1.2,2.1,-20.5,0.021,0.067,0.179,0.531,0.262,2001-02 2562,Earl Watson,SEA,23.0,185.42,86.18248,UCLA,USA,2001,2,39,64,3.6,1.3,2.0,3.8,0.040999999999999995,0.067,0.139,0.507,0.196,2001-02 2563,Earl Boykins,LAC,26.0,165.1,60.327736,Eastern Michigan,USA,Undrafted,Undrafted,Undrafted,68,4.1,0.8,2.1,-0.5,0.04,0.040999999999999995,0.20199999999999999,0.46399999999999997,0.309,2001-02 2564,Doug Overton,LAC,32.0,190.5,86.18248,La Salle,USA,1991,2,40,18,2.2,0.7,0.7,-1.0,0.009000000000000001,0.099,0.207,0.414,0.16699999999999998,2001-02 2565,Doug Christie,SAC,32.0,198.12,92.98635999999999,Pepperdine,USA,1992,1,17,81,12.0,4.6,4.2,8.2,0.028999999999999998,0.114,0.157,0.578,0.16899999999999998,2001-02 2566,Donyell Marshall,UTA,29.0,205.74,104.32616,Connecticut,USA,1994,1,4,58,14.8,7.6,1.7,-5.7,0.10800000000000001,0.19399999999999998,0.226,0.565,0.111,2001-02 2567,Donny Marshall,NJN,29.0,200.66,104.32616,Connecticut,USA,1995,2,39,20,1.5,1.1,0.3,-5.0,0.068,0.11599999999999999,0.153,0.406,0.078,2001-02 2568,Donnell Harvey,DEN,21.0,203.2,99.79024,Florida,USA,2000,1,22,47,5.7,4.8,0.8,-0.9,0.109,0.20600000000000002,0.154,0.526,0.073,2001-02 2569,Don Reid,ORL,28.0,203.2,113.398,Georgetown,USA,1995,2,58,68,3.3,2.6,0.4,-3.4,0.1,0.168,0.16699999999999998,0.509,0.061,2001-02 2570,Dirk Nowitzki,DAL,24.0,213.36,111.13004,None,Germany,1998,1,9,76,23.4,9.9,2.4,6.6,0.048,0.24,0.254,0.599,0.105,2001-02 2571,Dion Glover,ATL,23.0,195.58,103.418976,Georgia Tech,USA,1999,1,20,55,8.9,3.1,1.5,-9.9,0.036000000000000004,0.128,0.225,0.491,0.127,2001-02 2572,Dikembe Mutombo,PHI,36.0,218.44,120.20188,Georgetown,Congo,1991,1,4,80,11.5,10.8,1.0,4.5,0.10300000000000001,0.23,0.153,0.574,0.048,2001-02 2573,Dickey Simpkins,ATL,30.0,205.74,112.490816,Providence,USA,1994,1,21,1,0.0,0.0,1.0,-16.7,0.0,0.0,0.0,0.0,0.5,2001-02 2574,Devean George,LAL,24.0,203.2,99.79024,Augsburg,USA,1999,1,23,82,7.1,3.7,1.4,12.2,0.049,0.138,0.163,0.502,0.09699999999999999,2001-02 2575,Desmond Mason,SEA,24.0,195.58,100.697424,Oklahoma State,USA,2000,1,17,75,12.4,4.7,1.4,5.4,0.046,0.124,0.188,0.5329999999999999,0.068,2001-02 2576,Eddie Griffin,HOU,20.0,208.28,99.79024,Seton Hall,USA,2001,1,7,73,8.8,5.7,0.7,-5.2,0.069,0.175,0.183,0.456,0.049,2001-02 2577,Eddie House,MIA,24.0,185.42,81.64656,Arizona State,USA,2000,2,37,64,8.0,1.7,1.9,-3.3,0.016,0.092,0.239,0.47100000000000003,0.18600000000000003,2001-02 2578,Eddie Jones,MIA,30.0,198.12,90.7184,Temple,USA,1994,1,10,81,18.3,4.7,3.2,1.0,0.023,0.115,0.22699999999999998,0.546,0.152,2001-02 2579,Eddie Robinson,CHI,26.0,205.74,92.98635999999999,Central Oklahoma,USA,Undrafted,Undrafted,Undrafted,29,9.0,2.7,1.3,-11.7,0.043,0.10400000000000001,0.212,0.489,0.09699999999999999,2001-02 2580,Ervin Johnson,MIL,34.0,210.82,115.66596000000001,New Orleans,USA,1993,1,23,81,2.6,5.8,0.3,1.7,0.10400000000000001,0.21899999999999997,0.079,0.46799999999999997,0.024,2001-02 2581,Ernest Brown,MIA,23.0,213.36,110.676448,Indian Hills Community College,USA,2000,2,52,3,1.0,2.0,0.0,-62.2,0.05,0.294,0.22899999999999998,0.193,0.0,2001-02 2582,Erick Strickland,BOS,28.0,190.5,98.88305600000001,Nebraska,USA,Undrafted,Undrafted,Undrafted,79,7.7,2.7,2.3,-1.1,0.013999999999999999,0.132,0.18100000000000002,0.545,0.198,2001-02 2583,Erick Dampier,GSW,26.0,210.82,120.20188,Mississippi State,USA,1996,1,10,73,7.6,5.3,1.2,-6.3,0.10400000000000001,0.13699999999999998,0.17800000000000002,0.484,0.078,2001-02 2584,Erick Barkley,POR,24.0,185.42,80.28578399999998,St. John's (NY),USA,2000,1,28,19,3.1,0.9,1.8,1.2,0.026000000000000002,0.067,0.175,0.401,0.23800000000000002,2001-02 2585,Eric Williams,BOS,29.0,203.2,99.79024,Providence,USA,1995,1,14,74,6.4,3.0,1.5,5.4,0.036000000000000004,0.105,0.149,0.49,0.099,2001-02 2586,Eric Snow,PHI,29.0,190.5,92.532768,Michigan State,USA,1995,2,43,61,12.1,3.5,6.6,5.1,0.017,0.09,0.17800000000000002,0.51,0.301,2001-02 2587,Derrick McKey,PHI,35.0,208.28,109.315672,Alabama,USA,1987,1,9,41,2.9,3.1,1.1,0.6,0.073,0.121,0.091,0.46399999999999997,0.09300000000000001,2001-02 2588,Eric Piatkowski,LAC,31.0,198.12,97.52228000000001,Nebraska,USA,1994,1,15,71,8.8,2.6,1.6,-2.4,0.027999999999999997,0.09300000000000001,0.152,0.601,0.10099999999999999,2001-02 2589,Emanual Davis,ATL,33.0,195.58,88.45044,Delaware State,USA,Undrafted,Undrafted,Undrafted,28,6.6,2.6,2.4,-8.4,0.027999999999999997,0.076,0.151,0.449,0.145,2001-02 2590,Elton Brand,LAC,23.0,203.2,120.20188,Duke,USA,1999,1,1,80,18.2,11.6,2.4,-0.2,0.152,0.198,0.212,0.586,0.109,2001-02 2591,Elliot Perry,MEM,33.0,182.88,68.0388,Memphis,USA,1991,2,37,2,5.5,2.0,3.5,-42.0,0.0,0.11800000000000001,0.18100000000000002,0.506,0.389,2001-02 2592,Eldridge Recasner,LAC,34.0,190.5,86.18248,Washington,USA,1992,Undrafted,Undrafted,6,0.8,0.0,0.8,-0.3,0.0,0.0,0.106,0.38799999999999996,0.313,2001-02 2593,Elden Campbell,CHH,33.0,213.36,126.552168,Clemson,USA,1990,1,27,77,13.9,6.9,1.3,0.5,0.07,0.215,0.235,0.5579999999999999,0.084,2001-02 2594,Eduardo Najera,DAL,25.0,203.2,106.140528,Oklahoma,Mexico,2000,2,38,62,6.5,5.5,0.6,12.1,0.12300000000000001,0.159,0.132,0.5479999999999999,0.039,2001-02 2595,Eddy Curry,CHI,19.0,210.82,129.27372,None,USA,2001,1,4,72,6.7,3.8,0.3,-11.1,0.113,0.162,0.207,0.54,0.039,2001-02 2596,Eric Montross,TOR,30.0,213.36,122.46983999999999,North Carolina,USA,1994,1,9,49,2.4,2.9,0.3,-9.1,0.062,0.19,0.121,0.39799999999999996,0.039,2001-02 2597,Derrick Dial,TOR,26.0,193.04,83.46092800000001,Eastern Michigan,USA,1998,2,52,32,3.2,1.8,1.1,4.2,0.048,0.158,0.226,0.387,0.21100000000000002,2001-02 2598,Derrick Coleman,PHI,35.0,208.28,122.46983999999999,Syracuse,USA,1990,1,1,58,15.1,8.8,1.7,1.8,0.095,0.18600000000000003,0.212,0.524,0.084,2001-02 2599,Derek Fisher,LAL,27.0,185.42,90.7184,Arkansas-Little Rock,USA,1996,1,24,70,11.2,2.1,2.6,9.4,0.008,0.073,0.175,0.55,0.13699999999999998,2001-02 2600,Anfernee Hardaway,PHX,30.0,200.66,97.52228000000001,Memphis,USA,1993,1,3,80,12.0,4.4,4.1,-1.9,0.044000000000000004,0.11900000000000001,0.218,0.47200000000000003,0.21100000000000002,2001-02 2601,Ansu Sesay,SEA,25.0,205.74,102.0582,Mississippi,USA,1998,2,30,9,6.4,2.2,0.9,-7.5,0.066,0.124,0.18600000000000003,0.5489999999999999,0.091,2001-02 2602,Antawn Jamison,GSW,26.0,205.74,101.151016,North Carolina,USA,1998,1,4,82,19.7,6.8,2.0,-6.8,0.07200000000000001,0.12300000000000001,0.237,0.516,0.09300000000000001,2001-02 2603,Anthony Carter,MIA,27.0,187.96,88.45044,Hawaii,USA,Undrafted,Undrafted,Undrafted,46,4.3,2.5,4.7,-8.8,0.021,0.109,0.159,0.359,0.34700000000000003,2001-02 2604,Anthony Johnson,NJN,27.0,190.5,86.18248,College of Charleston,USA,1997,2,39,34,2.8,0.9,1.4,4.2,0.034,0.064,0.159,0.465,0.223,2001-02 2605,Anthony Mason,MIL,35.0,203.2,115.66596000000001,Tennessee State,USA,1988,3,53,82,9.6,7.9,4.2,0.5,0.049,0.185,0.127,0.544,0.162,2001-02 2606,Anthony Peeler,MIN,32.0,193.04,94.34713599999999,Missouri,USA,1992,1,15,82,9.0,2.5,2.2,-0.1,0.021,0.09699999999999999,0.17300000000000001,0.519,0.135,2001-02 2607,Andrew DeClercq,ORL,29.0,208.28,115.66596000000001,Florida,USA,1995,2,34,61,2.7,2.7,0.4,-0.3,0.127,0.163,0.14300000000000002,0.474,0.055,2001-02 2608,Antoine Walker,BOS,25.0,205.74,111.13004,Kentucky,USA,1996,1,6,81,22.1,8.8,5.0,3.7,0.047,0.18600000000000003,0.27699999999999997,0.49,0.22399999999999998,2001-02 2609,Antonio Davis,TOR,33.0,205.74,104.32616,Texas-El Paso,USA,1990,2,45,77,14.5,9.6,2.0,-0.3,0.095,0.192,0.196,0.49700000000000005,0.087,2001-02 2610,Antonio Harvey,SEA,31.0,210.82,102.0582,Pfeiffer,USA,Undrafted,Undrafted,Undrafted,5,1.8,1.8,1.0,-12.6,0.109,0.087,0.149,0.349,0.14300000000000002,2001-02 2611,Antonio McDyess,DEN,27.0,205.74,111.13004,Alabama,USA,1995,1,2,10,11.3,5.5,1.8,-15.9,0.09699999999999999,0.21100000000000002,0.209,0.631,0.136,2001-02 2612,Antonis Fotsis,MEM,21.0,208.28,99.336648,None,Greece,2001,2,47,28,3.9,2.2,0.4,-6.1,0.08800000000000001,0.121,0.19,0.479,0.057,2001-02 2613,Art Long,SEA,29.0,205.74,114.758776,Cincinnati,USA,Undrafted,Undrafted,Undrafted,63,4.5,4.0,0.7,-0.1,0.132,0.17300000000000001,0.163,0.506,0.063,2001-02 2614,Austin Croshere,IND,27.0,208.28,109.769264,Providence,USA,1997,1,12,76,6.8,3.9,1.0,0.3,0.065,0.19,0.198,0.518,0.10400000000000001,2001-02 2615,Avery Johnson,DAL,37.0,180.34,81.64656,Southern,USA,Undrafted,Undrafted,Undrafted,68,7.9,1.0,4.2,-7.1,0.012,0.047,0.19699999999999998,0.531,0.35600000000000004,2001-02 2616,Antonio Daniels,SAS,27.0,193.04,92.98635999999999,Bowling Green,USA,1997,1,4,82,9.2,2.1,2.8,7.0,0.013000000000000001,0.078,0.166,0.534,0.17600000000000002,2001-02 2617,Zendon Hamilton,DEN,27.0,210.82,115.212368,St. John's (NY),USA,Undrafted,Undrafted,Undrafted,54,6.0,4.7,0.3,-14.6,0.141,0.213,0.19899999999999998,0.499,0.028999999999999998,2001-02 2618,Andrei Kirilenko,UTA,21.0,205.74,95.25432,None,Russia,1999,1,24,82,10.7,4.9,1.1,7.6,0.084,0.14400000000000002,0.188,0.5529999999999999,0.073,2001-02 2619,Amal McCaskill,SAS,28.0,210.82,111.13004,Marquette,USA,1996,2,49,27,1.9,1.3,0.1,-10.3,0.11199999999999999,0.14,0.223,0.43,0.051,2001-02 2620,Derek Anderson,POR,27.0,195.58,88.45044,Kentucky,USA,1997,1,13,70,10.8,2.7,3.1,5.0,0.03,0.092,0.195,0.537,0.188,2001-02 2621,DerMarr Johnson,ATL,22.0,205.74,91.171992,Cincinnati,USA,2000,1,6,72,8.4,3.4,1.1,-1.9,0.038,0.127,0.179,0.513,0.076,2001-02 2622,Nick Anderson,MEM,34.0,198.12,92.98635999999999,Illinois,USA,1989,1,11,15,4.0,2.2,0.9,-14.8,0.005,0.17,0.198,0.375,0.127,2001-02 2623,A.J. Guyton,CHI,24.0,185.42,81.64656,Indiana,USA,2000,2,32,45,5.4,1.0,1.8,-3.8,0.022000000000000002,0.067,0.221,0.47700000000000004,0.248,2001-02 2624,Aaron McKie,PHI,29.0,195.58,94.800728,Temple,USA,1994,1,17,48,12.2,4.0,3.7,3.4,0.02,0.125,0.19899999999999998,0.54,0.22,2001-02 2625,Aaron Williams,NJN,30.0,205.74,108.86208,Xavier,USA,Undrafted,Undrafted,Undrafted,82,7.2,4.1,0.9,4.8,0.087,0.165,0.179,0.568,0.084,2001-02 2626,Adonal Foyle,GSW,27.0,208.28,120.20188,Colgate,St. Vincent & Grenadines,1997,1,8,79,4.8,4.9,0.5,-7.2,0.105,0.171,0.145,0.445,0.044000000000000004,2001-02 2627,Andre Miller,CLE,26.0,187.96,90.7184,Utah,USA,1999,1,8,81,16.5,4.7,10.9,-1.1,0.043,0.10400000000000001,0.22699999999999998,0.5379999999999999,0.484,2001-02 2628,Adrian Griffin,DAL,27.0,195.58,97.52228000000001,Seton Hall,USA,Undrafted,Undrafted,Undrafted,58,7.2,3.9,1.8,6.3,0.055999999999999994,0.129,0.13699999999999998,0.545,0.10800000000000001,2001-02 2629,Alan Henderson,ATL,29.0,205.74,108.86208,Indiana,USA,1995,1,16,26,5.5,3.7,0.4,1.7,0.087,0.171,0.17,0.527,0.043,2001-02 2630,Allan Houston,NYK,31.0,198.12,90.7184,Tennessee,USA,1993,1,11,77,20.4,3.3,2.5,-6.3,0.015,0.086,0.258,0.54,0.12300000000000001,2001-02 2631,Allen Iverson,PHI,27.0,182.88,74.84268,Georgetown,USA,1996,1,1,60,31.4,4.5,5.5,5.1,0.019,0.09300000000000001,0.371,0.489,0.266,2001-02 2632,Alonzo Mourning,MIA,32.0,208.28,118.38751200000002,Georgetown,USA,1992,1,2,75,15.7,8.4,1.2,1.1,0.08800000000000001,0.20600000000000002,0.243,0.5579999999999999,0.067,2001-02 2633,Alton Ford,PHX,21.0,205.74,124.7378,Houston,USA,2001,2,50,53,3.1,2.0,0.1,-8.7,0.085,0.193,0.175,0.573,0.027000000000000003,2001-02 2634,Alvin Jones,PHI,23.0,210.82,120.20188,Georgia Tech,USA,2001,2,56,23,1.1,1.6,0.1,-3.8,0.13,0.235,0.14400000000000002,0.451,0.036000000000000004,2001-02 2635,Alvin Williams,TOR,27.0,195.58,83.91452,Villanova,USA,1997,2,47,82,11.8,3.4,5.7,-0.9,0.022000000000000002,0.08900000000000001,0.183,0.47,0.262,2001-02 2636,Al Harrington,IND,22.0,205.74,113.398,None,USA,1998,1,25,44,13.1,6.3,1.2,-1.3,0.084,0.151,0.218,0.526,0.073,2001-02 2637,Zydrunas Ilgauskas,CLE,27.0,220.98,117.93392,None,Lithuania,1996,1,20,62,11.1,5.4,1.1,-4.1,0.125,0.18100000000000002,0.272,0.501,0.096,2001-02 2638,Alvin Williams,TOR,28.0,195.58,83.91452,Villanova,USA,1997,2,47,78,13.2,3.1,5.3,-5.7,0.023,0.087,0.19699999999999998,0.508,0.266,2002-03 2639,Joseph Forte,SEA,22.0,193.04,87.996848,North Carolina,USA,2001,1,21,17,1.4,0.6,0.6,-5.8,0.049,0.1,0.262,0.319,0.256,2002-03 2640,Mike Wilks,MIN,24.0,177.8,83.91452,Rice,USA,Undrafted,Undrafted,Undrafted,46,3.2,1.5,2.0,-1.5,0.036000000000000004,0.086,0.13699999999999998,0.436,0.22,2002-03 2641,Mike Miller,MEM,23.0,203.2,98.88305600000001,Florida,USA,2000,1,5,65,15.6,5.2,2.6,2.2,0.023,0.157,0.21899999999999997,0.537,0.131,2002-03 2642,Mike James,MIA,28.0,187.96,86.18248,Duquesne,USA,Undrafted,Undrafted,Undrafted,78,7.8,1.9,3.2,-3.0,0.017,0.086,0.207,0.469,0.266,2002-03 2643,Mike Dunleavy,GSW,22.0,205.74,100.243832,Duke,USA,2002,1,3,82,5.7,2.6,1.3,2.5,0.055,0.12300000000000001,0.17600000000000002,0.505,0.125,2002-03 2644,Mike Bibby,SAC,25.0,185.42,86.18248,Arizona,USA,1998,1,2,55,15.9,2.7,5.2,8.6,0.022000000000000002,0.061,0.217,0.5589999999999999,0.231,2002-03 2645,Mike Batiste,MEM,25.0,203.2,102.0582,Arizona State,USA,Undrafted,Undrafted,Undrafted,75,6.4,3.4,0.7,-6.2,0.077,0.165,0.21100000000000002,0.47600000000000003,0.07400000000000001,2002-03 2646,Michael Stewart,CLE,28.0,208.28,104.32616,California,USA,Undrafted,Undrafted,Undrafted,47,0.8,1.2,0.1,-12.0,0.083,0.156,0.094,0.426,0.044000000000000004,2002-03 2647,Michael Redd,MIL,23.0,198.12,97.52228000000001,Ohio State,USA,2000,2,43,82,15.1,4.5,1.4,2.6,0.05,0.14,0.22399999999999998,0.59,0.08900000000000001,2002-03 2648,Michael Olowokandi,LAC,28.0,213.36,122.46983999999999,Pacific,Nigeria,1998,1,1,36,12.3,9.1,1.3,-4.8,0.047,0.215,0.193,0.457,0.064,2002-03 2649,Michael Jordan,WAS,40.0,198.12,97.975872,North Carolina,USA,1984,1,3,82,20.0,6.1,3.8,0.0,0.027999999999999997,0.16699999999999998,0.28800000000000003,0.491,0.207,2002-03 2650,Mikki Moore,ATL,27.0,213.36,102.0582,Nebraska,USA,Undrafted,Undrafted,Undrafted,8,2.3,1.0,0.4,-18.0,0.158,0.044000000000000004,0.204,0.517,0.136,2002-03 2651,Michael Finley,DAL,30.0,200.66,102.0582,Wisconsin,USA,1995,1,21,69,19.3,5.8,3.0,12.6,0.044000000000000004,0.122,0.24,0.514,0.124,2002-03 2652,Michael Dickerson,MEM,28.0,195.58,86.18248,Arizona,USA,1998,1,14,6,4.8,1.0,1.3,-6.9,0.019,0.063,0.179,0.5529999999999999,0.131,2002-03 2653,Michael Curry,DET,34.0,195.58,95.25432,Georgia Southern,USA,Undrafted,Undrafted,Undrafted,78,3.0,1.6,1.3,-1.2,0.012,0.08800000000000001,0.094,0.474,0.113,2002-03 2654,Michael Bradley,TOR,24.0,208.28,102.0582,Villanova,USA,2001,1,17,67,5.0,6.1,1.0,-8.9,0.136,0.233,0.146,0.49200000000000005,0.083,2002-03 2655,Metta World Peace,IND,23.0,200.66,111.58363200000001,St. John's (NY),USA,1999,1,16,69,15.5,5.2,2.9,7.6,0.051,0.122,0.223,0.529,0.14400000000000002,2002-03 2656,Mengke Bateer,SAS,27.0,210.82,131.54168,None,China,Undrafted,Undrafted,Undrafted,12,0.8,0.8,0.3,-18.5,0.059000000000000004,0.157,0.24600000000000002,0.252,0.16699999999999998,2002-03 2657,Melvin Ely,LAC,25.0,208.28,117.93392,Fresno State,USA,2002,1,12,52,4.5,3.3,0.3,3.4,0.094,0.154,0.153,0.54,0.03,2002-03 2658,Mehmet Okur,DET,24.0,210.82,112.94440800000001,None,Turkey,2001,2,37,72,6.9,4.7,1.0,4.3,0.099,0.19399999999999998,0.19,0.514,0.094,2002-03 2659,Maurice Taylor,HOU,26.0,205.74,117.93392,Michigan,USA,1997,1,14,67,8.4,3.6,1.0,-0.1,0.086,0.124,0.237,0.47200000000000003,0.091,2002-03 2660,Matt Maloney,ATL,31.0,190.5,87.089664,Pennsylvania,USA,Undrafted,Undrafted,Undrafted,14,1.7,0.5,1.2,11.9,0.012,0.075,0.146,0.441,0.254,2002-03 2661,Matt Harpring,UTA,27.0,200.66,104.779752,Georgia Tech,USA,1998,1,15,78,17.6,6.6,1.7,5.2,0.095,0.14400000000000002,0.237,0.588,0.095,2002-03 2662,Michael Doleac,NYK,26.0,210.82,118.841104,Utah,USA,1998,1,12,75,4.4,2.9,0.6,-5.3,0.076,0.17300000000000001,0.187,0.451,0.068,2002-03 2663,Milt Palacio,CLE,25.0,190.5,88.45044,Colorado State,Belize,Undrafted,Undrafted,Undrafted,80,5.0,2.9,3.2,-11.5,0.026000000000000002,0.11,0.124,0.466,0.21100000000000002,2002-03 2664,Monty Williams,PHI,31.0,203.2,102.0582,Notre Dame,USA,1994,1,24,21,4.4,2.1,1.2,8.6,0.053,0.138,0.17600000000000002,0.489,0.14300000000000002,2002-03 2665,Moochie Norris,HOU,29.0,187.96,83.91452,West Florida,USA,1996,2,33,82,4.4,1.9,2.4,-0.1,0.032,0.10099999999999999,0.159,0.47,0.239,2002-03 2666,Qyntel Woods,POR,22.0,203.2,100.243832,Northeast Mississippi Community College,USA,2002,1,21,53,2.4,1.0,0.2,-8.6,0.051,0.146,0.20800000000000002,0.505,0.064,2002-03 2667,Quentin Richardson,LAC,23.0,198.12,107.047712,DePaul,USA,2000,1,18,59,9.4,4.8,0.9,-5.9,0.079,0.151,0.22,0.46,0.07200000000000001,2002-03 2668,Primoz Brezec,IND,23.0,215.9,114.30518400000001,None,Slovenia,2000,1,27,22,1.9,1.0,0.2,11.5,0.141,0.09300000000000001,0.22399999999999998,0.449,0.057999999999999996,2002-03 2669,Predrag Savovic,DEN,27.0,198.12,102.0582,Hawaii,Yugoslavia,Undrafted,Undrafted,Undrafted,27,3.1,0.9,0.8,-9.8,0.038,0.077,0.205,0.392,0.16899999999999998,2002-03 2670,Predrag Drobnjak,SEA,27.0,210.82,123.377024,None,Yugoslavia,1997,2,48,82,9.4,3.9,1.0,-3.0,0.063,0.13,0.21100000000000002,0.45899999999999996,0.07400000000000001,2002-03 2671,Popeye Jones,DAL,33.0,203.2,113.398,Murray State,USA,1992,2,41,26,2.0,2.3,0.3,-8.8,0.13699999999999998,0.16,0.16699999999999998,0.396,0.059000000000000004,2002-03 2672,Pepe Sanchez,DET,26.0,193.04,88.45044,Temple,Argentina,Undrafted,Undrafted,Undrafted,9,0.0,0.7,0.9,1.2,0.095,0.08,0.084,0.0,0.364,2002-03 2673,Peja Stojakovic,SAC,26.0,208.28,103.872568,None,Serbia and Montenegro,1996,1,14,72,19.2,5.5,2.0,8.2,0.027999999999999997,0.13699999999999998,0.223,0.6,0.08900000000000001,2002-03 2674,Paul Shirley,ATL,25.0,208.28,104.32616,Iowa State,USA,Undrafted,Undrafted,Undrafted,2,0.0,0.5,0.0,66.5,0.0,0.14300000000000002,0.252,0.0,0.0,2002-03 2675,Paul Pierce,BOS,25.0,198.12,104.32616,Kansas,USA,1998,1,10,79,25.9,7.3,4.4,2.7,0.038,0.179,0.32899999999999996,0.532,0.23600000000000002,2002-03 2676,Pau Gasol,MEM,22.0,213.36,102.965384,None,Spain,2001,1,3,82,19.0,8.8,2.8,-2.6,0.07400000000000001,0.19699999999999998,0.239,0.57,0.131,2002-03 2677,Pat Garrity,ORL,26.0,205.74,107.95489599999999,Notre Dame,USA,1998,1,19,81,10.7,3.8,1.5,2.2,0.031,0.107,0.151,0.551,0.073,2002-03 2678,Pat Burke,ORL,29.0,210.82,113.398,Auburn,Ireland,Undrafted,Undrafted,Undrafted,62,4.3,2.4,0.4,-11.9,0.076,0.135,0.20800000000000002,0.415,0.055999999999999994,2002-03 2679,P.J. Brown,NOH,33.0,210.82,108.40848799999999,Louisiana Tech,USA,1992,2,29,78,10.7,9.0,1.9,2.4,0.107,0.209,0.139,0.5920000000000001,0.09,2002-03 2680,Othella Harrington,NYK,29.0,205.74,106.59411999999999,Georgetown,USA,1996,2,30,74,7.7,6.4,0.8,-1.6,0.10400000000000001,0.207,0.151,0.563,0.053,2002-03 2681,Oscar Torres,GSW,26.0,198.12,95.25432,Venezuela,Venezuela,Undrafted,Undrafted,Undrafted,17,3.1,0.7,0.2,7.1,0.039,0.091,0.226,0.5920000000000001,0.055999999999999994,2002-03 2682,Olumide Oyedeji,ORL,22.0,208.28,108.86208,None,Nigeria,2000,2,42,27,1.0,1.9,0.2,-7.9,0.076,0.308,0.10400000000000001,0.485,0.062,2002-03 2683,Nikoloz Tskitishvili,DEN,20.0,213.36,102.0582,None,Georgia,2002,1,5,81,3.9,2.2,1.1,-9.8,0.053,0.107,0.16699999999999998,0.374,0.113,2002-03 2684,Nick Van Exel,DAL,31.0,185.42,88.45044,Cincinnati,USA,1993,2,37,73,12.5,2.8,4.3,6.0,0.019,0.095,0.22899999999999998,0.509,0.252,2002-03 2685,Nene,DEN,20.0,210.82,117.93392,None,Brazil,2002,1,7,80,10.5,6.1,1.9,-7.0,0.10800000000000001,0.156,0.191,0.545,0.11900000000000001,2002-03 2686,Nazr Mohammed,ATL,25.0,208.28,113.398,Kentucky,USA,1998,1,29,35,4.6,3.7,0.2,-12.3,0.111,0.20199999999999999,0.201,0.452,0.024,2002-03 2687,Nate Huffman,TOR,28.0,215.9,111.13004,Central Michigan,USA,Undrafted,Undrafted,Undrafted,7,3.3,3.3,0.7,0.7,0.134,0.24100000000000002,0.175,0.40299999999999997,0.1,2002-03 2688,Morris Peterson,TOR,25.0,200.66,97.52228000000001,Michigan State,USA,2000,1,21,82,14.1,4.4,2.3,-6.0,0.036000000000000004,0.10800000000000001,0.203,0.488,0.11,2002-03 2689,Mateen Cleaves,SAC,25.0,187.96,92.98635999999999,Michigan State,USA,2000,1,14,12,1.3,0.7,0.8,1.1,0.019,0.106,0.303,0.32299999999999995,0.28600000000000003,2002-03 2690,Marko Jaric,LAC,24.0,200.66,89.811216,None,Serbia,2000,2,30,66,7.4,2.4,2.9,1.4,0.03,0.10400000000000001,0.198,0.498,0.237,2002-03 2691,Mark Strickland,DAL,32.0,208.28,99.79024,Temple,USA,Undrafted,Undrafted,Undrafted,4,1.0,1.8,0.0,-19.2,0.35700000000000004,0.25,0.17800000000000002,0.4,0.0,2002-03 2692,Mark Madsen,LAL,27.0,205.74,111.13004,Stanford,USA,2000,1,29,54,3.2,2.9,0.7,0.6,0.11800000000000001,0.111,0.12,0.45799999999999996,0.067,2002-03 2693,Kirk Haston,NOH,24.0,205.74,109.769264,Indiana,USA,2001,1,16,12,0.5,0.6,0.3,-23.0,0.0,0.159,0.19899999999999998,0.16,0.09699999999999999,2002-03 2694,Keyon Dooling,LAC,23.0,190.5,88.904032,Missouri,USA,2000,1,10,55,6.4,1.3,1.6,-6.1,0.011000000000000001,0.07400000000000001,0.19899999999999998,0.494,0.168,2002-03 2695,Kevin Willis,SAS,40.0,213.36,111.13004,Michigan State,USA,1984,1,11,71,4.2,3.2,0.3,-6.0,0.11599999999999999,0.20600000000000002,0.196,0.506,0.051,2002-03 2696,Kevin Ollie,SEA,30.0,187.96,88.45044,Connecticut,USA,Undrafted,Undrafted,Undrafted,82,6.5,2.2,3.5,5.2,0.016,0.09699999999999999,0.15,0.514,0.252,2002-03 2697,Kevin Garnett,MIN,27.0,210.82,99.79024,None,USA,1995,1,5,82,23.0,13.4,6.0,6.8,0.086,0.282,0.262,0.5529999999999999,0.249,2002-03 2698,Kerry Kittles,NJN,29.0,195.58,81.64656,Villanova,USA,1996,1,8,65,13.0,3.9,2.6,5.4,0.03,0.11699999999999999,0.191,0.55,0.15,2002-03 2699,Keon Clark,SAC,28.0,210.82,100.243832,Nevada-Las Vegas,USA,1998,1,13,80,6.7,5.6,1.0,6.2,0.08800000000000001,0.17600000000000002,0.152,0.528,0.07,2002-03 2700,Kenyon Martin,NJN,25.0,205.74,106.140528,Cincinnati,USA,2000,1,1,77,16.7,8.3,2.4,7.3,0.073,0.20800000000000002,0.247,0.511,0.126,2002-03 2701,Kenny Thomas,PHI,25.0,200.66,111.13004,New Mexico,USA,1999,1,22,66,10.1,8.0,1.7,2.3,0.10800000000000001,0.205,0.172,0.517,0.091,2002-03 2702,Kenny Satterfield,PHI,22.0,187.96,77.11064,Cincinnati,USA,2001,2,53,39,3.4,1.1,1.7,-10.4,0.034,0.073,0.209,0.34,0.256,2002-03 2703,Kenny Anderson,NOH,32.0,185.42,76.203456,Georgia Tech,USA,1991,1,2,61,6.1,2.2,3.2,-2.3,0.031,0.106,0.195,0.457,0.3,2002-03 2704,Kendall Gill,MIN,35.0,195.58,97.52228000000001,Illinois,USA,1990,1,5,82,8.7,3.0,1.9,0.7,0.027999999999999997,0.10800000000000001,0.187,0.47700000000000004,0.12,2002-03 2705,Ken Johnson,MIA,25.0,208.28,108.86208,Ohio State,USA,2001,2,48,16,2.0,2.0,0.0,-5.9,0.031,0.187,0.139,0.40399999999999997,0.0,2002-03 2706,Kelvin Cato,HOU,28.0,210.82,124.7378,Iowa State,USA,1997,1,15,73,4.5,5.9,0.3,0.1,0.122,0.272,0.134,0.535,0.027000000000000003,2002-03 2707,Keith Van Horn,PHI,27.0,208.28,115.66596000000001,Utah,USA,1997,1,2,74,15.9,7.1,1.3,1.9,0.079,0.188,0.23199999999999998,0.556,0.068,2002-03 2708,Kedrick Brown,BOS,22.0,200.66,100.697424,Northwest Florida State,USA,2001,1,11,51,2.8,2.7,0.4,-3.9,0.07200000000000001,0.162,0.147,0.392,0.052000000000000005,2002-03 2709,Karl Malone,UTA,39.0,205.74,116.119552,Louisiana Tech,USA,1985,1,13,81,20.6,7.8,4.7,3.0,0.049,0.203,0.276,0.534,0.23600000000000002,2002-03 2710,Kareem Rush,LAL,22.0,198.12,97.52228000000001,Missouri,USA,2002,1,20,76,3.0,1.2,0.9,-3.5,0.033,0.08800000000000001,0.162,0.447,0.11900000000000001,2002-03 2711,Juwan Howard,DEN,30.0,205.74,117.93392,Michigan,USA,1994,1,5,77,18.4,7.6,3.0,-11.2,0.073,0.187,0.262,0.501,0.175,2002-03 2712,Junior Harrington,DEN,22.0,193.04,86.18248,Wingate,USA,Undrafted,Undrafted,Undrafted,82,5.1,3.0,3.4,-8.8,0.025,0.129,0.152,0.405,0.23399999999999999,2002-03 2713,Jumaine Jones,CLE,24.0,203.2,98.88305600000001,Georgia,USA,1999,1,27,80,9.8,5.1,1.4,-9.8,0.054000000000000006,0.156,0.16899999999999998,0.525,0.08900000000000001,2002-03 2714,Juaquin Hawkins,HOU,29.0,200.66,92.98635999999999,Long Beach State,USA,Undrafted,Undrafted,Undrafted,58,2.3,1.3,0.8,2.0,0.03,0.099,0.128,0.42700000000000005,0.107,2002-03 2715,Juan Dixon,WAS,24.0,190.5,74.389088,Maryland,USA,2002,1,17,42,6.4,1.7,1.0,-2.4,0.024,0.10800000000000001,0.23800000000000002,0.46399999999999997,0.11800000000000001,2002-03 2716,Kobe Bryant,LAL,24.0,200.66,97.52228000000001,None,USA,1996,1,13,82,30.0,6.9,5.9,3.7,0.035,0.152,0.32899999999999996,0.55,0.268,2002-03 2717,Raef LaFrentz,DAL,27.0,210.82,111.13004,Kansas,USA,1998,1,3,69,9.3,4.8,0.8,7.7,0.085,0.142,0.168,0.578,0.05,2002-03 2718,Kurt Thomas,NYK,30.0,205.74,106.59411999999999,Texas Christian,USA,1995,1,10,81,14.0,7.9,2.0,-1.1,0.071,0.22399999999999998,0.22399999999999998,0.511,0.11,2002-03 2719,LaPhonso Ellis,MIA,33.0,203.2,108.86208,Notre Dame,USA,1992,1,5,55,5.0,2.9,0.3,0.8,0.065,0.165,0.195,0.47600000000000003,0.036000000000000004,2002-03 2720,Mark Jackson,UTA,38.0,190.5,88.45044,St. John's (NY),USA,1987,1,18,82,4.7,2.1,4.6,-0.4,0.028999999999999998,0.11,0.17600000000000002,0.473,0.43700000000000006,2002-03 2721,Mark Bryant,BOS,38.0,205.74,113.398,Seton Hall,USA,1988,1,21,16,0.8,1.3,0.3,-9.6,0.095,0.158,0.127,0.313,0.08,2002-03 2722,Mark Blount,BOS,27.0,213.36,113.398,Pittsburgh,USA,1997,2,54,81,5.0,3.8,0.7,-11.4,0.08900000000000001,0.16699999999999998,0.166,0.491,0.07400000000000001,2002-03 2723,Marcus Haislip,MIL,22.0,208.28,104.32616,Tennessee,USA,2002,1,13,39,4.1,1.4,0.2,-3.8,0.054000000000000006,0.087,0.19899999999999998,0.474,0.036000000000000004,2002-03 2724,Marcus Fizer,CHI,24.0,203.2,117.93392,Iowa State,USA,2000,1,4,38,11.7,5.7,1.3,-4.0,0.107,0.18600000000000003,0.276,0.503,0.11800000000000001,2002-03 2725,Marcus Camby,DEN,29.0,210.82,102.0582,Massachusetts,USA,1996,1,2,29,7.6,7.2,1.6,-12.6,0.122,0.252,0.193,0.444,0.138,2002-03 2726,Marc Jackson,MIN,28.0,208.28,122.46983999999999,Temple,USA,1997,2,37,77,5.5,2.9,0.5,2.9,0.099,0.151,0.209,0.508,0.057999999999999996,2002-03 2727,Manu Ginobili,SAS,25.0,198.12,95.25432,None,Argentina,1999,2,57,69,7.6,2.3,2.0,6.8,0.039,0.091,0.182,0.556,0.163,2002-03 2728,Mamadou N'diaye,TOR,28.0,213.36,115.66596000000001,Auburn,Senegal,2000,1,26,22,5.5,3.7,0.3,-3.2,0.084,0.16699999999999998,0.16399999999999998,0.514,0.031,2002-03 2729,Malik Rose,SAS,28.0,200.66,115.66596000000001,Drexel,USA,1996,2,44,79,10.4,6.4,1.6,6.3,0.095,0.21,0.223,0.5379999999999999,0.11199999999999999,2002-03 2730,Malik Allen,MIA,25.0,208.28,115.66596000000001,Villanova,USA,Undrafted,Undrafted,Undrafted,80,9.6,5.3,0.7,-8.3,0.065,0.151,0.198,0.455,0.042,2002-03 2731,Maceo Baston,TOR,27.0,205.74,97.52228000000001,Michigan,USA,1998,2,58,16,2.5,1.4,0.0,-14.9,0.048,0.17800000000000002,0.161,0.6609999999999999,0.0,2002-03 2732,Lucious Harris,NJN,32.0,195.58,92.98635999999999,Long Beach State,USA,1993,2,28,77,10.3,3.0,2.0,2.8,0.036000000000000004,0.099,0.2,0.494,0.139,2002-03 2733,Lorenzen Wright,MEM,27.0,210.82,108.86208,Memphis,USA,1996,1,7,70,11.4,7.5,1.1,-5.5,0.095,0.207,0.21,0.489,0.069,2002-03 2734,Loren Woods,MIN,25.0,215.9,111.58363200000001,Arizona,USA,2001,2,45,38,2.1,2.5,0.5,0.9,0.087,0.191,0.141,0.455,0.078,2002-03 2735,Lonny Baxter,CHI,24.0,203.2,117.93392,Maryland,USA,2002,2,43,55,4.8,3.0,0.3,-4.0,0.10300000000000001,0.159,0.18899999999999997,0.521,0.04,2002-03 2736,Lindsey Hunter,TOR,32.0,187.96,88.45044,Jackson State,USA,1993,1,10,29,9.7,2.0,2.4,-13.2,0.024,0.079,0.26,0.434,0.217,2002-03 2737,Lee Nailon,NYK,28.0,205.74,107.95489599999999,Texas Christian,USA,1999,2,43,38,5.5,1.8,0.7,-5.6,0.091,0.12,0.272,0.494,0.12300000000000001,2002-03 2738,Lawrence Funderburke,SAC,32.0,205.74,104.32616,Ohio State,USA,1994,2,51,27,2.7,2.0,0.3,-1.6,0.083,0.159,0.16399999999999998,0.466,0.055,2002-03 2739,Lavor Postell,NYK,25.0,195.58,97.52228000000001,St. John's (NY),USA,2000,2,39,12,3.6,0.3,0.3,-0.1,0.011000000000000001,0.036000000000000004,0.23600000000000002,0.48200000000000004,0.057,2002-03 2740,Latrell Sprewell,NYK,32.0,195.58,88.45044,Alabama,USA,1992,1,24,74,16.4,3.9,4.5,-2.8,0.018000000000000002,0.10099999999999999,0.22699999999999998,0.49700000000000005,0.196,2002-03 2741,Larry Hughes,WAS,24.0,195.58,83.46092800000001,Saint Louis,USA,1998,1,8,67,12.8,4.6,3.1,-0.9,0.037000000000000005,0.132,0.209,0.521,0.174,2002-03 2742,Lamar Odom,LAC,23.0,208.28,100.243832,Rhode Island,USA,1999,1,4,49,14.6,6.7,3.6,-6.7,0.039,0.18,0.22,0.519,0.184,2002-03 2743,Kwame Brown,WAS,21.0,210.82,112.490816,None,USA,2001,1,1,80,7.4,5.3,0.7,-2.6,0.085,0.19699999999999998,0.18899999999999997,0.496,0.057,2002-03 2744,Jonathan Bender,IND,22.0,213.36,99.336648,None,USA,1999,1,5,46,6.6,2.9,0.9,-1.0,0.057,0.122,0.183,0.521,0.08900000000000001,2002-03 2745,Rafer Alston,TOR,26.0,187.96,79.3786,Fresno State,USA,1998,2,39,47,7.8,2.3,4.1,-7.4,0.024,0.099,0.20600000000000002,0.51,0.348,2002-03 2746,Randy Brown,PHX,35.0,187.96,86.18248,New Mexico State,USA,1991,2,31,32,1.3,0.8,1.1,-1.2,0.013999999999999999,0.107,0.11800000000000001,0.425,0.21600000000000003,2002-03 2747,Tracy McGrady,ORL,24.0,203.2,95.25432,None,USA,1997,1,9,75,32.1,6.5,5.5,3.5,0.046,0.147,0.35,0.564,0.282,2002-03 2748,Tony Parker,SAS,21.0,187.96,81.64656,None,France,2001,1,28,82,15.5,2.6,5.3,8.9,0.015,0.071,0.228,0.542,0.268,2002-03 2749,Tony Massenburg,UTA,35.0,205.74,113.398,Maryland,USA,1990,2,43,58,4.7,2.7,0.3,-5.0,0.095,0.154,0.18899999999999997,0.508,0.037000000000000005,2002-03 2750,Tony Delk,BOS,29.0,187.96,85.728888,Kentucky,USA,1996,1,16,67,9.8,3.5,2.2,-0.7,0.024,0.11699999999999999,0.165,0.547,0.141,2002-03 2751,Tony Battie,BOS,27.0,210.82,108.86208,Texas Tech,USA,1997,1,5,67,7.3,6.5,0.7,5.4,0.09699999999999999,0.19,0.13,0.578,0.049,2002-03 2752,Toni Kukoc,MIL,34.0,210.82,106.59411999999999,None,Croatia,1990,2,29,63,11.6,4.2,3.7,7.9,0.046,0.138,0.214,0.551,0.225,2002-03 2753,Tom Gugliotta,PHX,33.0,208.28,113.398,North Carolina State,USA,1992,1,6,27,4.8,3.7,1.1,-8.3,0.065,0.191,0.171,0.474,0.114,2002-03 2754,Todd MacCulloch,PHI,27.0,213.36,115.66596000000001,Washington,Canada,1999,2,47,42,7.1,4.7,0.5,-4.4,0.094,0.185,0.172,0.5479999999999999,0.04,2002-03 2755,Tito Maddox,HOU,22.0,193.04,86.18248,Fresno State,USA,2002,2,37,9,1.2,0.8,0.6,-5.3,0.031,0.162,0.237,0.354,0.217,2002-03 2756,Tim Thomas,MIL,26.0,208.28,108.86208,Villanova,USA,1997,1,7,80,13.3,4.9,1.3,-0.4,0.048,0.14300000000000002,0.225,0.527,0.071,2002-03 2757,Tracy Murray,LAL,31.0,200.66,103.418976,UCLA,USA,1992,1,18,31,2.0,0.7,0.4,-15.9,0.028999999999999998,0.114,0.19899999999999998,0.40700000000000003,0.10300000000000001,2002-03 2758,Tim Hardaway,IND,36.0,182.88,88.45044,Texas-El Paso,USA,1989,1,14,10,4.9,1.5,2.4,15.5,0.009000000000000001,0.115,0.21,0.483,0.27899999999999997,2002-03 2759,Tierre Brown,CLE,24.0,187.96,85.728888,McNeese State,USA,Undrafted,Undrafted,Undrafted,15,4.3,2.0,2.6,3.3,0.055,0.136,0.22399999999999998,0.499,0.355,2002-03 2760,Theo Ratliff,ATL,30.0,208.28,104.32616,Wyoming,USA,1995,1,18,81,8.7,7.5,0.9,-0.7,0.075,0.193,0.153,0.512,0.047,2002-03 2761,Terence Morris,HOU,24.0,205.74,100.243832,Maryland,USA,2001,2,33,49,3.7,2.6,0.5,-4.3,0.07400000000000001,0.157,0.154,0.5,0.068,2002-03 2762,Tayshaun Prince,DET,23.0,205.74,97.52228000000001,Kentucky,USA,2002,1,23,42,3.3,1.1,0.6,-3.8,0.013000000000000001,0.10800000000000001,0.16399999999999998,0.546,0.10400000000000001,2002-03 2763,Tariq Abdul-Wahad,DAL,28.0,198.12,102.0582,San Jose State,France,1997,1,11,14,4.1,2.9,1.5,8.5,0.075,0.13699999999999998,0.15,0.47,0.147,2002-03 2764,Tamar Slay,NJN,23.0,203.2,97.52228000000001,Marshall,USA,2002,2,53,36,2.6,0.9,0.4,-0.8,0.033,0.10099999999999999,0.213,0.428,0.086,2002-03 2765,Stromile Swift,MEM,23.0,205.74,102.0582,Louisiana State,USA,2000,1,2,67,9.7,5.7,0.7,-2.5,0.092,0.19699999999999998,0.214,0.542,0.051,2002-03 2766,Steven Smith,SAS,34.0,203.2,100.243832,Michigan State,USA,1991,1,5,53,6.8,1.9,1.3,1.9,0.024,0.081,0.17300000000000001,0.528,0.114,2002-03 2767,Steven Hunter,ORL,21.0,213.36,99.79024,DePaul,USA,2001,1,15,33,3.9,2.8,0.2,3.1,0.09699999999999999,0.125,0.139,0.531,0.022000000000000002,2002-03 2768,Steve Nash,DAL,29.0,190.5,88.45044,Santa Clara,Canada,1996,1,15,82,17.8,2.9,7.3,10.3,0.026000000000000002,0.07,0.242,0.5760000000000001,0.35100000000000003,2002-03 2769,Tim Duncan,SAS,27.0,213.36,117.93392,Wake Forest,US Virgin Islands,1997,1,1,81,23.3,12.9,3.9,9.1,0.1,0.268,0.27899999999999997,0.564,0.191,2002-03 2770,Travis Best,MIA,30.0,180.34,83.46092800000001,Georgia Tech,USA,1995,1,23,72,8.4,2.0,3.5,-7.4,0.016,0.08,0.193,0.473,0.253,2002-03 2771,Travis Knight,NYK,28.0,213.36,106.59411999999999,Connecticut,USA,1996,1,29,32,1.9,1.9,0.4,-3.4,0.069,0.18,0.127,0.424,0.08,2002-03 2772,Tremaine Fowlkes,LAC,27.0,203.2,99.79024,Fresno State,USA,1998,2,54,37,4.4,2.8,0.6,9.2,0.086,0.128,0.13699999999999998,0.5329999999999999,0.06,2002-03 2773,Zendon Hamilton,TOR,28.0,210.82,115.212368,St. John's (NY),USA,Undrafted,Undrafted,Undrafted,3,2.0,1.3,0.0,2.8,0.071,0.3,0.258,0.51,0.0,2002-03 2774,Zeljko Rebraca,DET,31.0,213.36,116.573144,None,Yugoslavia,1994,2,54,30,6.6,3.1,0.3,5.5,0.073,0.16399999999999998,0.19899999999999998,0.596,0.036000000000000004,2002-03 2775,Zach Randolph,POR,21.0,205.74,114.758776,Michigan State,USA,2001,1,19,77,8.4,4.5,0.5,-4.0,0.124,0.196,0.228,0.555,0.057999999999999996,2002-03 2776,Yao Ming,HOU,22.0,226.06,134.26323200000002,None,China,2002,1,1,82,13.5,8.2,1.7,2.2,0.099,0.223,0.222,0.57,0.10400000000000001,2002-03 2777,Wesley Person,MEM,32.0,198.12,90.7184,Auburn,USA,1994,1,23,66,11.0,2.9,1.7,-1.2,0.013999999999999999,0.095,0.163,0.565,0.08900000000000001,2002-03 2778,Wang Zhi-zhi,LAC,25.0,215.9,124.7378,None,China,1999,2,36,41,4.4,1.9,0.2,-3.5,0.075,0.147,0.239,0.485,0.040999999999999995,2002-03 2779,Walter McCarty,BOS,29.0,208.28,104.32616,Kentucky,USA,1996,1,19,82,6.1,3.5,1.3,-0.3,0.036000000000000004,0.133,0.127,0.54,0.095,2002-03 2780,Walt Williams,DAL,33.0,203.2,104.32616,Maryland,USA,1992,1,7,66,5.5,3.1,0.9,4.1,0.049,0.14400000000000002,0.155,0.5,0.077,2002-03 2781,Wally Szczerbiak,MIN,26.0,200.66,110.676448,Miami (OH),USA,1999,1,6,52,17.6,4.6,2.6,4.2,0.035,0.11199999999999999,0.221,0.5670000000000001,0.11599999999999999,2002-03 2782,Voshon Lenard,TOR,30.0,193.04,92.98635999999999,Minnesota,USA,1994,2,46,63,14.3,3.4,2.3,-9.0,0.027000000000000003,0.1,0.23399999999999999,0.502,0.138,2002-03 2783,Vladimir Stepania,MIA,27.0,215.9,115.66596000000001,None,Georgia,1998,1,27,79,5.6,7.0,0.3,-6.3,0.145,0.254,0.16399999999999998,0.45399999999999996,0.03,2002-03 2784,Vladimir Radmanovic,SEA,22.0,208.28,106.140528,None,Serbia,2001,1,12,72,10.1,4.5,1.3,4.7,0.046,0.151,0.19899999999999998,0.508,0.086,2002-03 2785,Vlade Divac,SAC,35.0,215.9,117.93392,None,Serbia and Montenegro,1989,1,26,80,9.9,7.2,3.4,9.5,0.076,0.17800000000000002,0.171,0.519,0.16,2002-03 2786,Vitaly Potapenko,SEA,28.0,208.28,129.27372,Wright State,Ukraine,1996,1,12,26,4.0,3.4,0.2,-6.4,0.071,0.20600000000000002,0.156,0.49200000000000005,0.017,2002-03 2787,Vincent Yarbrough,DEN,22.0,200.66,95.25432,Tennessee,USA,2002,2,32,59,6.9,2.7,2.2,-7.6,0.028999999999999998,0.115,0.174,0.446,0.16,2002-03 2788,Vince Carter,TOR,26.0,198.12,102.0582,North Carolina,USA,1998,1,5,43,20.6,4.4,3.3,-1.2,0.045,0.10099999999999999,0.27899999999999997,0.532,0.18100000000000002,2002-03 2789,Vin Baker,BOS,31.0,210.82,113.398,Hartford,USA,1993,1,8,52,5.2,3.8,0.6,-2.2,0.10800000000000001,0.138,0.154,0.531,0.053,2002-03 2790,Tyson Chandler,CHI,20.0,215.9,106.59411999999999,None,USA,2001,1,2,75,9.2,6.9,1.0,-8.6,0.105,0.203,0.182,0.565,0.068,2002-03 2791,Tyronn Lue,WAS,26.0,182.88,80.73937600000001,Nebraska,USA,1998,1,23,75,8.6,2.0,3.5,-0.9,0.013000000000000001,0.077,0.16699999999999998,0.523,0.223,2002-03 2792,Tyrone Hill,PHI,35.0,205.74,113.398,Xavier,USA,1990,1,11,56,5.6,7.0,0.7,-7.3,0.102,0.24,0.133,0.457,0.049,2002-03 2793,Troy Murphy,GSW,23.0,210.82,111.13004,Notre Dame,USA,2001,1,14,79,11.7,10.2,1.3,-2.7,0.09699999999999999,0.24,0.166,0.526,0.066,2002-03 2794,Troy Hudson,MIN,27.0,185.42,77.11064,Southern Illinois,USA,Undrafted,Undrafted,Undrafted,79,14.2,2.3,5.7,2.7,0.018000000000000002,0.059000000000000004,0.213,0.531,0.261,2002-03 2795,Trenton Hassell,CHI,24.0,195.58,90.7184,Austin Peay,USA,2001,2,29,82,4.2,3.1,1.8,-10.2,0.02,0.11699999999999999,0.11199999999999999,0.41100000000000003,0.11800000000000001,2002-03 2796,Steve Kerr,SAS,37.0,185.42,81.64656,Arizona,USA,1988,2,50,75,4.0,0.8,0.9,1.7,0.015,0.055999999999999994,0.14800000000000002,0.552,0.128,2002-03 2797,Steve Francis,HOU,26.0,190.5,88.45044,Maryland,USA,1999,1,2,81,21.0,6.2,6.2,2.4,0.057,0.115,0.259,0.541,0.278,2002-03 2798,Stephon Marbury,PHX,26.0,187.96,92.98635999999999,Georgia Tech,USA,1996,1,4,81,22.3,3.2,8.1,1.5,0.018000000000000002,0.07400000000000001,0.27399999999999997,0.52,0.35700000000000004,2002-03 2799,Stephen Jackson,SAS,25.0,203.2,99.79024,Butler Community College,USA,1997,2,42,80,11.8,3.6,2.3,5.2,0.036000000000000004,0.11,0.22,0.526,0.136,2002-03 2800,Ron Mercer,IND,27.0,200.66,95.25432,Kentucky,USA,1997,1,6,72,7.7,2.1,1.6,2.0,0.023,0.081,0.18899999999999997,0.439,0.11699999999999999,2002-03 2801,Roger Mason Jr.,CHI,22.0,195.58,90.7184,Virginia,USA,2002,2,30,17,1.8,0.7,0.7,-6.2,0.02,0.09300000000000001,0.14800000000000002,0.47100000000000003,0.16399999999999998,2002-03 2802,Rodney White,DEN,23.0,205.74,104.32616,North Carolina-Charlotte,USA,2001,1,9,72,9.0,3.0,1.7,-11.3,0.03,0.127,0.24,0.469,0.156,2002-03 2803,Rodney Rogers,NJN,32.0,200.66,115.66596000000001,Wake Forest,USA,1993,1,9,68,7.0,3.9,1.6,2.7,0.052000000000000005,0.171,0.203,0.483,0.146,2002-03 2804,Rod Strickland,MIN,36.0,190.5,83.91452,DePaul,USA,1988,1,19,47,6.8,2.0,4.6,2.5,0.025,0.09,0.191,0.49200000000000005,0.35100000000000003,2002-03 2805,Robert Traylor,NOH,26.0,203.2,128.820128,Michigan,USA,1998,1,6,69,3.9,3.8,0.7,0.3,0.138,0.21600000000000003,0.17,0.486,0.096,2002-03 2806,Robert Pack,NOH,34.0,187.96,86.18248,Southern California,USA,Undrafted,Undrafted,Undrafted,28,5.2,1.8,2.9,-10.1,0.03,0.10300000000000001,0.20199999999999999,0.473,0.33299999999999996,2002-03 2807,Robert Horry,LAL,32.0,208.28,107.95489599999999,Alabama,USA,1992,1,11,80,6.5,6.4,2.9,4.4,0.08800000000000001,0.163,0.12300000000000001,0.488,0.14800000000000002,2002-03 2808,Robert Archibald,MEM,23.0,210.82,113.398,Illinois,Scotland,2002,2,31,12,1.6,1.4,0.3,-7.2,0.08800000000000001,0.162,0.225,0.34,0.071,2002-03 2809,Ricky Davis,CLE,23.0,200.66,89.357624,Iowa,USA,1998,1,21,79,20.6,4.9,5.5,-10.3,0.034,0.106,0.26899999999999996,0.485,0.258,2002-03 2810,Rick Fox,LAL,33.0,200.66,106.59411999999999,North Carolina,Canada,1991,1,24,76,9.0,4.3,3.3,2.8,0.032,0.131,0.157,0.523,0.171,2002-03 2811,Rick Brunson,CHI,31.0,193.04,86.18248,Temple,USA,Undrafted,Undrafted,Undrafted,17,3.5,1.1,2.1,2.3,0.027000000000000003,0.09,0.17300000000000001,0.5429999999999999,0.28600000000000003,2002-03 2812,Richard Jefferson,NJN,23.0,200.66,100.697424,Arizona,USA,2001,1,13,80,15.5,6.4,2.5,6.4,0.06,0.14300000000000002,0.19699999999999998,0.563,0.11900000000000001,2002-03 2813,Richard Hamilton,DET,25.0,200.66,87.543256,Connecticut,USA,1999,1,7,82,19.7,3.9,2.5,3.2,0.04,0.105,0.314,0.531,0.171,2002-03 2814,Reggie Slater,MIN,32.0,200.66,115.66596000000001,Wyoming,USA,Undrafted,Undrafted,Undrafted,26,3.1,1.2,0.2,0.6,0.133,0.099,0.237,0.58,0.051,2002-03 2815,Reggie Miller,IND,37.0,200.66,88.45044,UCLA,USA,1987,1,11,70,12.6,2.5,2.4,3.7,0.011000000000000001,0.079,0.17,0.597,0.135,2002-03 2816,Reggie Evans,SEA,23.0,203.2,111.13004,Iowa,USA,Undrafted,Undrafted,Undrafted,67,3.2,6.6,0.5,-0.4,0.141,0.252,0.08900000000000001,0.51,0.037000000000000005,2002-03 2817,Ray Allen,SEA,27.0,195.58,92.98635999999999,Connecticut,USA,1996,1,5,76,22.5,5.0,4.4,2.6,0.039,0.11800000000000001,0.28,0.565,0.217,2002-03 2818,Rasual Butler,MIA,24.0,200.66,92.98635999999999,La Salle,USA,2002,2,52,72,7.5,2.6,1.3,-8.0,0.021,0.11800000000000001,0.215,0.43700000000000006,0.11599999999999999,2002-03 2819,Rasho Nesterovic,MIN,27.0,213.36,112.490816,None,Slovenia,1998,1,17,77,11.2,6.5,1.5,2.3,0.073,0.16899999999999998,0.17600000000000002,0.536,0.07400000000000001,2002-03 2820,Rasheed Wallace,POR,28.0,210.82,104.32616,North Carolina,USA,1995,1,4,74,18.1,7.4,2.1,5.7,0.051,0.19399999999999998,0.233,0.552,0.10099999999999999,2002-03 2821,Rashard Lewis,SEA,23.0,208.28,97.52228000000001,None,USA,1998,2,32,77,18.1,6.5,1.7,-1.6,0.057999999999999996,0.14,0.223,0.537,0.078,2002-03 2822,Randy Livingston,NOH,28.0,193.04,94.800728,Louisiana State,USA,1996,2,42,2,3.0,0.0,0.5,0.7,0.0,0.0,0.198,0.615,0.2,2002-03 2823,Ruben Boumtje-Boumtje,POR,25.0,213.36,116.573144,Georgetown,USA,2001,2,49,2,0.0,0.5,0.5,27.3,0.25,0.0,0.10400000000000001,0.0,0.33299999999999996,2002-03 2824,Raja Bell,DAL,26.0,195.58,92.98635999999999,Florida International,U.S. Virgin Islands,Undrafted,Undrafted,Undrafted,75,3.1,1.9,0.8,4.3,0.043,0.09300000000000001,0.105,0.509,0.071,2002-03 2825,Ruben Patterson,POR,27.0,195.58,101.604608,Cincinnati,USA,1998,2,31,78,8.3,3.4,1.3,4.0,0.08800000000000001,0.10400000000000001,0.204,0.53,0.10300000000000001,2002-03 2826,Ryan Bowen,DEN,27.0,205.74,99.79024,Iowa,USA,1998,2,55,62,3.6,2.5,0.9,-3.8,0.086,0.098,0.11599999999999999,0.519,0.09,2002-03 2827,Stacey Augmon,NOH,34.0,203.2,96.615096,Nevada-Las Vegas,USA,1991,1,9,70,3.0,1.7,1.0,5.4,0.035,0.126,0.14,0.474,0.125,2002-03 2828,Speedy Claxton,SAS,25.0,180.34,75.296272,Hofstra,USA,2000,1,20,30,5.8,1.9,2.5,1.7,0.055,0.086,0.203,0.509,0.292,2002-03 2829,Soumaila Samake,LAL,25.0,208.28,108.86208,None,Mali,2000,2,36,13,1.7,1.8,0.3,-10.0,0.14300000000000002,0.203,0.15,0.442,0.087,2002-03 2830,Smush Parker,CLE,22.0,193.04,81.64656,Fordham,USA,Undrafted,Undrafted,Undrafted,66,6.2,1.8,2.5,-9.6,0.028999999999999998,0.095,0.20199999999999999,0.523,0.239,2002-03 2831,Slava Medvedenko,LAL,24.0,208.28,115.66596000000001,None,Ukraine,Undrafted,Undrafted,Undrafted,58,4.4,2.4,0.3,-5.3,0.111,0.134,0.22,0.46,0.05,2002-03 2832,Shawn Marion,PHX,25.0,200.66,97.52228000000001,Nevada-Las Vegas,USA,1999,1,9,81,21.2,9.5,2.4,0.8,0.066,0.19399999999999998,0.23199999999999998,0.5379999999999999,0.10400000000000001,2002-03 2833,Shawn Kemp,ORL,33.0,208.28,127.00576000000001,Trinity Valley Community College,USA,1989,1,17,79,6.8,5.7,0.7,-2.3,0.099,0.22399999999999998,0.187,0.46799999999999997,0.055,2002-03 2834,Shawn Bradley,DAL,31.0,228.6,124.7378,Brigham Young,USA,1993,1,2,81,6.7,5.9,0.7,10.0,0.098,0.204,0.138,0.601,0.047,2002-03 2835,Shareef Abdur-Rahim,ATL,26.0,205.74,108.86208,California,USA,1996,1,3,81,19.9,8.4,3.0,-2.6,0.069,0.18,0.245,0.5660000000000001,0.145,2002-03 2836,Shaquille O'Neal,LAL,31.0,215.9,151.95332,Louisiana State,USA,1992,1,1,67,27.5,11.1,3.1,6.9,0.12,0.214,0.303,0.602,0.15,2002-03 2837,Shane Battier,MEM,24.0,203.2,99.79024,Duke,USA,2001,1,6,78,9.7,4.4,1.3,-2.2,0.059000000000000004,0.098,0.131,0.597,0.067,2002-03 2838,Shandon Anderson,NYK,29.0,198.12,95.25432,Georgia,USA,1996,2,54,82,8.4,3.1,1.1,-1.2,0.043,0.13,0.19699999999999998,0.5529999999999999,0.086,2002-03 2839,Shammond Williams,DEN,28.0,185.42,91.171992,North Carolina,USA,1998,2,34,78,8.0,2.2,3.4,-3.2,0.013999999999999999,0.09,0.177,0.503,0.252,2002-03 2840,Sean Rooks,LAC,33.0,208.28,117.93392,Arizona,USA,1992,2,30,70,4.2,3.1,1.0,-10.7,0.044000000000000004,0.14400000000000002,0.132,0.46,0.085,2002-03 2841,Sean Marks,MIA,27.0,208.28,113.398,California,New Zealand,1998,2,44,23,2.3,1.5,0.1,-1.7,0.042,0.14800000000000002,0.16699999999999998,0.41200000000000003,0.023,2002-03 2842,Sean Lampley,MIA,23.0,200.66,102.965384,California,USA,2001,2,44,35,4.8,2.4,0.9,-3.3,0.061,0.132,0.182,0.512,0.12,2002-03 2843,Scottie Pippen,POR,37.0,203.2,103.418976,Central Arkansas,USA,1987,1,5,64,10.8,4.3,4.5,8.2,0.037000000000000005,0.135,0.19899999999999998,0.52,0.23399999999999999,2002-03 2844,Scott Williams,PHX,35.0,208.28,117.93392,North Carolina,USA,Undrafted,Undrafted,Undrafted,69,4.0,2.8,0.3,-4.8,0.091,0.163,0.177,0.44,0.040999999999999995,2002-03 2845,Scott Padgett,UTA,27.0,205.74,108.86208,Kentucky,USA,1999,1,28,82,5.7,3.3,1.0,1.9,0.076,0.16699999999999998,0.187,0.496,0.113,2002-03 2846,Scot Pollard,SAC,28.0,210.82,120.20188,Kansas,USA,1997,1,19,23,4.5,4.6,0.3,15.1,0.154,0.183,0.156,0.49700000000000005,0.027999999999999997,2002-03 2847,Samaki Walker,LAL,27.0,205.74,115.66596000000001,Louisville,USA,1996,1,9,67,4.4,5.5,1.0,-2.7,0.1,0.22399999999999998,0.13699999999999998,0.465,0.08,2002-03 2848,Sam Cassell,MIL,33.0,190.5,83.91452,Florida State,USA,1993,1,24,78,19.7,4.4,5.8,-1.2,0.024,0.124,0.262,0.565,0.293,2002-03 2849,Ryan Humphrey,MEM,23.0,203.2,106.59411999999999,Notre Dame,USA,2002,1,19,48,1.9,2.1,0.2,-5.6,0.08,0.16399999999999998,0.159,0.33899999999999997,0.043,2002-03 2850,Ruben Wolkowyski,BOS,29.0,208.28,124.7378,None,Argentina,Undrafted,Undrafted,Undrafted,7,0.7,0.1,0.1,-61.3,0.0,0.059000000000000004,0.145,0.434,0.125,2002-03 2851,Zydrunas Ilgauskas,CLE,28.0,220.98,117.93392,None,Lithuania,1996,1,20,81,17.2,7.5,1.6,-7.9,0.10800000000000001,0.172,0.27899999999999997,0.516,0.10099999999999999,2002-03 2852,Jon Barry,DET,33.0,195.58,95.25432,Georgia Tech,USA,1992,1,21,80,6.9,2.3,2.6,9.6,0.026000000000000002,0.11900000000000001,0.175,0.593,0.242,2002-03 2853,John Salmons,PHI,23.0,200.66,95.25432,Miami (FL),USA,2002,1,26,64,2.1,0.9,0.7,2.5,0.039,0.102,0.145,0.502,0.153,2002-03 2854,Chris Webber,SAC,30.0,208.28,111.13004,Michigan,USA,1993,1,1,67,23.0,10.5,5.4,7.5,0.07,0.215,0.303,0.485,0.23800000000000002,2002-03 2855,Chris Owens,MEM,24.0,200.66,111.13004,Texas,USA,2002,2,47,1,4.0,1.0,0.0,39.1,0.33299999999999996,0.0,0.28800000000000003,0.667,0.0,2002-03 2856,Chris Mills,GSW,33.0,200.66,99.79024,Arizona,USA,1993,1,22,21,4.8,2.4,1.0,3.7,0.078,0.14300000000000002,0.20800000000000002,0.44299999999999995,0.138,2002-03 2857,Chris Mihm,CLE,23.0,213.36,120.20188,Texas,USA,2000,1,7,52,5.9,4.4,0.5,-8.2,0.13,0.191,0.203,0.462,0.06,2002-03 2858,Chris Jefferies,TOR,23.0,203.2,97.52228000000001,Fresno State,USA,2002,1,27,51,3.9,1.2,0.4,-7.4,0.025,0.081,0.17600000000000002,0.46299999999999997,0.057,2002-03 2859,Chris Dudley,POR,38.0,210.82,117.93392,Yale,USA,1987,4,75,3,0.0,0.7,0.0,-65.5,0.16699999999999998,0.0,0.045,0.0,0.0,2002-03 2860,Chris Crawford,ATL,28.0,205.74,106.59411999999999,Marquette,USA,1997,2,50,5,4.8,1.4,0.2,-1.1,0.107,0.111,0.23800000000000002,0.726,0.053,2002-03 2861,Chris Childs,NJN,35.0,190.5,88.45044,Boise State,USA,Undrafted,Undrafted,Undrafted,12,1.3,0.4,1.3,-3.0,0.03,0.023,0.11599999999999999,0.35200000000000004,0.242,2002-03 2862,Chris Andersen,DEN,24.0,208.28,99.79024,Blinn,USA,Undrafted,Undrafted,Undrafted,59,5.2,4.6,0.5,-7.3,0.129,0.214,0.19399999999999998,0.44,0.066,2002-03 2863,Cherokee Parks,LAC,30.0,210.82,108.86208,Duke,USA,1995,1,12,30,6.3,4.4,0.7,-15.3,0.08199999999999999,0.165,0.141,0.523,0.055,2002-03 2864,Chauncey Billups,DET,26.0,190.5,91.625584,Colorado,USA,1997,1,3,74,16.2,3.7,3.9,4.0,0.019,0.124,0.24,0.5820000000000001,0.23800000000000002,2002-03 2865,Charlie Ward,NYK,32.0,187.96,83.91452,Florida State,USA,1994,1,26,66,7.2,2.7,4.6,1.8,0.019,0.122,0.165,0.54,0.326,2002-03 2866,Charles Smith,POR,27.0,193.04,90.7184,New Mexico,USA,1997,1,26,3,1.7,0.0,0.3,19.1,0.0,0.0,0.192,0.434,0.083,2002-03 2867,Charles Oakley,WAS,39.0,205.74,112.490816,Virginia Union,USA,1985,1,9,42,1.8,2.5,1.0,1.6,0.083,0.18,0.085,0.529,0.127,2002-03 2868,Cezary Trybanski,MEM,23.0,218.44,108.86208,None,Poland,Undrafted,Undrafted,Undrafted,15,0.9,0.9,0.1,-11.1,0.073,0.099,0.163,0.287,0.021,2002-03 2869,Casey Jacobsen,PHX,22.0,198.12,97.52228000000001,Stanford,USA,2002,1,22,72,5.1,1.2,1.0,4.3,0.027999999999999997,0.054000000000000006,0.166,0.493,0.10099999999999999,2002-03 2870,Caron Butler,MIA,23.0,200.66,98.429464,Connecticut,USA,2002,1,10,78,15.4,5.1,2.7,-7.6,0.053,0.11,0.22899999999999998,0.502,0.14,2002-03 2871,Carlos Boozer,CLE,21.0,205.74,127.00576000000001,Duke,USA,2002,2,34,81,10.0,7.5,1.3,-11.9,0.10800000000000001,0.231,0.17,0.5770000000000001,0.09,2002-03 2872,Carlos Arroyo,UTA,23.0,187.96,91.625584,Florida International,Puerto Rico,Undrafted,Undrafted,Undrafted,44,2.8,0.6,1.2,-2.3,0.045,0.062,0.239,0.51,0.319,2002-03 2873,Calvin Booth,SEA,27.0,210.82,104.779752,Penn State,USA,1999,2,35,47,2.9,2.3,0.3,3.5,0.066,0.151,0.134,0.494,0.033,2002-03 2874,Calbert Cheaney,UTA,31.0,200.66,98.429464,Indiana,USA,1993,1,6,81,8.6,3.5,2.0,4.9,0.04,0.106,0.158,0.514,0.113,2002-03 2875,Bryon Russell,WAS,32.0,200.66,102.0582,Long Beach State,USA,1993,2,45,70,4.5,3.0,1.0,-3.2,0.036000000000000004,0.146,0.134,0.46799999999999997,0.08900000000000001,2002-03 2876,Bryce Drew,NOH,28.0,190.5,83.46092800000001,Valparaiso,USA,1998,1,16,13,1.5,1.0,0.8,6.4,0.049,0.122,0.165,0.35200000000000004,0.22,2002-03 2877,Chris Whitney,ORL,31.0,182.88,79.3786,Clemson,USA,1993,2,47,51,7.0,1.3,2.8,-12.1,0.003,0.075,0.19,0.46799999999999997,0.245,2002-03 2878,Bruno Sundov,BOS,23.0,218.44,111.58363200000001,None,Croatia,1998,2,35,26,1.2,1.1,0.3,-32.4,0.055999999999999994,0.174,0.222,0.281,0.09699999999999999,2002-03 2879,Chris Wilcox,LAC,20.0,208.28,100.243832,Maryland,USA,2002,1,8,46,3.7,2.3,0.5,3.2,0.08,0.16,0.18,0.528,0.076,2002-03 2880,Chucky Atkins,DET,28.0,180.34,72.57472,South Florida,USA,Undrafted,Undrafted,Undrafted,65,7.1,1.5,2.7,4.6,0.017,0.064,0.191,0.475,0.22,2002-03 2881,Darvin Ham,ATL,29.0,200.66,104.32616,Texas Tech,USA,Undrafted,Undrafted,Undrafted,75,2.4,2.0,0.5,-0.8,0.092,0.09699999999999999,0.129,0.46399999999999997,0.069,2002-03 2882,Darrell Armstrong,ORL,35.0,185.42,81.64656,Fayetteville State,USA,Undrafted,Undrafted,Undrafted,82,9.4,3.6,3.9,0.9,0.043,0.102,0.16699999999999998,0.53,0.21899999999999997,2002-03 2883,Darius Miles,CLE,21.0,205.74,95.25432,None,USA,2000,1,3,67,9.2,5.4,2.6,-9.9,0.062,0.138,0.191,0.435,0.14800000000000002,2002-03 2884,Danny Manning,DET,37.0,208.28,106.140528,Kansas,USA,1988,1,1,13,2.6,1.4,0.5,-0.7,0.079,0.155,0.21600000000000003,0.491,0.152,2002-03 2885,Danny Fortson,GSW,27.0,203.2,117.93392,Cincinnati,USA,1997,1,10,17,3.5,4.3,0.7,-6.2,0.146,0.231,0.159,0.442,0.087,2002-03 2886,Danny Ferry,SAS,36.0,208.28,106.59411999999999,Duke,USA,1989,1,2,64,1.9,1.2,0.3,2.5,0.039,0.107,0.11900000000000001,0.45899999999999996,0.055,2002-03 2887,Dan Langhi,PHX,25.0,210.82,99.79024,Vanderbilt,USA,2000,2,31,60,3.1,1.5,0.4,11.1,0.039,0.14800000000000002,0.192,0.434,0.061,2002-03 2888,Dan Gadzuric,MIL,25.0,210.82,108.86208,UCLA,Netherlands,2002,2,33,49,3.4,4.0,0.2,-2.3,0.099,0.198,0.11900000000000001,0.498,0.018000000000000002,2002-03 2889,Dan Dickau,ATL,24.0,182.88,86.18248,Gonzaga,USA,2002,1,28,50,3.7,0.9,1.7,-14.5,0.019,0.078,0.201,0.504,0.292,2002-03 2890,Damone Brown,TOR,24.0,203.2,91.625584,Syracuse,USA,2001,2,36,5,5.6,3.0,0.6,-5.3,0.028999999999999998,0.09699999999999999,0.177,0.363,0.051,2002-03 2891,Damon Stoudamire,POR,29.0,177.8,77.56423199999999,Arizona,USA,1995,1,7,59,6.9,2.6,3.5,4.4,0.036000000000000004,0.106,0.187,0.46,0.24600000000000002,2002-03 2892,Damon Jones,SAC,26.0,190.5,83.91452,Houston,USA,Undrafted,Undrafted,Undrafted,49,4.6,1.4,1.6,3.0,0.017,0.086,0.155,0.505,0.166,2002-03 2893,Dalibor Bagaric,CHI,22.0,215.9,131.54168,None,Croatia,2000,1,24,10,1.9,2.0,0.4,1.8,0.086,0.2,0.18600000000000003,0.342,0.10300000000000001,2002-03 2894,Dale Davis,POR,34.0,210.82,114.30518400000001,Clemson,USA,1991,1,13,78,7.4,7.2,1.2,3.1,0.125,0.175,0.12,0.5660000000000001,0.064,2002-03 2895,Dajuan Wagner,CLE,20.0,190.5,90.7184,Memphis,USA,2002,1,6,47,13.4,1.7,2.8,-9.5,0.016,0.051,0.23800000000000002,0.466,0.16899999999999998,2002-03 2896,Cuttino Mobley,HOU,27.0,193.04,95.25432,Rhode Island,USA,1998,2,41,73,17.5,4.2,2.8,1.6,0.027000000000000003,0.087,0.205,0.537,0.121,2002-03 2897,Courtney Alexander,NOH,26.0,195.58,92.98635999999999,Fresno State,USA,2000,1,13,66,7.9,1.8,1.2,-0.3,0.033,0.068,0.214,0.45899999999999996,0.105,2002-03 2898,Corliss Williamson,DET,29.0,200.66,111.13004,Arkansas,USA,1995,1,13,82,12.0,4.4,1.3,8.1,0.08199999999999999,0.121,0.249,0.515,0.099,2002-03 2899,Corie Blount,CHI,34.0,208.28,109.769264,Cincinnati,USA,1993,1,25,50,3.0,4.1,1.0,0.1,0.095,0.187,0.10400000000000001,0.502,0.087,2002-03 2900,Corey Maggette,LAC,23.0,198.12,103.418976,Duke,USA,1999,1,13,64,16.8,5.0,1.9,-6.7,0.043,0.13699999999999998,0.244,0.564,0.11199999999999999,2002-03 2901,Corey Benjamin,ATL,25.0,198.12,90.7184,Oregon State,USA,1998,1,28,9,4.4,3.4,1.1,-2.9,0.068,0.152,0.16399999999999998,0.4,0.122,2002-03 2902,Clifford Robinson,DET,36.0,208.28,102.0582,Connecticut,USA,1989,2,36,81,12.2,3.9,3.3,3.2,0.033,0.102,0.205,0.47700000000000004,0.175,2002-03 2903,Clar. Weatherspoon,NYK,32.0,200.66,122.46983999999999,Southern Mississippi,USA,1992,1,9,79,6.6,7.6,0.9,-2.8,0.11699999999999999,0.22399999999999998,0.128,0.522,0.053,2002-03 2904,Christian Laettner,WAS,33.0,210.82,111.13004,Duke,USA,1992,1,3,76,8.3,6.6,3.1,-0.4,0.062,0.20600000000000002,0.14300000000000002,0.545,0.175,2002-03 2905,David Robinson,SAS,37.0,215.9,113.398,Navy,USA,1987,1,1,64,8.5,7.9,1.0,11.2,0.11800000000000001,0.22,0.16699999999999998,0.531,0.057,2002-03 2906,Bruce Bowen,SAS,32.0,200.66,90.7184,Cal State-Fullerton,USA,Undrafted,Undrafted,Undrafted,82,7.1,2.9,1.4,8.9,0.028999999999999998,0.076,0.10800000000000001,0.563,0.068,2002-03 2907,Brian Shaw,LAL,37.0,198.12,90.7184,California-Santa Barbara,USA,1988,1,24,72,3.5,1.7,1.4,-5.4,0.024,0.128,0.158,0.467,0.18899999999999997,2002-03 2908,Anthony Peeler,MIN,33.0,193.04,94.34713599999999,Missouri,USA,1992,1,15,82,7.7,2.9,3.0,1.7,0.021,0.098,0.145,0.499,0.158,2002-03 2909,Anthony Mason,MIL,36.0,203.2,115.66596000000001,Tennessee State,USA,1988,3,53,65,7.2,6.4,3.2,-3.3,0.05,0.183,0.11699999999999999,0.524,0.15,2002-03 2910,Anthony Johnson,NJN,28.0,190.5,86.18248,College of Charleston,USA,1997,2,39,66,4.1,1.2,1.3,1.4,0.018000000000000002,0.08900000000000001,0.171,0.512,0.183,2002-03 2911,Anthony Goldwire,WAS,31.0,187.96,82.553744,Houston,USA,1994,2,52,15,1.7,0.4,0.3,-20.8,0.0,0.077,0.184,0.445,0.1,2002-03 2912,Anthony Carter,MIA,28.0,187.96,88.45044,Hawaii,USA,Undrafted,Undrafted,Undrafted,49,4.1,1.7,4.1,-7.2,0.015,0.09,0.171,0.39,0.366,2002-03 2913,Antawn Jamison,GSW,27.0,205.74,101.151016,North Carolina,USA,1998,1,4,82,22.2,7.0,1.9,-2.3,0.064,0.125,0.244,0.542,0.085,2002-03 2914,Ansu Sesay,SEA,26.0,205.74,102.0582,Mississippi,USA,1998,2,30,45,2.1,1.6,0.5,-7.7,0.08199999999999999,0.094,0.149,0.40399999999999997,0.09699999999999999,2002-03 2915,Anfernee Hardaway,PHX,31.0,200.66,97.52228000000001,Memphis,USA,1993,1,3,58,10.6,4.4,4.1,0.5,0.043,0.12300000000000001,0.192,0.499,0.21,2002-03 2916,Andrew DeClercq,ORL,30.0,208.28,115.66596000000001,Florida,USA,1995,2,34,77,4.7,4.4,0.7,4.5,0.122,0.179,0.13699999999999998,0.562,0.061,2002-03 2917,Andrei Kirilenko,UTA,22.0,205.74,102.0582,None,Russia,1999,1,24,80,12.0,5.3,1.7,2.1,0.083,0.145,0.19399999999999998,0.598,0.11,2002-03 2918,Andre Miller,LAC,27.0,187.96,90.7184,Utah,USA,1999,1,8,80,13.6,4.0,6.7,-5.3,0.033,0.08900000000000001,0.201,0.495,0.309,2002-03 2919,Amar'e Stoudemire,PHX,20.0,208.28,111.13004,None,USA,2002,1,9,82,13.5,8.8,1.0,-0.8,0.109,0.20600000000000002,0.214,0.53,0.05,2002-03 2920,A.J. Guyton,GSW,25.0,185.42,81.64656,Indiana,USA,2000,2,32,2,0.0,0.0,1.0,-3.9,0.0,0.0,0.282,0.0,0.4,2002-03 2921,Aaron McKie,PHI,30.0,195.58,94.800728,Temple,USA,1994,1,17,80,9.0,4.4,3.5,3.9,0.03,0.14300000000000002,0.158,0.49700000000000005,0.185,2002-03 2922,Aaron Williams,NJN,31.0,205.74,108.86208,Xavier,USA,Undrafted,Undrafted,Undrafted,81,6.2,4.1,1.1,1.0,0.099,0.136,0.165,0.504,0.092,2002-03 2923,Adam Harrington,DEN,22.0,195.58,90.7184,Auburn,USA,Undrafted,Undrafted,Undrafted,19,1.6,0.4,0.6,-15.7,0.01,0.08800000000000001,0.16699999999999998,0.387,0.179,2002-03 2924,Adonal Foyle,GSW,28.0,208.28,120.20188,Colgate,St. Vincent & Grenadines,1997,1,8,82,5.4,6.0,0.5,3.7,0.109,0.182,0.113,0.563,0.032,2002-03 2925,Adrian Griffin,DAL,28.0,195.58,104.32616,Seton Hall,USA,Undrafted,Undrafted,Undrafted,74,4.4,3.6,1.4,8.1,0.07,0.145,0.131,0.46299999999999997,0.111,2002-03 2926,Al Harrington,IND,23.0,205.74,113.398,None,USA,1998,1,25,82,12.2,6.2,1.5,2.8,0.075,0.162,0.218,0.493,0.08900000000000001,2002-03 2927,Alan Henderson,ATL,30.0,205.74,108.86208,Indiana,USA,1995,1,16,82,4.8,4.9,0.5,-7.2,0.12,0.182,0.135,0.508,0.046,2002-03 2928,Allan Houston,NYK,32.0,198.12,90.7184,Tennessee,USA,1993,1,11,82,22.5,2.8,2.7,-1.6,0.01,0.079,0.26899999999999996,0.563,0.129,2002-03 2929,Allen Iverson,PHI,28.0,182.88,74.84268,Georgetown,USA,1996,1,1,82,27.6,4.2,5.5,1.8,0.022000000000000002,0.095,0.327,0.5,0.248,2002-03 2930,Alton Ford,PHX,22.0,205.74,127.00576000000001,Houston,USA,2001,2,50,11,0.6,0.5,0.1,-16.7,0.0,0.207,0.183,0.33899999999999997,0.071,2002-03 2931,Antoine Rigaudeau,DAL,31.0,200.66,95.25432,None,USA,Undrafted,Undrafted,Undrafted,11,1.5,0.7,0.5,-33.7,0.044000000000000004,0.055,0.21100000000000002,0.243,0.128,2002-03 2932,Brian Skinner,PHI,27.0,205.74,120.20188,Baylor,USA,1998,1,22,77,6.0,4.8,0.2,-0.9,0.115,0.204,0.151,0.574,0.024,2002-03 2933,Antoine Walker,BOS,26.0,205.74,111.13004,Kentucky,USA,1996,1,6,78,20.1,7.2,4.8,1.5,0.033,0.168,0.27699999999999997,0.467,0.226,2002-03 2934,Antonio Davis,TOR,34.0,205.74,104.32616,Texas-El Paso,USA,1990,2,45,53,13.9,8.2,2.5,-3.7,0.077,0.188,0.214,0.483,0.115,2002-03 2935,Brian Scalabrine,NJN,25.0,205.74,108.86208,Southern California,USA,2001,2,34,59,3.1,2.4,0.8,0.5,0.061,0.16699999999999998,0.146,0.48700000000000004,0.10300000000000001,2002-03 2936,Brian Grant,MIA,31.0,205.74,115.212368,Xavier,USA,1994,1,8,82,10.3,10.2,1.3,-6.0,0.10400000000000001,0.275,0.16,0.552,0.07,2002-03 2937,Brian Cardinal,WAS,26.0,203.2,111.13004,Purdue,USA,2000,2,44,5,0.8,1.0,0.2,41.9,0.3,0.11800000000000001,0.172,0.41,0.1,2002-03 2938,Brevin Knight,MEM,27.0,177.8,77.11064,Stanford,USA,1997,1,16,55,3.9,1.5,4.2,-4.7,0.019,0.08199999999999999,0.165,0.442,0.40299999999999997,2002-03 2939,Brent Barry,SEA,31.0,198.12,92.079176,Oregon State,USA,1995,1,15,75,10.3,4.0,5.1,-0.5,0.022000000000000002,0.124,0.149,0.597,0.24100000000000002,2002-03 2940,Brendan Haywood,WAS,23.0,213.36,121.562656,North Carolina,USA,2001,1,20,81,6.2,5.0,0.4,0.3,0.121,0.128,0.126,0.561,0.024,2002-03 2941,Brandon Williams,ATL,28.0,198.12,97.52228000000001,Davidson,USA,Undrafted,Undrafted,Undrafted,6,0.3,0.3,0.0,-15.2,0.091,0.0,0.21,0.14300000000000002,0.0,2002-03 2942,Brandon Armstrong,NJN,23.0,195.58,83.91452,Pepperdine,USA,2001,1,23,17,1.4,0.2,0.1,-9.7,0.0,0.069,0.226,0.405,0.061,2002-03 2943,Brad Miller,IND,27.0,213.36,118.38751200000002,Purdue,USA,Undrafted,Undrafted,Undrafted,73,13.1,8.3,2.6,6.0,0.09699999999999999,0.198,0.187,0.579,0.14,2002-03 2944,Bostjan Nachbar,HOU,22.0,205.74,100.243832,None,Slovenia,2002,1,15,14,2.1,0.8,0.2,-12.2,0.042,0.10800000000000001,0.23199999999999998,0.41,0.079,2002-03 2945,Bonzi Wells,POR,26.0,195.58,95.25432,Ball State,USA,1998,1,11,75,15.2,5.3,3.3,2.6,0.05,0.146,0.257,0.505,0.18100000000000002,2002-03 2946,Bobby Simmons,WAS,23.0,198.12,106.59411999999999,DePaul,USA,2001,2,41,36,3.3,2.1,0.6,-2.4,0.105,0.147,0.166,0.47100000000000003,0.083,2002-03 2947,Bobby Jackson,SAC,30.0,185.42,83.91452,Minnesota,USA,1997,1,23,59,15.2,3.7,3.1,5.5,0.038,0.102,0.237,0.561,0.187,2002-03 2948,Bob Sura,GSW,30.0,195.58,90.7184,Florida State,USA,1995,1,17,55,7.3,3.0,3.2,2.2,0.057,0.105,0.184,0.51,0.247,2002-03 2949,Bo Outlaw,PHX,32.0,203.2,99.79024,Houston,USA,Undrafted,Undrafted,Undrafted,80,4.7,4.6,1.4,5.9,0.086,0.145,0.10300000000000001,0.574,0.094,2002-03 2950,Bimbo Coles,BOS,35.0,187.96,82.553744,Virginia Tech,USA,1990,2,40,35,4.4,1.7,2.1,-8.7,0.017,0.08199999999999999,0.14300000000000002,0.413,0.18100000000000002,2002-03 2951,Ben Wallace,DET,28.0,205.74,108.86208,Virginia Union,USA,Undrafted,Undrafted,Undrafted,73,6.9,15.4,1.6,5.0,0.12,0.345,0.10300000000000001,0.486,0.069,2002-03 2952,Baron Davis,NOH,24.0,190.5,101.151016,UCLA,USA,1999,1,3,50,17.1,3.7,6.4,4.7,0.034,0.081,0.243,0.5,0.302,2002-03 2953,Avery Johnson,DAL,38.0,180.34,81.64656,Southern,USA,Undrafted,Undrafted,Undrafted,48,3.3,0.6,1.3,-4.3,0.025,0.052000000000000005,0.213,0.467,0.264,2002-03 2954,Austin Croshere,IND,28.0,208.28,109.769264,Providence,USA,1997,1,12,49,5.1,3.2,1.1,3.5,0.067,0.198,0.193,0.53,0.156,2002-03 2955,Arvydas Sabonis,POR,38.0,220.98,132.448864,None,Lithuania,1986,1,24,78,6.1,4.3,1.8,8.1,0.09,0.251,0.195,0.5489999999999999,0.185,2002-03 2956,Art Long,TOR,30.0,205.74,113.398,Cincinnati,USA,Undrafted,Undrafted,Undrafted,26,2.3,2.3,0.2,-15.3,0.107,0.20199999999999999,0.204,0.37799999999999995,0.055999999999999994,2002-03 2957,Antonio Harvey,ATL,32.0,210.82,113.398,Pfeiffer,USA,Undrafted,Undrafted,Undrafted,4,1.0,1.5,0.0,-8.5,0.045,0.179,0.098,0.4,0.0,2002-03 2958,Antonio Daniels,POR,28.0,193.04,92.98635999999999,Bowling Green,USA,1997,1,4,67,3.7,1.1,1.3,0.7,0.015,0.087,0.135,0.5720000000000001,0.155,2002-03 2959,John Stockton,UTA,41.0,185.42,79.3786,Gonzaga,USA,1984,1,16,82,10.8,2.5,7.7,5.2,0.027999999999999997,0.078,0.191,0.5770000000000001,0.445,2002-03 2960,David Wesley,NOH,32.0,185.42,92.079176,Baylor,USA,Undrafted,Undrafted,Undrafted,73,16.7,2.4,3.4,2.4,0.016,0.06,0.213,0.5329999999999999,0.159,2002-03 2961,DeShawn Stevenson,UTA,22.0,195.58,95.25432,None,USA,2000,1,23,61,4.6,1.4,0.7,-9.8,0.032,0.099,0.21600000000000003,0.444,0.099,2002-03 2962,Jarron Collins,UTA,24.0,210.82,114.30518400000001,Stanford,USA,2001,2,52,22,5.5,2.7,0.6,-4.2,0.09300000000000001,0.085,0.142,0.53,0.06,2002-03 2963,Jared Jeffries,WAS,21.0,210.82,104.32616,Indiana,USA,2002,1,11,20,4.0,2.9,0.8,6.6,0.11,0.131,0.156,0.521,0.091,2002-03 2964,Jannero Pargo,LAL,23.0,187.96,77.11064,Arkansas,USA,Undrafted,Undrafted,Undrafted,34,2.5,1.1,1.1,-0.1,0.027000000000000003,0.10099999999999999,0.15,0.449,0.168,2002-03 2965,Jamison Brewer,IND,22.0,193.04,83.46092800000001,Auburn,USA,2001,2,40,10,2.2,0.9,1.8,6.8,0.07,0.062,0.14800000000000002,0.525,0.36,2002-03 2966,James Posey,HOU,26.0,203.2,97.52228000000001,Xavier,USA,1999,1,18,83,10.8,5.1,2.2,-3.9,0.040999999999999995,0.157,0.18,0.519,0.126,2002-03 2967,Jamal Sampson,MIL,20.0,210.82,106.59411999999999,California,USA,2002,2,46,5,0.0,0.4,0.2,12.3,0.125,0.125,0.11800000000000001,0.0,0.33299999999999996,2002-03 2968,Jamal Mashburn,NOH,30.0,203.2,112.037224,Kentucky,USA,1993,1,4,82,21.6,6.1,5.6,2.6,0.023,0.154,0.271,0.507,0.259,2002-03 2969,Jamal Crawford,CHI,23.0,195.58,86.18248,Michigan,USA,2000,1,8,80,10.7,2.3,4.2,-1.9,0.012,0.09,0.221,0.496,0.28,2002-03 2970,Jamaal Tinsley,IND,25.0,190.5,88.45044,Iowa State,USA,2001,1,27,73,7.8,3.6,7.5,3.1,0.03,0.099,0.158,0.46799999999999997,0.37799999999999995,2002-03 2971,Jamaal Magloire,NOH,25.0,210.82,117.480328,Kentucky,Canada,2000,1,19,82,10.3,8.8,1.1,2.4,0.12300000000000001,0.223,0.174,0.541,0.057999999999999996,2002-03 2972,Jason Caffey,MIL,30.0,203.2,116.119552,Alabama,USA,1995,1,20,51,5.8,3.5,0.7,-2.3,0.09,0.134,0.184,0.501,0.069,2002-03 2973,Jalen Rose,CHI,30.0,203.2,98.429464,Michigan,USA,1994,1,13,82,22.1,4.3,4.8,-6.4,0.023,0.092,0.27399999999999997,0.508,0.209,2002-03 2974,Jake Tsakalidis,PHX,24.0,218.44,131.54168,None,Greece,2000,1,25,33,4.9,3.7,0.4,-6.4,0.091,0.16,0.153,0.501,0.038,2002-03 2975,Jahidi White,WAS,27.0,205.74,131.54168,Georgetown,USA,1998,2,43,16,4.2,4.6,0.1,-4.9,0.16899999999999998,0.187,0.149,0.523,0.013000000000000001,2002-03 2976,Jacque Vaughn,ORL,28.0,185.42,86.18248,Kansas,USA,1997,1,27,80,5.9,1.5,2.9,0.0,0.018000000000000002,0.065,0.151,0.508,0.213,2002-03 2977,J.R. Bremer,BOS,22.0,187.96,83.91452,St. Bonaventure,USA,Undrafted,Undrafted,Undrafted,64,8.3,2.3,2.6,-2.1,0.013000000000000001,0.1,0.18,0.515,0.19,2002-03 2978,Ira Newble,ATL,28.0,200.66,99.79024,Miami (OH),USA,Undrafted,Undrafted,Undrafted,73,7.7,3.7,1.4,-6.1,0.052000000000000005,0.106,0.13699999999999998,0.557,0.086,2002-03 2979,Igor Rakocevic,MIN,25.0,187.96,83.46092800000001,None,Serbia and Montenegro,2000,2,51,42,1.9,0.4,0.8,10.2,0.021,0.059000000000000004,0.182,0.528,0.20199999999999999,2002-03 2980,Hubert Davis,DET,33.0,195.58,83.007336,North Carolina,USA,1992,1,20,43,1.8,0.8,0.7,-1.3,0.021,0.109,0.14,0.484,0.163,2002-03 2981,Howard Eisley,NYK,30.0,187.96,81.64656,Boston College,USA,1994,2,30,82,9.1,2.3,5.4,-2.8,0.012,0.087,0.171,0.552,0.308,2002-03 2982,Horace Grant,ORL,37.0,208.28,111.13004,Clemson,USA,1987,1,10,5,5.2,1.6,1.4,-7.1,0.027000000000000003,0.09,0.142,0.52,0.132,2002-03 2983,Hedo Turkoglu,SAC,24.0,208.28,99.79024,None,Turkey,2000,1,16,67,6.7,2.8,1.3,-1.6,0.032,0.134,0.185,0.509,0.121,2002-03 2984,Jake Voskuhl,PHX,25.0,210.82,111.13004,Connecticut,USA,2000,2,33,65,3.8,3.5,0.6,5.8,0.111,0.16,0.11800000000000001,0.604,0.055999999999999994,2002-03 2985,Jason Collier,HOU,25.0,213.36,117.93392,Georgia Tech,USA,2000,1,15,13,2.8,2.2,0.1,-5.4,0.11800000000000001,0.183,0.16899999999999998,0.488,0.018000000000000002,2002-03 2986,Jason Collins,NJN,24.0,213.36,117.93392,Stanford,USA,2001,1,18,81,5.7,4.5,1.1,7.6,0.08199999999999999,0.145,0.126,0.521,0.07,2002-03 2987,Jason Kidd,NJN,30.0,193.04,96.16150400000001,California,USA,1994,1,2,80,18.7,6.3,8.9,7.6,0.042,0.14800000000000002,0.255,0.526,0.40700000000000003,2002-03 2988,John Crotty,DEN,33.0,185.42,83.91452,Virginia,USA,Undrafted,Undrafted,Undrafted,12,3.4,1.3,2.4,-13.7,0.006999999999999999,0.08199999999999999,0.15,0.431,0.322,2002-03 2989,Amal McCaskill,ATL,29.0,210.82,111.13004,Marquette,USA,1996,2,49,11,1.0,2.0,0.5,-9.2,0.10400000000000001,0.231,0.135,0.293,0.11900000000000001,2002-03 2990,John Amaechi,UTA,32.0,208.28,122.46983999999999,Penn State,England,Undrafted,Undrafted,Undrafted,50,2.0,1.5,0.4,-2.6,0.066,0.132,0.16899999999999998,0.35100000000000003,0.073,2002-03 2991,Joel Przybilla,MIL,23.0,215.9,115.66596000000001,Minnesota,USA,2000,1,9,32,1.5,4.5,0.4,1.4,0.102,0.214,0.065,0.424,0.03,2002-03 2992,Joe Smith,MIN,27.0,208.28,102.0582,Maryland,USA,1995,1,1,54,7.5,5.0,0.7,3.6,0.11699999999999999,0.166,0.172,0.524,0.051,2002-03 2993,Joe Johnson,PHX,22.0,200.66,106.59411999999999,Arkansas,USA,2001,1,10,82,9.8,3.2,2.6,1.4,0.027999999999999997,0.10400000000000001,0.191,0.47200000000000003,0.151,2002-03 2994,Jiri Welsch,GSW,23.0,200.66,94.34713599999999,None,Czech Republic,2002,1,16,37,1.6,0.8,0.7,-0.4,0.055999999999999994,0.067,0.192,0.348,0.171,2002-03 2995,Jim Jackson,SAC,32.0,198.12,99.79024,Ohio State,USA,1992,1,4,63,7.7,4.2,1.9,2.4,0.071,0.139,0.19399999999999998,0.501,0.14800000000000002,2002-03 2996,Jeryl Sasser,ORL,24.0,198.12,90.7184,Southern Methodist,USA,2001,1,22,75,2.6,2.5,0.9,-11.2,0.067,0.14300000000000002,0.124,0.402,0.107,2002-03 2997,Jerry Stackhouse,WAS,28.0,198.12,98.88305600000001,North Carolina,USA,1995,1,3,70,21.5,3.7,4.5,0.1,0.027000000000000003,0.084,0.278,0.528,0.21600000000000003,2002-03 2998,Jerome Williams,TOR,30.0,205.74,93.439952,Georgetown,USA,1996,1,26,71,9.7,9.2,1.3,-4.5,0.107,0.212,0.147,0.525,0.067,2002-03 2999,Jerome Moiso,NOH,25.0,208.28,105.23334399999999,UCLA,France,2000,1,11,51,4.0,3.5,0.4,1.1,0.107,0.21600000000000003,0.17,0.542,0.063,2002-03 3000,Jerome James,SEA,27.0,215.9,123.377024,Florida A&M,USA,1998,2,36,51,5.4,4.2,0.5,2.1,0.124,0.20800000000000002,0.21600000000000003,0.506,0.064,2002-03 3001,Jermaine O'Neal,IND,24.0,210.82,109.769264,None,USA,1996,1,17,77,20.8,10.3,2.0,3.1,0.08199999999999999,0.225,0.264,0.539,0.105,2002-03 3002,Jermaine Jackson,ATL,27.0,195.58,92.532768,Detroit Mercy,USA,Undrafted,Undrafted,Undrafted,53,2.3,1.1,1.4,-11.2,0.04,0.081,0.14300000000000002,0.451,0.228,2002-03 3003,Jelani McCoy,TOR,25.0,208.28,115.66596000000001,UCLA,USA,1998,2,33,67,6.8,5.3,0.6,-12.5,0.076,0.225,0.185,0.507,0.057999999999999996,2002-03 3004,Jeff Trepagnier,DEN,23.0,193.04,90.7184,Southern California,USA,2001,2,35,8,5.6,2.0,0.8,-3.9,0.08199999999999999,0.094,0.218,0.522,0.105,2002-03 3005,Jeff McInnis,POR,28.0,193.04,81.19296800000001,North Carolina,USA,1996,2,37,75,5.8,1.3,2.3,-5.8,0.019,0.07200000000000001,0.183,0.47700000000000004,0.222,2002-03 3006,Jeff Foster,IND,26.0,210.82,109.769264,Texas State,USA,1999,1,21,77,2.1,3.6,0.7,0.9,0.157,0.237,0.133,0.39399999999999996,0.10099999999999999,2002-03 3007,Jay Williams,CHI,21.0,187.96,88.45044,Duke,USA,2002,1,2,75,9.5,2.6,4.7,-9.8,0.016,0.09300000000000001,0.209,0.47200000000000003,0.297,2002-03 3008,Jason Williams,MEM,27.0,185.42,86.18248,Florida,USA,1998,1,7,76,12.1,2.8,8.3,-3.6,0.012,0.085,0.201,0.501,0.39799999999999996,2002-03 3009,Jason Terry,ATL,25.0,187.96,81.64656,Arizona,USA,1999,1,10,81,17.2,3.4,7.4,-2.2,0.013999999999999999,0.085,0.22399999999999998,0.5489999999999999,0.33799999999999997,2002-03 3010,Jason Richardson,GSW,22.0,198.12,99.79024,Michigan State,USA,2001,1,5,82,15.6,4.6,3.0,-3.1,0.044000000000000004,0.10300000000000001,0.228,0.501,0.149,2002-03 3011,Guy Rucker,GSW,25.0,205.74,122.46983999999999,Iowa,USA,1999,Undrafted,Undrafted,3,0.0,0.3,0.3,-53.6,0.0,0.33299999999999996,0.0,0.0,0.5,2002-03 3012,DeSagana Diop,CLE,21.0,213.36,136.0776,None,Senegal,2001,1,8,80,1.5,2.7,0.5,-14.0,0.07200000000000001,0.185,0.10300000000000001,0.35600000000000004,0.069,2002-03 3013,Greg Ostertag,UTA,30.0,218.44,127.00576000000001,Kansas,USA,1995,1,28,81,5.4,6.2,0.7,8.3,0.121,0.185,0.125,0.531,0.042,2002-03 3014,Greg Buckner,PHI,26.0,193.04,95.25432,Clemson,USA,1998,2,53,75,6.0,2.9,1.3,3.5,0.055,0.11199999999999999,0.14800000000000002,0.519,0.10300000000000001,2002-03 3015,Eddy Curry,CHI,20.0,210.82,129.27372,None,USA,2001,1,4,81,10.5,4.4,0.5,-6.3,0.087,0.166,0.23600000000000002,0.607,0.040999999999999995,2002-03 3016,Eddie Robinson,CHI,27.0,205.74,95.25432,Central Oklahoma,USA,Undrafted,Undrafted,Undrafted,64,5.7,3.1,1.0,-4.1,0.063,0.10099999999999999,0.128,0.531,0.075,2002-03 3017,Eddie Jones,MIA,31.0,198.12,95.25432,Temple,USA,1994,1,10,47,18.5,4.8,3.7,-2.5,0.022000000000000002,0.129,0.23199999999999998,0.551,0.184,2002-03 3018,Eddie House,MIA,25.0,185.42,81.64656,Arizona State,USA,2000,2,37,55,7.5,1.8,1.6,-7.7,0.017,0.098,0.22699999999999998,0.447,0.168,2002-03 3019,Eddie Griffin,HOU,21.0,208.28,105.23334399999999,Seton Hall,USA,2001,1,7,77,8.6,6.0,1.1,4.1,0.084,0.187,0.195,0.462,0.077,2002-03 3020,Earl Watson,MEM,24.0,185.42,86.18248,UCLA,USA,2001,2,39,79,5.5,2.1,2.8,-1.3,0.039,0.098,0.17300000000000001,0.505,0.27699999999999997,2002-03 3021,Earl Boykins,GSW,27.0,165.1,60.327736,Eastern Michigan,USA,Undrafted,Undrafted,Undrafted,68,8.8,1.3,3.3,3.1,0.028999999999999998,0.044000000000000004,0.20600000000000002,0.5429999999999999,0.278,2002-03 3022,Drew Gooden,ORL,21.0,208.28,104.32616,Kansas,USA,2002,1,4,70,12.5,6.5,1.2,-3.7,0.1,0.17800000000000002,0.243,0.503,0.076,2002-03 3023,Doug Christie,SAC,33.0,198.12,92.98635999999999,Pepperdine,USA,1992,1,17,80,9.4,4.3,4.7,9.4,0.026000000000000002,0.107,0.126,0.59,0.185,2002-03 3024,Donyell Marshall,CHI,30.0,205.74,104.32616,Connecticut,USA,1994,1,4,78,13.4,9.0,1.8,-5.6,0.10800000000000001,0.21,0.213,0.513,0.099,2002-03 3025,Donny Marshall,NJN,30.0,200.66,104.32616,Connecticut,USA,1995,2,39,3,0.0,1.0,0.0,-64.4,0.0,0.429,0.3,0.0,0.0,2002-03 3026,Donnell Harvey,DEN,22.0,203.2,99.79024,Florida,USA,2000,1,22,77,7.9,5.3,1.3,-11.7,0.08900000000000001,0.212,0.21100000000000002,0.486,0.125,2002-03 3027,Don Reid,DET,29.0,203.2,113.398,Georgetown,USA,1995,2,58,1,1.0,0.0,0.0,-38.6,0.0,0.0,0.17,0.129,0.0,2002-03 3028,Dirk Nowitzki,DAL,25.0,213.36,111.13004,None,Germany,1998,1,9,80,25.1,9.9,3.0,12.9,0.028999999999999998,0.249,0.273,0.581,0.129,2002-03 3029,Dion Glover,ATL,24.0,195.58,103.418976,Georgia Tech,USA,1999,1,20,76,9.7,3.7,1.9,1.0,0.04,0.124,0.203,0.512,0.127,2002-03 3030,Dikembe Mutombo,NJN,37.0,218.44,120.20188,Georgetown,Congo,1991,1,4,24,5.8,6.4,0.8,9.7,0.121,0.205,0.163,0.445,0.055,2002-03 3031,Devin Brown,DEN,24.0,195.58,106.59411999999999,Texas-San Antonio,USA,Undrafted,Undrafted,Undrafted,10,3.0,1.8,0.7,-8.4,0.083,0.111,0.212,0.389,0.135,2002-03 3032,Devean George,LAL,25.0,203.2,102.0582,Augsburg,USA,1999,1,23,71,6.9,4.0,1.3,2.7,0.063,0.14300000000000002,0.158,0.485,0.092,2002-03 3033,Desmond Mason,MIL,25.0,195.58,100.697424,Oklahoma State,USA,2000,1,17,80,14.3,6.5,2.0,0.4,0.064,0.157,0.21100000000000002,0.502,0.099,2002-03 3034,Derrick Coleman,PHI,36.0,208.28,122.46983999999999,Syracuse,USA,1990,1,1,64,9.4,7.0,1.4,6.3,0.099,0.198,0.17300000000000001,0.525,0.08199999999999999,2002-03 3035,Derek Fisher,LAL,28.0,185.42,92.98635999999999,Arkansas-Little Rock,USA,1996,1,24,82,10.5,2.9,3.6,4.4,0.016,0.079,0.145,0.52,0.157,2002-03 3036,Derek Anderson,POR,28.0,195.58,88.45044,Kentucky,USA,1997,1,13,76,13.9,3.5,4.3,4.4,0.025,0.099,0.19399999999999998,0.556,0.204,2002-03 3037,Dean Oliver,GSW,24.0,180.34,79.3786,Iowa,USA,Undrafted,Undrafted,Undrafted,15,1.5,1.1,1.5,-9.1,0.08800000000000001,0.08800000000000001,0.184,0.33799999999999997,0.418,2002-03 3038,Eduardo Najera,DAL,26.0,203.2,106.59411999999999,Oklahoma,Mexico,2000,2,38,48,6.7,4.6,1.0,13.9,0.092,0.13,0.121,0.59,0.06,2002-03 3039,Greg Foster,TOR,34.0,210.82,108.86208,Texas-El Paso,USA,1990,2,35,29,4.2,3.5,0.4,-11.7,0.057999999999999996,0.174,0.14400000000000002,0.445,0.043,2002-03 3040,Efthimios Rentzias,PHI,27.0,210.82,113.398,None,Greece,1996,1,23,35,1.5,0.7,0.2,-12.0,0.07400000000000001,0.152,0.2,0.413,0.086,2002-03 3041,Elton Brand,LAC,24.0,203.2,120.20188,Duke,USA,1999,1,1,62,18.5,11.3,2.5,-2.7,0.131,0.187,0.223,0.5429999999999999,0.11900000000000001,2002-03 3042,Grant Long,BOS,37.0,205.74,108.86208,Eastern Michigan,USA,1988,2,33,41,1.8,2.0,0.6,-4.2,0.057999999999999996,0.138,0.098,0.449,0.08900000000000001,2002-03 3043,Grant Hill,ORL,30.0,203.2,102.0582,Duke,USA,1994,1,3,29,14.5,7.1,4.2,4.6,0.055,0.226,0.242,0.568,0.24100000000000002,2002-03 3044,Gordan Giricek,ORL,26.0,198.12,97.975872,None,Croatia,1999,2,40,76,12.3,3.1,1.8,-3.6,0.019,0.105,0.212,0.529,0.10800000000000001,2002-03 3045,Glenn Robinson,ATL,30.0,200.66,104.32616,Purdue,USA,1994,1,1,69,20.8,6.6,3.0,-3.8,0.04,0.156,0.285,0.519,0.15,2002-03 3046,Glen Rice,HOU,36.0,203.2,99.79024,Michigan,USA,1989,1,4,62,9.0,2.5,1.0,-1.1,0.021,0.092,0.166,0.563,0.075,2002-03 3047,Gilbert Arenas,GSW,21.0,190.5,86.636072,Arizona,USA,2001,2,30,82,18.3,4.7,6.3,-1.8,0.036000000000000004,0.105,0.245,0.54,0.294,2002-03 3048,Gerald Wallace,SAC,20.0,200.66,97.52228000000001,Alabama,USA,2001,1,25,47,4.7,2.7,0.5,3.7,0.07200000000000001,0.162,0.198,0.51,0.065,2002-03 3049,George Lynch,NOH,32.0,203.2,106.59411999999999,North Carolina,USA,1993,1,12,81,4.5,4.4,1.3,4.8,0.105,0.166,0.133,0.46399999999999997,0.109,2002-03 3050,Gary Trent,MIN,28.0,203.2,113.398,Ohio,USA,1995,1,11,80,6.0,3.6,1.0,-2.7,0.1,0.165,0.185,0.5489999999999999,0.105,2002-03 3051,Gary Payton,MIL,34.0,193.04,81.64656,Oregon State,USA,1990,1,2,80,20.4,4.2,8.3,-1.0,0.027999999999999997,0.095,0.259,0.504,0.366,2002-03 3052,Elden Campbell,SEA,34.0,213.36,126.552168,Clemson,USA,1990,1,27,56,6.1,3.2,0.9,4.9,0.065,0.18,0.228,0.483,0.111,2002-03 3053,Fred Jones,IND,24.0,187.96,98.88305600000001,Oregon,USA,2002,1,14,19,1.2,0.5,0.3,-4.6,0.039,0.044000000000000004,0.128,0.446,0.078,2002-03 3054,Frank Williams,NYK,23.0,190.5,92.98635999999999,Illinois,USA,2002,1,25,21,1.3,0.9,1.6,-29.2,0.02,0.11900000000000001,0.146,0.39299999999999996,0.374,2002-03 3055,Flip Murray,SEA,23.0,193.04,86.18248,Shaw,USA,2002,2,41,14,1.9,0.3,0.4,-4.1,0.0,0.068,0.316,0.391,0.14300000000000002,2002-03 3056,Evan Eschmeyer,DAL,28.0,210.82,115.66596000000001,Northwestern,USA,1999,2,34,17,1.0,1.7,0.4,-6.1,0.073,0.14300000000000002,0.08900000000000001,0.409,0.07400000000000001,2002-03 3057,Etan Thomas,WAS,25.0,208.28,117.93392,Syracuse,USA,2000,1,12,38,4.8,4.3,0.1,0.6,0.14400000000000002,0.21899999999999997,0.17600000000000002,0.55,0.01,2002-03 3058,Ervin Johnson,MIL,35.0,210.82,115.66596000000001,New Orleans,USA,1993,1,23,69,2.2,4.3,0.3,2.2,0.11599999999999999,0.174,0.077,0.49200000000000005,0.03,2002-03 3059,Erick Strickland,IND,29.0,190.5,95.25432,Nebraska,USA,Undrafted,Undrafted,Undrafted,71,6.5,2.0,2.9,2.5,0.021,0.102,0.18600000000000003,0.547,0.27899999999999997,2002-03 3060,Erick Dampier,GSW,27.0,210.82,120.20188,Mississippi State,USA,1996,1,10,82,8.2,6.6,0.7,-4.3,0.133,0.156,0.158,0.5429999999999999,0.045,2002-03 3061,Eric Williams,BOS,30.0,203.2,99.79024,Providence,USA,1995,1,14,82,9.1,4.7,1.7,1.9,0.067,0.11800000000000001,0.155,0.5379999999999999,0.10300000000000001,2002-03 3062,Eric Snow,PHI,30.0,190.5,92.532768,Michigan State,USA,1995,2,43,82,12.9,3.7,6.6,1.0,0.026000000000000002,0.08900000000000001,0.168,0.546,0.278,2002-03 3063,Eric Piatkowski,LAC,32.0,198.12,97.52228000000001,Nebraska,USA,1994,1,15,62,9.7,2.5,1.1,0.2,0.038,0.091,0.184,0.601,0.087,2002-03 3064,Emanual Davis,ATL,34.0,195.58,88.45044,Delaware State,USA,Undrafted,Undrafted,Undrafted,24,3.7,1.8,1.5,-6.0,0.018000000000000002,0.12300000000000001,0.16699999999999998,0.45,0.188,2002-03 3065,Fred Hoiberg,CHI,30.0,195.58,95.25432,Iowa State,USA,1995,2,52,63,2.3,2.2,1.1,0.1,0.016,0.17600000000000002,0.098,0.486,0.131,2002-03 3066,Adrian Griffin,HOU,29.0,195.58,104.32616,Seton Hall,USA,Undrafted,Undrafted,Undrafted,19,0.6,1.0,0.5,-8.4,0.01,0.16699999999999998,0.09300000000000001,0.278,0.132,2003-04 3067,Adonal Foyle,GSW,29.0,208.28,120.20188,Colgate,St. Vincent & Grenadines,1997,1,8,44,3.1,3.8,0.4,-5.2,0.10400000000000001,0.222,0.135,0.47100000000000003,0.05,2003-04 3068,Richard Jefferson,NJN,24.0,200.66,100.697424,Arizona,USA,2001,1,13,82,18.5,5.7,3.8,4.8,0.040999999999999995,0.134,0.22699999999999998,0.573,0.18,2003-04 3069,Aaron McKie,PHI,31.0,195.58,94.800728,Temple,USA,1994,1,17,75,9.2,3.4,2.6,-1.7,0.025,0.11800000000000001,0.163,0.55,0.16899999999999998,2003-04 3070,Al Harrington,IND,24.0,205.74,113.398,None,USA,1998,1,25,79,13.3,6.4,1.7,1.8,0.078,0.175,0.231,0.514,0.107,2003-04 3071,Aaron Williams,NJN,32.0,205.74,108.86208,Xavier,USA,Undrafted,Undrafted,Undrafted,72,6.3,4.1,1.1,-2.7,0.08800000000000001,0.171,0.175,0.5489999999999999,0.109,2003-04 3072,Alan Henderson,ATL,31.0,205.74,108.86208,Indiana,USA,1995,1,16,6,4.0,3.5,0.3,-19.6,0.196,0.175,0.188,0.508,0.055999999999999994,2003-04 3073,Alex Garcia,SAS,24.0,190.5,88.45044,None,USA,Undrafted,Undrafted,Undrafted,2,1.5,0.0,0.0,11.9,0.0,0.0,0.282,0.19,0.0,2003-04 3074,Allan Houston,NYK,33.0,198.12,90.7184,Tennessee,USA,1993,1,11,50,18.5,2.4,2.0,-0.1,0.013000000000000001,0.064,0.25,0.539,0.10099999999999999,2003-04 3075,Mo Williams,UTA,21.0,185.42,83.91452,Alabama,USA,2003,2,47,57,5.0,1.3,1.3,-6.6,0.035,0.08,0.22399999999999998,0.433,0.196,2003-04 3076,Mitchell Butler,WAS,33.0,195.58,95.25432,UCLA,USA,Undrafted,Undrafted,Undrafted,41,3.3,1.7,0.8,1.7,0.048,0.092,0.126,0.498,0.09300000000000001,2003-04 3077,Milt Palacio,TOR,26.0,190.5,88.45044,Colorado State,Belize,Undrafted,Undrafted,Undrafted,59,4.4,1.7,3.1,-7.2,0.015,0.084,0.16899999999999998,0.392,0.285,2003-04 3078,Mikki Moore,UTA,28.0,213.36,102.0582,Nebraska,USA,Undrafted,Undrafted,Undrafted,32,4.1,2.6,0.6,-3.0,0.09,0.179,0.161,0.568,0.09699999999999999,2003-04 3079,Mike Wilks,HOU,25.0,180.34,81.64656,Rice,USA,Undrafted,Undrafted,Undrafted,26,1.9,0.6,0.7,6.1,0.031,0.086,0.17600000000000002,0.606,0.22399999999999998,2003-04 3080,Mike Miller,MEM,24.0,203.2,98.88305600000001,Florida,USA,2000,1,5,65,11.1,3.3,3.6,3.5,0.027000000000000003,0.114,0.19899999999999998,0.532,0.21,2003-04 3081,Mike James,DET,29.0,187.96,85.275296,Duquesne,USA,Undrafted,Undrafted,Undrafted,81,9.3,2.9,4.2,2.5,0.015,0.107,0.175,0.528,0.254,2003-04 3082,Mike Dunleavy,GSW,23.0,205.74,104.32616,Duke,USA,2002,1,3,75,11.7,5.9,2.9,-3.9,0.040999999999999995,0.17,0.183,0.547,0.161,2003-04 3083,Mike Bibby,SAC,26.0,185.42,86.18248,Arizona,USA,1998,1,2,82,18.4,3.4,5.4,5.5,0.026000000000000002,0.077,0.22899999999999998,0.564,0.24100000000000002,2003-04 3084,Mickael Pietrus,GSW,22.0,198.12,95.25432,None,France,2003,1,11,53,5.3,2.2,0.5,6.4,0.069,0.105,0.184,0.528,0.06,2003-04 3085,Michael Sweetney,NYK,21.0,203.2,117.93392,Georgetown,USA,2003,1,9,42,4.3,3.7,0.3,3.2,0.16899999999999998,0.212,0.184,0.544,0.049,2003-04 3086,Michael Stewart,BOS,29.0,208.28,104.32616,California,USA,Undrafted,Undrafted,Undrafted,25,0.5,1.2,0.0,-15.9,0.057999999999999996,0.168,0.05,0.47200000000000003,0.0,2003-04 3087,Michael Ruffin,UTA,27.0,203.2,111.58363200000001,Tulsa,USA,1999,2,32,41,2.2,5.0,1.0,-5.7,0.127,0.235,0.11199999999999999,0.344,0.092,2003-04 3088,Michael Redd,MIL,24.0,198.12,97.52228000000001,Ohio State,USA,2000,2,43,82,21.7,5.0,2.3,-1.3,0.044000000000000004,0.10800000000000001,0.26,0.544,0.11199999999999999,2003-04 3089,Michael Olowokandi,MIN,29.0,213.36,122.46983999999999,Pacific,Nigeria,1998,1,1,43,6.5,5.7,0.6,10.3,0.10400000000000001,0.18,0.192,0.446,0.040999999999999995,2003-04 3090,Michael Finley,DAL,31.0,200.66,102.0582,Wisconsin,USA,1995,1,21,72,18.6,4.5,2.9,5.2,0.03,0.098,0.21100000000000002,0.539,0.11699999999999999,2003-04 3091,Michael Doleac,DEN,27.0,210.82,118.841104,Utah,USA,1998,1,12,72,4.5,3.7,0.6,-4.8,0.094,0.201,0.17600000000000002,0.47100000000000003,0.078,2003-04 3092,Michael Curry,TOR,35.0,195.58,95.25432,Georgia Southern,USA,Undrafted,Undrafted,Undrafted,70,2.9,1.2,0.8,-6.0,0.021,0.06,0.111,0.46,0.083,2003-04 3093,Michael Bradley,ATL,25.0,208.28,102.0582,Villanova,USA,2001,1,17,16,0.9,1.4,0.1,-7.5,0.071,0.207,0.114,0.47200000000000003,0.019,2003-04 3094,Metta World Peace,IND,24.0,200.66,111.58363200000001,St. John's (NY),USA,1999,1,16,73,18.3,5.3,3.7,8.4,0.043,0.125,0.26,0.511,0.184,2003-04 3095,Mengke Bateer,TOR,28.0,210.82,131.54168,None,China,Undrafted,Undrafted,Undrafted,7,1.1,1.1,0.1,-9.8,0.152,0.094,0.111,0.5710000000000001,0.045,2003-04 3096,Melvin Ely,LAC,26.0,208.28,118.38751200000002,Fresno State,USA,2002,1,12,42,3.7,2.4,0.5,-1.0,0.106,0.11900000000000001,0.17,0.45799999999999996,0.075,2003-04 3097,Mehmet Okur,DET,25.0,210.82,112.94440800000001,None,Turkey,2001,2,37,71,9.6,5.9,1.0,7.8,0.11599999999999999,0.19,0.214,0.5379999999999999,0.081,2003-04 3098,Moochie Norris,NYK,30.0,187.96,85.275296,West Florida,USA,1996,2,33,66,3.5,1.0,1.8,-1.9,0.015,0.08199999999999999,0.17800000000000002,0.47100000000000003,0.258,2003-04 3099,Maurice Taylor,HOU,27.0,205.74,115.66596000000001,Michigan,USA,1997,1,14,75,11.5,5.1,1.4,-1.3,0.079,0.142,0.231,0.512,0.105,2003-04 3100,Morris Peterson,TOR,26.0,200.66,97.52228000000001,Michigan State,USA,2000,1,21,82,8.3,3.2,1.4,-1.5,0.019,0.122,0.158,0.539,0.095,2003-04 3101,Ndudi Ebi,MIN,20.0,205.74,90.7184,None,USA,2003,1,26,17,0.8,0.2,0.2,-12.8,0.07400000000000001,0.027999999999999997,0.298,0.41200000000000003,0.2,2003-04 3102,Raja Bell,UTA,27.0,195.58,95.25432,Florida International,U.S. Virgin Islands,Undrafted,Undrafted,Undrafted,82,11.2,2.9,1.3,-3.1,0.037000000000000005,0.113,0.23600000000000002,0.5,0.107,2003-04 3103,Rafer Alston,MIA,27.0,187.96,79.3786,Fresno State,USA,1998,2,39,82,10.2,2.8,4.5,1.3,0.012,0.092,0.174,0.509,0.252,2003-04 3104,Raef LaFrentz,BOS,28.0,210.82,111.13004,Kansas,USA,1998,1,3,17,7.8,4.6,1.4,10.7,0.1,0.161,0.19,0.509,0.115,2003-04 3105,Qyntel Woods,POR,23.0,203.2,100.243832,Northeast Mississippi Community College,USA,2002,1,21,62,3.6,2.2,0.7,-7.1,0.081,0.16399999999999998,0.22,0.425,0.121,2003-04 3106,Quincy Lewis,MIN,27.0,200.66,97.52228000000001,Minnesota,USA,1999,1,19,14,1.1,0.5,0.1,-28.4,0.018000000000000002,0.105,0.175,0.4,0.067,2003-04 3107,Quentin Richardson,LAC,24.0,195.58,107.95489599999999,DePaul,USA,2000,1,18,65,17.2,6.4,2.1,-4.8,0.068,0.131,0.24,0.484,0.10800000000000001,2003-04 3108,Primoz Brezec,IND,24.0,215.9,114.30518400000001,None,Slovenia,2000,1,27,18,1.6,0.8,0.2,-10.8,0.09300000000000001,0.16399999999999998,0.24600000000000002,0.489,0.1,2003-04 3109,Predrag Drobnjak,LAC,28.0,210.82,123.377024,None,Yugoslavia,1997,2,48,61,6.3,3.2,0.6,-13.3,0.061,0.175,0.217,0.45799999999999996,0.078,2003-04 3110,Popeye Jones,GSW,34.0,203.2,120.20188,Murray State,USA,1992,2,41,5,0.0,0.2,0.0,-34.0,0.1,0.0,0.08800000000000001,0.0,0.0,2003-04 3111,Peja Stojakovic,SAC,27.0,208.28,103.872568,None,Serbia and Montenegro,1996,1,14,81,24.2,6.3,2.1,6.1,0.033,0.141,0.24,0.624,0.09,2003-04 3112,Paul Shirley,CHI,26.0,208.28,104.32616,Iowa State,USA,Undrafted,Undrafted,Undrafted,7,3.0,2.3,0.6,-13.8,0.10400000000000001,0.121,0.179,0.43200000000000005,0.098,2003-04 3113,Paul Pierce,BOS,26.0,198.12,104.32616,Kansas,USA,1998,1,10,80,23.0,6.5,5.1,-0.1,0.026000000000000002,0.163,0.304,0.517,0.249,2003-04 3114,Paul Grant,UTA,30.0,213.36,111.13004,Wisconsin,USA,1997,1,20,10,2.5,1.7,0.3,-14.5,0.083,0.13,0.165,0.47100000000000003,0.063,2003-04 3115,Pau Gasol,MEM,23.0,213.36,108.86208,None,Spain,2001,1,3,78,17.7,7.7,2.5,2.3,0.095,0.18,0.267,0.542,0.14300000000000002,2003-04 3116,Pat Garrity,ORL,27.0,205.74,107.95489599999999,Notre Dame,USA,1998,1,19,2,1.0,0.0,0.5,-38.7,0.0,0.0,0.067,0.33299999999999996,0.083,2003-04 3117,P.J. Brown,NOH,34.0,210.82,108.40848799999999,Louisiana Tech,USA,1992,2,29,80,10.5,8.6,1.9,1.4,0.09699999999999999,0.18600000000000003,0.149,0.527,0.09699999999999999,2003-04 3118,Othella Harrington,NYK,30.0,205.74,106.59411999999999,Georgetown,USA,1996,2,30,56,4.6,3.2,0.5,-4.4,0.079,0.16399999999999998,0.163,0.546,0.059000000000000004,2003-04 3119,Omar Cook,POR,22.0,185.42,86.18248,St. John's (NY),USA,2001,2,31,17,0.8,0.4,1.4,-8.5,0.024,0.027000000000000003,0.12300000000000001,0.259,0.282,2003-04 3120,Oliver Miller,MIN,34.0,205.74,142.88148,Arkansas,USA,1992,1,22,48,2.5,2.7,0.8,0.6,0.115,0.18,0.135,0.5489999999999999,0.115,2003-04 3121,Olden Polynice,LAC,39.0,208.28,113.398,Virginia,USA,1987,1,8,2,0.0,1.0,0.5,1.8,0.111,0.1,0.172,0.0,0.14300000000000002,2003-04 3122,Nikoloz Tskitishvili,DEN,21.0,213.36,102.0582,None,Georgia,2002,1,5,39,2.7,1.6,0.3,-6.6,0.075,0.149,0.215,0.39299999999999996,0.057,2003-04 3123,Nick Van Exel,GSW,32.0,185.42,88.45044,Cincinnati,USA,1993,2,37,39,12.6,2.7,5.3,-7.1,0.013999999999999999,0.079,0.21899999999999997,0.469,0.281,2003-04 3124,Nene,DEN,21.0,210.82,117.93392,None,Brazil,2002,1,7,77,11.8,6.5,2.2,4.9,0.07200000000000001,0.161,0.171,0.578,0.10400000000000001,2003-04 3125,Nazr Mohammed,NYK,26.0,208.28,113.398,Kentucky,USA,1998,1,29,80,7.4,5.9,0.5,-6.4,0.126,0.21600000000000003,0.182,0.542,0.039,2003-04 3126,Randy Livingston,LAC,29.0,193.04,94.800728,Louisiana State,USA,1996,2,42,4,2.0,1.8,1.0,-29.2,0.037000000000000005,0.09300000000000001,0.157,0.316,0.182,2003-04 3127,Maurice Carter,NOH,27.0,195.58,95.25432,Louisiana State,USA,Undrafted,Undrafted,Undrafted,10,4.2,1.1,0.4,1.8,0.022000000000000002,0.08900000000000001,0.222,0.479,0.07,2003-04 3128,Matt Carroll,SAS,23.0,198.12,96.16150400000001,Notre Dame,USA,Undrafted,Undrafted,Undrafted,16,1.2,0.4,0.1,-13.7,0.015,0.078,0.156,0.51,0.05,2003-04 3129,Lee Nailon,CLE,29.0,205.74,107.95489599999999,Texas Christian,USA,1999,2,43,57,6.0,2.5,0.7,-14.7,0.09300000000000001,0.122,0.22699999999999998,0.484,0.09,2003-04 3130,Leandro Barbosa,PHX,21.0,190.5,79.83219199999998,None,Brazil,2003,1,28,70,7.9,1.8,2.4,-4.0,0.018000000000000002,0.075,0.183,0.5529999999999999,0.175,2003-04 3131,LeBron James,CLE,19.0,203.2,108.86208,None,USA,2003,1,1,79,20.9,5.5,5.9,-2.6,0.035,0.11699999999999999,0.28,0.488,0.268,2003-04 3132,Latrell Sprewell,MIN,33.0,195.58,88.45044,Alabama,USA,1992,1,24,82,16.8,3.8,3.5,7.7,0.022000000000000002,0.08900000000000001,0.235,0.493,0.152,2003-04 3133,Larry Hughes,WAS,25.0,195.58,83.46092800000001,Saint Louis,USA,1998,1,8,61,18.8,5.3,2.4,-5.5,0.049,0.127,0.27699999999999997,0.496,0.14400000000000002,2003-04 3134,Lamond Murray,TOR,31.0,200.66,107.047712,California,USA,1994,1,7,33,6.0,2.7,0.8,-8.9,0.031,0.17600000000000002,0.25,0.428,0.121,2003-04 3135,Lamar Odom,MIA,24.0,208.28,102.0582,Rhode Island,USA,1999,1,4,80,17.1,9.7,4.1,0.5,0.062,0.24,0.24600000000000002,0.516,0.203,2003-04 3136,Kyle Korver,PHI,23.0,200.66,95.25432,Creighton,USA,2003,2,51,74,4.5,1.5,0.5,-1.9,0.039,0.109,0.201,0.489,0.08800000000000001,2003-04 3137,Kwame Brown,WAS,22.0,210.82,112.490816,None,USA,2001,1,1,74,10.9,7.4,1.5,-4.2,0.091,0.19,0.175,0.547,0.087,2003-04 3138,Kurt Thomas,NYK,31.0,205.74,106.59411999999999,Texas Christian,USA,1995,1,10,80,11.1,8.3,1.9,-0.4,0.067,0.22699999999999998,0.185,0.503,0.098,2003-04 3139,Kobe Bryant,LAL,25.0,198.12,99.79024,None,USA,1996,1,13,65,24.0,5.5,5.1,6.2,0.047,0.11900000000000001,0.28600000000000003,0.551,0.237,2003-04 3140,Kirk Penney,MIA,23.0,195.58,99.79024,Wisconsin,USA,Undrafted,Undrafted,Undrafted,2,1.5,0.5,0.5,-9.0,0.0,0.059000000000000004,0.218,0.25,0.083,2003-04 3141,Kirk Hinrich,CHI,23.0,190.5,86.18248,Kansas,USA,2003,1,7,76,12.0,3.4,6.8,-4.6,0.017,0.08900000000000001,0.183,0.51,0.32,2003-04 3142,Keyon Dooling,LAC,24.0,190.5,86.18248,Missouri,USA,2000,1,10,58,6.2,1.4,2.2,-8.4,0.017,0.062,0.18100000000000002,0.45799999999999996,0.198,2003-04 3143,Kevin Willis,SAS,41.0,213.36,111.13004,Michigan State,USA,1984,1,11,48,3.4,2.0,0.2,-0.9,0.10800000000000001,0.182,0.244,0.491,0.059000000000000004,2003-04 3144,Kevin Ollie,CLE,31.0,187.96,88.45044,Connecticut,USA,Undrafted,Undrafted,Undrafted,82,4.2,2.1,2.9,-0.9,0.019,0.11800000000000001,0.138,0.51,0.276,2003-04 3145,Kevin Garnett,MIN,28.0,210.82,108.86208,None,USA,1995,1,5,82,24.2,13.9,5.0,10.4,0.092,0.298,0.294,0.547,0.233,2003-04 3146,Kerry Kittles,NJN,30.0,195.58,81.64656,Villanova,USA,1996,1,8,82,13.1,4.0,2.5,4.5,0.023,0.11,0.182,0.526,0.126,2003-04 3147,Keon Clark,UTA,29.0,210.82,100.243832,Nevada-Las Vegas,USA,1998,1,13,2,2.0,3.5,0.5,24.6,0.038,0.222,0.102,0.33299999999999996,0.063,2003-04 3148,Kenny Thomas,PHI,26.0,200.66,111.13004,New Mexico,USA,1999,1,22,74,13.6,10.1,1.5,-3.3,0.11699999999999999,0.213,0.19699999999999998,0.527,0.077,2003-04 3149,Kenny Anderson,IND,33.0,185.42,76.203456,Georgia Tech,USA,1991,1,2,44,6.0,1.8,2.8,2.9,0.024,0.081,0.166,0.473,0.22899999999999998,2003-04 3150,Kendrick Perkins,BOS,19.0,208.28,127.00576000000001,None,USA,2003,1,27,10,2.2,1.4,0.3,21.3,0.156,0.29,0.281,0.58,0.115,2003-04 3151,Kendall Gill,CHI,36.0,195.58,97.975872,Illinois,USA,1990,1,5,56,9.6,3.4,1.6,-9.8,0.046,0.1,0.21899999999999997,0.44299999999999995,0.122,2003-04 3152,Leon Smith,SEA,23.0,208.28,106.59411999999999,None,USA,1999,1,29,1,2.0,2.0,0.0,16.7,0.25,0.25,0.28600000000000003,0.5,0.0,2003-04 3153,Matt Harpring,UTA,28.0,200.66,104.779752,Georgia Tech,USA,1998,1,15,31,16.2,8.0,2.0,1.1,0.1,0.171,0.223,0.524,0.102,2003-04 3154,Lindsey Hunter,DET,33.0,187.96,88.45044,Jackson State,USA,1993,1,10,33,3.5,2.0,2.6,10.3,0.024,0.09300000000000001,0.13,0.39899999999999997,0.21600000000000003,2003-04 3155,Lonny Baxter,WAS,25.0,203.2,117.93392,Maryland,USA,2002,2,43,62,4.0,3.0,0.3,-7.1,0.099,0.179,0.174,0.518,0.05,2003-04 3156,Matt Barnes,LAC,24.0,200.66,106.59411999999999,UCLA,USA,2002,2,45,38,4.5,4.0,1.3,-13.4,0.08199999999999999,0.161,0.129,0.519,0.11599999999999999,2003-04 3157,Mateen Cleaves,CLE,26.0,187.96,95.25432,Michigan State,USA,2000,1,14,4,3.8,1.8,4.8,-11.5,0.012,0.08,0.13699999999999998,0.314,0.257,2003-04 3158,Marquis Daniels,DAL,23.0,198.12,90.7184,Auburn,USA,Undrafted,Undrafted,Undrafted,56,8.5,2.6,2.1,2.5,0.071,0.086,0.20800000000000002,0.536,0.168,2003-04 3159,Marko Jaric,LAC,25.0,195.58,98.429464,None,Serbia,2000,2,30,58,8.5,3.0,4.8,-4.6,0.028999999999999998,0.087,0.159,0.475,0.258,2003-04 3160,Mark Pope,DEN,31.0,208.28,106.59411999999999,Kentucky,USA,1996,2,52,4,0.5,0.8,0.0,-51.9,0.0,0.14300000000000002,0.11900000000000001,0.41,0.0,2003-04 3161,Mark Madsen,MIN,28.0,205.74,111.13004,Stanford,USA,2000,1,29,72,3.6,3.8,0.4,6.8,0.125,0.128,0.113,0.506,0.034,2003-04 3162,Mark Jackson,HOU,39.0,190.5,88.45044,St. John's (NY),USA,1987,1,18,42,2.5,1.7,2.8,-0.2,0.021,0.12300000000000001,0.142,0.44,0.336,2003-04 3163,Mark Blount,BOS,28.0,213.36,113.398,Pittsburgh,USA,1997,2,54,82,10.3,7.2,0.9,0.4,0.1,0.17800000000000002,0.161,0.601,0.053,2003-04 3164,Marcus Haislip,MIL,23.0,208.28,104.32616,Tennessee,USA,2002,1,13,31,3.0,1.7,0.1,2.2,0.08900000000000001,0.128,0.16,0.539,0.024,2003-04 3165,Marcus Fizer,CHI,25.0,203.2,117.93392,Iowa State,USA,2000,1,4,46,7.8,4.4,0.9,-6.5,0.083,0.225,0.266,0.447,0.106,2003-04 3166,Marcus Camby,DEN,30.0,210.82,102.0582,Massachusetts,USA,1996,1,2,72,8.6,10.1,1.8,1.8,0.109,0.276,0.14300000000000002,0.511,0.092,2003-04 3167,Marcus Banks,BOS,22.0,187.96,90.7184,Nevada-Las Vegas,USA,2003,1,13,81,5.9,1.6,2.2,-2.8,0.026000000000000002,0.085,0.20600000000000002,0.48,0.226,2003-04 3168,Marc Jackson,PHI,29.0,208.28,114.758776,Temple,USA,1997,2,37,22,9.4,5.7,0.8,-4.1,0.085,0.165,0.182,0.498,0.054000000000000006,2003-04 3169,Manu Ginobili,SAS,26.0,198.12,95.25432,None,Argentina,1999,2,57,77,12.8,4.5,3.8,8.7,0.043,0.128,0.217,0.536,0.218,2003-04 3170,Mamadou N'diaye,ATL,29.0,213.36,115.66596000000001,Auburn,Senegal,2000,1,26,28,3.5,4.0,0.0,-3.2,0.125,0.214,0.13699999999999998,0.516,0.0,2003-04 3171,Malik Rose,SAS,29.0,200.66,115.66596000000001,Drexel,USA,1996,2,44,67,7.9,4.8,1.0,5.3,0.10099999999999999,0.185,0.22399999999999998,0.526,0.1,2003-04 3172,Malik Allen,MIA,26.0,208.28,115.66596000000001,Villanova,USA,Undrafted,Undrafted,Undrafted,45,4.2,2.6,0.4,-3.6,0.08,0.14400000000000002,0.187,0.449,0.049,2003-04 3173,Maciej Lampe,PHX,19.0,210.82,108.86208,None,Poland,2003,2,30,21,4.6,2.1,0.4,-11.8,0.048,0.16699999999999998,0.218,0.512,0.069,2003-04 3174,Luke Walton,LAL,24.0,203.2,106.59411999999999,Arizona,USA,2003,2,32,72,2.4,1.8,1.6,1.4,0.061,0.15,0.139,0.505,0.24600000000000002,2003-04 3175,Luke Ridnour,SEA,23.0,187.96,79.3786,Oregon,USA,2003,1,14,69,5.5,1.6,2.4,-7.1,0.036000000000000004,0.081,0.193,0.496,0.266,2003-04 3176,Lucious Harris,NJN,33.0,195.58,92.98635999999999,Long Beach State,USA,1993,2,28,69,6.9,2.0,2.0,3.0,0.032,0.078,0.175,0.48100000000000004,0.154,2003-04 3177,Lorenzen Wright,MEM,28.0,210.82,108.86208,Memphis,USA,1996,1,7,65,9.4,6.8,1.1,0.8,0.095,0.209,0.19699999999999998,0.474,0.07200000000000001,2003-04 3178,Loren Woods,MIA,26.0,218.44,118.38751200000002,Arizona,USA,2001,2,45,38,3.2,3.5,0.3,-3.8,0.14800000000000002,0.17300000000000001,0.139,0.503,0.036000000000000004,2003-04 3179,Linton Johnson,CHI,24.0,203.2,92.98635999999999,Tulane,USA,Undrafted,Undrafted,Undrafted,41,4.2,4.5,0.7,-10.3,0.079,0.188,0.153,0.39399999999999996,0.065,2003-04 3180,Rashard Lewis,SEA,24.0,208.28,97.52228000000001,None,USA,1998,2,32,80,17.8,6.5,2.2,-0.2,0.053,0.151,0.233,0.527,0.105,2003-04 3181,Rasheed Wallace,DET,29.0,210.82,104.32616,North Carolina,USA,1995,1,4,68,16.0,6.8,2.3,3.9,0.051,0.17300000000000001,0.23399999999999999,0.51,0.115,2003-04 3182,Rasho Nesterovic,SAS,28.0,213.36,112.490816,None,Slovenia,1998,1,17,82,8.7,7.7,1.4,6.7,0.124,0.17600000000000002,0.17,0.473,0.08199999999999999,2003-04 3183,Scottie Pippen,CHI,38.0,203.2,103.418976,Central Arkansas,USA,1987,1,5,23,5.9,3.0,2.2,-22.0,0.05,0.14,0.195,0.44799999999999995,0.226,2003-04 3184,Sean Lampley,GSW,24.0,198.12,96.615096,California,USA,2001,2,44,10,3.4,1.1,0.2,21.8,0.045,0.14800000000000002,0.213,0.672,0.043,2003-04 3185,Sean Rooks,ORL,34.0,208.28,117.93392,Arizona,USA,1992,2,30,55,2.6,1.8,0.5,-4.9,0.045,0.14800000000000002,0.142,0.42100000000000004,0.076,2003-04 3186,Shammond Williams,NOH,29.0,185.42,91.171992,North Carolina,USA,1998,2,34,53,4.8,1.1,2.2,-8.1,0.013000000000000001,0.079,0.185,0.495,0.27899999999999997,2003-04 3187,Shandon Anderson,NYK,30.0,198.12,95.25432,Georgia,USA,1996,2,54,80,7.9,2.8,1.5,-4.3,0.032,0.096,0.177,0.5,0.10300000000000001,2003-04 3188,Shane Battier,MEM,25.0,203.2,99.79024,Duke,USA,2001,1,6,79,8.5,3.8,1.3,4.2,0.057999999999999996,0.114,0.152,0.544,0.085,2003-04 3189,Shane Heal,SAS,33.0,182.88,81.64656,None,USA,Undrafted,Undrafted,Undrafted,6,3.7,0.7,0.8,11.9,0.015,0.042,0.198,0.42,0.139,2003-04 3190,Shaquille O'Neal,LAL,32.0,215.9,154.22128,Louisiana State,USA,1992,1,1,67,21.5,11.5,2.9,8.3,0.114,0.23199999999999998,0.26,0.578,0.14,2003-04 3191,Shareef Abdur-Rahim,POR,27.0,205.74,111.13004,California,USA,1996,1,3,85,16.3,7.5,2.0,-2.2,0.08199999999999999,0.183,0.248,0.557,0.126,2003-04 3192,Shawn Bradley,DAL,32.0,228.6,124.7378,Brigham Young,USA,1993,1,2,66,3.3,2.6,0.3,5.1,0.1,0.14800000000000002,0.134,0.523,0.038,2003-04 3193,Shawn Marion,PHX,26.0,200.66,97.52228000000001,Nevada-Las Vegas,USA,1999,1,9,79,19.0,9.3,2.7,-2.9,0.07400000000000001,0.18899999999999997,0.22699999999999998,0.513,0.11599999999999999,2003-04 3194,Slava Medvedenko,LAL,25.0,208.28,113.398,None,Ukraine,Undrafted,Undrafted,Undrafted,68,8.3,5.0,0.8,-0.8,0.113,0.16,0.203,0.479,0.068,2003-04 3195,Slavko Vranes,POR,21.0,226.06,124.7378,None,USA,2003,2,39,1,0.0,0.0,0.0,-10.0,0.0,0.0,0.145,0.0,0.0,2003-04 3196,Speedy Claxton,GSW,26.0,180.34,77.11064,Hofstra,USA,2000,1,20,60,10.6,2.6,4.5,3.0,0.027000000000000003,0.086,0.209,0.509,0.28,2003-04 3197,Stacey Augmon,NOH,35.0,203.2,96.615096,Nevada-Las Vegas,USA,1991,1,9,69,5.8,2.5,1.2,-0.9,0.043,0.1,0.158,0.486,0.106,2003-04 3198,Stephen Jackson,ATL,26.0,203.2,98.88305600000001,Butler Community College,USA,1997,2,42,80,18.1,4.6,3.1,-3.8,0.038,0.102,0.249,0.521,0.155,2003-04 3199,Stephon Marbury,NYK,27.0,187.96,92.98635999999999,Georgia Tech,USA,1996,1,4,81,20.2,3.2,8.9,-0.9,0.02,0.07200000000000001,0.255,0.519,0.385,2003-04 3200,Steve Blake,WAS,24.0,190.5,78.017824,Maryland,USA,2003,2,38,75,5.9,1.6,2.8,-4.4,0.013999999999999999,0.083,0.182,0.509,0.26,2003-04 3201,Steve Francis,HOU,27.0,190.5,90.7184,Maryland,USA,1999,1,2,79,16.6,5.5,6.2,3.0,0.045,0.111,0.237,0.501,0.276,2003-04 3202,Steve Nash,DAL,30.0,190.5,88.45044,Santa Clara,Canada,1996,1,15,78,14.5,3.0,8.8,4.7,0.024,0.073,0.193,0.59,0.37,2003-04 3203,Steven Hunter,ORL,22.0,213.36,108.86208,DePaul,USA,2001,1,15,59,3.2,2.9,0.2,-12.6,0.075,0.161,0.125,0.504,0.025,2003-04 3204,Steven Smith,NOH,35.0,203.2,100.243832,Michigan State,USA,1991,1,5,71,5.0,1.1,0.8,-3.7,0.033,0.076,0.183,0.5429999999999999,0.109,2003-04 3205,Stromile Swift,MEM,24.0,205.74,104.32616,Louisiana State,USA,2000,1,2,77,9.4,4.9,0.5,2.5,0.10099999999999999,0.175,0.223,0.53,0.043,2003-04 3206,Scott Williams,DAL,36.0,208.28,117.93392,North Carolina,USA,Undrafted,Undrafted,Undrafted,43,4.6,3.1,0.4,3.5,0.079,0.20600000000000002,0.18,0.5,0.047,2003-04 3207,T.J. Ford,MIL,21.0,182.88,74.84268,Texas,USA,2003,1,8,55,7.1,3.2,6.5,-0.2,0.027000000000000003,0.105,0.17600000000000002,0.44299999999999995,0.375,2003-04 3208,Scott Padgett,HOU,28.0,205.74,108.86208,Kentucky,USA,1999,1,28,58,3.4,2.4,0.4,5.5,0.099,0.17600000000000002,0.172,0.552,0.075,2003-04 3209,Sasha Pavlovic,UTA,20.0,200.66,95.25432,None,Montenegro,2003,1,19,79,4.8,2.0,0.8,-4.9,0.048,0.129,0.198,0.46299999999999997,0.098,2003-04 3210,Richie Frahm,SEA,26.0,195.58,95.25432,Gonzaga,USA,Undrafted,Undrafted,Undrafted,54,3.4,1.0,0.4,7.2,0.031,0.114,0.155,0.608,0.081,2003-04 3211,Rick Brunson,CHI,32.0,193.04,86.18248,Temple,USA,Undrafted,Undrafted,Undrafted,40,3.0,0.9,2.1,-8.1,0.024,0.08900000000000001,0.16399999999999998,0.49700000000000005,0.331,2003-04 3212,Rick Fox,LAL,34.0,200.66,106.59411999999999,North Carolina,Canada,1991,1,24,38,4.8,2.7,2.6,5.2,0.039,0.096,0.133,0.45899999999999996,0.161,2003-04 3213,Ricky Davis,BOS,24.0,200.66,88.45044,Iowa,USA,1998,1,21,79,14.4,4.5,3.3,-2.9,0.036000000000000004,0.127,0.228,0.5329999999999999,0.188,2003-04 3214,Robert Archibald,TOR,24.0,210.82,113.398,Illinois,Scotland,2002,2,31,32,1.0,1.6,0.4,-2.4,0.08800000000000001,0.149,0.10300000000000001,0.34299999999999997,0.08900000000000001,2003-04 3215,Robert Horry,SAS,33.0,208.28,94.34713599999999,Alabama,USA,1992,1,11,81,4.8,3.4,1.2,8.4,0.092,0.14400000000000002,0.159,0.496,0.13,2003-04 3216,Robert Pack,NJN,35.0,187.96,86.18248,Southern California,USA,Undrafted,Undrafted,Undrafted,26,1.9,0.7,1.0,-16.0,0.022000000000000002,0.079,0.159,0.44799999999999995,0.262,2003-04 3217,Robert Traylor,NOH,27.0,203.2,128.820128,Michigan,USA,1998,1,6,71,5.1,3.7,0.6,1.4,0.124,0.19899999999999998,0.196,0.527,0.08199999999999999,2003-04 3218,Rod Strickland,TOR,37.0,190.5,83.91452,DePaul,USA,1988,1,19,61,6.3,2.5,4.0,-6.6,0.032,0.11900000000000001,0.183,0.48200000000000004,0.326,2003-04 3219,Rodney Buford,SAC,26.0,195.58,88.45044,Creighton,USA,1999,2,53,22,1.9,0.7,0.3,-26.2,0.043,0.071,0.201,0.35,0.09699999999999999,2003-04 3220,Rodney Rogers,NJN,33.0,200.66,115.66596000000001,Wake Forest,USA,1993,1,9,69,7.8,4.4,2.0,2.6,0.083,0.17600000000000002,0.212,0.49200000000000005,0.17300000000000001,2003-04 3221,Rodney White,DEN,24.0,205.74,104.32616,North Carolina-Charlotte,USA,2001,1,9,72,7.5,2.3,0.8,0.6,0.049,0.136,0.261,0.528,0.115,2003-04 3222,Roger Mason Jr.,TOR,23.0,195.58,90.7184,Virginia,USA,2002,2,30,26,3.7,1.2,1.0,-9.6,0.003,0.114,0.191,0.446,0.16399999999999998,2003-04 3223,Ron Mercer,SAS,28.0,200.66,95.25432,Kentucky,USA,1997,1,6,39,5.0,1.3,0.6,-1.0,0.02,0.077,0.21600000000000003,0.446,0.09300000000000001,2003-04 3224,Ronald Dupree,CHI,23.0,200.66,94.800728,Louisiana State,USA,Undrafted,Undrafted,Undrafted,47,6.2,3.6,1.2,-6.6,0.062,0.14,0.183,0.445,0.10300000000000001,2003-04 3225,Ruben Boumtje-Boumtje,POR,26.0,213.36,116.573144,Georgetown,USA,2001,2,49,9,0.4,0.1,0.1,-46.1,0.0,0.067,0.10800000000000001,0.34,0.063,2003-04 3226,Ruben Patterson,POR,28.0,195.58,101.604608,Cincinnati,USA,1998,2,31,73,6.9,3.7,1.9,-0.6,0.094,0.099,0.16699999999999998,0.53,0.14800000000000002,2003-04 3227,Rusty LaRue,GSW,30.0,190.5,83.91452,Wake Forest,USA,Undrafted,Undrafted,Undrafted,4,1.0,0.8,0.5,-40.5,0.0,0.2,0.18,0.515,0.154,2003-04 3228,Ryan Bowen,DEN,28.0,205.74,99.79024,Iowa,USA,1998,2,55,52,0.9,1.7,0.3,0.0,0.095,0.139,0.073,0.395,0.075,2003-04 3229,Ryan Humphrey,MEM,24.0,203.2,106.59411999999999,Notre Dame,USA,2002,1,19,2,1.0,1.5,0.5,94.8,0.28600000000000003,0.111,0.226,0.25,0.083,2003-04 3230,Sam Cassell,MIN,34.0,190.5,83.91452,Florida State,USA,1993,1,24,81,19.8,3.3,7.3,10.2,0.019,0.086,0.26899999999999996,0.5660000000000001,0.354,2003-04 3231,Samaki Walker,MIA,28.0,205.74,117.93392,Louisville,USA,1996,1,9,33,3.2,3.4,0.2,-3.1,0.11199999999999999,0.184,0.15,0.444,0.028999999999999998,2003-04 3232,Samuel Dalembert,PHI,24.0,210.82,113.398,Seton Hall,Haiti,2001,1,26,82,8.0,7.6,0.3,-1.2,0.10400000000000001,0.22,0.142,0.5660000000000001,0.017,2003-04 3233,Scot Pollard,IND,29.0,210.82,120.20188,Kansas,USA,1997,1,19,61,1.7,2.7,0.2,-6.9,0.11599999999999999,0.17800000000000002,0.10300000000000001,0.43,0.027000000000000003,2003-04 3234,Tamar Slay,NJN,24.0,203.2,97.52228000000001,Marshall,USA,2002,2,53,22,2.4,1.1,0.6,-14.2,0.075,0.125,0.223,0.401,0.16899999999999998,2003-04 3235,Tayshaun Prince,DET,24.0,205.74,97.52228000000001,Kentucky,USA,2002,1,23,82,10.3,4.8,2.3,7.3,0.04,0.124,0.156,0.536,0.122,2003-04 3236,Theo Ratliff,POR,31.0,208.28,106.59411999999999,Wyoming,USA,1995,1,18,85,7.9,7.2,0.8,-0.4,0.08800000000000001,0.168,0.136,0.521,0.043,2003-04 3237,Vlade Divac,SAC,36.0,215.9,117.93392,None,Serbia and Montenegro,1989,1,26,81,9.9,5.7,5.3,7.1,0.07,0.16,0.188,0.511,0.273,2003-04 3238,Vladimir Radmanovic,SEA,23.0,208.28,106.140528,None,Serbia,2001,1,12,77,12.0,5.3,1.8,0.3,0.053,0.15,0.19399999999999998,0.5329999999999999,0.102,2003-04 3239,Vladimir Stepania,POR,28.0,215.9,115.66596000000001,None,Georgia,1998,1,27,42,2.6,3.0,0.5,5.2,0.128,0.19899999999999998,0.142,0.45399999999999996,0.08199999999999999,2003-04 3240,Voshon Lenard,DEN,31.0,193.04,92.98635999999999,Minnesota,USA,1994,2,46,73,14.2,2.7,2.1,1.0,0.023,0.08,0.218,0.512,0.111,2003-04 3241,Wally Szczerbiak,MIN,27.0,200.66,106.59411999999999,Miami (OH),USA,1999,1,6,28,10.2,3.1,1.2,9.1,0.045,0.105,0.218,0.539,0.1,2003-04 3242,Walter McCarty,BOS,30.0,208.28,104.32616,Kentucky,USA,1996,1,19,77,7.9,3.1,1.6,-1.1,0.018000000000000002,0.126,0.157,0.541,0.109,2003-04 3243,Wang Zhi-zhi,MIA,26.0,215.9,128.820128,None,China,1999,2,36,16,2.9,1.1,0.1,6.8,0.045,0.124,0.24,0.466,0.033,2003-04 3244,Wesley Person,ATL,33.0,198.12,90.7184,Auburn,USA,1994,1,23,58,5.8,2.0,1.1,-8.0,0.017,0.12,0.165,0.51,0.11,2003-04 3245,Willie Green,PHI,22.0,193.04,90.7184,Detroit Mercy,USA,2003,2,41,53,6.9,1.2,1.0,-4.0,0.024,0.07400000000000001,0.275,0.46399999999999997,0.151,2003-04 3246,Yao Ming,HOU,23.0,228.6,140.61352,None,China,2002,1,1,82,17.5,9.0,1.5,3.6,0.09300000000000001,0.22,0.252,0.586,0.09,2003-04 3247,Zach Randolph,POR,22.0,205.74,122.46983999999999,Michigan State,USA,2001,1,19,81,20.1,10.5,2.0,-1.6,0.09699999999999999,0.23600000000000002,0.276,0.528,0.10099999999999999,2003-04 3248,Zarko Cabarkapa,PHX,23.0,210.82,106.59411999999999,None,Serbia and Montenegro,2003,1,17,49,4.1,2.0,0.8,-11.7,0.052000000000000005,0.146,0.213,0.461,0.12,2003-04 3249,Zaza Pachulia,ORL,20.0,210.82,108.86208,None,Georgia,2003,2,42,59,3.3,2.9,0.2,-6.2,0.11599999999999999,0.18600000000000003,0.168,0.452,0.033,2003-04 3250,Zeljko Rebraca,ATL,32.0,213.36,116.573144,None,Yugoslavia,1994,2,54,24,3.8,2.4,0.3,-8.7,0.1,0.154,0.18600000000000003,0.504,0.04,2003-04 3251,Zendon Hamilton,PHI,29.0,210.82,108.86208,St. John's (NY),USA,Undrafted,Undrafted,Undrafted,45,3.8,3.2,0.3,-7.4,0.129,0.24100000000000002,0.16,0.616,0.049,2003-04 3252,Zoran Planinic,NJN,21.0,200.66,88.45044,None,Croatia,2003,1,22,49,3.1,1.1,1.4,-9.4,0.036000000000000004,0.109,0.19699999999999998,0.49200000000000005,0.27399999999999997,2003-04 3253,Zydrunas Ilgauskas,CLE,29.0,220.98,117.93392,None,Lithuania,1996,1,20,81,15.3,8.1,1.3,-3.7,0.122,0.163,0.22899999999999998,0.541,0.07400000000000001,2003-04 3254,Reggie Miller,IND,38.0,200.66,88.45044,UCLA,USA,1987,1,11,80,10.0,2.4,3.1,10.2,0.009000000000000001,0.087,0.15,0.6,0.18100000000000002,2003-04 3255,Reggie Evans,SEA,24.0,203.2,111.13004,Iowa,USA,Undrafted,Undrafted,Undrafted,75,2.9,5.4,0.4,-3.6,0.145,0.25,0.107,0.47100000000000003,0.04,2003-04 3256,Reece Gaines,ORL,23.0,198.12,92.98635999999999,Louisville,USA,2003,1,15,38,1.8,1.0,1.1,-3.0,0.025,0.10400000000000001,0.15,0.35600000000000004,0.185,2003-04 3257,Ray Allen,SEA,28.0,195.58,92.98635999999999,Connecticut,USA,1996,1,5,56,23.0,5.1,4.8,1.5,0.038,0.11800000000000001,0.278,0.5660000000000001,0.223,2003-04 3258,Raul Lopez,UTA,24.0,182.88,72.57472,None,Spain,2001,1,24,82,7.0,1.9,3.7,-2.2,0.019,0.1,0.215,0.503,0.364,2003-04 3259,Rasual Butler,MIA,25.0,200.66,92.98635999999999,La Salle,USA,2002,2,52,45,6.8,1.4,0.5,3.4,0.006999999999999999,0.094,0.203,0.586,0.066,2003-04 3260,Vitaly Potapenko,SEA,29.0,208.28,129.27372,Wright State,Ukraine,1996,1,12,65,7.1,4.4,0.8,-3.5,0.086,0.163,0.174,0.511,0.061,2003-04 3261,Vince Carter,TOR,27.0,198.12,102.0582,North Carolina,USA,1998,1,5,73,22.5,4.8,4.8,0.4,0.038,0.10400000000000001,0.321,0.501,0.262,2003-04 3262,Vin Baker,NYK,32.0,210.82,113.398,Hartford,USA,1993,1,8,54,9.8,5.2,1.2,-1.7,0.10099999999999999,0.14400000000000002,0.204,0.53,0.09,2003-04 3263,Udonis Haslem,MIA,24.0,203.2,103.418976,Florida,USA,Undrafted,Undrafted,Undrafted,75,7.3,6.3,0.7,0.0,0.12300000000000001,0.188,0.157,0.521,0.049,2003-04 3264,Theron Smith,MEM,23.0,203.2,102.0582,Ball State,USA,Undrafted,Undrafted,Undrafted,20,2.2,2.1,0.4,0.7,0.083,0.177,0.153,0.473,0.065,2003-04 3265,Tierre Brown,NOH,25.0,187.96,85.728888,McNeese State,USA,Undrafted,Undrafted,Undrafted,3,2.0,0.3,0.7,-66.7,0.0,0.071,0.37799999999999995,0.521,0.4,2003-04 3266,Tim Duncan,SAS,28.0,213.36,117.93392,Wake Forest,US Virgin Islands,1997,1,1,69,22.3,12.4,3.1,11.3,0.10300000000000001,0.276,0.3,0.534,0.17,2003-04 3267,Tim Thomas,NYK,27.0,208.28,108.86208,Villanova,USA,1997,1,7,66,14.7,4.8,1.9,0.7,0.034,0.14,0.22399999999999998,0.534,0.102,2003-04 3268,Tom Gugliotta,UTA,34.0,208.28,113.398,North Carolina State,USA,1992,1,6,55,2.9,3.4,1.1,-7.9,0.092,0.192,0.146,0.374,0.132,2003-04 3269,Toni Kukoc,MIL,35.0,210.82,106.59411999999999,None,Croatia,1990,2,29,73,8.4,3.7,2.7,1.3,0.046,0.158,0.214,0.519,0.23,2003-04 3270,Tony Battie,CLE,28.0,210.82,108.86208,Texas Tech,USA,1997,1,5,73,5.6,4.9,0.8,-2.7,0.09,0.18,0.151,0.48200000000000004,0.068,2003-04 3271,Tony Delk,DAL,30.0,187.96,85.728888,Kentucky,USA,1996,1,16,33,6.0,1.8,0.8,-2.9,0.03,0.09699999999999999,0.188,0.484,0.08800000000000001,2003-04 3272,Tony Massenburg,SAC,36.0,205.74,113.398,Maryland,USA,1990,2,43,59,4.3,3.2,0.5,-8.5,0.08,0.18899999999999997,0.171,0.509,0.066,2003-04 3273,Tony Parker,SAS,22.0,187.96,81.64656,None,France,2001,1,28,75,14.7,3.2,5.5,8.4,0.019,0.085,0.22399999999999998,0.516,0.278,2003-04 3274,Torraye Braggs,WAS,28.0,203.2,111.13004,Xavier,USA,1998,2,57,15,2.7,2.6,0.5,9.1,0.157,0.17600000000000002,0.16,0.522,0.083,2003-04 3275,Kelvin Cato,HOU,29.0,210.82,124.7378,Iowa State,USA,1997,1,15,69,6.1,6.8,1.0,3.1,0.10800000000000001,0.20199999999999999,0.139,0.495,0.069,2003-04 3276,Tracy McGrady,ORL,25.0,203.2,95.25432,None,USA,1997,1,9,67,28.0,6.0,5.5,-7.1,0.039,0.131,0.33,0.526,0.272,2003-04 3277,Travis Best,DAL,31.0,180.34,83.91452,Georgia Tech,USA,1995,1,23,61,2.8,1.1,1.8,9.1,0.023,0.076,0.131,0.445,0.209,2003-04 3278,Travis Hansen,ATL,26.0,198.12,92.98635999999999,Brigham Young,USA,2003,2,37,41,3.0,1.7,0.5,-0.9,0.068,0.09,0.139,0.433,0.059000000000000004,2003-04 3279,Travis Outlaw,POR,19.0,205.74,95.25432,None,USA,2003,1,23,8,1.0,0.5,0.1,-61.0,0.111,0.154,0.24600000000000002,0.457,0.14300000000000002,2003-04 3280,Tremaine Fowlkes,DET,28.0,198.12,96.16150400000001,Fresno State,USA,1998,2,54,36,1.2,1.5,0.4,-6.0,0.085,0.154,0.131,0.39299999999999996,0.109,2003-04 3281,Trenton Hassell,MIN,25.0,195.58,90.7184,Austin Peay,USA,2001,2,29,81,5.0,3.2,1.6,7.7,0.036000000000000004,0.08900000000000001,0.095,0.498,0.08199999999999999,2003-04 3282,Troy Bell,MEM,23.0,185.42,81.64656,Boston College,USA,2003,1,16,6,1.8,0.7,0.7,8.0,0.09699999999999999,0.03,0.293,0.285,0.182,2003-04 3283,Troy Hudson,MIN,28.0,185.42,77.11064,Southern Illinois,USA,Undrafted,Undrafted,Undrafted,29,7.5,1.2,2.4,-4.7,0.01,0.069,0.24100000000000002,0.49200000000000005,0.252,2003-04 3284,Troy Murphy,GSW,24.0,210.82,111.13004,Notre Dame,USA,2001,1,14,28,10.0,6.2,0.7,-2.6,0.08900000000000001,0.233,0.235,0.501,0.06,2003-04 3285,Tyrone Hill,MIA,36.0,205.74,113.398,Xavier,USA,1990,1,11,5,1.8,1.6,0.0,-27.9,0.152,0.10300000000000001,0.10099999999999999,0.6659999999999999,0.0,2003-04 3286,Tyronn Lue,ORL,27.0,182.88,80.73937600000001,Nebraska,USA,1998,1,23,76,10.5,2.5,4.2,-10.2,0.012,0.08,0.174,0.518,0.225,2003-04 3287,Tyson Chandler,CHI,21.0,215.9,106.59411999999999,None,USA,2001,1,2,35,6.1,7.7,0.7,-9.4,0.109,0.267,0.141,0.507,0.052000000000000005,2003-04 3288,Tracy Murray,POR,32.0,200.66,104.32616,UCLA,USA,1992,1,18,7,1.1,0.7,0.1,-10.9,0.1,0.053,0.196,0.322,0.045,2003-04 3289,Keith Van Horn,MIL,28.0,208.28,108.86208,Utah,USA,1997,1,2,72,16.1,7.0,1.7,0.4,0.075,0.168,0.237,0.564,0.091,2003-04 3290,Keith McLeod,MIN,24.0,187.96,86.18248,Bowling Green,USA,Undrafted,Undrafted,Undrafted,33,2.7,1.0,1.8,-6.4,0.017,0.083,0.16399999999999998,0.436,0.258,2003-04 3291,Keith Bogans,ORL,24.0,195.58,97.52228000000001,Kentucky,USA,2003,2,43,73,6.8,4.3,1.3,-10.2,0.066,0.139,0.145,0.499,0.087,2003-04 3292,Curtis Borchardt,UTA,23.0,213.36,108.86208,Stanford,USA,2002,1,18,16,3.6,3.4,0.9,-6.2,0.066,0.203,0.149,0.45399999999999996,0.09699999999999999,2003-04 3293,Corliss Williamson,DET,30.0,200.66,111.13004,Arkansas,USA,1995,1,13,79,9.5,3.2,0.7,5.8,0.071,0.124,0.24,0.546,0.07200000000000001,2003-04 3294,Corie Blount,TOR,35.0,208.28,109.769264,Cincinnati,USA,1993,1,25,62,4.0,4.4,0.9,-0.3,0.107,0.18899999999999997,0.136,0.462,0.084,2003-04 3295,Corey Maggette,LAC,24.0,198.12,103.418976,Duke,USA,1999,1,13,73,20.7,5.9,3.1,-4.3,0.040999999999999995,0.146,0.251,0.586,0.154,2003-04 3296,Clifford Robinson,GSW,37.0,208.28,108.86208,Connecticut,USA,1989,2,36,82,11.8,3.9,3.3,-2.0,0.021,0.106,0.19399999999999998,0.473,0.16,2003-04 3297,Clar. Weatherspoon,HOU,33.0,200.66,122.46983999999999,Southern Mississippi,USA,1992,1,9,52,5.0,3.9,0.6,-5.0,0.10400000000000001,0.175,0.152,0.5379999999999999,0.063,2003-04 3298,Chucky Atkins,BOS,29.0,180.34,72.57472,South Florida,USA,Undrafted,Undrafted,Undrafted,64,8.4,1.5,3.5,2.1,0.006999999999999999,0.061,0.185,0.511,0.248,2003-04 3299,Christian Laettner,WAS,34.0,210.82,111.13004,Duke,USA,1992,1,3,48,5.9,4.8,1.9,-8.8,0.055,0.21100000000000002,0.147,0.511,0.155,2003-04 3300,Chris Wilcox,LAC,21.0,208.28,103.872568,Maryland,USA,2002,1,8,65,8.6,4.7,0.8,-4.7,0.102,0.159,0.192,0.557,0.067,2003-04 3301,Chris Whitney,WAS,32.0,182.88,79.3786,Clemson,USA,1993,2,47,16,2.9,0.9,0.9,-16.0,0.016,0.077,0.128,0.498,0.146,2003-04 3302,Chris Webber,SAC,31.0,208.28,111.13004,Michigan,USA,1993,1,1,23,18.7,8.7,4.6,-0.7,0.065,0.198,0.289,0.456,0.22699999999999998,2003-04 3303,Chris Mihm,BOS,24.0,213.36,120.20188,Texas,USA,2000,1,7,76,6.3,5.4,0.3,-2.5,0.136,0.214,0.184,0.531,0.028999999999999998,2003-04 3304,Chris Kaman,LAC,22.0,213.36,121.562656,Central Michigan,USA,2003,1,6,82,6.1,5.6,1.0,-7.5,0.08,0.20199999999999999,0.16,0.502,0.078,2003-04 3305,Chris Jefferies,CHI,24.0,203.2,104.32616,Fresno State,USA,2002,1,27,21,4.0,1.4,0.3,5.6,0.027000000000000003,0.136,0.21899999999999997,0.52,0.057999999999999996,2003-04 3306,Chris Crawford,ATL,29.0,205.74,106.59411999999999,Marquette,USA,1997,2,50,56,10.2,3.1,0.8,-5.2,0.054000000000000006,0.11699999999999999,0.214,0.544,0.068,2003-04 3307,Chris Bosh,TOR,20.0,208.28,95.25432,Georgia Tech,USA,2003,1,4,75,11.5,7.4,1.0,-3.4,0.087,0.171,0.182,0.513,0.055999999999999994,2003-04 3308,Chris Andersen,DEN,25.0,208.28,99.79024,Blinn,USA,Undrafted,Undrafted,Undrafted,71,3.4,4.2,0.5,0.5,0.096,0.21899999999999997,0.128,0.486,0.053,2003-04 3309,Cherokee Parks,GSW,31.0,210.82,108.86208,Duke,USA,1995,1,12,12,1.0,0.8,0.1,-12.6,0.08,0.13,0.12,0.475,0.03,2003-04 3310,Chauncey Billups,DET,27.0,190.5,91.625584,Colorado,USA,1997,1,3,78,16.9,3.5,5.7,7.5,0.015,0.098,0.233,0.55,0.289,2003-04 3311,Charlie Ward,SAS,33.0,187.96,83.91452,Florida State,USA,1994,1,26,71,6.0,2.0,3.0,-2.5,0.011000000000000001,0.11900000000000001,0.184,0.528,0.303,2003-04 3312,Charles Oakley,HOU,40.0,205.74,111.13004,Virginia Union,USA,1985,1,9,7,1.3,0.7,0.3,-7.9,0.0,0.217,0.165,0.521,0.1,2003-04 3313,Cezary Trybanski,NYK,24.0,218.44,108.86208,None,Poland,Undrafted,Undrafted,Undrafted,7,0.1,0.1,0.0,-53.8,0.0,0.125,0.258,0.102,0.0,2003-04 3314,Casey Jacobsen,PHX,23.0,198.12,97.52228000000001,Stanford,USA,2002,1,22,78,6.0,2.6,1.3,-3.1,0.026000000000000002,0.099,0.11800000000000001,0.57,0.084,2003-04 3315,Cuttino Mobley,HOU,28.0,193.04,97.52228000000001,Rhode Island,USA,1998,2,41,80,15.8,4.5,3.2,1.8,0.015,0.11199999999999999,0.2,0.535,0.14400000000000002,2003-04 3316,Caron Butler,MIA,24.0,200.66,98.429464,Connecticut,USA,2002,1,10,68,9.2,4.8,1.9,1.9,0.052000000000000005,0.138,0.185,0.44,0.106,2003-04 3317,Dahntay Jones,MEM,23.0,198.12,95.25432,Duke,USA,2003,1,20,20,1.8,1.2,0.6,-11.2,0.052000000000000005,0.122,0.21,0.311,0.138,2003-04 3318,Dale Davis,POR,35.0,210.82,114.30518400000001,Clemson,USA,1991,1,13,76,4.4,5.2,0.9,-4.9,0.11,0.171,0.10300000000000001,0.505,0.067,2003-04 3319,Derrick Coleman,PHI,37.0,208.28,122.46983999999999,Syracuse,USA,1990,1,1,34,8.0,5.6,1.4,-5.4,0.066,0.21600000000000003,0.192,0.47100000000000003,0.095,2003-04 3320,Derek Fisher,LAL,29.0,185.42,92.98635999999999,Arkansas-Little Rock,USA,1996,1,24,82,7.1,1.9,2.3,2.4,0.019,0.084,0.18600000000000003,0.451,0.175,2003-04 3321,Derek Anderson,POR,29.0,195.58,88.45044,Kentucky,USA,1997,1,13,51,13.6,3.6,4.5,2.2,0.018000000000000002,0.098,0.20600000000000002,0.499,0.21100000000000002,2003-04 3322,DerMarr Johnson,NYK,24.0,205.74,91.171992,Cincinnati,USA,2000,1,6,21,5.4,1.9,0.5,-6.4,0.021,0.145,0.207,0.511,0.071,2003-04 3323,DeShawn Stevenson,ORL,23.0,195.58,95.25432,None,USA,2000,1,23,80,11.4,3.7,2.0,-5.7,0.038,0.107,0.20199999999999999,0.473,0.114,2003-04 3324,DeSagana Diop,CLE,22.0,213.36,136.0776,None,Senegal,2001,1,8,56,2.3,3.6,0.6,-4.3,0.10800000000000001,0.192,0.11800000000000001,0.40399999999999997,0.078,2003-04 3325,David West,NOH,23.0,205.74,108.86208,Xavier,USA,2003,1,18,71,3.8,4.2,0.8,-5.1,0.135,0.242,0.151,0.519,0.12,2003-04 3326,David Wesley,NOH,33.0,185.42,92.079176,Baylor,USA,Undrafted,Undrafted,Undrafted,61,14.0,2.2,2.9,-1.4,0.015,0.062,0.222,0.483,0.159,2003-04 3327,Darvin Ham,DET,30.0,200.66,108.86208,Texas Tech,USA,Undrafted,Undrafted,Undrafted,54,1.8,1.7,0.3,2.5,0.115,0.111,0.121,0.531,0.062,2003-04 3328,Darrick Martin,MIN,33.0,180.34,77.11064,UCLA,USA,Undrafted,Undrafted,Undrafted,16,3.4,0.4,1.4,5.2,0.013000000000000001,0.032,0.205,0.38799999999999996,0.258,2003-04 3329,Darrell Armstrong,NOH,36.0,185.42,81.64656,Fayetteville State,USA,Undrafted,Undrafted,Undrafted,79,10.6,2.9,3.9,1.6,0.031,0.086,0.191,0.525,0.244,2003-04 3330,Darko Milicic,DET,19.0,213.36,111.13004,None,Serbia,2003,1,2,34,1.4,1.3,0.2,-12.6,0.08,0.212,0.271,0.318,0.095,2003-04 3331,Darius Songaila,SAC,26.0,205.74,112.490816,Wake Forest,Lithuania,2002,2,49,73,4.6,3.1,0.7,7.0,0.107,0.156,0.16399999999999998,0.541,0.077,2003-04 3332,Darius Miles,POR,22.0,205.74,95.25432,None,USA,2000,1,3,79,10.9,4.5,2.1,-2.8,0.064,0.129,0.21899999999999997,0.514,0.142,2003-04 3333,Danny Fortson,DAL,28.0,203.2,117.93392,Cincinnati,USA,1997,1,10,56,3.9,4.5,0.2,6.2,0.19699999999999998,0.254,0.15,0.605,0.02,2003-04 3334,Daniel Santiago,MIL,28.0,215.9,117.93392,Saint Vincent,Puerto Rico,Undrafted,Undrafted,Undrafted,54,4.0,2.4,0.4,2.9,0.055999999999999994,0.156,0.153,0.536,0.052000000000000005,2003-04 3335,Dana Barros,BOS,37.0,180.34,74.84268,Boston College,USA,1989,1,16,1,6.0,0.0,0.0,-58.2,0.0,0.0,0.146,0.773,0.0,2003-04 3336,Dan Langhi,MIL,26.0,210.82,99.79024,Vanderbilt,USA,2000,2,31,6,2.2,0.7,0.0,15.7,0.0,0.154,0.22399999999999998,0.43700000000000006,0.0,2003-04 3337,Dan Gadzuric,MIL,26.0,210.82,108.86208,UCLA,Netherlands,2002,2,33,75,5.7,4.6,0.4,2.1,0.11599999999999999,0.205,0.16,0.529,0.037000000000000005,2003-04 3338,Dan Dickau,POR,25.0,182.88,86.18248,Gonzaga,USA,2002,1,28,43,2.2,0.6,0.9,-5.6,0.026000000000000002,0.075,0.198,0.456,0.226,2003-04 3339,Damone Brown,NJN,25.0,203.2,91.625584,Syracuse,USA,2001,2,36,3,1.0,1.7,0.0,-90.2,0.14300000000000002,0.16699999999999998,0.325,0.138,0.0,2003-04 3340,Damon Stoudamire,POR,30.0,177.8,77.56423199999999,Arizona,USA,1995,1,7,82,13.4,3.8,6.1,-2.6,0.02,0.09699999999999999,0.192,0.508,0.268,2003-04 3341,Damon Jones,MIL,27.0,190.5,83.91452,Houston,USA,Undrafted,Undrafted,Undrafted,82,7.0,2.1,5.8,0.1,0.009000000000000001,0.087,0.147,0.516,0.363,2003-04 3342,Dajuan Wagner,CLE,21.0,187.96,90.7184,Memphis,USA,2002,1,6,44,6.5,1.3,1.2,-7.9,0.013000000000000001,0.077,0.23199999999999998,0.439,0.131,2003-04 3343,Carmelo Anthony,DEN,20.0,203.2,99.79024,Syracuse,USA,2003,1,3,82,21.0,6.1,2.8,0.6,0.069,0.122,0.28300000000000003,0.509,0.134,2003-04 3344,Carlos Boozer,CLE,22.0,205.74,117.02673600000001,Duke,USA,2002,2,34,75,15.5,11.4,2.0,0.5,0.099,0.268,0.198,0.5670000000000001,0.098,2003-04 3345,Carlos Arroyo,UTA,24.0,187.96,91.625584,Florida International,Puerto Rico,Undrafted,Undrafted,Undrafted,71,12.6,2.6,5.0,-1.4,0.025,0.091,0.23600000000000002,0.517,0.32899999999999996,2003-04 3346,Baron Davis,NOH,25.0,190.5,101.151016,UCLA,USA,1999,1,3,67,22.9,4.3,7.5,2.7,0.027000000000000003,0.095,0.298,0.49200000000000005,0.363,2003-04 3347,Avery Johnson,GSW,39.0,180.34,83.91452,Southern,USA,Undrafted,Undrafted,Undrafted,46,4.6,0.7,2.4,-2.7,0.006,0.055,0.213,0.45399999999999996,0.311,2003-04 3348,Austin Croshere,IND,29.0,208.28,109.769264,Providence,USA,1997,1,12,77,5.0,3.2,0.7,2.8,0.07200000000000001,0.213,0.191,0.5489999999999999,0.096,2003-04 3349,Antonio McDyess,PHX,29.0,205.74,111.13004,Alabama,USA,1995,1,2,42,6.9,6.1,0.9,-0.3,0.09,0.222,0.17600000000000002,0.486,0.066,2003-04 3350,Antonio Davis,CHI,35.0,205.74,104.32616,Texas-El Paso,USA,1990,2,45,80,8.9,8.4,1.7,-6.3,0.086,0.203,0.155,0.465,0.09300000000000001,2003-04 3351,Antonio Daniels,SEA,29.0,193.04,92.98635999999999,Bowling Green,USA,1997,1,4,71,8.0,2.0,4.2,1.6,0.019,0.09,0.166,0.596,0.324,2003-04 3352,Antoine Walker,DAL,27.0,205.74,111.13004,Kentucky,USA,1996,1,6,82,14.0,8.3,4.5,2.6,0.07200000000000001,0.19,0.217,0.475,0.195,2003-04 3353,Anthony Peeler,SAC,34.0,193.04,94.34713599999999,Missouri,USA,1992,1,15,75,5.7,2.0,1.6,4.9,0.025,0.095,0.147,0.575,0.139,2003-04 3354,Anthony Johnson,IND,29.0,190.5,86.18248,College of Charleston,USA,1997,2,39,73,6.2,1.8,2.8,-0.6,0.021,0.079,0.158,0.49700000000000005,0.231,2003-04 3355,Anthony Goldwire,NJN,32.0,187.96,82.553744,Houston,USA,1994,2,52,11,1.5,0.6,1.0,5.6,0.013000000000000001,0.08800000000000001,0.146,0.379,0.21600000000000003,2003-04 3356,Anthony Carter,SAS,29.0,187.96,88.45044,Hawaii,USA,Undrafted,Undrafted,Undrafted,5,4.4,2.2,2.4,3.8,0.026000000000000002,0.102,0.253,0.297,0.27899999999999997,2003-04 3357,Antawn Jamison,DAL,28.0,205.74,102.0582,North Carolina,USA,1998,1,4,82,14.8,6.3,0.9,6.1,0.10400000000000001,0.135,0.20600000000000002,0.581,0.047,2003-04 3358,Ansu Sesay,SEA,27.0,205.74,102.0582,Mississippi,USA,1998,2,30,57,3.5,1.6,0.3,0.4,0.086,0.10300000000000001,0.177,0.504,0.057,2003-04 3359,Anfernee Hardaway,NYK,32.0,200.66,97.52228000000001,Memphis,USA,1993,1,3,76,9.2,3.8,2.3,-1.0,0.037000000000000005,0.122,0.185,0.47200000000000003,0.141,2003-04 3360,Andrew DeClercq,ORL,31.0,208.28,115.66596000000001,Florida,USA,1995,2,34,71,3.2,4.5,0.6,-3.7,0.122,0.17600000000000002,0.10300000000000001,0.526,0.054000000000000006,2003-04 3361,Andrei Kirilenko,UTA,23.0,205.74,102.0582,None,Russia,1999,1,24,78,16.5,8.1,3.1,1.2,0.095,0.174,0.218,0.5589999999999999,0.152,2003-04 3362,Andre Miller,DEN,28.0,187.96,90.7184,Utah,USA,1999,1,8,82,14.8,4.5,6.1,2.5,0.051,0.09699999999999999,0.20600000000000002,0.541,0.28300000000000003,2003-04 3363,Amar'e Stoudemire,PHX,21.0,208.28,111.13004,None,USA,2002,1,9,55,20.6,9.0,1.4,-2.8,0.08800000000000001,0.188,0.27399999999999997,0.536,0.07,2003-04 3364,Amal McCaskill,PHI,30.0,210.82,106.59411999999999,Marquette,USA,1996,2,49,59,1.9,2.3,0.3,-4.1,0.09300000000000001,0.157,0.11800000000000001,0.43799999999999994,0.055,2003-04 3365,Alvin Williams,TOR,29.0,195.58,83.91452,Villanova,USA,1997,2,47,56,8.8,2.7,4.0,-5.8,0.012,0.08900000000000001,0.171,0.46299999999999997,0.237,2003-04 3366,Alton Ford,HOU,23.0,205.74,127.00576000000001,Houston,USA,2001,2,50,9,1.7,1.2,0.3,0.5,0.086,0.25,0.192,0.55,0.158,2003-04 3367,Alonzo Mourning,NJN,34.0,208.28,118.38751200000002,Georgetown,USA,1992,1,2,12,8.0,2.3,0.7,-5.0,0.045,0.098,0.21,0.5579999999999999,0.073,2003-04 3368,Allen Iverson,PHI,29.0,182.88,74.84268,Georgetown,USA,1996,1,1,48,26.4,3.7,6.8,-2.1,0.019,0.079,0.34299999999999997,0.478,0.325,2003-04 3369,Ben Handlogten,UTA,30.0,208.28,108.86208,Western Michigan,USA,Undrafted,Undrafted,Undrafted,17,4.0,3.2,0.4,-4.7,0.156,0.244,0.187,0.5770000000000001,0.063,2003-04 3370,Ben Wallace,DET,29.0,205.74,108.86208,Virginia Union,USA,Undrafted,Undrafted,Undrafted,81,9.5,12.4,1.7,7.8,0.121,0.254,0.152,0.441,0.075,2003-04 3371,Bimbo Coles,MIA,36.0,187.96,82.553744,Virginia Tech,USA,1990,2,40,22,1.3,0.5,0.7,-14.1,0.013000000000000001,0.06,0.131,0.382,0.163,2003-04 3372,Bo Outlaw,MEM,33.0,203.2,99.79024,Houston,USA,Undrafted,Undrafted,Undrafted,82,4.6,4.2,1.1,6.4,0.087,0.156,0.12300000000000001,0.522,0.09300000000000001,2003-04 3373,Calvin Booth,SEA,28.0,210.82,104.779752,Penn State,USA,1999,2,35,71,4.9,3.9,0.4,-2.6,0.081,0.17800000000000002,0.14400000000000002,0.521,0.037000000000000005,2003-04 3374,Calbert Cheaney,GSW,32.0,200.66,98.429464,Indiana,USA,1993,1,6,79,7.6,3.3,1.7,1.1,0.043,0.10300000000000001,0.158,0.493,0.11199999999999999,2003-04 3375,Bryon Russell,LAL,33.0,200.66,102.0582,Long Beach State,USA,1993,2,45,72,4.0,2.0,1.0,1.2,0.038,0.14400000000000002,0.149,0.53,0.122,2003-04 3376,Bryce Drew,NOH,29.0,190.5,83.46092800000001,Valparaiso,USA,1998,1,16,15,0.8,0.4,0.9,-14.1,0.0,0.098,0.16,0.311,0.26,2003-04 3377,Bruno Sundov,NYK,24.0,218.44,111.58363200000001,None,Croatia,1998,2,35,5,2.2,2.0,0.2,-9.9,0.063,0.267,0.24,0.435,0.091,2003-04 3378,Bruce Bowen,SAS,33.0,200.66,90.7184,Cal State-Fullerton,USA,Undrafted,Undrafted,Undrafted,82,6.9,3.1,1.4,8.7,0.02,0.086,0.115,0.512,0.068,2003-04 3379,Britton Johnsen,ORL,24.0,208.28,95.25432,Utah,USA,Undrafted,Undrafted,Undrafted,20,2.1,2.3,0.6,-16.4,0.053,0.127,0.126,0.318,0.07200000000000001,2003-04 3380,Brian Skinner,MIL,28.0,205.74,120.20188,Baylor,USA,1998,1,22,56,10.5,7.3,0.9,-1.9,0.085,0.20800000000000002,0.18899999999999997,0.513,0.052000000000000005,2003-04 3381,Brian Scalabrine,NJN,26.0,205.74,108.86208,Southern California,USA,2001,2,34,69,3.5,2.5,0.9,-0.7,0.054000000000000006,0.168,0.152,0.48200000000000004,0.12300000000000001,2003-04 3382,Brian Grant,MIA,32.0,205.74,115.212368,Xavier,USA,1994,1,8,76,8.7,6.9,0.9,0.2,0.086,0.183,0.151,0.502,0.051,2003-04 3383,Brian Cook,LAL,23.0,205.74,106.140528,Illinois,USA,2003,1,24,35,4.4,2.9,0.6,-2.5,0.071,0.19,0.172,0.505,0.079,2003-04 3384,Derrick Dial,ORL,28.0,193.04,83.46092800000001,Eastern Michigan,USA,1998,2,52,9,2.9,1.4,0.2,8.4,0.06,0.09300000000000001,0.174,0.41200000000000003,0.042,2003-04 3385,Brian Cardinal,GSW,27.0,203.2,111.13004,Purdue,USA,2000,2,44,76,9.6,4.2,1.4,3.7,0.07,0.156,0.18899999999999997,0.626,0.106,2003-04 3386,Brent Barry,SEA,32.0,198.12,92.079176,Oregon State,USA,1995,1,15,59,10.8,3.5,5.8,1.2,0.013999999999999999,0.11800000000000001,0.156,0.6679999999999999,0.29,2003-04 3387,Brendan Haywood,WAS,24.0,213.36,121.562656,North Carolina,USA,2001,1,20,77,7.0,5.0,0.6,-2.7,0.133,0.159,0.17,0.547,0.051,2003-04 3388,Brandon Hunter,BOS,23.0,200.66,117.93392,Ohio,USA,2003,2,56,36,3.5,3.3,0.5,-0.8,0.134,0.185,0.168,0.46299999999999997,0.077,2003-04 3389,Brandon Armstrong,NJN,24.0,195.58,83.91452,Pepperdine,USA,2001,1,23,56,2.7,0.8,0.3,-14.0,0.035,0.092,0.22899999999999998,0.42700000000000005,0.065,2003-04 3390,Brad Miller,SAC,28.0,213.36,118.38751200000002,Purdue,USA,Undrafted,Undrafted,Undrafted,72,14.1,10.3,4.3,8.9,0.087,0.228,0.17600000000000002,0.579,0.179,2003-04 3391,Bostjan Nachbar,HOU,23.0,205.74,100.243832,None,Slovenia,2002,1,15,45,3.1,1.6,0.7,2.0,0.021,0.136,0.159,0.47700000000000004,0.10300000000000001,2003-04 3392,Boris Diaw,ATL,22.0,203.2,97.52228000000001,None,France,2003,1,21,76,4.5,4.5,2.4,-5.9,0.068,0.138,0.114,0.483,0.154,2003-04 3393,Bonzi Wells,MEM,27.0,195.58,95.25432,Ball State,USA,1998,1,11,72,12.3,3.6,1.9,0.1,0.047,0.11199999999999999,0.263,0.47600000000000003,0.136,2003-04 3394,Bobby Simmons,LAC,24.0,198.12,106.59411999999999,DePaul,USA,2001,2,41,56,7.8,4.7,1.7,-3.6,0.096,0.125,0.168,0.488,0.11699999999999999,2003-04 3395,Bobby Jackson,SAC,31.0,185.42,83.91452,Minnesota,USA,1997,1,23,50,13.8,3.5,2.1,4.7,0.052000000000000005,0.111,0.265,0.5379999999999999,0.171,2003-04 3396,Bob Sura,ATL,31.0,195.58,90.7184,Florida State,USA,1995,1,17,80,7.5,4.1,2.9,0.8,0.071,0.158,0.191,0.51,0.24,2003-04 3397,Brevin Knight,MIL,28.0,177.8,77.11064,Stanford,USA,1997,1,16,56,4.7,2.0,3.6,-4.4,0.016,0.115,0.156,0.475,0.34299999999999997,2003-04 3398,Richard Hamilton,DET,26.0,200.66,87.543256,Connecticut,USA,1999,1,7,78,17.6,3.6,4.0,6.9,0.033,0.08199999999999999,0.253,0.522,0.212,2003-04 3399,Desmond Ferguson,POR,26.0,200.66,95.25432,Detroit Mercy,USA,Undrafted,Undrafted,Undrafted,7,1.9,0.6,0.1,20.5,0.0,0.133,0.239,0.505,0.071,2003-04 3400,Desmond Penigar,ORL,22.0,200.66,111.13004,Utah State,USA,Undrafted,Undrafted,Undrafted,10,3.2,2.4,0.3,7.8,0.077,0.247,0.183,0.5379999999999999,0.053,2003-04 3401,Jeff Foster,IND,27.0,210.82,109.769264,Texas State,USA,1999,1,21,82,6.1,7.4,0.8,12.6,0.146,0.215,0.11699999999999999,0.578,0.051,2003-04 3402,Jason Williams,MEM,28.0,185.42,86.18248,Florida,USA,1998,1,7,72,10.9,2.0,6.8,-0.2,0.013000000000000001,0.065,0.187,0.517,0.365,2003-04 3403,Jason Terry,ATL,26.0,187.96,81.64656,Arizona,USA,1999,1,10,81,16.8,4.1,5.4,-4.0,0.019,0.106,0.231,0.519,0.261,2003-04 3404,Jason Richardson,GSW,23.0,198.12,102.0582,Michigan State,USA,2001,1,5,78,18.7,6.7,2.9,-0.3,0.047,0.151,0.256,0.504,0.14300000000000002,2003-04 3405,Jason Kidd,NJN,31.0,193.04,96.16150400000001,California,USA,1994,1,2,67,15.5,6.4,9.2,7.8,0.04,0.16399999999999998,0.24,0.485,0.42200000000000004,2003-04 3406,Jason Kapono,CLE,23.0,203.2,96.615096,UCLA,USA,2003,2,31,41,3.5,1.3,0.3,-7.6,0.048,0.094,0.17,0.519,0.06,2003-04 3407,Jason Hart,SAS,26.0,190.5,83.91452,Syracuse,USA,2000,2,49,53,3.3,1.5,1.5,11.1,0.018000000000000002,0.106,0.147,0.49700000000000005,0.21100000000000002,2003-04 3408,Jason Collins,NJN,25.0,213.36,117.93392,Stanford,USA,2001,1,18,78,5.9,5.1,2.0,6.8,0.077,0.13699999999999998,0.12,0.49700000000000005,0.105,2003-04 3409,Jason Collier,ATL,26.0,213.36,117.93392,Georgia Tech,USA,2000,1,15,20,11.3,5.6,0.9,2.2,0.077,0.156,0.192,0.5579999999999999,0.051,2003-04 3410,Jarvis Hayes,WAS,22.0,200.66,99.79024,Georgia,USA,2003,1,10,70,9.6,3.8,1.5,-7.2,0.037000000000000005,0.10800000000000001,0.18600000000000003,0.456,0.092,2003-04 3411,Jarron Collins,UTA,25.0,210.82,115.66596000000001,Stanford,USA,2001,2,52,81,6.0,3.9,1.0,-4.6,0.08199999999999999,0.152,0.132,0.5870000000000001,0.078,2003-04 3412,Jared Jeffries,WAS,22.0,210.82,104.32616,Indiana,USA,2002,1,11,82,5.7,5.2,1.1,-4.1,0.1,0.147,0.149,0.428,0.083,2003-04 3413,Jannero Pargo,CHI,24.0,185.42,79.3786,Arkansas,USA,Undrafted,Undrafted,Undrafted,31,6.7,1.2,2.3,-7.6,0.018000000000000002,0.07,0.237,0.491,0.268,2003-04 3414,Jamison Brewer,IND,23.0,193.04,83.46092800000001,Auburn,USA,2001,2,40,13,2.5,0.8,1.3,8.7,0.015,0.068,0.141,0.425,0.179,2003-04 3415,James Posey,MEM,27.0,203.2,97.52228000000001,Xavier,USA,1999,1,18,82,13.7,4.9,1.5,3.8,0.042,0.147,0.192,0.614,0.083,2003-04 3416,James Jones,IND,23.0,203.2,97.52228000000001,Miami (FL),USA,2003,2,49,6,1.2,0.3,0.0,-10.0,0.0,0.095,0.19399999999999998,0.354,0.0,2003-04 3417,Jamal Sampson,LAL,21.0,210.82,106.59411999999999,California,USA,2002,2,46,10,2.9,5.2,0.7,-7.2,0.161,0.266,0.11599999999999999,0.513,0.09300000000000001,2003-04 3418,Jamal Mashburn,NOH,31.0,203.2,112.037224,Kentucky,USA,1993,1,4,19,20.8,6.2,2.5,0.9,0.028999999999999998,0.145,0.293,0.457,0.12300000000000001,2003-04 3419,Jamal Crawford,CHI,24.0,195.58,86.18248,Michigan,USA,2000,1,8,80,17.3,3.5,5.1,-5.8,0.017,0.094,0.257,0.486,0.27,2003-04 3420,Jamaal Tinsley,IND,26.0,190.5,88.45044,Iowa State,USA,2001,1,27,52,8.3,2.6,5.8,13.5,0.024,0.09,0.172,0.541,0.35600000000000004,2003-04 3421,Jamaal Magloire,NOH,26.0,210.82,117.480328,Kentucky,Canada,2000,1,19,82,13.6,10.3,1.0,-1.5,0.10800000000000001,0.24100000000000002,0.201,0.551,0.055,2003-04 3422,Jalen Rose,TOR,31.0,203.2,98.429464,Michigan,USA,1994,1,13,66,15.5,4.0,5.0,-2.5,0.015,0.105,0.235,0.485,0.23600000000000002,2003-04 3423,Jake Voskuhl,PHX,26.0,210.82,111.13004,Connecticut,USA,2000,2,33,66,6.6,5.2,0.9,-1.0,0.086,0.16399999999999998,0.129,0.5770000000000001,0.053,2003-04 3424,Jeff McInnis,CLE,29.0,193.04,81.19296800000001,North Carolina,USA,1996,2,37,70,11.8,2.5,6.1,-0.4,0.016,0.069,0.179,0.511,0.29,2003-04 3425,Jake Tsakalidis,MEM,25.0,218.44,131.54168,None,Greece,2000,1,25,40,4.3,3.2,0.5,-2.3,0.078,0.204,0.155,0.532,0.054000000000000006,2003-04 3426,Jeff Trepagnier,DEN,24.0,193.04,90.7184,Southern California,USA,2001,2,35,11,2.3,1.4,0.4,-13.9,0.065,0.106,0.215,0.308,0.075,2003-04 3427,Jermaine O'Neal,IND,25.0,210.82,109.769264,None,USA,1996,1,17,78,20.1,10.0,2.1,8.3,0.08,0.247,0.3,0.489,0.11900000000000001,2003-04 3428,Kedrick Brown,CLE,23.0,200.66,100.697424,Northwest Florida State,USA,2001,1,11,55,5.3,2.7,1.2,3.3,0.049,0.122,0.139,0.5429999999999999,0.106,2003-04 3429,Karl Malone,LAL,40.0,205.74,117.480328,Louisiana Tech,USA,1985,1,13,42,13.2,8.7,3.9,8.1,0.051,0.237,0.193,0.555,0.185,2003-04 3430,Kareem Rush,LAL,23.0,198.12,97.52228000000001,Missouri,USA,2002,1,20,72,6.4,1.3,0.8,-1.1,0.018000000000000002,0.076,0.185,0.505,0.08,2003-04 3431,Kaniel Dickens,POR,25.0,203.2,97.52228000000001,Idaho,USA,2000,2,50,3,2.3,0.7,0.0,-23.2,0.16699999999999998,0.0,0.151,0.902,0.0,2003-04 3432,Juwan Howard,ORL,31.0,205.74,104.32616,Michigan,USA,1994,1,5,81,17.0,7.0,2.0,-7.0,0.067,0.161,0.239,0.513,0.098,2003-04 3433,Jumaine Jones,BOS,25.0,203.2,98.88305600000001,Georgia,USA,1999,1,27,42,2.2,1.6,0.3,-5.0,0.071,0.133,0.15,0.43799999999999994,0.065,2003-04 3434,Juan Dixon,WAS,25.0,190.5,74.389088,Maryland,USA,2002,1,17,71,9.4,2.1,1.9,-7.2,0.023,0.096,0.242,0.47600000000000003,0.17600000000000002,2003-04 3435,Josh Howard,DAL,24.0,200.66,95.25432,Wake Forest,USA,2003,1,29,67,8.6,5.5,1.4,8.2,0.10099999999999999,0.157,0.18100000000000002,0.485,0.085,2003-04 3436,Josh Davis,ATL,23.0,203.2,108.86208,Wyoming,USA,Undrafted,Undrafted,Undrafted,4,1.3,1.3,0.0,-24.3,0.048,0.222,0.135,0.46,0.0,2003-04 3437,Jonathan Bender,IND,23.0,213.36,99.336648,None,USA,1999,1,5,21,7.0,1.9,0.4,-1.6,0.045,0.13699999999999998,0.28800000000000003,0.584,0.076,2003-04 3438,Jon Barry,DEN,34.0,195.58,95.25432,Georgia Tech,USA,1992,1,21,57,6.2,2.2,2.6,0.3,0.024,0.10099999999999999,0.152,0.535,0.217,2003-04 3439,John Wallace,MIA,30.0,205.74,102.0582,Syracuse,USA,1996,1,18,37,4.3,1.6,0.4,-9.3,0.036000000000000004,0.153,0.24,0.486,0.083,2003-04 3440,John Salmons,PHI,24.0,200.66,95.25432,Miami (FL),USA,2002,1,26,77,5.8,2.5,1.7,-2.3,0.027999999999999997,0.11800000000000001,0.161,0.485,0.155,2003-04 3441,Joel Przybilla,ATL,24.0,215.9,115.66596000000001,Minnesota,USA,2000,1,9,17,2.9,6.5,0.4,-10.3,0.096,0.26,0.105,0.385,0.032,2003-04 3442,Joe Smith,MIL,28.0,208.28,102.0582,Maryland,USA,1995,1,1,76,10.9,8.5,1.0,1.1,0.114,0.20600000000000002,0.179,0.51,0.055,2003-04 3443,Joe Johnson,PHX,23.0,200.66,106.59411999999999,Arkansas,USA,2001,1,10,82,16.7,4.7,4.4,-2.9,0.027000000000000003,0.10300000000000001,0.21600000000000003,0.491,0.187,2003-04 3444,Jiri Welsch,BOS,24.0,200.66,94.34713599999999,None,Czech Republic,2002,1,16,81,9.2,3.7,2.3,-1.3,0.032,0.12300000000000001,0.17300000000000001,0.531,0.14,2003-04 3445,Jim Jackson,HOU,33.0,198.12,99.79024,Ohio State,USA,1992,1,4,80,12.9,6.1,2.8,2.5,0.02,0.154,0.171,0.54,0.126,2003-04 3446,Jerry Stackhouse,WAS,29.0,198.12,98.88305600000001,North Carolina,USA,1995,1,3,26,13.9,3.6,4.0,-9.4,0.023,0.11699999999999999,0.256,0.494,0.24,2003-04 3447,Jerome Williams,CHI,31.0,205.74,93.439952,Georgetown,USA,1996,1,26,68,6.2,7.0,1.1,-6.7,0.11699999999999999,0.22,0.135,0.522,0.076,2003-04 3448,Jerome Moiso,TOR,26.0,208.28,106.59411999999999,UCLA,France,2000,1,11,35,2.9,3.2,0.2,-3.3,0.11199999999999999,0.198,0.15,0.506,0.037000000000000005,2003-04 3449,Jerome James,SEA,28.0,215.9,123.377024,Florida A&M,USA,1998,2,36,65,5.0,3.5,0.5,3.2,0.09699999999999999,0.17,0.184,0.535,0.053,2003-04 3450,Jerome Beasley,MIA,24.0,205.74,107.501304,North Dakota,USA,2003,2,33,2,1.0,0.5,0.0,40.4,0.0,0.14300000000000002,0.27899999999999997,0.33299999999999996,0.0,2003-04 3451,Jelani McCoy,CLE,26.0,208.28,111.13004,UCLA,USA,1998,2,33,2,0.0,2.0,0.0,-38.3,0.111,0.25,0.03,0.0,0.0,2003-04 3452,Jahidi White,PHX,28.0,205.74,131.54168,Georgetown,USA,1998,2,43,62,4.2,4.2,0.1,-5.4,0.129,0.209,0.161,0.532,0.013000000000000001,2003-04 3453,Jacque Vaughn,ATL,29.0,185.42,86.18248,Kansas,USA,1997,1,27,71,3.8,1.6,2.7,-9.8,0.011000000000000001,0.094,0.14300000000000002,0.44,0.256,2003-04 3454,Jabari Smith,SAC,27.0,210.82,108.86208,Louisiana State,USA,2000,2,45,31,2.1,1.0,0.4,-12.6,0.065,0.127,0.22399999999999998,0.406,0.133,2003-04 3455,Eric Snow,PHI,31.0,190.5,92.532768,Michigan State,USA,1995,2,43,82,10.3,3.4,6.9,-2.8,0.025,0.087,0.165,0.494,0.32299999999999995,2003-04 3456,Eric Piatkowski,HOU,33.0,200.66,97.52228000000001,Nebraska,USA,1994,1,15,49,4.1,1.5,0.5,-1.3,0.017,0.102,0.156,0.507,0.069,2003-04 3457,Elton Brand,LAC,25.0,203.2,120.20188,Duke,USA,1999,1,1,69,20.0,10.3,3.3,-5.5,0.115,0.19,0.23199999999999998,0.5670000000000001,0.157,2003-04 3458,Elden Campbell,DET,35.0,213.36,126.552168,Clemson,USA,1990,1,27,65,5.6,3.2,0.7,5.1,0.07200000000000001,0.204,0.228,0.49,0.08900000000000001,2003-04 3459,Eduardo Najera,DAL,27.0,203.2,106.59411999999999,Oklahoma,Mexico,2000,2,38,58,3.0,2.7,0.4,5.4,0.095,0.135,0.129,0.483,0.051,2003-04 3460,Eddy Curry,CHI,21.0,210.82,129.27372,None,USA,2001,1,4,73,14.7,6.2,0.9,-6.3,0.07400000000000001,0.157,0.24600000000000002,0.5379999999999999,0.061,2003-04 3461,Eddie Robinson,CHI,28.0,205.74,95.25432,Central Oklahoma,USA,Undrafted,Undrafted,Undrafted,51,6.7,2.0,1.1,-3.2,0.028999999999999998,0.085,0.171,0.49700000000000005,0.09699999999999999,2003-04 3462,Eddie Jones,MIA,32.0,198.12,90.7184,Temple,USA,1994,1,10,81,17.3,3.8,3.2,1.3,0.015,0.107,0.225,0.5379999999999999,0.16,2003-04 3463,Eddie House,LAC,26.0,185.42,79.3786,Arizona State,USA,2000,2,37,60,6.8,2.3,2.5,-9.5,0.026000000000000002,0.111,0.20199999999999999,0.436,0.228,2003-04 3464,Eddie Gill,POR,25.0,182.88,86.18248,Weber State,USA,Undrafted,Undrafted,Undrafted,22,2.3,0.8,0.7,-3.4,0.034,0.10800000000000001,0.191,0.5579999999999999,0.21899999999999997,2003-04 3465,Earl Watson,MEM,25.0,185.42,86.18248,UCLA,USA,2001,2,39,81,5.7,2.2,5.0,6.6,0.033,0.09,0.185,0.43799999999999994,0.39299999999999996,2003-04 3466,Earl Boykins,DEN,28.0,165.1,60.327736,Eastern Michigan,USA,Undrafted,Undrafted,Undrafted,82,10.2,1.7,3.6,-0.1,0.025,0.063,0.22399999999999998,0.501,0.285,2003-04 3467,Dwyane Wade,MIA,22.0,193.04,96.16150400000001,Marquette,USA,2003,1,5,61,16.2,4.0,4.5,1.9,0.046,0.08800000000000001,0.24600000000000002,0.53,0.24100000000000002,2003-04 3468,Drew Gooden,ORL,22.0,208.28,109.769264,Kansas,USA,2002,1,4,79,11.6,6.5,1.1,-12.8,0.083,0.2,0.226,0.484,0.076,2003-04 3469,Doug Overton,LAC,34.0,190.5,86.18248,La Salle,USA,1991,2,40,61,3.7,1.4,2.3,-5.9,0.019,0.075,0.139,0.433,0.215,2003-04 3470,Doug Christie,SAC,34.0,198.12,92.98635999999999,Pepperdine,USA,1992,1,17,82,10.1,4.0,4.2,6.7,0.028999999999999998,0.10400000000000001,0.149,0.544,0.17800000000000002,2003-04 3471,Donyell Marshall,TOR,31.0,205.74,104.32616,Connecticut,USA,1994,1,4,82,14.7,9.9,1.5,-2.3,0.08,0.23,0.195,0.5479999999999999,0.075,2003-04 3472,Donnell Harvey,PHX,23.0,203.2,99.79024,Florida,USA,2000,1,22,60,4.0,2.7,0.4,-6.2,0.071,0.16699999999999998,0.162,0.503,0.045,2003-04 3473,Dirk Nowitzki,DAL,26.0,213.36,111.13004,None,Germany,1998,1,9,77,21.8,8.7,2.7,7.2,0.033,0.221,0.24600000000000002,0.561,0.11,2003-04 3474,Dion Glover,TOR,25.0,195.58,102.0582,Georgia Tech,USA,1999,1,20,69,9.0,3.9,1.9,-4.9,0.04,0.14,0.212,0.47100000000000003,0.138,2003-04 3475,Dikembe Mutombo,NYK,38.0,218.44,120.20188,Georgetown,Congo,1991,1,4,65,5.6,6.7,0.4,-1.4,0.114,0.21600000000000003,0.124,0.523,0.026000000000000002,2003-04 3476,Devin Brown,SAS,25.0,195.58,106.59411999999999,Texas-San Antonio,USA,Undrafted,Undrafted,Undrafted,58,4.0,2.2,0.6,2.0,0.067,0.16699999999999998,0.195,0.512,0.095,2003-04 3477,Devean George,LAL,26.0,203.2,108.86208,Augsburg,USA,1999,1,23,82,7.4,4.0,1.4,4.7,0.05,0.14300000000000002,0.16,0.49200000000000005,0.08900000000000001,2003-04 3478,Eric Williams,CLE,31.0,203.2,99.79024,Providence,USA,1995,1,14,71,10.0,4.0,1.7,2.8,0.038,0.128,0.19399999999999998,0.493,0.105,2003-04 3479,Erick Dampier,GSW,28.0,210.82,120.20188,Mississippi State,USA,1996,1,10,74,12.3,12.0,0.8,-0.5,0.159,0.247,0.17800000000000002,0.573,0.044000000000000004,2003-04 3480,Erick Strickland,MIL,30.0,190.5,95.25432,Nebraska,USA,Undrafted,Undrafted,Undrafted,43,5.4,1.7,2.1,4.3,0.026000000000000002,0.11599999999999999,0.215,0.529,0.248,2003-04 3481,Ervin Johnson,MIN,36.0,210.82,115.66596000000001,New Orleans,USA,1993,1,23,66,1.9,3.5,0.4,7.1,0.078,0.18899999999999997,0.07200000000000001,0.551,0.033,2003-04 3482,J.R. Bremer,GSW,23.0,187.96,83.91452,St. Bonaventure,USA,Undrafted,Undrafted,Undrafted,36,3.3,1.0,1.4,-9.6,0.022000000000000002,0.071,0.191,0.354,0.193,2003-04 3483,Ira Newble,CLE,29.0,200.66,99.79024,Miami (OH),USA,Undrafted,Undrafted,Undrafted,64,4.0,2.4,1.1,-4.7,0.059000000000000004,0.083,0.127,0.429,0.09,2003-04 3484,Ime Udoka,LAL,26.0,195.58,97.52228000000001,Portland State,USA,Undrafted,Undrafted,Undrafted,4,2.0,1.3,0.5,-17.6,0.043,0.154,0.245,0.37200000000000005,0.154,2003-04 3485,Hubert Davis,NJN,34.0,195.58,83.007336,North Carolina,USA,1992,1,20,17,0.2,0.5,0.2,4.6,0.032,0.086,0.09699999999999999,0.168,0.083,2003-04 3486,Howard Eisley,PHX,31.0,187.96,81.64656,Boston College,USA,1994,2,30,67,6.9,1.9,4.1,-5.8,0.016,0.087,0.187,0.469,0.31,2003-04 3487,Horace Grant,LAL,38.0,208.28,111.13004,Clemson,USA,1987,1,10,55,4.1,4.2,1.3,1.6,0.078,0.175,0.115,0.45,0.098,2003-04 3488,Hiram Fuller,ATL,23.0,205.74,108.86208,Fresno State,USA,Undrafted,Undrafted,Undrafted,4,2.0,2.8,0.5,3.0,0.08199999999999999,0.149,0.147,0.376,0.095,2003-04 3489,Hedo Turkoglu,SAS,25.0,208.28,99.79024,None,Turkey,2000,1,16,80,9.2,4.5,1.9,12.7,0.028999999999999998,0.165,0.18100000000000002,0.516,0.122,2003-04 3490,Greg Ostertag,UTA,31.0,218.44,127.00576000000001,Kansas,USA,1995,1,28,78,6.8,7.4,1.6,-0.6,0.126,0.2,0.134,0.506,0.096,2003-04 3491,Greg Buckner,PHI,27.0,193.04,95.25432,Clemson,USA,1998,2,53,53,3.1,1.9,0.8,-2.1,0.047,0.124,0.15,0.439,0.115,2003-04 3492,Gordan Giricek,UTA,27.0,195.58,95.25432,None,Croatia,1999,2,40,73,11.3,3.1,1.7,-2.2,0.028999999999999998,0.10099999999999999,0.201,0.521,0.10400000000000001,2003-04 3493,Desmond Mason,MIL,26.0,195.58,100.697424,Oklahoma State,USA,2000,1,17,82,14.4,4.4,1.9,3.1,0.043,0.12,0.218,0.552,0.10300000000000001,2003-04 3494,Glenn Robinson,PHI,31.0,200.66,108.86208,Purdue,USA,1994,1,1,42,16.6,4.5,1.4,-6.2,0.040999999999999995,0.121,0.267,0.518,0.085,2003-04 3495,Gilbert Arenas,WAS,22.0,190.5,86.636072,Arizona,USA,2001,2,30,55,19.6,4.6,5.0,-5.5,0.028999999999999998,0.109,0.268,0.512,0.244,2003-04 3496,Gerald Wallace,SAC,21.0,200.66,97.52228000000001,Alabama,USA,2001,1,25,37,2.0,2.0,0.5,-2.6,0.105,0.134,0.142,0.377,0.09,2003-04 3497,George Lynch,NOH,33.0,203.2,106.59411999999999,North Carolina,USA,1993,1,12,78,4.8,4.0,1.5,-2.9,0.062,0.14800000000000002,0.126,0.47200000000000003,0.114,2003-04 3498,Gary Trent,MIN,29.0,203.2,113.398,Ohio,USA,1995,1,11,68,5.6,3.2,0.7,-4.4,0.098,0.146,0.19399999999999998,0.515,0.081,2003-04 3499,Gary Payton,LAL,35.0,193.04,81.64656,Oregon State,USA,1990,1,2,82,14.6,4.2,5.5,5.8,0.027999999999999997,0.105,0.20199999999999999,0.528,0.259,2003-04 3500,Fred Jones,IND,25.0,187.96,98.88305600000001,Oregon,USA,2002,1,14,81,4.9,1.6,2.1,2.3,0.02,0.08199999999999999,0.145,0.527,0.203,2003-04 3501,Fred Hoiberg,MIN,31.0,195.58,95.25432,Iowa State,USA,1995,2,52,79,6.7,3.4,1.4,4.5,0.013999999999999999,0.156,0.126,0.611,0.095,2003-04 3502,Frank Williams,NYK,24.0,190.5,96.16150400000001,Illinois,USA,2002,1,25,56,3.9,0.9,2.2,4.6,0.013999999999999999,0.07,0.198,0.478,0.27699999999999997,2003-04 3503,Francisco Elson,DEN,28.0,213.36,106.59411999999999,California,Netherlands,1999,2,41,62,3.5,3.3,0.5,-1.2,0.083,0.17800000000000002,0.13,0.498,0.06,2003-04 3504,Flip Murray,SEA,24.0,193.04,86.18248,Shaw,USA,2002,2,41,82,12.4,2.5,2.5,-3.6,0.026000000000000002,0.091,0.266,0.49700000000000005,0.185,2003-04 3505,Etan Thomas,WAS,26.0,208.28,117.93392,Syracuse,USA,2000,1,12,79,8.9,6.7,0.9,-8.5,0.106,0.209,0.17800000000000002,0.5379999999999999,0.066,2003-04 3506,Glen Rice,LAC,37.0,203.2,103.418976,Michigan,USA,1989,1,4,18,3.7,2.3,1.3,0.9,0.040999999999999995,0.132,0.165,0.395,0.151,2003-04 3507,Kenyon Martin,NJN,26.0,205.74,106.140528,Cincinnati,USA,2000,1,1,65,16.7,9.5,2.5,5.1,0.069,0.247,0.249,0.528,0.134,2003-04 3508,Aaron McKie,PHI,32.0,195.58,94.800728,Temple,USA,1994,1,17,68,2.2,2.5,1.5,0.2,0.019,0.155,0.07,0.51,0.135,2004-05 3509,Keith Bogans,CHA,25.0,195.58,97.52228000000001,Kentucky,USA,2003,2,43,74,9.6,3.1,1.8,-7.2,0.046,0.10300000000000001,0.218,0.465,0.124,2004-05 3510,Michael Ruffin,WAS,28.0,203.2,112.490816,Tulsa,USA,1999,2,32,79,1.4,4.2,0.8,-0.7,0.138,0.174,0.061,0.43200000000000005,0.07400000000000001,2004-05 3511,Michael Redd,MIL,25.0,198.12,97.068688,Ohio State,USA,2000,2,43,75,23.0,4.2,2.3,-4.0,0.028999999999999998,0.099,0.27399999999999997,0.536,0.11199999999999999,2004-05 3512,Michael Olowokandi,MIN,30.0,213.36,122.46983999999999,Pacific,Nigeria,1998,1,1,62,5.9,5.2,0.5,-1.2,0.10099999999999999,0.19699999999999998,0.17300000000000001,0.48,0.038,2004-05 3513,Michael Finley,DAL,32.0,200.66,102.0582,Wisconsin,USA,1995,1,21,64,15.7,4.1,2.6,8.2,0.022000000000000002,0.099,0.195,0.519,0.111,2004-05 3514,Michael Doleac,MIA,28.0,210.82,118.841104,Utah,USA,1998,1,12,80,4.0,3.2,0.6,3.1,0.077,0.18600000000000003,0.155,0.46,0.065,2004-05 3515,Michael Curry,IND,36.0,195.58,95.25432,Georgia Southern,USA,Undrafted,Undrafted,Undrafted,18,1.7,1.5,0.8,-11.7,0.036000000000000004,0.08800000000000001,0.073,0.461,0.107,2004-05 3516,Michael Bradley,PHI,26.0,205.74,102.965384,Villanova,USA,2001,1,17,18,1.8,1.6,0.3,2.8,0.081,0.177,0.126,0.6,0.068,2004-05 3517,Metta World Peace,IND,25.0,200.66,111.58363200000001,St. John's (NY),USA,1999,1,16,7,24.6,6.4,3.1,7.0,0.037000000000000005,0.14400000000000002,0.259,0.608,0.16399999999999998,2004-05 3518,Melvin Ely,CHA,27.0,208.28,118.38751200000002,Fresno State,USA,2002,1,12,79,7.3,4.1,1.0,-3.9,0.095,0.133,0.20199999999999999,0.465,0.078,2004-05 3519,Mehmet Okur,UTA,26.0,210.82,112.94440800000001,None,Turkey,2001,2,37,82,12.9,7.5,2.0,-5.8,0.10099999999999999,0.23,0.213,0.569,0.132,2004-05 3520,Maurice Taylor,NYK,28.0,205.74,115.66596000000001,Michigan,USA,1997,1,14,65,7.3,4.0,1.0,-2.3,0.062,0.166,0.207,0.48,0.091,2004-05 3521,Michael Stewart,ATL,30.0,208.28,104.32616,California,USA,Undrafted,Undrafted,Undrafted,12,2.1,3.3,0.4,-12.8,0.16399999999999998,0.183,0.09300000000000001,0.519,0.052000000000000005,2004-05 3522,Maurice Evans,SAC,26.0,195.58,99.79024,Texas,USA,Undrafted,Undrafted,Undrafted,65,6.4,3.1,0.7,-0.7,0.079,0.106,0.159,0.511,0.055999999999999994,2004-05 3523,Matt Harpring,UTA,29.0,200.66,104.779752,Georgia Tech,USA,1998,1,15,78,14.0,6.2,1.8,-7.3,0.092,0.14300000000000002,0.201,0.5489999999999999,0.09699999999999999,2004-05 3524,Matt Freije,NOH,23.0,208.28,112.94440800000001,Vanderbilt,USA,2004,2,53,23,4.0,2.7,0.9,-9.9,0.042,0.132,0.159,0.35600000000000004,0.079,2004-05 3525,Matt Carroll,CHA,24.0,198.12,96.16150400000001,Notre Dame,USA,Undrafted,Undrafted,Undrafted,25,9.0,2.4,0.7,2.3,0.032,0.12,0.24600000000000002,0.517,0.07,2004-05 3526,Matt Bonner,TOR,25.0,208.28,108.86208,Florida,USA,2003,2,45,82,7.2,3.5,0.6,-1.0,0.077,0.134,0.157,0.596,0.054000000000000006,2004-05 3527,Matt Barnes,SAC,25.0,200.66,102.511792,UCLA,USA,2002,2,45,43,3.8,3.1,1.3,3.3,0.078,0.141,0.138,0.465,0.113,2004-05 3528,Mateen Cleaves,SEA,27.0,187.96,95.25432,Michigan State,USA,2000,1,14,14,0.9,0.4,0.5,-16.5,0.033,0.08199999999999999,0.136,0.41200000000000003,0.19399999999999998,2004-05 3529,Marquis Daniels,DAL,24.0,198.12,90.7184,Auburn,USA,Undrafted,Undrafted,Undrafted,60,9.1,3.6,2.1,2.5,0.067,0.105,0.203,0.484,0.153,2004-05 3530,Marko Jaric,LAC,26.0,200.66,98.429464,None,Serbia,2000,2,30,50,9.9,3.2,6.1,1.3,0.016,0.10099999999999999,0.166,0.5,0.287,2004-05 3531,Mark Pope,DEN,32.0,208.28,106.59411999999999,Kentucky,USA,1996,2,52,9,0.4,0.9,0.1,-8.6,0.16699999999999998,0.115,0.122,0.33299999999999996,0.063,2004-05 3532,Mark Madsen,MIN,29.0,205.74,107.047712,Stanford,USA,2000,1,29,41,2.1,3.1,0.4,6.1,0.127,0.12300000000000001,0.08199999999999999,0.526,0.040999999999999995,2004-05 3533,Mark Jones,ORL,30.0,198.12,97.52228000000001,Central Florida,USA,2004,4,82,10,2.3,1.3,0.6,-0.4,0.05,0.067,0.133,0.325,0.075,2004-05 3534,Maurice Baker,POR,25.0,187.96,90.7184,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,5,0.0,0.4,0.2,27.3,0.063,0.055999999999999994,0.05,0.0,0.077,2004-05 3535,Michael Sweetney,NYK,22.0,203.2,122.46983999999999,Georgetown,USA,2003,1,9,77,8.4,5.4,0.6,-2.3,0.133,0.196,0.2,0.5920000000000001,0.05,2004-05 3536,Mickael Pietrus,GSW,23.0,198.12,97.52228000000001,None,France,2003,1,11,67,9.5,2.8,1.2,0.3,0.052000000000000005,0.107,0.228,0.539,0.105,2004-05 3537,Mike Bibby,SAC,27.0,185.42,86.18248,Arizona,USA,1998,1,2,80,19.6,4.2,6.8,3.1,0.027999999999999997,0.091,0.23600000000000002,0.5429999999999999,0.27699999999999997,2004-05 3538,Paul Shirley,PHX,27.0,208.28,104.32616,Iowa State,USA,Undrafted,Undrafted,Undrafted,9,1.3,0.2,0.3,-49.0,0.04,0.036000000000000004,0.223,0.47,0.2,2004-05 3539,Paul Pierce,BOS,27.0,198.12,104.32616,Kansas,USA,1998,1,10,82,21.6,6.6,4.2,3.5,0.032,0.17600000000000002,0.265,0.583,0.19699999999999998,2004-05 3540,Pau Gasol,MEM,24.0,213.36,108.86208,None,Spain,2001,1,3,56,17.8,7.3,2.4,4.1,0.08900000000000001,0.183,0.26,0.5820000000000001,0.14300000000000002,2004-05 3541,Pat Garrity,ORL,28.0,205.74,107.95489599999999,Notre Dame,USA,1998,1,19,71,4.6,1.7,0.4,-7.2,0.024,0.124,0.157,0.505,0.051,2004-05 3542,Pape Sow,TOR,23.0,208.28,113.398,Cal State-Fullerton,Senegal,2004,2,47,27,2.3,2.1,0.1,0.3,0.084,0.193,0.146,0.444,0.012,2004-05 3543,P.J. Brown,NOH,35.0,210.82,108.40848799999999,Louisiana Tech,USA,1992,2,29,82,10.8,9.0,2.2,-9.3,0.107,0.205,0.157,0.512,0.109,2004-05 3544,Othella Harrington,CHI,31.0,205.74,106.59411999999999,Georgetown,USA,1996,2,30,70,8.0,4.2,0.8,6.4,0.094,0.166,0.207,0.5589999999999999,0.077,2004-05 3545,Omar Cook,TOR,23.0,185.42,86.18248,St. John's (NY),USA,2001,2,31,5,4.6,1.4,4.4,14.9,0.031,0.07200000000000001,0.19699999999999998,0.43200000000000005,0.415,2004-05 3546,Obinna Ekezie,ATL,29.0,205.74,122.46983999999999,Maryland,Nigeria,1999,2,37,42,5.5,4.3,0.3,-5.5,0.114,0.179,0.165,0.516,0.023,2004-05 3547,Nikoloz Tskitishvili,GSW,22.0,213.36,102.0582,None,Georgia,2002,1,5,35,1.4,1.2,0.3,-7.9,0.055999999999999994,0.136,0.203,0.324,0.081,2004-05 3548,Nick Van Exel,POR,33.0,185.42,86.18248,Cincinnati,USA,1993,2,37,53,11.1,3.0,4.3,-4.0,0.015,0.09699999999999999,0.195,0.494,0.231,2004-05 3549,Nick Collison,SEA,24.0,205.74,115.66596000000001,Kansas,USA,2003,1,12,82,5.6,4.6,0.4,4.2,0.134,0.185,0.155,0.569,0.04,2004-05 3550,Nene,DEN,22.0,210.82,117.93392,None,Brazil,2002,1,7,55,9.6,5.9,1.5,2.3,0.09300000000000001,0.188,0.193,0.551,0.10300000000000001,2004-05 3551,Nenad Krstic,NJN,21.0,213.36,108.86208,None,Serbia and Montenegro,2002,1,24,75,10.0,5.3,1.0,1.4,0.098,0.15,0.19,0.547,0.067,2004-05 3552,Ndudi Ebi,MIN,21.0,205.74,88.45044,None,USA,2003,1,26,2,13.5,8.0,0.5,17.9,0.109,0.20800000000000002,0.23,0.541,0.033,2004-05 3553,Nazr Mohammed,SAS,27.0,208.28,113.398,Kentucky,USA,1998,1,29,77,9.5,7.6,0.4,-4.6,0.14,0.2,0.19,0.521,0.028999999999999998,2004-05 3554,Morris Peterson,TOR,27.0,200.66,97.52228000000001,Michigan State,USA,2000,1,21,82,12.5,4.1,2.1,-0.3,0.032,0.122,0.18899999999999997,0.5429999999999999,0.11,2004-05 3555,Moochie Norris,HOU,31.0,185.42,83.91452,West Florida,USA,1996,2,33,38,2.4,1.2,1.0,-5.9,0.034,0.113,0.193,0.376,0.207,2004-05 3556,Mo Williams,MIL,22.0,185.42,85.728888,Alabama,USA,2003,2,47,80,10.2,3.1,6.1,-3.4,0.025,0.10099999999999999,0.198,0.504,0.33899999999999997,2004-05 3557,Milt Palacio,TOR,27.0,190.5,95.25432,Colorado State,Belize,Undrafted,Undrafted,Undrafted,80,5.8,1.7,3.5,1.1,0.02,0.081,0.172,0.507,0.29600000000000004,2004-05 3558,Mikki Moore,LAC,29.0,213.36,101.151016,Nebraska,USA,Undrafted,Undrafted,Undrafted,74,5.4,3.3,0.6,-2.3,0.107,0.149,0.165,0.5710000000000001,0.07,2004-05 3559,Mike Wilks,SAS,26.0,177.8,81.64656,Rice,USA,Undrafted,Undrafted,Undrafted,48,1.7,0.5,0.7,-10.5,0.016,0.08900000000000001,0.17600000000000002,0.48200000000000004,0.23399999999999999,2004-05 3560,Mike Miller,MEM,25.0,203.2,98.88305600000001,Florida,USA,2000,1,5,76,13.4,3.9,2.9,5.5,0.019,0.134,0.19699999999999998,0.614,0.16899999999999998,2004-05 3561,Mike James,HOU,30.0,187.96,85.275296,Duquesne,USA,Undrafted,Undrafted,Undrafted,74,11.8,2.8,3.6,4.4,0.022000000000000002,0.105,0.22899999999999998,0.534,0.253,2004-05 3562,Mike Dunleavy,GSW,24.0,205.74,104.32616,Duke,USA,2002,1,3,79,13.4,5.5,2.6,-1.2,0.039,0.149,0.191,0.539,0.127,2004-05 3563,Mark Blount,BOS,29.0,213.36,113.398,Pittsburgh,USA,1997,2,54,82,9.4,4.8,1.6,0.4,0.079,0.135,0.179,0.5589999999999999,0.098,2004-05 3564,Mario Kasun,ORL,25.0,213.36,117.93392,None,Croatia,2002,2,40,44,2.7,2.9,0.2,-5.4,0.157,0.243,0.168,0.505,0.035,2004-05 3565,Marcus Haislip,IND,24.0,208.28,104.32616,Tennessee,USA,2002,1,13,9,3.6,1.7,0.3,-8.1,0.054000000000000006,0.122,0.22699999999999998,0.373,0.055999999999999994,2004-05 3566,Marcus Fizer,MIL,26.0,203.2,117.93392,Iowa State,USA,2000,1,4,54,6.2,3.2,1.2,-7.2,0.039,0.205,0.214,0.498,0.128,2004-05 3567,Kyle Korver,PHI,24.0,198.12,95.707912,Creighton,USA,2003,2,51,82,11.5,4.6,2.2,0.6,0.017,0.14400000000000002,0.15,0.588,0.10800000000000001,2004-05 3568,Kwame Brown,WAS,23.0,210.82,110.22285600000001,None,USA,2001,1,1,42,7.0,4.9,0.9,-6.4,0.08900000000000001,0.175,0.179,0.49700000000000005,0.07400000000000001,2004-05 3569,Kurt Thomas,NYK,32.0,205.74,106.59411999999999,Texas Christian,USA,1995,1,10,80,11.5,10.4,2.0,-3.4,0.068,0.271,0.165,0.488,0.09,2004-05 3570,Kris Humphries,UTA,20.0,205.74,106.59411999999999,Minnesota,USA,2004,1,14,67,4.1,2.9,0.6,-12.2,0.09300000000000001,0.184,0.201,0.419,0.095,2004-05 3571,Kobe Bryant,LAL,26.0,198.12,99.79024,None,USA,1996,1,13,66,27.6,5.9,6.0,-2.2,0.04,0.125,0.316,0.563,0.287,2004-05 3572,Kirk Snyder,UTA,22.0,198.12,102.0582,Nevada,USA,2004,1,16,68,5.0,1.8,0.5,-10.9,0.069,0.10400000000000001,0.221,0.456,0.073,2004-05 3573,Kirk Penney,LAC,24.0,195.58,99.79024,Wisconsin,USA,Undrafted,Undrafted,Undrafted,4,0.5,0.3,0.3,-9.2,0.0,0.111,0.18899999999999997,0.33299999999999996,0.16699999999999998,2004-05 3574,Kirk Hinrich,CHI,24.0,190.5,86.18248,Kansas,USA,2003,1,7,77,15.7,3.9,6.4,-0.3,0.013000000000000001,0.11,0.22399999999999998,0.495,0.318,2004-05 3575,Keyon Dooling,MIA,25.0,190.5,86.18248,Missouri,USA,2000,1,10,74,5.2,1.2,1.8,4.4,0.011000000000000001,0.075,0.18600000000000003,0.486,0.187,2004-05 3576,Kevin Willis,ATL,42.0,213.36,111.13004,Michigan State,USA,1984,1,11,29,3.0,2.6,0.3,-15.5,0.091,0.16399999999999998,0.151,0.434,0.043,2004-05 3577,Kevin Ollie,PHI,32.0,187.96,88.45044,Connecticut,USA,Undrafted,Undrafted,Undrafted,26,1.1,0.7,0.7,0.6,0.023,0.125,0.11800000000000001,0.4,0.196,2004-05 3578,Kevin Martin,SAC,22.0,200.66,83.91452,Western Carolina,USA,2004,1,26,45,2.9,1.3,0.5,3.0,0.071,0.071,0.161,0.46399999999999997,0.071,2004-05 3579,Kevin Garnett,MIN,29.0,210.82,99.79024,None,USA,1995,1,5,82,22.2,13.5,5.7,1.2,0.095,0.303,0.26899999999999996,0.5670000000000001,0.264,2004-05 3580,Kerry Kittles,LAC,31.0,195.58,83.91452,Villanova,USA,1996,1,8,11,6.3,2.9,1.8,-4.0,0.005,0.156,0.155,0.446,0.13,2004-05 3581,Kenyon Martin,DEN,27.0,205.74,106.140528,Cincinnati,USA,2000,1,1,70,15.5,7.3,2.4,1.7,0.076,0.184,0.235,0.521,0.131,2004-05 3582,Kenny Thomas,SAC,27.0,200.66,111.13004,New Mexico,USA,1999,1,22,73,12.4,7.3,2.1,-1.2,0.09300000000000001,0.193,0.207,0.515,0.11800000000000001,2004-05 3583,Kenny Anderson,LAC,34.0,185.42,76.203456,Georgia Tech,USA,1991,1,2,43,4.7,2.0,2.4,-12.0,0.035,0.11199999999999999,0.16,0.467,0.22,2004-05 3584,Kendrick Perkins,BOS,20.0,208.28,127.00576000000001,None,USA,2003,1,27,60,2.5,2.9,0.4,1.2,0.122,0.247,0.157,0.515,0.062,2004-05 3585,Kendall Gill,MIL,37.0,195.58,97.975872,Illinois,USA,1990,1,5,14,6.1,2.6,1.9,-2.8,0.042,0.121,0.159,0.479,0.159,2004-05 3586,Kelvin Cato,ORL,30.0,210.82,124.7378,Iowa State,USA,1997,1,15,62,7.0,6.7,0.6,2.7,0.077,0.221,0.122,0.6,0.039,2004-05 3587,Keith Van Horn,DAL,29.0,208.28,111.13004,Utah,USA,1997,1,2,62,11.2,4.7,1.2,2.0,0.067,0.16,0.214,0.55,0.085,2004-05 3588,Keith McLeod,UTA,25.0,187.96,86.18248,Bowling Green,USA,Undrafted,Undrafted,Undrafted,53,7.8,2.1,4.5,-5.0,0.017,0.084,0.18899999999999997,0.44,0.282,2004-05 3589,Kedrick Brown,PHI,24.0,200.66,100.697424,Northwest Florida State,USA,2001,1,11,8,1.5,1.4,0.5,-26.4,0.022000000000000002,0.22699999999999998,0.11900000000000001,0.5770000000000001,0.154,2004-05 3590,Kareem Rush,CHA,24.0,198.12,97.52228000000001,Missouri,USA,2002,1,20,48,8.4,1.9,1.4,-7.3,0.022000000000000002,0.086,0.22,0.47100000000000003,0.121,2004-05 3591,Kaniel Dickens,NJN,26.0,203.2,97.52228000000001,Idaho,USA,2000,2,50,11,1.2,0.8,0.1,-31.3,0.079,0.14300000000000002,0.145,0.43700000000000006,0.036000000000000004,2004-05 3592,Lamar Odom,LAL,25.0,208.28,102.0582,Rhode Island,USA,1999,1,4,64,15.2,10.2,3.7,-2.0,0.067,0.242,0.21,0.539,0.182,2004-05 3593,Pavel Podkolzin,DAL,20.0,226.06,117.93392,None,Russia,2004,1,21,5,0.2,0.4,0.0,-12.2,0.0,0.33299999999999996,0.209,0.568,0.0,2004-05 3594,Lamond Murray,TOR,32.0,200.66,106.59411999999999,California,USA,1994,1,7,62,6.0,2.6,0.8,2.6,0.053,0.14400000000000002,0.19899999999999998,0.537,0.086,2004-05 3595,Larry Hughes,WAS,26.0,195.58,83.46092800000001,Saint Louis,USA,1998,1,8,61,22.0,6.3,4.7,2.8,0.034,0.151,0.264,0.523,0.214,2004-05 3596,Marcus Camby,DEN,31.0,210.82,102.0582,Massachusetts,USA,1996,1,2,66,10.3,10.0,2.3,4.1,0.078,0.293,0.17600000000000002,0.505,0.11900000000000001,2004-05 3597,Marcus Banks,BOS,23.0,187.96,90.7184,Nevada-Las Vegas,USA,2003,1,13,81,4.6,1.6,1.9,1.7,0.03,0.096,0.171,0.52,0.22,2004-05 3598,Marc Jackson,PHI,30.0,208.28,114.758776,Temple,USA,1997,2,37,81,12.0,5.0,1.0,-0.5,0.10400000000000001,0.13,0.226,0.5479999999999999,0.07400000000000001,2004-05 3599,Manu Ginobili,SAS,27.0,198.12,92.98635999999999,None,Argentina,1999,2,57,74,16.0,4.4,3.9,16.6,0.040999999999999995,0.136,0.242,0.609,0.217,2004-05 3600,Mamadou N'diaye,LAC,30.0,213.36,115.66596000000001,Auburn,Senegal,2000,1,26,11,1.8,1.6,0.1,-20.8,0.138,0.14300000000000002,0.152,0.433,0.027999999999999997,2004-05 3601,Malik Rose,NYK,30.0,200.66,111.13004,Drexel,USA,1996,2,44,76,7.0,4.5,0.8,-0.2,0.105,0.16899999999999998,0.195,0.511,0.07,2004-05 3602,Malik Allen,CHA,27.0,208.28,115.66596000000001,Villanova,USA,Undrafted,Undrafted,Undrafted,36,5.4,2.8,0.5,-4.9,0.08800000000000001,0.13699999999999998,0.18600000000000003,0.512,0.062,2004-05 3603,Maciej Lampe,NOH,20.0,210.82,124.7378,None,Poland,2003,2,30,37,3.1,2.4,0.3,-5.5,0.066,0.171,0.191,0.406,0.05,2004-05 3604,Luol Deng,CHI,20.0,203.2,99.79024,Duke,United Kingdom,2004,1,7,61,11.7,5.3,2.2,4.1,0.064,0.15,0.225,0.496,0.141,2004-05 3605,Luke Walton,LAL,25.0,203.2,106.59411999999999,Arizona,USA,2003,2,32,61,3.2,2.3,1.5,-7.4,0.079,0.132,0.152,0.49200000000000005,0.2,2004-05 3606,Luke Ridnour,SEA,24.0,185.42,75.749864,Oregon,USA,2003,1,14,82,10.0,2.5,5.9,-0.5,0.026000000000000002,0.071,0.174,0.504,0.304,2004-05 3607,Luke Jackson,CLE,23.0,200.66,97.52228000000001,Oregon,USA,2004,1,10,10,2.9,0.6,0.3,-23.0,0.039,0.111,0.308,0.489,0.16699999999999998,2004-05 3608,Luis Flores,DEN,24.0,187.96,88.45044,Manhattan,USA,2004,2,55,16,2.2,0.2,0.7,13.1,0.015,0.028999999999999998,0.242,0.586,0.262,2004-05 3609,Lucious Harris,CLE,34.0,195.58,92.98635999999999,Long Beach State,USA,1993,2,28,73,4.3,1.7,0.7,-1.6,0.038,0.085,0.145,0.475,0.073,2004-05 3610,Lorenzen Wright,MEM,29.0,210.82,108.86208,Memphis,USA,1996,1,7,80,9.6,7.7,1.1,1.3,0.09300000000000001,0.233,0.18100000000000002,0.501,0.066,2004-05 3611,Loren Woods,TOR,27.0,215.9,117.93392,Arizona,USA,2001,2,45,45,3.9,4.9,0.4,-8.3,0.11800000000000001,0.23600000000000002,0.145,0.46299999999999997,0.038,2004-05 3612,Lonny Baxter,NOH,26.0,203.2,117.93392,Maryland,USA,2002,2,43,4,1.5,2.0,0.0,-27.5,0.114,0.125,0.201,0.253,0.0,2004-05 3613,Lionel Chalmers,LAC,24.0,182.88,81.64656,Xavier,USA,2004,2,33,36,3.1,0.9,1.4,-3.9,0.012,0.07400000000000001,0.18100000000000002,0.409,0.21100000000000002,2004-05 3614,Linton Johnson,SAS,25.0,203.2,102.0582,Tulane,USA,Undrafted,Undrafted,Undrafted,2,0.0,1.5,0.0,22.8,0.0,0.214,0.084,0.0,0.0,2004-05 3615,Lindsey Hunter,DET,34.0,187.96,88.45044,Jackson State,USA,1993,1,10,76,3.8,1.6,1.7,1.3,0.04,0.09,0.162,0.435,0.19399999999999998,2004-05 3616,Lee Nailon,NOH,30.0,205.74,107.95489599999999,Texas Christian,USA,1999,2,43,68,14.2,4.4,1.6,-9.9,0.071,0.10400000000000001,0.24100000000000002,0.511,0.11,2004-05 3617,Leandro Barbosa,PHX,22.0,190.5,85.275296,None,Brazil,2003,1,28,63,7.0,2.1,2.0,-0.5,0.033,0.092,0.19,0.575,0.187,2004-05 3618,LeBron James,CLE,20.0,203.2,108.86208,None,USA,2003,1,1,80,27.2,7.4,7.2,1.9,0.038,0.17,0.297,0.5539999999999999,0.324,2004-05 3619,Lawrence Funderburke,CHI,34.0,205.74,104.32616,Ohio State,USA,1994,2,51,2,4.5,1.5,0.0,-7.1,0.055999999999999994,0.11800000000000001,0.18100000000000002,0.5489999999999999,0.0,2004-05 3620,Latrell Sprewell,MIN,34.0,195.58,88.45044,Alabama,USA,1992,1,24,80,12.8,3.2,2.2,-1.2,0.032,0.083,0.22,0.489,0.11900000000000001,2004-05 3621,Laron Profit,WAS,27.0,195.58,92.532768,Maryland,USA,1999,2,38,42,3.2,1.8,0.9,-4.2,0.063,0.152,0.172,0.489,0.151,2004-05 3622,Peja Stojakovic,SAC,28.0,208.28,103.872568,None,Serbia and Montenegro,1996,1,14,66,20.1,4.3,2.1,2.7,0.027999999999999997,0.09699999999999999,0.218,0.584,0.086,2004-05 3623,Peter John Ramos,WAS,20.0,220.98,124.7378,None,Puerto Rico,2004,2,32,6,1.8,0.7,0.0,-12.7,0.048,0.25,0.29,0.506,0.0,2004-05 3624,Predrag Drobnjak,ATL,29.0,210.82,122.46983999999999,None,Yugoslavia,1997,2,48,71,8.4,3.4,0.7,-8.5,0.055999999999999994,0.139,0.21,0.501,0.06,2004-05 3625,Travis Best,NJN,32.0,180.34,82.553744,Georgia Tech,USA,1995,1,23,76,6.8,1.4,1.9,-7.6,0.016,0.075,0.18600000000000003,0.508,0.183,2004-05 3626,Tracy McGrady,HOU,26.0,203.2,95.25432,None,USA,1997,1,9,78,25.7,6.2,5.7,4.0,0.027000000000000003,0.149,0.309,0.526,0.276,2004-05 3627,Torraye Braggs,HOU,29.0,203.2,111.13004,Xavier,USA,1998,2,57,7,0.9,1.7,0.0,-20.6,0.368,0.278,0.20600000000000002,0.429,0.0,2004-05 3628,Tony Parker,SAS,23.0,187.96,80.28578399999998,None,France,2001,1,28,80,16.6,3.7,6.1,9.7,0.02,0.107,0.25,0.528,0.32299999999999995,2004-05 3629,Tony Massenburg,SAS,37.0,205.74,113.398,Maryland,USA,1990,2,43,61,3.2,2.7,0.2,-3.5,0.09,0.191,0.171,0.467,0.035,2004-05 3630,Tony Delk,ATL,31.0,187.96,85.728888,Kentucky,USA,1996,1,16,56,11.9,2.3,1.9,-8.0,0.023,0.095,0.235,0.512,0.138,2004-05 3631,Tony Bobbitt,LAL,25.0,193.04,86.18248,Cincinnati,USA,Undrafted,Undrafted,Undrafted,2,2.5,1.5,0.0,-4.2,0.0,0.16699999999999998,0.195,0.5,0.0,2004-05 3632,Tony Battie,ORL,29.0,210.82,108.86208,Texas Tech,USA,1997,1,5,81,4.9,5.6,0.5,-3.2,0.067,0.198,0.111,0.498,0.033,2004-05 3633,Tony Allen,BOS,23.0,193.04,96.615096,Oklahoma State,USA,2004,1,25,77,6.4,2.9,0.8,6.3,0.079,0.126,0.187,0.542,0.08,2004-05 3634,Toni Kukoc,MIL,36.0,210.82,106.59411999999999,None,Croatia,1990,2,29,53,5.6,3.0,3.0,-0.8,0.034,0.133,0.145,0.523,0.228,2004-05 3635,Tom Gugliotta,ATL,35.0,208.28,113.398,North Carolina State,USA,1992,1,6,47,5.1,4.1,1.4,-12.1,0.068,0.16899999999999998,0.151,0.46,0.115,2004-05 3636,Tim Thomas,NYK,28.0,208.28,108.86208,Villanova,USA,1997,1,7,71,12.0,3.3,1.5,-5.9,0.027000000000000003,0.11599999999999999,0.213,0.536,0.09300000000000001,2004-05 3637,Tim Duncan,SAS,29.0,210.82,117.93392,Wake Forest,US Virgin Islands,1997,1,1,66,20.3,11.1,2.7,16.7,0.111,0.27699999999999997,0.29100000000000004,0.54,0.151,2004-05 3638,Tierre Brown,LAL,26.0,187.96,85.728888,McNeese State,USA,Undrafted,Undrafted,Undrafted,76,4.4,1.2,2.0,-5.1,0.023,0.079,0.2,0.43700000000000006,0.248,2004-05 3639,Theron Smith,CHA,24.0,203.2,102.0582,Ball State,USA,Undrafted,Undrafted,Undrafted,33,3.2,3.5,0.8,-16.7,0.081,0.182,0.151,0.36700000000000005,0.094,2004-05 3640,Theo Ratliff,POR,32.0,208.28,106.59411999999999,Wyoming,USA,1995,1,18,63,4.8,5.3,0.5,-2.7,0.077,0.141,0.099,0.5,0.03,2004-05 3641,Tayshaun Prince,DET,25.0,205.74,97.52228000000001,Kentucky,USA,2002,1,23,82,14.7,5.3,3.0,7.8,0.051,0.113,0.188,0.556,0.14,2004-05 3642,Tamar Slay,CHA,25.0,203.2,99.79024,Marshall,USA,2002,2,53,8,3.5,1.8,0.4,-12.8,0.071,0.16699999999999998,0.253,0.35100000000000003,0.067,2004-05 3643,Stromile Swift,MEM,25.0,205.74,104.32616,Louisiana State,USA,2000,1,2,60,10.1,4.6,0.7,1.7,0.08800000000000001,0.166,0.247,0.517,0.063,2004-05 3644,Steven Smith,MIA,36.0,203.2,100.243832,Michigan State,USA,1991,1,5,50,6.3,1.3,1.4,-6.0,0.022000000000000002,0.087,0.185,0.5539999999999999,0.161,2004-05 3645,Steven Hunter,PHX,23.0,213.36,108.86208,DePaul,USA,2001,1,15,76,4.6,3.0,0.2,2.9,0.10099999999999999,0.12300000000000001,0.139,0.596,0.018000000000000002,2004-05 3646,Steve Nash,PHX,31.0,190.5,88.45044,Santa Clara,Canada,1996,1,15,75,15.5,3.3,11.5,13.3,0.025,0.078,0.205,0.606,0.46,2004-05 3647,Steve Francis,ORL,28.0,190.5,90.7184,Maryland,USA,1999,1,2,78,21.3,5.8,7.0,-0.3,0.049,0.12,0.284,0.521,0.315,2004-05 3648,Steve Blake,WAS,25.0,190.5,78.017824,Maryland,USA,2003,2,38,44,4.3,1.6,1.6,-6.2,0.03,0.096,0.17,0.46799999999999997,0.18,2004-05 3649,Stephon Marbury,NYK,28.0,187.96,90.7184,Georgia Tech,USA,1996,1,4,82,21.7,3.0,8.1,-1.8,0.017,0.07,0.245,0.575,0.344,2004-05 3650,Travis Outlaw,POR,20.0,205.74,95.25432,None,USA,2003,1,23,59,5.4,2.1,0.6,-5.4,0.063,0.109,0.19699999999999998,0.532,0.078,2004-05 3651,Stephen Jackson,IND,27.0,203.2,98.88305600000001,Butler Community College,USA,1997,2,42,51,18.7,4.9,2.3,3.1,0.028999999999999998,0.133,0.27399999999999997,0.518,0.133,2004-05 3652,Tremaine Fowlkes,IND,29.0,203.2,99.79024,Fresno State,USA,1998,2,54,8,2.4,1.0,0.0,-4.4,0.077,0.11900000000000001,0.247,0.531,0.0,2004-05 3653,Trevor Ariza,NYK,20.0,203.2,90.7184,UCLA,USA,2004,2,43,80,5.9,3.0,1.1,-1.2,0.077,0.129,0.17800000000000002,0.503,0.10099999999999999,2004-05 3654,Zoran Planinic,NJN,22.0,200.66,90.7184,None,Croatia,2003,1,22,43,5.0,1.6,1.0,-4.8,0.044000000000000004,0.11800000000000001,0.22699999999999998,0.534,0.185,2004-05 3655,Zendon Hamilton,MIL,30.0,210.82,115.212368,St. John's (NY),USA,Undrafted,Undrafted,Undrafted,16,3.2,2.6,0.4,-8.1,0.136,0.2,0.19,0.48,0.063,2004-05 3656,Zeljko Rebraca,LAC,33.0,213.36,120.20188,None,Yugoslavia,1994,2,54,58,5.8,3.2,0.4,0.3,0.066,0.165,0.163,0.625,0.049,2004-05 3657,Zaza Pachulia,MIL,21.0,210.82,120.20188,None,Georgia,2003,2,42,74,6.2,5.1,0.8,-0.4,0.11699999999999999,0.217,0.16899999999999998,0.526,0.071,2004-05 3658,Zarko Cabarkapa,GSW,24.0,210.82,102.0582,None,Serbia and Montenegro,2003,1,17,40,6.0,2.6,0.6,4.2,0.08,0.17,0.21899999999999997,0.579,0.09300000000000001,2004-05 3659,Zach Randolph,POR,23.0,205.74,114.758776,Michigan State,USA,2001,1,19,46,18.9,9.6,1.9,-3.7,0.10300000000000001,0.21100000000000002,0.275,0.511,0.107,2004-05 3660,Yuta Tabuse,PHX,24.0,175.26,74.84268,Brigham Young-Hawaii,USA,Undrafted,Undrafted,Undrafted,4,1.8,1.0,0.8,2.7,0.087,0.105,0.192,0.451,0.25,2004-05 3661,Yao Ming,HOU,24.0,228.6,140.61352,None,China,2002,1,1,80,18.3,8.4,0.8,2.0,0.102,0.215,0.264,0.614,0.048,2004-05 3662,Willie Green,PHI,23.0,187.96,91.171992,Detroit Mercy,USA,2003,2,41,57,7.7,2.3,1.8,-5.8,0.022000000000000002,0.12,0.231,0.457,0.172,2004-05 3663,Wesley Person,DEN,34.0,198.12,90.7184,Auburn,USA,1994,1,23,41,6.4,2.0,1.0,0.6,0.005,0.135,0.166,0.57,0.094,2004-05 3664,Wang Zhi-zhi,MIA,27.0,215.9,128.820128,None,China,1999,2,36,20,2.2,0.9,0.3,-2.9,0.075,0.135,0.24100000000000002,0.521,0.1,2004-05 3665,Walter McCarty,PHX,31.0,208.28,104.32616,Kentucky,USA,1996,1,19,72,3.6,1.9,0.5,-0.3,0.037000000000000005,0.14300000000000002,0.14300000000000002,0.525,0.067,2004-05 3666,Wally Szczerbiak,MIN,28.0,200.66,110.676448,Miami (OH),USA,1999,1,6,81,15.5,3.7,2.4,1.7,0.039,0.095,0.213,0.595,0.125,2004-05 3667,Voshon Lenard,DEN,32.0,193.04,92.98635999999999,Minnesota,USA,1994,2,46,3,9.7,2.0,2.0,-2.1,0.0,0.136,0.22899999999999998,0.491,0.15,2004-05 3668,Vladimir Radmanovic,SEA,24.0,208.28,106.140528,None,Serbia,2001,1,12,63,11.8,4.6,1.4,8.2,0.036000000000000004,0.155,0.191,0.534,0.076,2004-05 3669,Vlade Divac,LAL,37.0,215.9,117.93392,None,Serbia and Montenegro,1989,1,26,15,2.3,2.1,1.3,-14.2,0.142,0.133,0.165,0.469,0.247,2004-05 3670,Vitaly Potapenko,SEA,30.0,208.28,129.27372,Wright State,Ukraine,1996,1,12,33,3.5,2.4,0.3,-4.1,0.107,0.183,0.157,0.581,0.045,2004-05 3671,Vince Carter,NJN,28.0,198.12,99.79024,North Carolina,USA,1998,1,5,77,24.5,5.2,4.2,0.1,0.042,0.125,0.31,0.541,0.23399999999999999,2004-05 3672,Vin Baker,HOU,33.0,210.82,108.86208,Hartford,USA,1993,1,8,27,1.3,1.4,0.4,-19.2,0.09300000000000001,0.129,0.14400000000000002,0.354,0.079,2004-05 3673,Viktor Khryapa,POR,22.0,205.74,95.25432,None,Russia,2004,1,22,32,4.2,3.4,0.8,-10.0,0.06,0.171,0.15,0.474,0.08,2004-05 3674,Udonis Haslem,MIA,25.0,203.2,103.418976,Florida,USA,Undrafted,Undrafted,Undrafted,80,10.9,9.1,1.4,9.2,0.11,0.20800000000000002,0.14800000000000002,0.588,0.061,2004-05 3675,Tyson Chandler,CHI,22.0,215.9,106.59411999999999,None,USA,2001,1,2,80,8.0,9.7,0.8,2.7,0.133,0.259,0.139,0.565,0.049,2004-05 3676,Tyronn Lue,ATL,28.0,182.88,80.73937600000001,Nebraska,USA,1998,1,23,70,11.2,2.1,4.6,-12.4,0.008,0.081,0.191,0.542,0.275,2004-05 3677,Troy Murphy,GSW,25.0,210.82,111.13004,Notre Dame,USA,2001,1,14,70,15.4,10.8,1.4,-4.1,0.109,0.242,0.22,0.495,0.068,2004-05 3678,Troy Hudson,MIN,29.0,185.42,77.11064,Southern Illinois,USA,Undrafted,Undrafted,Undrafted,79,8.7,1.3,3.6,-1.1,0.013000000000000001,0.055,0.21899999999999997,0.491,0.265,2004-05 3679,Trenton Hassell,MIN,26.0,195.58,90.7184,Austin Peay,USA,2001,2,29,82,6.6,2.7,1.6,-1.8,0.046,0.075,0.133,0.515,0.09699999999999999,2004-05 3680,Juwan Howard,HOU,32.0,205.74,104.32616,Michigan,USA,1994,1,5,61,9.6,5.7,1.5,1.9,0.094,0.16,0.19399999999999998,0.494,0.1,2004-05 3681,Stacey Augmon,ORL,36.0,203.2,92.079176,Nevada-Las Vegas,USA,1991,1,9,55,3.5,1.8,0.7,-5.0,0.07200000000000001,0.095,0.153,0.48,0.084,2004-05 3682,Smush Parker,PHX,24.0,193.04,81.64656,Fordham,USA,Undrafted,Undrafted,Undrafted,16,3.0,0.8,0.9,-25.2,0.033,0.066,0.23199999999999998,0.493,0.254,2004-05 3683,Robert Swift,SEA,19.0,213.36,111.13004,None,USA,2004,1,12,16,0.9,0.3,0.1,-27.8,0.015,0.078,0.13,0.501,0.051,2004-05 3684,Robert Horry,SAS,34.0,208.28,108.86208,Alabama,USA,1992,1,11,75,6.0,3.6,1.1,11.5,0.076,0.157,0.163,0.5329999999999999,0.091,2004-05 3685,Ricky Davis,BOS,25.0,200.66,88.45044,Iowa,USA,1998,1,21,82,16.0,3.0,3.0,-0.3,0.028999999999999998,0.078,0.235,0.547,0.163,2004-05 3686,Rick Brunson,LAC,33.0,193.04,86.18248,Temple,USA,Undrafted,Undrafted,Undrafted,80,5.5,2.3,5.1,-1.4,0.013999999999999999,0.09699999999999999,0.14300000000000002,0.46,0.332,2004-05 3687,Richie Frahm,POR,27.0,195.58,95.25432,Gonzaga,USA,Undrafted,Undrafted,Undrafted,43,3.8,1.4,0.7,-3.6,0.040999999999999995,0.10099999999999999,0.152,0.5429999999999999,0.09699999999999999,2004-05 3688,Richard Jefferson,NJN,25.0,200.66,102.0582,Arizona,USA,2001,1,13,33,22.2,7.3,4.0,-5.3,0.044000000000000004,0.166,0.28300000000000003,0.537,0.204,2004-05 3689,Richard Hamilton,DET,27.0,200.66,87.543256,Connecticut,USA,1999,1,7,76,18.7,3.9,4.9,7.8,0.03,0.087,0.249,0.528,0.226,2004-05 3690,Reggie Miller,IND,39.0,200.66,88.45044,UCLA,USA,1987,1,11,66,14.8,2.4,2.2,4.6,0.01,0.07400000000000001,0.204,0.5820000000000001,0.125,2004-05 3691,Reggie Evans,SEA,25.0,203.2,111.13004,Iowa,USA,Undrafted,Undrafted,Undrafted,79,4.9,9.3,0.7,0.6,0.16399999999999998,0.318,0.11900000000000001,0.512,0.046,2004-05 3692,Reece Gaines,MIL,24.0,198.12,92.98635999999999,Louisville,USA,2003,1,15,21,2.0,0.7,0.3,-17.5,0.006,0.07400000000000001,0.15,0.396,0.078,2004-05 3693,Ray Allen,SEA,29.0,195.58,92.98635999999999,Connecticut,USA,1996,1,5,78,23.9,4.4,3.7,3.4,0.032,0.106,0.276,0.555,0.17600000000000002,2004-05 3694,Raul Lopez,UTA,25.0,182.88,79.3786,None,Spain,2001,1,24,31,5.2,1.3,4.0,4.6,0.018000000000000002,0.079,0.17800000000000002,0.5379999999999999,0.363,2004-05 3695,Rasual Butler,MIA,26.0,200.66,92.98635999999999,La Salle,USA,2002,2,52,65,6.5,2.3,1.0,6.8,0.013999999999999999,0.125,0.18100000000000002,0.488,0.085,2004-05 3696,Rasho Nesterovic,SAS,29.0,213.36,115.66596000000001,None,Slovenia,1998,1,17,70,5.9,6.6,1.0,13.3,0.12300000000000001,0.177,0.136,0.46299999999999997,0.061,2004-05 3697,Rasheed Wallace,DET,30.0,210.82,104.32616,North Carolina,USA,1995,1,4,79,14.5,8.2,1.8,7.5,0.076,0.20199999999999999,0.223,0.499,0.094,2004-05 3698,Rashard Lewis,SEA,25.0,208.28,97.52228000000001,None,USA,1998,2,32,71,20.5,5.5,1.3,5.4,0.05,0.124,0.239,0.5710000000000001,0.064,2004-05 3699,Randy Livingston,UTA,30.0,193.04,94.800728,Louisiana State,USA,1996,2,42,17,3.8,0.7,2.6,-10.2,0.015,0.053,0.147,0.5379999999999999,0.319,2004-05 3700,Raja Bell,UTA,28.0,195.58,95.25432,Florida International,U.S. Virgin Islands,Undrafted,Undrafted,Undrafted,63,12.3,3.2,1.4,-7.3,0.032,0.107,0.20800000000000002,0.527,0.092,2004-05 3701,Rafer Alston,TOR,28.0,187.96,77.11064,Fresno State,USA,1998,2,39,80,14.2,3.5,6.4,-1.3,0.017,0.10099999999999999,0.21100000000000002,0.522,0.314,2004-05 3702,Rafael Araujo,TOR,24.0,210.82,127.00576000000001,Brigham Young,Brazil,2004,1,8,59,3.3,3.1,0.3,-1.7,0.08900000000000001,0.20199999999999999,0.154,0.49200000000000005,0.032,2004-05 3703,Raef LaFrentz,BOS,29.0,210.82,111.13004,Kansas,USA,1998,1,3,80,11.1,6.9,1.2,2.7,0.081,0.205,0.16699999999999998,0.5870000000000001,0.069,2004-05 3704,Qyntel Woods,MIA,24.0,203.2,100.243832,Northeast Mississippi Community College,USA,2002,1,21,3,3.3,2.0,0.0,-1.0,0.065,0.129,0.17,0.41700000000000004,0.0,2004-05 3705,Quinton Ross,LAC,24.0,198.12,87.543256,Southern Methodist,USA,Undrafted,Undrafted,Undrafted,78,5.1,2.7,1.4,-5.6,0.045,0.10800000000000001,0.13699999999999998,0.47100000000000003,0.109,2004-05 3706,Quentin Richardson,PHX,25.0,198.12,104.32616,DePaul,USA,2000,1,18,79,14.9,6.1,2.0,9.3,0.035,0.138,0.188,0.522,0.077,2004-05 3707,Primoz Brezec,CHA,25.0,215.9,114.30518400000001,None,Slovenia,2000,1,27,72,13.0,7.4,1.2,-8.8,0.10800000000000001,0.162,0.183,0.55,0.063,2004-05 3708,Robert Traylor,CLE,28.0,203.2,128.820128,Michigan,USA,1998,1,6,74,5.5,4.5,0.8,-2.0,0.111,0.17600000000000002,0.17300000000000001,0.461,0.075,2004-05 3709,Speedy Claxton,NOH,27.0,180.34,77.11064,Hofstra,USA,2000,1,20,62,11.5,3.0,6.0,-5.4,0.021,0.095,0.2,0.493,0.33,2004-05 3710,Rod Strickland,HOU,38.0,190.5,83.91452,DePaul,USA,1988,1,19,16,1.8,1.7,2.4,9.5,0.019,0.151,0.162,0.295,0.307,2004-05 3711,Rodney Rogers,PHI,34.0,200.66,122.46983999999999,Wake Forest,USA,1993,1,9,58,7.7,4.2,1.5,-8.8,0.05,0.163,0.191,0.462,0.11,2004-05 3712,Slava Medvedenko,LAL,26.0,208.28,113.398,None,Ukraine,Undrafted,Undrafted,Undrafted,43,3.8,1.8,0.3,-5.7,0.08199999999999999,0.12300000000000001,0.191,0.49,0.052000000000000005,2004-05 3713,Shawn Marion,PHX,27.0,200.66,103.418976,Nevada-Las Vegas,USA,1999,1,9,81,19.4,11.3,1.9,10.8,0.085,0.223,0.212,0.556,0.07200000000000001,2004-05 3714,Shawn Bradley,DAL,33.0,228.6,124.7378,Brigham Young,USA,1993,1,2,77,2.7,2.8,0.2,11.4,0.09300000000000001,0.18,0.126,0.494,0.024,2004-05 3715,Shaun Livingston,LAC,19.0,200.66,82.553744,None,USA,2004,1,4,30,7.4,3.0,5.0,-2.0,0.034,0.095,0.175,0.461,0.287,2004-05 3716,Shareef Abdur-Rahim,POR,28.0,205.74,111.13004,California,USA,1996,1,3,54,16.8,7.3,2.1,-5.4,0.079,0.161,0.22,0.581,0.106,2004-05 3717,Shaquille O'Neal,MIA,33.0,215.9,147.4174,Louisiana State,USA,1992,1,1,73,22.9,10.4,2.7,10.8,0.124,0.22399999999999998,0.303,0.583,0.149,2004-05 3718,Shane Battier,MEM,26.0,203.2,99.79024,Duke,USA,2001,1,6,80,9.9,5.2,1.6,6.5,0.07400000000000001,0.11900000000000001,0.146,0.555,0.081,2004-05 3719,Shandon Anderson,MIA,31.0,198.12,95.25432,Georgia,USA,1996,2,54,66,3.9,2.9,1.1,11.0,0.043,0.142,0.12,0.518,0.091,2004-05 3720,Sebastian Telfair,POR,20.0,182.88,72.57472,None,USA,2004,1,13,68,6.8,1.5,3.3,-7.5,0.009000000000000001,0.079,0.21100000000000002,0.47100000000000003,0.28,2004-05 3721,Sean Marks,SAS,29.0,208.28,113.398,California,New Zealand,1998,2,44,23,3.3,2.4,0.3,-6.6,0.078,0.162,0.19699999999999998,0.41200000000000003,0.065,2004-05 3722,Scott Williams,CLE,37.0,208.28,117.93392,North Carolina,USA,Undrafted,Undrafted,Undrafted,19,1.7,1.6,0.4,-11.1,0.11599999999999999,0.14,0.152,0.36,0.084,2004-05 3723,Scott Padgett,HOU,29.0,205.74,108.86208,Kentucky,USA,1999,1,28,66,4.2,2.8,0.8,11.2,0.059000000000000004,0.161,0.139,0.5489999999999999,0.096,2004-05 3724,Scot Pollard,IND,30.0,210.82,120.20188,Kansas,USA,1997,1,19,49,3.9,4.2,0.4,4.3,0.122,0.171,0.12300000000000001,0.506,0.034,2004-05 3725,Sasha Vujacic,LAL,21.0,200.66,87.543256,None,Slovenia,2004,1,27,35,2.9,1.8,1.5,-1.4,0.036000000000000004,0.14,0.152,0.40299999999999997,0.185,2004-05 3726,Sasha Pavlovic,CLE,21.0,200.66,95.25432,None,Montenegro,2003,1,19,65,4.8,1.1,0.8,0.5,0.02,0.083,0.182,0.516,0.091,2004-05 3727,Samuel Dalembert,PHI,25.0,210.82,113.398,Seton Hall,Haiti,2001,1,26,72,8.2,7.5,0.5,1.6,0.11900000000000001,0.218,0.163,0.5429999999999999,0.031,2004-05 3728,Samaki Walker,WAS,29.0,205.74,113.398,Louisville,USA,1996,1,9,14,1.7,1.3,0.3,-10.9,0.066,0.08900000000000001,0.134,0.371,0.045,2004-05 3729,Sam Cassell,MIN,35.0,190.5,83.91452,Florida State,USA,1993,1,24,59,13.5,2.7,5.1,2.9,0.019,0.092,0.258,0.529,0.336,2004-05 3730,Ryan Humphrey,MEM,25.0,203.2,106.59411999999999,Notre Dame,USA,2002,1,19,35,2.9,2.5,0.2,-3.1,0.17,0.162,0.205,0.428,0.036000000000000004,2004-05 3731,Ryan Bowen,HOU,29.0,205.74,99.79024,Iowa,USA,1998,2,55,65,1.7,1.2,0.3,10.1,0.043,0.098,0.105,0.462,0.052000000000000005,2004-05 3732,Ruben Patterson,POR,29.0,195.58,101.151016,Cincinnati,USA,1998,2,31,70,11.6,3.9,2.0,-2.1,0.079,0.08199999999999999,0.203,0.5579999999999999,0.12,2004-05 3733,Royal Ivey,ATL,23.0,190.5,90.7184,Texas,USA,2004,2,37,62,3.5,1.4,1.7,-4.1,0.026000000000000002,0.099,0.156,0.484,0.19699999999999998,2004-05 3734,Ronald Dupree,DET,24.0,200.66,94.800728,Louisiana State,USA,Undrafted,Undrafted,Undrafted,47,3.2,2.0,0.5,-2.2,0.08900000000000001,0.157,0.174,0.515,0.094,2004-05 3735,Ron Mercer,NJN,29.0,200.66,97.52228000000001,Kentucky,USA,1997,1,6,18,7.6,2.2,1.1,-10.7,0.025,0.098,0.21,0.42200000000000004,0.111,2004-05 3736,Rodney White,GSW,25.0,205.74,104.32616,North Carolina-Charlotte,USA,2001,1,9,58,5.1,1.5,0.8,-3.9,0.038,0.111,0.228,0.475,0.11800000000000001,2004-05 3737,Rodney Buford,NJN,27.0,195.58,88.45044,Creighton,USA,1999,2,53,64,7.0,3.0,1.0,-9.7,0.027999999999999997,0.151,0.19399999999999998,0.43700000000000006,0.09300000000000001,2004-05 3738,Justin Reed,BOS,23.0,203.2,108.86208,Mississippi,USA,2004,2,40,23,1.8,0.7,0.4,8.0,0.08900000000000001,0.087,0.163,0.5760000000000001,0.128,2004-05 3739,Junior Harrington,NOH,24.0,193.04,86.18248,Wingate,USA,Undrafted,Undrafted,Undrafted,29,5.6,2.2,2.1,-10.1,0.027999999999999997,0.11199999999999999,0.20600000000000002,0.423,0.22399999999999998,2004-05 3740,Jumaine Jones,LAL,26.0,203.2,98.88305600000001,Georgia,USA,1999,1,27,76,7.6,5.2,0.9,-1.0,0.067,0.179,0.141,0.556,0.057,2004-05 3741,Clar. Weatherspoon,HOU,34.0,200.66,122.46983999999999,Southern Mississippi,USA,1992,1,9,40,3.1,3.1,0.4,8.1,0.08199999999999999,0.187,0.135,0.475,0.051,2004-05 3742,Chucky Atkins,LAL,30.0,180.34,72.57472,South Florida,USA,Undrafted,Undrafted,Undrafted,82,13.6,2.4,4.4,-2.3,0.012,0.063,0.17800000000000002,0.5579999999999999,0.201,2004-05 3743,Christian Laettner,MIA,35.0,210.82,111.13004,Duke,USA,1992,1,3,49,5.3,2.7,0.8,11.6,0.06,0.141,0.152,0.619,0.091,2004-05 3744,Chris Wilcox,LAC,22.0,208.28,106.59411999999999,Maryland,USA,2002,1,8,54,7.9,4.2,0.7,-4.3,0.079,0.192,0.21600000000000003,0.5429999999999999,0.068,2004-05 3745,Chris Webber,PHI,32.0,208.28,111.13004,Michigan,USA,1993,1,1,67,19.5,9.1,4.7,0.9,0.062,0.22399999999999998,0.295,0.47200000000000003,0.231,2004-05 3746,Chris Mihm,LAL,25.0,213.36,120.20188,Texas,USA,2000,1,7,75,9.8,6.7,0.7,-3.8,0.12,0.177,0.187,0.552,0.046,2004-05 3747,Chris Kaman,LAC,23.0,213.36,120.20188,Central Michigan,USA,2003,1,6,63,9.1,6.7,1.2,-4.4,0.1,0.204,0.188,0.522,0.077,2004-05 3748,Chris Duhon,CHI,22.0,185.42,83.91452,Duke,USA,2004,2,38,82,5.9,2.6,4.9,1.8,0.012,0.1,0.131,0.47100000000000003,0.28,2004-05 3749,Chris Bosh,TOR,21.0,208.28,106.59411999999999,Georgia Tech,USA,2003,1,4,81,16.8,8.9,1.9,-0.1,0.073,0.201,0.218,0.547,0.086,2004-05 3750,Chris Andersen,NOH,26.0,208.28,103.418976,Blinn,USA,Undrafted,Undrafted,Undrafted,67,7.7,6.1,1.1,-2.9,0.11900000000000001,0.22399999999999998,0.16899999999999998,0.581,0.09300000000000001,2004-05 3751,Chauncey Billups,DET,28.0,190.5,91.625584,Colorado,USA,1997,1,3,80,16.5,3.4,5.8,6.8,0.02,0.08900000000000001,0.207,0.609,0.27699999999999997,2004-05 3752,Charlie Ward,HOU,34.0,187.96,83.91452,Florida State,USA,1994,1,26,14,5.4,2.8,3.1,-0.9,0.019,0.105,0.133,0.45299999999999996,0.18899999999999997,2004-05 3753,Casey Jacobsen,NOH,24.0,198.12,97.52228000000001,Stanford,USA,2002,1,22,84,6.5,2.0,1.3,-0.4,0.023,0.081,0.14400000000000002,0.555,0.102,2004-05 3754,Caron Butler,LAL,25.0,200.66,98.429464,Connecticut,USA,2002,1,10,77,15.5,5.8,1.9,-4.1,0.06,0.124,0.20600000000000002,0.528,0.091,2004-05 3755,Carmelo Anthony,DEN,21.0,203.2,99.79024,Syracuse,USA,2003,1,3,75,20.8,5.7,2.6,3.6,0.064,0.124,0.29,0.526,0.129,2004-05 3756,Carlos Delfino,DET,22.0,198.12,104.32616,None,Argentina,2003,1,25,30,3.9,1.8,1.3,-2.5,0.035,0.114,0.162,0.431,0.138,2004-05 3757,Carlos Boozer,UTA,23.0,203.2,117.02673600000001,Duke,USA,2002,2,34,51,17.8,9.0,2.8,-4.3,0.098,0.222,0.243,0.56,0.147,2004-05 3758,Carlos Arroyo,DET,25.0,187.96,91.625584,Florida International,Puerto Rico,Undrafted,Undrafted,Undrafted,70,6.6,1.5,4.0,-8.6,0.02,0.067,0.191,0.466,0.332,2004-05 3759,Calvin Booth,MIL,29.0,210.82,104.779752,Penn State,USA,1999,2,35,51,2.4,2.1,0.2,-6.1,0.071,0.185,0.13699999999999998,0.508,0.03,2004-05 3760,Calbert Cheaney,GSW,33.0,200.66,98.429464,Indiana,USA,1993,1,6,55,4.5,2.3,1.2,-3.5,0.035,0.114,0.151,0.444,0.11599999999999999,2004-05 3761,Bryon Russell,DEN,34.0,200.66,102.0582,Long Beach State,USA,1993,2,45,70,4.4,2.5,1.0,0.1,0.053,0.141,0.139,0.537,0.115,2004-05 3762,Bruno Sundov,NYK,25.0,218.44,117.93392,None,Croatia,1998,2,35,21,1.2,0.6,0.1,-9.6,0.091,0.11900000000000001,0.276,0.33,0.063,2004-05 3763,Bruce Bowen,SAS,34.0,200.66,90.7184,Cal State-Fullerton,USA,Undrafted,Undrafted,Undrafted,82,8.2,3.5,1.5,9.5,0.022000000000000002,0.10400000000000001,0.127,0.521,0.075,2004-05 3764,Britton Johnsen,IND,25.0,208.28,95.25432,Utah,USA,Undrafted,Undrafted,Undrafted,6,2.0,1.7,0.7,-24.4,0.064,0.08800000000000001,0.14800000000000002,0.273,0.087,2004-05 3765,Brian Skinner,SAC,29.0,205.74,120.20188,Baylor,USA,1998,1,22,49,4.8,5.7,0.9,-3.9,0.11800000000000001,0.217,0.128,0.494,0.067,2004-05 3766,Clifford Robinson,NJN,38.0,208.28,108.86208,Connecticut,USA,1989,2,36,71,7.5,2.9,1.5,-8.1,0.033,0.113,0.168,0.47100000000000003,0.102,2004-05 3767,Brian Scalabrine,NJN,27.0,205.74,106.59411999999999,Southern California,USA,2001,2,34,54,6.3,4.5,1.6,-1.0,0.084,0.17,0.17,0.46799999999999997,0.132,2004-05 3768,Corey Maggette,LAC,25.0,198.12,102.0582,Duke,USA,1999,1,13,66,22.2,6.0,3.4,-0.7,0.035,0.154,0.27399999999999997,0.574,0.16699999999999998,2004-05 3769,Corsley Edwards,NOH,26.0,205.74,124.7378,Central Connecticut State,USA,2002,2,57,10,2.7,2.5,0.3,-14.6,0.11199999999999999,0.149,0.166,0.37200000000000005,0.057,2004-05 3770,DeSagana Diop,CLE,23.0,213.36,127.00576000000001,None,Senegal,2001,1,8,39,1.0,1.8,0.4,-5.9,0.106,0.153,0.125,0.281,0.084,2004-05 3771,David West,NOH,24.0,203.2,102.511792,Xavier,USA,2003,1,18,30,6.2,4.3,0.8,-22.0,0.079,0.204,0.196,0.479,0.085,2004-05 3772,David Wesley,HOU,34.0,185.42,92.079176,Baylor,USA,Undrafted,Undrafted,Undrafted,80,11.9,2.9,3.3,-0.6,0.016,0.081,0.172,0.513,0.159,2004-05 3773,David Harrison,IND,22.0,213.36,127.00576000000001,Colorado,USA,2004,1,29,43,6.1,3.1,0.3,-1.2,0.086,0.13699999999999998,0.179,0.589,0.032,2004-05 3774,Darvin Ham,DET,31.0,200.66,108.86208,Texas Tech,USA,Undrafted,Undrafted,Undrafted,47,1.0,0.7,0.1,-10.4,0.094,0.079,0.106,0.45399999999999996,0.035,2004-05 3775,Darrick Martin,LAC,34.0,180.34,77.11064,UCLA,USA,Undrafted,Undrafted,Undrafted,11,3.8,0.9,2.5,2.9,0.019,0.044000000000000004,0.14800000000000002,0.392,0.235,2004-05 3776,Darrell Armstrong,DAL,37.0,185.42,81.64656,Fayetteville State,USA,Undrafted,Undrafted,Undrafted,66,4.0,1.7,2.7,-2.2,0.04,0.094,0.16899999999999998,0.43,0.295,2004-05 3777,Darko Milicic,DET,20.0,213.36,111.13004,None,Serbia,2003,1,2,37,1.8,1.2,0.2,5.3,0.013999999999999999,0.174,0.19899999999999998,0.387,0.05,2004-05 3778,Darius Songaila,SAC,27.0,203.2,108.86208,Wake Forest,Lithuania,2002,2,49,81,7.5,4.2,1.4,4.3,0.086,0.153,0.16399999999999998,0.5660000000000001,0.106,2004-05 3779,Darius Miles,POR,23.0,205.74,95.25432,None,USA,2000,1,3,63,12.8,4.7,2.0,-1.6,0.052000000000000005,0.145,0.258,0.511,0.14300000000000002,2004-05 3780,Danny Fortson,SEA,29.0,203.2,117.93392,Cincinnati,USA,1997,1,10,62,7.5,5.6,0.1,3.8,0.198,0.226,0.19,0.682,0.013000000000000001,2004-05 3781,Daniel Santiago,MIL,29.0,215.9,116.119552,Saint Vincent,Puerto Rico,Undrafted,Undrafted,Undrafted,11,2.0,1.7,0.1,-16.1,0.068,0.18600000000000003,0.135,0.426,0.016,2004-05 3782,Dan Gadzuric,MIL,27.0,210.82,108.86208,UCLA,Netherlands,2002,2,33,81,7.3,8.3,0.4,-2.3,0.165,0.266,0.157,0.551,0.026000000000000002,2004-05 3783,Dan Dickau,NOH,26.0,182.88,86.18248,Gonzaga,USA,2002,1,28,71,12.5,2.5,4.9,-9.3,0.019,0.086,0.22399999999999998,0.518,0.309,2004-05 3784,Damone Brown,WAS,26.0,203.2,91.625584,Syracuse,USA,2001,2,36,14,3.9,2.0,1.0,-1.5,0.069,0.138,0.225,0.409,0.161,2004-05 3785,Damon Stoudamire,POR,31.0,177.8,78.92500799999999,Arizona,USA,1995,1,7,81,15.8,3.8,5.7,-4.3,0.024,0.102,0.235,0.51,0.28300000000000003,2004-05 3786,Damon Jones,MIA,28.0,190.5,83.91452,Houston,USA,Undrafted,Undrafted,Undrafted,82,11.6,2.8,4.3,9.9,0.006999999999999999,0.095,0.154,0.625,0.201,2004-05 3787,Damien Wilkins,SEA,25.0,198.12,102.0582,Georgia,USA,Undrafted,Undrafted,Undrafted,29,6.3,2.3,0.9,-8.0,0.066,0.095,0.18100000000000002,0.5,0.091,2004-05 3788,Dale Davis,IND,36.0,210.82,114.30518400000001,Clemson,USA,1991,1,13,61,4.7,6.1,0.8,1.1,0.13,0.192,0.114,0.512,0.057,2004-05 3789,Dajuan Wagner,CLE,22.0,187.96,90.7184,Memphis,USA,2002,1,6,11,4.0,0.2,1.2,-6.7,0.0,0.026000000000000002,0.295,0.38799999999999996,0.22,2004-05 3790,Dahntay Jones,MEM,24.0,198.12,95.25432,Duke,USA,2003,1,20,52,4.5,1.3,0.4,1.0,0.02,0.11,0.18100000000000002,0.534,0.059000000000000004,2004-05 3791,DJ Mbenga,DAL,24.0,213.36,111.13004,None,Democratic Republic of the Congo,Undrafted,Undrafted,Undrafted,15,1.0,0.5,0.0,-34.4,0.052000000000000005,0.102,0.162,0.47600000000000003,0.0,2004-05 3792,Cuttino Mobley,SAC,29.0,193.04,97.52228000000001,Rhode Island,USA,1998,2,41,66,17.2,3.5,2.8,0.9,0.021,0.087,0.214,0.555,0.122,2004-05 3793,Curtis Borchardt,UTA,24.0,213.36,109.769264,Stanford,USA,2002,1,18,67,3.0,3.3,0.7,-9.2,0.11699999999999999,0.218,0.13699999999999998,0.49200000000000005,0.096,2004-05 3794,Cory Alexander,CHA,32.0,185.42,86.18248,Virginia,USA,1995,1,29,16,3.1,1.8,2.3,-11.9,0.04,0.12300000000000001,0.161,0.451,0.319,2004-05 3795,Corliss Williamson,SAC,31.0,200.66,111.13004,Arkansas,USA,1995,1,13,72,10.3,3.6,1.1,-0.6,0.07400000000000001,0.115,0.22399999999999998,0.536,0.09,2004-05 3796,DeShawn Stevenson,ORL,24.0,195.58,95.25432,None,USA,2000,1,23,55,7.8,1.9,1.3,-7.8,0.039,0.068,0.21100000000000002,0.456,0.105,2004-05 3797,Brian Grant,LAL,33.0,205.74,115.212368,Xavier,USA,1994,1,8,69,3.8,3.7,0.5,-5.0,0.1,0.155,0.115,0.539,0.048,2004-05 3798,Brian Cardinal,MEM,28.0,203.2,111.13004,Purdue,USA,2000,2,44,58,9.0,3.9,2.0,5.1,0.054000000000000006,0.136,0.19899999999999998,0.51,0.135,2004-05 3799,Anthony Johnson,IND,30.0,190.5,86.18248,College of Charleston,USA,1997,2,39,63,8.4,2.8,4.8,0.3,0.022000000000000002,0.096,0.166,0.526,0.309,2004-05 3800,Anthony Goldwire,MIL,33.0,187.96,82.553744,Houston,USA,1994,2,52,33,5.2,1.8,2.4,-4.1,0.023,0.11,0.14800000000000002,0.575,0.252,2004-05 3801,Anthony Carter,MIN,30.0,187.96,88.45044,Hawaii,USA,Undrafted,Undrafted,Undrafted,66,2.7,1.0,2.4,2.9,0.02,0.09,0.172,0.45399999999999996,0.355,2004-05 3802,Antawn Jamison,WAS,29.0,205.74,104.32616,North Carolina,USA,1998,1,4,68,19.6,7.6,2.3,1.8,0.066,0.158,0.237,0.506,0.10099999999999999,2004-05 3803,Ansu Sesay,GSW,28.0,205.74,102.0582,Mississippi,USA,1998,2,30,16,3.1,2.4,0.8,-10.4,0.142,0.168,0.2,0.466,0.179,2004-05 3804,Anfernee Hardaway,NYK,33.0,200.66,97.52228000000001,Memphis,USA,1993,1,3,37,7.3,2.4,2.0,-6.6,0.025,0.096,0.16899999999999998,0.48,0.141,2004-05 3805,Andris Biedrins,GSW,19.0,210.82,108.86208,None,Latvia,2004,1,11,30,3.6,3.9,0.4,6.1,0.134,0.19699999999999998,0.124,0.57,0.047,2004-05 3806,Andrew DeClercq,ORL,32.0,208.28,115.66596000000001,Florida,USA,1995,2,34,8,1.1,1.3,0.0,-13.0,0.14300000000000002,0.081,0.1,0.436,0.0,2004-05 3807,Andres Nocioni,CHI,25.0,200.66,102.0582,None,Argentina,Undrafted,Undrafted,Undrafted,81,8.4,4.8,1.5,-3.8,0.040999999999999995,0.193,0.196,0.484,0.111,2004-05 3808,Andrei Kirilenko,UTA,24.0,205.74,92.98635999999999,None,Russia,1999,1,24,41,15.6,6.2,3.2,2.5,0.084,0.14800000000000002,0.217,0.599,0.17800000000000002,2004-05 3809,Andre Miller,DEN,29.0,187.96,90.7184,Utah,USA,1999,1,8,82,13.6,4.1,6.9,3.3,0.042,0.095,0.196,0.541,0.315,2004-05 3810,Andre Iguodala,PHI,21.0,198.12,93.89354399999999,Arizona,USA,2004,1,9,82,9.0,5.7,3.0,0.8,0.037000000000000005,0.158,0.129,0.58,0.139,2004-05 3811,Andre Emmett,MEM,22.0,195.58,104.32616,Texas Tech,USA,2004,2,35,8,0.9,0.3,0.0,-16.0,0.0,0.083,0.175,0.42700000000000005,0.0,2004-05 3812,Andre Barrett,ORL,23.0,177.8,78.471416,Seton Hall,USA,Undrafted,Undrafted,Undrafted,38,3.1,1.1,1.8,2.1,0.026000000000000002,0.068,0.15,0.446,0.22699999999999998,2004-05 3813,Anderson Varejao,CLE,22.0,208.28,104.32616,None,Brazil,2004,2,30,54,4.9,4.8,0.5,4.9,0.139,0.21100000000000002,0.142,0.534,0.05,2004-05 3814,Amar'e Stoudemire,PHX,22.0,208.28,111.13004,None,USA,2002,1,9,80,26.0,8.9,1.6,10.8,0.08800000000000001,0.177,0.28600000000000003,0.617,0.075,2004-05 3815,Alonzo Mourning,MIA,35.0,208.28,118.38751200000002,Georgetown,USA,1992,1,2,37,7.6,5.4,0.5,-1.8,0.095,0.228,0.225,0.515,0.052000000000000005,2004-05 3816,Allen Iverson,PHI,30.0,182.88,74.84268,Georgetown,USA,1996,1,1,75,30.7,4.0,7.9,0.3,0.018000000000000002,0.08900000000000001,0.34700000000000003,0.532,0.361,2004-05 3817,Allan Houston,NYK,34.0,198.12,92.98635999999999,Tennessee,USA,1993,1,11,20,11.9,1.2,2.1,1.5,0.009000000000000001,0.043,0.214,0.529,0.127,2004-05 3818,Alex Garcia,NOH,25.0,190.5,88.45044,None,USA,Undrafted,Undrafted,Undrafted,8,5.5,1.9,2.3,-16.6,0.055999999999999994,0.077,0.19899999999999998,0.409,0.228,2004-05 3819,Aleksandar Radojevic,UTA,28.0,220.98,113.398,Barton Community College,USA,1999,1,12,12,1.6,2.3,0.5,-11.8,0.086,0.183,0.13699999999999998,0.406,0.07,2004-05 3820,Alan Henderson,DAL,32.0,205.74,108.86208,Indiana,USA,1995,1,16,78,3.5,4.5,0.3,-3.5,0.149,0.16899999999999998,0.114,0.539,0.028999999999999998,2004-05 3821,Al Jefferson,BOS,20.0,208.28,120.20188,None,USA,2004,1,15,71,6.7,4.4,0.3,-1.7,0.13699999999999998,0.205,0.212,0.5539999999999999,0.042,2004-05 3822,Al Harrington,ATL,25.0,205.74,113.398,None,USA,1998,1,25,66,17.5,7.0,3.2,-11.0,0.064,0.155,0.239,0.508,0.14800000000000002,2004-05 3823,Adrian Griffin,CHI,30.0,195.58,104.32616,Seton Hall,USA,Undrafted,Undrafted,Undrafted,69,2.2,2.1,0.8,3.6,0.081,0.156,0.139,0.419,0.134,2004-05 3824,Anthony Miller,ATL,33.0,205.74,115.66596000000001,Michigan State,USA,1994,2,39,2,2.0,0.5,0.5,21.0,0.0,0.125,0.14800000000000002,0.667,0.25,2004-05 3825,Brian Cook,LAL,24.0,205.74,106.140528,Illinois,USA,2003,1,24,72,6.4,3.0,0.5,2.5,0.066,0.162,0.196,0.522,0.055999999999999994,2004-05 3826,Anthony Peeler,WAS,35.0,193.04,94.34713599999999,Missouri,USA,1992,1,15,40,3.8,1.6,1.4,-12.1,0.027999999999999997,0.11699999999999999,0.157,0.484,0.18,2004-05 3827,Antonio Burks,MEM,25.0,182.88,88.45044,Memphis,USA,2004,2,36,24,3.0,0.5,1.2,-7.8,0.005,0.067,0.185,0.534,0.252,2004-05 3828,Brevin Knight,CHA,29.0,177.8,77.11064,Stanford,USA,1997,1,16,66,10.1,2.6,9.0,-5.7,0.012,0.092,0.184,0.495,0.462,2004-05 3829,Brent Barry,SAS,33.0,200.66,95.25432,Oregon State,USA,1995,1,15,81,7.4,2.3,2.2,6.9,0.019,0.109,0.154,0.58,0.168,2004-05 3830,Brendan Haywood,WAS,25.0,213.36,120.655472,North Carolina,USA,2001,1,20,68,9.4,6.8,0.8,6.2,0.11900000000000001,0.152,0.149,0.588,0.047,2004-05 3831,Brandon Hunter,ORL,24.0,200.66,120.655472,Ohio,USA,2003,2,56,31,3.1,2.2,0.1,-4.8,0.128,0.20800000000000002,0.213,0.527,0.023,2004-05 3832,Brandin Knight,HOU,23.0,182.88,81.64656,Pittsburgh,USA,Undrafted,Undrafted,Undrafted,1,0.0,0.0,1.0,-10.1,0.0,0.0,0.14300000000000002,0.0,0.33299999999999996,2004-05 3833,Brad Miller,SAC,29.0,213.36,118.38751200000002,Purdue,USA,Undrafted,Undrafted,Undrafted,56,15.6,9.3,3.9,4.9,0.077,0.198,0.175,0.596,0.16,2004-05 3834,Bostjan Nachbar,NOH,24.0,205.74,100.243832,None,Slovenia,2002,1,15,71,7.0,2.6,1.0,-8.7,0.021,0.146,0.188,0.534,0.102,2004-05 3835,Boris Diaw,ATL,23.0,203.2,97.52228000000001,None,France,2003,1,21,66,4.8,2.6,2.3,-6.9,0.049,0.11800000000000001,0.156,0.479,0.20199999999999999,2004-05 3836,Bonzi Wells,MEM,28.0,195.58,95.25432,Ball State,USA,1998,1,11,69,10.4,3.3,1.2,-1.7,0.04,0.14800000000000002,0.249,0.515,0.106,2004-05 3837,Bobby Simmons,LAC,25.0,198.12,103.418976,DePaul,USA,2001,2,41,75,16.4,5.9,2.7,0.4,0.055,0.131,0.20800000000000002,0.54,0.126,2004-05 3838,Bobby Jackson,SAC,32.0,185.42,83.91452,Minnesota,USA,1997,1,23,25,12.0,3.4,2.4,3.0,0.047,0.125,0.251,0.537,0.195,2004-05 3839,Bob Sura,HOU,32.0,195.58,90.7184,Florida State,USA,1995,1,17,61,10.3,5.5,5.2,3.8,0.049,0.155,0.17600000000000002,0.5329999999999999,0.266,2004-05 3840,Bo Outlaw,PHX,34.0,203.2,99.79024,Houston,USA,Undrafted,Undrafted,Undrafted,39,0.7,1.4,0.3,-6.8,0.08,0.18,0.09699999999999999,0.382,0.098,2004-05 3841,Billy Thomas,NJN,29.0,195.58,98.88305600000001,Kansas,USA,Undrafted,Undrafted,Undrafted,25,3.7,1.4,0.7,-1.9,0.025,0.1,0.146,0.47,0.078,2004-05 3842,Bernard Robinson,CHA,24.0,198.12,95.25432,Michigan,USA,2004,2,45,31,3.0,1.5,1.0,-10.7,0.046,0.12,0.153,0.503,0.16899999999999998,2004-05 3843,Beno Udrih,SAS,22.0,190.5,90.7184,None,Slovenia,2004,1,28,80,5.9,1.0,1.9,7.8,0.016,0.068,0.205,0.5489999999999999,0.233,2004-05 3844,Ben Wallace,DET,30.0,205.74,108.86208,Virginia Union,USA,Undrafted,Undrafted,Undrafted,74,9.7,12.2,1.7,7.6,0.126,0.257,0.152,0.45899999999999996,0.075,2004-05 3845,Ben Handlogten,UTA,31.0,208.28,108.86208,Western Michigan,USA,Undrafted,Undrafted,Undrafted,21,4.5,3.1,0.6,-8.5,0.106,0.21,0.17300000000000001,0.525,0.075,2004-05 3846,Ben Gordon,CHI,22.0,190.5,90.7184,Connecticut,USA,2004,1,3,82,15.1,2.6,2.0,4.0,0.031,0.086,0.3,0.526,0.165,2004-05 3847,Baron Davis,GSW,26.0,190.5,101.151016,UCLA,USA,1999,1,3,46,19.2,3.8,7.9,2.2,0.022000000000000002,0.10400000000000001,0.278,0.515,0.391,2004-05 3848,Awvee Storey,NJN,28.0,198.12,102.0582,Arizona State,USA,Undrafted,Undrafted,Undrafted,9,0.9,0.6,0.1,-18.1,0.133,0.037000000000000005,0.191,0.368,0.071,2004-05 3849,Austin Croshere,IND,30.0,208.28,109.769264,Providence,USA,1997,1,12,73,8.9,5.1,1.3,-6.3,0.068,0.18100000000000002,0.185,0.531,0.099,2004-05 3850,Antonio McDyess,DET,30.0,205.74,111.13004,Alabama,USA,1995,1,2,77,9.6,6.3,0.9,0.1,0.11800000000000001,0.20800000000000002,0.201,0.542,0.073,2004-05 3851,Antonio Davis,CHI,36.0,205.74,111.13004,Texas-El Paso,USA,1990,2,45,72,7.0,5.9,1.1,0.1,0.092,0.16899999999999998,0.14300000000000002,0.516,0.071,2004-05 3852,Antonio Daniels,SEA,30.0,193.04,92.98635999999999,Bowling Green,USA,1997,1,4,75,11.2,2.3,4.1,4.2,0.012,0.08900000000000001,0.18899999999999997,0.557,0.261,2004-05 3853,Antoine Walker,BOS,28.0,205.74,111.13004,Kentucky,USA,1996,1,6,77,19.1,9.0,3.4,-8.6,0.068,0.212,0.272,0.478,0.163,2004-05 3854,Zydrunas Ilgauskas,CLE,30.0,220.98,117.93392,None,Lithuania,1996,1,20,78,16.9,8.6,1.3,2.5,0.136,0.17,0.243,0.55,0.065,2004-05 3855,Delonte West,BOS,21.0,193.04,81.64656,Saint Joseph's,USA,2004,1,24,39,4.5,1.7,1.4,0.6,0.033,0.111,0.172,0.524,0.17300000000000001,2004-05 3856,Derek Anderson,POR,30.0,195.58,88.45044,Kentucky,USA,1997,1,13,47,9.2,2.7,3.0,-5.5,0.023,0.094,0.185,0.503,0.19399999999999998,2004-05 3857,Jason Hart,CHA,27.0,190.5,83.91452,Syracuse,USA,2000,2,49,74,9.5,2.7,5.0,-8.2,0.01,0.11900000000000001,0.183,0.534,0.335,2004-05 3858,Jason Collins,NJN,26.0,213.36,115.66596000000001,Stanford,USA,2001,1,18,80,6.4,6.1,1.3,2.7,0.07,0.158,0.11699999999999999,0.47100000000000003,0.066,2004-05 3859,Jason Collier,ATL,27.0,213.36,117.93392,Georgia Tech,USA,2000,1,15,70,5.7,2.6,0.3,-19.6,0.096,0.138,0.223,0.494,0.035,2004-05 3860,Jarvis Hayes,WAS,23.0,200.66,99.79024,Georgia,USA,2003,1,10,54,10.2,4.2,1.7,-2.9,0.027999999999999997,0.141,0.18,0.475,0.09300000000000001,2004-05 3861,Jarron Collins,UTA,26.0,210.82,114.30518400000001,Stanford,USA,2001,2,52,50,4.3,3.3,1.2,-1.1,0.07200000000000001,0.14,0.11599999999999999,0.509,0.091,2004-05 3862,Jared Reiner,CHI,23.0,210.82,115.66596000000001,Iowa,USA,Undrafted,Undrafted,Undrafted,19,1.1,2.0,0.1,-10.0,0.094,0.192,0.126,0.331,0.011000000000000001,2004-05 3863,Jared Jeffries,WAS,23.0,208.28,104.32616,Indiana,USA,2002,1,11,77,6.8,4.9,2.0,1.6,0.08199999999999999,0.128,0.135,0.512,0.115,2004-05 3864,Jannero Pargo,CHI,25.0,185.42,79.3786,Arkansas,USA,Undrafted,Undrafted,Undrafted,32,6.4,1.5,2.4,-0.3,0.027999999999999997,0.081,0.263,0.457,0.315,2004-05 3865,Jamison Brewer,NYK,24.0,193.04,88.45044,Auburn,USA,2001,2,40,18,1.7,1.2,0.7,-18.7,0.039,0.11599999999999999,0.14300000000000002,0.363,0.11800000000000001,2004-05 3866,James Thomas,ATL,24.0,203.2,106.59411999999999,Texas,USA,Undrafted,Undrafted,Undrafted,11,2.4,3.4,0.4,-28.8,0.155,0.2,0.113,0.574,0.061,2004-05 3867,James Posey,MEM,28.0,203.2,97.52228000000001,Xavier,USA,1999,1,18,50,8.1,4.4,1.8,-3.0,0.04,0.153,0.16399999999999998,0.5,0.11,2004-05 3868,James Jones,IND,24.0,203.2,97.52228000000001,Miami (FL),USA,2003,2,49,75,4.9,2.3,0.8,2.5,0.036000000000000004,0.121,0.14300000000000002,0.537,0.077,2004-05 3869,Jameer Nelson,ORL,23.0,182.88,86.18248,Saint Joseph's,USA,2004,1,20,79,8.7,2.4,3.0,-3.7,0.036000000000000004,0.09699999999999999,0.214,0.51,0.244,2004-05 3870,Jamal Sampson,CHA,22.0,210.82,106.59411999999999,California,USA,2002,2,46,23,3.4,5.3,0.3,-7.5,0.11699999999999999,0.321,0.133,0.499,0.042,2004-05 3871,Jamal Crawford,NYK,25.0,195.58,86.18248,Michigan,USA,2000,1,8,70,17.7,2.9,4.3,-4.4,0.013999999999999999,0.075,0.226,0.521,0.19,2004-05 3872,Jamaal Tinsley,IND,27.0,190.5,88.45044,Iowa State,USA,2001,1,27,40,15.4,4.0,6.4,3.4,0.024,0.12,0.258,0.518,0.35,2004-05 3873,Jamaal Magloire,NOH,27.0,210.82,117.480328,Kentucky,Canada,2000,1,19,23,11.7,8.9,1.3,-9.3,0.124,0.22899999999999998,0.22,0.48,0.076,2004-05 3874,Jalen Rose,TOR,32.0,203.2,97.52228000000001,Michigan,USA,1994,1,13,81,18.5,3.4,2.6,-3.6,0.018000000000000002,0.099,0.255,0.562,0.14,2004-05 3875,Jake Voskuhl,PHX,27.0,210.82,115.66596000000001,Connecticut,USA,2000,2,33,38,2.1,2.4,0.4,7.5,0.096,0.177,0.11599999999999999,0.528,0.065,2004-05 3876,Jake Tsakalidis,MEM,26.0,218.44,131.54168,None,Greece,2000,1,25,31,2.5,1.8,0.3,1.8,0.08800000000000001,0.146,0.142,0.542,0.061,2004-05 3877,Jahidi White,CHA,29.0,205.74,131.54168,Georgetown,USA,1998,2,43,17,2.5,2.0,0.1,0.8,0.095,0.20199999999999999,0.203,0.43200000000000005,0.011000000000000001,2004-05 3878,Jacque Vaughn,NJN,30.0,185.42,86.18248,Kansas,USA,1997,1,27,71,5.3,1.5,1.9,-5.4,0.013999999999999999,0.08,0.14400000000000002,0.511,0.16899999999999998,2004-05 3879,Jackson Vroman,NOH,24.0,208.28,99.79024,Iowa State,USA,2004,2,31,46,4.6,3.8,0.9,-7.9,0.10400000000000001,0.19399999999999998,0.188,0.457,0.095,2004-05 3880,Jackie Butler,NYK,20.0,208.28,113.398,Southern Illinois,USA,Undrafted,Undrafted,Undrafted,3,3.3,0.0,0.0,5.1,0.0,0.0,0.595,1.025,0.0,2004-05 3881,Jabari Smith,NJN,28.0,210.82,113.398,Louisiana State,USA,2000,2,45,45,3.7,2.5,0.8,-10.2,0.054000000000000006,0.166,0.153,0.48200000000000004,0.1,2004-05 3882,Jason Kapono,CHA,24.0,203.2,96.615096,UCLA,USA,2003,2,31,81,8.5,2.0,0.8,-4.8,0.023,0.10300000000000001,0.22399999999999998,0.486,0.07200000000000001,2004-05 3883,JR Smith,NOH,19.0,198.12,99.79024,None,USA,2004,1,18,76,10.3,2.0,1.9,-13.0,0.023,0.075,0.22899999999999998,0.478,0.142,2004-05 3884,Jason Kidd,NJN,32.0,193.04,95.25432,California,USA,1994,1,2,66,14.4,7.4,8.3,4.5,0.045,0.193,0.209,0.506,0.368,2004-05 3885,Jason Terry,DAL,27.0,187.96,81.64656,Arizona,USA,1999,1,10,80,12.4,2.4,5.4,9.8,0.018000000000000002,0.067,0.18100000000000002,0.606,0.27899999999999997,2004-05 3886,Juan Dixon,WAS,26.0,190.5,74.389088,Maryland,USA,2002,1,17,63,8.0,1.9,1.8,-5.3,0.033,0.09699999999999999,0.235,0.518,0.19,2004-05 3887,Josh Smith,ATL,19.0,205.74,102.0582,None,USA,2004,1,17,74,9.7,6.2,1.7,-8.9,0.08,0.17800000000000002,0.182,0.506,0.1,2004-05 3888,Josh Howard,DAL,25.0,200.66,95.25432,Wake Forest,USA,2003,1,29,76,12.6,6.4,1.4,9.2,0.079,0.139,0.185,0.535,0.069,2004-05 3889,Josh Davis,PHI,24.0,203.2,106.59411999999999,Wyoming,USA,Undrafted,Undrafted,Undrafted,42,2.8,1.9,0.3,3.7,0.094,0.171,0.18600000000000003,0.494,0.063,2004-05 3890,Josh Childress,ATL,22.0,203.2,95.25432,Stanford,USA,2004,1,6,80,10.1,6.0,1.9,-10.5,0.091,0.146,0.158,0.5429999999999999,0.1,2004-05 3891,Jonathan Bender,IND,24.0,213.36,99.336648,None,USA,1999,1,5,7,5.1,2.0,0.6,-20.4,0.071,0.141,0.27699999999999997,0.42200000000000004,0.111,2004-05 3892,Jon Barry,HOU,35.0,195.58,95.25432,Georgia Tech,USA,1992,1,21,69,6.6,2.3,2.4,7.3,0.021,0.1,0.147,0.57,0.177,2004-05 3893,John Thomas,MIN,29.0,205.74,120.20188,Minnesota,USA,1997,1,25,44,2.5,2.2,0.4,4.4,0.09300000000000001,0.11900000000000001,0.114,0.522,0.047,2004-05 3894,John Salmons,PHI,25.0,198.12,93.89354399999999,Miami (FL),USA,2002,1,26,58,4.1,2.1,2.0,-5.3,0.013000000000000001,0.125,0.129,0.511,0.193,2004-05 3895,John Edwards,IND,23.0,213.36,124.7378,Kent State,USA,Undrafted,Undrafted,Undrafted,25,1.2,0.8,0.1,-26.6,0.075,0.1,0.165,0.401,0.040999999999999995,2004-05 3896,Joel Przybilla,POR,25.0,215.9,115.66596000000001,Minnesota,USA,2000,1,9,76,6.4,7.7,1.0,-4.9,0.11699999999999999,0.24600000000000002,0.125,0.596,0.063,2004-05 3897,Joe Smith,MIL,29.0,208.28,102.0582,Maryland,USA,1995,1,1,74,11.0,7.3,0.9,-2.6,0.08900000000000001,0.188,0.157,0.564,0.047,2004-05 3898,Joe Johnson,PHX,24.0,200.66,104.32616,Arkansas,USA,2001,1,10,82,17.1,5.1,3.5,9.4,0.042,0.094,0.19,0.556,0.13,2004-05 3899,Jiri Welsch,CLE,25.0,200.66,94.34713599999999,None,Czech Republic,2002,1,16,71,6.5,2.4,1.5,-2.4,0.023,0.127,0.17800000000000002,0.518,0.12,2004-05 3900,Jim Jackson,PHX,34.0,198.12,99.79024,Ohio State,USA,1992,1,4,64,10.5,4.2,2.9,0.6,0.019,0.125,0.16399999999999998,0.5529999999999999,0.147,2004-05 3901,Jerry Stackhouse,DAL,30.0,198.12,98.88305600000001,North Carolina,USA,1995,1,3,56,14.9,3.3,2.3,4.1,0.027000000000000003,0.09699999999999999,0.25,0.525,0.13699999999999998,2004-05 3902,Jerome Williams,NYK,32.0,205.74,93.439952,Georgetown,USA,1996,1,26,79,4.5,3.6,0.5,0.5,0.114,0.17,0.14400000000000002,0.563,0.055,2004-05 3903,Jerome Moiso,CLE,27.0,208.28,117.93392,UCLA,France,2000,1,11,20,1.4,1.9,0.1,-18.5,0.09300000000000001,0.262,0.114,0.59,0.013999999999999999,2004-05 3904,Jerome James,SEA,29.0,215.9,123.377024,Florida A&M,USA,1998,2,36,80,4.9,3.0,0.2,-2.4,0.075,0.147,0.163,0.5329999999999999,0.024,2004-05 3905,Jermaine O'Neal,IND,26.0,210.82,109.769264,None,USA,1996,1,17,44,24.3,8.8,1.9,0.3,0.066,0.225,0.36,0.52,0.124,2004-05 3906,Jermaine Jackson,NYK,29.0,195.58,92.532768,Detroit Mercy,USA,Undrafted,Undrafted,Undrafted,21,2.0,1.1,1.1,-9.1,0.016,0.11599999999999999,0.105,0.542,0.18600000000000003,2004-05 3907,Jelani McCoy,ATL,27.0,208.28,111.13004,UCLA,USA,1998,2,33,10,1.5,2.1,0.0,1.8,0.10300000000000001,0.165,0.114,0.493,0.0,2004-05 3908,Jeff McInnis,CLE,30.0,193.04,81.19296800000001,North Carolina,USA,1996,2,37,76,12.8,2.1,5.1,-0.3,0.013999999999999999,0.057,0.187,0.495,0.237,2004-05 3909,Jeff Foster,IND,28.0,210.82,109.769264,Texas State,USA,1999,1,21,61,7.0,9.0,0.7,7.7,0.151,0.24600000000000002,0.132,0.551,0.047,2004-05 3910,Jason Williams,MEM,29.0,185.42,86.18248,Florida,USA,1998,1,7,71,10.1,1.7,5.6,1.7,0.011000000000000001,0.061,0.195,0.522,0.33899999999999997,2004-05 3911,Jason Richardson,GSW,24.0,198.12,102.0582,Michigan State,USA,2001,1,5,72,21.7,5.9,3.9,-2.5,0.048,0.125,0.26899999999999996,0.518,0.185,2004-05 3912,DerMarr Johnson,DEN,25.0,205.74,91.171992,Cincinnati,USA,2000,1,6,71,7.1,2.1,1.1,8.0,0.042,0.098,0.175,0.605,0.096,2004-05 3913,Ira Newble,CLE,30.0,200.66,99.79024,Miami (OH),USA,Undrafted,Undrafted,Undrafted,74,5.9,3.0,1.2,-0.8,0.049,0.091,0.126,0.48200000000000004,0.07400000000000001,2004-05 3914,Howard Eisley,UTA,32.0,187.96,83.91452,Boston College,USA,1994,2,30,74,5.6,1.2,3.4,-8.3,0.013000000000000001,0.068,0.18,0.47,0.299,2004-05 3915,Eduardo Najera,DEN,28.0,203.2,106.59411999999999,Oklahoma,Mexico,2000,2,38,68,5.2,3.6,1.0,2.8,0.092,0.14,0.158,0.489,0.084,2004-05 3916,Eddy Curry,CHI,22.0,210.82,129.27372,None,USA,2001,1,4,63,16.1,5.4,0.6,-2.4,0.077,0.132,0.26,0.583,0.040999999999999995,2004-05 3917,Eddie Jones,MIA,33.0,198.12,90.7184,Temple,USA,1994,1,10,80,12.7,5.1,2.7,9.9,0.016,0.14400000000000002,0.166,0.556,0.11199999999999999,2004-05 3918,Eddie House,SAC,27.0,185.42,79.3786,Arizona State,USA,2000,2,37,68,5.8,1.2,1.4,-2.9,0.02,0.095,0.21100000000000002,0.525,0.18,2004-05 3919,Eddie Griffin,MIN,23.0,208.28,108.86208,Seton Hall,USA,2001,1,7,70,7.5,6.5,0.8,4.3,0.10300000000000001,0.228,0.19,0.474,0.057,2004-05 3920,Eddie Gill,IND,26.0,182.88,86.18248,Weber State,USA,Undrafted,Undrafted,Undrafted,73,3.7,1.5,1.1,-4.3,0.02,0.11699999999999999,0.16399999999999998,0.484,0.161,2004-05 3921,Earl Watson,MEM,26.0,185.42,86.18248,UCLA,USA,2001,2,39,80,7.7,2.1,4.5,5.2,0.024,0.086,0.205,0.5,0.353,2004-05 3922,Earl Boykins,DEN,29.0,165.1,60.327736,Eastern Michigan,USA,Undrafted,Undrafted,Undrafted,82,12.3,1.7,4.5,1.9,0.019,0.057,0.22,0.529,0.293,2004-05 3923,Dwyane Wade,MIA,23.0,193.04,96.16150400000001,Marquette,USA,2003,1,5,77,24.1,5.2,6.8,8.0,0.045,0.109,0.306,0.561,0.303,2004-05 3924,Dwight Howard,ORL,19.0,210.82,113.398,None,USA,2004,1,1,82,12.0,10.0,0.9,-2.0,0.124,0.222,0.168,0.5710000000000001,0.043,2004-05 3925,Drew Gooden,CLE,23.0,208.28,109.769264,Kansas,USA,2002,1,4,82,14.4,9.2,1.6,2.0,0.09699999999999999,0.262,0.218,0.5479999999999999,0.08800000000000001,2004-05 3926,Doug Christie,ORL,35.0,198.12,92.98635999999999,Pepperdine,USA,1992,1,17,52,6.6,3.4,3.8,2.6,0.028999999999999998,0.096,0.138,0.47100000000000003,0.192,2004-05 3927,Dorell Wright,MIA,19.0,200.66,95.25432,None,USA,2004,1,19,3,2.3,0.3,1.0,-7.1,0.0,0.038,0.237,0.306,0.17600000000000002,2004-05 3928,Donyell Marshall,TOR,32.0,205.74,104.32616,Connecticut,USA,1994,1,4,65,11.5,6.6,1.2,1.7,0.064,0.22399999999999998,0.188,0.591,0.083,2004-05 3929,Donta Smith,ATL,21.0,200.66,97.52228000000001,Southeastern Illinois,USA,2004,2,34,38,3.3,1.4,1.0,-6.1,0.046,0.09300000000000001,0.162,0.473,0.141,2004-05 3930,Donnell Harvey,NJN,24.0,203.2,99.79024,Florida,USA,2000,1,22,3,2.7,2.3,0.3,21.4,0.2,0.455,0.149,1.064,0.125,2004-05 3931,Dirk Nowitzki,DAL,27.0,213.36,111.13004,None,Germany,1998,1,9,78,26.1,9.7,3.1,9.7,0.037000000000000005,0.23600000000000002,0.28600000000000003,0.578,0.138,2004-05 3932,Dion Glover,SAS,26.0,195.58,102.0582,Georgia Tech,USA,1999,1,20,7,3.6,1.6,0.6,-2.1,0.039,0.157,0.183,0.473,0.111,2004-05 3933,Dikembe Mutombo,HOU,39.0,218.44,120.20188,Georgetown,Congo,1991,1,4,80,4.0,5.3,0.1,10.0,0.147,0.251,0.13,0.575,0.013999999999999999,2004-05 3934,Devin Harris,DAL,22.0,190.5,83.91452,Wisconsin,USA,2004,1,5,76,5.7,1.3,2.2,-0.6,0.027000000000000003,0.07200000000000001,0.18600000000000003,0.53,0.22899999999999998,2004-05 3935,Devin Brown,SAS,26.0,195.58,99.79024,Texas-San Antonio,USA,Undrafted,Undrafted,Undrafted,67,7.4,2.6,1.4,2.9,0.034,0.13699999999999998,0.19399999999999998,0.53,0.127,2004-05 3936,Devean George,LAL,27.0,203.2,108.86208,Augsburg,USA,1999,1,23,15,7.3,3.5,0.9,-12.9,0.045,0.16899999999999998,0.179,0.488,0.078,2004-05 3937,Desmond Mason,MIL,27.0,195.58,100.697424,Oklahoma State,USA,2000,1,17,80,17.2,3.9,2.7,-4.3,0.034,0.09300000000000001,0.231,0.526,0.127,2004-05 3938,Derrick Coleman,DET,38.0,208.28,122.46983999999999,Syracuse,USA,1990,1,1,5,1.8,3.0,0.0,-26.8,0.073,0.3,0.16,0.294,0.0,2004-05 3939,Derek Fisher,GSW,30.0,185.42,90.7184,Arkansas-Little Rock,USA,1996,1,24,74,11.9,2.9,4.1,-1.9,0.017,0.09,0.193,0.519,0.222,2004-05 3940,Elden Campbell,DET,36.0,213.36,126.552168,Clemson,USA,1990,1,27,40,3.0,2.3,0.5,-0.6,0.092,0.2,0.218,0.408,0.08900000000000001,2004-05 3941,Ibrahim Kutluay,SEA,31.0,198.12,90.7184,None,USA,Undrafted,Undrafted,Undrafted,5,0.0,0.2,0.0,-88.4,0.0,0.077,0.158,0.0,0.0,2004-05 3942,Elton Brand,LAC,26.0,203.2,123.377024,Duke,USA,1999,1,1,81,20.0,9.5,2.6,2.0,0.121,0.184,0.251,0.5539999999999999,0.128,2004-05 3943,Eric Piatkowski,CHI,34.0,200.66,97.52228000000001,Nebraska,USA,1994,1,15,68,4.8,1.2,0.8,-0.4,0.019,0.083,0.16699999999999998,0.573,0.099,2004-05 3944,Horace Jenkins,DET,30.0,185.42,81.64656,William Paterson,USA,Undrafted,Undrafted,Undrafted,15,2.8,0.6,0.6,-4.7,0.032,0.062,0.26899999999999996,0.414,0.214,2004-05 3945,Hedo Turkoglu,ORL,26.0,208.28,99.79024,None,Turkey,2000,1,16,67,14.0,3.5,2.3,-1.8,0.039,0.10800000000000001,0.24600000000000002,0.532,0.153,2004-05 3946,Ha Ha,POR,19.0,220.98,138.34556,Yonsei (KOR),South Korea,2004,2,46,19,1.4,0.9,0.1,-2.7,0.069,0.121,0.175,0.467,0.03,2004-05 3947,Greg Ostertag,SAC,32.0,218.44,127.00576000000001,Kansas,USA,1995,1,28,56,1.6,3.0,0.7,4.7,0.10400000000000001,0.209,0.098,0.43200000000000005,0.094,2004-05 3948,Greg Buckner,DEN,28.0,193.04,95.25432,Clemson,USA,1998,2,53,70,6.2,3.0,1.9,1.8,0.051,0.10800000000000001,0.114,0.638,0.127,2004-05 3949,Grant Hill,ORL,32.0,203.2,102.0582,Duke,USA,1994,1,3,67,19.7,4.7,3.3,-0.4,0.038,0.113,0.247,0.565,0.165,2004-05 3950,Gordan Giricek,UTA,28.0,195.58,95.25432,None,Croatia,1999,2,40,81,8.8,2.2,1.7,-3.9,0.018000000000000002,0.121,0.217,0.516,0.15,2004-05 3951,Glenn Robinson,SAS,32.0,200.66,108.86208,Purdue,USA,1994,1,1,9,10.0,2.7,0.9,-8.5,0.027999999999999997,0.135,0.26899999999999996,0.517,0.105,2004-05 3952,Gilbert Arenas,WAS,23.0,190.5,86.636072,Arizona,USA,2001,2,30,80,25.5,4.7,5.1,1.5,0.027000000000000003,0.10400000000000001,0.271,0.565,0.22399999999999998,2004-05 3953,Gerald Wallace,CHA,22.0,200.66,97.52228000000001,Alabama,USA,2001,1,25,70,11.1,5.5,2.0,-5.1,0.06,0.151,0.19,0.51,0.102,2004-05 3954,George Lynch,NOH,34.0,203.2,106.59411999999999,North Carolina,USA,1993,1,12,44,3.7,4.0,2.0,-6.6,0.068,0.162,0.131,0.41200000000000003,0.16,2004-05 3955,Geno Carlisle,POR,28.0,190.5,90.7184,California,USA,Undrafted,Undrafted,Undrafted,6,1.3,0.2,0.2,-27.7,0.071,0.0,0.185,0.7090000000000001,0.111,2004-05 3956,Gary Payton,BOS,36.0,193.04,81.64656,Oregon State,USA,1990,1,2,77,11.3,3.1,6.1,1.6,0.022000000000000002,0.085,0.17,0.537,0.27899999999999997,2004-05 3957,Fred Jones,IND,26.0,187.96,98.88305600000001,Oregon,USA,2002,1,14,77,10.6,3.1,2.5,-3.8,0.018000000000000002,0.11199999999999999,0.18,0.551,0.166,2004-05 3958,Fred Hoiberg,MIN,32.0,195.58,95.25432,Iowa State,USA,1995,2,52,76,5.8,2.4,1.1,7.3,0.032,0.129,0.131,0.664,0.102,2004-05 3959,Frank Williams,CHI,25.0,190.5,96.16150400000001,Illinois,USA,2002,1,25,9,0.7,0.7,1.2,-14.7,0.026000000000000002,0.06,0.151,0.15,0.289,2004-05 3960,Francisco Elson,DEN,29.0,213.36,106.59411999999999,California,Netherlands,1999,2,41,67,3.7,3.0,0.5,1.1,0.073,0.185,0.138,0.494,0.055,2004-05 3961,Flip Murray,SEA,25.0,190.5,89.357624,Shaw,USA,2002,2,41,49,7.0,2.0,1.3,-8.5,0.02,0.114,0.244,0.433,0.139,2004-05 3962,Etan Thomas,WAS,27.0,208.28,117.93392,Syracuse,USA,2000,1,12,47,7.1,5.2,0.4,-5.2,0.095,0.204,0.166,0.521,0.034,2004-05 3963,Ervin Johnson,MIN,37.0,210.82,111.13004,New Orleans,USA,1993,1,23,46,1.6,2.5,0.1,-8.7,0.11699999999999999,0.19399999999999998,0.098,0.562,0.022000000000000002,2004-05 3964,Erik Daniels,SAC,23.0,203.2,97.068688,Kentucky,USA,Undrafted,Undrafted,Undrafted,21,0.6,0.9,0.2,-23.2,0.09,0.162,0.141,0.361,0.11800000000000001,2004-05 3965,Erick Strickland,MIL,31.0,190.5,98.88305600000001,Nebraska,USA,Undrafted,Undrafted,Undrafted,62,4.9,1.7,1.9,-2.8,0.013000000000000001,0.11,0.184,0.45299999999999996,0.193,2004-05 3966,Erick Dampier,DAL,29.0,210.82,120.20188,Mississippi State,USA,1996,1,10,59,9.2,8.5,0.9,9.1,0.135,0.213,0.16,0.58,0.048,2004-05 3967,Eric Williams,TOR,32.0,203.2,99.79024,Providence,USA,1995,1,14,55,7.7,3.1,1.7,-3.4,0.04,0.113,0.163,0.529,0.12,2004-05 3968,Eric Snow,CLE,32.0,190.5,92.98635999999999,Michigan State,USA,1995,2,43,81,4.0,1.9,3.9,3.8,0.024,0.078,0.11199999999999999,0.445,0.258,2004-05 3969,Emeka Okafor,CHA,22.0,208.28,114.30518400000001,Connecticut,USA,2004,1,2,73,15.1,10.9,0.9,-7.3,0.114,0.24100000000000002,0.217,0.479,0.042,2004-05 3970,Adonal Foyle,GSW,30.0,208.28,122.46983999999999,Colgate,St. Vincent & Grenadines,1997,1,8,78,4.5,5.5,0.7,-0.1,0.102,0.171,0.105,0.514,0.048,2004-05 3971,Aaron Williams,TOR,33.0,205.74,106.59411999999999,Xavier,USA,Undrafted,Undrafted,Undrafted,42,1.7,1.4,0.2,-21.3,0.062,0.171,0.132,0.518,0.049,2004-05 3972,Delonte West,BOS,22.0,193.04,81.64656,Saint Joseph's,USA,2004,1,24,71,11.8,4.1,4.6,1.3,0.028999999999999998,0.113,0.163,0.574,0.213,2005-06 3973,Alan Henderson,CLE,33.0,205.74,108.86208,Indiana,USA,1995,1,16,51,2.5,2.7,0.2,-3.4,0.128,0.17,0.11800000000000001,0.564,0.032,2005-06 3974,Eddie Griffin,MIN,24.0,208.28,108.86208,Seton Hall,USA,2001,1,7,70,4.6,5.6,0.6,-5.7,0.09300000000000001,0.23399999999999999,0.157,0.397,0.049,2005-06 3975,Eddie House,PHX,28.0,185.42,79.3786,Arizona State,USA,2000,2,37,81,9.8,1.6,1.8,3.7,0.012,0.08800000000000001,0.272,0.512,0.17,2005-06 3976,Eddie Jones,MEM,34.0,198.12,90.7184,Temple,USA,1994,1,10,75,11.8,3.7,2.4,6.5,0.018000000000000002,0.12,0.182,0.542,0.124,2005-06 3977,Eddy Curry,NYK,23.0,210.82,129.27372,None,USA,2001,1,4,72,13.6,6.0,0.3,-11.7,0.095,0.18600000000000003,0.245,0.604,0.02,2005-06 3978,Eduardo Najera,DEN,29.0,203.2,99.79024,Oklahoma,Mexico,2000,2,38,64,5.4,5.1,0.8,0.7,0.099,0.161,0.12300000000000001,0.494,0.054000000000000006,2005-06 3979,Elton Brand,LAC,27.0,203.2,115.212368,Duke,USA,1999,1,1,79,24.7,10.0,2.6,3.4,0.092,0.195,0.276,0.58,0.127,2005-06 3980,Emeka Okafor,CHA,23.0,208.28,114.30518400000001,Connecticut,USA,2004,1,2,26,13.2,10.0,1.2,-4.0,0.11800000000000001,0.228,0.21600000000000003,0.46399999999999997,0.06,2005-06 3981,Eric Piatkowski,CHI,35.0,200.66,97.52228000000001,Nebraska,USA,1994,1,15,29,2.0,0.8,0.4,2.2,0.018000000000000002,0.099,0.142,0.467,0.086,2005-06 3982,Eric Snow,CLE,33.0,190.5,92.98635999999999,Michigan State,USA,1995,2,43,82,4.8,2.4,4.2,3.4,0.019,0.081,0.111,0.444,0.22399999999999998,2005-06 3983,Eric Williams,TOR,33.0,203.2,99.79024,Providence,USA,1995,1,14,28,3.3,1.8,0.5,-6.5,0.034,0.141,0.14400000000000002,0.496,0.065,2005-06 3984,Alan Anderson,CHA,23.0,198.12,99.79024,Michigan State,USA,Undrafted,Undrafted,Undrafted,36,5.8,1.9,0.9,-0.3,0.044000000000000004,0.1,0.182,0.52,0.09300000000000001,2005-06 3985,Erick Dampier,DAL,30.0,210.82,120.20188,Mississippi State,USA,1996,1,10,82,5.7,7.8,0.6,6.3,0.17,0.226,0.134,0.531,0.040999999999999995,2005-06 3986,Esteban Batista,ATL,22.0,208.28,122.46983999999999,None,Uruguay,Undrafted,Undrafted,Undrafted,57,1.8,2.5,0.1,-2.8,0.13699999999999998,0.20600000000000002,0.12300000000000001,0.489,0.021,2005-06 3987,Etan Thomas,WAS,28.0,208.28,117.93392,Syracuse,USA,2000,1,12,71,4.7,3.9,0.2,-1.0,0.10099999999999999,0.196,0.141,0.56,0.02,2005-06 3988,Fabricio Oberto,SAS,31.0,208.28,111.13004,None,Argentina,Undrafted,Undrafted,Undrafted,59,1.7,2.1,0.5,-1.9,0.139,0.156,0.127,0.491,0.08900000000000001,2005-06 3989,Flip Murray,CLE,26.0,190.5,89.357624,Shaw,USA,2002,2,41,76,11.2,2.0,2.6,-1.9,0.018000000000000002,0.068,0.21899999999999997,0.48700000000000004,0.16,2005-06 3990,Francisco Elson,DEN,30.0,213.36,106.59411999999999,California,Netherlands,1999,2,41,72,4.9,4.7,0.7,2.5,0.078,0.179,0.11199999999999999,0.556,0.044000000000000004,2005-06 3991,Francisco Garcia,SAC,24.0,200.66,88.45044,Louisville,Dominican Republic,2005,1,23,67,5.6,2.8,1.4,-0.8,0.035,0.126,0.158,0.51,0.11800000000000001,2005-06 3992,Fred Jones,IND,27.0,187.96,99.79024,Oregon,USA,2002,1,14,68,9.6,2.5,2.3,0.0,0.012,0.092,0.187,0.517,0.154,2005-06 3993,Gary Payton,MIA,37.0,193.04,86.18248,Oregon State,USA,1990,1,2,81,7.7,2.9,3.2,3.4,0.018000000000000002,0.099,0.141,0.52,0.17600000000000002,2005-06 3994,Gerald Fitch,MIA,23.0,190.5,85.275296,Kentucky,USA,Undrafted,Undrafted,Undrafted,18,4.7,1.7,1.8,0.3,0.033,0.105,0.21600000000000003,0.424,0.228,2005-06 3995,Gerald Green,BOS,20.0,203.2,90.7184,None,USA,2005,1,18,32,5.2,1.3,0.6,-3.6,0.036000000000000004,0.096,0.21899999999999997,0.541,0.09300000000000001,2005-06 3996,Gerald Wallace,CHA,23.0,200.66,97.52228000000001,Alabama,USA,2001,1,25,55,15.2,7.5,1.7,-2.4,0.07200000000000001,0.191,0.191,0.578,0.08199999999999999,2005-06 3997,Ervin Johnson,MIL,38.0,210.82,111.13004,New Orleans,USA,1993,1,23,18,0.8,1.3,0.1,-18.1,0.08199999999999999,0.244,0.139,0.419,0.045,2005-06 3998,Al Jefferson,BOS,21.0,208.28,120.20188,None,USA,2004,1,15,59,7.9,5.1,0.5,-4.1,0.11199999999999999,0.23199999999999998,0.22,0.53,0.055,2005-06 3999,Al Harrington,ATL,26.0,205.74,111.13004,None,USA,1998,1,25,76,18.6,6.9,3.1,-5.8,0.055999999999999994,0.177,0.26,0.513,0.155,2005-06 4000,Adrian Griffin,DAL,31.0,195.58,104.32616,Seton Hall,USA,Undrafted,Undrafted,Undrafted,52,4.6,4.4,1.7,9.1,0.075,0.14800000000000002,0.10099999999999999,0.521,0.107,2005-06 4001,Andray Blatche,WAS,19.0,210.82,106.59411999999999,None,USA,2005,2,49,29,2.2,1.3,0.3,-2.6,0.08,0.184,0.222,0.45,0.10300000000000001,2005-06 4002,Anderson Varejao,CLE,23.0,208.28,108.86208,None,Brazil,2004,2,30,48,4.6,4.9,0.4,8.0,0.114,0.244,0.139,0.541,0.04,2005-06 4003,Amir Johnson,DET,19.0,205.74,95.25432,None,USA,2005,2,56,3,6.7,1.3,1.0,-24.1,0.1,0.026000000000000002,0.17,0.85,0.125,2005-06 4004,Amar'e Stoudemire,PHX,23.0,208.28,111.13004,None,USA,2002,1,9,3,8.7,5.3,0.7,-2.3,0.113,0.20800000000000002,0.27699999999999997,0.42,0.063,2005-06 4005,Alvin Williams,TOR,31.0,195.58,88.45044,Villanova,USA,1997,2,47,1,1.0,3.0,0.0,-24.3,0.0,0.33299999999999996,0.16899999999999998,0.129,0.0,2005-06 4006,Alonzo Mourning,MIA,36.0,208.28,118.38751200000002,Georgetown,USA,1992,1,2,65,7.8,5.5,0.2,10.5,0.11699999999999999,0.19399999999999998,0.175,0.615,0.013999999999999999,2005-06 4007,Allen Iverson,PHI,31.0,182.88,74.84268,Georgetown,USA,1996,1,1,72,33.0,3.2,7.4,0.8,0.016,0.071,0.354,0.5429999999999999,0.331,2005-06 4008,Alex Scales,SAS,27.0,193.04,88.45044,Oregon,USA,Undrafted,Undrafted,Undrafted,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2005-06 4009,Alex Acker,DET,23.0,195.58,83.91452,Pepperdine,USA,2005,2,60,5,1.8,1.0,0.8,-44.4,0.034,0.138,0.228,0.281,0.19,2005-06 4010,Donyell Marshall,CLE,33.0,205.74,104.32616,Connecticut,USA,1994,1,4,81,9.3,6.1,0.7,2.4,0.06,0.226,0.179,0.517,0.048,2005-06 4011,Dorell Wright,MIA,20.0,203.2,92.98635999999999,None,USA,2004,1,19,20,2.9,1.6,0.4,-20.8,0.018000000000000002,0.25,0.22399999999999998,0.574,0.129,2005-06 4012,Doug Christie,DAL,36.0,198.12,92.98635999999999,Pepperdine,USA,1992,1,17,7,3.7,1.9,2.0,-0.1,0.012,0.073,0.095,0.41600000000000004,0.115,2005-06 4013,Drew Gooden,CLE,24.0,208.28,109.769264,Kansas,USA,2002,1,4,79,10.7,8.4,0.7,0.4,0.126,0.23600000000000002,0.187,0.552,0.044000000000000004,2005-06 4014,Dwayne Jones,BOS,23.0,210.82,113.398,Saint Joseph's,USA,Undrafted,Undrafted,Undrafted,14,1.0,2.2,0.1,12.5,0.16399999999999998,0.273,0.1,0.445,0.034,2005-06 4015,Dwight Howard,ORL,20.0,210.82,120.20188,None,USA,2004,1,1,82,15.8,12.5,1.5,-0.1,0.122,0.293,0.213,0.565,0.07,2005-06 4016,Dwyane Wade,MIA,24.0,193.04,96.16150400000001,Marquette,USA,2003,1,5,75,27.2,5.7,6.7,8.8,0.046,0.126,0.321,0.5770000000000001,0.312,2005-06 4017,Earl Barron,MIA,24.0,213.36,122.46983999999999,Memphis,USA,Undrafted,Undrafted,Undrafted,8,1.6,1.3,0.0,-42.0,0.05,0.195,0.233,0.366,0.0,2005-06 4018,Earl Boykins,DEN,30.0,165.1,60.327736,Eastern Michigan,USA,Undrafted,Undrafted,Undrafted,60,12.6,1.4,3.8,-3.3,0.015,0.047,0.23399999999999999,0.513,0.254,2005-06 4019,Earl Watson,SEA,27.0,185.42,88.45044,UCLA,USA,2001,2,39,70,8.9,2.3,4.1,5.1,0.018000000000000002,0.096,0.19699999999999998,0.5579999999999999,0.289,2005-06 4020,Eddie Basden,CHI,23.0,195.58,97.52228000000001,North Carolina-Charlotte,USA,Undrafted,Undrafted,Undrafted,19,2.1,1.5,0.4,10.2,0.057999999999999996,0.16899999999999998,0.162,0.47100000000000003,0.094,2005-06 4021,Eddie Gill,IND,27.0,182.88,86.18248,Weber State,USA,Undrafted,Undrafted,Undrafted,41,1.1,0.4,0.3,6.6,0.0,0.128,0.23199999999999998,0.408,0.17600000000000002,2005-06 4022,Aaron McKie,LAL,33.0,195.58,94.800728,Temple,USA,1994,1,17,14,0.5,1.4,0.8,-6.2,0.03,0.168,0.06,0.272,0.147,2005-06 4023,Aaron Miles,GSW,23.0,185.42,86.18248,Kansas,USA,Undrafted,Undrafted,Undrafted,19,0.8,0.7,1.3,-3.9,0.0,0.154,0.113,0.405,0.308,2005-06 4024,Aaron Williams,NOK,34.0,205.74,106.59411999999999,Xavier,USA,Undrafted,Undrafted,Undrafted,48,4.6,3.8,0.4,-3.2,0.096,0.182,0.138,0.551,0.036000000000000004,2005-06 4025,Adonal Foyle,GSW,31.0,208.28,122.46983999999999,Colgate,St. Vincent & Grenadines,1997,1,8,77,4.5,5.5,0.4,-0.3,0.086,0.165,0.102,0.524,0.027999999999999997,2005-06 4026,Gilbert Arenas,WAS,24.0,193.04,95.25432,Arizona,USA,2001,2,30,80,29.3,3.5,6.1,2.1,0.019,0.078,0.301,0.581,0.261,2005-06 4027,Andre Barrett,TOR,24.0,177.8,78.471416,Seton Hall,USA,Undrafted,Undrafted,Undrafted,19,4.6,1.3,2.7,-4.7,0.032,0.071,0.188,0.39799999999999996,0.28,2005-06 4028,Gordan Giricek,UTA,29.0,195.58,95.25432,None,Croatia,1999,2,40,37,10.6,1.9,1.7,-6.3,0.02,0.073,0.23,0.48200000000000004,0.128,2005-06 4029,Greg Buckner,DEN,29.0,193.04,92.98635999999999,Clemson,USA,1998,2,53,73,6.7,2.9,1.7,0.6,0.021,0.122,0.126,0.556,0.11,2005-06 4030,Jason Collins,NJN,27.0,213.36,115.66596000000001,Stanford,USA,2001,1,18,71,3.6,4.8,1.0,4.4,0.057,0.156,0.09,0.425,0.055999999999999994,2005-06 4031,Jason Hart,SAC,28.0,190.5,83.91452,Syracuse,USA,2000,2,49,66,3.3,1.1,1.1,-1.9,0.017,0.084,0.168,0.444,0.152,2005-06 4032,Jason Kapono,MIA,25.0,203.2,97.52228000000001,UCLA,USA,2003,2,31,51,4.1,1.4,0.7,-6.6,0.02,0.102,0.14400000000000002,0.54,0.094,2005-06 4033,Jason Kidd,NJN,33.0,193.04,95.25432,California,USA,1994,1,2,80,13.3,7.3,8.4,4.3,0.033,0.196,0.188,0.526,0.369,2005-06 4034,Jason Maxiell,DET,23.0,200.66,117.93392,Cincinnati,USA,2005,1,26,26,2.3,1.1,0.1,-24.6,0.08800000000000001,0.11699999999999999,0.228,0.414,0.031,2005-06 4035,Jason Richardson,GSW,25.0,198.12,102.0582,Michigan State,USA,2001,1,5,75,23.2,5.8,3.1,0.9,0.04,0.13,0.276,0.5379999999999999,0.149,2005-06 4036,Jason Terry,DAL,28.0,187.96,81.64656,Arizona,USA,1999,1,10,80,17.1,2.0,3.8,8.7,0.013999999999999999,0.054000000000000006,0.221,0.575,0.18899999999999997,2005-06 4037,Jason Williams,MIA,30.0,185.42,81.64656,Florida,USA,1998,1,7,59,12.3,2.4,4.9,6.0,0.004,0.078,0.18600000000000003,0.561,0.23399999999999999,2005-06 4038,Jeff Foster,IND,29.0,210.82,113.398,Texas State,USA,1999,1,21,63,5.9,9.1,0.8,2.6,0.166,0.256,0.11199999999999999,0.581,0.05,2005-06 4039,Jeff McInnis,NJN,31.0,193.04,81.19296800000001,North Carolina,USA,1996,2,37,28,5.3,1.8,1.9,-16.2,0.027000000000000003,0.10099999999999999,0.18100000000000002,0.478,0.212,2005-06 4040,Jermaine Jackson,MIL,30.0,195.58,92.532768,Detroit Mercy,USA,Undrafted,Undrafted,Undrafted,30,1.2,0.9,0.8,-24.2,0.049,0.10400000000000001,0.106,0.544,0.217,2005-06 4041,Jarvis Hayes,WAS,24.0,203.2,99.79024,Georgia,USA,2003,1,10,21,9.3,3.6,1.3,-0.4,0.039,0.13,0.185,0.499,0.087,2005-06 4042,Jermaine O'Neal,IND,27.0,210.82,117.93392,None,USA,1996,1,17,51,20.1,9.3,2.6,2.3,0.068,0.226,0.29100000000000004,0.53,0.14800000000000002,2005-06 4043,Jerry Stackhouse,DAL,31.0,198.12,98.88305600000001,North Carolina,USA,1995,1,3,55,13.0,2.8,2.9,3.3,0.026000000000000002,0.09300000000000001,0.248,0.511,0.18600000000000003,2005-06 4044,Jim Jackson,LAL,35.0,198.12,99.79024,Ohio State,USA,1992,1,4,40,3.0,1.9,0.9,1.1,0.023,0.129,0.172,0.365,0.099,2005-06 4045,Jiri Welsch,MIL,26.0,200.66,94.34713599999999,None,Czech Republic,2002,1,16,58,4.3,1.9,1.1,-10.9,0.027999999999999997,0.125,0.157,0.48200000000000004,0.122,2005-06 4046,Joe Johnson,ATL,25.0,200.66,104.32616,Arkansas,USA,2001,1,10,82,20.2,4.1,6.5,-5.3,0.034,0.08800000000000001,0.24600000000000002,0.537,0.29,2005-06 4047,Joe Smith,MIL,30.0,208.28,102.0582,Maryland,USA,1995,1,1,44,8.6,5.2,0.7,-0.8,0.107,0.212,0.20199999999999999,0.5329999999999999,0.057999999999999996,2005-06 4048,Dirk Nowitzki,DAL,28.0,213.36,111.13004,None,Germany,1998,1,9,81,26.6,9.0,2.8,8.6,0.046,0.23399999999999999,0.301,0.589,0.142,2005-06 4049,Joey Graham,TOR,24.0,200.66,102.0582,Oklahoma State,USA,2005,1,16,80,6.7,3.1,0.8,-4.5,0.043,0.14400000000000002,0.16699999999999998,0.564,0.061,2005-06 4050,Johan Petro,SEA,20.0,213.36,112.037224,None,France,2005,1,25,68,5.2,4.4,0.2,-6.3,0.10300000000000001,0.17800000000000002,0.141,0.53,0.018000000000000002,2005-06 4051,John Edwards,ATL,24.0,213.36,124.7378,Kent State,USA,Undrafted,Undrafted,Undrafted,40,1.8,1.2,0.1,-12.7,0.073,0.128,0.127,0.508,0.027999999999999997,2005-06 4052,John Lucas III,HOU,23.0,180.34,81.64656,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,13,2.3,0.4,0.9,-9.7,0.02,0.038,0.18600000000000003,0.41700000000000004,0.2,2005-06 4053,John Salmons,PHI,26.0,198.12,93.89354399999999,Miami (FL),USA,2002,1,26,82,7.5,2.7,2.7,-4.1,0.027000000000000003,0.099,0.163,0.508,0.172,2005-06 4054,Jerome James,NYK,30.0,215.9,127.00576000000001,Florida A&M,USA,1998,2,36,44,3.1,2.1,0.3,-19.0,0.11,0.162,0.21100000000000002,0.494,0.057999999999999996,2005-06 4055,Jarron Collins,UTA,27.0,210.82,115.66596000000001,Stanford,USA,2001,2,52,79,5.3,4.2,1.2,-1.0,0.09300000000000001,0.145,0.11900000000000001,0.551,0.096,2005-06 4056,Jarrett Jack,POR,22.0,190.5,91.625584,Georgia Tech,USA,2005,1,22,79,6.7,2.0,2.8,-12.8,0.013000000000000001,0.107,0.179,0.528,0.249,2005-06 4057,Jared Jeffries,WAS,24.0,210.82,108.86208,Indiana,USA,2002,1,11,77,6.4,4.9,1.9,2.4,0.094,0.128,0.136,0.5,0.114,2005-06 4058,Greg Ostertag,UTA,33.0,218.44,127.00576000000001,Kansas,USA,1995,1,28,60,2.4,3.8,1.0,-9.4,0.125,0.21100000000000002,0.11199999999999999,0.503,0.122,2005-06 4059,Ha Ha,POR,20.0,220.98,138.34556,Yonsei (KOR),South Korea,2004,2,46,27,1.6,1.8,0.0,-12.6,0.073,0.205,0.12,0.5720000000000001,0.008,2005-06 4060,Hakim Warrick,MEM,23.0,205.74,99.336648,Syracuse,USA,2005,1,19,68,4.1,2.1,0.4,-5.0,0.069,0.16399999999999998,0.221,0.499,0.08,2005-06 4061,Hedo Turkoglu,ORL,27.0,208.28,99.79024,None,Turkey,2000,1,16,78,14.9,4.3,2.8,-1.6,0.034,0.12,0.20600000000000002,0.578,0.142,2005-06 4062,Howard Eisley,DEN,33.0,187.96,83.91452,Boston College,USA,1994,2,30,32,3.2,1.0,2.2,-8.1,0.01,0.092,0.158,0.445,0.294,2005-06 4063,Ike Diogu,GSW,22.0,203.2,115.66596000000001,Arizona State,USA,2005,1,9,69,7.0,3.3,0.4,-3.7,0.10099999999999999,0.156,0.20800000000000002,0.596,0.051,2005-06 4064,Ime Udoka,NYK,28.0,195.58,99.79024,Portland State,USA,Undrafted,Undrafted,Undrafted,8,2.8,2.1,0.8,-4.2,0.035,0.152,0.121,0.413,0.08199999999999999,2005-06 4065,Ira Newble,CLE,31.0,200.66,99.79024,Miami (OH),USA,Undrafted,Undrafted,Undrafted,36,1.3,1.6,0.3,3.4,0.07,0.114,0.099,0.375,0.039,2005-06 4066,JR Smith,NOK,20.0,198.12,99.79024,None,USA,2004,1,18,55,7.7,2.0,1.1,-7.9,0.023,0.113,0.21899999999999997,0.515,0.102,2005-06 4067,Jackie Butler,NYK,21.0,208.28,117.93392,Southern Illinois,USA,Undrafted,Undrafted,Undrafted,55,5.3,3.3,0.5,6.7,0.121,0.188,0.193,0.5870000000000001,0.055999999999999994,2005-06 4068,Jackson Vroman,NOK,25.0,208.28,99.79024,Iowa State,USA,2004,2,31,41,1.8,2.1,0.3,2.0,0.099,0.161,0.12300000000000001,0.428,0.042,2005-06 4069,Jacque Vaughn,NJN,31.0,185.42,86.18248,Kansas,USA,1997,1,27,80,3.4,1.1,1.5,-6.1,0.015,0.073,0.13,0.488,0.182,2005-06 4070,Jake Tsakalidis,MEM,27.0,218.44,131.54168,None,Greece,2000,1,25,51,5.0,4.2,0.3,9.7,0.142,0.215,0.163,0.632,0.03,2005-06 4071,Jake Voskuhl,CHA,28.0,210.82,115.66596000000001,Connecticut,USA,2000,2,33,51,5.3,3.6,0.8,-2.3,0.08199999999999999,0.18600000000000003,0.174,0.47,0.08,2005-06 4072,Jalen Rose,NYK,33.0,203.2,97.52228000000001,Michigan,USA,1994,1,13,72,12.3,2.9,2.5,-7.1,0.017,0.11800000000000001,0.218,0.5379999999999999,0.158,2005-06 4073,Jamaal Magloire,MIL,28.0,210.82,117.480328,Kentucky,Canada,2000,1,19,82,9.2,9.5,0.7,-2.4,0.107,0.272,0.175,0.494,0.036000000000000004,2005-06 4074,Jamaal Tinsley,IND,28.0,190.5,83.91452,Iowa State,USA,2001,1,27,42,9.3,3.2,5.0,-0.5,0.037000000000000005,0.096,0.222,0.45799999999999996,0.336,2005-06 4075,Jamal Crawford,NYK,26.0,195.58,86.18248,Michigan,USA,2000,1,8,79,14.3,3.1,3.8,-7.0,0.017,0.105,0.215,0.544,0.212,2005-06 4076,Jamal Sampson,SAC,23.0,210.82,106.59411999999999,California,USA,2002,2,46,12,0.8,1.5,0.4,4.9,0.135,0.342,0.08900000000000001,0.635,0.23800000000000002,2005-06 4077,Jameer Nelson,ORL,24.0,182.88,86.18248,Saint Joseph's,USA,2004,1,20,62,14.6,2.9,4.9,2.2,0.027999999999999997,0.09699999999999999,0.249,0.5670000000000001,0.297,2005-06 4078,James Jones,PHX,25.0,203.2,99.79024,Miami (FL),USA,2003,2,49,75,9.3,3.4,0.8,6.7,0.027999999999999997,0.131,0.17,0.551,0.044000000000000004,2005-06 4079,James Posey,MIA,29.0,203.2,98.429464,Xavier,USA,1999,1,18,67,7.2,4.8,1.3,6.3,0.021,0.16899999999999998,0.11599999999999999,0.5720000000000001,0.066,2005-06 4080,James Singleton,LAC,24.0,203.2,97.52228000000001,Murray State,USA,Undrafted,Undrafted,Undrafted,59,3.4,3.3,0.5,-1.1,0.102,0.21,0.125,0.5870000000000001,0.059000000000000004,2005-06 4081,James Thomas,CHI,25.0,205.74,111.13004,Texas,USA,Undrafted,Undrafted,Undrafted,22,1.3,1.8,0.0,7.4,0.092,0.205,0.095,0.556,0.011000000000000001,2005-06 4082,Jannero Pargo,CHI,26.0,185.42,79.3786,Arkansas,USA,Undrafted,Undrafted,Undrafted,57,4.8,1.1,1.6,-0.1,0.013999999999999999,0.091,0.248,0.455,0.266,2005-06 4083,Grant Hill,ORL,33.0,203.2,102.0582,Duke,USA,1994,1,3,21,15.1,3.8,2.3,-3.5,0.03,0.139,0.245,0.552,0.142,2005-06 4084,Andre Iguodala,PHI,22.0,198.12,93.89354399999999,Arizona,USA,2004,1,9,82,12.3,5.9,3.1,1.2,0.045,0.136,0.147,0.598,0.126,2005-06 4085,Andre Miller,DEN,30.0,187.96,92.98635999999999,Utah,USA,1999,1,8,82,13.7,4.3,8.2,3.1,0.038,0.1,0.20199999999999999,0.532,0.355,2005-06 4086,Andre Owens,UTA,25.0,193.04,90.7184,Houston,USA,Undrafted,Undrafted,Undrafted,23,3.0,0.9,0.3,-10.0,0.054000000000000006,0.062,0.203,0.42100000000000004,0.079,2005-06 4087,Dan Dickau,BOS,27.0,182.88,86.18248,Gonzaga,USA,2002,1,28,19,3.3,0.8,2.1,0.5,0.028999999999999998,0.055999999999999994,0.141,0.575,0.235,2005-06 4088,Damon Stoudamire,MEM,32.0,177.8,78.92500799999999,Arizona,USA,1995,1,7,27,11.7,3.5,4.7,4.3,0.032,0.099,0.207,0.504,0.263,2005-06 4089,Damon Jones,CLE,29.0,190.5,86.18248,Houston,USA,Undrafted,Undrafted,Undrafted,82,6.7,1.6,2.1,2.2,0.008,0.069,0.125,0.5379999999999999,0.124,2005-06 4090,Damien Wilkins,SEA,26.0,198.12,102.0582,Georgia,USA,Undrafted,Undrafted,Undrafted,82,6.5,2.3,1.3,-6.0,0.061,0.092,0.174,0.529,0.114,2005-06 4091,Dale Davis,DET,37.0,210.82,114.30518400000001,Clemson,USA,1991,1,13,28,0.9,1.9,0.2,-10.1,0.135,0.222,0.08900000000000001,0.425,0.054000000000000006,2005-06 4092,Dahntay Jones,MEM,25.0,198.12,95.25432,Duke,USA,2003,1,20,71,4.0,1.5,0.5,-6.7,0.024,0.10800000000000001,0.177,0.462,0.075,2005-06 4093,DJ Mbenga,DAL,25.0,213.36,111.13004,None,Democratic Republic of the Congo,Undrafted,Undrafted,Undrafted,43,1.7,1.3,0.0,0.1,0.10300000000000001,0.18,0.16899999999999998,0.5379999999999999,0.013999999999999999,2005-06 4094,Cuttino Mobley,LAC,30.0,193.04,97.52228000000001,Rhode Island,USA,1998,2,41,79,14.8,4.3,3.0,2.6,0.02,0.10800000000000001,0.19699999999999998,0.519,0.129,2005-06 4095,Corliss Williamson,SAC,32.0,200.66,111.13004,Arkansas,USA,1995,1,13,37,3.4,1.8,0.4,5.1,0.07,0.133,0.201,0.506,0.068,2005-06 4096,Corey Maggette,LAC,26.0,198.12,102.0582,Duke,USA,1999,1,13,32,17.8,5.3,2.1,7.3,0.037000000000000005,0.153,0.275,0.584,0.12,2005-06 4097,Clifford Robinson,NJN,39.0,208.28,108.86208,Connecticut,USA,1989,2,36,80,6.9,3.3,1.1,0.3,0.034,0.134,0.154,0.502,0.085,2005-06 4098,Dan Gadzuric,MIL,28.0,210.82,108.86208,UCLA,Netherlands,2002,2,33,74,5.2,3.1,0.3,-2.4,0.11699999999999999,0.204,0.19699999999999998,0.55,0.048,2005-06 4099,Chucky Atkins,MEM,31.0,180.34,83.91452,South Florida,USA,Undrafted,Undrafted,Undrafted,71,9.5,1.7,2.8,0.8,0.016,0.068,0.2,0.526,0.20600000000000002,2005-06 4100,Chris Wilcox,SEA,23.0,208.28,106.59411999999999,Maryland,USA,2002,1,8,77,8.1,5.3,0.7,0.4,0.09300000000000001,0.21600000000000003,0.174,0.605,0.054000000000000006,2005-06 4101,Chris Webber,PHI,33.0,208.28,111.13004,Michigan,USA,1993,1,1,75,20.2,9.9,3.4,-1.9,0.07400000000000001,0.22899999999999998,0.276,0.48200000000000004,0.157,2005-06 4102,Chris Taft,GSW,21.0,208.28,118.38751200000002,Pittsburgh,USA,2005,2,42,17,2.8,2.1,0.1,4.2,0.142,0.156,0.134,0.578,0.024,2005-06 4103,Chris Paul,NOK,21.0,182.88,79.3786,Wake Forest,USA,2005,1,4,78,16.1,5.1,7.8,-3.9,0.025,0.147,0.22,0.546,0.37799999999999995,2005-06 4104,Chris Mihm,LAL,26.0,213.36,120.20188,Texas,USA,2000,1,7,59,10.2,6.3,1.0,1.4,0.11,0.18,0.185,0.552,0.063,2005-06 4105,Chris Kaman,LAC,24.0,213.36,120.20188,Central Michigan,USA,2003,1,6,78,11.9,9.6,1.0,3.7,0.09,0.242,0.18100000000000002,0.57,0.05,2005-06 4106,Chris Duhon,CHI,23.0,185.42,83.91452,Duke,USA,2004,2,38,74,8.7,3.0,5.0,-0.9,0.015,0.105,0.151,0.5379999999999999,0.26899999999999996,2005-06 4107,Chris Bosh,TOR,22.0,208.28,104.32616,Georgia Tech,USA,2003,1,4,70,22.5,9.2,2.6,-1.3,0.08900000000000001,0.20800000000000002,0.253,0.585,0.11699999999999999,2005-06 4108,Chris Andersen,NOK,27.0,208.28,103.418976,Blinn,USA,Undrafted,Undrafted,Undrafted,32,5.0,4.8,0.2,-0.8,0.122,0.205,0.139,0.562,0.018000000000000002,2005-06 4109,Chauncey Billups,DET,29.0,190.5,91.625584,Colorado,USA,1997,1,3,81,18.5,3.1,8.6,10.5,0.016,0.08800000000000001,0.231,0.602,0.392,2005-06 4110,Charlie Villanueva,TOR,21.0,210.82,108.86208,Connecticut,USA,2005,1,7,81,13.0,6.4,1.1,-0.8,0.09,0.18100000000000002,0.215,0.521,0.063,2005-06 4111,Chuck Hayes,HOU,23.0,198.12,109.769264,Kentucky,USA,Undrafted,Undrafted,Undrafted,40,3.7,4.5,0.4,9.2,0.14,0.253,0.12,0.589,0.044000000000000004,2005-06 4112,Daniel Ewing,LAC,23.0,190.5,83.91452,Duke,USA,2005,2,32,66,3.8,1.3,1.3,-1.2,0.027999999999999997,0.07200000000000001,0.16,0.45799999999999996,0.145,2005-06 4113,Danny Fortson,SEA,30.0,203.2,117.93392,Cincinnati,USA,1997,1,10,23,3.8,3.4,0.1,8.9,0.14800000000000002,0.223,0.158,0.622,0.011000000000000001,2005-06 4114,Danny Granger,IND,23.0,205.74,103.418976,New Mexico,USA,2005,1,17,78,7.5,4.9,1.2,-1.4,0.087,0.16,0.166,0.54,0.092,2005-06 4115,Dikembe Mutombo,HOU,40.0,218.44,120.20188,Georgetown,Congo,1991,1,4,64,2.6,4.8,0.1,-2.5,0.132,0.255,0.08900000000000001,0.626,0.006999999999999999,2005-06 4116,Dijon Thompson,PHX,23.0,200.66,88.45044,UCLA,USA,2005,2,54,10,2.8,1.1,0.1,-8.7,0.09300000000000001,0.156,0.272,0.541,0.042,2005-06 4117,Devin Harris,DAL,23.0,190.5,83.91452,Wisconsin,USA,2004,1,5,56,9.9,2.2,3.2,6.4,0.025,0.09,0.21600000000000003,0.544,0.247,2005-06 4118,Devin Green,LAL,23.0,200.66,96.16150400000001,Hampton,USA,Undrafted,Undrafted,Undrafted,27,0.9,0.9,0.3,-16.1,0.085,0.11699999999999999,0.14400000000000002,0.336,0.09699999999999999,2005-06 4119,Devin Brown,UTA,27.0,195.58,99.79024,Texas-San Antonio,USA,Undrafted,Undrafted,Undrafted,81,7.5,2.6,1.3,-4.0,0.049,0.096,0.193,0.493,0.10800000000000001,2005-06 4120,Devean George,LAL,28.0,203.2,106.59411999999999,Augsburg,USA,1999,1,23,71,6.3,3.9,1.0,2.7,0.06,0.145,0.153,0.484,0.073,2005-06 4121,Desmond Mason,NOK,28.0,195.58,100.697424,Oklahoma State,USA,2000,1,17,70,10.8,4.3,0.9,-6.8,0.035,0.133,0.207,0.46,0.055,2005-06 4122,Derrick Zimmerman,NJN,24.0,190.5,88.45044,Mississippi State,USA,2003,2,40,2,2.0,2.0,3.5,-14.7,0.037000000000000005,0.16699999999999998,0.111,0.667,0.467,2005-06 4123,Deron Williams,UTA,22.0,190.5,95.25432,Illinois,USA,2005,1,3,80,10.8,2.4,4.5,-2.9,0.018000000000000002,0.083,0.201,0.5,0.27399999999999997,2005-06 4124,Derek Fisher,GSW,31.0,185.42,92.98635999999999,Arkansas-Little Rock,USA,1996,1,24,82,13.3,2.6,4.3,-0.7,0.015,0.078,0.20199999999999999,0.536,0.23,2005-06 4125,Derek Anderson,MIA,31.0,195.58,88.45044,Kentucky,USA,1997,1,13,43,8.1,3.3,2.3,-1.4,0.025,0.13699999999999998,0.18600000000000003,0.496,0.165,2005-06 4126,DerMarr Johnson,DEN,26.0,205.74,95.25432,Cincinnati,USA,2000,1,6,58,6.1,1.7,0.9,-1.9,0.023,0.096,0.179,0.545,0.095,2005-06 4127,Deng Gai,PHI,24.0,205.74,113.398,Fairfield,Sudan (UK),Undrafted,Undrafted,Undrafted,2,0.0,0.0,0.0,-29.1,0.0,0.0,0.0,0.0,0.0,2005-06 4128,Donta Smith,ATL,22.0,200.66,97.52228000000001,Southeastern Illinois,USA,2004,2,34,23,1.7,0.6,0.4,3.6,0.031,0.11,0.124,0.589,0.102,2005-06 4129,DeShawn Stevenson,ORL,25.0,195.58,95.25432,None,USA,2000,1,23,82,11.0,2.9,2.0,-4.3,0.028999999999999998,0.083,0.18100000000000002,0.507,0.10099999999999999,2005-06 4130,DeSagana Diop,DAL,24.0,213.36,127.00576000000001,None,Senegal,2001,1,8,81,2.3,4.6,0.3,9.5,0.121,0.18,0.07,0.512,0.022000000000000002,2005-06 4131,David West,NOK,25.0,205.74,108.86208,Xavier,USA,2003,1,18,74,17.1,7.4,1.2,-4.3,0.077,0.18600000000000003,0.22899999999999998,0.5539999999999999,0.07,2005-06 4132,David Wesley,HOU,35.0,185.42,92.079176,Baylor,USA,Undrafted,Undrafted,Undrafted,71,9.9,2.5,2.9,-1.9,0.012,0.075,0.152,0.546,0.147,2005-06 4133,David Lee,NYK,23.0,205.74,112.94440800000001,Florida,USA,2005,1,30,67,5.1,4.5,0.6,-4.0,0.11800000000000001,0.20800000000000002,0.134,0.609,0.062,2005-06 4134,David Harrison,IND,23.0,213.36,127.00576000000001,Colorado,USA,2004,1,29,67,5.7,3.8,0.2,-2.0,0.094,0.18600000000000003,0.203,0.519,0.026000000000000002,2005-06 4135,Darrick Martin,TOR,35.0,180.34,77.11064,UCLA,USA,Undrafted,Undrafted,Undrafted,40,2.6,0.5,1.4,7.5,0.006999999999999999,0.068,0.17,0.474,0.247,2005-06 4136,Darrell Armstrong,DAL,38.0,185.42,81.64656,Fayetteville State,USA,Undrafted,Undrafted,Undrafted,62,2.1,1.3,1.4,1.7,0.036000000000000004,0.11900000000000001,0.151,0.444,0.21600000000000003,2005-06 4137,Darko Milicic,ORL,21.0,213.36,111.13004,None,Serbia,2003,1,2,55,4.8,2.7,0.7,-1.9,0.071,0.162,0.19,0.52,0.096,2005-06 4138,Darius Songaila,CHI,28.0,203.2,108.86208,Wake Forest,Lithuania,2002,2,49,62,9.2,4.0,1.4,1.8,0.069,0.151,0.215,0.524,0.113,2005-06 4139,Darius Miles,POR,24.0,205.74,95.25432,None,USA,2000,1,3,40,14.0,4.6,1.8,-8.9,0.023,0.14,0.256,0.48,0.106,2005-06 4140,Charlie Bell,MIL,27.0,190.5,90.7184,Michigan State,USA,Undrafted,Undrafted,Undrafted,59,8.4,2.0,2.2,0.9,0.019,0.094,0.17600000000000002,0.55,0.165,2005-06 4141,Charles Smith,DEN,30.0,193.04,90.7184,New Mexico,USA,1997,1,26,22,3.6,0.7,0.4,-4.5,0.016,0.076,0.179,0.53,0.07400000000000001,2005-06 4142,Channing Frye,NYK,23.0,210.82,112.490816,Arizona,USA,2005,1,8,65,12.3,5.8,0.8,-2.6,0.1,0.183,0.23600000000000002,0.541,0.066,2005-06 4143,Caron Butler,WAS,26.0,200.66,103.418976,Connecticut,USA,2002,1,10,75,17.6,6.2,2.5,1.1,0.048,0.158,0.231,0.535,0.12,2005-06 4144,Beno Udrih,SAS,23.0,190.5,90.7184,None,Slovenia,2004,1,28,54,5.1,1.0,1.7,4.7,0.037000000000000005,0.07200000000000001,0.251,0.539,0.273,2005-06 4145,Ben Wallace,DET,31.0,205.74,108.86208,Virginia Union,USA,Undrafted,Undrafted,Undrafted,82,7.3,11.3,1.9,11.2,0.12300000000000001,0.256,0.113,0.501,0.081,2005-06 4146,Ben Gordon,CHI,23.0,190.5,90.7184,Connecticut,USA,2004,1,3,80,16.9,2.7,3.0,1.6,0.02,0.079,0.262,0.531,0.17,2005-06 4147,Baron Davis,GSW,27.0,190.5,97.52228000000001,UCLA,USA,1999,1,3,54,17.9,4.4,8.9,0.9,0.025,0.11,0.261,0.489,0.41200000000000003,2005-06 4148,Awvee Storey,WAS,29.0,198.12,102.0582,Arizona State,USA,Undrafted,Undrafted,Undrafted,25,1.7,0.9,0.2,8.5,0.07200000000000001,0.16699999999999998,0.2,0.456,0.059000000000000004,2005-06 4149,Austin Croshere,IND,31.0,208.28,106.59411999999999,Providence,USA,1997,1,12,50,8.2,5.3,1.2,3.8,0.068,0.19699999999999998,0.156,0.618,0.08900000000000001,2005-06 4150,Arvydas Macijauskas,NOK,26.0,193.04,97.068688,None,Lithuania,Undrafted,Undrafted,Undrafted,19,2.3,0.5,0.3,-10.8,0.027999999999999997,0.065,0.19699999999999998,0.462,0.071,2005-06 4151,Antonio McDyess,DET,31.0,205.74,111.13004,Alabama,USA,1995,1,2,82,7.8,5.3,1.1,3.8,0.106,0.203,0.187,0.52,0.08900000000000001,2005-06 4152,Antonio Davis,TOR,37.0,205.74,111.13004,Texas-El Paso,USA,1990,2,45,44,4.9,4.7,0.5,-11.5,0.114,0.158,0.135,0.479,0.035,2005-06 4153,Antonio Daniels,WAS,31.0,193.04,92.98635999999999,Bowling Green,USA,1997,1,4,80,9.6,2.2,3.6,1.9,0.01,0.081,0.156,0.55,0.196,2005-06 4154,Antonio Burks,MEM,26.0,182.88,88.45044,Memphis,USA,2004,2,36,57,2.0,0.6,1.3,-1.1,0.009000000000000001,0.071,0.16399999999999998,0.36700000000000005,0.24,2005-06 4155,Antoine Wright,NJN,22.0,200.66,95.25432,Texas A&M,USA,2005,1,15,39,1.8,0.8,0.3,-6.4,0.026000000000000002,0.073,0.14800000000000002,0.386,0.057,2005-06 4156,Antoine Walker,MIA,29.0,205.74,111.13004,Kentucky,USA,1996,1,6,82,12.2,5.1,2.0,3.3,0.055999999999999994,0.16399999999999998,0.23,0.524,0.129,2005-06 4157,Anthony Roberson,MEM,23.0,187.96,81.64656,Florida,USA,Undrafted,Undrafted,Undrafted,16,2.2,0.4,0.3,4.9,0.0,0.069,0.20600000000000002,0.5489999999999999,0.122,2005-06 4158,Anthony Johnson,IND,31.0,190.5,90.7184,College of Charleston,USA,1997,2,39,75,9.2,2.2,4.3,4.0,0.019,0.077,0.185,0.52,0.27899999999999997,2005-06 4159,Anthony Grundy,ATL,27.0,190.5,83.91452,North Carolina State,USA,Undrafted,Undrafted,Undrafted,12,4.3,1.4,0.8,10.7,0.011000000000000001,0.14400000000000002,0.22,0.589,0.13,2005-06 4160,Anthony Goldwire,LAC,34.0,187.96,82.553744,Houston,USA,1994,2,52,3,0.7,0.3,0.7,-0.7,0.0,0.077,0.179,0.14300000000000002,0.182,2005-06 4161,Anthony Carter,MIN,31.0,187.96,88.45044,Hawaii,USA,Undrafted,Undrafted,Undrafted,45,3.3,1.4,2.2,-3.3,0.018000000000000002,0.106,0.16,0.465,0.27699999999999997,2005-06 4162,Antawn Jamison,WAS,30.0,205.74,106.59411999999999,North Carolina,USA,1998,1,4,82,20.5,9.3,1.9,2.5,0.057,0.217,0.23600000000000002,0.518,0.083,2005-06 4163,Anfernee Hardaway,NYK,34.0,200.66,97.52228000000001,Memphis,USA,1993,1,3,4,2.5,2.5,2.0,5.2,0.0,0.175,0.139,0.336,0.174,2005-06 4164,Andris Biedrins,GSW,20.0,210.82,111.13004,None,Latvia,2004,1,11,68,3.8,4.2,0.4,1.3,0.14,0.187,0.11199999999999999,0.595,0.038,2005-06 4165,Andrew Bynum,LAL,18.0,213.36,124.7378,None,USA,2005,1,10,46,1.6,1.7,0.2,-4.0,0.11,0.154,0.152,0.39399999999999996,0.044000000000000004,2005-06 4166,Andrew Bogut,MIL,21.0,213.36,111.13004,Utah,Australia,2005,1,1,82,9.4,7.0,2.3,0.8,0.094,0.196,0.159,0.555,0.133,2005-06 4167,Andres Nocioni,CHI,26.0,200.66,102.0582,None,Argentina,Undrafted,Undrafted,Undrafted,82,13.0,6.1,1.4,-1.3,0.045,0.214,0.212,0.5670000000000001,0.091,2005-06 4168,Andrei Kirilenko,UTA,25.0,205.74,102.0582,None,Russia,1999,1,24,69,15.3,8.0,4.3,0.6,0.075,0.18100000000000002,0.20600000000000002,0.556,0.20199999999999999,2005-06 4169,Bernard Robinson,CHA,25.0,198.12,95.25432,Michigan,USA,2004,2,45,66,6.4,3.3,1.2,-2.9,0.052000000000000005,0.146,0.16899999999999998,0.498,0.096,2005-06 4170,John Thomas,NJN,30.0,205.74,120.20188,Minnesota,USA,1997,1,25,16,0.9,1.3,0.1,-3.7,0.11199999999999999,0.11199999999999999,0.094,0.447,0.026000000000000002,2005-06 4171,Billy Thomas,WAS,30.0,195.58,99.79024,Kansas,USA,Undrafted,Undrafted,Undrafted,17,2.2,0.8,0.5,-3.0,0.039,0.08,0.156,0.465,0.10800000000000001,2005-06 4172,Bobby Jackson,MEM,33.0,185.42,83.91452,Minnesota,USA,1997,1,23,71,11.4,3.1,2.7,4.5,0.03,0.122,0.25,0.49700000000000005,0.205,2005-06 4173,Carmelo Anthony,DEN,22.0,203.2,104.32616,Syracuse,USA,2003,1,3,80,26.5,4.9,2.7,1.1,0.05,0.107,0.319,0.563,0.141,2005-06 4174,Carlos Delfino,DET,23.0,198.12,104.32616,None,Argentina,2003,1,25,68,3.6,1.7,0.6,-4.8,0.044000000000000004,0.145,0.188,0.483,0.105,2005-06 4175,Carlos Boozer,UTA,24.0,205.74,117.02673600000001,Duke,USA,2002,2,34,33,16.3,8.6,2.7,-3.2,0.086,0.254,0.23399999999999999,0.585,0.154,2005-06 4176,Carlos Arroyo,ORL,26.0,187.96,91.625584,Florida International,Puerto Rico,Undrafted,Undrafted,Undrafted,77,5.8,1.7,3.0,2.2,0.034,0.094,0.205,0.512,0.32,2005-06 4177,Calvin Booth,WAS,30.0,210.82,113.398,Penn State,USA,1999,2,35,33,1.4,1.6,0.4,-3.8,0.087,0.16399999999999998,0.106,0.451,0.075,2005-06 4178,Calbert Cheaney,GSW,34.0,200.66,95.25432,Indiana,USA,1993,1,6,42,2.2,1.5,0.5,-12.5,0.047,0.11,0.128,0.41200000000000003,0.07400000000000001,2005-06 4179,CJ Miles,UTA,19.0,198.12,95.25432,None,USA,2005,2,34,23,3.4,1.7,0.7,-4.5,0.1,0.126,0.214,0.456,0.142,2005-06 4180,Bryon Russell,DEN,35.0,200.66,102.0582,Long Beach State,USA,1993,2,45,1,0.0,1.0,1.0,60.0,0.0,0.5,0.0,0.0,0.33299999999999996,2005-06 4181,Bruce Bowen,SAS,35.0,200.66,90.7184,Cal State-Fullerton,USA,Undrafted,Undrafted,Undrafted,82,7.5,3.9,1.5,8.7,0.016,0.11900000000000001,0.11199999999999999,0.54,0.067,2005-06 4182,Brian Skinner,POR,30.0,205.74,120.20188,Baylor,USA,1998,1,22,65,2.9,3.5,0.5,-10.5,0.095,0.187,0.115,0.517,0.055999999999999994,2005-06 4183,Brian Scalabrine,BOS,28.0,205.74,106.59411999999999,Southern California,USA,2001,2,34,71,2.9,1.6,0.7,-2.1,0.036000000000000004,0.11199999999999999,0.129,0.491,0.09,2005-06 4184,Brian Grant,PHX,34.0,205.74,115.212368,Xavier,USA,1994,1,8,21,2.9,2.7,0.3,-2.0,0.048,0.198,0.13699999999999998,0.445,0.039,2005-06 4185,Brian Cook,LAL,25.0,205.74,117.02673600000001,Illinois,USA,2003,1,24,81,7.9,3.4,0.9,3.5,0.068,0.14800000000000002,0.183,0.578,0.079,2005-06 4186,Brian Cardinal,MEM,29.0,203.2,111.13004,Purdue,USA,2000,2,44,36,3.4,1.5,0.9,6.7,0.034,0.142,0.183,0.505,0.136,2005-06 4187,Brevin Knight,CHA,30.0,177.8,77.11064,Stanford,USA,1997,1,16,69,12.6,3.2,8.8,-5.3,0.016,0.099,0.20199999999999999,0.478,0.41200000000000003,2005-06 4188,Brent Barry,SAS,34.0,200.66,95.25432,Oregon State,USA,1995,1,15,74,5.8,2.1,1.7,10.5,0.027000000000000003,0.11599999999999999,0.159,0.581,0.157,2005-06 4189,Brendan Haywood,WAS,26.0,213.36,119.294696,North Carolina,USA,2001,1,20,79,7.3,5.9,0.6,2.0,0.11699999999999999,0.163,0.149,0.542,0.038,2005-06 4190,Brandon Bass,NOK,21.0,203.2,108.86208,Louisiana State,USA,2005,2,33,29,2.3,2.3,0.1,-9.6,0.084,0.217,0.159,0.434,0.02,2005-06 4191,Brad Miller,SAC,30.0,213.36,118.38751200000002,Purdue,USA,Undrafted,Undrafted,Undrafted,79,15.0,7.8,4.7,3.5,0.05,0.19399999999999998,0.18899999999999997,0.5760000000000001,0.205,2005-06 4192,Bracey Wright,MIN,21.0,190.5,95.25432,Indiana,USA,2005,2,47,7,8.9,2.6,0.7,-4.3,0.025,0.12,0.228,0.534,0.07200000000000001,2005-06 4193,Bostjan Nachbar,NJN,25.0,205.74,100.243832,None,Slovenia,2002,1,15,36,4.4,1.7,0.8,-1.4,0.018000000000000002,0.124,0.184,0.44799999999999995,0.094,2005-06 4194,Boris Diaw,PHX,24.0,203.2,97.52228000000001,None,France,2003,1,21,81,13.3,6.9,6.2,9.3,0.063,0.151,0.179,0.564,0.245,2005-06 4195,Bonzi Wells,SAC,29.0,195.58,95.25432,Ball State,USA,1998,1,11,52,13.6,7.7,2.8,3.1,0.1,0.183,0.221,0.507,0.139,2005-06 4196,Boniface Ndong,LAC,28.0,213.36,92.98635999999999,None,Senegal,Undrafted,Undrafted,Undrafted,23,2.2,1.6,0.3,-14.0,0.106,0.2,0.187,0.439,0.08,2005-06 4197,Bobby Simmons,MIL,26.0,198.12,103.418976,DePaul,USA,2001,2,41,75,13.4,4.4,2.3,0.4,0.042,0.114,0.184,0.5589999999999999,0.11199999999999999,2005-06 4198,Bo Outlaw,ORL,35.0,203.2,99.79024,Houston,USA,Undrafted,Undrafted,Undrafted,32,2.3,2.4,0.4,-0.8,0.11,0.14800000000000002,0.106,0.61,0.065,2005-06 4199,Jon Barry,HOU,36.0,195.58,95.25432,Georgia Tech,USA,1992,1,21,20,4.3,1.6,1.3,-8.4,0.004,0.10300000000000001,0.138,0.5529999999999999,0.129,2005-06 4200,Joel Przybilla,POR,26.0,215.9,115.66596000000001,Minnesota,USA,2000,1,9,56,6.1,7.0,0.8,-10.0,0.125,0.21,0.131,0.561,0.049,2005-06 4201,Jose Calderon,TOR,24.0,190.5,95.25432,None,Spain,Undrafted,Undrafted,Undrafted,64,5.5,2.2,4.5,-3.2,0.024,0.09,0.141,0.495,0.301,2005-06 4202,Richie Frahm,HOU,28.0,195.58,95.25432,Gonzaga,USA,Undrafted,Undrafted,Undrafted,33,3.3,1.0,0.6,-3.8,0.01,0.106,0.15,0.517,0.09699999999999999,2005-06 4203,Rick Brunson,HOU,34.0,193.04,86.18248,Temple,USA,Undrafted,Undrafted,Undrafted,27,2.0,0.8,1.3,-8.1,0.005,0.091,0.162,0.455,0.243,2005-06 4204,Ricky Davis,MIN,26.0,200.66,88.45044,Iowa,USA,1998,1,21,78,19.4,4.5,5.1,-1.2,0.025,0.102,0.23800000000000002,0.521,0.21100000000000002,2005-06 4205,Robert Horry,SAS,35.0,208.28,108.86208,Alabama,USA,1992,1,11,63,5.1,3.8,1.3,11.0,0.071,0.17300000000000001,0.147,0.499,0.106,2005-06 4206,Robert Swift,SEA,20.0,213.36,111.13004,None,USA,2004,1,12,47,6.4,5.6,0.2,-4.3,0.113,0.195,0.149,0.536,0.012,2005-06 4207,Robert Whaley,UTA,24.0,208.28,117.93392,Walsh,USA,2005,2,51,23,2.1,1.9,0.7,-12.6,0.087,0.145,0.158,0.41100000000000003,0.138,2005-06 4208,Ronald Dupree,MIN,25.0,200.66,94.800728,Louisiana State,USA,Undrafted,Undrafted,Undrafted,36,2.2,1.4,0.4,-12.9,0.09,0.126,0.168,0.494,0.092,2005-06 4209,Ronnie Price,SAC,23.0,187.96,86.18248,Utah Valley,USA,Undrafted,Undrafted,Undrafted,29,2.1,0.5,0.4,-8.0,0.036000000000000004,0.075,0.22899999999999998,0.474,0.153,2005-06 4210,Ronny Turiaf,LAL,23.0,208.28,112.94440800000001,Gonzaga,France,2005,2,37,23,2.0,1.6,0.3,-0.9,0.079,0.203,0.142,0.537,0.078,2005-06 4211,Royal Ivey,ATL,24.0,190.5,90.7184,Texas,USA,2004,2,37,73,3.6,1.3,1.0,-7.0,0.036000000000000004,0.08800000000000001,0.14,0.467,0.11900000000000001,2005-06 4212,Ruben Patterson,DEN,30.0,195.58,101.151016,Cincinnati,USA,1998,2,31,71,12.1,3.4,1.8,-4.9,0.08,0.083,0.24,0.547,0.126,2005-06 4213,Ryan Bowen,HOU,30.0,205.74,99.79024,Iowa,USA,1998,2,55,68,1.3,1.3,0.4,-5.0,0.054000000000000006,0.10099999999999999,0.106,0.33799999999999997,0.062,2005-06 4214,Richard Jefferson,NJN,26.0,200.66,102.0582,Arizona,USA,2001,1,13,78,19.5,6.8,3.8,3.9,0.036000000000000004,0.168,0.22,0.603,0.175,2005-06 4215,Ryan Gomes,BOS,23.0,200.66,113.398,Providence,USA,2005,2,50,61,7.6,4.9,1.0,0.0,0.092,0.17300000000000001,0.16,0.5479999999999999,0.069,2005-06 4216,Sam Cassell,LAC,36.0,190.5,83.91452,Florida State,USA,1993,1,24,78,17.2,3.7,6.3,3.9,0.018000000000000002,0.10300000000000001,0.247,0.534,0.31,2005-06 4217,Samaki Walker,IND,30.0,205.74,117.93392,Louisville,USA,1996,1,9,7,0.3,0.4,0.0,-31.2,0.0,0.15,0.11,0.34700000000000003,0.0,2005-06 4218,Samuel Dalembert,PHI,26.0,210.82,113.398,Seton Hall,Haiti,2001,1,26,66,7.3,8.2,0.4,-1.1,0.107,0.252,0.14,0.568,0.022000000000000002,2005-06 4219,Sarunas Jasikevicius,IND,30.0,193.04,89.357624,Maryland,USSR,Undrafted,Undrafted,Undrafted,75,7.3,2.0,3.0,0.8,0.013999999999999999,0.094,0.17800000000000002,0.561,0.257,2005-06 4220,Sasha Pavlovic,CLE,22.0,200.66,95.25432,None,Montenegro,2003,1,19,53,4.5,1.5,0.5,-0.1,0.022000000000000002,0.09699999999999999,0.156,0.516,0.051,2005-06 4221,Sasha Vujacic,LAL,22.0,200.66,88.45044,None,Slovenia,2004,1,27,82,3.9,1.9,1.7,3.1,0.026000000000000002,0.10400000000000001,0.12300000000000001,0.479,0.152,2005-06 4222,Scot Pollard,IND,31.0,210.82,120.20188,Kansas,USA,1997,1,19,45,3.8,4.8,0.5,4.5,0.113,0.215,0.11800000000000001,0.495,0.046,2005-06 4223,Scott Padgett,NJN,30.0,205.74,108.86208,Kentucky,USA,1999,1,28,62,3.4,2.7,0.7,-7.2,0.08800000000000001,0.192,0.157,0.489,0.10400000000000001,2005-06 4224,Sean Marks,SAS,30.0,208.28,113.398,California,New Zealand,1998,2,44,25,3.2,1.7,0.3,-8.8,0.081,0.218,0.21899999999999997,0.531,0.07400000000000001,2005-06 4225,Sean May,CHA,22.0,205.74,120.655472,North Carolina,USA,2005,1,13,23,8.2,4.7,1.0,-3.1,0.115,0.21100000000000002,0.251,0.474,0.105,2005-06 4226,Sebastian Telfair,POR,21.0,182.88,72.57472,None,USA,2004,1,13,68,9.5,1.8,3.6,-12.2,0.013999999999999999,0.075,0.222,0.491,0.273,2005-06 4227,Sergei Monia,SAC,23.0,203.2,99.79024,None,Russia,2004,1,23,26,3.0,2.0,0.7,-24.5,0.038,0.152,0.14300000000000002,0.413,0.091,2005-06 4228,Salim Stoudamire,ATL,23.0,185.42,81.19296800000001,Arizona,USA,2005,2,31,61,9.7,1.9,1.2,-5.4,0.011000000000000001,0.102,0.22399999999999998,0.545,0.107,2005-06 4229,Richard Hamilton,DET,28.0,200.66,87.543256,Connecticut,USA,1999,1,7,80,20.1,3.2,3.4,9.2,0.036000000000000004,0.07200000000000001,0.276,0.5529999999999999,0.183,2005-06 4230,Reggie Evans,DEN,26.0,203.2,111.13004,Iowa,USA,Undrafted,Undrafted,Undrafted,67,5.6,7.5,0.6,-8.4,0.14400000000000002,0.302,0.14400000000000002,0.519,0.042,2005-06 4231,Reece Gaines,MIL,25.0,198.12,92.98635999999999,Louisville,USA,2003,1,15,12,1.1,0.0,0.3,-19.7,0.0,0.0,0.141,0.47200000000000003,0.111,2005-06 4232,Othella Harrington,CHI,32.0,205.74,106.59411999999999,Georgetown,USA,1996,2,30,72,4.8,2.1,0.5,1.2,0.075,0.14300000000000002,0.214,0.53,0.079,2005-06 4233,P.J. Brown,NOK,36.0,210.82,108.40848799999999,Louisiana Tech,USA,1992,2,29,75,9.0,7.3,1.2,-4.0,0.08800000000000001,0.185,0.147,0.515,0.062,2005-06 4234,Pape Sow,TOR,24.0,208.28,113.398,Cal State-Fullerton,Senegal,2004,2,47,42,3.5,3.5,0.2,-10.6,0.10300000000000001,0.21100000000000002,0.138,0.496,0.022000000000000002,2005-06 4235,Pat Burke,PHX,32.0,210.82,113.398,Auburn,Ireland,Undrafted,Undrafted,Undrafted,42,3.4,1.7,0.4,-4.9,0.067,0.147,0.213,0.517,0.071,2005-06 4236,Pat Garrity,ORL,29.0,205.74,107.95489599999999,Notre Dame,USA,1998,1,19,57,4.9,1.9,0.7,-3.8,0.040999999999999995,0.10300000000000001,0.14800000000000002,0.546,0.071,2005-06 4237,Pau Gasol,MEM,25.0,213.36,108.86208,None,Spain,2001,1,3,80,20.4,8.9,4.6,4.6,0.075,0.198,0.263,0.555,0.23399999999999999,2005-06 4238,Paul Pierce,BOS,28.0,198.12,104.32616,Kansas,USA,1998,1,10,79,26.8,6.7,4.7,-0.9,0.031,0.174,0.311,0.5820000000000001,0.22399999999999998,2005-06 4239,Pavel Podkolzin,DAL,21.0,226.06,117.93392,None,Russia,2004,1,21,1,3.0,7.0,0.0,3.2,0.0,0.389,0.179,0.32299999999999995,0.0,2005-06 4240,Peja Stojakovic,IND,29.0,208.28,103.872568,None,Serbia and Montenegro,1996,1,14,71,18.2,5.8,1.9,1.2,0.036000000000000004,0.146,0.21899999999999997,0.57,0.08900000000000001,2005-06 4241,Primoz Brezec,CHA,26.0,215.9,114.30518400000001,None,Slovenia,2000,1,27,79,12.4,5.6,0.6,-8.9,0.08900000000000001,0.154,0.20199999999999999,0.552,0.037000000000000005,2005-06 4242,Quentin Richardson,NYK,26.0,198.12,104.32616,DePaul,USA,2000,1,18,55,8.2,4.2,1.6,-10.5,0.052000000000000005,0.138,0.175,0.452,0.105,2005-06 4243,Quinton Ross,LAC,25.0,198.12,87.543256,Southern Methodist,USA,Undrafted,Undrafted,Undrafted,67,4.7,2.5,1.2,5.5,0.032,0.095,0.12,0.465,0.077,2005-06 4244,Qyntel Woods,NYK,25.0,203.2,99.79024,Northeast Mississippi Community College,USA,2002,1,21,49,6.7,3.9,1.0,-4.7,0.053,0.183,0.157,0.5720000000000001,0.08,2005-06 4245,Raef LaFrentz,BOS,30.0,210.82,111.13004,Kansas,USA,1998,1,3,82,7.8,5.0,1.4,-1.4,0.048,0.18899999999999997,0.146,0.546,0.087,2005-06 4246,Rafael Araujo,TOR,25.0,210.82,127.00576000000001,Brigham Young,Brazil,2004,1,8,52,2.3,2.8,0.3,-10.6,0.078,0.215,0.153,0.385,0.038,2005-06 4247,Rafer Alston,HOU,29.0,187.96,77.11064,Fresno State,USA,1998,2,39,63,12.1,4.0,6.7,-1.9,0.017,0.105,0.187,0.475,0.3,2005-06 4248,Raja Bell,PHX,29.0,195.58,95.25432,Florida International,U.S. Virgin Islands,Undrafted,Undrafted,Undrafted,79,14.7,3.2,2.6,7.0,0.017,0.077,0.165,0.584,0.098,2005-06 4249,Randy Holcomb,CHI,26.0,205.74,99.79024,San Diego State,USA,2002,2,56,4,0.5,0.3,0.0,7.0,0.16699999999999998,0.0,0.05,1.0,0.0,2005-06 4250,Randy Livingston,CHI,31.0,193.04,94.800728,Louisiana State,USA,1996,2,42,5,0.0,0.8,0.2,20.0,0.045,0.15,0.055999999999999994,0.0,0.053,2005-06 4251,Rashad McCants,MIN,21.0,193.04,93.89354399999999,North Carolina,USA,2005,1,14,79,7.9,1.8,0.8,-3.6,0.026000000000000002,0.095,0.23199999999999998,0.539,0.08800000000000001,2005-06 4252,Rashard Lewis,SEA,26.0,208.28,97.52228000000001,None,USA,1998,2,32,78,20.1,5.0,2.3,-4.4,0.046,0.12,0.231,0.585,0.106,2005-06 4253,Rasheed Wallace,DET,31.0,210.82,104.32616,North Carolina,USA,1995,1,4,80,15.1,6.8,2.3,12.0,0.038,0.195,0.214,0.527,0.109,2005-06 4254,Rasho Nesterovic,SAS,30.0,213.36,115.66596000000001,None,Slovenia,1998,1,17,80,4.5,3.9,0.4,9.9,0.094,0.14400000000000002,0.128,0.521,0.033,2005-06 4255,Rasual Butler,NOK,27.0,200.66,92.98635999999999,La Salle,USA,2002,2,52,79,8.7,2.9,0.5,-2.1,0.032,0.12,0.187,0.501,0.037000000000000005,2005-06 4256,Rawle Marshall,DAL,24.0,200.66,86.18248,Oakland,USA,Undrafted,Undrafted,Undrafted,23,3.1,1.3,0.4,-2.0,0.042,0.10400000000000001,0.174,0.488,0.07,2005-06 4257,Ray Allen,SEA,30.0,195.58,92.98635999999999,Connecticut,USA,1996,1,5,78,25.1,4.3,3.7,-1.9,0.028999999999999998,0.106,0.27399999999999997,0.59,0.166,2005-06 4258,Raymond Felton,CHA,22.0,185.42,89.811216,North Carolina,USA,2005,1,5,80,11.9,3.3,5.6,-3.4,0.035,0.09699999999999999,0.215,0.483,0.298,2005-06 4259,Shandon Anderson,MIA,32.0,198.12,97.52228000000001,Georgia,USA,1996,2,54,48,2.6,1.7,0.6,2.2,0.036000000000000004,0.11599999999999999,0.11900000000000001,0.47,0.07200000000000001,2005-06 4260,Shane Battier,MEM,27.0,203.2,99.79024,Duke,USA,2001,1,6,81,10.1,5.3,1.7,6.4,0.071,0.11,0.13699999999999998,0.574,0.081,2005-06 4261,Shaquille O'Neal,MIA,34.0,215.9,147.4174,Louisiana State,USA,1992,1,1,59,20.0,9.2,1.9,6.9,0.121,0.23199999999999998,0.299,0.586,0.111,2005-06 4262,Shareef Abdur-Rahim,SAC,29.0,205.74,111.13004,California,USA,1996,1,3,72,12.3,5.0,2.1,3.9,0.065,0.152,0.201,0.588,0.13,2005-06 4263,Trevor Ariza,ORL,20.0,203.2,95.25432,UCLA,USA,2004,2,43,57,4.6,3.8,1.1,0.6,0.095,0.17300000000000001,0.154,0.46799999999999997,0.096,2005-06 4264,Troy Hudson,MIN,30.0,185.42,77.11064,Southern Illinois,USA,Undrafted,Undrafted,Undrafted,36,9.5,1.2,2.9,-2.2,0.012,0.052000000000000005,0.23600000000000002,0.48,0.239,2005-06 4265,Troy Murphy,GSW,26.0,210.82,111.13004,Notre Dame,USA,2001,1,14,74,14.0,10.0,1.4,-2.9,0.084,0.252,0.193,0.529,0.066,2005-06 4266,Tyronn Lue,ATL,29.0,182.88,80.73937600000001,Nebraska,USA,1998,1,23,51,11.0,1.6,3.1,-2.9,0.012,0.069,0.20600000000000002,0.585,0.225,2005-06 4267,Tyson Chandler,CHI,23.0,215.9,106.59411999999999,None,USA,2001,1,2,79,5.3,9.0,1.0,3.2,0.146,0.239,0.105,0.5670000000000001,0.055999999999999994,2005-06 4268,Udonis Haslem,MIA,26.0,203.2,106.59411999999999,Florida,USA,Undrafted,Undrafted,Undrafted,81,9.3,7.8,1.2,6.8,0.085,0.21100000000000002,0.141,0.5579999999999999,0.057,2005-06 4269,Viktor Khryapa,POR,23.0,205.74,95.25432,None,Russia,2004,1,22,69,5.8,4.4,1.3,-11.1,0.094,0.168,0.151,0.516,0.094,2005-06 4270,Vin Baker,LAC,34.0,210.82,108.86208,Hartford,USA,1993,1,8,8,3.4,2.4,0.5,7.2,0.031,0.215,0.183,0.589,0.078,2005-06 4271,Vince Carter,NJN,29.0,198.12,99.79024,North Carolina,USA,1998,1,5,79,24.2,5.8,4.3,5.7,0.053,0.131,0.321,0.536,0.235,2005-06 4272,Vitaly Potapenko,SAC,31.0,208.28,129.27372,Wright State,Ukraine,1996,1,12,33,2.5,1.9,0.3,-9.0,0.08900000000000001,0.152,0.125,0.535,0.040999999999999995,2005-06 4273,Vladimir Radmanovic,LAC,25.0,208.28,106.140528,None,Serbia,2001,1,12,77,9.8,4.6,1.8,-2.9,0.038,0.177,0.179,0.545,0.11199999999999999,2005-06 4274,Von Wafer,LAL,20.0,195.58,95.25432,Florida State,USA,2005,2,39,16,1.3,0.5,0.3,-11.6,0.062,0.045,0.268,0.24100000000000002,0.114,2005-06 4275,Voshon Lenard,POR,33.0,193.04,97.52228000000001,Minnesota,USA,1994,2,46,26,7.3,1.8,1.6,-6.1,0.013000000000000001,0.113,0.23199999999999998,0.467,0.155,2005-06 4276,Wally Szczerbiak,BOS,29.0,200.66,110.676448,Miami (OH),USA,1999,1,6,72,19.0,4.3,3.0,0.1,0.035,0.105,0.223,0.595,0.139,2005-06 4277,Walter McCarty,LAC,32.0,208.28,111.13004,Kentucky,USA,1996,1,19,36,2.4,1.9,0.6,0.0,0.049,0.175,0.168,0.40700000000000003,0.11199999999999999,2005-06 4278,Wayne Simien,MIA,23.0,205.74,113.398,Kansas,USA,2005,1,29,43,3.4,2.0,0.2,-3.6,0.106,0.136,0.177,0.541,0.031,2005-06 4279,Will Bynum,GSW,23.0,182.88,83.91452,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,15,3.6,0.8,1.3,-17.9,0.02,0.063,0.198,0.457,0.218,2005-06 4280,Willie Green,PHI,24.0,187.96,91.171992,Detroit Mercy,USA,2003,2,41,10,7.0,1.5,0.5,-9.3,0.006999999999999999,0.09300000000000001,0.248,0.513,0.065,2005-06 4281,Yao Ming,HOU,25.0,228.6,140.61352,None,China,2002,1,1,57,22.3,10.2,1.5,1.4,0.09300000000000001,0.248,0.298,0.5920000000000001,0.092,2005-06 4282,Yaroslav Korolev,LAC,19.0,205.74,111.13004,None,Russia,2005,1,12,24,1.1,0.5,0.4,-5.6,0.042,0.08,0.13699999999999998,0.392,0.12,2005-06 4283,Zach Randolph,POR,24.0,205.74,114.758776,Michigan State,USA,2001,1,19,74,18.0,8.0,1.9,-11.7,0.09,0.195,0.28800000000000003,0.483,0.111,2005-06 4284,Zarko Cabarkapa,GSW,25.0,210.82,104.32616,None,Serbia and Montenegro,2003,1,17,61,3.3,1.8,0.3,-11.5,0.081,0.187,0.222,0.47200000000000003,0.069,2005-06 4285,Zaza Pachulia,ATL,22.0,210.82,120.20188,None,Georgia,2003,2,42,78,11.7,7.9,1.7,-4.0,0.127,0.182,0.195,0.53,0.084,2005-06 4286,Zeljko Rebraca,LAC,34.0,213.36,120.20188,None,Yugoslavia,1994,2,54,29,4.7,2.2,0.3,-14.3,0.039,0.162,0.155,0.5920000000000001,0.039,2005-06 4287,Zendon Hamilton,PHI,31.0,210.82,115.212368,St. John's (NY),USA,Undrafted,Undrafted,Undrafted,12,2.2,0.9,0.0,-20.2,0.075,0.267,0.28300000000000003,0.593,0.0,2005-06 4288,Zoran Planinic,NJN,23.0,200.66,90.7184,None,Croatia,2003,1,22,56,3.4,1.3,0.9,-4.5,0.027999999999999997,0.128,0.209,0.45,0.179,2005-06 4289,Zydrunas Ilgauskas,CLE,31.0,220.98,117.93392,None,Lithuania,1996,1,20,78,15.6,7.6,1.2,3.8,0.13,0.18,0.248,0.5760000000000001,0.073,2005-06 4290,Trenton Hassell,MIN,27.0,195.58,90.7184,Austin Peay,USA,2001,2,29,77,9.2,2.8,2.6,-2.1,0.040999999999999995,0.063,0.155,0.512,0.129,2005-06 4291,Orien Greene,BOS,24.0,193.04,94.34713599999999,Louisiana-Lafayette,USA,2005,2,53,80,3.2,1.8,1.6,-4.3,0.036000000000000004,0.106,0.145,0.449,0.17800000000000002,2005-06 4292,Travis Outlaw,POR,21.0,203.2,99.79024,None,USA,2003,1,23,69,5.8,2.7,0.5,-12.5,0.047,0.142,0.184,0.491,0.055,2005-06 4293,Tracy McGrady,HOU,27.0,203.2,95.25432,None,USA,1997,1,9,47,24.4,6.5,4.8,1.1,0.031,0.17300000000000001,0.344,0.494,0.268,2005-06 4294,Sharrod Ford,PHX,24.0,205.74,106.59411999999999,Clemson,USA,Undrafted,Undrafted,Undrafted,3,1.3,1.0,0.0,-24.7,0.111,0.133,0.162,0.667,0.0,2005-06 4295,Shaun Livingston,LAC,20.0,200.66,82.553744,None,USA,2004,1,4,61,5.8,3.0,4.5,-0.3,0.032,0.105,0.15,0.46,0.28300000000000003,2005-06 4296,Shavlik Randolph,PHI,22.0,208.28,108.86208,Duke,USA,Undrafted,Undrafted,Undrafted,57,2.3,2.3,0.3,4.4,0.133,0.183,0.14,0.511,0.062,2005-06 4297,Shawn Marion,PHX,28.0,200.66,103.418976,Nevada-Las Vegas,USA,1999,1,9,81,21.8,11.8,1.8,7.1,0.086,0.23800000000000002,0.222,0.591,0.068,2005-06 4298,Slava Medvedenko,LAL,27.0,208.28,113.398,None,Ukraine,Undrafted,Undrafted,Undrafted,2,1.0,0.0,0.5,88.5,0.0,0.0,0.122,0.5,0.125,2005-06 4299,Smush Parker,LAL,25.0,193.04,81.64656,Fordham,USA,Undrafted,Undrafted,Undrafted,82,11.5,3.3,3.7,3.0,0.016,0.099,0.163,0.5479999999999999,0.165,2005-06 4300,Speedy Claxton,NOK,28.0,180.34,77.11064,Hofstra,USA,2000,1,20,71,12.3,2.7,4.8,0.1,0.023,0.091,0.23800000000000002,0.49700000000000005,0.306,2005-06 4301,Stacey Augmon,ORL,37.0,203.2,96.615096,Nevada-Las Vegas,USA,1991,1,9,36,2.0,1.5,0.6,8.0,0.057999999999999996,0.11,0.12,0.41200000000000003,0.092,2005-06 4302,Stephen Graham,CLE,24.0,198.12,97.52228000000001,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,22,2.6,1.2,0.3,5.6,0.03,0.161,0.19,0.479,0.063,2005-06 4303,Stephen Jackson,IND,28.0,203.2,98.88305600000001,Butler Community College,USA,1997,2,42,81,16.4,3.9,2.8,-0.1,0.02,0.10300000000000001,0.24,0.512,0.141,2005-06 4304,Stephon Marbury,NYK,29.0,187.96,92.98635999999999,Georgia Tech,USA,1996,1,4,60,16.3,2.9,6.4,-7.4,0.013000000000000001,0.08199999999999999,0.218,0.532,0.305,2005-06 4305,Steve Blake,POR,26.0,190.5,78.017824,Maryland,USA,2003,2,38,68,8.2,2.1,4.5,-11.8,0.017,0.083,0.157,0.5489999999999999,0.27699999999999997,2005-06 4306,Steve Francis,NYK,29.0,190.5,90.7184,Maryland,USA,1999,1,2,70,14.4,4.1,4.9,-5.2,0.039,0.109,0.225,0.534,0.257,2005-06 4307,Steve Nash,PHX,32.0,190.5,88.45044,Santa Clara,Canada,1996,1,15,79,18.8,4.2,10.5,8.8,0.02,0.11199999999999999,0.233,0.632,0.435,2005-06 4308,Steven Hunter,PHI,24.0,213.36,108.86208,DePaul,USA,2001,1,15,69,6.1,3.9,0.2,-1.7,0.099,0.14,0.146,0.598,0.021,2005-06 4309,Stromile Swift,HOU,26.0,205.74,104.32616,Louisiana State,USA,2000,1,2,66,8.9,4.4,0.4,-3.9,0.094,0.157,0.231,0.5329999999999999,0.04,2005-06 4310,T.J. Ford,MIL,23.0,182.88,74.84268,Texas,USA,2003,1,8,72,12.2,4.3,6.6,-0.4,0.028999999999999998,0.11800000000000001,0.19899999999999998,0.489,0.298,2005-06 4311,Tayshaun Prince,DET,26.0,205.74,97.52228000000001,Kentucky,USA,2002,1,23,82,14.1,4.2,2.3,12.0,0.042,0.099,0.198,0.524,0.106,2005-06 4312,Terence Morris,ORL,27.0,205.74,100.243832,Maryland,USA,2001,2,33,22,1.6,1.7,0.2,-0.8,0.038,0.212,0.138,0.348,0.034,2005-06 4313,Theo Ratliff,POR,33.0,208.28,106.59411999999999,Wyoming,USA,1995,1,18,55,4.9,5.1,0.5,-8.9,0.084,0.17300000000000001,0.099,0.599,0.036000000000000004,2005-06 4314,Tim Duncan,SAS,30.0,210.82,117.93392,Wake Forest,US Virgin Islands,1997,1,1,80,18.6,11.0,3.2,9.5,0.1,0.267,0.27699999999999997,0.523,0.162,2005-06 4315,Tim Thomas,PHX,29.0,208.28,108.86208,Villanova,USA,1997,1,7,29,10.3,4.5,0.7,0.1,0.037000000000000005,0.18899999999999997,0.209,0.535,0.042,2005-06 4316,Toni Kukoc,MIL,37.0,210.82,106.59411999999999,None,Croatia,1990,2,29,65,4.9,2.3,2.1,-4.3,0.028999999999999998,0.15,0.17300000000000001,0.491,0.209,2005-06 4317,Tony Allen,BOS,24.0,193.04,96.615096,Oklahoma State,USA,2004,1,25,51,7.2,2.2,1.3,-2.6,0.042,0.098,0.188,0.5539999999999999,0.11900000000000001,2005-06 4318,Tony Battie,ORL,30.0,210.82,108.86208,Texas Tech,USA,1997,1,5,82,7.9,5.6,0.6,-2.1,0.084,0.168,0.152,0.531,0.035,2005-06 4319,Tony Delk,DET,32.0,187.96,85.728888,Kentucky,USA,1996,1,16,24,7.6,2.2,1.4,-2.6,0.039,0.134,0.225,0.526,0.151,2005-06 4320,Tony Parker,SAS,24.0,187.96,80.28578399999998,None,France,2001,1,28,80,18.9,3.3,5.8,10.6,0.017,0.09300000000000001,0.27,0.584,0.311,2005-06 4321,Travis Diener,ORL,24.0,185.42,79.3786,Marquette,USA,2005,2,38,23,3.8,0.9,0.7,-13.7,0.017,0.086,0.149,0.614,0.126,2005-06 4322,Jonathan Bender,IND,25.0,213.36,99.336648,None,USA,1999,1,5,2,5.0,2.0,1.0,-11.8,0.0,0.267,0.14800000000000002,0.85,0.16699999999999998,2005-06 4323,Noel Felix,SEA,24.0,205.74,102.0582,Fresno State,USA,Undrafted,Undrafted,Undrafted,12,1.5,1.1,0.2,-4.5,0.043,0.152,0.20199999999999999,0.316,0.043,2005-06 4324,Nick Van Exel,SAS,34.0,185.42,86.18248,Cincinnati,USA,1993,2,37,65,5.5,1.4,1.9,0.1,0.006999999999999999,0.099,0.205,0.49200000000000005,0.22,2005-06 4325,Kurt Thomas,PHX,33.0,205.74,106.59411999999999,Texas Christian,USA,1995,1,10,53,8.6,7.8,1.1,9.5,0.083,0.239,0.157,0.527,0.057,2005-06 4326,Kwame Brown,LAL,24.0,210.82,112.490816,None,USA,2001,1,1,72,7.4,6.6,1.0,2.9,0.109,0.171,0.138,0.545,0.055999999999999994,2005-06 4327,Kyle Korver,PHI,25.0,198.12,95.707912,Creighton,USA,2003,2,51,82,11.5,3.3,2.0,-1.4,0.012,0.11199999999999999,0.161,0.5770000000000001,0.10099999999999999,2005-06 4328,Lamar Odom,LAL,26.0,208.28,104.32616,Rhode Island,USA,1999,1,4,80,14.8,9.2,5.5,3.6,0.067,0.2,0.18,0.5579999999999999,0.22,2005-06 4329,Lamond Murray,NJN,33.0,200.66,106.59411999999999,California,USA,1994,1,7,57,3.4,2.3,0.2,-4.3,0.057999999999999996,0.22,0.184,0.493,0.042,2005-06 4330,Laron Profit,LAL,28.0,195.58,92.532768,Maryland,USA,1999,2,38,25,4.2,1.7,0.6,-2.8,0.033,0.14800000000000002,0.19899999999999998,0.55,0.10400000000000001,2005-06 4331,Larry Hughes,CLE,27.0,195.58,83.46092800000001,Saint Louis,USA,1998,1,8,36,15.5,4.5,3.6,2.1,0.024,0.126,0.235,0.504,0.174,2005-06 4332,Lawrence Roberts,MEM,23.0,205.74,108.86208,Mississippi State,USA,2005,2,55,33,1.5,1.5,0.2,1.1,0.166,0.14800000000000002,0.154,0.47100000000000003,0.048,2005-06 4333,LeBron James,CLE,21.0,203.2,108.86208,None,USA,2003,1,1,79,31.4,7.0,6.6,4.2,0.026000000000000002,0.171,0.336,0.568,0.315,2005-06 4334,Leandro Barbosa,PHX,23.0,190.5,85.275296,None,Brazil,2003,1,28,57,13.1,2.6,2.8,3.5,0.022000000000000002,0.08199999999999999,0.201,0.589,0.14300000000000002,2005-06 4335,Kris Humphries,UTA,21.0,205.74,106.59411999999999,Minnesota,USA,2004,1,14,62,3.0,2.5,0.5,-10.5,0.102,0.19699999999999998,0.192,0.406,0.09,2005-06 4336,Lee Nailon,PHI,31.0,205.74,109.315672,Texas Christian,USA,1999,2,43,22,4.2,1.9,0.3,1.7,0.11699999999999999,0.1,0.185,0.537,0.048,2005-06 4337,Lindsey Hunter,DET,35.0,187.96,88.45044,Jackson State,USA,1993,1,10,30,2.9,1.3,2.1,4.9,0.034,0.10099999999999999,0.163,0.42700000000000005,0.28300000000000003,2005-06 4338,Linton Johnson,NOK,26.0,203.2,102.0582,Tulane,USA,Undrafted,Undrafted,Undrafted,36,4.3,3.4,0.4,-4.2,0.09,0.19699999999999998,0.16699999999999998,0.47600000000000003,0.042,2005-06 4339,Lonny Baxter,CHA,27.0,203.2,117.93392,Maryland,USA,2002,2,43,41,2.9,2.9,0.1,2.0,0.128,0.22399999999999998,0.158,0.494,0.017,2005-06 4340,Loren Woods,TOR,28.0,218.44,117.93392,Arizona,USA,2001,2,45,27,2.3,4.1,0.1,-0.5,0.14800000000000002,0.242,0.114,0.47600000000000003,0.018000000000000002,2005-06 4341,Nikoloz Tskitishvili,PHX,23.0,213.36,102.0582,None,Georgia,2002,1,5,17,2.1,1.3,0.2,-13.3,0.087,0.131,0.21899999999999997,0.41700000000000004,0.057,2005-06 4342,Lou Williams,PHI,19.0,185.42,79.3786,None,USA,2005,2,45,30,1.9,0.6,0.3,-6.5,0.025,0.134,0.23399999999999999,0.485,0.12,2005-06 4343,Luke Jackson,CLE,24.0,200.66,97.52228000000001,Oregon,USA,2004,1,10,36,2.7,1.1,0.7,-6.0,0.055999999999999994,0.095,0.182,0.48200000000000004,0.13699999999999998,2005-06 4344,Luke Ridnour,SEA,25.0,185.42,75.749864,Oregon,USA,2003,1,14,79,11.5,3.0,7.0,-5.2,0.021,0.08800000000000001,0.18,0.506,0.312,2005-06 4345,Luke Schenscher,CHI,24.0,215.9,120.20188,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,20,1.8,1.5,0.4,0.0,0.061,0.16,0.111,0.5670000000000001,0.07200000000000001,2005-06 4346,Luke Walton,LAL,26.0,203.2,105.23334399999999,Arizona,USA,2003,2,32,69,5.0,3.6,2.3,3.3,0.077,0.14300000000000002,0.152,0.47700000000000004,0.18899999999999997,2005-06 4347,Linas Kleiza,DEN,21.0,203.2,111.13004,Missouri,Lithuania,2005,1,27,61,3.5,1.9,0.2,-2.2,0.083,0.17300000000000001,0.18899999999999997,0.51,0.047,2005-06 4348,Kobe Bryant,LAL,27.0,198.12,99.79024,None,USA,1996,1,13,80,35.4,5.3,4.5,4.7,0.026000000000000002,0.127,0.384,0.5589999999999999,0.228,2005-06 4349,Kirk Snyder,NOK,23.0,198.12,102.0582,Nevada,USA,2004,1,16,68,8.0,2.4,1.5,1.0,0.05,0.098,0.209,0.537,0.13,2005-06 4350,Kirk Hinrich,CHI,25.0,190.5,86.18248,Kansas,USA,2003,1,7,81,15.9,3.6,6.3,0.5,0.011000000000000001,0.1,0.215,0.528,0.289,2005-06 4351,Josh Childress,ATL,23.0,203.2,95.25432,Stanford,USA,2004,1,6,74,10.0,5.2,1.8,-3.4,0.071,0.138,0.14,0.626,0.095,2005-06 4352,Josh Davis,PHX,25.0,203.2,109.769264,Wyoming,USA,Undrafted,Undrafted,Undrafted,6,1.0,0.7,0.2,-44.7,0.136,0.059000000000000004,0.21100000000000002,0.361,0.125,2005-06 4353,Josh Howard,DAL,26.0,200.66,95.25432,Wake Forest,USA,2003,1,29,59,15.6,6.3,1.9,8.9,0.079,0.154,0.22699999999999998,0.536,0.1,2005-06 4354,Josh Powell,DAL,23.0,205.74,102.0582,North Carolina State,USA,Undrafted,Undrafted,Undrafted,37,3.0,2.2,0.2,1.5,0.09,0.151,0.13699999999999998,0.546,0.034,2005-06 4355,Josh Smith,ATL,20.0,205.74,102.0582,None,USA,2004,1,17,80,11.3,6.6,2.4,-5.1,0.08,0.166,0.19,0.5,0.124,2005-06 4356,Juan Dixon,POR,27.0,190.5,74.389088,Maryland,USA,2002,1,17,76,12.3,2.3,2.0,-11.0,0.018000000000000002,0.09300000000000001,0.249,0.516,0.14400000000000002,2005-06 4357,Julius Hodge,DEN,22.0,200.66,95.25432,North Carolina State,USA,2005,1,20,14,0.9,0.5,0.4,-0.9,0.16699999999999998,0.054000000000000006,0.33399999999999996,0.39299999999999996,0.33299999999999996,2005-06 4358,Jumaine Jones,CHA,27.0,203.2,98.88305600000001,Georgia,USA,1999,1,27,76,10.5,4.9,0.8,-6.1,0.054000000000000006,0.162,0.183,0.506,0.05,2005-06 4359,Justin Reed,MIN,24.0,203.2,108.86208,Mississippi,USA,2004,2,40,72,4.5,1.7,0.6,-6.4,0.064,0.084,0.188,0.467,0.07200000000000001,2005-06 4360,Juwan Howard,HOU,33.0,205.74,104.32616,Michigan,USA,1994,1,5,80,11.8,6.7,1.4,-5.6,0.077,0.16699999999999998,0.201,0.499,0.084,2005-06 4361,Kareem Rush,CHA,25.0,198.12,97.52228000000001,Missouri,USA,2002,1,20,47,10.1,2.2,1.1,-7.8,0.017,0.094,0.225,0.47100000000000003,0.079,2005-06 4362,Keith Bogans,HOU,26.0,195.58,97.52228000000001,Kentucky,USA,2003,2,43,72,8.6,3.5,1.8,-5.5,0.034,0.12300000000000001,0.174,0.49700000000000005,0.11699999999999999,2005-06 4363,Keith McLeod,UTA,26.0,187.96,86.18248,Bowling Green,USA,Undrafted,Undrafted,Undrafted,66,5.6,1.2,2.3,-6.3,0.011000000000000001,0.07200000000000001,0.182,0.46399999999999997,0.21899999999999997,2005-06 4364,Keith Van Horn,DAL,30.0,208.28,111.13004,Utah,USA,1997,1,2,53,8.9,3.6,0.7,3.8,0.059000000000000004,0.14800000000000002,0.214,0.54,0.06,2005-06 4365,Kelvin Cato,DET,31.0,210.82,124.7378,Iowa State,USA,1997,1,15,27,3.6,2.6,0.1,-8.5,0.071,0.18,0.166,0.493,0.022000000000000002,2005-06 4366,Kendrick Perkins,BOS,21.0,208.28,127.00576000000001,None,USA,2003,1,27,68,5.2,5.9,1.0,-1.8,0.132,0.24,0.149,0.5479999999999999,0.081,2005-06 4367,Kenny Thomas,SAC,28.0,200.66,111.13004,New Mexico,USA,1999,1,22,82,9.1,7.5,2.0,-0.9,0.10099999999999999,0.215,0.165,0.539,0.122,2005-06 4368,Kenyon Martin,DEN,28.0,205.74,108.86208,Cincinnati,USA,2000,1,1,56,12.9,6.3,1.4,2.7,0.07200000000000001,0.196,0.21899999999999997,0.5329999999999999,0.086,2005-06 4369,Kevin Burleson,CHA,27.0,190.5,92.98635999999999,Minnesota,USA,Undrafted,Undrafted,Undrafted,39,1.8,0.7,1.2,-0.9,0.013000000000000001,0.081,0.159,0.36700000000000005,0.242,2005-06 4370,Kevin Garnett,MIN,30.0,210.82,99.79024,None,USA,1995,1,5,76,21.8,12.7,4.1,0.8,0.092,0.29600000000000004,0.256,0.589,0.19399999999999998,2005-06 4371,Kevin Martin,SAC,23.0,200.66,83.91452,Western Carolina,USA,2004,1,26,72,10.8,3.6,1.3,0.8,0.036000000000000004,0.122,0.172,0.604,0.085,2005-06 4372,Kevin Ollie,PHI,33.0,187.96,88.45044,Connecticut,USA,Undrafted,Undrafted,Undrafted,70,2.7,1.4,1.4,-7.9,0.013999999999999999,0.09699999999999999,0.099,0.491,0.154,2005-06 4373,Keyon Dooling,ORL,26.0,190.5,88.45044,Missouri,USA,2000,1,10,50,9.4,1.6,2.2,2.6,0.013000000000000001,0.067,0.22699999999999998,0.513,0.166,2005-06 4374,Luol Deng,CHI,21.0,205.74,99.79024,Duke,United Kingdom,2004,1,7,78,14.3,6.6,1.9,2.5,0.055999999999999994,0.16699999999999998,0.204,0.517,0.095,2005-06 4375,Luther Head,HOU,23.0,190.5,83.91452,Illinois,USA,2005,1,24,80,8.8,3.3,2.7,-0.8,0.017,0.11599999999999999,0.16699999999999998,0.517,0.16699999999999998,2005-06 4376,Lorenzen Wright,MEM,30.0,210.82,108.86208,Memphis,USA,1996,1,7,78,5.8,5.1,0.6,3.9,0.10300000000000001,0.185,0.153,0.496,0.049,2005-06 4377,Malik Allen,CHI,28.0,208.28,115.66596000000001,Villanova,USA,Undrafted,Undrafted,Undrafted,54,4.9,2.6,0.4,2.3,0.068,0.151,0.18600000000000003,0.504,0.047,2005-06 4378,Mehmet Okur,UTA,27.0,210.82,112.94440800000001,None,Turkey,2001,2,37,82,18.0,9.1,2.4,-2.7,0.08800000000000001,0.221,0.23600000000000002,0.5539999999999999,0.126,2005-06 4379,Melvin Ely,CHA,28.0,208.28,118.38751200000002,Fresno State,USA,2002,1,12,57,9.8,4.9,1.3,-3.6,0.077,0.16699999999999998,0.205,0.55,0.1,2005-06 4380,Melvin Sanders,SAS,25.0,195.58,95.25432,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,16,2.6,1.4,0.2,-2.8,0.044000000000000004,0.21100000000000002,0.191,0.5479999999999999,0.048,2005-06 4381,Metta World Peace,SAC,26.0,200.66,117.93392,St. John's (NY),USA,1999,1,16,56,17.6,5.1,3.6,8.2,0.04,0.113,0.23600000000000002,0.491,0.157,2005-06 4382,Michael Bradley,PHI,27.0,208.28,111.13004,Villanova,USA,2001,1,17,46,1.5,2.3,0.4,-8.1,0.124,0.209,0.126,0.41700000000000004,0.085,2005-06 4383,Michael Doleac,MIA,29.0,210.82,118.841104,Utah,USA,1998,1,12,31,3.2,2.7,0.3,-10.6,0.076,0.196,0.146,0.484,0.039,2005-06 4384,Michael Finley,SAS,33.0,200.66,102.0582,Wisconsin,USA,1995,1,21,77,10.1,3.2,1.5,6.3,0.018000000000000002,0.122,0.19,0.523,0.096,2005-06 4385,Michael Olowokandi,BOS,31.0,213.36,122.46983999999999,Pacific,Nigeria,1998,1,1,48,5.0,4.6,0.5,-4.9,0.069,0.22899999999999998,0.172,0.456,0.044000000000000004,2005-06 4386,Michael Redd,MIL,26.0,198.12,97.52228000000001,Ohio State,USA,2000,2,43,80,25.4,4.3,2.9,0.3,0.028999999999999998,0.10099999999999999,0.281,0.574,0.133,2005-06 4387,Michael Ruffin,WAS,29.0,203.2,112.490816,Tulsa,USA,1999,2,32,76,1.4,3.6,0.4,-1.0,0.139,0.18899999999999997,0.066,0.479,0.042,2005-06 4388,Michael Sweetney,CHI,23.0,203.2,122.46983999999999,Georgetown,USA,2003,1,9,66,8.1,5.3,0.9,-1.5,0.11599999999999999,0.217,0.23600000000000002,0.499,0.084,2005-06 4389,Mickael Pietrus,GSW,24.0,198.12,97.52228000000001,None,France,2003,1,11,52,9.3,3.1,0.8,-6.5,0.052000000000000005,0.102,0.209,0.5,0.066,2005-06 4390,Mike Bibby,SAC,28.0,187.96,86.18248,Arizona,USA,1998,1,2,82,21.1,2.9,5.4,2.0,0.011000000000000001,0.077,0.252,0.5539999999999999,0.244,2005-06 4391,Maurice Taylor,NYK,29.0,205.74,120.20188,Michigan,USA,1997,1,14,67,6.3,3.4,0.8,-6.1,0.067,0.163,0.20199999999999999,0.496,0.078,2005-06 4392,Mike Dunleavy,GSW,25.0,205.74,104.32616,Duke,USA,2002,1,3,81,11.5,4.9,2.9,-0.9,0.033,0.14,0.18,0.503,0.147,2005-06 4393,Mike Miller,MEM,26.0,203.2,98.88305600000001,Florida,USA,2000,1,5,74,13.7,5.4,2.7,1.5,0.023,0.19,0.213,0.595,0.171,2005-06 4394,Mike Wilks,SEA,27.0,177.8,81.64656,Rice,USA,Undrafted,Undrafted,Undrafted,47,1.8,0.8,0.7,1.3,0.03,0.1,0.175,0.39799999999999996,0.158,2005-06 4395,Mikki Moore,SEA,30.0,213.36,101.151016,Nebraska,USA,Undrafted,Undrafted,Undrafted,47,3.3,2.8,0.6,-2.8,0.091,0.17600000000000002,0.147,0.509,0.069,2005-06 4396,Milt Palacio,UTA,28.0,193.04,95.25432,Colorado State,Belize,Undrafted,Undrafted,Undrafted,71,6.2,1.9,2.7,-4.7,0.015,0.102,0.195,0.47,0.257,2005-06 4397,Mo Williams,MIL,23.0,185.42,83.91452,Alabama,USA,2003,2,47,58,12.1,2.5,4.0,-5.0,0.022000000000000002,0.091,0.22899999999999998,0.518,0.259,2005-06 4398,Monta Ellis,GSW,20.0,190.5,80.28578399999998,None,USA,2005,2,40,49,6.8,2.1,1.6,-0.1,0.027000000000000003,0.106,0.196,0.486,0.152,2005-06 4399,Moochie Norris,NOK,32.0,185.42,83.91452,West Florida,USA,1996,2,33,45,2.8,1.2,1.1,-8.0,0.033,0.11900000000000001,0.184,0.479,0.215,2005-06 4400,Morris Peterson,TOR,28.0,200.66,99.79024,Michigan State,USA,2000,1,21,82,16.8,4.6,2.3,-3.3,0.024,0.132,0.19899999999999998,0.561,0.1,2005-06 4401,Nate Robinson,NYK,22.0,175.26,81.64656,Washington,USA,2005,1,21,72,9.3,2.3,2.0,-3.3,0.045,0.087,0.22699999999999998,0.512,0.17,2005-06 4402,Nazr Mohammed,SAS,28.0,208.28,113.398,Kentucky,USA,1998,1,29,80,6.2,5.2,0.5,6.5,0.142,0.21899999999999997,0.18100000000000002,0.56,0.047,2005-06 4403,Nenad Krstic,NJN,22.0,213.36,108.86208,None,Serbia and Montenegro,2002,1,24,80,13.5,6.4,1.1,5.3,0.086,0.16,0.215,0.541,0.063,2005-06 4404,Nene,DEN,23.0,210.82,121.562656,None,Brazil,2002,1,7,1,0.0,0.0,0.0,-96.1,0.0,0.0,0.5,0.0,0.0,2005-06 4405,Nick Collison,SEA,25.0,205.74,115.66596000000001,Kansas,USA,2003,1,12,66,7.5,5.6,1.1,0.1,0.11900000000000001,0.191,0.16,0.556,0.079,2005-06 4406,Mike James,TOR,31.0,187.96,86.18248,Duquesne,USA,Undrafted,Undrafted,Undrafted,79,20.3,3.3,5.8,-2.3,0.018000000000000002,0.095,0.25,0.583,0.276,2005-06 4407,Maciej Lampe,HOU,21.0,210.82,124.7378,None,Poland,2003,2,30,6,0.7,1.5,0.3,-16.8,0.174,0.22699999999999998,0.24,0.168,0.133,2005-06 4408,Donell Taylor,WAS,23.0,195.58,83.007336,Alabama-Birmingham,USA,Undrafted,Undrafted,Undrafted,51,2.7,1.0,0.9,2.8,0.04,0.1,0.188,0.452,0.17,2005-06 4409,Matt Bonner,TOR,26.0,208.28,108.86208,Florida,USA,2003,2,45,78,7.5,3.6,0.7,-3.8,0.06,0.153,0.146,0.5820000000000001,0.053,2005-06 4410,Marvin Williams,ATL,20.0,205.74,104.32616,North Carolina,USA,2005,1,2,79,8.5,4.8,0.8,-2.0,0.073,0.161,0.166,0.523,0.052000000000000005,2005-06 4411,Matt Carroll,CHA,25.0,198.12,96.16150400000001,Notre Dame,USA,Undrafted,Undrafted,Undrafted,78,7.6,2.0,0.4,-2.9,0.028999999999999998,0.12,0.20600000000000002,0.54,0.048,2005-06 4412,Matt Harpring,UTA,30.0,200.66,104.779752,Georgia Tech,USA,1998,1,15,71,12.5,5.2,1.4,-3.6,0.098,0.13,0.218,0.542,0.095,2005-06 4413,Matt Walsh,MIA,23.0,198.12,99.79024,Florida,USA,Undrafted,Undrafted,Undrafted,2,1.0,0.0,0.0,-140.5,0.0,0.0,0.324,0.532,0.0,2005-06 4414,Maurice Evans,DET,27.0,195.58,99.79024,Texas,USA,Undrafted,Undrafted,Undrafted,80,5.0,2.0,0.8,2.6,0.076,0.092,0.166,0.545,0.08800000000000001,2005-06 4415,Martynas Andriuskevicius,CLE,20.0,218.44,108.86208,None,Lithuania,2005,2,44,6,0.0,0.7,0.0,37.1,0.125,0.375,0.042,0.0,0.0,2005-06 4416,Martell Webster,POR,19.0,200.66,95.25432,None,USA,2005,1,6,61,6.6,2.1,0.6,-14.6,0.028999999999999998,0.12,0.183,0.5329999999999999,0.055,2005-06 4417,Marquis Daniels,DAL,25.0,198.12,90.7184,Auburn,USA,Undrafted,Undrafted,Undrafted,62,10.2,3.6,2.8,5.8,0.055,0.094,0.184,0.535,0.162,2005-06 4418,Matt Barnes,PHI,26.0,200.66,102.0582,UCLA,USA,2002,2,45,56,3.1,2.2,0.5,0.7,0.08900000000000001,0.134,0.135,0.545,0.075,2005-06 4419,Marko Jaric,MIN,27.0,200.66,98.429464,None,Serbia,2000,2,30,75,7.8,3.1,3.9,0.8,0.035,0.096,0.172,0.46799999999999997,0.223,2005-06 4420,Mark Blount,MIN,30.0,213.36,113.398,Pittsburgh,USA,1997,2,54,81,11.3,4.5,1.2,-3.6,0.055999999999999994,0.142,0.213,0.5489999999999999,0.076,2005-06 4421,Mario Kasun,ORL,26.0,215.9,117.93392,None,Croatia,2002,2,40,28,2.9,2.1,0.1,-4.3,0.138,0.213,0.19899999999999998,0.506,0.024,2005-06 4422,Marcus Fizer,NOK,27.0,203.2,117.93392,Iowa State,USA,2000,1,4,3,6.7,2.3,0.3,-19.4,0.032,0.214,0.243,0.5589999999999999,0.05,2005-06 4423,Marcus Camby,DEN,32.0,210.82,104.32616,Massachusetts,USA,1996,1,2,56,12.8,11.9,2.1,2.1,0.083,0.314,0.191,0.499,0.099,2005-06 4424,Marcus Banks,MIN,24.0,187.96,90.7184,Nevada-Las Vegas,USA,2003,1,13,58,10.0,2.3,3.8,-4.3,0.019,0.08800000000000001,0.20199999999999999,0.5429999999999999,0.251,2005-06 4425,Marc Jackson,NOK,31.0,208.28,114.758776,Temple,USA,1997,2,37,64,6.5,3.4,0.7,-7.4,0.10099999999999999,0.163,0.213,0.512,0.078,2005-06 4426,Manu Ginobili,SAS,28.0,198.12,92.98635999999999,None,Argentina,1999,2,57,65,15.1,3.5,3.6,12.1,0.027999999999999997,0.122,0.245,0.593,0.215,2005-06 4427,Malik Rose,NYK,31.0,200.66,115.66596000000001,Drexel,USA,1996,2,44,72,4.4,3.6,0.9,-12.9,0.08800000000000001,0.204,0.17,0.466,0.099,2005-06 4428,Mark Madsen,MIN,30.0,205.74,107.047712,Stanford,USA,2000,1,29,62,1.2,2.3,0.2,-2.5,0.084,0.162,0.077,0.42700000000000005,0.025,2005-06 4429,Mateen Cleaves,SEA,28.0,187.96,95.25432,Michigan State,USA,2000,1,14,27,2.7,0.5,1.6,-10.0,0.009000000000000001,0.063,0.18600000000000003,0.44799999999999995,0.318,2005-06 4430,Andrew Bogut,MIL,22.0,213.36,111.13004,Utah,Australia,2005,1,1,66,12.3,8.8,3.0,-3.7,0.08800000000000001,0.221,0.17300000000000001,0.5660000000000001,0.138,2006-07 4431,Antonio Daniels,WAS,32.0,193.04,92.98635999999999,Bowling Green,USA,1997,1,4,80,7.1,1.9,3.6,-1.0,0.012,0.091,0.145,0.5720000000000001,0.261,2006-07 4432,Antoine Wright,NJN,23.0,200.66,97.52228000000001,Texas A&M,USA,2005,1,15,63,4.5,2.8,0.9,-4.3,0.042,0.14,0.13699999999999998,0.5,0.081,2006-07 4433,Antoine Walker,MIA,30.0,205.74,111.13004,Kentucky,USA,1996,1,6,78,8.5,4.3,1.7,0.6,0.061,0.16,0.22399999999999998,0.462,0.122,2006-07 4434,Anthony Roberson,GSW,24.0,187.96,85.275296,Florida,USA,Undrafted,Undrafted,Undrafted,20,5.6,1.1,0.5,-14.6,0.009000000000000001,0.091,0.221,0.527,0.071,2006-07 4435,Anthony Parker,TOR,32.0,198.12,97.52228000000001,Bradley,USA,1997,1,21,73,12.4,3.9,2.1,7.5,0.028999999999999998,0.109,0.158,0.596,0.096,2006-07 4436,Anthony Johnson,ATL,32.0,190.5,88.45044,College of Charleston,USA,1997,2,39,67,5.3,1.5,3.0,-5.1,0.021,0.07200000000000001,0.159,0.48,0.249,2006-07 4437,Anthony Carter,DEN,32.0,187.96,88.45044,Hawaii,USA,Undrafted,Undrafted,Undrafted,2,3.0,1.5,5.5,6.2,0.0,0.067,0.155,0.375,0.423,2006-07 4438,Antawn Jamison,WAS,31.0,205.74,106.59411999999999,North Carolina,USA,1998,1,4,70,19.8,8.0,1.9,0.3,0.055999999999999994,0.192,0.226,0.545,0.084,2006-07 4439,Andre Miller,PHI,31.0,187.96,90.7184,Utah,USA,1999,1,8,80,13.4,4.4,7.8,-0.2,0.04,0.099,0.19,0.52,0.32899999999999996,2006-07 4440,Andrea Bargnani,TOR,21.0,213.36,113.398,None,Italy,2006,1,1,65,11.6,3.9,0.8,2.1,0.038,0.14800000000000002,0.226,0.546,0.051,2006-07 4441,Andreas Glyniadakis,SEA,25.0,215.9,127.00576000000001,None,USA,2003,2,58,13,1.3,0.6,0.1,-20.4,0.031,0.09,0.154,0.475,0.02,2006-07 4442,Andris Biedrins,GSW,21.0,210.82,111.13004,None,Latvia,2004,1,11,82,9.5,9.3,1.1,3.1,0.11599999999999999,0.244,0.139,0.598,0.053,2006-07 4443,Andres Nocioni,CHI,27.0,200.66,102.0582,None,Argentina,Undrafted,Undrafted,Undrafted,53,14.1,5.7,1.1,2.5,0.034,0.21,0.24100000000000002,0.578,0.073,2006-07 4444,Andrew Bynum,LAL,19.0,213.36,124.7378,None,USA,2005,1,10,82,7.8,5.9,1.1,-2.4,0.092,0.212,0.166,0.593,0.085,2006-07 4445,Andrei Kirilenko,UTA,26.0,205.74,102.965384,None,Russia,1999,1,24,70,8.3,4.7,2.9,-0.3,0.053,0.135,0.146,0.5579999999999999,0.145,2006-07 4446,Dan Dickau,POR,28.0,182.88,81.64656,Gonzaga,USA,2002,1,28,50,3.3,0.9,1.4,2.6,0.019,0.105,0.21100000000000002,0.47600000000000003,0.259,2006-07 4447,Austin Croshere,DAL,32.0,208.28,106.59411999999999,Providence,USA,1997,1,12,61,3.7,3.0,0.7,0.8,0.053,0.231,0.17600000000000002,0.46299999999999997,0.10400000000000001,2006-07 4448,Damon Jones,CLE,30.0,190.5,86.18248,Houston,USA,Undrafted,Undrafted,Undrafted,60,6.6,1.1,1.6,2.3,0.009000000000000001,0.059000000000000004,0.154,0.525,0.128,2006-07 4449,Damir Markota,MIL,21.0,208.28,102.0582,None,USA,2006,2,59,30,1.7,1.0,0.2,-17.6,0.076,0.129,0.193,0.449,0.059000000000000004,2006-07 4450,Damien Wilkins,SEA,27.0,198.12,102.0582,Georgia,USA,Undrafted,Undrafted,Undrafted,82,8.8,2.8,1.9,-6.5,0.051,0.086,0.17600000000000002,0.535,0.121,2006-07 4451,Dale Davis,DET,38.0,210.82,114.30518400000001,Clemson,USA,1991,1,13,46,1.8,3.0,0.3,5.0,0.141,0.184,0.1,0.486,0.040999999999999995,2006-07 4452,Dajuan Wagner,GSW,24.0,190.5,90.7184,Memphis,USA,2002,1,6,1,4.0,0.0,1.0,4.9,0.0,0.0,0.207,1.064,0.2,2006-07 4453,Dahntay Jones,MEM,26.0,198.12,95.25432,Duke,USA,2003,1,20,78,7.5,2.0,0.9,-3.6,0.035,0.079,0.174,0.542,0.066,2006-07 4454,DJ Mbenga,DAL,26.0,213.36,115.66596000000001,None,Democratic Republic of the Congo,Undrafted,Undrafted,Undrafted,21,0.8,0.5,0.3,-11.2,0.05,0.129,0.153,0.435,0.113,2006-07 4455,Damon Stoudamire,MEM,33.0,177.8,78.92500799999999,Arizona,USA,1995,1,7,62,7.5,2.2,4.8,-7.6,0.024,0.08900000000000001,0.174,0.493,0.313,2006-07 4456,Cuttino Mobley,LAC,31.0,193.04,97.52228000000001,Rhode Island,USA,1998,2,41,78,13.8,3.4,2.5,-0.4,0.022000000000000002,0.09,0.184,0.546,0.11699999999999999,2006-07 4457,Corliss Williamson,SAC,33.0,200.66,111.13004,Arkansas,USA,1995,1,13,68,9.1,3.3,0.6,3.7,0.057,0.13699999999999998,0.226,0.5589999999999999,0.054000000000000006,2006-07 4458,Corey Maggette,LAC,27.0,198.12,102.0582,Duke,USA,1999,1,13,75,16.9,5.9,2.8,1.7,0.049,0.184,0.258,0.583,0.16,2006-07 4459,Clifford Robinson,NJN,40.0,208.28,111.13004,Connecticut,USA,1989,2,36,50,4.1,2.4,1.0,-10.8,0.037000000000000005,0.11199999999999999,0.132,0.434,0.092,2006-07 4460,Chucky Atkins,MEM,32.0,180.34,83.91452,South Florida,USA,Undrafted,Undrafted,Undrafted,75,13.2,1.9,4.6,-3.0,0.01,0.068,0.213,0.58,0.276,2006-07 4461,Chuck Hayes,HOU,24.0,198.12,107.95489599999999,Kentucky,USA,Undrafted,Undrafted,Undrafted,78,5.6,6.7,0.6,12.5,0.136,0.215,0.11800000000000001,0.5870000000000001,0.043,2006-07 4462,Chris Wilcox,SEA,24.0,208.28,106.59411999999999,Maryland,USA,2002,1,8,82,13.5,7.7,1.0,-1.3,0.08199999999999999,0.21100000000000002,0.193,0.568,0.05,2006-07 4463,Chris Webber,DET,34.0,208.28,111.13004,Michigan,USA,1993,1,1,61,11.2,7.2,3.1,2.3,0.08199999999999999,0.218,0.215,0.48200000000000004,0.17,2006-07 4464,Craig Smith,MIN,23.0,200.66,123.377024,Boston College,USA,2006,2,36,82,7.4,5.1,0.6,-4.8,0.11900000000000001,0.21100000000000002,0.187,0.5579999999999999,0.055999999999999994,2006-07 4465,Andre Iguodala,PHI,23.0,198.12,93.89354399999999,Arizona,USA,2004,1,9,76,18.2,5.7,5.7,-3.1,0.03,0.14,0.22699999999999998,0.562,0.242,2006-07 4466,Dan Gadzuric,MIL,29.0,210.82,108.86208,UCLA,Netherlands,2002,2,33,54,4.8,4.6,0.5,-5.1,0.126,0.218,0.17,0.48200000000000004,0.053,2006-07 4467,Daniel Ewing,LAC,24.0,190.5,83.91452,Duke,USA,2005,2,32,61,2.9,1.2,1.5,4.3,0.016,0.105,0.156,0.495,0.215,2006-07 4468,DerMarr Johnson,DEN,27.0,205.74,95.25432,Cincinnati,USA,2000,1,6,39,3.5,1.5,0.4,-6.1,0.025,0.122,0.188,0.414,0.068,2006-07 4469,Delonte West,BOS,23.0,193.04,81.64656,Saint Joseph's,USA,2004,1,24,69,12.2,3.0,4.4,-6.1,0.017,0.09699999999999999,0.193,0.526,0.237,2006-07 4470,Dee Brown,UTA,22.0,182.88,82.10015200000001,Illinois,USA,2006,2,46,49,1.9,0.8,1.7,2.1,0.021,0.092,0.141,0.41100000000000003,0.26899999999999996,2006-07 4471,DeShawn Stevenson,WAS,26.0,195.58,98.88305600000001,None,USA,2000,1,23,82,11.2,2.6,2.7,-1.9,0.025,0.078,0.174,0.542,0.139,2006-07 4472,DeSagana Diop,DAL,25.0,213.36,127.00576000000001,None,Senegal,2001,1,8,81,2.3,5.4,0.4,5.0,0.133,0.217,0.08,0.503,0.03,2006-07 4473,David West,NOK,26.0,205.74,108.86208,Xavier,USA,2003,1,18,52,18.3,8.2,2.2,-0.6,0.076,0.18899999999999997,0.235,0.532,0.10300000000000001,2006-07 4474,David Wesley,CLE,36.0,185.42,92.079176,Baylor,USA,Undrafted,Undrafted,Undrafted,35,2.1,1.0,1.1,0.8,0.011000000000000001,0.10099999999999999,0.139,0.418,0.172,2006-07 4475,David Noel,MIL,23.0,198.12,104.32616,North Carolina,USA,2006,2,39,68,2.7,1.8,1.0,-8.2,0.059000000000000004,0.12300000000000001,0.136,0.47,0.122,2006-07 4476,David Lee,NYK,24.0,205.74,112.94440800000001,Florida,USA,2005,1,30,58,10.7,10.4,1.8,2.6,0.136,0.266,0.145,0.652,0.095,2006-07 4477,David Harrison,IND,24.0,213.36,127.00576000000001,Colorado,USA,2004,1,29,24,3.0,1.8,0.3,-12.0,0.057999999999999996,0.209,0.217,0.525,0.063,2006-07 4478,Darrick Martin,TOR,36.0,180.34,77.11064,UCLA,USA,Undrafted,Undrafted,Undrafted,31,3.0,0.4,1.4,-5.6,0.009000000000000001,0.055,0.228,0.455,0.34700000000000003,2006-07 4479,Darrell Armstrong,IND,39.0,185.42,81.64656,Fayetteville State,USA,Undrafted,Undrafted,Undrafted,81,5.6,1.7,2.4,-2.1,0.032,0.09699999999999999,0.174,0.547,0.25,2006-07 4480,Darko Milicic,ORL,22.0,213.36,124.7378,None,Serbia,2003,1,2,80,8.0,5.5,1.1,0.5,0.09699999999999999,0.185,0.18899999999999997,0.49200000000000005,0.081,2006-07 4481,Darius Songaila,WAS,29.0,205.74,112.490816,Wake Forest,Lithuania,2002,2,49,37,7.6,3.6,1.0,-2.6,0.07400000000000001,0.149,0.18600000000000003,0.5670000000000001,0.092,2006-07 4482,Danny Granger,IND,24.0,205.74,103.418976,New Mexico,USA,2005,1,17,82,13.9,4.6,1.4,-3.2,0.047,0.114,0.182,0.573,0.07,2006-07 4483,Danny Fortson,SEA,31.0,203.2,117.93392,Cincinnati,USA,1997,1,10,14,2.9,3.1,0.1,0.5,0.10400000000000001,0.256,0.152,0.56,0.01,2006-07 4484,Daniel Gibson,CLE,21.0,187.96,86.18248,Texas,USA,2006,2,42,60,4.6,1.5,1.2,3.8,0.032,0.077,0.135,0.556,0.11,2006-07 4485,Chris Quinn,MIA,23.0,187.96,83.91452,Notre Dame,USA,Undrafted,Undrafted,Undrafted,42,3.4,0.7,1.5,2.1,0.017,0.073,0.2,0.479,0.289,2006-07 4486,Chris Paul,NOK,22.0,182.88,79.3786,Wake Forest,USA,2005,1,4,64,17.3,4.4,8.9,-1.6,0.026000000000000002,0.11699999999999999,0.22699999999999998,0.537,0.397,2006-07 4487,Chris McCray,MIL,23.0,195.58,87.089664,Maryland,USA,Undrafted,Undrafted,Undrafted,5,0.0,0.0,0.0,-10.7,0.0,0.0,0.182,0.0,0.0,2006-07 4488,Chris Kaman,LAC,25.0,213.36,120.20188,Central Michigan,USA,2003,1,6,75,10.1,7.8,1.1,-3.9,0.091,0.23800000000000002,0.196,0.502,0.061,2006-07 4489,Brent Barry,SAS,35.0,200.66,95.25432,Oregon State,USA,1995,1,15,75,8.5,2.1,1.8,6.6,0.013000000000000001,0.10300000000000001,0.156,0.6659999999999999,0.132,2006-07 4490,Brendan Haywood,WAS,27.0,213.36,119.294696,North Carolina,USA,2001,1,20,77,6.6,6.2,0.6,1.1,0.124,0.185,0.136,0.5710000000000001,0.04,2006-07 4491,Brandon Roy,POR,22.0,198.12,103.872568,Washington,USA,2006,1,6,57,16.8,4.4,4.0,-6.1,0.034,0.121,0.22699999999999998,0.5479999999999999,0.20199999999999999,2006-07 4492,Brandon Bass,NOK,22.0,203.2,108.86208,Louisiana State,USA,2005,2,33,21,2.0,2.0,0.1,-9.6,0.085,0.25,0.17,0.41100000000000003,0.03,2006-07 4493,Brad Miller,SAC,31.0,213.36,118.38751200000002,Purdue,USA,Undrafted,Undrafted,Undrafted,63,9.0,6.4,3.6,1.5,0.051,0.212,0.16699999999999998,0.508,0.196,2006-07 4494,Bracey Wright,MIN,22.0,190.5,91.171992,Indiana,USA,2005,2,47,19,3.5,1.1,0.8,11.8,0.043,0.099,0.172,0.493,0.114,2006-07 4495,Bostjan Nachbar,NJN,26.0,205.74,100.243832,None,Slovenia,2002,1,15,76,9.2,3.3,0.8,0.2,0.021,0.171,0.193,0.614,0.07200000000000001,2006-07 4496,Boris Diaw,PHX,25.0,203.2,104.32616,None,France,2003,1,21,73,9.7,4.3,4.8,5.2,0.05,0.113,0.156,0.57,0.21899999999999997,2006-07 4497,Bonzi Wells,HOU,30.0,195.58,95.25432,Ball State,USA,1998,1,11,28,7.8,4.3,1.1,2.9,0.052000000000000005,0.18600000000000003,0.242,0.446,0.1,2006-07 4498,Bobby Jones,PHI,23.0,200.66,97.52228000000001,Washington,USA,2006,2,37,44,2.5,1.3,0.4,5.8,0.075,0.125,0.17600000000000002,0.495,0.075,2006-07 4499,Bobby Jackson,NOK,34.0,185.42,83.91452,Minnesota,USA,1997,1,23,56,10.6,3.2,2.5,1.3,0.036000000000000004,0.11599999999999999,0.23,0.5,0.179,2006-07 4500,Bo Outlaw,ORL,36.0,203.2,99.79024,Houston,USA,Undrafted,Undrafted,Undrafted,41,2.0,2.6,0.4,0.2,0.132,0.16699999999999998,0.083,0.667,0.055,2006-07 4501,Bernard Robinson,NJN,26.0,198.12,95.25432,Michigan,USA,2004,2,45,31,2.0,1.5,0.6,-7.2,0.040999999999999995,0.153,0.151,0.413,0.11900000000000001,2006-07 4502,Beno Udrih,SAS,24.0,190.5,90.7184,None,Slovenia,2004,1,28,73,4.7,1.1,1.7,2.1,0.013999999999999999,0.08800000000000001,0.213,0.45899999999999996,0.22,2006-07 4503,Ben Wallace,CHI,32.0,205.74,108.86208,Virginia Union,USA,Undrafted,Undrafted,Undrafted,77,6.4,10.7,2.4,3.9,0.127,0.22,0.107,0.456,0.10099999999999999,2006-07 4504,Ben Gordon,CHI,24.0,190.5,90.7184,Connecticut,USA,2004,1,3,82,21.4,3.1,3.6,5.6,0.015,0.092,0.29,0.5720000000000001,0.19399999999999998,2006-07 4505,Baron Davis,GSW,28.0,190.5,97.52228000000001,UCLA,USA,1999,1,3,63,20.1,4.4,8.1,4.9,0.025,0.113,0.266,0.53,0.35600000000000004,2006-07 4506,Brevin Knight,CHA,31.0,177.8,77.11064,Stanford,USA,1997,1,16,45,9.1,2.6,6.6,-3.3,0.013000000000000001,0.09699999999999999,0.183,0.48700000000000004,0.37799999999999995,2006-07 4507,Antonio McDyess,DET,32.0,205.74,111.13004,Alabama,USA,1995,1,2,82,8.1,6.0,0.9,8.7,0.114,0.22899999999999998,0.184,0.552,0.07200000000000001,2006-07 4508,Brian Cardinal,MEM,30.0,203.2,111.13004,Purdue,USA,2000,2,44,28,4.5,2.1,1.1,-5.1,0.046,0.185,0.17600000000000002,0.655,0.16899999999999998,2006-07 4509,Brian Scalabrine,BOS,29.0,205.74,106.59411999999999,Southern California,USA,2001,2,34,54,4.0,1.9,1.1,-3.8,0.028999999999999998,0.096,0.11,0.537,0.092,2006-07 4510,Chris Duhon,CHI,24.0,185.42,83.91452,Duke,USA,2004,2,38,78,7.2,2.2,4.0,4.8,0.013999999999999999,0.08800000000000001,0.147,0.529,0.252,2006-07 4511,Chris Bosh,TOR,23.0,208.28,104.32616,Georgia Tech,USA,2003,1,4,69,22.6,10.7,2.5,4.1,0.08199999999999999,0.245,0.268,0.5770000000000001,0.115,2006-07 4512,Chauncey Billups,DET,30.0,190.5,91.625584,Colorado,USA,1997,1,3,70,17.0,3.4,7.2,8.4,0.011000000000000001,0.10099999999999999,0.217,0.591,0.321,2006-07 4513,Charlie Villanueva,MIL,22.0,210.82,108.86208,Connecticut,USA,2005,1,7,39,11.8,5.8,0.9,-0.8,0.07400000000000001,0.19699999999999998,0.217,0.547,0.057999999999999996,2006-07 4514,Charlie Bell,MIL,28.0,190.5,90.7184,Michigan State,USA,Undrafted,Undrafted,Undrafted,82,13.5,2.9,3.0,-5.5,0.023,0.076,0.183,0.53,0.13699999999999998,2006-07 4515,Channing Frye,NYK,24.0,210.82,112.490816,Arizona,USA,2005,1,8,72,9.5,5.5,0.9,-5.0,0.057999999999999996,0.18899999999999997,0.20199999999999999,0.46399999999999997,0.063,2006-07 4516,Cedric Simmons,NOK,21.0,205.74,106.59411999999999,North Carolina State,USA,2006,1,15,43,2.9,2.5,0.3,-9.2,0.091,0.133,0.14400000000000002,0.43,0.037000000000000005,2006-07 4517,Cedric Bozeman,ATL,24.0,198.12,93.89354399999999,UCLA,USA,Undrafted,Undrafted,Undrafted,23,1.1,1.0,0.4,-5.2,0.016,0.11199999999999999,0.11199999999999999,0.312,0.075,2006-07 4518,Caron Butler,WAS,27.0,200.66,103.418976,Connecticut,USA,2002,1,10,63,19.1,7.4,3.7,0.5,0.067,0.153,0.22899999999999998,0.537,0.154,2006-07 4519,Carmelo Anthony,DEN,23.0,203.2,104.32616,Syracuse,USA,2003,1,3,65,28.9,6.0,3.8,2.7,0.068,0.113,0.335,0.552,0.183,2006-07 4520,Carlos Delfino,DET,24.0,198.12,104.32616,None,Argentina,2003,1,25,82,5.2,3.2,1.1,3.4,0.057,0.165,0.162,0.515,0.10800000000000001,2006-07 4521,Carlos Boozer,UTA,25.0,205.74,120.655472,Duke,USA,2002,2,34,74,20.9,11.7,3.0,2.1,0.113,0.285,0.265,0.588,0.158,2006-07 4522,Carlos Arroyo,ORL,27.0,187.96,91.625584,Florida International,Puerto Rico,Undrafted,Undrafted,Undrafted,72,7.7,1.9,2.8,1.4,0.03,0.096,0.23,0.501,0.28600000000000003,2006-07 4523,Calvin Booth,WAS,31.0,210.82,113.398,Penn State,USA,1999,2,35,44,1.6,1.8,0.4,4.1,0.08,0.17,0.092,0.49,0.067,2006-07 4524,CJ Miles,UTA,20.0,198.12,97.52228000000001,None,USA,2005,2,34,37,2.7,0.9,0.7,-9.4,0.031,0.075,0.18100000000000002,0.4,0.09699999999999999,2006-07 4525,Bruce Bowen,SAS,36.0,200.66,90.7184,Cal State-Fullerton,USA,Undrafted,Undrafted,Undrafted,82,6.2,2.7,1.4,12.8,0.012,0.09300000000000001,0.109,0.511,0.068,2006-07 4526,Brian Skinner,MIL,31.0,205.74,120.20188,Baylor,USA,1998,1,22,67,4.4,5.7,0.9,-4.4,0.085,0.218,0.11,0.511,0.054000000000000006,2006-07 4527,Brian Cook,LAL,26.0,205.74,117.02673600000001,Illinois,USA,2003,1,24,65,6.9,3.3,1.0,2.4,0.071,0.17800000000000002,0.21100000000000002,0.525,0.1,2006-07 4528,Andre Brown,SEA,26.0,205.74,111.13004,DePaul,USA,Undrafted,Undrafted,Undrafted,38,2.4,1.9,0.1,-2.5,0.11900000000000001,0.201,0.183,0.5770000000000001,0.013999999999999999,2006-07 4529,Vladimir Radmanovic,LAL,26.0,208.28,106.140528,None,Serbia,2001,1,12,55,6.6,3.3,1.2,-6.3,0.062,0.152,0.18899999999999997,0.518,0.113,2006-07 4530,Andray Blatche,WAS,20.0,210.82,112.490816,None,USA,2005,2,49,56,3.7,3.4,0.7,-6.6,0.122,0.19699999999999998,0.172,0.47100000000000003,0.094,2006-07 4531,P.J. Brown,CHI,37.0,210.82,108.40848799999999,Louisiana Tech,USA,1992,2,29,72,6.1,4.8,0.7,6.8,0.10099999999999999,0.16899999999999998,0.172,0.462,0.049,2006-07 4532,Othella Harrington,CHA,33.0,205.74,106.59411999999999,Georgetown,USA,1996,2,30,26,2.6,1.5,0.2,-6.4,0.07200000000000001,0.133,0.17300000000000001,0.51,0.054000000000000006,2006-07 4533,Orien Greene,IND,25.0,193.04,94.34713599999999,Louisiana-Lafayette,USA,2005,2,53,41,1.5,1.1,0.5,-8.2,0.053,0.152,0.179,0.43200000000000005,0.15,2006-07 4534,Nick Collison,SEA,26.0,208.28,115.66596000000001,Kansas,USA,2003,1,12,82,9.6,8.1,1.0,-2.8,0.113,0.218,0.162,0.546,0.055,2006-07 4535,Nene,DEN,24.0,210.82,121.562656,None,Brazil,2002,1,7,64,12.2,7.0,1.2,4.9,0.10300000000000001,0.193,0.196,0.611,0.07200000000000001,2006-07 4536,Nenad Krstic,NJN,23.0,213.36,117.93392,None,Serbia and Montenegro,2002,1,24,26,16.4,6.8,1.8,0.1,0.07,0.172,0.23,0.5660000000000001,0.102,2006-07 4537,Nazr Mohammed,DET,29.0,208.28,113.398,Kentucky,USA,1998,1,29,51,5.6,4.5,0.2,0.1,0.134,0.207,0.184,0.5539999999999999,0.02,2006-07 4538,Nate Robinson,NYK,23.0,175.26,81.64656,Washington,USA,2005,1,21,64,10.1,2.4,1.4,-2.8,0.048,0.086,0.21600000000000003,0.552,0.11900000000000001,2006-07 4539,PJ Tucker,TOR,22.0,195.58,102.0582,Texas,USA,2006,2,35,17,1.8,1.4,0.2,-20.5,0.122,0.19399999999999998,0.16899999999999998,0.5329999999999999,0.061,2006-07 4540,Mouhamed Sene,SEA,21.0,210.82,104.32616,None,Senegal,2006,1,10,28,1.9,1.6,0.0,-16.5,0.096,0.215,0.19,0.429,0.0,2006-07 4541,Monta Ellis,GSW,21.0,190.5,80.28578399999998,None,USA,2005,2,40,77,16.5,3.2,4.1,1.3,0.026000000000000002,0.077,0.225,0.545,0.185,2006-07 4542,Mo Williams,MIL,24.0,185.42,83.91452,Alabama,USA,2003,2,47,68,17.3,4.8,6.1,-3.8,0.026000000000000002,0.132,0.24100000000000002,0.519,0.266,2006-07 4543,Mile Ilic,NJN,23.0,215.9,115.66596000000001,None,USA,2005,2,43,5,0.0,0.2,0.0,-143.1,0.0,0.25,0.75,0.0,0.0,2006-07 4544,Mikki Moore,NJN,31.0,213.36,101.151016,Nebraska,USA,Undrafted,Undrafted,Undrafted,79,9.8,5.1,0.9,0.3,0.085,0.149,0.162,0.637,0.059000000000000004,2006-07 4545,Mike Wilks,SEA,28.0,177.8,81.64656,Rice,USA,Undrafted,Undrafted,Undrafted,47,3.6,1.1,1.7,-0.2,0.036000000000000004,0.08900000000000001,0.166,0.5329999999999999,0.23800000000000002,2006-07 4546,Mike Miller,MEM,27.0,203.2,98.88305600000001,Florida,USA,2000,1,5,70,18.5,5.4,4.3,-5.9,0.023,0.141,0.212,0.588,0.18899999999999997,2006-07 4547,Mike James,MIN,32.0,187.96,86.18248,Duquesne,USA,Undrafted,Undrafted,Undrafted,82,10.1,2.0,3.6,-5.1,0.015,0.076,0.205,0.529,0.23199999999999998,2006-07 4548,Mike Hall,WAS,23.0,203.2,104.32616,George Washington,USA,Undrafted,Undrafted,Undrafted,2,1.0,1.0,0.5,-20.7,0.063,0.16699999999999998,0.125,0.25,0.1,2006-07 4549,Morris Peterson,TOR,29.0,200.66,99.79024,Michigan State,USA,2000,1,21,71,8.9,3.3,0.7,-3.1,0.024,0.162,0.19,0.555,0.052000000000000005,2006-07 4550,Pape Sow,TOR,25.0,208.28,113.398,Cal State-Fullerton,Senegal,2004,2,47,7,1.4,1.6,0.3,-44.1,0.16699999999999998,0.192,0.155,0.43,0.1,2006-07 4551,Pat Burke,PHX,33.0,210.82,113.398,Auburn,Ireland,Undrafted,Undrafted,Undrafted,23,2.6,2.0,0.2,-9.4,0.079,0.22699999999999998,0.214,0.424,0.051,2006-07 4552,Pat Garrity,ORL,30.0,205.74,107.95489599999999,Notre Dame,USA,1998,1,19,33,2.2,1.3,0.4,-3.0,0.054000000000000006,0.13,0.156,0.456,0.08199999999999999,2006-07 4553,Randy Livingston,SEA,32.0,193.04,94.800728,Louisiana State,USA,1996,2,42,4,0.0,0.3,1.0,-90.6,0.036000000000000004,0.0,0.078,0.0,0.308,2006-07 4554,Randy Foye,MIN,23.0,193.04,96.615096,Villanova,USA,2006,1,7,82,10.1,2.7,2.8,-5.1,0.031,0.10800000000000001,0.228,0.536,0.21600000000000003,2006-07 4555,Randolph Morris,NYK,21.0,210.82,117.93392,Kentucky,USA,Undrafted,Undrafted,Undrafted,5,0.8,1.8,0.2,-11.8,0.023,0.276,0.107,0.231,0.037000000000000005,2006-07 4556,Rajon Rondo,BOS,21.0,185.42,77.56423199999999,Kentucky,USA,2006,1,21,78,6.4,3.7,3.8,-0.3,0.047,0.147,0.16399999999999998,0.47200000000000003,0.26,2006-07 4557,Raja Bell,PHX,30.0,195.58,95.25432,Florida International,U.S. Virgin Islands,Undrafted,Undrafted,Undrafted,78,14.7,3.2,2.5,9.1,0.02,0.076,0.16899999999999998,0.562,0.094,2006-07 4558,Rafer Alston,HOU,30.0,187.96,79.3786,Fresno State,USA,1998,2,39,82,13.3,3.4,5.4,8.9,0.011000000000000001,0.094,0.193,0.496,0.23199999999999998,2006-07 4559,Rafael Araujo,UTA,26.0,210.82,122.46983999999999,Brigham Young,Brazil,2004,1,8,28,2.6,2.4,0.4,10.2,0.106,0.237,0.166,0.46299999999999997,0.067,2006-07 4560,Raef LaFrentz,POR,31.0,210.82,111.13004,Kansas,USA,1998,1,3,27,3.7,2.6,0.3,-17.2,0.081,0.17,0.172,0.441,0.038,2006-07 4561,Quinton Ross,LAC,26.0,198.12,87.543256,Southern Methodist,USA,Undrafted,Undrafted,Undrafted,81,5.2,2.3,1.1,-1.2,0.042,0.08900000000000001,0.122,0.508,0.079,2006-07 4562,Quincy Douby,SAC,23.0,190.5,79.3786,Rutgers,USA,2006,1,19,42,2.8,0.9,0.4,-6.2,0.032,0.08,0.17800000000000002,0.449,0.071,2006-07 4563,Quentin Richardson,NYK,27.0,198.12,104.32616,DePaul,USA,2000,1,18,49,13.0,7.2,2.2,-2.6,0.049,0.203,0.18899999999999997,0.532,0.113,2006-07 4564,Primoz Brezec,CHA,27.0,215.9,114.30518400000001,None,Slovenia,2000,1,27,58,5.0,3.2,0.4,-7.2,0.10800000000000001,0.161,0.184,0.474,0.044000000000000004,2006-07 4565,Pops Mensah-Bonsu,DAL,23.0,205.74,108.86208,George Washington,USA,Undrafted,Undrafted,Undrafted,12,2.4,1.8,0.0,7.0,0.136,0.19,0.214,0.5820000000000001,0.0,2006-07 4566,Peja Stojakovic,NOK,30.0,208.28,103.872568,None,Serbia and Montenegro,1996,1,14,13,17.8,4.2,0.8,-0.4,0.027000000000000003,0.12300000000000001,0.242,0.5429999999999999,0.045,2006-07 4567,Paul Pierce,BOS,29.0,198.12,104.32616,Kansas,USA,1998,1,10,47,25.0,5.9,4.1,-0.3,0.026000000000000002,0.16,0.305,0.5710000000000001,0.209,2006-07 4568,Paul Millsap,UTA,22.0,203.2,117.02673600000001,Louisiana Tech,USA,2006,2,47,82,6.8,5.2,0.8,4.9,0.152,0.20800000000000002,0.17800000000000002,0.5710000000000001,0.068,2006-07 4569,Paul Davis,LAC,22.0,210.82,122.46983999999999,Michigan State,USA,2006,2,34,31,1.6,1.4,0.2,-3.7,0.11599999999999999,0.146,0.161,0.452,0.08,2006-07 4570,Pau Gasol,MEM,26.0,213.36,117.93392,None,Spain,2001,1,3,59,20.8,9.8,3.4,-5.4,0.084,0.233,0.25,0.593,0.166,2006-07 4571,Patrick O'Bryant,GSW,21.0,213.36,112.94440800000001,Bradley,USA,2006,1,9,16,1.9,1.3,0.6,5.1,0.07400000000000001,0.13,0.174,0.39299999999999996,0.106,2006-07 4572,Mike Dunleavy,IND,26.0,205.74,104.32616,Duke,USA,2002,1,3,82,12.8,5.3,2.8,-2.2,0.036000000000000004,0.152,0.19,0.542,0.142,2006-07 4573,Rashad McCants,MIN,22.0,193.04,102.511792,North Carolina,USA,2005,1,14,37,5.0,1.3,1.0,-0.3,0.03,0.073,0.204,0.45399999999999996,0.111,2006-07 4574,Mike Bibby,SAC,29.0,185.42,86.18248,Arizona,USA,1998,1,2,82,17.1,3.2,4.7,-1.2,0.016,0.095,0.24100000000000002,0.532,0.235,2006-07 4575,Mickael Gelabale,SEA,24.0,200.66,97.52228000000001,None,USA,2005,2,48,70,4.6,2.5,0.8,-2.8,0.055999999999999994,0.11,0.128,0.535,0.07,2006-07 4576,Mardy Collins,NYK,22.0,198.12,99.79024,Temple,USA,2006,1,29,52,4.5,2.0,1.6,-6.1,0.043,0.12,0.188,0.445,0.188,2006-07 4577,Marcus Williams,NJN,21.0,190.5,92.98635999999999,Connecticut,USA,2006,1,22,79,6.8,2.1,3.3,-0.3,0.026000000000000002,0.11699999999999999,0.25,0.474,0.34600000000000003,2006-07 4578,Marcus Vinicius,NOK,23.0,203.2,102.0582,None,USA,2006,2,43,13,1.7,0.8,0.4,-22.4,0.027999999999999997,0.114,0.109,0.608,0.069,2006-07 4579,Marcus Camby,DEN,33.0,210.82,106.59411999999999,Massachusetts,USA,1996,1,2,70,11.2,11.7,3.2,3.2,0.08,0.3,0.159,0.519,0.13699999999999998,2006-07 4580,Marcus Banks,PHX,25.0,187.96,90.7184,Nevada-Las Vegas,USA,2003,1,13,45,4.9,0.8,1.3,-12.7,0.022000000000000002,0.067,0.237,0.49700000000000005,0.223,2006-07 4581,Marc Jackson,NOK,32.0,208.28,114.758776,Temple,USA,1997,2,37,56,7.3,3.4,1.0,-8.6,0.07,0.154,0.22699999999999998,0.47100000000000003,0.099,2006-07 4582,Manu Ginobili,SAS,29.0,198.12,92.98635999999999,None,Argentina,1999,2,57,75,16.5,4.4,3.5,13.6,0.036000000000000004,0.153,0.265,0.609,0.223,2006-07 4583,Malik Rose,NYK,32.0,200.66,115.66596000000001,Drexel,USA,1996,2,44,65,3.0,2.7,1.0,-7.3,0.069,0.18899999999999997,0.155,0.46,0.135,2006-07 4584,Mark Blount,MIN,31.0,213.36,113.398,Pittsburgh,USA,1997,2,54,82,12.3,6.2,0.8,-6.0,0.066,0.166,0.19899999999999998,0.546,0.045,2006-07 4585,Malik Allen,CHI,29.0,208.28,115.66596000000001,Villanova,USA,Undrafted,Undrafted,Undrafted,60,4.0,2.0,0.3,5.9,0.076,0.138,0.207,0.44299999999999995,0.040999999999999995,2006-07 4586,Lynn Greer,MIL,27.0,187.96,79.3786,Temple,USA,Undrafted,Undrafted,Undrafted,41,4.1,0.7,1.3,-1.1,0.006,0.069,0.185,0.5379999999999999,0.205,2006-07 4587,Luther Head,HOU,24.0,190.5,83.91452,Illinois,USA,2005,1,24,80,10.9,3.2,2.4,2.5,0.016,0.115,0.184,0.584,0.155,2006-07 4588,Luol Deng,CHI,22.0,205.74,99.79024,Duke,United Kingdom,2004,1,7,82,18.8,7.1,2.5,6.6,0.055999999999999994,0.157,0.222,0.56,0.115,2006-07 4589,Luke Walton,LAL,27.0,203.2,105.23334399999999,Arizona,USA,2003,2,32,60,11.4,5.0,4.3,-0.5,0.052000000000000005,0.12300000000000001,0.165,0.551,0.19399999999999998,2006-07 4590,Luke Schenscher,POR,25.0,215.9,120.20188,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,11,1.7,2.3,0.1,-4.3,0.098,0.153,0.11699999999999999,0.364,0.013999999999999999,2006-07 4591,Luke Ridnour,SEA,26.0,185.42,75.749864,Oregon,USA,2003,1,14,71,11.0,2.3,5.2,-3.9,0.016,0.078,0.198,0.509,0.276,2006-07 4592,Luke Jackson,TOR,25.0,200.66,97.52228000000001,Oregon,USA,2004,1,10,13,3.7,0.8,1.0,-9.6,0.016,0.071,0.182,0.511,0.157,2006-07 4593,Lou Williams,PHI,20.0,185.42,79.3786,None,USA,2005,2,45,61,4.3,1.1,1.8,2.7,0.028999999999999998,0.09300000000000001,0.19699999999999998,0.521,0.264,2006-07 4594,Maceo Baston,IND,31.0,208.28,104.32616,Michigan,USA,1998,2,58,47,2.9,1.6,0.3,-3.8,0.066,0.171,0.146,0.7140000000000001,0.067,2006-07 4595,Mark Madsen,MIN,31.0,205.74,113.398,Stanford,USA,2000,1,29,56,1.1,1.6,0.2,0.4,0.096,0.129,0.076,0.547,0.031,2006-07 4596,Marko Jaric,MIN,28.0,200.66,101.604608,None,Serbia,2000,2,30,70,5.3,2.6,2.1,-5.7,0.043,0.1,0.134,0.51,0.147,2006-07 4597,Marquis Daniels,IND,26.0,198.12,90.7184,Auburn,USA,Undrafted,Undrafted,Undrafted,45,7.1,1.8,1.3,-4.1,0.036000000000000004,0.085,0.20600000000000002,0.506,0.126,2006-07 4598,Michael Sweetney,CHI,24.0,203.2,122.46983999999999,Georgetown,USA,2003,1,9,48,3.2,2.5,0.6,3.7,0.135,0.212,0.231,0.469,0.122,2006-07 4599,Michael Ruffin,WAS,30.0,203.2,112.490816,Tulsa,USA,1999,2,32,30,0.6,2.1,0.2,-13.7,0.141,0.11800000000000001,0.066,0.322,0.037000000000000005,2006-07 4600,Michael Redd,MIL,27.0,198.12,97.52228000000001,Ohio State,USA,2000,2,43,53,26.7,3.7,2.3,-1.5,0.025,0.092,0.293,0.586,0.10400000000000001,2006-07 4601,Michael Olowokandi,BOS,32.0,213.36,122.46983999999999,Pacific,Nigeria,1998,1,1,24,1.7,2.0,0.2,-8.2,0.067,0.184,0.124,0.423,0.038,2006-07 4602,Michael Finley,SAS,34.0,200.66,102.0582,Wisconsin,USA,1995,1,21,82,9.0,2.7,1.3,4.9,0.023,0.12,0.196,0.524,0.1,2006-07 4603,Michael Doleac,MIA,30.0,210.82,118.841104,Utah,USA,1998,1,12,56,3.6,2.8,0.4,-2.9,0.076,0.195,0.154,0.518,0.053,2006-07 4604,Metta World Peace,SAC,27.0,200.66,117.93392,St. John's (NY),USA,1999,1,16,70,18.8,6.5,3.4,0.8,0.045,0.163,0.235,0.5379999999999999,0.153,2006-07 4605,Melvin Ely,SAS,29.0,208.28,118.38751200000002,Fresno State,USA,2002,1,12,30,3.0,1.8,0.6,-14.7,0.05,0.142,0.18600000000000003,0.442,0.115,2006-07 4606,Mehmet Okur,UTA,28.0,210.82,119.294696,None,Turkey,2001,2,37,80,17.6,7.2,2.0,0.0,0.07400000000000001,0.187,0.23,0.5710000000000001,0.09699999999999999,2006-07 4607,Maurice Taylor,SAC,30.0,205.74,120.20188,Michigan,USA,1997,1,14,12,2.0,2.3,0.4,16.5,0.106,0.19399999999999998,0.17600000000000002,0.35600000000000004,0.078,2006-07 4608,Maurice Evans,LAL,28.0,195.58,99.79024,Texas,USA,Undrafted,Undrafted,Undrafted,76,8.4,2.9,1.0,0.3,0.064,0.087,0.17600000000000002,0.523,0.07,2006-07 4609,Maurice Ager,DAL,23.0,195.58,91.625584,Michigan State,USA,2006,1,28,32,2.2,0.7,0.2,-14.2,0.005,0.107,0.214,0.408,0.065,2006-07 4610,Matt Harpring,UTA,31.0,200.66,102.0582,Georgia Tech,USA,1998,1,15,77,11.6,4.6,1.3,4.7,0.07200000000000001,0.151,0.204,0.564,0.083,2006-07 4611,Matt Freije,ATL,25.0,205.74,112.94440800000001,Vanderbilt,USA,2004,2,53,19,2.1,1.3,0.4,1.8,0.055,0.127,0.179,0.353,0.08800000000000001,2006-07 4612,Matt Carroll,CHA,26.0,198.12,96.16150400000001,Notre Dame,USA,Undrafted,Undrafted,Undrafted,72,12.1,2.9,1.3,-2.9,0.021,0.11199999999999999,0.2,0.58,0.083,2006-07 4613,Matt Bonner,SAS,27.0,208.28,108.86208,Florida,USA,2003,2,45,56,4.9,2.8,0.4,2.0,0.115,0.172,0.201,0.542,0.061,2006-07 4614,Matt Barnes,GSW,27.0,200.66,102.511792,UCLA,USA,2002,2,45,76,9.8,4.6,2.1,0.3,0.053,0.156,0.183,0.547,0.131,2006-07 4615,Marvin Williams,ATL,21.0,205.74,104.32616,North Carolina,USA,2005,1,2,64,13.1,5.3,1.9,-5.2,0.046,0.14400000000000002,0.201,0.51,0.094,2006-07 4616,Martell Webster,POR,20.0,200.66,103.872568,None,USA,2005,1,6,82,7.0,2.9,0.6,-6.4,0.028999999999999998,0.139,0.166,0.522,0.05,2006-07 4617,Mickael Pietrus,GSW,25.0,198.12,97.52228000000001,None,France,2003,1,11,72,11.1,4.5,0.9,-3.2,0.045,0.14300000000000002,0.172,0.59,0.049,2006-07 4618,Lou Amundson,PHI,24.0,205.74,102.0582,Nevada-Las Vegas,USA,Undrafted,Undrafted,Undrafted,11,1.5,2.5,0.1,-13.1,0.141,0.192,0.12,0.41200000000000003,0.02,2006-07 4619,Rashard Lewis,SEA,27.0,208.28,104.32616,None,USA,1998,2,32,60,22.4,6.6,2.4,-0.9,0.046,0.158,0.245,0.5870000000000001,0.10800000000000001,2006-07 4620,Rasho Nesterovic,TOR,31.0,213.36,115.66596000000001,None,Slovenia,1998,1,17,80,6.2,4.5,0.9,4.7,0.083,0.171,0.142,0.5579999999999999,0.068,2006-07 4621,Tayshaun Prince,DET,27.0,205.74,97.52228000000001,Kentucky,USA,2002,1,23,82,14.3,5.2,2.8,6.1,0.057,0.114,0.19,0.534,0.127,2006-07 4622,Tarence Kinsey,MEM,23.0,198.12,85.728888,South Carolina,USA,Undrafted,Undrafted,Undrafted,48,7.7,2.0,0.9,-6.4,0.036000000000000004,0.083,0.18100000000000002,0.532,0.068,2006-07 4623,T.J. Ford,TOR,24.0,182.88,74.84268,Texas,USA,2003,1,8,75,14.0,3.1,7.9,1.4,0.027000000000000003,0.09300000000000001,0.26,0.508,0.44799999999999995,2006-07 4624,Stromile Swift,MEM,27.0,205.74,104.32616,Louisiana State,USA,2000,1,2,54,7.8,4.6,0.3,-10.7,0.098,0.18600000000000003,0.20800000000000002,0.517,0.028999999999999998,2006-07 4625,Steven Smith,PHI,24.0,205.74,113.398,La Salle,USA,Undrafted,Undrafted,Undrafted,8,0.6,0.8,0.0,-23.7,0.036000000000000004,0.263,0.185,0.282,0.0,2006-07 4626,Steven Hunter,PHI,25.0,213.36,108.86208,DePaul,USA,2001,1,15,70,6.4,4.8,0.4,-7.4,0.086,0.159,0.134,0.573,0.027999999999999997,2006-07 4627,Steve Novak,HOU,24.0,208.28,99.79024,Marquette,USA,2006,2,32,35,1.5,0.7,0.2,-8.7,0.022000000000000002,0.136,0.134,0.501,0.055,2006-07 4628,Steve Nash,PHX,33.0,190.5,88.45044,Santa Clara,Canada,1996,1,15,76,18.6,3.5,11.6,11.5,0.013999999999999999,0.096,0.228,0.654,0.46799999999999997,2006-07 4629,Thabo Sefolosha,CHI,23.0,200.66,97.52228000000001,None,Switzerland,2006,1,13,71,3.6,2.2,0.8,6.1,0.045,0.158,0.172,0.46399999999999997,0.109,2006-07 4630,Steve Francis,NYK,30.0,190.5,95.25432,Maryland,USA,1999,1,2,44,11.3,3.6,3.9,-0.9,0.032,0.121,0.19699999999999998,0.57,0.223,2006-07 4631,Stephon Marbury,NYK,30.0,187.96,92.98635999999999,Georgia Tech,USA,1996,1,4,74,16.4,2.9,5.4,-4.0,0.016,0.076,0.215,0.539,0.249,2006-07 4632,Stephen Jackson,GSW,29.0,203.2,98.88305600000001,Butler Community College,USA,1997,2,42,75,15.5,3.0,3.8,3.0,0.027000000000000003,0.075,0.22,0.54,0.183,2006-07 4633,Stephen Graham,POR,25.0,198.12,97.52228000000001,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,14,3.2,1.5,0.4,-15.9,0.053,0.121,0.16899999999999998,0.512,0.055,2006-07 4634,Speedy Claxton,ATL,29.0,180.34,77.11064,Hofstra,USA,2000,1,20,42,5.3,1.9,4.4,-5.8,0.013000000000000001,0.081,0.166,0.363,0.29100000000000004,2006-07 4635,Solomon Jones,ATL,22.0,208.28,104.32616,South Florida,USA,2006,2,33,58,3.3,2.3,0.2,-13.5,0.091,0.163,0.128,0.5870000000000001,0.027999999999999997,2006-07 4636,Smush Parker,LAL,26.0,193.04,81.64656,Fordham,USA,Undrafted,Undrafted,Undrafted,82,11.1,2.5,2.8,-2.5,0.022000000000000002,0.075,0.183,0.526,0.141,2006-07 4637,Slava Medvedenko,ATL,28.0,208.28,114.758776,None,Ukraine,Undrafted,Undrafted,Undrafted,14,3.0,1.0,0.1,-12.0,0.063,0.172,0.25,0.556,0.048,2006-07 4638,Shelden Williams,ATL,23.0,205.74,113.398,Duke,USA,2006,1,5,81,5.5,5.4,0.5,-8.0,0.102,0.24100000000000002,0.159,0.518,0.051,2006-07 4639,Steve Blake,DEN,27.0,190.5,78.017824,Maryland,USA,2003,2,38,82,6.4,2.1,5.0,-1.0,0.011000000000000001,0.077,0.133,0.491,0.26,2006-07 4640,Theo Ratliff,BOS,34.0,208.28,106.59411999999999,Wyoming,USA,1995,1,18,2,2.5,3.5,0.0,-24.5,0.057,0.135,0.057999999999999996,0.525,0.0,2006-07 4641,Tim Duncan,SAS,31.0,210.82,117.93392,Wake Forest,US Virgin Islands,1997,1,1,80,20.0,10.6,3.4,13.7,0.1,0.268,0.27899999999999997,0.579,0.182,2006-07 4642,Tim Thomas,LAC,30.0,208.28,108.86208,Villanova,USA,1997,1,7,76,11.0,5.0,2.3,4.1,0.038,0.17600000000000002,0.20199999999999999,0.532,0.142,2006-07 4643,Vitaly Potapenko,SAC,32.0,208.28,129.27372,Wright State,Ukraine,1996,1,12,3,0.0,0.7,0.0,-15.4,0.0,0.125,0.184,0.0,0.0,2006-07 4644,Vince Carter,NJN,30.0,198.12,99.79024,North Carolina,USA,1998,1,5,82,25.2,6.0,4.8,1.4,0.043,0.142,0.307,0.5589999999999999,0.245,2006-07 4645,Viktor Khryapa,CHI,24.0,205.74,98.88305600000001,None,Russia,2004,1,22,33,2.2,1.7,0.6,-2.1,0.10300000000000001,0.2,0.185,0.44799999999999995,0.145,2006-07 4646,Vassilis Spanoulis,HOU,24.0,193.04,88.45044,None,USA,2004,2,50,31,2.7,0.7,0.9,-4.1,0.021,0.071,0.20800000000000002,0.47,0.207,2006-07 4647,Uros Slokar,TOR,24.0,208.28,107.95489599999999,None,USA,2005,2,58,20,1.9,0.7,0.1,-28.7,0.092,0.13,0.237,0.599,0.036000000000000004,2006-07 4648,Udonis Haslem,MIA,27.0,203.2,106.59411999999999,Florida,USA,Undrafted,Undrafted,Undrafted,79,10.7,8.3,1.2,1.8,0.092,0.212,0.17300000000000001,0.523,0.064,2006-07 4649,Tyson Chandler,NOK,24.0,215.9,106.59411999999999,None,USA,2001,1,2,73,9.5,12.4,0.9,-0.9,0.142,0.273,0.122,0.62,0.04,2006-07 4650,Tyrus Thomas,CHI,20.0,205.74,97.52228000000001,Louisiana State,USA,2006,1,4,72,5.2,3.7,0.6,8.1,0.107,0.203,0.204,0.521,0.066,2006-07 4651,Tyronn Lue,ATL,30.0,182.88,79.3786,Nebraska,USA,1998,1,23,56,11.4,1.9,3.6,-8.0,0.016,0.07200000000000001,0.21100000000000002,0.534,0.242,2006-07 4652,Troy Murphy,IND,27.0,210.82,111.13004,Notre Dame,USA,2001,1,14,68,10.3,6.1,1.9,-6.5,0.059000000000000004,0.19699999999999998,0.174,0.541,0.11199999999999999,2006-07 4653,Troy Hudson,MIN,31.0,185.42,80.73937600000001,Southern Illinois,USA,Undrafted,Undrafted,Undrafted,34,5.9,1.4,2.1,-6.9,0.018000000000000002,0.08800000000000001,0.209,0.483,0.22699999999999998,2006-07 4654,Trevor Ariza,ORL,21.0,203.2,95.25432,UCLA,USA,2004,2,43,57,8.9,4.4,1.1,1.5,0.096,0.14300000000000002,0.19,0.5670000000000001,0.092,2006-07 4655,Trenton Hassell,MIN,28.0,195.58,105.68693600000002,Austin Peay,USA,2001,2,29,76,6.7,3.2,2.7,-4.0,0.046,0.08199999999999999,0.11900000000000001,0.529,0.138,2006-07 4656,Travis Outlaw,POR,22.0,205.74,97.52228000000001,None,USA,2003,1,23,67,9.6,3.2,0.8,-4.6,0.053,0.122,0.218,0.499,0.061,2006-07 4657,Travis Diener,ORL,25.0,185.42,79.3786,Marquette,USA,2005,2,38,26,3.8,0.7,1.3,0.6,0.013000000000000001,0.061,0.16,0.5660000000000001,0.21,2006-07 4658,Tracy McGrady,HOU,28.0,203.2,101.151016,None,USA,1997,1,9,71,24.6,5.3,6.5,8.8,0.025,0.14300000000000002,0.34700000000000003,0.515,0.353,2006-07 4659,Tony Parker,SAS,25.0,187.96,81.64656,None,France,2001,1,28,77,18.6,3.2,5.5,10.1,0.017,0.10099999999999999,0.273,0.5720000000000001,0.307,2006-07 4660,Tony Battie,ORL,31.0,210.82,108.86208,Texas Tech,USA,1997,1,5,66,6.1,5.2,0.5,-0.7,0.073,0.18600000000000003,0.136,0.513,0.036000000000000004,2006-07 4661,Tony Allen,BOS,25.0,193.04,96.615096,Oklahoma State,USA,2004,1,25,33,11.5,3.8,1.7,-1.7,0.054000000000000006,0.132,0.22,0.596,0.12,2006-07 4662,Shawne Williams,IND,21.0,205.74,102.0582,Memphis,USA,2006,1,17,46,3.9,1.8,0.5,-11.7,0.07200000000000001,0.10800000000000001,0.161,0.5329999999999999,0.068,2006-07 4663,Rasheed Wallace,DET,32.0,210.82,104.32616,North Carolina,USA,1995,1,4,75,12.3,7.2,1.7,5.1,0.044000000000000004,0.22699999999999998,0.2,0.513,0.08900000000000001,2006-07 4664,Shawn Marion,PHX,29.0,200.66,103.418976,Nevada-Las Vegas,USA,1999,1,9,80,17.5,9.8,1.7,9.9,0.071,0.223,0.192,0.594,0.065,2006-07 4665,Shaun Livingston,LAC,21.0,200.66,82.553744,None,USA,2004,1,4,54,9.3,3.4,5.1,-3.9,0.043,0.094,0.174,0.503,0.28300000000000003,2006-07 4666,Ronnie Price,SAC,24.0,187.96,86.18248,Utah Valley,USA,Undrafted,Undrafted,Undrafted,58,3.3,1.2,0.8,-3.3,0.033,0.124,0.184,0.489,0.14,2006-07 4667,Ronnie Brewer,UTA,22.0,200.66,98.88305600000001,Arkansas,USA,2006,1,14,56,4.6,1.3,0.4,-1.5,0.064,0.07200000000000001,0.166,0.5660000000000001,0.057,2006-07 4668,Ronald Dupree,DET,26.0,200.66,94.800728,Louisiana State,USA,Undrafted,Undrafted,Undrafted,19,1.3,0.9,0.3,2.0,0.065,0.16699999999999998,0.18100000000000002,0.358,0.083,2006-07 4669,Roger Powell,UTA,24.0,198.12,99.79024,Illinois,USA,Undrafted,Undrafted,Undrafted,3,0.7,1.0,0.0,-55.2,0.231,0.0,0.21600000000000003,0.258,0.0,2006-07 4670,Roger Mason Jr.,WAS,26.0,195.58,96.16150400000001,Virginia,USA,2002,2,30,62,2.7,0.7,0.6,-9.2,0.015,0.09699999999999999,0.184,0.44299999999999995,0.115,2006-07 4671,Rodney Carney,PHI,23.0,200.66,92.98635999999999,Memphis,USA,2006,1,16,67,6.6,1.9,0.4,-5.1,0.04,0.091,0.18600000000000003,0.514,0.037000000000000005,2006-07 4672,Robert Horry,SAS,36.0,208.28,108.86208,Alabama,USA,1992,1,11,68,3.9,3.4,1.1,8.5,0.078,0.157,0.13699999999999998,0.48,0.106,2006-07 4673,Robert Hite,MIA,23.0,187.96,83.46092800000001,Miami (FL),USA,Undrafted,Undrafted,Undrafted,12,4.3,1.3,0.7,-7.5,0.027999999999999997,0.10300000000000001,0.237,0.391,0.11599999999999999,2006-07 4674,Ronny Turiaf,LAL,24.0,208.28,112.94440800000001,Gonzaga,France,2005,2,37,72,5.3,3.6,0.9,0.2,0.09,0.188,0.155,0.586,0.092,2006-07 4675,Ricky Davis,MIN,27.0,200.66,102.511792,Iowa,USA,1998,1,21,81,17.0,3.9,4.8,-3.9,0.022000000000000002,0.098,0.21899999999999997,0.5660000000000001,0.215,2006-07 4676,Richard Hamilton,DET,29.0,200.66,87.543256,Connecticut,USA,1999,1,7,75,19.8,3.8,3.8,7.2,0.032,0.091,0.26,0.551,0.184,2006-07 4677,Renaldo Major,GSW,25.0,200.66,86.18248,Fresno State,USA,Undrafted,Undrafted,Undrafted,1,5.0,2.0,0.0,21.5,0.0,0.091,0.171,0.23,0.0,2006-07 4678,Renaldo Balkman,NYK,22.0,203.2,94.34713599999999,South Carolina,USA,2006,1,20,68,4.9,4.3,0.6,1.2,0.10400000000000001,0.21100000000000002,0.154,0.531,0.071,2006-07 4679,Reggie Evans,DEN,27.0,203.2,111.13004,Iowa,USA,Undrafted,Undrafted,Undrafted,66,4.9,7.0,0.7,3.4,0.154,0.299,0.147,0.55,0.06,2006-07 4680,Raymond Felton,CHA,23.0,185.42,89.811216,North Carolina,USA,2005,1,5,78,14.0,3.4,7.0,-2.6,0.021,0.092,0.218,0.48100000000000004,0.314,2006-07 4681,Ray Allen,SEA,31.0,195.58,92.98635999999999,Connecticut,USA,1996,1,5,55,26.4,4.5,4.1,-1.9,0.03,0.10300000000000001,0.293,0.564,0.183,2006-07 4682,Rawle Marshall,IND,25.0,200.66,86.18248,Oakland,USA,Undrafted,Undrafted,Undrafted,40,2.5,0.7,0.3,-5.4,0.024,0.07,0.151,0.455,0.063,2006-07 4683,Rasual Butler,NOK,28.0,200.66,92.98635999999999,La Salle,USA,2002,2,52,81,10.1,3.2,0.8,-3.0,0.021,0.11199999999999999,0.18600000000000003,0.495,0.048,2006-07 4684,Richard Jefferson,NJN,27.0,200.66,104.32616,Arizona,USA,2001,1,13,55,16.3,4.4,2.7,1.7,0.028999999999999998,0.11599999999999999,0.22,0.555,0.131,2006-07 4685,Royal Ivey,ATL,25.0,193.04,97.52228000000001,Texas,USA,2004,2,37,53,3.0,1.0,0.8,-6.6,0.034,0.084,0.161,0.496,0.14,2006-07 4686,Ruben Patterson,MIL,31.0,195.58,101.151016,Cincinnati,USA,1998,2,31,81,14.7,5.4,2.9,-3.4,0.08900000000000001,0.11699999999999999,0.222,0.578,0.154,2006-07 4687,Rudy Gay,MEM,20.0,205.74,99.79024,Connecticut,USA,2006,1,8,78,10.8,4.5,1.3,-2.5,0.052000000000000005,0.14300000000000002,0.209,0.49700000000000005,0.078,2006-07 4688,Shareef Abdur-Rahim,SAC,30.0,205.74,111.13004,California,USA,1996,1,3,80,9.9,5.0,1.4,-4.6,0.07,0.17,0.196,0.524,0.092,2006-07 4689,Shaquille O'Neal,MIA,35.0,215.9,147.4174,Louisiana State,USA,1992,1,1,40,17.3,7.4,2.0,2.6,0.102,0.209,0.302,0.5670000000000001,0.138,2006-07 4690,Shannon Brown,CLE,21.0,193.04,92.98635999999999,Michigan State,USA,2006,1,25,23,3.2,0.9,0.4,-14.0,0.034,0.09,0.218,0.455,0.091,2006-07 4691,Shane Battier,HOU,28.0,203.2,99.79024,Duke,USA,2001,1,6,82,10.1,4.1,2.1,7.5,0.026000000000000002,0.10300000000000001,0.121,0.589,0.092,2006-07 4692,Shammond Williams,LAL,32.0,185.42,91.171992,North Carolina,USA,1998,2,34,30,3.1,1.3,1.0,-4.8,0.036000000000000004,0.102,0.13699999999999998,0.53,0.15,2006-07 4693,Sergio Rodriguez,POR,21.0,190.5,76.203456,None,Spain,2006,1,27,67,3.7,1.4,3.3,-8.5,0.027000000000000003,0.10400000000000001,0.175,0.493,0.41600000000000004,2006-07 4694,Sebastian Telfair,BOS,22.0,182.88,72.57472,None,USA,2004,1,13,78,6.1,1.4,2.8,-4.2,0.013000000000000001,0.07,0.175,0.45799999999999996,0.223,2006-07 4695,Sean May,CHA,23.0,205.74,120.655472,North Carolina,USA,2005,1,13,35,11.9,6.7,1.9,-0.1,0.106,0.21899999999999997,0.233,0.551,0.139,2006-07 4696,Sean Marks,PHX,31.0,208.28,113.398,California,New Zealand,1998,2,44,3,2.0,1.0,0.0,-27.9,0.0,0.273,0.17,0.436,0.0,2006-07 4697,Scott Padgett,MEM,31.0,205.74,108.86208,Kentucky,USA,1999,1,28,31,1.5,1.7,0.3,2.7,0.08199999999999999,0.19,0.146,0.373,0.057999999999999996,2006-07 4698,Scot Pollard,CLE,32.0,210.82,120.20188,Kansas,USA,1997,1,19,24,1.0,1.3,0.1,-1.5,0.165,0.18600000000000003,0.138,0.43200000000000005,0.053,2006-07 4699,Sasha Vujacic,LAL,23.0,200.66,88.45044,None,Slovenia,2004,1,27,73,4.3,1.5,0.9,-3.0,0.034,0.105,0.155,0.54,0.107,2006-07 4700,Sasha Pavlovic,CLE,23.0,200.66,95.25432,None,Montenegro,2003,1,19,67,9.0,2.4,1.6,6.4,0.018000000000000002,0.10400000000000001,0.19,0.5539999999999999,0.11,2006-07 4701,Sarunas Jasikevicius,GSW,31.0,193.04,89.357624,Maryland,USSR,Undrafted,Undrafted,Undrafted,63,6.1,1.1,2.7,-5.3,0.017,0.064,0.204,0.531,0.31,2006-07 4702,Samuel Dalembert,PHI,27.0,210.82,113.398,Seton Hall,Haiti,2001,1,26,82,10.7,8.9,0.8,0.0,0.11599999999999999,0.235,0.168,0.581,0.040999999999999995,2006-07 4703,Sam Cassell,LAC,37.0,190.5,83.91452,Florida State,USA,1993,1,24,58,12.3,2.9,4.7,1.1,0.022000000000000002,0.114,0.257,0.506,0.34,2006-07 4704,Salim Stoudamire,ATL,24.0,185.42,79.3786,Arizona,USA,2005,2,31,61,7.7,1.2,1.0,-6.3,0.006999999999999999,0.079,0.221,0.518,0.11199999999999999,2006-07 4705,Ryan Hollins,CHA,22.0,213.36,104.32616,UCLA,USA,2006,2,50,27,2.4,1.1,0.0,-24.4,0.066,0.147,0.172,0.597,0.01,2006-07 4706,Ryan Gomes,BOS,24.0,200.66,113.398,Providence,USA,2005,2,50,73,12.1,5.6,1.6,-8.0,0.064,0.154,0.188,0.534,0.092,2006-07 4707,Shavlik Randolph,PHI,23.0,208.28,108.86208,Duke,USA,Undrafted,Undrafted,Undrafted,13,4.5,4.2,0.3,3.6,0.11699999999999999,0.21600000000000003,0.16699999999999998,0.503,0.038,2006-07 4708,Andre Barrett,CHI,25.0,177.8,78.471416,Seton Hall,USA,Undrafted,Undrafted,Undrafted,6,1.3,0.8,1.2,-1.1,0.042,0.174,0.18,0.5,0.368,2006-07 4709,Lorenzen Wright,ATL,31.0,210.82,115.66596000000001,Memphis,USA,1996,1,7,67,2.6,3.2,0.6,-7.1,0.096,0.157,0.106,0.439,0.06,2006-07 4710,Lindsey Hunter,DET,36.0,187.96,88.45044,Jackson State,USA,1993,1,10,52,4.9,0.9,1.8,-2.8,0.013999999999999999,0.061,0.187,0.495,0.225,2006-07 4711,Ersan Ilyasova,MIL,20.0,205.74,106.59411999999999,None,Turkey,2005,2,36,66,6.1,2.9,0.7,-10.2,0.067,0.163,0.209,0.5,0.086,2006-07 4712,Erick Dampier,DAL,31.0,210.82,120.20188,Mississippi State,USA,1996,1,10,76,7.1,7.4,0.6,11.5,0.14400000000000002,0.212,0.129,0.642,0.034,2006-07 4713,Eric Williams,CHA,34.0,203.2,99.79024,Providence,USA,1995,1,14,21,2.6,0.8,0.3,2.1,0.032,0.128,0.23800000000000002,0.508,0.10300000000000001,2006-07 4714,Eric Snow,CLE,34.0,190.5,92.98635999999999,Michigan State,USA,1995,2,43,82,4.2,2.3,4.0,1.2,0.021,0.094,0.115,0.45799999999999996,0.259,2006-07 4715,Eric Piatkowski,PHX,36.0,200.66,97.52228000000001,Nebraska,USA,1994,1,15,11,2.5,0.8,0.4,-7.8,0.03,0.10099999999999999,0.20800000000000002,0.522,0.085,2006-07 4716,Emeka Okafor,CHA,24.0,208.28,114.30518400000001,Connecticut,USA,2004,1,2,67,14.4,11.3,1.2,-2.2,0.126,0.249,0.192,0.5539999999999999,0.06,2006-07 4717,Elton Brand,LAC,28.0,203.2,115.212368,Duke,USA,1999,1,1,80,20.5,9.3,2.9,0.0,0.10400000000000001,0.185,0.239,0.581,0.142,2006-07 4718,Eduardo Najera,DEN,30.0,203.2,106.59411999999999,Oklahoma,Mexico,2000,2,38,75,6.6,4.1,0.9,0.9,0.091,0.124,0.12,0.609,0.055999999999999994,2006-07 4719,Esteban Batista,ATL,23.0,208.28,121.562656,None,Uruguay,Undrafted,Undrafted,Undrafted,13,1.5,2.3,0.3,-21.2,0.095,0.315,0.129,0.524,0.105,2006-07 4720,Eddy Curry,NYK,24.0,210.82,129.27372,None,USA,2001,1,4,81,19.5,7.0,0.8,-6.0,0.085,0.156,0.258,0.603,0.045,2006-07 4721,Eddie House,NJN,29.0,185.42,79.3786,Arizona State,USA,2000,2,37,56,8.4,1.6,1.2,-4.5,0.016,0.10099999999999999,0.222,0.536,0.127,2006-07 4722,Eddie Griffin,MIN,25.0,205.74,100.697424,Seton Hall,USA,2001,1,7,13,1.4,1.9,0.3,-42.8,0.08,0.228,0.168,0.308,0.083,2006-07 4723,Earl Watson,SEA,28.0,185.42,88.45044,UCLA,USA,2001,2,39,77,9.4,2.4,5.7,-3.8,0.019,0.085,0.193,0.483,0.318,2006-07 4724,Earl Boykins,MIL,31.0,165.1,60.327736,Eastern Michigan,USA,Undrafted,Undrafted,Undrafted,66,14.6,2.1,4.4,-5.9,0.026000000000000002,0.05,0.213,0.5479999999999999,0.24100000000000002,2006-07 4725,Earl Barron,MIA,25.0,213.36,111.13004,Memphis,USA,Undrafted,Undrafted,Undrafted,28,2.3,1.5,0.2,-6.3,0.11199999999999999,0.14300000000000002,0.23800000000000002,0.35700000000000004,0.045,2006-07 4726,Dwyane Wade,MIA,25.0,193.04,96.16150400000001,Marquette,USA,2003,1,5,51,27.4,4.7,7.5,4.3,0.033,0.109,0.33899999999999997,0.583,0.37799999999999995,2006-07 4727,Dwight Howard,ORL,21.0,210.82,120.20188,None,USA,2004,1,1,82,17.6,12.3,1.9,0.7,0.12,0.28800000000000003,0.226,0.619,0.092,2006-07 4728,Dwayne Jones,CLE,24.0,210.82,113.851592,Saint Joseph's,USA,Undrafted,Undrafted,Undrafted,4,0.8,1.5,0.0,8.5,0.067,0.278,0.141,0.41200000000000003,0.0,2006-07 4729,Eddie Jones,MIA,35.0,198.12,90.7184,Temple,USA,1994,1,10,64,7.7,3.0,1.7,-1.1,0.023,0.11599999999999999,0.149,0.542,0.111,2006-07 4730,Drew Gooden,CLE,25.0,208.28,113.398,Kansas,USA,2002,1,4,80,11.1,8.5,1.1,0.6,0.134,0.225,0.203,0.508,0.067,2006-07 4731,Etan Thomas,WAS,29.0,208.28,117.93392,Syracuse,USA,2000,1,12,65,6.1,5.8,0.4,-2.2,0.127,0.237,0.147,0.585,0.036000000000000004,2006-07 4732,Flip Murray,DET,27.0,190.5,89.357624,Shaw,USA,2002,2,41,69,6.7,1.6,2.7,1.4,0.021,0.068,0.18600000000000003,0.474,0.207,2006-07 4733,Ivan McFarlin,PHI,25.0,200.66,103.872568,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,11,1.4,1.0,0.1,-19.2,0.179,0.138,0.179,0.466,0.038,2006-07 4734,Ira Newble,CLE,32.0,200.66,99.79024,Miami (OH),USA,Undrafted,Undrafted,Undrafted,15,3.1,2.0,0.1,3.7,0.115,0.145,0.159,0.556,0.026000000000000002,2006-07 4735,Ime Udoka,POR,29.0,195.58,99.79024,Portland State,USA,Undrafted,Undrafted,Undrafted,75,8.4,3.7,1.5,-3.6,0.054000000000000006,0.111,0.13699999999999998,0.569,0.085,2006-07 4736,Ike Diogu,IND,23.0,203.2,115.66596000000001,Arizona State,USA,2005,1,9,59,6.2,3.4,0.4,-2.6,0.111,0.18600000000000003,0.231,0.5589999999999999,0.061,2006-07 4737,Hilton Armstrong,NOK,22.0,210.82,106.59411999999999,Connecticut,USA,2006,1,12,56,3.1,2.7,0.2,-1.1,0.106,0.166,0.141,0.57,0.027000000000000003,2006-07 4738,Hedo Turkoglu,ORL,28.0,208.28,99.79024,None,Turkey,2000,1,16,73,13.3,4.0,3.2,2.7,0.032,0.125,0.21600000000000003,0.528,0.171,2006-07 4739,Hassan Adams,NJN,23.0,193.04,99.79024,Arizona,USA,2006,2,54,61,2.9,1.3,0.2,2.6,0.08900000000000001,0.095,0.16399999999999998,0.5770000000000001,0.043,2006-07 4740,Hakim Warrick,MEM,24.0,205.74,99.336648,Syracuse,USA,2005,1,19,82,12.7,5.1,0.9,-9.0,0.07200000000000001,0.163,0.221,0.5920000000000001,0.064,2006-07 4741,Fabricio Oberto,SAS,32.0,208.28,111.13004,None,Argentina,Undrafted,Undrafted,Undrafted,79,4.4,4.7,0.9,8.0,0.122,0.20800000000000002,0.129,0.575,0.075,2006-07 4742,Greg Buckner,DAL,30.0,193.04,95.25432,Clemson,USA,1998,2,53,76,4.0,2.1,0.9,2.2,0.032,0.105,0.12,0.486,0.08199999999999999,2006-07 4743,Gordan Giricek,UTA,30.0,198.12,100.697424,None,Croatia,1999,2,40,61,7.8,2.1,1.0,5.7,0.026000000000000002,0.11199999999999999,0.18600000000000003,0.5660000000000001,0.09,2006-07 4744,Gilbert Arenas,WAS,25.0,193.04,97.52228000000001,Arizona,USA,2001,2,30,74,28.4,4.6,6.0,1.6,0.023,0.109,0.307,0.565,0.257,2006-07 4745,Gerald Wallace,CHA,24.0,200.66,97.52228000000001,Alabama,USA,2001,1,25,72,18.1,7.2,2.6,-4.6,0.061,0.17600000000000002,0.225,0.568,0.12300000000000001,2006-07 4746,Gerald Green,BOS,21.0,203.2,90.7184,None,USA,2005,1,18,81,10.4,2.6,1.0,-8.2,0.043,0.10099999999999999,0.23399999999999999,0.521,0.08900000000000001,2006-07 4747,Gary Payton,MIA,38.0,193.04,86.18248,Oregon State,USA,1990,1,2,68,5.3,1.9,3.0,-4.7,0.013999999999999999,0.08800000000000001,0.147,0.45799999999999996,0.217,2006-07 4748,Fred Jones,POR,28.0,187.96,99.79024,Oregon,USA,2002,1,14,63,6.5,1.8,1.7,-8.2,0.02,0.084,0.168,0.501,0.134,2006-07 4749,Francisco Garcia,SAC,25.0,200.66,88.45044,Louisville,Dominican Republic,2005,1,23,79,6.0,2.6,1.1,-0.3,0.043,0.125,0.158,0.551,0.10099999999999999,2006-07 4750,Francisco Elson,SAS,31.0,213.36,106.59411999999999,California,Netherlands,1999,2,41,70,5.0,4.8,0.8,7.0,0.079,0.223,0.146,0.552,0.063,2006-07 4751,Grant Hill,ORL,34.0,203.2,102.0582,Duke,USA,1994,1,3,65,14.4,3.6,2.1,-1.4,0.033,0.11,0.218,0.5820000000000001,0.125,2006-07 4752,Doug Christie,LAC,37.0,198.12,92.98635999999999,Pepperdine,USA,1992,1,17,7,1.9,1.6,1.1,-18.6,0.040999999999999995,0.11900000000000001,0.134,0.355,0.182,2006-07 4753,Dorell Wright,MIA,21.0,203.2,92.98635999999999,None,USA,2004,1,19,66,6.0,4.1,1.4,-4.3,0.038,0.213,0.171,0.489,0.126,2006-07 4754,Donyell Marshall,CLE,34.0,205.74,104.32616,Connecticut,USA,1994,1,4,81,7.0,4.0,0.6,3.0,0.07200000000000001,0.201,0.193,0.536,0.057999999999999996,2006-07 4755,Von Wafer,LAC,21.0,195.58,95.25432,Florida State,USA,2005,2,39,1,0.0,0.0,0.0,26.6,0.0,0.0,0.275,0.0,0.0,2006-07 4756,Aaron McKie,LAL,34.0,195.58,94.800728,Temple,USA,1994,1,17,10,2.2,1.8,1.3,-4.0,0.009000000000000001,0.155,0.08900000000000001,0.647,0.165,2006-07 4757,Aaron Williams,LAC,35.0,205.74,106.59411999999999,Xavier,USA,Undrafted,Undrafted,Undrafted,38,2.0,2.2,0.2,-2.4,0.09,0.187,0.10099999999999999,0.606,0.03,2006-07 4758,Adam Morrison,CHA,22.0,203.2,92.98635999999999,Gonzaga,USA,2006,1,3,78,11.8,2.9,2.1,-7.0,0.026000000000000002,0.092,0.22,0.45,0.121,2006-07 4759,Adonal Foyle,GSW,32.0,208.28,122.46983999999999,Colgate,St. Vincent & Grenadines,1997,1,8,48,2.2,2.6,0.4,-3.2,0.11599999999999999,0.16899999999999998,0.106,0.557,0.054000000000000006,2006-07 4760,Adrian Griffin,CHI,32.0,195.58,104.32616,Seton Hall,USA,Undrafted,Undrafted,Undrafted,54,2.5,2.0,1.1,7.4,0.08900000000000001,0.14,0.135,0.499,0.154,2006-07 4761,Al Harrington,GSW,27.0,205.74,111.13004,None,USA,1998,1,25,78,16.5,6.4,1.9,-0.8,0.064,0.157,0.22899999999999998,0.54,0.09699999999999999,2006-07 4762,Al Jefferson,BOS,22.0,208.28,116.119552,None,USA,2004,1,15,69,16.0,11.0,1.3,-4.2,0.12300000000000001,0.267,0.228,0.547,0.071,2006-07 4763,Zydrunas Ilgauskas,CLE,32.0,220.98,117.93392,None,Lithuania,1996,1,20,78,11.9,7.7,1.6,4.6,0.128,0.204,0.218,0.527,0.099,2006-07 4764,Alan Anderson,CHA,24.0,198.12,99.79024,Michigan State,USA,Undrafted,Undrafted,Undrafted,17,5.8,1.9,1.2,-3.3,0.052000000000000005,0.107,0.20199999999999999,0.5379999999999999,0.14400000000000002,2006-07 4765,Alexander Johnson,MEM,24.0,205.74,108.86208,Florida State,USA,2006,2,45,59,4.4,3.1,0.3,-1.9,0.086,0.21600000000000003,0.161,0.588,0.033,2006-07 4766,Allan Ray,BOS,23.0,187.96,86.18248,Villanova,USA,Undrafted,Undrafted,Undrafted,47,6.2,1.5,0.9,-3.2,0.027999999999999997,0.096,0.20199999999999999,0.512,0.105,2006-07 4767,Allen Iverson,DEN,32.0,182.88,74.84268,Georgetown,USA,1996,1,1,65,26.3,3.0,7.2,0.6,0.009000000000000001,0.069,0.29100000000000004,0.54,0.302,2006-07 4768,Alonzo Mourning,MIA,37.0,208.28,118.38751200000002,Georgetown,USA,1992,1,2,77,8.6,4.5,0.2,-0.7,0.10099999999999999,0.154,0.20800000000000002,0.59,0.02,2006-07 4769,Alvin Williams,LAC,32.0,195.58,88.45044,Villanova,USA,1997,2,47,2,1.0,0.5,1.5,-40.0,0.077,0.0,0.257,0.266,0.429,2006-07 4770,Amar'e Stoudemire,PHX,24.0,208.28,111.13004,None,USA,2002,1,9,82,20.4,9.6,1.0,7.8,0.10300000000000001,0.228,0.256,0.637,0.049,2006-07 4771,Amir Johnson,DET,20.0,205.74,95.25432,None,USA,2005,2,56,8,5.9,4.6,0.4,-0.3,0.152,0.16699999999999998,0.17600000000000002,0.6,0.039,2006-07 4772,Anderson Varejao,CLE,24.0,208.28,108.86208,None,Brazil,2004,2,30,81,6.8,6.7,0.9,6.8,0.113,0.218,0.13699999999999998,0.527,0.06,2006-07 4773,Alan Henderson,PHI,34.0,205.74,108.86208,Indiana,USA,1995,1,16,38,3.1,2.8,0.3,-1.3,0.133,0.172,0.109,0.679,0.036000000000000004,2006-07 4774,Zaza Pachulia,ATL,23.0,210.82,127.00576000000001,None,Georgia,2003,2,42,72,12.2,6.9,1.5,-3.2,0.11800000000000001,0.184,0.215,0.562,0.092,2006-07 4775,Zach Randolph,POR,25.0,205.74,97.52228000000001,Michigan State,USA,2001,1,19,68,23.6,10.1,2.2,-4.9,0.10099999999999999,0.257,0.33,0.537,0.126,2006-07 4776,Yaroslav Korolev,LAC,20.0,205.74,92.079176,None,Russia,2005,1,12,10,1.2,0.3,0.4,-24.4,0.02,0.083,0.218,0.322,0.19,2006-07 4777,Donell Taylor,WAS,24.0,195.58,87.543256,Alabama-Birmingham,USA,Undrafted,Undrafted,Undrafted,47,2.7,1.1,1.0,-11.6,0.038,0.126,0.21600000000000003,0.42200000000000004,0.23600000000000002,2006-07 4778,Dirk Nowitzki,DAL,29.0,213.36,111.13004,None,Germany,1998,1,9,78,24.6,8.9,3.4,11.1,0.054000000000000006,0.23800000000000002,0.289,0.605,0.16899999999999998,2006-07 4779,Dikembe Mutombo,HOU,41.0,218.44,117.93392,Georgetown,Congo,1991,1,4,75,3.1,6.5,0.2,5.8,0.14300000000000002,0.282,0.084,0.601,0.016,2006-07 4780,Dijon Thompson,ATL,24.0,203.2,90.7184,UCLA,USA,2005,2,54,6,2.8,1.3,0.3,-3.2,0.081,0.161,0.19,0.48200000000000004,0.071,2006-07 4781,Devin Harris,DAL,24.0,190.5,83.91452,Wisconsin,USA,2004,1,5,80,10.2,2.5,3.7,14.1,0.027999999999999997,0.083,0.192,0.574,0.22,2006-07 4782,Devin Brown,NOK,28.0,195.58,99.79024,Texas-San Antonio,USA,Undrafted,Undrafted,Undrafted,58,11.6,4.3,2.6,-0.8,0.038,0.138,0.196,0.5379999999999999,0.14300000000000002,2006-07 4783,Devean George,DAL,29.0,203.2,106.59411999999999,Augsburg,USA,1999,1,23,60,6.4,3.6,0.6,3.8,0.053,0.14800000000000002,0.161,0.48700000000000004,0.043,2006-07 4784,Desmond Mason,NOK,29.0,195.58,100.697424,Oklahoma State,USA,2000,1,17,75,13.7,4.6,1.5,-2.7,0.054000000000000006,0.102,0.217,0.493,0.076,2006-07 4785,Desmon Farmer,SEA,25.0,195.58,99.79024,Southern California,USA,Undrafted,Undrafted,Undrafted,8,1.6,0.1,1.1,16.2,0.0,0.03,0.21899999999999997,0.42100000000000004,0.34600000000000003,2006-07 4786,Deron Williams,UTA,23.0,190.5,92.98635999999999,Illinois,USA,2005,1,3,80,16.2,3.3,9.3,1.6,0.017,0.091,0.222,0.535,0.40399999999999997,2006-07 4787,Derek Fisher,UTA,32.0,185.42,95.707912,Arkansas-Little Rock,USA,1996,1,24,82,10.1,1.8,3.3,2.5,0.016,0.063,0.183,0.51,0.183,2006-07 4788,Derek Anderson,CHA,32.0,195.58,88.45044,Kentucky,USA,1997,1,13,50,8.0,2.3,2.7,0.4,0.028999999999999998,0.087,0.153,0.586,0.174,2006-07 4789,Walter Herrmann,CHA,28.0,205.74,102.0582,None,USA,Undrafted,Undrafted,Undrafted,48,9.2,2.9,0.5,-1.3,0.035,0.146,0.19,0.625,0.049,2006-07 4790,Wayne Simien,MIA,24.0,205.74,113.398,Kansas,USA,2005,1,29,8,2.9,1.4,0.5,-14.3,0.057,0.091,0.146,0.441,0.08199999999999999,2006-07 4791,Will Blalock,DET,23.0,182.88,92.98635999999999,Iowa State,USA,2006,2,60,14,1.8,1.1,1.2,-6.7,0.038,0.066,0.12,0.38299999999999995,0.193,2006-07 4792,Will Conroy,LAC,24.0,187.96,88.45044,Washington,USA,Undrafted,Undrafted,Undrafted,7,0.0,1.0,1.3,-10.8,0.065,0.085,0.061,0.0,0.3,2006-07 4793,Willie Green,PHI,25.0,190.5,91.171992,Detroit Mercy,USA,2003,2,41,74,11.3,2.1,1.5,-6.3,0.027000000000000003,0.076,0.255,0.45799999999999996,0.111,2006-07 4794,Yakhouba Diawara,DEN,24.0,200.66,102.0582,Pepperdine,USA,Undrafted,Undrafted,Undrafted,64,4.4,1.7,0.9,2.1,0.025,0.077,0.127,0.45,0.068,2006-07 4795,Yao Ming,HOU,26.0,228.6,140.61352,None,China,2002,1,1,48,25.0,9.4,2.0,9.3,0.076,0.23800000000000002,0.331,0.601,0.115,2006-07 4796,J.J. Barea,DAL,23.0,182.88,79.3786,Northeastern,Puerto Rico,Undrafted,Undrafted,Undrafted,33,2.4,0.8,0.7,-5.7,0.040999999999999995,0.115,0.25,0.44,0.24,2006-07 4797,Linton Johnson,NOK,27.0,203.2,92.98635999999999,Tulane,USA,Undrafted,Undrafted,Undrafted,54,4.2,3.0,0.3,1.7,0.083,0.184,0.149,0.5479999999999999,0.040999999999999995,2006-07 4798,JJ Redick,ORL,23.0,193.04,86.18248,Duke,USA,2006,1,11,42,6.0,1.2,0.9,-2.0,0.02,0.081,0.18,0.569,0.1,2006-07 4799,Jackie Butler,SAS,22.0,208.28,117.93392,Southern Illinois,USA,Undrafted,Undrafted,Undrafted,11,3.7,2.0,0.5,-15.9,0.071,0.18600000000000003,0.23399999999999999,0.52,0.08800000000000001,2006-07 4800,Kenny Thomas,SAC,29.0,200.66,111.13004,New Mexico,USA,1999,1,22,62,5.3,6.1,1.2,-5.8,0.10800000000000001,0.21600000000000003,0.136,0.49200000000000005,0.085,2006-07 4801,Kendrick Perkins,BOS,22.0,208.28,127.00576000000001,None,USA,2003,1,27,72,4.5,5.2,1.3,-4.0,0.083,0.195,0.124,0.518,0.095,2006-07 4802,Kelvin Cato,NYK,32.0,210.82,124.7378,Iowa State,USA,1997,1,15,18,1.2,1.7,0.0,-3.4,0.121,0.209,0.159,0.40299999999999997,0.0,2006-07 4803,Kelenna Azubuike,GSW,23.0,195.58,99.79024,Kentucky,England,Undrafted,Undrafted,Undrafted,41,7.1,2.3,0.7,-9.9,0.04,0.11,0.187,0.5720000000000001,0.068,2006-07 4804,Keith McLeod,IND,27.0,187.96,86.18248,Bowling Green,USA,Undrafted,Undrafted,Undrafted,48,4.8,0.9,1.9,-2.2,0.006,0.063,0.163,0.52,0.184,2006-07 4805,Keith Bogans,ORL,27.0,195.58,97.52228000000001,Kentucky,USA,2003,2,43,59,5.1,1.6,1.0,2.6,0.021,0.095,0.151,0.546,0.094,2006-07 4806,Juwan Howard,HOU,34.0,205.74,113.398,Michigan,USA,1994,1,5,80,9.7,5.9,1.6,3.0,0.077,0.184,0.191,0.517,0.105,2006-07 4807,Justin Williams,SAC,23.0,208.28,104.32616,Wyoming,USA,Undrafted,Undrafted,Undrafted,26,5.0,4.4,0.1,-7.6,0.171,0.22899999999999998,0.174,0.5660000000000001,0.01,2006-07 4808,Kenyon Martin,DEN,29.0,205.74,108.86208,Cincinnati,USA,2000,1,1,2,9.5,10.0,0.5,-4.4,0.098,0.24600000000000002,0.17300000000000001,0.446,0.023,2006-07 4809,Justin Reed,MIN,25.0,203.2,108.86208,Mississippi,USA,2004,2,40,41,2.6,1.1,0.4,-13.1,0.053,0.11699999999999999,0.19399999999999998,0.441,0.085,2006-07 4810,Jumaine Jones,PHX,28.0,203.2,104.32616,Georgia,USA,1999,1,27,18,2.2,1.3,0.1,-5.8,0.045,0.153,0.195,0.386,0.011000000000000001,2006-07 4811,Julius Hodge,MIL,23.0,200.66,99.79024,North Carolina State,USA,2005,1,20,9,1.7,0.9,1.3,-2.3,0.031,0.09,0.114,0.545,0.293,2006-07 4812,Juan Dixon,TOR,28.0,190.5,74.389088,Maryland,USA,2002,1,17,81,9.6,2.0,1.5,-3.0,0.017,0.085,0.204,0.516,0.11199999999999999,2006-07 4813,Josh Smith,ATL,21.0,205.74,106.59411999999999,None,USA,2004,1,17,72,16.4,8.6,3.3,-4.2,0.073,0.20600000000000002,0.239,0.506,0.157,2006-07 4814,Josh Powell,GSW,24.0,205.74,102.0582,North Carolina State,USA,Undrafted,Undrafted,Undrafted,37,3.1,2.4,0.6,-16.7,0.07200000000000001,0.18899999999999997,0.168,0.52,0.1,2006-07 4815,Josh Howard,DAL,27.0,200.66,95.25432,Wake Forest,USA,2003,1,29,70,18.9,6.8,1.8,9.7,0.065,0.16899999999999998,0.251,0.5479999999999999,0.08800000000000001,2006-07 4816,Josh Childress,ATL,24.0,203.2,95.25432,Stanford,USA,2004,1,6,55,13.0,6.2,2.3,-2.2,0.07200000000000001,0.128,0.157,0.586,0.10800000000000001,2006-07 4817,Josh Boone,NJN,22.0,208.28,111.13004,Connecticut,USA,2006,1,23,61,4.2,2.9,0.2,4.0,0.111,0.185,0.174,0.5870000000000001,0.027000000000000003,2006-07 4818,Junior Harrington,MEM,26.0,193.04,86.18248,Wingate,USA,Undrafted,Undrafted,Undrafted,29,5.2,2.3,3.1,-2.5,0.027999999999999997,0.124,0.17300000000000001,0.483,0.24600000000000002,2006-07 4819,Kevin Garnett,MIN,31.0,210.82,114.758776,None,USA,1995,1,5,76,22.4,12.8,4.1,-0.5,0.077,0.308,0.276,0.546,0.19,2006-07 4820,Kevin Martin,SAC,24.0,200.66,83.91452,Western Carolina,USA,2004,1,26,80,20.2,4.3,2.2,-3.0,0.027999999999999997,0.11900000000000001,0.23,0.614,0.10800000000000001,2006-07 4821,Kevin Ollie,PHI,34.0,190.5,88.45044,Connecticut,USA,Undrafted,Undrafted,Undrafted,53,3.8,1.4,2.5,-8.3,0.011000000000000001,0.08800000000000001,0.133,0.48100000000000004,0.22899999999999998,2006-07 4822,Linas Kleiza,DEN,22.0,203.2,111.13004,Missouri,Lithuania,2005,1,27,79,7.6,3.4,0.6,2.1,0.057999999999999996,0.145,0.175,0.561,0.047,2006-07 4823,Leon Powe,BOS,23.0,203.2,108.86208,California,USA,2006,2,49,63,4.2,3.4,0.2,-3.6,0.152,0.22,0.17800000000000002,0.5489999999999999,0.026000000000000002,2006-07 4824,Leandro Barbosa,PHX,24.0,190.5,85.275296,None,Brazil,2003,1,28,80,18.1,2.7,4.0,9.7,0.01,0.084,0.23399999999999999,0.595,0.188,2006-07 4825,LeBron James,CLE,22.0,203.2,108.86208,None,USA,2003,1,1,78,27.3,6.7,6.0,5.4,0.028999999999999998,0.166,0.309,0.552,0.281,2006-07 4826,Lawrence Roberts,MEM,24.0,205.74,108.86208,Mississippi State,USA,2005,2,55,54,5.2,4.8,0.6,-2.8,0.11800000000000001,0.204,0.139,0.5329999999999999,0.048,2006-07 4827,Larry Hughes,CLE,28.0,195.58,83.46092800000001,Saint Louis,USA,1998,1,8,70,14.9,3.8,3.7,4.3,0.018000000000000002,0.10400000000000001,0.21600000000000003,0.48,0.162,2006-07 4828,Lamar Odom,LAL,27.0,208.28,104.32616,Rhode Island,USA,1999,1,4,56,15.9,9.8,4.8,1.1,0.055,0.23199999999999998,0.196,0.552,0.193,2006-07 4829,LaMarcus Aldridge,POR,21.0,210.82,111.13004,Texas,USA,2006,1,2,63,9.0,5.0,0.4,-2.7,0.125,0.157,0.191,0.5329999999999999,0.03,2006-07 4830,Kyle Lowry,MEM,21.0,182.88,79.3786,Villanova,USA,2006,1,24,10,5.6,3.1,3.2,18.0,0.079,0.14300000000000002,0.161,0.556,0.26899999999999996,2006-07 4831,Kyle Korver,PHI,26.0,200.66,95.25432,Creighton,USA,2003,2,51,74,14.4,3.5,1.4,-4.3,0.016,0.12,0.212,0.569,0.083,2006-07 4832,Kwame Brown,LAL,25.0,210.82,122.46983999999999,None,USA,2001,1,1,41,8.4,6.0,1.8,2.1,0.092,0.179,0.152,0.573,0.09699999999999999,2006-07 4833,Kurt Thomas,PHX,34.0,205.74,106.59411999999999,Texas Christian,USA,1995,1,10,67,4.6,5.7,0.4,11.5,0.08800000000000001,0.276,0.12300000000000001,0.531,0.026000000000000002,2006-07 4834,Kris Humphries,TOR,22.0,205.74,106.59411999999999,Minnesota,USA,2004,1,14,60,3.8,3.1,0.3,-2.0,0.129,0.19699999999999998,0.172,0.516,0.043,2006-07 4835,Kobe Bryant,LAL,28.0,198.12,99.79024,None,USA,1996,1,13,77,31.6,5.7,5.4,0.6,0.027999999999999997,0.132,0.33299999999999996,0.58,0.249,2006-07 4836,Kirk Snyder,HOU,24.0,198.12,102.0582,Nevada,USA,2004,1,16,39,4.9,2.1,1.0,-1.0,0.035,0.13699999999999998,0.175,0.536,0.125,2006-07 4837,Kirk Hinrich,CHI,26.0,190.5,86.18248,Kansas,USA,2003,1,7,80,16.6,3.4,6.3,6.0,0.013000000000000001,0.095,0.21600000000000003,0.5589999999999999,0.29100000000000004,2006-07 4838,Keyon Dooling,ORL,27.0,190.5,88.45044,Missouri,USA,2000,1,10,66,7.9,1.3,1.7,0.1,0.019,0.055999999999999994,0.19,0.501,0.135,2006-07 4839,Kevinn Pinkney,BOS,23.0,208.28,111.13004,Nevada,USA,Undrafted,Undrafted,Undrafted,6,5.2,2.5,0.8,-4.6,0.076,0.11800000000000001,0.151,0.501,0.078,2006-07 4840,Kevin Willis,DAL,44.0,213.36,111.13004,Michigan State,USA,1984,1,11,5,2.4,1.6,0.2,11.9,0.063,0.222,0.184,0.43200000000000005,0.034,2006-07 4841,Jose Calderon,TOR,25.0,190.5,95.25432,None,Spain,Undrafted,Undrafted,Undrafted,77,8.7,1.7,5.0,2.6,0.015,0.08800000000000001,0.195,0.588,0.397,2006-07 4842,JR Smith,DEN,21.0,198.12,99.79024,None,USA,2004,1,18,63,13.0,2.3,1.4,3.1,0.023,0.084,0.22699999999999998,0.585,0.098,2006-07 4843,Jorge Garbajosa,TOR,29.0,205.74,111.13004,None,USA,Undrafted,Undrafted,Undrafted,67,8.5,4.9,1.9,3.5,0.03,0.175,0.155,0.503,0.099,2006-07 4844,John Salmons,SAC,27.0,198.12,93.89354399999999,Miami (FL),USA,2002,1,26,79,8.5,3.3,3.2,-3.5,0.026000000000000002,0.121,0.155,0.5529999999999999,0.196,2006-07 4845,Jarrett Jack,POR,23.0,190.5,89.357624,Georgia Tech,USA,2005,1,22,79,12.0,2.6,5.3,-7.0,0.008,0.09,0.18100000000000002,0.5710000000000001,0.265,2006-07 4846,Jared Reiner,MIL,25.0,210.82,115.66596000000001,Iowa,USA,Undrafted,Undrafted,Undrafted,27,1.2,2.6,0.5,-12.8,0.099,0.248,0.113,0.348,0.076,2006-07 4847,Jared Jeffries,NYK,25.0,210.82,108.86208,Indiana,USA,2002,1,11,55,4.1,4.3,1.2,-5.3,0.107,0.12,0.105,0.473,0.08,2006-07 4848,Jannero Pargo,NOK,27.0,185.42,79.3786,Arkansas,USA,Undrafted,Undrafted,Undrafted,82,9.2,2.2,2.5,-3.2,0.013000000000000001,0.10800000000000001,0.237,0.504,0.218,2006-07 4849,James White,SAS,24.0,200.66,90.7184,Cincinnati,USA,2006,2,31,6,8.3,3.3,0.8,-5.8,0.025,0.14800000000000002,0.183,0.525,0.065,2006-07 4850,James Singleton,LAC,25.0,203.2,104.32616,Murray State,USA,Undrafted,Undrafted,Undrafted,53,1.6,2.0,0.3,-0.2,0.106,0.21899999999999997,0.135,0.449,0.075,2006-07 4851,James Posey,MIA,30.0,203.2,98.429464,Xavier,USA,1999,1,18,71,7.7,5.0,1.3,0.5,0.04,0.18100000000000002,0.129,0.579,0.078,2006-07 4852,James Lang,WAS,23.0,208.28,138.34556,None,USA,2003,2,48,11,1.0,1.0,0.2,-0.3,0.10400000000000001,0.109,0.115,0.491,0.054000000000000006,2006-07 4853,James Jones,PHX,26.0,203.2,99.79024,Miami (FL),USA,2003,2,49,76,6.4,2.3,0.6,7.5,0.027999999999999997,0.11699999999999999,0.16699999999999998,0.51,0.048,2006-07 4854,James Augustine,ORL,23.0,208.28,106.59411999999999,Illinois,USA,2006,2,41,2,1.0,1.5,1.0,-18.6,0.25,0.28600000000000003,0.20199999999999999,0.33299999999999996,0.33299999999999996,2006-07 4855,Jameer Nelson,ORL,25.0,182.88,86.18248,Saint Joseph's,USA,2004,1,20,77,13.0,3.1,4.3,-1.0,0.027000000000000003,0.095,0.22699999999999998,0.514,0.242,2006-07 4856,Jamal Sampson,DEN,24.0,210.82,106.59411999999999,California,USA,2002,2,46,22,1.1,2.2,0.2,-2.0,0.136,0.289,0.109,0.595,0.057999999999999996,2006-07 4857,Jamal Crawford,NYK,27.0,195.58,86.18248,Michigan,USA,2000,1,8,59,17.6,3.2,4.4,-4.1,0.024,0.076,0.23800000000000002,0.517,0.203,2006-07 4858,Jamaal Tinsley,IND,29.0,190.5,83.91452,Iowa State,USA,2001,1,27,72,12.8,3.3,6.9,-2.8,0.028999999999999998,0.094,0.23600000000000002,0.465,0.379,2006-07 4859,Jamaal Magloire,POR,29.0,210.82,120.20188,Kentucky,Canada,2000,1,19,81,6.5,6.1,0.4,-7.8,0.111,0.257,0.177,0.527,0.03,2006-07 4860,Jalen Rose,PHX,34.0,203.2,97.52228000000001,Michigan,USA,1994,1,13,29,3.7,0.8,0.6,-7.2,0.013999999999999999,0.096,0.187,0.5920000000000001,0.11900000000000001,2006-07 4861,Jake Voskuhl,CHA,29.0,210.82,115.66596000000001,Connecticut,USA,2000,2,33,73,4.4,3.5,0.6,-6.1,0.095,0.21600000000000003,0.157,0.523,0.067,2006-07 4862,Jake Tsakalidis,HOU,28.0,218.44,131.54168,None,Greece,2000,1,25,36,2.3,2.9,0.1,-1.5,0.122,0.192,0.13699999999999998,0.47100000000000003,0.022000000000000002,2006-07 4863,Jacque Vaughn,SAS,32.0,185.42,86.18248,Kansas,USA,1997,1,27,64,3.0,1.1,2.0,13.4,0.013000000000000001,0.087,0.151,0.491,0.27,2006-07 4864,Jarron Collins,UTA,28.0,210.82,112.490816,Stanford,USA,2001,2,52,82,2.5,2.1,0.7,2.9,0.09300000000000001,0.14800000000000002,0.11900000000000001,0.494,0.102,2006-07 4865,Jordan Farmar,LAL,20.0,187.96,81.64656,UCLA,USA,2006,1,26,72,4.4,1.7,1.9,1.7,0.025,0.106,0.163,0.515,0.204,2006-07 4866,Jarvis Hayes,WAS,25.0,203.2,103.418976,Georgia,USA,2003,1,10,81,7.2,2.6,1.0,-5.8,0.028999999999999998,0.124,0.17600000000000002,0.502,0.08199999999999999,2006-07 4867,Jason Hart,LAC,29.0,190.5,83.91452,Syracuse,USA,2000,2,49,36,6.9,2.7,2.9,-2.5,0.02,0.124,0.154,0.509,0.195,2006-07 4868,Wally Szczerbiak,BOS,30.0,200.66,110.676448,Miami (OH),USA,1999,1,6,32,15.0,3.1,1.7,-3.4,0.021,0.111,0.249,0.54,0.107,2006-07 4869,Johan Petro,SEA,21.0,213.36,112.037224,None,France,2005,1,25,81,6.2,4.1,0.6,-7.8,0.07400000000000001,0.2,0.16899999999999998,0.532,0.05,2006-07 4870,Joey Graham,TOR,25.0,200.66,102.0582,Oklahoma State,USA,2005,1,16,79,6.4,3.1,0.6,2.7,0.05,0.17300000000000001,0.17300000000000001,0.564,0.053,2006-07 4871,Joel Przybilla,POR,27.0,215.9,115.66596000000001,Minnesota,USA,2000,1,9,43,2.0,3.9,0.3,-2.9,0.10300000000000001,0.191,0.08900000000000001,0.467,0.027000000000000003,2006-07 4872,Joe Smith,PHI,31.0,208.28,102.0582,Maryland,USA,1995,1,1,65,8.5,6.2,0.8,-0.1,0.09699999999999999,0.22,0.18600000000000003,0.51,0.055,2006-07 4873,Joe Johnson,ATL,26.0,200.66,106.59411999999999,Arkansas,USA,2001,1,10,57,25.0,4.2,4.4,-4.0,0.027000000000000003,0.095,0.285,0.5579999999999999,0.21600000000000003,2006-07 4874,Jerry Stackhouse,DAL,32.0,198.12,98.88305600000001,North Carolina,USA,1995,1,3,67,12.0,2.2,2.8,7.3,0.028999999999999998,0.079,0.244,0.537,0.195,2006-07 4875,Jerome James,NYK,31.0,215.9,127.00576000000001,Florida A&M,USA,1998,2,36,41,1.9,1.6,0.1,-13.2,0.08,0.17600000000000002,0.18600000000000003,0.43700000000000006,0.023,2006-07 4876,Jermaine O'Neal,IND,28.0,210.82,117.93392,None,USA,1996,1,17,69,19.4,9.6,2.4,-0.5,0.07,0.23600000000000002,0.284,0.5,0.128,2006-07 4877,Jeremy Richardson,POR,23.0,200.66,88.45044,Delta State,USA,Undrafted,Undrafted,Undrafted,6,1.3,0.3,0.0,-5.6,0.071,0.067,0.142,0.667,0.0,2006-07 4878,Jeff McInnis,CHA,32.0,193.04,86.18248,North Carolina,USA,1996,2,37,38,4.3,1.6,3.3,-7.5,0.024,0.087,0.156,0.423,0.276,2006-07 4879,Jeff Foster,IND,30.0,210.82,113.398,Texas State,USA,1999,1,21,75,4.3,8.1,0.8,-1.3,0.161,0.248,0.099,0.513,0.049,2006-07 4880,Jason Williams,MIA,31.0,185.42,81.64656,Florida,USA,1998,1,7,61,10.9,2.3,5.3,1.9,0.012,0.073,0.182,0.54,0.275,2006-07 4881,Jason Terry,DAL,29.0,187.96,81.64656,Arizona,USA,1999,1,10,81,16.7,2.9,5.2,10.4,0.018000000000000002,0.079,0.214,0.5870000000000001,0.244,2006-07 4882,Jason Richardson,GSW,26.0,198.12,102.0582,Michigan State,USA,2001,1,5,51,16.0,5.1,3.4,2.7,0.046,0.126,0.221,0.512,0.153,2006-07 4883,Jason Maxiell,DET,24.0,200.66,117.93392,Cincinnati,USA,2005,1,26,67,5.0,2.8,0.2,4.6,0.111,0.114,0.18600000000000003,0.518,0.025,2006-07 4884,Jason Kidd,NJN,34.0,193.04,95.25432,California,USA,1994,1,2,80,13.0,8.2,9.2,1.8,0.054000000000000006,0.20800000000000002,0.192,0.516,0.405,2006-07 4885,Jason Kapono,MIA,26.0,203.2,97.52228000000001,UCLA,USA,2003,2,31,67,10.9,2.7,1.2,1.1,0.018000000000000002,0.098,0.179,0.613,0.079,2006-07 4886,Jason Collins,NJN,28.0,213.36,117.93392,Stanford,USA,2001,1,18,80,2.1,4.0,0.6,3.3,0.059000000000000004,0.14400000000000002,0.07200000000000001,0.408,0.034,2006-07 4887,John Lucas III,HOU,24.0,180.34,74.84268,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,47,3.3,0.8,0.7,-1.5,0.026000000000000002,0.08900000000000001,0.223,0.46799999999999997,0.16699999999999998,2006-07 4888,Jason Richardson,CHA,27.0,198.12,102.0582,Michigan State,USA,2001,1,5,82,21.8,5.4,3.1,-4.1,0.028999999999999998,0.131,0.258,0.5539999999999999,0.149,2007-08 4889,Jason Smith,PHI,22.0,213.36,108.86208,Colorado State,USA,2007,1,20,76,4.5,3.0,0.3,-0.5,0.081,0.16399999999999998,0.159,0.491,0.027999999999999997,2007-08 4890,Chris Wilcox,SEA,25.0,208.28,106.59411999999999,Maryland,USA,2002,1,8,62,13.4,7.0,1.2,-5.9,0.08,0.185,0.21100000000000002,0.5539999999999999,0.07,2007-08 4891,Jeff Foster,IND,31.0,210.82,113.398,Texas State,USA,1999,1,21,77,6.4,8.7,1.7,-0.7,0.145,0.242,0.115,0.568,0.10300000000000001,2007-08 4892,Javaris Crittenton,MEM,20.0,195.58,90.7184,Georgia Tech,USA,2007,1,19,50,5.6,2.2,1.0,-2.5,0.043,0.131,0.21600000000000003,0.499,0.121,2007-08 4893,Jason Williams,MIA,32.0,185.42,81.64656,Florida,USA,1998,1,7,67,8.8,1.9,4.6,-11.1,0.006999999999999999,0.078,0.166,0.502,0.255,2007-08 4894,Jason Terry,DAL,30.0,187.96,81.64656,Arizona,USA,1999,1,10,82,15.5,2.5,3.2,6.0,0.013999999999999999,0.077,0.21600000000000003,0.574,0.175,2007-08 4895,Quincy Douby,SAC,24.0,190.5,79.3786,Rutgers,USA,2006,1,19,74,4.8,1.1,0.7,-6.9,0.022000000000000002,0.09,0.21100000000000002,0.495,0.105,2007-08 4896,Quinton Ross,LAC,27.0,198.12,87.543256,Southern Methodist,USA,Undrafted,Undrafted,Undrafted,76,4.1,2.3,1.2,-9.3,0.040999999999999995,0.091,0.121,0.43,0.094,2007-08 4897,Raef LaFrentz,POR,32.0,210.82,111.13004,Kansas,USA,1998,1,3,39,1.7,1.7,0.2,-5.7,0.111,0.145,0.127,0.469,0.033,2007-08 4898,Rafer Alston,HOU,31.0,187.96,79.3786,Fresno State,USA,1998,2,39,74,13.1,3.5,5.3,6.5,0.013000000000000001,0.1,0.205,0.49200000000000005,0.24600000000000002,2007-08 4899,Raja Bell,PHX,31.0,195.58,97.52228000000001,Florida International,U.S. Virgin Islands,Undrafted,Undrafted,Undrafted,75,11.9,3.7,2.2,7.8,0.022000000000000002,0.08900000000000001,0.145,0.561,0.085,2007-08 4900,Rajon Rondo,BOS,22.0,185.42,77.56423199999999,Kentucky,USA,2006,1,21,77,10.6,4.2,5.1,14.1,0.044000000000000004,0.11699999999999999,0.18899999999999997,0.515,0.263,2007-08 4901,Ramon Sessions,MIL,22.0,190.5,86.18248,Nevada,USA,2007,2,56,17,8.1,3.4,7.5,-6.5,0.02,0.134,0.166,0.507,0.40700000000000003,2007-08 4902,Jeff Green,SEA,21.0,205.74,106.59411999999999,Georgetown,USA,2007,1,5,80,10.5,4.7,1.5,-11.0,0.05,0.136,0.195,0.491,0.08199999999999999,2007-08 4903,Randolph Morris,NYK,22.0,210.82,117.93392,Kentucky,USA,Undrafted,Undrafted,Undrafted,18,3.1,2.1,0.1,-31.6,0.065,0.16899999999999998,0.19699999999999998,0.396,0.019,2007-08 4904,Rashad McCants,MIN,23.0,193.04,95.25432,North Carolina,USA,2005,1,14,75,14.9,2.7,2.2,-4.3,0.028999999999999998,0.092,0.265,0.55,0.138,2007-08 4905,Rashard Lewis,ORL,28.0,208.28,104.32616,None,USA,1998,2,32,81,18.2,5.4,2.4,7.2,0.038,0.122,0.207,0.591,0.10400000000000001,2007-08 4906,Rasheed Wallace,DET,33.0,210.82,104.32616,North Carolina,USA,1995,1,4,77,12.7,6.6,1.8,9.8,0.043,0.22,0.21,0.523,0.095,2007-08 4907,Rasho Nesterovic,TOR,32.0,213.36,115.66596000000001,None,Slovenia,1998,1,17,71,7.8,4.8,1.2,2.9,0.10099999999999999,0.17,0.174,0.565,0.086,2007-08 4908,Rasual Butler,NOH,29.0,200.66,92.98635999999999,La Salle,USA,2002,2,52,51,4.9,2.0,0.7,4.6,0.02,0.109,0.151,0.46,0.064,2007-08 4909,Ray Allen,BOS,32.0,195.58,92.98635999999999,Connecticut,USA,1996,1,5,73,17.4,3.7,3.1,12.6,0.036000000000000004,0.083,0.21600000000000003,0.584,0.139,2007-08 4910,Raymond Felton,CHA,24.0,185.42,89.811216,North Carolina,USA,2005,1,5,79,14.4,3.0,7.4,-3.8,0.013999999999999999,0.077,0.207,0.5,0.318,2007-08 4911,Reggie Evans,PHI,28.0,203.2,111.13004,Iowa,USA,Undrafted,Undrafted,Undrafted,81,5.2,7.5,0.8,-2.3,0.139,0.257,0.136,0.46299999999999997,0.051,2007-08 4912,Renaldo Balkman,NYK,23.0,203.2,94.34713599999999,South Carolina,USA,2006,1,20,65,3.4,3.3,0.6,-4.6,0.096,0.162,0.126,0.49200000000000005,0.066,2007-08 4913,Richard Hamilton,DET,30.0,200.66,87.543256,Connecticut,USA,1999,1,7,72,17.3,3.3,4.2,7.8,0.037000000000000005,0.079,0.247,0.552,0.215,2007-08 4914,Richard Jefferson,NJN,28.0,200.66,102.0582,Arizona,USA,2001,1,13,82,22.6,4.2,3.1,-4.9,0.034,0.091,0.26,0.5710000000000001,0.146,2007-08 4915,Randy Foye,MIN,24.0,193.04,96.615096,Villanova,USA,2006,1,7,39,13.1,3.3,4.2,-6.9,0.012,0.11,0.20600000000000002,0.52,0.20199999999999999,2007-08 4916,Richie Frahm,LAC,30.0,195.58,91.625584,Gonzaga,USA,Undrafted,Undrafted,Undrafted,10,4.7,1.4,0.8,-1.8,0.026000000000000002,0.069,0.16899999999999998,0.428,0.084,2007-08 4917,Jeff McInnis,CHA,33.0,193.04,86.18248,North Carolina,USA,1996,2,37,54,4.5,1.8,4.1,-7.5,0.013999999999999999,0.069,0.113,0.461,0.239,2007-08 4918,Jeremy Richardson,ATL,24.0,200.66,88.45044,Delta State,USA,Undrafted,Undrafted,Undrafted,27,1.5,0.3,0.1,-22.7,0.008,0.079,0.174,0.457,0.027999999999999997,2007-08 4919,Justin Williams,HOU,24.0,208.28,117.93392,Wyoming,USA,Undrafted,Undrafted,Undrafted,23,1.5,2.1,0.0,-5.0,0.19,0.271,0.16,0.42,0.0,2007-08 4920,Juan Dixon,DET,29.0,190.5,74.84268,Maryland,USA,2002,1,17,53,5.0,1.4,1.8,7.2,0.025,0.107,0.221,0.488,0.23,2007-08 4921,Juan Carlos Navarro,MEM,28.0,190.5,77.11064,None,Spain,2002,2,39,82,10.9,2.6,2.2,-7.9,0.018000000000000002,0.09699999999999999,0.201,0.54,0.132,2007-08 4922,Josh Smith,ATL,22.0,205.74,106.59411999999999,None,USA,2004,1,17,81,17.2,8.2,3.4,-0.9,0.065,0.20199999999999999,0.248,0.52,0.163,2007-08 4923,Josh Powell,LAC,25.0,205.74,108.86208,North Carolina State,USA,Undrafted,Undrafted,Undrafted,64,5.5,5.2,0.7,-13.4,0.10800000000000001,0.218,0.159,0.5,0.066,2007-08 4924,Josh McRoberts,POR,21.0,208.28,108.86208,Duke,USA,2007,2,37,8,1.5,1.3,0.3,23.0,0.077,0.276,0.18,0.6,0.111,2007-08 4925,Josh Howard,DAL,28.0,195.58,95.25432,Wake Forest,USA,2003,1,29,76,19.9,7.0,2.2,8.1,0.052000000000000005,0.166,0.257,0.534,0.10300000000000001,2007-08 4926,Josh Childress,ATL,25.0,203.2,95.25432,Stanford,USA,2004,1,6,76,11.8,4.9,1.5,-2.7,0.09,0.102,0.156,0.647,0.08800000000000001,2007-08 4927,Josh Boone,NJN,23.0,208.28,107.501304,Connecticut,USA,2006,1,23,70,8.2,7.3,0.8,-4.4,0.121,0.19899999999999998,0.151,0.5429999999999999,0.05,2007-08 4928,Jose Calderon,TOR,26.0,190.5,95.25432,None,Spain,Undrafted,Undrafted,Undrafted,82,11.2,2.9,8.3,3.7,0.016,0.1,0.16899999999999998,0.607,0.42,2007-08 4929,Jorge Garbajosa,TOR,30.0,205.74,111.13004,None,USA,Undrafted,Undrafted,Undrafted,7,3.1,2.1,0.4,-8.4,0.027999999999999997,0.25,0.168,0.44,0.067,2007-08 4930,Jelani McCoy,DEN,30.0,208.28,111.13004,UCLA,USA,1998,2,33,6,0.5,1.2,0.0,-18.1,0.038,0.222,0.081,0.7979999999999999,0.0,2007-08 4931,Jordan Farmar,LAL,21.0,187.96,81.64656,UCLA,USA,2006,1,26,82,9.1,2.2,2.7,8.6,0.027000000000000003,0.092,0.204,0.563,0.209,2007-08 4932,Johan Petro,SEA,22.0,213.36,112.037224,None,France,2005,1,25,72,6.0,5.1,0.4,-11.3,0.08,0.228,0.179,0.45299999999999996,0.039,2007-08 4933,Joey Graham,TOR,26.0,200.66,102.0582,Oklahoma State,USA,2005,1,16,38,3.6,1.8,0.4,1.6,0.064,0.18600000000000003,0.223,0.52,0.071,2007-08 4934,Joel Przybilla,POR,28.0,215.9,115.66596000000001,Minnesota,USA,2000,1,9,77,4.8,8.4,0.4,-2.6,0.128,0.29,0.105,0.611,0.023,2007-08 4935,Joel Anthony,MIA,25.0,205.74,111.13004,Nevada-Las Vegas,Canada,Undrafted,Undrafted,Undrafted,24,3.5,3.9,0.1,-13.9,0.091,0.135,0.099,0.521,0.011000000000000001,2007-08 4936,Joe Smith,CLE,32.0,208.28,102.0582,Maryland,USA,1995,1,1,77,10.1,5.2,0.9,-1.3,0.10300000000000001,0.163,0.212,0.524,0.068,2007-08 4937,Joe Johnson,ATL,27.0,200.66,106.59411999999999,Arkansas,USA,2001,1,10,82,21.7,4.5,5.8,-0.9,0.028999999999999998,0.098,0.257,0.535,0.251,2007-08 4938,Joakim Noah,CHI,23.0,210.82,105.23334399999999,Florida,USA,2007,1,9,74,6.6,5.6,1.1,-0.4,0.124,0.182,0.155,0.539,0.087,2007-08 4939,Jerry Stackhouse,DAL,33.0,198.12,98.88305600000001,North Carolina,USA,1995,1,3,58,10.7,2.3,2.5,2.5,0.027000000000000003,0.077,0.21899999999999997,0.523,0.171,2007-08 4940,Jerome James,NYK,32.0,215.9,129.27372,Florida A&M,USA,1998,2,36,2,2.0,1.5,0.0,52.2,0.0,0.6,0.19,1.064,0.0,2007-08 4941,Jermareo Davidson,CHA,23.0,208.28,104.32616,Alabama,USA,2007,2,36,38,3.2,1.6,0.3,-11.3,0.071,0.14400000000000002,0.22,0.43700000000000006,0.077,2007-08 4942,Jermaine O'Neal,IND,29.0,210.82,117.93392,None,USA,1996,1,17,42,13.6,6.7,2.2,-1.3,0.071,0.188,0.248,0.489,0.13,2007-08 4943,John Salmons,SAC,28.0,198.12,93.89354399999999,Miami (FL),USA,2002,1,26,81,12.5,4.3,2.6,-5.8,0.037000000000000005,0.126,0.19399999999999998,0.556,0.138,2007-08 4944,Juwan Howard,DAL,35.0,205.74,114.758776,Michigan,USA,1994,1,5,50,1.1,1.6,0.3,-6.5,0.07200000000000001,0.195,0.11800000000000001,0.406,0.07400000000000001,2007-08 4945,Ricky Davis,MIA,28.0,200.66,92.98635999999999,Iowa,USA,1998,1,21,82,13.8,4.3,3.4,-10.4,0.022000000000000002,0.122,0.2,0.534,0.16699999999999998,2007-08 4946,Robert Swift,SEA,22.0,215.9,111.13004,None,USA,2004,1,12,8,1.8,2.3,0.1,-16.9,0.07400000000000001,0.154,0.12300000000000001,0.391,0.013999999999999999,2007-08 4947,Shawn Marion,MIA,30.0,200.66,104.32616,Nevada-Las Vegas,USA,1999,1,9,63,15.4,10.2,2.2,5.4,0.069,0.239,0.182,0.57,0.087,2007-08 4948,Shawne Williams,IND,22.0,205.74,102.0582,Memphis,USA,2006,1,17,65,6.7,2.7,0.9,-1.1,0.059000000000000004,0.14,0.212,0.522,0.099,2007-08 4949,Shelden Williams,SAC,24.0,205.74,113.398,Duke,USA,2006,1,5,64,4.0,3.2,0.3,-2.3,0.102,0.204,0.168,0.494,0.040999999999999995,2007-08 4950,Smush Parker,LAC,27.0,193.04,86.18248,Fordham,USA,Undrafted,Undrafted,Undrafted,28,5.9,1.8,3.0,-8.7,0.008,0.08800000000000001,0.187,0.42,0.249,2007-08 4951,Solomon Jones,ATL,23.0,208.28,104.32616,South Florida,USA,2006,2,33,35,1.0,1.2,0.0,-17.7,0.127,0.185,0.139,0.451,0.0,2007-08 4952,Spencer Hawes,SAC,20.0,213.36,111.13004,Washington,USA,2007,1,10,71,4.7,3.2,0.6,-4.4,0.087,0.205,0.191,0.486,0.076,2007-08 4953,Stephane Lasme,MIA,25.0,203.2,97.52228000000001,Massachusetts,Gabon,2007,2,46,16,5.2,3.3,0.2,-6.4,0.1,0.099,0.166,0.488,0.02,2007-08 4954,Stephen Graham,IND,26.0,198.12,97.52228000000001,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,22,4.0,1.0,0.4,1.5,0.03,0.155,0.24100000000000002,0.669,0.127,2007-08 4955,Stephen Jackson,GSW,30.0,203.2,98.88305600000001,Butler Community College,USA,1997,2,42,73,20.1,4.4,4.1,3.8,0.024,0.098,0.23199999999999998,0.536,0.151,2007-08 4956,Stephon Marbury,NYK,31.0,187.96,92.98635999999999,Georgia Tech,USA,1996,1,4,24,13.9,2.5,4.7,-11.4,0.023,0.06,0.201,0.527,0.244,2007-08 4957,Steve Blake,POR,28.0,190.5,78.017824,Maryland,USA,2003,2,38,81,8.5,2.4,5.1,1.3,0.015,0.08,0.153,0.518,0.261,2007-08 4958,Shavlik Randolph,PHI,24.0,208.28,108.86208,Duke,USA,Undrafted,Undrafted,Undrafted,9,0.9,1.2,0.3,25.3,0.36,0.087,0.23800000000000002,0.28600000000000003,0.13,2007-08 4959,Steve Francis,HOU,31.0,190.5,95.25432,Maryland,USA,1999,1,2,10,5.5,2.3,3.0,-1.5,0.044000000000000004,0.086,0.183,0.41,0.233,2007-08 4960,Steve Novak,HOU,25.0,208.28,99.79024,Marquette,USA,2006,2,32,35,3.9,1.0,0.2,-5.0,0.017,0.135,0.193,0.6509999999999999,0.043,2007-08 4961,Steven Hunter,DEN,26.0,213.36,108.86208,DePaul,USA,2001,1,15,19,2.1,1.5,0.0,-7.6,0.086,0.12300000000000001,0.155,0.53,0.0,2007-08 4962,Stromile Swift,NJN,28.0,208.28,99.79024,Louisiana State,USA,2000,1,2,56,6.1,3.6,0.5,-4.8,0.086,0.179,0.19699999999999998,0.5479999999999999,0.053,2007-08 4963,T.J. Ford,TOR,25.0,182.88,74.84268,Texas,USA,2003,1,8,51,12.1,2.0,6.1,0.8,0.022000000000000002,0.07400000000000001,0.263,0.5329999999999999,0.434,2007-08 4964,Tarence Kinsey,MEM,24.0,198.12,81.19296800000001,South Carolina,USA,Undrafted,Undrafted,Undrafted,11,3.6,1.1,0.2,2.3,0.035,0.09300000000000001,0.19699999999999998,0.49200000000000005,0.038,2007-08 4965,Taurean Green,DEN,21.0,182.88,80.28578399999998,Florida,USA,2007,2,52,17,1.6,0.6,0.6,5.4,0.0,0.141,0.23,0.446,0.20800000000000002,2007-08 4966,Tayshaun Prince,DET,28.0,205.74,97.52228000000001,Kentucky,USA,2002,1,23,82,13.2,4.9,3.3,9.4,0.048,0.131,0.201,0.516,0.165,2007-08 4967,Thabo Sefolosha,CHI,24.0,200.66,97.52228000000001,None,Switzerland,2006,1,13,69,6.7,3.7,1.9,-2.3,0.04,0.168,0.175,0.49700000000000005,0.146,2007-08 4968,Thaddeus Young,PHI,20.0,203.2,99.79024,Georgia Tech,USA,2007,1,12,74,8.2,4.2,0.8,6.0,0.092,0.141,0.174,0.57,0.055999999999999994,2007-08 4969,Theo Ratliff,DET,35.0,208.28,106.59411999999999,Wyoming,USA,1995,1,18,26,4.3,3.4,0.5,-0.3,0.08800000000000001,0.158,0.134,0.534,0.05,2007-08 4970,Thomas Gardner,CHI,23.0,195.58,102.0582,Missouri,USA,Undrafted,Undrafted,Undrafted,4,5.3,1.0,0.3,-7.2,0.061,0.025,0.257,0.44,0.038,2007-08 4971,Steve Nash,PHX,34.0,190.5,80.73937600000001,Santa Clara,Canada,1996,1,15,81,16.9,3.5,11.1,10.3,0.013000000000000001,0.096,0.218,0.6409999999999999,0.447,2007-08 4972,Robert Horry,SAS,37.0,208.28,108.86208,Alabama,USA,1992,1,11,45,2.5,2.4,1.0,0.2,0.068,0.155,0.125,0.426,0.132,2007-08 4973,Shareef Abdur-Rahim,SAC,31.0,205.74,111.13004,California,USA,1996,1,3,6,1.7,1.7,0.7,-1.9,0.13,0.11800000000000001,0.157,0.317,0.129,2007-08 4974,Shannon Brown,CHI,22.0,193.04,95.707912,Michigan State,USA,2006,1,25,21,5.4,1.0,0.8,-19.6,0.027000000000000003,0.077,0.309,0.41100000000000003,0.16,2007-08 4975,Rodney Carney,PHI,24.0,200.66,92.532768,Memphis,USA,2006,1,16,70,5.8,2.1,0.5,0.7,0.053,0.11900000000000001,0.196,0.478,0.05,2007-08 4976,Rodney Stuckey,DET,22.0,195.58,92.98635999999999,Eastern Washington,USA,2007,1,15,57,7.6,2.3,2.8,3.6,0.035,0.10800000000000001,0.228,0.484,0.258,2007-08 4977,Roger Mason Jr.,WAS,27.0,195.58,96.16150400000001,Virginia,USA,2002,2,30,80,9.1,1.6,1.7,-1.7,0.012,0.081,0.19,0.573,0.133,2007-08 4978,Ronald Dupree,SEA,27.0,200.66,94.800728,Louisiana State,USA,Undrafted,Undrafted,Undrafted,5,0.8,1.6,0.2,13.6,0.067,0.304,0.09699999999999999,0.515,0.1,2007-08 4979,Ronnie Brewer,UTA,23.0,200.66,101.151016,Arkansas,USA,2006,1,14,76,12.0,2.9,1.8,6.1,0.057999999999999996,0.07200000000000001,0.174,0.612,0.092,2007-08 4980,Ronnie Price,UTA,25.0,187.96,86.18248,Utah Valley,USA,Undrafted,Undrafted,Undrafted,61,3.7,0.8,1.3,13.8,0.016,0.079,0.19399999999999998,0.516,0.20199999999999999,2007-08 4981,Ronny Turiaf,LAL,25.0,208.28,113.398,Gonzaga,France,2005,2,37,78,6.6,3.9,1.6,5.1,0.076,0.153,0.168,0.539,0.13,2007-08 4982,Royal Ivey,MIL,26.0,193.04,97.52228000000001,Texas,USA,2004,2,37,75,5.6,1.6,2.1,-8.6,0.03,0.071,0.16,0.48700000000000004,0.17600000000000002,2007-08 4983,Ruben Patterson,LAC,32.0,195.58,101.151016,Cincinnati,USA,1998,2,31,20,5.1,3.2,0.9,-3.3,0.08199999999999999,0.125,0.18,0.486,0.087,2007-08 4984,Rudy Gay,MEM,21.0,203.2,100.697424,Connecticut,USA,2006,1,8,81,20.1,6.2,2.0,-8.3,0.052000000000000005,0.139,0.25,0.546,0.09300000000000001,2007-08 4985,Ryan Bowen,NOH,32.0,205.74,98.88305600000001,Iowa,USA,1998,2,55,53,2.2,1.9,0.5,3.1,0.094,0.085,0.092,0.505,0.055999999999999994,2007-08 4986,Shaquille O'Neal,PHX,36.0,215.9,147.4174,Louisiana State,USA,1992,1,1,61,13.6,9.1,1.5,1.2,0.121,0.252,0.23399999999999999,0.589,0.08800000000000001,2007-08 4987,Ryan Gomes,MIN,25.0,200.66,113.398,Providence,USA,2005,2,50,82,12.6,5.8,1.8,-7.1,0.062,0.16899999999999998,0.195,0.539,0.094,2007-08 4988,Salim Stoudamire,ATL,25.0,185.42,79.3786,Arizona,USA,2005,2,31,35,5.7,0.7,0.8,-5.8,0.011000000000000001,0.059000000000000004,0.244,0.495,0.12300000000000001,2007-08 4989,Sam Cassell,BOS,38.0,190.5,83.91452,Florida State,USA,1993,1,24,55,11.2,2.5,3.9,-3.7,0.015,0.106,0.25,0.517,0.298,2007-08 4990,Samuel Dalembert,PHI,28.0,210.82,113.398,Seton Hall,Haiti,2001,1,26,82,10.5,10.4,0.5,-0.7,0.134,0.24100000000000002,0.155,0.556,0.026000000000000002,2007-08 4991,Sasha Pavlovic,CLE,24.0,200.66,108.40848799999999,None,Montenegro,2003,1,19,51,7.4,2.5,1.6,-1.8,0.032,0.087,0.187,0.434,0.111,2007-08 4992,Sasha Vujacic,LAL,24.0,200.66,92.98635999999999,None,Slovenia,2004,1,27,72,8.8,2.1,1.0,5.4,0.017,0.11699999999999999,0.20199999999999999,0.605,0.087,2007-08 4993,Scot Pollard,BOS,33.0,210.82,126.098576,Kansas,USA,1997,1,19,22,1.8,1.7,0.1,4.9,0.10800000000000001,0.15,0.10400000000000001,0.597,0.027000000000000003,2007-08 4994,Sean Marks,PHX,32.0,208.28,113.398,California,New Zealand,1998,2,44,19,3.1,1.9,0.2,-20.1,0.071,0.18600000000000003,0.21899999999999997,0.574,0.063,2007-08 4995,Sean Williams,NJN,21.0,208.28,106.59411999999999,Boston College,USA,2007,1,17,73,5.6,4.4,0.4,-7.0,0.105,0.192,0.153,0.563,0.037000000000000005,2007-08 4996,Sebastian Telfair,MIN,23.0,182.88,79.3786,None,USA,2004,1,13,60,9.3,2.3,5.9,-11.8,0.009000000000000001,0.07400000000000001,0.168,0.462,0.282,2007-08 4997,Sergio Rodriguez,POR,22.0,190.5,76.203456,None,Spain,2006,1,27,72,2.5,0.8,1.7,-9.4,0.024,0.083,0.201,0.423,0.35,2007-08 4998,Shane Battier,HOU,29.0,203.2,99.79024,Duke,USA,2001,1,6,80,9.3,5.1,1.9,6.2,0.052000000000000005,0.10300000000000001,0.11599999999999999,0.561,0.079,2007-08 4999,Ryan Hollins,CHA,23.0,213.36,104.32616,UCLA,USA,2006,2,50,60,2.5,1.8,0.2,-2.2,0.11800000000000001,0.121,0.13,0.565,0.04,2007-08 5000,Kaniel Dickens,CLE,29.0,203.2,97.52228000000001,Idaho,USA,2000,2,50,5,0.4,0.2,0.2,0.8,0.0,0.111,0.125,0.33299999999999996,0.16699999999999998,2007-08 5001,Kareem Rush,IND,27.0,198.12,97.52228000000001,Missouri,USA,2002,1,20,71,8.3,2.4,1.3,-2.5,0.013000000000000001,0.113,0.188,0.5,0.09699999999999999,2007-08 5002,Kasib Powell,MIA,27.0,200.66,97.52228000000001,Texas Tech,USA,Undrafted,Undrafted,Undrafted,11,7.6,4.0,1.6,-12.5,0.031,0.139,0.172,0.424,0.129,2007-08 5003,Mike Miller,MEM,28.0,203.2,98.88305600000001,Florida,USA,2000,1,5,70,16.4,6.7,3.4,-5.5,0.024,0.187,0.19899999999999998,0.625,0.155,2007-08 5004,Mike James,NOH,33.0,187.96,85.275296,Duquesne,USA,Undrafted,Undrafted,Undrafted,54,5.0,1.3,1.1,-2.4,0.022000000000000002,0.08900000000000001,0.222,0.43700000000000006,0.142,2007-08 5005,Mike Harris,HOU,25.0,198.12,108.86208,Rice,USA,Undrafted,Undrafted,Undrafted,17,3.6,3.2,0.2,3.5,0.17,0.19899999999999998,0.198,0.519,0.033,2007-08 5006,Mike Dunleavy,IND,27.0,205.74,104.32616,Duke,USA,2002,1,3,82,19.1,5.2,3.5,1.0,0.022000000000000002,0.135,0.218,0.605,0.158,2007-08 5007,Mike Conley,MEM,20.0,185.42,81.64656,Ohio State,USA,2007,1,4,53,9.4,2.6,4.2,-10.4,0.017,0.099,0.18899999999999997,0.502,0.247,2007-08 5008,Mike Bibby,ATL,30.0,185.42,86.18248,Arizona,USA,1998,1,2,48,13.9,3.3,6.0,-1.9,0.012,0.102,0.215,0.515,0.281,2007-08 5009,Mickael Pietrus,GSW,26.0,198.12,97.52228000000001,None,France,2003,1,11,66,7.2,3.7,0.7,1.4,0.053,0.154,0.154,0.5489999999999999,0.051,2007-08 5010,Mickael Gelabale,SEA,25.0,200.66,97.52228000000001,None,USA,2005,2,48,39,4.3,1.5,0.8,-5.7,0.037000000000000005,0.095,0.17800000000000002,0.509,0.113,2007-08 5011,Michael Ruffin,MIL,31.0,203.2,112.490816,Tulsa,USA,1999,2,32,46,2.0,4.0,0.5,-3.7,0.154,0.192,0.077,0.507,0.055,2007-08 5012,Michael Redd,MIL,28.0,198.12,97.52228000000001,Ohio State,USA,2000,2,43,72,22.7,4.3,3.4,-7.5,0.036000000000000004,0.10099999999999999,0.27,0.5589999999999999,0.16,2007-08 5013,Michael Finley,SAS,35.0,200.66,102.0582,Wisconsin,USA,1995,1,21,82,10.1,3.1,1.4,5.7,0.015,0.12,0.188,0.519,0.084,2007-08 5014,Mike Wilks,SEA,29.0,177.8,81.64656,Rice,USA,Undrafted,Undrafted,Undrafted,15,2.7,1.3,0.9,-3.7,0.031,0.08900000000000001,0.115,0.5429999999999999,0.121,2007-08 5015,Michael Doleac,MIN,31.0,210.82,118.841104,Utah,USA,1998,1,12,24,2.4,2.0,0.3,-9.2,0.066,0.151,0.129,0.446,0.040999999999999995,2007-08 5016,Melvin Ely,NOH,30.0,208.28,118.38751200000002,Fresno State,USA,2002,1,12,52,3.9,2.8,0.4,9.9,0.054000000000000006,0.207,0.193,0.491,0.055,2007-08 5017,Mehmet Okur,UTA,29.0,210.82,119.294696,None,Turkey,2001,2,37,72,14.5,7.7,2.0,7.4,0.069,0.213,0.19899999999999998,0.556,0.08900000000000001,2007-08 5018,Maurice Evans,ORL,29.0,195.58,99.79024,Texas,USA,Undrafted,Undrafted,Undrafted,75,8.9,2.9,1.1,5.0,0.065,0.084,0.165,0.5710000000000001,0.07200000000000001,2007-08 5019,Maurice Ager,NJN,24.0,195.58,91.625584,Michigan State,USA,2006,1,28,26,2.0,0.5,0.3,-10.3,0.027000000000000003,0.062,0.21600000000000003,0.363,0.085,2007-08 5020,Matt Harpring,UTA,32.0,200.66,104.32616,Georgia Tech,USA,1998,1,15,76,8.2,3.2,1.1,0.6,0.084,0.13,0.215,0.551,0.099,2007-08 5021,Matt Carroll,CHA,27.0,198.12,96.16150400000001,Notre Dame,USA,Undrafted,Undrafted,Undrafted,80,9.0,2.8,0.9,-2.7,0.019,0.111,0.159,0.5539999999999999,0.057999999999999996,2007-08 5022,Matt Bonner,SAS,28.0,208.28,108.86208,Florida,USA,2003,2,45,68,4.8,2.8,0.5,6.1,0.07400000000000001,0.187,0.196,0.525,0.066,2007-08 5023,Matt Barnes,GSW,28.0,200.66,102.511792,UCLA,USA,2002,2,45,73,6.7,4.4,1.9,1.6,0.067,0.18100000000000002,0.166,0.51,0.136,2007-08 5024,Marvin Williams,ATL,22.0,205.74,104.32616,North Carolina,USA,2005,1,2,80,14.8,5.7,1.7,-2.4,0.051,0.141,0.203,0.54,0.083,2007-08 5025,Martell Webster,POR,21.0,200.66,103.872568,None,USA,2005,1,6,75,10.7,3.9,1.2,-3.3,0.03,0.135,0.179,0.5479999999999999,0.068,2007-08 5026,Marquis Daniels,IND,27.0,198.12,90.7184,Auburn,USA,Undrafted,Undrafted,Undrafted,74,8.2,2.9,1.9,0.7,0.046,0.10300000000000001,0.205,0.48700000000000004,0.14400000000000002,2007-08 5027,Metta World Peace,SAC,28.0,200.66,112.490816,St. John's (NY),USA,1999,1,16,57,20.5,5.8,3.5,1.2,0.055,0.11900000000000001,0.254,0.535,0.157,2007-08 5028,Marko Jaric,MIN,29.0,200.66,101.604608,None,Serbia,2000,2,30,75,8.3,3.0,4.1,-9.0,0.019,0.10099999999999999,0.15,0.518,0.213,2007-08 5029,Mikki Moore,SAC,32.0,213.36,102.0582,Nebraska,USA,Undrafted,Undrafted,Undrafted,82,8.5,6.0,1.0,-2.2,0.08199999999999999,0.16399999999999998,0.128,0.613,0.053,2007-08 5030,Monta Ellis,GSW,22.0,190.5,80.28578399999998,None,USA,2005,2,40,81,20.2,5.0,3.9,3.6,0.045,0.098,0.218,0.58,0.154,2007-08 5031,Chris Webber,GSW,35.0,208.28,111.13004,Michigan,USA,1993,1,1,9,3.9,3.6,2.0,-8.8,0.018000000000000002,0.24600000000000002,0.159,0.48200000000000004,0.188,2007-08 5032,Quentin Richardson,NYK,28.0,198.12,106.59411999999999,DePaul,USA,2000,1,18,65,8.1,4.8,1.8,-10.3,0.034,0.162,0.162,0.444,0.099,2007-08 5033,Primoz Brezec,TOR,28.0,215.9,115.66596000000001,None,Slovenia,2000,1,27,50,2.2,1.6,0.2,-5.8,0.073,0.133,0.13,0.502,0.036000000000000004,2007-08 5034,Peja Stojakovic,NOH,31.0,208.28,103.872568,None,Serbia and Montenegro,1996,1,14,77,16.4,4.3,1.2,8.7,0.027000000000000003,0.11800000000000001,0.195,0.581,0.053,2007-08 5035,Paul Pierce,BOS,30.0,200.66,106.59411999999999,Kansas,USA,1998,1,10,80,19.6,5.1,4.5,14.0,0.023,0.141,0.247,0.599,0.21,2007-08 5036,Paul Millsap,UTA,23.0,203.2,117.02673600000001,Louisiana Tech,USA,2006,2,47,82,8.1,5.6,1.0,5.6,0.11800000000000001,0.20600000000000002,0.18,0.5479999999999999,0.07400000000000001,2007-08 5037,Paul Davis,LAC,23.0,210.82,122.46983999999999,Michigan State,USA,2006,2,34,22,2.5,2.1,0.5,-18.1,0.128,0.138,0.18100000000000002,0.389,0.10300000000000001,2007-08 5038,Pau Gasol,LAL,27.0,213.36,113.398,None,Spain,2001,1,3,66,18.9,8.4,3.2,4.9,0.079,0.187,0.226,0.594,0.14800000000000002,2007-08 5039,Patrick O'Bryant,GSW,22.0,213.36,113.398,Bradley,USA,2006,1,9,24,1.5,1.2,0.2,-15.8,0.11599999999999999,0.20199999999999999,0.157,0.561,0.055999999999999994,2007-08 5040,Pat Garrity,ORL,31.0,205.74,107.95489599999999,Notre Dame,USA,1998,1,19,31,2.1,1.4,0.4,1.7,0.035,0.124,0.162,0.401,0.08,2007-08 5041,P.J. Brown,BOS,38.0,210.82,108.40848799999999,Louisiana Tech,USA,1992,2,29,18,2.2,3.8,0.6,-2.1,0.149,0.2,0.125,0.406,0.078,2007-08 5042,Mo Williams,MIL,25.0,185.42,83.91452,Alabama,USA,2003,2,47,66,17.2,3.5,6.3,-7.1,0.018000000000000002,0.09699999999999999,0.225,0.5660000000000001,0.299,2007-08 5043,Othella Harrington,CHA,34.0,205.74,106.59411999999999,Georgetown,USA,1996,2,30,22,2.1,1.9,0.2,6.0,0.08,0.21100000000000002,0.165,0.469,0.037000000000000005,2007-08 5044,Oleksiy Pecherov,WAS,22.0,213.36,106.140528,None,Ukraine,2006,1,18,35,3.6,1.9,0.2,-13.4,0.077,0.171,0.22699999999999998,0.451,0.038,2007-08 5045,Nick Young,WAS,23.0,198.12,90.7184,Southern California,USA,2007,1,16,75,7.5,1.5,0.8,-9.1,0.023,0.09300000000000001,0.248,0.527,0.10099999999999999,2007-08 5046,Nick Fazekas,LAC,23.0,210.82,106.59411999999999,Nevada,USA,2007,2,34,26,4.1,3.4,0.4,2.3,0.14,0.221,0.182,0.584,0.07400000000000001,2007-08 5047,Nick Collison,SEA,27.0,208.28,115.66596000000001,Kansas,USA,2003,1,12,78,9.8,9.4,1.4,-8.6,0.126,0.23600000000000002,0.161,0.537,0.077,2007-08 5048,Nene,DEN,25.0,210.82,113.398,None,Brazil,2002,1,7,16,5.3,5.4,0.9,0.5,0.11800000000000001,0.215,0.17800000000000002,0.45899999999999996,0.09300000000000001,2007-08 5049,Nenad Krstic,NJN,24.0,213.36,108.86208,None,Serbia and Montenegro,2002,1,24,45,6.6,4.4,0.6,-4.9,0.049,0.22399999999999998,0.214,0.451,0.055999999999999994,2007-08 5050,Nazr Mohammed,CHA,30.0,208.28,113.398,Kentucky,USA,1998,1,29,82,7.8,6.0,0.9,-6.5,0.13,0.205,0.19399999999999998,0.5329999999999999,0.07400000000000001,2007-08 5051,Nate Robinson,NYK,24.0,175.26,81.64656,Washington,USA,2005,1,21,72,12.7,3.1,2.9,-5.8,0.03,0.109,0.23,0.526,0.18899999999999997,2007-08 5052,Mouhamed Sene,SEA,22.0,210.82,104.32616,None,Senegal,2006,1,10,13,2.3,1.2,0.1,-10.7,0.115,0.161,0.218,0.47600000000000003,0.027999999999999997,2007-08 5053,Morris Peterson,NOH,30.0,200.66,99.79024,Michigan State,USA,2000,1,21,76,8.0,2.7,0.9,6.0,0.023,0.115,0.153,0.5489999999999999,0.052000000000000005,2007-08 5054,Morris Almond,UTA,23.0,198.12,102.0582,Rice,USA,2007,1,25,9,1.4,0.2,0.3,-18.3,0.0,0.069,0.22,0.368,0.13,2007-08 5055,Orien Greene,SAC,26.0,193.04,94.34713599999999,Louisiana-Lafayette,USA,2005,2,53,7,0.9,0.9,0.4,-15.9,0.0,0.115,0.138,0.273,0.083,2007-08 5056,Mark Madsen,MIN,32.0,205.74,113.398,Stanford,USA,2000,1,29,20,0.5,1.9,0.2,-1.7,0.126,0.14800000000000002,0.096,0.185,0.040999999999999995,2007-08 5057,Mark Blount,MIA,32.0,213.36,113.398,Pittsburgh,USA,1997,2,54,69,8.4,3.8,0.6,-11.5,0.052000000000000005,0.149,0.201,0.505,0.048,2007-08 5058,Mario West,ATL,24.0,195.58,95.25432,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,64,0.9,0.8,0.2,2.1,0.12,0.098,0.115,0.488,0.07200000000000001,2007-08 5059,Lance Allred,CLE,27.0,210.82,113.398,Weber State,USA,Undrafted,Undrafted,Undrafted,3,1.0,0.3,0.0,-81.0,0.0,0.2,0.23600000000000002,0.307,0.0,2007-08 5060,Lamar Odom,LAL,28.0,208.28,104.32616,Rhode Island,USA,1999,1,4,77,14.2,10.6,3.5,8.1,0.077,0.225,0.165,0.5820000000000001,0.138,2007-08 5061,LaMarcus Aldridge,POR,22.0,210.82,111.13004,Texas,USA,2006,1,2,76,17.8,7.6,1.6,-0.1,0.098,0.161,0.254,0.523,0.086,2007-08 5062,Kyrylo Fesenko,UTA,21.0,215.9,130.63449599999998,None,Ukraine,2007,2,38,9,1.6,2.8,0.2,-2.9,0.212,0.18600000000000003,0.15,0.39399999999999996,0.048,2007-08 5063,Kyle Lowry,MEM,22.0,182.88,79.3786,Villanova,USA,2006,1,24,82,9.6,3.0,3.6,-5.2,0.022000000000000002,0.113,0.184,0.531,0.22399999999999998,2007-08 5064,Kyle Korver,UTA,27.0,198.12,95.707912,Creighton,USA,2003,2,51,75,9.9,2.3,1.3,6.6,0.015,0.10300000000000001,0.18600000000000003,0.585,0.095,2007-08 5065,Kwame Brown,MEM,26.0,210.82,122.46983999999999,None,USA,2001,1,1,38,4.8,4.9,1.2,-4.9,0.081,0.203,0.14800000000000002,0.49700000000000005,0.099,2007-08 5066,Kurt Thomas,SAS,35.0,205.74,106.59411999999999,Texas Christian,USA,1995,1,10,70,6.3,7.2,1.0,-1.9,0.09300000000000001,0.261,0.138,0.514,0.065,2007-08 5067,Kris Humphries,TOR,23.0,205.74,106.59411999999999,Minnesota,USA,2004,1,14,70,5.7,3.7,0.4,-1.6,0.10800000000000001,0.217,0.21899999999999997,0.512,0.053,2007-08 5068,Kosta Perovic,GSW,23.0,218.44,108.86208,None,USA,2006,2,38,7,1.4,1.9,0.1,2.7,0.15,0.18899999999999997,0.14800000000000002,0.396,0.045,2007-08 5069,Kobe Bryant,LAL,29.0,198.12,92.98635999999999,None,USA,1996,1,13,82,28.3,6.3,5.4,8.5,0.034,0.141,0.312,0.5760000000000001,0.23600000000000002,2007-08 5070,Larry Hughes,CHI,29.0,195.58,83.91452,Saint Louis,USA,1998,1,8,68,12.2,3.4,2.7,-3.8,0.021,0.11199999999999999,0.22,0.46799999999999997,0.146,2007-08 5071,Kirk Snyder,MIN,25.0,198.12,102.0582,Nevada,USA,2004,1,16,36,7.3,3.5,1.8,-2.4,0.046,0.149,0.168,0.573,0.122,2007-08 5072,Keyon Dooling,ORL,28.0,190.5,88.45044,Missouri,USA,2000,1,10,72,8.1,1.4,1.8,6.4,0.006,0.079,0.201,0.5720000000000001,0.177,2007-08 5073,Kevin Ollie,PHI,35.0,187.96,88.45044,Connecticut,USA,Undrafted,Undrafted,Undrafted,40,1.8,0.5,1.0,8.5,0.015,0.062,0.11800000000000001,0.46299999999999997,0.177,2007-08 5074,Kevin Martin,SAC,25.0,200.66,83.91452,Western Carolina,USA,2004,1,26,61,23.7,4.5,2.1,-1.4,0.026000000000000002,0.11699999999999999,0.259,0.618,0.09699999999999999,2007-08 5075,Kevin Garnett,BOS,32.0,210.82,99.79024,None,USA,1995,1,5,71,18.8,9.2,3.4,17.0,0.075,0.24600000000000002,0.257,0.588,0.18600000000000003,2007-08 5076,Kevin Durant,SEA,19.0,205.74,97.52228000000001,Texas,USA,2007,1,2,80,20.3,4.4,2.4,-11.7,0.027000000000000003,0.111,0.278,0.519,0.12,2007-08 5077,Kenyon Martin,DEN,30.0,205.74,108.86208,Cincinnati,USA,2000,1,1,71,12.4,6.5,1.3,3.1,0.055,0.175,0.17600000000000002,0.5529999999999999,0.062,2007-08 5078,Kenny Thomas,SAC,30.0,200.66,111.13004,New Mexico,USA,1999,1,22,23,1.4,2.7,0.6,-17.8,0.075,0.195,0.09699999999999999,0.39799999999999996,0.07400000000000001,2007-08 5079,Kendrick Perkins,BOS,23.0,208.28,119.74828799999999,None,USA,2003,1,27,78,6.9,6.1,1.1,14.6,0.098,0.19,0.136,0.632,0.063,2007-08 5080,Kelenna Azubuike,GSW,24.0,195.58,99.79024,Kentucky,England,Undrafted,Undrafted,Undrafted,81,8.5,4.0,0.9,0.7,0.063,0.138,0.172,0.534,0.063,2007-08 5081,Keith Langford,SAS,24.0,193.04,97.52228000000001,Kansas,USA,Undrafted,Undrafted,Undrafted,2,1.0,1.0,0.0,35.9,0.0,0.154,0.18,0.25,0.0,2007-08 5082,Keith Bogans,ORL,28.0,195.58,97.52228000000001,Kentucky,USA,2003,2,43,82,8.7,3.2,1.3,7.4,0.023,0.111,0.14400000000000002,0.5589999999999999,0.071,2007-08 5083,Kirk Hinrich,CHI,27.0,190.5,86.18248,Kansas,USA,2003,1,7,75,11.5,3.3,6.0,-2.6,0.013000000000000001,0.107,0.18899999999999997,0.501,0.303,2007-08 5084,LeBron James,CLE,23.0,203.2,113.398,None,USA,2003,1,1,75,30.0,7.9,7.2,2.4,0.049,0.17800000000000002,0.33299999999999996,0.568,0.35200000000000004,2007-08 5085,Leandro Barbosa,PHX,25.0,190.5,91.625584,None,Brazil,2003,1,28,82,15.6,2.8,2.6,3.7,0.02,0.083,0.228,0.575,0.13699999999999998,2007-08 5086,Leon Powe,BOS,24.0,203.2,108.86208,California,USA,2006,2,49,56,7.9,4.1,0.3,7.6,0.14400000000000002,0.19,0.22399999999999998,0.629,0.036000000000000004,2007-08 5087,Mardy Collins,NYK,23.0,198.12,99.79024,Temple,USA,2006,1,29,46,3.2,1.6,1.9,-11.5,0.032,0.099,0.174,0.37799999999999995,0.221,2007-08 5088,Marcus Williams,LAC,21.0,200.66,93.89354399999999,Arizona,USA,2007,2,33,11,0.9,1.1,0.3,-1.1,0.08,0.242,0.23199999999999998,0.25,0.14300000000000002,2007-08 5089,Marcus Williams,NJN,22.0,190.5,92.98635999999999,Connecticut,USA,2006,1,22,53,5.9,1.9,2.6,-11.2,0.019,0.124,0.212,0.499,0.285,2007-08 5090,Marcus Vinicius,NOH,24.0,203.2,102.0582,None,USA,2006,2,43,13,2.2,0.6,0.2,0.4,0.019,0.10400000000000001,0.17800000000000002,0.564,0.047,2007-08 5091,Marcus Camby,DEN,34.0,210.82,106.59411999999999,Massachusetts,USA,1996,1,2,79,9.1,13.1,3.3,4.9,0.09300000000000001,0.308,0.129,0.498,0.126,2007-08 5092,Marcus Banks,MIA,26.0,187.96,96.16150400000001,Nevada-Las Vegas,USA,2003,1,13,36,6.6,1.3,1.7,-6.4,0.008,0.078,0.201,0.579,0.179,2007-08 5093,Marco Belinelli,GSW,22.0,195.58,87.089664,None,Italy,2007,1,18,33,2.9,0.4,0.5,-10.1,0.011000000000000001,0.05,0.184,0.49,0.099,2007-08 5094,Marcin Gortat,ORL,24.0,213.36,108.86208,None,Poland,2005,2,57,6,3.0,2.7,0.3,-0.3,0.2,0.25,0.223,0.491,0.08,2007-08 5095,Manu Ginobili,SAS,30.0,198.12,92.98635999999999,None,Argentina,1999,2,57,74,19.5,4.8,4.5,8.7,0.033,0.145,0.281,0.612,0.257,2007-08 5096,Malik Rose,NYK,33.0,200.66,115.66596000000001,Drexel,USA,1996,2,44,49,3.5,2.1,0.6,-5.5,0.071,0.179,0.226,0.42200000000000004,0.09300000000000001,2007-08 5097,Malik Allen,DAL,30.0,208.28,115.66596000000001,Villanova,USA,Undrafted,Undrafted,Undrafted,73,4.6,2.7,0.6,-1.4,0.073,0.141,0.166,0.5,0.069,2007-08 5098,Maceo Baston,TOR,32.0,208.28,104.32616,Michigan,USA,1998,2,58,15,2.7,1.7,0.2,-4.0,0.102,0.20199999999999999,0.147,0.6970000000000001,0.048,2007-08 5099,Luther Head,HOU,25.0,190.5,83.91452,Illinois,USA,2005,1,24,73,7.6,1.8,1.9,4.6,0.016,0.095,0.195,0.5429999999999999,0.163,2007-08 5100,Luol Deng,CHI,23.0,205.74,99.79024,Duke,United Kingdom,2004,1,7,63,17.0,6.3,2.5,-4.3,0.07,0.141,0.23399999999999999,0.528,0.127,2007-08 5101,Luke Walton,LAL,28.0,203.2,106.59411999999999,Arizona,USA,2003,2,32,74,7.2,3.9,2.9,6.2,0.055999999999999994,0.127,0.159,0.509,0.182,2007-08 5102,Luke Ridnour,SEA,27.0,187.96,79.3786,Oregon,USA,2003,1,14,61,6.4,1.5,4.0,-6.3,0.012,0.07200000000000001,0.174,0.48200000000000004,0.29600000000000004,2007-08 5103,Luke Jackson,MIA,26.0,200.66,97.52228000000001,Oregon,USA,2004,1,10,14,5.6,2.4,1.2,-2.5,0.036000000000000004,0.146,0.213,0.43799999999999994,0.134,2007-08 5104,Luis Scola,HOU,28.0,205.74,111.13004,None,Argentina,2002,2,55,82,10.3,6.4,1.3,4.1,0.09699999999999999,0.195,0.19699999999999998,0.5479999999999999,0.08800000000000001,2007-08 5105,Lou Williams,PHI,21.0,187.96,79.3786,None,USA,2005,2,45,80,11.5,2.1,3.2,-1.1,0.025,0.081,0.242,0.523,0.23600000000000002,2007-08 5106,Lou Amundson,PHI,25.0,205.74,102.0582,Nevada-Las Vegas,USA,Undrafted,Undrafted,Undrafted,16,1.1,0.8,0.0,-5.0,0.12300000000000001,0.081,0.14300000000000002,0.47200000000000003,0.0,2007-08 5107,Lorenzen Wright,SAC,32.0,210.82,115.66596000000001,Memphis,USA,1996,1,7,18,0.8,2.1,0.2,-3.1,0.057999999999999996,0.18899999999999997,0.083,0.317,0.044000000000000004,2007-08 5108,Loren Woods,HOU,30.0,218.44,117.93392,Arizona,USA,2001,2,45,7,0.9,0.1,0.3,31.3,0.0,0.063,0.153,0.6,0.16699999999999998,2007-08 5109,Linton Johnson,TOR,28.0,203.2,92.98635999999999,Tulane,USA,Undrafted,Undrafted,Undrafted,8,2.6,1.8,0.5,-12.2,0.091,0.187,0.183,0.528,0.111,2007-08 5110,Lindsey Hunter,DET,37.0,187.96,88.45044,Jackson State,USA,1993,1,10,24,2.4,0.5,1.4,4.0,0.023,0.05,0.182,0.42700000000000005,0.237,2007-08 5111,Linas Kleiza,DEN,23.0,203.2,111.13004,Missouri,Lithuania,2005,1,27,79,11.1,4.2,1.2,6.0,0.053,0.138,0.188,0.585,0.076,2007-08 5112,Tim Duncan,SAS,32.0,210.82,117.93392,Wake Forest,US Virgin Islands,1997,1,1,78,19.3,11.3,2.8,7.8,0.10800000000000001,0.281,0.28300000000000003,0.546,0.152,2007-08 5113,Tim Thomas,LAC,31.0,208.28,108.86208,Villanova,USA,1997,1,7,63,12.4,5.1,2.7,-6.5,0.037000000000000005,0.156,0.207,0.505,0.154,2007-08 5114,Julian Wright,NOH,21.0,203.2,102.0582,Kansas,USA,2007,1,13,57,3.9,2.1,0.7,3.6,0.061,0.156,0.166,0.581,0.1,2007-08 5115,Tony Parker,SAS,26.0,187.96,81.64656,None,France,2001,1,28,69,18.8,3.2,6.0,7.6,0.016,0.095,0.28300000000000003,0.542,0.327,2007-08 5116,Al Thornton,LAC,24.0,203.2,99.79024,Florida State,USA,2007,1,14,79,12.7,4.5,1.2,-9.2,0.052000000000000005,0.141,0.242,0.504,0.084,2007-08 5117,Alando Tucker,PHX,24.0,198.12,92.98635999999999,Wisconsin,USA,2007,1,29,6,3.7,1.3,0.0,-0.2,0.08900000000000001,0.068,0.25,0.446,0.0,2007-08 5118,Alexander Johnson,MIA,25.0,205.74,104.32616,Florida State,USA,2006,2,45,43,4.2,2.2,0.3,-12.3,0.075,0.152,0.18100000000000002,0.5539999999999999,0.045,2007-08 5119,Allen Iverson,DEN,33.0,182.88,81.64656,Georgetown,USA,1996,1,1,82,26.4,3.0,7.1,5.8,0.015,0.061,0.266,0.5670000000000001,0.271,2007-08 5120,Alonzo Mourning,MIA,38.0,208.28,118.38751200000002,Georgetown,USA,1992,1,2,25,6.0,3.7,0.3,-0.4,0.10300000000000001,0.16399999999999998,0.182,0.58,0.032,2007-08 5121,Amar'e Stoudemire,PHX,25.0,208.28,112.94440800000001,None,USA,2002,1,9,79,25.2,9.1,1.5,8.3,0.085,0.214,0.282,0.6559999999999999,0.07200000000000001,2007-08 5122,Amir Johnson,DET,21.0,205.74,95.25432,None,USA,2005,2,56,62,3.6,3.8,0.5,14.1,0.136,0.21100000000000002,0.136,0.584,0.057999999999999996,2007-08 5123,Anderson Varejao,CLE,25.0,208.28,108.86208,None,Brazil,2004,2,30,48,6.7,8.3,1.1,2.8,0.11199999999999999,0.239,0.136,0.485,0.065,2007-08 5124,Andray Blatche,WAS,21.0,210.82,112.490816,None,USA,2005,2,49,82,7.5,5.2,1.1,-5.8,0.114,0.193,0.19899999999999998,0.512,0.096,2007-08 5125,Andre Barrett,LAC,26.0,177.8,78.471416,Seton Hall,USA,Undrafted,Undrafted,Undrafted,4,1.5,0.3,1.8,-32.1,0.0,0.048,0.122,0.51,0.583,2007-08 5126,Andre Brown,MEM,27.0,205.74,111.13004,DePaul,USA,Undrafted,Undrafted,Undrafted,33,3.0,2.8,0.2,-12.2,0.128,0.218,0.172,0.502,0.045,2007-08 5127,Al Jefferson,MIN,23.0,208.28,120.20188,None,USA,2004,1,15,82,21.0,11.1,1.4,-11.2,0.11800000000000001,0.251,0.276,0.535,0.075,2007-08 5128,Andre Iguodala,PHI,24.0,198.12,93.89354399999999,Arizona,USA,2004,1,9,82,19.9,5.4,4.8,-0.5,0.031,0.134,0.24,0.5429999999999999,0.207,2007-08 5129,Andre Owens,IND,27.0,193.04,90.7184,Houston,USA,Undrafted,Undrafted,Undrafted,31,4.0,1.5,1.5,-0.4,0.038,0.09300000000000001,0.163,0.504,0.18,2007-08 5130,Andrea Bargnani,TOR,22.0,213.36,113.398,None,Italy,2006,1,1,78,10.2,3.7,1.1,3.7,0.031,0.152,0.226,0.495,0.073,2007-08 5131,Andrei Kirilenko,UTA,27.0,205.74,101.151016,None,Russia,1999,1,24,72,11.0,4.7,4.0,8.8,0.068,0.11800000000000001,0.161,0.603,0.17600000000000002,2007-08 5132,Andres Nocioni,CHI,28.0,200.66,102.0582,None,Argentina,Undrafted,Undrafted,Undrafted,82,13.2,4.2,1.2,-2.2,0.026000000000000002,0.16899999999999998,0.24600000000000002,0.5489999999999999,0.083,2007-08 5133,Andrew Bogut,MIL,23.0,213.36,117.93392,Utah,Australia,2005,1,1,78,14.3,9.8,2.6,-6.6,0.106,0.23199999999999998,0.205,0.532,0.121,2007-08 5134,Andrew Bynum,LAL,20.0,213.36,129.27372,None,USA,2005,1,10,35,13.1,10.2,1.7,10.8,0.121,0.256,0.171,0.659,0.091,2007-08 5135,Andris Biedrins,GSW,22.0,210.82,104.32616,None,Latvia,2004,1,11,76,10.5,9.8,1.0,5.3,0.128,0.257,0.14400000000000002,0.637,0.051,2007-08 5136,Anfernee Hardaway,MIA,36.0,200.66,97.52228000000001,Memphis,USA,1993,1,3,16,3.8,2.2,2.2,-4.8,0.011000000000000001,0.11199999999999999,0.11199999999999999,0.469,0.17300000000000001,2007-08 5137,Antawn Jamison,WAS,32.0,205.74,106.59411999999999,North Carolina,USA,1998,1,4,79,21.4,10.2,1.5,2.1,0.078,0.23399999999999999,0.256,0.525,0.07,2007-08 5138,Anthony Carter,DEN,33.0,187.96,88.45044,Hawaii,USA,Undrafted,Undrafted,Undrafted,70,7.8,2.9,5.5,1.6,0.015,0.09300000000000001,0.139,0.531,0.266,2007-08 5139,Anthony Johnson,SAC,33.0,190.5,88.45044,College of Charleston,USA,1997,2,39,69,5.6,2.0,3.8,-3.4,0.017,0.086,0.136,0.517,0.268,2007-08 5140,Andre Miller,PHI,32.0,187.96,90.7184,Utah,USA,1999,1,8,82,17.0,4.0,6.9,-1.8,0.037000000000000005,0.091,0.22699999999999998,0.537,0.318,2007-08 5141,Al Horford,ATL,22.0,208.28,111.13004,Florida,Dominican Republic,2007,1,3,81,10.1,9.7,1.5,-2.4,0.113,0.247,0.162,0.539,0.078,2007-08 5142,Al Harrington,GSW,28.0,205.74,113.398,None,USA,1998,1,25,81,13.6,5.4,1.6,3.0,0.05,0.175,0.21100000000000002,0.547,0.08900000000000001,2007-08 5143,Adrian Griffin,SEA,33.0,195.58,104.32616,Seton Hall,USA,Undrafted,Undrafted,Undrafted,35,1.9,1.7,0.8,0.4,0.099,0.12,0.146,0.406,0.134,2007-08 5144,Darius Songaila,WAS,30.0,205.74,112.490816,Wake Forest,Lithuania,2002,2,49,80,6.2,3.4,1.7,0.8,0.061,0.146,0.174,0.496,0.142,2007-08 5145,Danny Granger,IND,25.0,203.2,103.418976,New Mexico,USA,2005,1,17,80,19.6,6.1,2.1,-2.1,0.035,0.15,0.233,0.5710000000000001,0.09699999999999999,2007-08 5146,Daniel Gibson,CLE,22.0,187.96,87.996848,Texas,USA,2006,2,42,58,10.4,2.3,2.5,2.3,0.019,0.071,0.153,0.5920000000000001,0.13,2007-08 5147,Dan Gadzuric,MIL,30.0,210.82,111.13004,UCLA,Netherlands,2002,2,33,51,3.2,2.8,0.2,-7.7,0.122,0.18,0.174,0.44299999999999995,0.034,2007-08 5148,Dan Dickau,LAC,29.0,182.88,81.64656,Gonzaga,USA,2002,1,28,67,5.3,1.4,2.6,-4.1,0.013999999999999999,0.099,0.172,0.53,0.273,2007-08 5149,Damon Stoudamire,SAS,34.0,177.8,77.56423199999999,Arizona,USA,1995,1,7,60,5.3,2.0,2.8,-4.6,0.022000000000000002,0.10800000000000001,0.193,0.45,0.244,2007-08 5150,Damon Jones,CLE,31.0,190.5,88.45044,Houston,USA,Undrafted,Undrafted,Undrafted,67,6.5,1.1,1.9,0.2,0.004,0.06,0.141,0.5820000000000001,0.154,2007-08 5151,Damien Wilkins,SEA,28.0,198.12,102.0582,Georgia,USA,Undrafted,Undrafted,Undrafted,76,9.2,3.2,2.0,-12.1,0.043,0.106,0.19399999999999998,0.474,0.129,2007-08 5152,Dahntay Jones,SAC,27.0,198.12,95.25432,Duke,USA,2003,1,20,25,3.2,1.4,0.5,0.2,0.04,0.149,0.19,0.537,0.10300000000000001,2007-08 5153,Daequan Cook,MIA,21.0,195.58,92.98635999999999,Ohio State,USA,2007,1,21,59,8.8,3.0,1.3,-11.7,0.016,0.134,0.19699999999999998,0.48,0.095,2007-08 5154,DJ Strawberry,PHX,23.0,195.58,91.171992,Maryland,USA,2007,2,59,33,2.2,0.8,0.9,-3.2,0.034,0.073,0.18899999999999997,0.364,0.165,2007-08 5155,DJ Mbenga,LAL,27.0,213.36,115.66596000000001,None,Democratic Republic of the Congo,Undrafted,Undrafted,Undrafted,42,2.0,1.7,0.2,1.8,0.086,0.151,0.136,0.465,0.044000000000000004,2007-08 5156,Cuttino Mobley,LAC,32.0,193.04,97.52228000000001,Rhode Island,USA,1998,2,41,77,12.8,3.6,2.6,-7.8,0.022000000000000002,0.099,0.185,0.514,0.131,2007-08 5157,Craig Smith,MIN,24.0,203.2,113.398,Boston College,USA,2006,2,36,77,9.4,4.6,0.8,-8.7,0.095,0.18,0.20600000000000002,0.59,0.066,2007-08 5158,Courtney Sims,IND,24.0,210.82,111.13004,Michigan,USA,Undrafted,Undrafted,Undrafted,3,0.0,0.7,0.3,-6.2,0.083,0.091,0.034,0.0,0.14300000000000002,2007-08 5159,Corey Maggette,LAC,28.0,198.12,102.0582,Duke,USA,1999,1,13,70,22.1,5.6,2.7,-5.0,0.036000000000000004,0.145,0.273,0.595,0.14300000000000002,2007-08 5160,Corey Brewer,MIN,22.0,205.74,83.91452,Florida,USA,2007,1,7,79,5.8,3.7,1.4,-9.3,0.049,0.138,0.156,0.429,0.092,2007-08 5161,Coby Karl,LAL,25.0,195.58,97.52228000000001,Boise State,USA,Undrafted,Undrafted,Undrafted,17,1.8,0.8,0.5,16.1,0.045,0.14300000000000002,0.218,0.493,0.184,2007-08 5162,Chucky Atkins,DEN,33.0,180.34,83.91452,South Florida,USA,Undrafted,Undrafted,Undrafted,24,4.7,1.3,2.0,-1.6,0.009000000000000001,0.085,0.165,0.449,0.212,2007-08 5163,Chuck Hayes,HOU,25.0,198.12,107.95489599999999,Kentucky,USA,Undrafted,Undrafted,Undrafted,79,3.0,5.4,1.2,8.6,0.098,0.20800000000000002,0.086,0.512,0.083,2007-08 5164,Aaron Brooks,HOU,23.0,182.88,73.028312,Oregon,USA,2007,1,26,51,5.2,1.1,1.7,-0.5,0.026000000000000002,0.085,0.22399999999999998,0.535,0.249,2007-08 5165,Aaron Gray,CHI,23.0,213.36,122.46983999999999,Pittsburgh,USA,2007,2,49,61,4.3,2.8,0.7,-1.0,0.127,0.188,0.221,0.529,0.113,2007-08 5166,Aaron Williams,LAC,36.0,205.74,106.59411999999999,Xavier,USA,Undrafted,Undrafted,Undrafted,30,2.3,2.0,0.3,-15.9,0.06,0.18600000000000003,0.11800000000000001,0.54,0.052000000000000005,2007-08 5167,Acie Law,ATL,23.0,190.5,88.45044,Texas A&M,USA,2007,1,11,56,4.2,1.0,2.0,-7.2,0.016,0.062,0.16399999999999998,0.455,0.218,2007-08 5168,Adonal Foyle,ORL,33.0,208.28,122.46983999999999,Colgate,St. Vincent & Grenadines,1997,1,8,82,1.9,2.5,0.2,0.4,0.107,0.195,0.12300000000000001,0.46399999999999997,0.038,2007-08 5169,Anthony Parker,TOR,33.0,198.12,97.52228000000001,Bradley,USA,1997,1,21,82,12.5,4.1,2.2,4.0,0.023,0.127,0.175,0.58,0.107,2007-08 5170,Darius Washington,SAS,22.0,187.96,88.45044,Memphis,USA,Undrafted,Undrafted,Undrafted,18,2.9,1.1,0.8,1.3,0.035,0.129,0.214,0.493,0.161,2007-08 5171,Antoine Walker,MIN,31.0,205.74,111.13004,Kentucky,USA,1996,1,6,46,8.0,3.7,1.0,-5.1,0.068,0.146,0.22399999999999998,0.455,0.085,2007-08 5172,Antonio Daniels,WAS,33.0,193.04,92.98635999999999,Bowling Green,USA,1997,1,4,71,8.4,2.9,4.8,0.2,0.012,0.10300000000000001,0.135,0.5489999999999999,0.239,2007-08 5173,C.J. Watson,GSW,24.0,187.96,81.64656,Tennessee,USA,Undrafted,Undrafted,Undrafted,32,3.7,1.0,1.1,1.9,0.036000000000000004,0.055,0.153,0.519,0.139,2007-08 5174,CJ Miles,UTA,21.0,198.12,99.79024,None,USA,2005,2,34,60,5.0,1.3,0.9,7.1,0.027000000000000003,0.111,0.18100000000000002,0.574,0.113,2007-08 5175,Calvin Booth,PHI,32.0,210.82,113.398,Penn State,USA,1999,2,35,31,0.8,1.2,0.3,-3.0,0.034,0.18,0.077,0.382,0.06,2007-08 5176,Carl Landry,HOU,24.0,205.74,112.490816,Purdue,USA,2007,2,31,42,8.1,4.9,0.5,6.5,0.157,0.184,0.187,0.6409999999999999,0.05,2007-08 5177,Carlos Arroyo,ORL,28.0,187.96,91.625584,Florida International,Puerto Rico,Undrafted,Undrafted,Undrafted,62,6.9,1.8,3.5,5.1,0.009000000000000001,0.09,0.171,0.547,0.272,2007-08 5178,Carlos Boozer,UTA,26.0,205.74,120.655472,Duke,USA,2002,2,34,81,21.1,10.4,2.9,7.2,0.08800000000000001,0.27899999999999997,0.266,0.581,0.135,2007-08 5179,Carlos Delfino,TOR,25.0,198.12,104.32616,None,Argentina,2003,1,25,82,9.0,4.4,1.8,0.8,0.039,0.184,0.188,0.527,0.11699999999999999,2007-08 5180,Carmelo Anthony,DEN,24.0,203.2,104.32616,Syracuse,USA,2003,1,3,77,25.7,7.4,3.4,3.5,0.071,0.151,0.301,0.568,0.156,2007-08 5181,Caron Butler,WAS,28.0,200.66,103.418976,Connecticut,USA,2002,1,10,58,20.3,6.7,4.9,3.0,0.047,0.156,0.239,0.5579999999999999,0.21,2007-08 5182,Casey Jacobsen,MEM,27.0,198.12,97.52228000000001,Stanford,USA,2002,1,22,53,2.0,1.2,0.4,0.4,0.023,0.10800000000000001,0.111,0.43700000000000006,0.052000000000000005,2007-08 5183,Cedric Simmons,CHI,22.0,205.74,106.59411999999999,North Carolina State,USA,2006,1,15,14,0.6,1.3,0.0,-20.2,0.07,0.141,0.121,0.217,0.0,2007-08 5184,Bruce Bowen,SAS,37.0,200.66,90.7184,Cal State-Fullerton,USA,Undrafted,Undrafted,Undrafted,81,6.0,2.9,1.1,4.9,0.016,0.095,0.1,0.527,0.055,2007-08 5185,Channing Frye,POR,25.0,210.82,112.490816,Arizona,USA,2005,1,8,78,6.8,4.5,0.7,0.5,0.094,0.221,0.196,0.529,0.073,2007-08 5186,Charlie Villanueva,MIL,23.0,210.82,105.23334399999999,Connecticut,USA,2005,1,7,76,11.7,6.1,1.0,-10.0,0.087,0.212,0.23800000000000002,0.502,0.07200000000000001,2007-08 5187,Chauncey Billups,DET,31.0,190.5,91.625584,Colorado,USA,1997,1,3,78,17.0,2.7,6.8,10.3,0.02,0.083,0.231,0.619,0.341,2007-08 5188,Cheikh Samb,DET,23.0,215.9,111.13004,None,USA,2006,2,51,4,1.8,1.8,0.0,9.2,0.15,0.138,0.08900000000000001,0.7170000000000001,0.0,2007-08 5189,Chris Andersen,NOH,29.0,208.28,103.418976,Blinn,USA,Undrafted,Undrafted,Undrafted,5,1.2,1.8,0.0,3.8,0.059000000000000004,0.259,0.125,0.342,0.0,2007-08 5190,Chris Bosh,TOR,24.0,208.28,104.32616,Georgia Tech,USA,2003,1,4,67,22.3,8.7,2.6,7.8,0.08900000000000001,0.2,0.282,0.588,0.12300000000000001,2007-08 5191,Chris Duhon,CHI,25.0,185.42,83.91452,Duke,USA,2004,2,38,66,5.8,1.8,4.0,-2.7,0.013999999999999999,0.076,0.134,0.508,0.273,2007-08 5192,Chris Kaman,LAC,26.0,213.36,120.20188,Central Michigan,USA,2003,1,6,56,15.7,12.7,1.9,-5.1,0.095,0.293,0.218,0.5379999999999999,0.094,2007-08 5193,Chris Mihm,LAL,28.0,213.36,120.20188,Texas,USA,2000,1,7,23,3.6,3.3,0.6,-1.2,0.111,0.18,0.195,0.384,0.071,2007-08 5194,Tony Allen,BOS,26.0,193.04,96.615096,Oklahoma State,USA,2004,1,25,75,6.6,2.2,1.5,9.4,0.032,0.10800000000000001,0.196,0.527,0.14300000000000002,2007-08 5195,Chris Quinn,MIA,24.0,187.96,79.3786,Notre Dame,USA,Undrafted,Undrafted,Undrafted,60,7.8,2.0,3.0,-7.1,0.01,0.098,0.172,0.5589999999999999,0.23399999999999999,2007-08 5196,Chris Richard,MIN,23.0,205.74,122.46983999999999,Florida,USA,2007,2,41,52,1.9,2.6,0.3,-3.1,0.10400000000000001,0.172,0.098,0.496,0.046,2007-08 5197,Charlie Bell,MIL,29.0,190.5,90.7184,Michigan State,USA,Undrafted,Undrafted,Undrafted,68,7.6,2.5,3.1,-8.0,0.021,0.102,0.16699999999999998,0.49,0.20800000000000002,2007-08 5198,Brian Skinner,PHX,32.0,205.74,115.66596000000001,Baylor,USA,1998,1,22,66,3.3,3.6,0.2,-1.0,0.085,0.214,0.14,0.485,0.025,2007-08 5199,Brian Scalabrine,BOS,30.0,205.74,106.59411999999999,Southern California,USA,2001,2,34,48,1.8,1.6,0.8,6.4,0.053,0.11900000000000001,0.11699999999999999,0.428,0.11900000000000001,2007-08 5200,Brian Cook,ORL,27.0,205.74,113.398,Illinois,USA,2003,1,24,51,4.7,2.1,0.5,0.6,0.053,0.153,0.207,0.489,0.073,2007-08 5201,Antonio McDyess,DET,33.0,205.74,111.13004,Alabama,USA,1995,1,2,78,8.8,8.5,1.1,6.8,0.105,0.256,0.155,0.511,0.061,2007-08 5202,Arron Afflalo,DET,22.0,195.58,97.52228000000001,UCLA,USA,2007,1,27,75,3.7,1.8,0.7,7.7,0.044000000000000004,0.121,0.149,0.494,0.086,2007-08 5203,Austin Croshere,GSW,33.0,208.28,106.59411999999999,Providence,USA,1997,1,12,44,3.9,2.4,0.7,2.1,0.07200000000000001,0.174,0.163,0.573,0.1,2007-08 5204,Awvee Storey,MIL,31.0,198.12,102.0582,Arizona State,USA,Undrafted,Undrafted,Undrafted,26,3.5,2.1,0.6,-11.0,0.121,0.105,0.183,0.452,0.102,2007-08 5205,Baron Davis,GSW,29.0,190.5,97.52228000000001,UCLA,USA,1999,1,3,82,21.8,4.7,7.6,3.9,0.031,0.10099999999999999,0.255,0.523,0.29100000000000004,2007-08 5206,Ben Gordon,CHI,25.0,190.5,90.7184,Connecticut,USA,2004,1,3,72,18.6,3.1,3.0,-6.5,0.018000000000000002,0.092,0.256,0.5579999999999999,0.168,2007-08 5207,Ben Wallace,CLE,33.0,205.74,108.86208,Virginia Union,USA,Undrafted,Undrafted,Undrafted,72,4.8,8.4,1.5,-3.6,0.113,0.19699999999999998,0.1,0.408,0.07,2007-08 5208,Beno Udrih,SAC,25.0,190.5,92.98635999999999,None,Slovenia,2004,1,28,65,12.8,3.3,4.3,-1.7,0.02,0.1,0.198,0.54,0.222,2007-08 5209,Billy Thomas,CLE,32.0,195.58,99.79024,Kansas,USA,Undrafted,Undrafted,Undrafted,11,1.3,0.2,0.0,-5.3,0.0,0.067,0.23399999999999999,0.391,0.0,2007-08 5210,Blake Ahearn,MIA,24.0,187.96,86.18248,Missouri State,USA,Undrafted,Undrafted,Undrafted,12,5.8,1.6,1.6,-23.6,0.006999999999999999,0.113,0.254,0.495,0.28800000000000003,2007-08 5211,Bo Outlaw,ORL,37.0,203.2,99.79024,Houston,USA,Undrafted,Undrafted,Undrafted,2,2.0,0.0,0.0,-36.8,0.0,0.0,0.27699999999999997,0.667,0.0,2007-08 5212,Bobby Jackson,HOU,35.0,185.42,83.91452,Minnesota,USA,1997,1,23,72,7.7,2.5,1.9,7.0,0.027000000000000003,0.12300000000000001,0.205,0.51,0.17,2007-08 5213,Bobby Jones,DEN,24.0,200.66,97.52228000000001,Washington,USA,2006,2,37,46,3.9,2.0,0.6,-7.2,0.064,0.139,0.16399999999999998,0.5479999999999999,0.092,2007-08 5214,Bobby Simmons,MIL,28.0,198.12,104.32616,DePaul,USA,2001,2,41,70,7.6,3.2,1.1,-8.0,0.048,0.133,0.179,0.504,0.087,2007-08 5215,Bonzi Wells,NOH,31.0,195.58,95.25432,Ball State,USA,1998,1,11,73,9.1,4.5,1.3,1.6,0.062,0.187,0.228,0.495,0.11,2007-08 5216,Boris Diaw,PHX,26.0,203.2,106.59411999999999,None,France,2003,1,21,82,8.8,4.6,3.9,4.3,0.051,0.128,0.16699999999999998,0.516,0.196,2007-08 5217,Bostjan Nachbar,NJN,27.0,205.74,100.243832,None,Slovenia,2002,1,15,75,9.8,3.5,1.2,-8.5,0.038,0.145,0.214,0.531,0.1,2007-08 5218,Brad Miller,SAC,32.0,213.36,118.38751200000002,Purdue,USA,Undrafted,Undrafted,Undrafted,72,13.4,9.5,3.7,0.8,0.081,0.23399999999999999,0.183,0.5579999999999999,0.161,2007-08 5219,Brandan Wright,GSW,20.0,205.74,92.98635999999999,North Carolina,USA,2007,1,8,38,4.0,2.6,0.2,-2.7,0.10099999999999999,0.172,0.161,0.583,0.035,2007-08 5220,Brandon Bass,DAL,23.0,203.2,108.86208,Louisiana State,USA,2005,2,33,79,8.3,4.4,0.7,-0.7,0.09300000000000001,0.16699999999999998,0.19899999999999998,0.564,0.067,2007-08 5221,Brandon Roy,POR,23.0,198.12,103.872568,Washington,USA,2006,1,6,74,19.1,4.7,5.8,0.4,0.034,0.114,0.249,0.531,0.272,2007-08 5222,Brendan Haywood,WAS,28.0,213.36,119.294696,North Carolina,USA,2001,1,20,80,10.6,7.2,0.9,1.2,0.14,0.162,0.174,0.5820000000000001,0.051,2007-08 5223,Brent Barry,SAS,36.0,200.66,95.25432,Oregon State,USA,1995,1,15,31,7.1,1.8,1.7,5.5,0.025,0.092,0.155,0.655,0.15,2007-08 5224,Brevin Knight,LAC,32.0,177.8,77.11064,Stanford,USA,1997,1,16,74,4.6,1.9,4.4,-9.9,0.01,0.08900000000000001,0.12300000000000001,0.45299999999999996,0.32299999999999995,2007-08 5225,Brian Cardinal,MEM,31.0,203.2,111.13004,Purdue,USA,2000,2,44,37,3.4,2.6,0.6,0.0,0.06,0.17300000000000001,0.155,0.461,0.07400000000000001,2007-08 5226,Antoine Wright,DAL,24.0,200.66,97.52228000000001,Texas A&M,USA,2005,1,15,56,6.3,2.6,1.4,-6.3,0.038,0.099,0.155,0.488,0.113,2007-08 5227,Darko Milicic,MEM,23.0,213.36,124.7378,None,Serbia,2003,1,2,70,7.2,6.1,0.8,-8.7,0.085,0.19699999999999998,0.175,0.456,0.055,2007-08 5228,Chris Paul,NOH,23.0,182.88,79.3786,Wake Forest,USA,2005,1,4,80,21.1,4.0,11.6,7.9,0.024,0.10300000000000001,0.254,0.5760000000000001,0.5,2007-08 5229,Darrick Martin,TOR,37.0,180.34,77.11064,UCLA,USA,Undrafted,Undrafted,Undrafted,17,1.6,0.4,1.2,15.9,0.024,0.033,0.153,0.29600000000000004,0.21,2007-08 5230,Jason Collins,MEM,29.0,213.36,115.66596000000001,Stanford,USA,2001,1,18,74,1.9,2.4,0.3,-6.2,0.064,0.12,0.077,0.48100000000000004,0.033,2007-08 5231,Jarvis Hayes,DET,26.0,203.2,103.418976,Georgia,USA,2003,1,10,82,6.7,2.2,0.8,4.1,0.033,0.132,0.20800000000000002,0.52,0.081,2007-08 5232,Jarron Collins,UTA,29.0,210.82,108.40848799999999,Stanford,USA,2001,2,52,70,1.7,1.7,0.5,6.0,0.067,0.136,0.086,0.515,0.071,2007-08 5233,Jarrett Jack,POR,24.0,190.5,89.357624,Georgia Tech,USA,2005,1,22,82,9.9,2.9,3.8,-4.0,0.016,0.10300000000000001,0.192,0.5579999999999999,0.24,2007-08 5234,Jared Jeffries,NYK,26.0,210.82,108.86208,Indiana,USA,2002,1,11,73,3.7,3.3,0.9,-3.1,0.096,0.111,0.126,0.433,0.07200000000000001,2007-08 5235,Jared Dudley,CHA,22.0,200.66,102.0582,Boston College,USA,2007,1,22,73,5.8,3.9,1.1,-2.0,0.099,0.136,0.147,0.528,0.094,2007-08 5236,Jannero Pargo,NOH,28.0,185.42,79.3786,Arkansas,USA,Undrafted,Undrafted,Undrafted,80,8.1,1.6,2.4,3.2,0.02,0.085,0.244,0.46799999999999997,0.21100000000000002,2007-08 5237,James Posey,BOS,31.0,203.2,98.429464,Xavier,USA,1999,1,18,74,7.4,4.4,1.5,5.5,0.02,0.187,0.135,0.5870000000000001,0.105,2007-08 5238,James Jones,POR,27.0,203.2,99.79024,Miami (FL),USA,2003,2,49,58,8.0,2.8,0.6,1.4,0.04,0.109,0.14800000000000002,0.625,0.043,2007-08 5239,James Augustine,ORL,24.0,208.28,106.59411999999999,Illinois,USA,2006,2,41,25,1.6,1.2,0.1,-1.2,0.12,0.111,0.126,0.5329999999999999,0.023,2007-08 5240,Jameer Nelson,ORL,26.0,182.88,86.18248,Saint Joseph's,USA,2004,1,20,69,10.9,3.5,5.6,6.4,0.017,0.11900000000000001,0.18600000000000003,0.564,0.299,2007-08 5241,Jason Hart,UTA,30.0,190.5,81.64656,Syracuse,USA,2000,2,49,57,2.9,1.0,1.5,1.0,0.01,0.099,0.16399999999999998,0.413,0.20800000000000002,2007-08 5242,Jamario Moon,TOR,28.0,203.2,92.98635999999999,Meridian Community College,USA,Undrafted,Undrafted,Undrafted,78,8.5,6.2,1.2,7.3,0.052000000000000005,0.21,0.146,0.54,0.06,2007-08 5243,Jamaal Tinsley,IND,30.0,190.5,83.91452,Iowa State,USA,2001,1,27,39,11.9,3.6,8.4,0.4,0.02,0.1,0.21,0.45799999999999996,0.368,2007-08 5244,Jamaal Magloire,DAL,30.0,210.82,120.20188,Kentucky,Canada,2000,1,19,31,1.8,2.9,0.2,0.0,0.09,0.26899999999999996,0.174,0.377,0.043,2007-08 5245,Jake Voskuhl,MIL,30.0,210.82,115.66596000000001,Connecticut,USA,2000,2,33,44,2.2,2.2,0.3,-9.2,0.087,0.21,0.14,0.528,0.053,2007-08 5246,Jacque Vaughn,SAS,33.0,185.42,86.18248,Kansas,USA,1997,1,27,74,4.1,1.0,2.1,1.6,0.013000000000000001,0.063,0.157,0.48100000000000004,0.23199999999999998,2007-08 5247,JR Smith,DEN,22.0,198.12,99.79024,None,USA,2004,1,18,74,12.3,2.1,1.7,6.6,0.033,0.08199999999999999,0.255,0.603,0.149,2007-08 5248,JJ Redick,ORL,24.0,193.04,86.18248,Duke,USA,2006,1,11,34,4.1,0.7,0.5,0.8,0.004,0.095,0.218,0.569,0.094,2007-08 5249,J.J. Barea,DAL,24.0,182.88,79.3786,Northeastern,Puerto Rico,Undrafted,Undrafted,Undrafted,44,4.3,1.1,1.3,4.6,0.01,0.106,0.222,0.515,0.21600000000000003,2007-08 5250,Ira Newble,LAL,33.0,200.66,99.79024,Miami (OH),USA,Undrafted,Undrafted,Undrafted,49,3.8,2.6,0.4,-11.0,0.07,0.135,0.141,0.507,0.044000000000000004,2007-08 5251,Ime Udoka,SAS,30.0,195.58,99.79024,Portland State,USA,Undrafted,Undrafted,Undrafted,73,5.8,3.1,0.9,7.2,0.033,0.16899999999999998,0.166,0.528,0.078,2007-08 5252,Ike Diogu,IND,24.0,203.2,115.66596000000001,Arizona State,USA,2005,1,9,30,5.6,2.8,0.3,-10.3,0.126,0.162,0.235,0.5429999999999999,0.057,2007-08 5253,Ian Mahinmi,SAS,21.0,210.82,104.32616,None,France,2005,1,28,6,3.5,0.8,0.2,-16.7,0.0,0.217,0.402,0.6579999999999999,0.125,2007-08 5254,Jamal Crawford,NYK,28.0,195.58,90.7184,Michigan,USA,2000,1,8,80,20.6,2.6,5.0,-7.1,0.013000000000000001,0.063,0.24600000000000002,0.528,0.217,2007-08 5255,Hilton Armstrong,NOH,23.0,210.82,106.59411999999999,Connecticut,USA,2006,1,12,65,2.7,2.5,0.4,-1.3,0.10300000000000001,0.177,0.152,0.498,0.048,2007-08 5256,Jason Kapono,TOR,27.0,203.2,97.52228000000001,UCLA,USA,2003,2,31,81,7.2,1.5,0.8,0.1,0.023,0.069,0.174,0.561,0.068,2007-08 5257,Jason Maxiell,DET,25.0,200.66,117.93392,Cincinnati,USA,2005,1,26,82,7.9,5.3,0.6,5.2,0.12,0.175,0.166,0.5760000000000001,0.042,2007-08 5258,Darrell Armstrong,NJN,40.0,185.42,81.64656,Fayetteville State,USA,Undrafted,Undrafted,Undrafted,50,2.5,1.3,1.5,-7.2,0.037000000000000005,0.106,0.142,0.499,0.225,2007-08 5259,Travis Outlaw,POR,23.0,205.74,97.52228000000001,None,USA,2003,1,23,82,13.3,4.6,1.3,-3.1,0.052000000000000005,0.14800000000000002,0.26,0.499,0.092,2007-08 5260,Trenton Hassell,NJN,29.0,195.58,105.68693600000002,Austin Peay,USA,2001,2,29,63,2.0,1.3,0.7,-7.4,0.028999999999999998,0.096,0.1,0.441,0.087,2007-08 5261,Trevor Ariza,LAL,23.0,203.2,95.25432,UCLA,USA,2004,2,43,35,5.5,3.1,1.3,3.1,0.063,0.15,0.154,0.568,0.125,2007-08 5262,Troy Hudson,GSW,32.0,185.42,80.73937600000001,Southern Illinois,USA,Undrafted,Undrafted,Undrafted,9,3.1,0.8,1.0,-7.3,0.0,0.09,0.182,0.41600000000000004,0.14800000000000002,2007-08 5263,Troy Murphy,IND,28.0,210.82,111.13004,Notre Dame,USA,2001,1,14,75,12.2,7.2,2.2,-1.1,0.055999999999999994,0.23199999999999998,0.18600000000000003,0.573,0.122,2007-08 5264,Tyronn Lue,DAL,31.0,182.88,79.3786,Nebraska,USA,1998,1,23,50,5.8,1.1,1.5,0.1,0.015,0.077,0.19,0.5429999999999999,0.177,2007-08 5265,Tyrus Thomas,CHI,21.0,203.2,97.52228000000001,Louisiana State,USA,2006,1,4,74,6.8,4.6,1.2,-1.3,0.086,0.212,0.198,0.486,0.11,2007-08 5266,Tyson Chandler,NOH,25.0,215.9,106.59411999999999,None,USA,2001,1,2,79,11.8,11.7,1.0,7.8,0.131,0.258,0.145,0.632,0.043,2007-08 5267,Udonis Haslem,MIA,28.0,203.2,106.59411999999999,Florida,USA,Undrafted,Undrafted,Undrafted,49,12.0,9.0,1.4,-8.3,0.07,0.226,0.163,0.517,0.062,2007-08 5268,Viktor Khryapa,CHI,25.0,205.74,98.88305600000001,None,Russia,2004,1,22,9,3.6,2.2,0.9,6.0,0.064,0.157,0.18,0.431,0.138,2007-08 5269,Jason Kidd,DAL,35.0,193.04,95.25432,California,USA,1994,1,2,80,10.8,7.5,10.1,-0.2,0.037000000000000005,0.196,0.175,0.499,0.424,2007-08 5270,Vince Carter,NJN,31.0,198.12,99.79024,North Carolina,USA,1998,1,5,76,21.3,6.0,5.1,-2.0,0.044000000000000004,0.132,0.254,0.55,0.242,2007-08 5271,Von Wafer,POR,22.0,195.58,95.25432,Florida State,USA,2005,2,39,29,1.6,0.7,0.2,-2.5,0.008,0.12,0.23,0.34700000000000003,0.079,2007-08 5272,Wally Szczerbiak,CLE,31.0,200.66,111.13004,Miami (OH),USA,1999,1,6,75,11.5,2.9,1.4,-1.1,0.022000000000000002,0.11199999999999999,0.222,0.539,0.10099999999999999,2007-08 5273,Walter Herrmann,DET,29.0,205.74,102.0582,None,USA,Undrafted,Undrafted,Undrafted,45,3.4,1.6,0.4,-0.6,0.065,0.158,0.2,0.494,0.085,2007-08 5274,Willie Green,PHI,26.0,190.5,91.171992,Detroit Mercy,USA,2003,2,41,74,12.4,2.5,2.0,-1.2,0.019,0.091,0.23800000000000002,0.49200000000000005,0.124,2007-08 5275,Wilson Chandler,NYK,21.0,203.2,99.79024,DePaul,USA,2007,1,23,35,7.3,3.6,0.9,-6.7,0.055,0.149,0.185,0.48,0.07400000000000001,2007-08 5276,Yakhouba Diawara,DEN,25.0,200.66,102.0582,Pepperdine,USA,Undrafted,Undrafted,Undrafted,54,2.8,1.1,0.7,2.9,0.044000000000000004,0.073,0.13,0.518,0.098,2007-08 5277,Yao Ming,HOU,27.0,228.6,140.61352,None,China,2002,1,1,55,22.0,10.8,2.3,4.1,0.098,0.22699999999999998,0.272,0.5870000000000001,0.11599999999999999,2007-08 5278,Yi Jianlian,MIL,20.0,213.36,107.95489599999999,None,USA,2007,1,6,66,8.6,5.2,0.8,-7.7,0.07400000000000001,0.179,0.188,0.485,0.055999999999999994,2007-08 5279,Zach Randolph,NYK,26.0,205.74,117.93392,Michigan State,USA,2001,1,19,69,17.6,10.3,2.0,-8.3,0.091,0.276,0.273,0.513,0.11800000000000001,2007-08 5280,Zaza Pachulia,ATL,24.0,210.82,127.00576000000001,None,Georgia,2003,2,42,62,5.2,4.0,0.6,-1.7,0.11900000000000001,0.203,0.18600000000000003,0.515,0.061,2007-08 5281,Zydrunas Ilgauskas,CLE,33.0,220.98,117.93392,None,Lithuania,1996,1,20,73,14.1,9.3,1.4,0.7,0.132,0.217,0.22899999999999998,0.522,0.08199999999999999,2007-08 5282,Vladimir Radmanovic,LAL,27.0,208.28,106.59411999999999,None,Serbia,2001,1,12,65,8.4,3.3,1.9,11.0,0.046,0.11699999999999999,0.16,0.583,0.114,2007-08 5283,Hedo Turkoglu,ORL,29.0,208.28,99.79024,None,Turkey,2000,1,16,82,19.5,5.7,5.0,8.1,0.034,0.141,0.249,0.5760000000000001,0.22399999999999998,2007-08 5284,Travis Diener,IND,26.0,185.42,79.3786,Marquette,USA,2005,2,38,66,6.9,1.7,3.8,-1.8,0.02,0.075,0.165,0.494,0.282,2007-08 5285,Guillermo Diaz,LAC,23.0,187.96,83.91452,Miami (FL),USA,2006,2,52,6,0.8,0.3,0.2,-3.4,0.111,0.0,0.153,0.40299999999999997,0.071,2007-08 5286,Dwight Howard,ORL,22.0,210.82,120.20188,None,USA,2004,1,1,82,20.7,14.2,1.3,8.1,0.11,0.314,0.24,0.619,0.059000000000000004,2007-08 5287,Dwayne Jones,CLE,25.0,210.82,113.851592,Saint Joseph's,USA,Undrafted,Undrafted,Undrafted,56,1.4,2.5,0.2,-5.9,0.162,0.175,0.085,0.5379999999999999,0.033,2007-08 5288,Drew Gooden,CHI,26.0,208.28,113.398,Kansas,USA,2002,1,4,69,12.0,8.6,1.2,-2.2,0.092,0.23,0.203,0.495,0.062,2007-08 5289,Dorell Wright,MIA,22.0,205.74,95.25432,None,USA,2004,1,19,44,7.9,5.0,1.4,-5.5,0.051,0.187,0.149,0.537,0.087,2007-08 5290,Donyell Marshall,SEA,35.0,205.74,111.13004,Connecticut,USA,1994,1,4,26,3.8,2.9,0.4,-14.6,0.077,0.187,0.163,0.455,0.044000000000000004,2007-08 5291,Dominic McGuire,WAS,22.0,205.74,99.79024,Fresno State,USA,2007,2,47,70,1.3,2.0,0.6,-13.4,0.086,0.14400000000000002,0.10800000000000001,0.397,0.096,2007-08 5292,Dirk Nowitzki,DAL,30.0,213.36,111.13004,None,Germany,1998,1,9,77,23.6,8.6,3.5,9.1,0.040999999999999995,0.22699999999999998,0.287,0.585,0.171,2007-08 5293,Dikembe Mutombo,HOU,42.0,218.44,117.93392,Georgetown,Congo,1991,1,4,39,3.0,5.1,0.1,3.6,0.11800000000000001,0.221,0.086,0.591,0.012,2007-08 5294,Devin Harris,NJN,25.0,190.5,83.91452,Wisconsin,USA,2004,1,5,64,14.8,2.7,5.8,5.4,0.017,0.081,0.225,0.573,0.28800000000000003,2007-08 5295,Devin Brown,CLE,29.0,195.58,95.25432,Texas-San Antonio,USA,Undrafted,Undrafted,Undrafted,78,7.5,3.4,2.2,-0.7,0.040999999999999995,0.134,0.179,0.494,0.166,2007-08 5296,Desmond Mason,MIL,30.0,195.58,100.697424,Oklahoma State,USA,2000,1,17,59,9.7,4.3,2.1,-5.2,0.05,0.128,0.168,0.519,0.107,2007-08 5297,Dwyane Wade,MIA,26.0,193.04,97.975872,Marquette,USA,2003,1,5,51,24.6,4.2,6.9,-6.2,0.027999999999999997,0.107,0.322,0.5489999999999999,0.336,2007-08 5298,Deron Williams,UTA,24.0,190.5,92.98635999999999,Illinois,USA,2005,1,3,82,18.8,3.0,10.5,7.3,0.013999999999999999,0.08199999999999999,0.23199999999999998,0.595,0.42700000000000005,2007-08 5299,Derek Anderson,CHA,33.0,195.58,88.45044,Kentucky,USA,1997,1,13,28,5.0,1.9,1.6,-13.0,0.024,0.126,0.193,0.49700000000000005,0.215,2007-08 5300,DerMarr Johnson,SAS,28.0,205.74,95.25432,Cincinnati,USA,2000,1,6,5,3.4,0.2,0.2,0.7,0.0,0.045,0.275,0.5710000000000001,0.077,2007-08 5301,Demetris Nichols,CHI,23.0,203.2,97.975872,Syracuse,USA,2007,2,53,14,1.1,0.4,0.1,-23.3,0.0,0.11599999999999999,0.275,0.326,0.045,2007-08 5302,Delonte West,CLE,24.0,190.5,81.64656,Saint Joseph's,USA,2004,1,24,61,8.3,3.2,3.8,-2.5,0.022000000000000002,0.115,0.183,0.49200000000000005,0.242,2007-08 5303,DeShawn Stevenson,WAS,27.0,195.58,98.88305600000001,None,USA,2000,1,23,82,11.2,2.9,3.1,1.1,0.016,0.092,0.17300000000000001,0.529,0.152,2007-08 5304,DeSagana Diop,NJN,26.0,213.36,127.00576000000001,None,Senegal,2001,1,8,79,2.9,5.0,0.5,4.2,0.14400000000000002,0.203,0.09699999999999999,0.536,0.047,2007-08 5305,David West,NOH,27.0,205.74,108.86208,Xavier,USA,2003,1,18,76,20.6,8.9,2.3,7.6,0.071,0.204,0.262,0.535,0.10400000000000001,2007-08 5306,David Lee,NYK,25.0,205.74,108.86208,Florida,USA,2005,1,30,81,10.8,8.9,1.2,-6.5,0.11199999999999999,0.243,0.155,0.606,0.067,2007-08 5307,David Harrison,IND,25.0,213.36,127.00576000000001,Colorado,USA,2004,1,29,55,4.2,2.1,0.3,1.4,0.066,0.113,0.165,0.539,0.03,2007-08 5308,Darryl Watkins,SAC,23.0,210.82,117.02673600000001,Syracuse,USA,Undrafted,Undrafted,Undrafted,9,1.3,1.3,0.0,-13.0,0.08199999999999999,0.13,0.151,0.349,0.0,2007-08 5309,Hakim Warrick,MEM,25.0,205.74,97.52228000000001,Syracuse,USA,2005,1,19,75,11.4,4.7,0.7,-13.5,0.075,0.155,0.214,0.555,0.055,2007-08 5310,Derek Fisher,LAL,33.0,185.42,95.25432,Arkansas-Little Rock,USA,1996,1,24,82,11.7,2.1,2.9,6.5,0.012,0.069,0.185,0.556,0.157,2007-08 5311,Earl Barron,MIA,26.0,213.36,111.13004,Memphis,USA,Undrafted,Undrafted,Undrafted,46,7.1,4.3,0.6,-12.1,0.087,0.191,0.223,0.446,0.063,2007-08 5312,Devean George,DAL,30.0,203.2,106.59411999999999,Augsburg,USA,1999,1,23,53,3.7,2.6,0.7,0.2,0.04,0.149,0.14400000000000002,0.43700000000000006,0.068,2007-08 5313,Tracy McGrady,HOU,29.0,203.2,101.151016,None,USA,1997,1,9,66,21.6,5.1,5.9,5.7,0.019,0.134,0.303,0.48700000000000004,0.294,2007-08 5314,Earl Boykins,CHA,32.0,165.1,60.327736,Eastern Michigan,USA,Undrafted,Undrafted,Undrafted,36,5.1,0.9,2.7,-6.6,0.017,0.052000000000000005,0.19,0.467,0.27,2007-08 5315,Grant Hill,PHX,35.0,203.2,102.0582,Duke,USA,1994,1,3,70,13.1,5.0,2.9,8.5,0.040999999999999995,0.131,0.18,0.5760000000000001,0.13,2007-08 5316,Gordan Giricek,PHX,31.0,198.12,99.79024,None,Croatia,1999,2,40,56,5.8,1.7,1.1,2.5,0.023,0.102,0.192,0.518,0.115,2007-08 5317,Glen Davis,BOS,22.0,205.74,131.088088,Louisiana State,USA,2007,2,35,69,4.5,3.0,0.4,7.8,0.127,0.13699999999999998,0.17600000000000002,0.545,0.053,2007-08 5318,Gilbert Arenas,WAS,26.0,193.04,97.52228000000001,Arizona,USA,2001,2,30,13,19.4,3.9,5.1,-0.2,0.015,0.12,0.293,0.529,0.282,2007-08 5319,Gerald Wallace,CHA,25.0,200.66,99.79024,Alabama,USA,2001,1,25,62,19.4,6.0,3.5,-3.3,0.027999999999999997,0.153,0.247,0.547,0.159,2007-08 5320,Gerald Green,HOU,22.0,203.2,90.7184,None,USA,2005,1,18,30,5.1,2.1,1.0,-6.5,0.036000000000000004,0.147,0.24600000000000002,0.45299999999999996,0.138,2007-08 5321,Fred Jones,NYK,29.0,187.96,102.0582,Oregon,USA,2002,1,14,70,7.6,2.4,2.4,-8.7,0.019,0.096,0.14400000000000002,0.546,0.15,2007-08 5322,Francisco Garcia,SAC,26.0,200.66,88.45044,Louisville,Dominican Republic,2005,1,23,79,12.3,3.3,1.6,-2.7,0.03,0.11800000000000001,0.209,0.5760000000000001,0.10400000000000001,2007-08 5323,Francisco Elson,SEA,32.0,213.36,106.59411999999999,California,Netherlands,1999,2,41,63,3.3,3.2,0.4,-5.3,0.071,0.21100000000000002,0.172,0.41600000000000004,0.051,2007-08 5324,Flip Murray,IND,28.0,190.5,89.357624,Shaw,USA,2002,2,41,42,9.4,2.0,3.4,-2.0,0.028999999999999998,0.073,0.248,0.483,0.266,2007-08 5325,Fabricio Oberto,SAS,33.0,208.28,111.13004,None,Argentina,Undrafted,Undrafted,Undrafted,82,4.8,5.2,1.2,1.1,0.109,0.201,0.109,0.615,0.09,2007-08 5326,Gabe Pruitt,BOS,22.0,193.04,77.11064,Southern California,USA,2007,2,32,15,2.1,0.5,0.9,-4.5,0.012,0.09,0.212,0.401,0.245,2007-08 5327,Greg Buckner,MIN,31.0,193.04,95.25432,Clemson,USA,1998,2,53,31,4.0,2.1,1.3,-14.5,0.022000000000000002,0.14400000000000002,0.133,0.489,0.109,2007-08 5328,Erick Dampier,DAL,32.0,210.82,120.20188,Mississippi State,USA,1996,1,10,72,6.1,7.5,0.9,5.9,0.141,0.21,0.11199999999999999,0.645,0.052000000000000005,2007-08 5329,Eddie Gill,SEA,29.0,182.88,83.007336,Weber State,USA,Undrafted,Undrafted,Undrafted,14,2.7,1.6,1.6,-10.4,0.006999999999999999,0.16,0.14,0.5429999999999999,0.297,2007-08 5330,Eddie House,BOS,30.0,185.42,79.3786,Arizona State,USA,2000,2,37,78,7.5,2.1,1.9,9.2,0.016,0.11699999999999999,0.19399999999999998,0.534,0.182,2007-08 5331,Eddie Jones,DAL,36.0,198.12,90.7184,Temple,USA,1994,1,10,47,3.7,2.8,1.5,7.4,0.023,0.145,0.11,0.473,0.105,2007-08 5332,Eddy Curry,NYK,25.0,210.82,129.27372,None,USA,2001,1,4,59,13.2,4.7,0.5,-15.0,0.085,0.124,0.24100000000000002,0.578,0.04,2007-08 5333,Earl Watson,SEA,29.0,185.42,83.91452,UCLA,USA,2001,2,39,78,10.7,2.9,6.8,-10.1,0.021,0.087,0.188,0.517,0.359,2007-08 5334,Elton Brand,LAC,29.0,203.2,115.212368,Duke,USA,1999,1,1,8,17.6,8.0,2.0,-16.5,0.08800000000000001,0.172,0.252,0.523,0.10300000000000001,2007-08 5335,Emeka Okafor,CHA,25.0,208.28,115.66596000000001,Connecticut,USA,2004,1,2,82,13.8,10.7,0.9,-4.6,0.10800000000000001,0.262,0.201,0.5529999999999999,0.044000000000000004,2007-08 5336,Eric Piatkowski,PHX,37.0,200.66,97.52228000000001,Nebraska,USA,1994,1,15,16,2.4,0.8,0.6,-7.3,0.011000000000000001,0.085,0.17300000000000001,0.561,0.141,2007-08 5337,Eric Snow,CLE,35.0,190.5,92.98635999999999,Michigan State,USA,1995,2,43,22,1.0,0.9,1.9,-10.0,0.013999999999999999,0.059000000000000004,0.087,0.231,0.213,2007-08 5338,Eduardo Najera,DEN,31.0,203.2,106.59411999999999,Oklahoma,Mexico,2000,2,38,78,5.9,4.3,1.2,9.7,0.07400000000000001,0.14300000000000002,0.11900000000000001,0.57,0.079,2007-08 5339,Matt Carroll,DAL,28.0,198.12,96.16150400000001,Notre Dame,USA,Undrafted,Undrafted,Undrafted,55,3.0,1.3,0.5,-12.1,0.013000000000000001,0.121,0.162,0.451,0.078,2008-09 5340,Michael Redd,MIL,29.0,198.12,97.52228000000001,Ohio State,USA,2000,2,43,33,21.2,3.2,2.7,3.9,0.024,0.087,0.255,0.5660000000000001,0.121,2008-09 5341,Michael Finley,SAS,36.0,200.66,102.0582,Wisconsin,USA,1995,1,21,81,9.7,3.3,1.4,3.7,0.013999999999999999,0.12300000000000001,0.162,0.547,0.07400000000000001,2008-09 5342,Michael Beasley,MIA,20.0,205.74,111.13004,Kansas State,USA,2008,1,2,81,13.9,5.4,1.0,-0.6,0.065,0.195,0.27699999999999997,0.528,0.078,2008-09 5343,Metta World Peace,HOU,29.0,200.66,117.93392,St. John's (NY),USA,1999,1,16,69,17.1,5.2,3.3,6.3,0.032,0.134,0.245,0.512,0.162,2008-09 5344,Melvin Ely,NOH,31.0,208.28,118.38751200000002,Fresno State,USA,2002,1,12,31,3.1,2.1,0.6,-3.7,0.096,0.107,0.175,0.43799999999999994,0.087,2008-09 5345,Mehmet Okur,UTA,30.0,210.82,119.294696,None,Turkey,2001,2,37,72,17.0,7.7,1.7,3.2,0.062,0.213,0.218,0.5920000000000001,0.078,2008-09 5346,Maurice Evans,ATL,30.0,195.58,99.79024,Texas,USA,Undrafted,Undrafted,Undrafted,80,7.2,3.0,0.7,-0.1,0.057,0.09699999999999999,0.142,0.5579999999999999,0.047,2008-09 5347,Maurice Ager,NJN,25.0,195.58,91.625584,Michigan State,USA,2006,1,28,20,1.7,0.5,0.2,-3.6,0.034,0.083,0.24100000000000002,0.365,0.071,2008-09 5348,Matt Harpring,UTA,33.0,200.66,104.32616,Georgia Tech,USA,1998,1,15,63,4.4,2.0,0.4,2.3,0.08199999999999999,0.13699999999999998,0.2,0.508,0.07200000000000001,2008-09 5349,Matt Bonner,SAS,29.0,208.28,108.86208,Florida,USA,2003,2,45,81,8.2,4.8,1.0,9.1,0.062,0.17300000000000001,0.14800000000000002,0.611,0.064,2008-09 5350,Marcus Williams,GSW,23.0,190.5,95.25432,Connecticut,USA,2006,1,22,9,1.3,0.4,1.4,-5.5,0.0,0.073,0.18100000000000002,0.305,0.342,2008-09 5351,Marvin Williams,ATL,23.0,205.74,108.86208,North Carolina,USA,2005,1,2,61,13.9,6.3,1.3,0.3,0.062,0.153,0.183,0.569,0.064,2008-09 5352,Martell Webster,POR,22.0,200.66,106.59411999999999,None,USA,2005,1,6,1,0.0,0.0,0.0,-42.7,0.0,0.0,0.085,0.0,0.0,2008-09 5353,Marreese Speights,PHI,21.0,208.28,111.13004,Florida,USA,2008,1,16,79,7.7,3.7,0.4,-3.9,0.114,0.168,0.218,0.5429999999999999,0.044000000000000004,2008-09 5354,Marquis Daniels,IND,28.0,198.12,90.7184,Auburn,USA,Undrafted,Undrafted,Undrafted,54,13.6,4.6,2.1,-1.0,0.051,0.111,0.213,0.491,0.106,2008-09 5355,Marko Jaric,MEM,30.0,200.66,101.604608,None,Serbia,2000,2,30,53,2.6,1.2,1.4,6.2,0.046,0.084,0.16399999999999998,0.41700000000000004,0.196,2008-09 5356,Mark Madsen,MIN,33.0,205.74,115.66596000000001,Stanford,USA,2000,1,29,19,0.3,0.9,0.2,0.2,0.084,0.077,0.068,0.19,0.044000000000000004,2008-09 5357,Mark Blount,MIA,33.0,213.36,113.398,Pittsburgh,USA,1997,2,54,20,4.0,2.1,0.2,3.7,0.057,0.168,0.22899999999999998,0.47200000000000003,0.034,2008-09 5358,Mario West,ATL,25.0,195.58,95.25432,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,53,0.8,1.1,0.4,1.2,0.10099999999999999,0.136,0.102,0.456,0.107,2008-09 5359,Mario Chalmers,MIA,23.0,185.42,86.18248,Kansas,USA,2008,2,34,82,10.0,2.8,4.9,1.0,0.017,0.08900000000000001,0.163,0.5479999999999999,0.231,2008-09 5360,Mardy Collins,LAC,24.0,198.12,99.79024,Temple,USA,2006,1,29,48,5.2,2.2,2.3,-3.6,0.039,0.099,0.16399999999999998,0.47,0.193,2008-09 5361,Michael Ruffin,POR,32.0,203.2,112.490816,Tulsa,USA,1999,2,32,11,0.5,1.0,0.0,-6.9,0.214,0.152,0.128,0.381,0.0,2008-09 5362,Matt Barnes,PHX,29.0,200.66,102.511792,UCLA,USA,2002,2,45,77,10.2,5.5,2.8,1.7,0.045,0.185,0.18100000000000002,0.537,0.139,2008-09 5363,Mickael Pietrus,ORL,27.0,198.12,97.52228000000001,None,France,2003,1,11,54,9.4,3.3,1.2,6.3,0.038,0.114,0.183,0.5379999999999999,0.08199999999999999,2008-09 5364,Paul Davis,LAC,24.0,210.82,122.46983999999999,Michigan State,USA,2006,2,34,27,4.0,2.5,0.4,-5.6,0.092,0.147,0.174,0.474,0.067,2008-09 5365,Mike Conley,MEM,21.0,185.42,81.64656,Ohio State,USA,2007,1,4,82,10.9,3.4,4.3,-6.0,0.012,0.121,0.18,0.5479999999999999,0.239,2008-09 5366,Josh Powell,LAL,26.0,205.74,108.86208,North Carolina State,USA,Undrafted,Undrafted,Undrafted,60,4.2,2.9,0.5,-9.2,0.115,0.16899999999999998,0.19399999999999998,0.479,0.06,2008-09 5367,Pau Gasol,LAL,28.0,213.36,113.398,None,Spain,2001,1,3,81,18.9,9.6,3.5,9.1,0.10099999999999999,0.19399999999999998,0.205,0.617,0.146,2008-09 5368,Patrick O'Bryant,TOR,23.0,213.36,113.398,Bradley,USA,2006,1,9,39,2.6,1.7,0.3,-0.8,0.057,0.217,0.196,0.544,0.07200000000000001,2008-09 5369,Othello Hunter,ATL,23.0,203.2,102.0582,Ohio State,USA,Undrafted,Undrafted,Undrafted,16,1.4,1.5,0.1,12.4,0.107,0.19,0.12300000000000001,0.495,0.021,2008-09 5370,Oleksiy Pecherov,WAS,23.0,213.36,106.140528,None,Ukraine,2006,1,18,32,3.6,2.4,0.1,-13.1,0.134,0.19699999999999998,0.191,0.51,0.012,2008-09 5371,O.J. Mayo,MEM,21.0,193.04,95.25432,Southern California,USA,2008,1,3,82,18.5,3.8,3.2,-6.7,0.022000000000000002,0.10099999999999999,0.244,0.539,0.151,2008-09 5372,Nicolas Batum,POR,20.0,203.2,90.7184,None,France,2008,1,25,79,5.4,2.8,0.9,10.0,0.07200000000000001,0.121,0.141,0.555,0.073,2008-09 5373,Nick Young,WAS,24.0,198.12,90.7184,Southern California,USA,2007,1,16,82,10.9,1.8,1.2,-5.6,0.019,0.078,0.231,0.53,0.09300000000000001,2008-09 5374,Nick Collison,OKC,28.0,208.28,115.66596000000001,Kansas,USA,2003,1,12,71,8.2,6.9,0.9,-6.4,0.113,0.19699999999999998,0.135,0.599,0.057,2008-09 5375,Nene,DEN,26.0,210.82,113.398,None,Brazil,2002,1,7,77,14.6,7.8,1.4,6.3,0.08900000000000001,0.191,0.183,0.645,0.069,2008-09 5376,Nenad Krstic,OKC,25.0,213.36,108.86208,None,Serbia and Montenegro,2002,1,24,46,9.7,5.5,0.6,-6.4,0.084,0.17,0.18899999999999997,0.504,0.043,2008-09 5377,Mike Bibby,ATL,31.0,187.96,88.45044,Arizona,USA,1998,1,2,79,14.9,3.5,5.0,0.6,0.016,0.10400000000000001,0.205,0.544,0.235,2008-09 5378,Nazr Mohammed,CHA,31.0,208.28,113.398,Kentucky,USA,1998,1,29,39,2.7,2.0,0.2,-7.9,0.134,0.17300000000000001,0.201,0.43799999999999994,0.040999999999999995,2008-09 5379,Nate Robinson,NYK,25.0,175.26,81.64656,Washington,USA,2005,1,21,74,17.2,3.9,4.1,-1.2,0.047,0.098,0.254,0.5489999999999999,0.228,2008-09 5380,Mouhamed Sene,NYK,23.0,210.82,104.32616,None,Senegal,2006,1,10,6,3.3,2.3,0.0,0.3,0.185,0.281,0.222,0.746,0.0,2008-09 5381,Morris Peterson,NOH,31.0,200.66,99.79024,Michigan State,USA,2000,1,21,43,4.4,2.0,0.4,-0.5,0.03,0.172,0.19399999999999998,0.499,0.055999999999999994,2008-09 5382,Morris Almond,UTA,24.0,198.12,102.0582,Rice,USA,2007,1,25,25,3.7,1.4,0.3,-7.3,0.042,0.111,0.193,0.498,0.054000000000000006,2008-09 5383,Monta Ellis,GSW,23.0,190.5,81.64656,None,USA,2005,2,40,25,19.0,4.3,3.7,-4.1,0.017,0.115,0.254,0.503,0.165,2008-09 5384,Mo Williams,CLE,26.0,185.42,86.18248,Alabama,USA,2003,2,47,81,17.8,3.4,4.1,11.2,0.021,0.095,0.23600000000000002,0.588,0.19899999999999998,2008-09 5385,Mikki Moore,BOS,33.0,213.36,102.0582,Nebraska,USA,Undrafted,Undrafted,Undrafted,70,3.9,3.7,0.8,-4.1,0.076,0.17600000000000002,0.109,0.593,0.068,2008-09 5386,Mike Taylor,LAC,23.0,187.96,74.84268,Iowa State,USA,2008,2,55,51,5.7,1.7,2.1,-7.1,0.033,0.09699999999999999,0.226,0.47700000000000004,0.231,2008-09 5387,Mike Miller,MIN,29.0,203.2,98.88305600000001,Florida,USA,2000,1,5,73,9.9,6.6,4.5,-7.2,0.034,0.212,0.14400000000000002,0.588,0.212,2008-09 5388,Mike James,WAS,34.0,187.96,85.275296,Duquesne,USA,Undrafted,Undrafted,Undrafted,61,8.7,2.2,3.3,-11.3,0.017,0.081,0.17800000000000002,0.483,0.192,2008-09 5389,Mike Dunleavy,IND,28.0,205.74,104.32616,Duke,USA,2002,1,3,18,15.1,3.8,2.4,-3.4,0.031,0.125,0.259,0.52,0.147,2008-09 5390,Nathan Jawai,TOR,22.0,208.28,127.00576000000001,Midland,Australia,2008,2,41,6,0.3,0.3,0.0,-28.3,0.04,0.059000000000000004,0.127,0.25,0.0,2008-09 5391,Marcus Williams,SAS,22.0,200.66,93.89354399999999,Arizona,USA,2007,2,33,2,2.0,0.0,0.0,-52.3,0.0,0.0,0.24,1.0,0.0,2008-09 5392,Lamar Odom,LAL,29.0,208.28,104.32616,Rhode Island,USA,1999,1,4,78,11.3,8.2,2.6,14.8,0.08800000000000001,0.221,0.18100000000000002,0.542,0.126,2008-09 5393,Marcus Banks,TOR,27.0,187.96,92.98635999999999,Nevada-Las Vegas,USA,2003,1,13,22,2.5,0.8,1.3,-22.0,0.005,0.10099999999999999,0.18,0.431,0.252,2008-09 5394,Kyle Korver,UTA,28.0,200.66,96.16150400000001,Creighton,USA,2003,2,51,78,9.0,3.3,1.8,4.4,0.023,0.139,0.17,0.5720000000000001,0.11599999999999999,2008-09 5395,Kwame Brown,DET,27.0,210.82,122.46983999999999,None,USA,2001,1,1,58,4.2,5.0,0.6,-0.3,0.11,0.25,0.134,0.546,0.05,2008-09 5396,Kurt Thomas,SAS,36.0,205.74,106.59411999999999,Texas Christian,USA,1995,1,10,79,4.3,5.1,0.8,4.1,0.11199999999999999,0.226,0.126,0.53,0.07400000000000001,2008-09 5397,Kris Humphries,TOR,24.0,205.74,106.59411999999999,Minnesota,USA,2004,1,14,29,3.9,2.4,0.3,-0.6,0.105,0.205,0.20600000000000002,0.513,0.062,2008-09 5398,Kosta Koufos,UTA,20.0,213.36,120.20188,Ohio State,USA,2008,1,23,48,4.7,2.9,0.4,-1.9,0.10300000000000001,0.177,0.185,0.54,0.061,2008-09 5399,Kobe Bryant,LAL,30.0,198.12,92.98635999999999,None,USA,1996,1,13,82,26.8,5.2,4.9,10.8,0.035,0.127,0.322,0.561,0.23199999999999998,2008-09 5400,Kirk Hinrich,CHI,28.0,190.5,86.18248,Kansas,USA,2003,1,7,51,9.9,2.4,3.9,7.2,0.013999999999999999,0.08800000000000001,0.18100000000000002,0.551,0.225,2008-09 5401,Keyon Dooling,NJN,29.0,190.5,88.45044,Missouri,USA,2000,1,10,77,9.7,2.0,3.5,-6.4,0.013999999999999999,0.079,0.17600000000000002,0.562,0.22399999999999998,2008-09 5402,Kevin Ollie,MIN,36.0,187.96,88.45044,Connecticut,USA,Undrafted,Undrafted,Undrafted,50,4.0,1.5,2.3,-8.3,0.018000000000000002,0.09300000000000001,0.124,0.525,0.218,2008-09 5403,Kevin Martin,SAC,26.0,200.66,83.91452,Western Carolina,USA,2004,1,26,51,24.6,3.6,2.7,-7.8,0.018000000000000002,0.09300000000000001,0.271,0.601,0.121,2008-09 5404,Kevin Love,MIN,20.0,208.28,117.93392,UCLA,USA,2008,1,5,81,11.1,9.1,1.0,-8.2,0.146,0.271,0.205,0.5379999999999999,0.07,2008-09 5405,Kyle Lowry,HOU,23.0,182.88,92.98635999999999,Villanova,USA,2006,1,24,77,7.6,2.5,3.6,-4.5,0.018000000000000002,0.12,0.18,0.547,0.268,2008-09 5406,Kevin Garnett,BOS,33.0,210.82,114.758776,None,USA,1995,1,5,57,15.8,8.5,2.5,14.9,0.057,0.255,0.23399999999999999,0.563,0.13699999999999998,2008-09 5407,Kenyon Martin,DEN,31.0,205.74,108.86208,Cincinnati,USA,2000,1,1,66,11.7,6.0,2.0,4.7,0.046,0.171,0.18100000000000002,0.523,0.099,2008-09 5408,Kenny Thomas,SAC,31.0,200.66,111.13004,New Mexico,USA,1999,1,22,8,0.8,1.9,0.1,-5.0,0.071,0.22399999999999998,0.067,0.375,0.022000000000000002,2008-09 5409,Kendrick Perkins,BOS,24.0,208.28,127.00576000000001,None,USA,2003,1,27,76,8.5,8.1,1.3,9.0,0.11900000000000001,0.21,0.149,0.591,0.063,2008-09 5410,Kelenna Azubuike,GSW,25.0,195.58,99.79024,Kentucky,England,Undrafted,Undrafted,Undrafted,74,14.4,5.0,1.6,-1.9,0.05,0.11699999999999999,0.18600000000000003,0.562,0.076,2008-09 5411,Keith Bogans,MIL,29.0,195.58,97.52228000000001,Kentucky,USA,2003,2,43,65,5.6,3.1,1.0,3.5,0.027000000000000003,0.153,0.138,0.521,0.077,2008-09 5412,Kareem Rush,PHI,28.0,198.12,97.52228000000001,Missouri,USA,2002,1,20,25,2.2,0.6,0.6,-5.6,0.0,0.09,0.153,0.452,0.111,2008-09 5413,Juwan Howard,CHA,36.0,205.74,114.758776,Michigan,USA,1994,1,5,42,4.1,1.8,0.6,-10.9,0.081,0.133,0.19,0.534,0.107,2008-09 5414,Julian Wright,NOH,22.0,203.2,102.0582,Kansas,USA,2007,1,13,54,4.4,2.8,0.8,1.3,0.07400000000000001,0.156,0.183,0.479,0.094,2008-09 5415,Juan Dixon,WAS,30.0,190.5,74.84268,Maryland,USA,2002,1,17,50,5.2,1.3,2.4,-8.8,0.012,0.083,0.193,0.478,0.23199999999999998,2008-09 5416,Josh Smith,ATL,23.0,205.74,108.86208,None,USA,2004,1,17,69,15.6,7.2,2.4,3.5,0.065,0.174,0.22699999999999998,0.5329999999999999,0.11599999999999999,2008-09 5417,Paul Millsap,UTA,24.0,203.2,113.398,Louisiana Tech,USA,2006,2,47,76,13.5,8.6,1.8,5.7,0.131,0.20800000000000002,0.19899999999999998,0.5760000000000001,0.098,2008-09 5418,Kevin Durant,OKC,20.0,205.74,97.52228000000001,Texas,USA,2007,1,2,74,25.3,6.5,2.8,-9.5,0.03,0.166,0.282,0.5770000000000001,0.135,2008-09 5419,Marcus Camby,LAC,35.0,210.82,106.59411999999999,Massachusetts,USA,1996,1,2,62,10.3,11.1,2.0,-5.3,0.094,0.32,0.158,0.556,0.107,2008-09 5420,Kyle Weaver,OKC,23.0,198.12,91.171992,Washington State,USA,2008,2,38,56,5.3,2.3,1.8,-1.6,0.031,0.098,0.13,0.551,0.128,2008-09 5421,LaMarcus Aldridge,POR,23.0,210.82,108.86208,Texas,USA,2006,1,2,81,18.1,7.5,1.9,8.7,0.094,0.157,0.237,0.529,0.091,2008-09 5422,Marco Belinelli,GSW,23.0,195.58,90.7184,None,Italy,2007,1,18,42,8.9,1.7,2.1,-4.6,0.012,0.075,0.191,0.547,0.146,2008-09 5423,Marcin Gortat,ORL,25.0,210.82,108.86208,None,Poland,2005,2,57,63,3.8,4.5,0.2,-1.2,0.131,0.261,0.135,0.578,0.032,2008-09 5424,Marc Gasol,MEM,24.0,215.9,120.20188,None,Spain,2007,2,48,82,11.9,7.4,1.7,-7.1,0.098,0.207,0.185,0.59,0.096,2008-09 5425,Manu Ginobili,SAS,31.0,198.12,92.98635999999999,None,Argentina,1999,2,57,44,15.5,4.5,3.6,3.9,0.024,0.17600000000000002,0.265,0.594,0.23,2008-09 5426,Malik Rose,OKC,34.0,200.66,115.66596000000001,Drexel,USA,1996,2,44,38,3.4,2.5,0.9,-2.5,0.042,0.185,0.183,0.424,0.11800000000000001,2008-09 5427,Malik Hairston,SAS,22.0,198.12,99.79024,Oregon,USA,2008,2,48,15,3.3,1.9,0.9,-0.3,0.073,0.121,0.18899999999999997,0.48,0.14,2008-09 5428,Malik Allen,MIL,31.0,208.28,115.66596000000001,Villanova,USA,Undrafted,Undrafted,Undrafted,49,3.2,2.1,0.7,-0.7,0.065,0.141,0.158,0.435,0.099,2008-09 5429,Maceo Baston,IND,33.0,208.28,104.32616,Michigan,USA,1998,2,58,27,2.5,1.9,0.3,-2.3,0.11599999999999999,0.142,0.142,0.579,0.051,2008-09 5430,Luther Head,MIA,26.0,190.5,83.91452,Illinois,USA,2005,1,24,32,4.7,1.6,1.8,-8.8,0.015,0.115,0.171,0.48200000000000004,0.196,2008-09 5431,Luol Deng,CHI,24.0,205.74,99.79024,Duke,United Kingdom,2004,1,7,49,14.1,6.0,1.9,-0.8,0.054000000000000006,0.145,0.19899999999999998,0.511,0.09,2008-09 5432,Luke Walton,LAL,29.0,203.2,106.59411999999999,Arizona,USA,2003,2,32,65,5.0,2.8,2.7,8.1,0.054000000000000006,0.11599999999999999,0.15,0.491,0.204,2008-09 5433,Kyrylo Fesenko,UTA,22.0,215.9,136.0776,None,Ukraine,2007,2,38,21,2.3,1.8,0.2,4.4,0.10400000000000001,0.17,0.157,0.542,0.040999999999999995,2008-09 5434,Luke Ridnour,MIL,28.0,187.96,79.3786,Oregon,USA,2003,1,14,72,9.6,3.0,5.1,-1.9,0.018000000000000002,0.115,0.182,0.5,0.28800000000000003,2008-09 5435,Luc Mbah a Moute,MIL,22.0,203.2,104.32616,UCLA,Cameroon,2008,2,37,82,7.2,5.9,1.1,-0.6,0.102,0.17600000000000002,0.14400000000000002,0.516,0.064,2008-09 5436,Lou Williams,PHI,22.0,187.96,79.3786,None,USA,2005,2,45,81,12.8,2.0,3.0,-2.6,0.022000000000000002,0.083,0.273,0.513,0.22699999999999998,2008-09 5437,Lou Amundson,PHX,26.0,205.74,102.0582,Nevada-Las Vegas,USA,Undrafted,Undrafted,Undrafted,76,4.2,3.6,0.4,3.2,0.135,0.155,0.145,0.53,0.038,2008-09 5438,Lorenzen Wright,CLE,33.0,210.82,115.66596000000001,Memphis,USA,1996,1,7,17,1.4,1.5,0.2,0.8,0.073,0.161,0.149,0.377,0.038,2008-09 5439,Linton Johnson,CHI,29.0,203.2,92.98635999999999,Tulane,USA,Undrafted,Undrafted,Undrafted,10,0.9,0.8,0.2,-19.0,0.061,0.11900000000000001,0.109,0.409,0.065,2008-09 5440,Lindsey Hunter,CHI,38.0,187.96,88.45044,Jackson State,USA,1993,1,10,28,2.6,0.4,1.3,-9.8,0.008,0.049,0.177,0.433,0.245,2008-09 5441,Linas Kleiza,DEN,24.0,203.2,111.13004,Missouri,Lithuania,2005,1,27,82,9.9,4.0,0.8,-0.1,0.059000000000000004,0.14,0.195,0.552,0.06,2008-09 5442,Leon Powe,BOS,25.0,203.2,108.86208,California,USA,2006,2,49,70,7.7,4.9,0.7,8.7,0.146,0.19899999999999998,0.2,0.591,0.065,2008-09 5443,Leandro Barbosa,PHX,26.0,190.5,91.625584,None,Brazil,2003,1,28,70,14.2,2.6,2.3,1.2,0.024,0.1,0.24100000000000002,0.588,0.153,2008-09 5444,LeBron James,CLE,24.0,203.2,113.398,None,USA,2003,1,1,81,28.4,7.6,7.2,14.7,0.042,0.18899999999999997,0.33399999999999996,0.591,0.365,2008-09 5445,Larry Hughes,NYK,30.0,195.58,83.91452,Saint Louis,USA,1998,1,8,55,11.6,2.9,2.2,-4.7,0.012,0.114,0.209,0.515,0.13,2008-09 5446,Luis Scola,HOU,29.0,205.74,111.13004,None,Argentina,2002,2,55,82,12.7,8.8,1.5,4.5,0.098,0.233,0.19399999999999998,0.5720000000000001,0.083,2008-09 5447,Paul Pierce,BOS,31.0,200.66,106.59411999999999,Kansas,USA,1998,1,10,81,20.5,5.6,3.6,9.4,0.024,0.154,0.254,0.5820000000000001,0.161,2008-09 5448,Shaun Livingston,OKC,23.0,200.66,83.91452,None,USA,2004,1,4,12,5.9,2.3,1.7,-9.4,0.015,0.13,0.149,0.551,0.135,2008-09 5449,Pops Mensah-Bonsu,TOR,25.0,208.28,108.86208,George Washington,USA,Undrafted,Undrafted,Undrafted,22,5.0,5.1,0.3,-0.9,0.19699999999999998,0.23399999999999999,0.205,0.447,0.032,2008-09 5450,Tony Parker,SAS,27.0,187.96,81.64656,None,France,2001,1,28,72,22.0,3.1,6.9,6.6,0.013000000000000001,0.094,0.316,0.556,0.371,2008-09 5451,Tony Battie,ORL,33.0,210.82,108.86208,Texas Tech,USA,1997,1,5,77,4.8,3.6,0.4,5.7,0.08800000000000001,0.17,0.159,0.518,0.044000000000000004,2008-09 5452,Tony Allen,BOS,27.0,193.04,96.615096,Oklahoma State,USA,2004,1,25,46,7.8,2.3,1.4,6.6,0.03,0.107,0.21,0.541,0.133,2008-09 5453,Tim Thomas,CHI,32.0,208.28,108.86208,Villanova,USA,1997,1,7,64,8.5,3.1,1.1,-0.8,0.038,0.139,0.2,0.555,0.087,2008-09 5454,Tim Duncan,SAS,33.0,210.82,117.93392,Wake Forest,US Virgin Islands,1997,1,1,75,19.3,10.7,3.5,5.0,0.099,0.27699999999999997,0.287,0.5489999999999999,0.188,2008-09 5455,Thomas Gardner,ATL,24.0,195.58,102.0582,Missouri,USA,Undrafted,Undrafted,Undrafted,16,1.5,0.4,0.1,7.7,0.0,0.073,0.191,0.318,0.042,2008-09 5456,Theo Ratliff,PHI,36.0,208.28,106.59411999999999,Wyoming,USA,1995,1,18,46,1.9,2.8,0.2,-1.0,0.09699999999999999,0.171,0.075,0.56,0.024,2008-09 5457,Thaddeus Young,PHI,21.0,203.2,99.79024,Georgia Tech,USA,2007,1,12,75,15.3,5.0,1.1,3.5,0.064,0.111,0.205,0.5489999999999999,0.057,2008-09 5458,Thabo Sefolosha,OKC,25.0,200.66,97.52228000000001,None,Switzerland,2006,1,13,66,5.9,3.7,1.7,-4.7,0.042,0.153,0.139,0.5,0.11800000000000001,2008-09 5459,Tayshaun Prince,DET,29.0,205.74,97.52228000000001,Kentucky,USA,2002,1,23,82,14.2,5.8,3.1,-1.8,0.049,0.13699999999999998,0.192,0.516,0.139,2008-09 5460,Tarence Kinsey,CLE,25.0,198.12,85.728888,South Carolina,USA,Undrafted,Undrafted,Undrafted,50,2.0,0.8,0.2,-4.6,0.047,0.11199999999999999,0.18,0.595,0.062,2008-09 5461,Tracy McGrady,HOU,30.0,203.2,101.151016,None,USA,1997,1,9,35,15.6,4.4,5.0,2.4,0.02,0.125,0.245,0.49200000000000005,0.256,2008-09 5462,T.J. Ford,IND,26.0,182.88,74.84268,Texas,USA,2003,1,8,74,14.9,3.5,5.3,-1.3,0.027999999999999997,0.099,0.235,0.5329999999999999,0.278,2008-09 5463,Stromile Swift,PHX,29.0,208.28,99.79024,Louisiana State,USA,2000,1,2,19,3.3,2.4,0.2,-1.8,0.09300000000000001,0.175,0.19399999999999998,0.46,0.025,2008-09 5464,Steven Hill,OKC,23.0,213.36,111.13004,Arkansas,USA,Undrafted,Undrafted,Undrafted,1,2.0,3.0,0.0,79.0,0.4,0.5,0.10099999999999999,1.0,0.0,2008-09 5465,Steve Novak,LAC,26.0,208.28,99.79024,Marquette,USA,2006,2,32,71,6.9,1.8,0.6,-10.2,0.018000000000000002,0.105,0.168,0.606,0.061,2008-09 5466,Steve Nash,PHX,35.0,190.5,80.73937600000001,Santa Clara,Canada,1996,1,15,74,15.7,3.0,9.7,5.2,0.01,0.08900000000000001,0.21100000000000002,0.615,0.40299999999999997,2008-09 5467,Steve Blake,POR,29.0,190.5,78.017824,Maryland,USA,2003,2,38,69,11.0,2.5,5.0,9.9,0.015,0.085,0.17,0.557,0.243,2008-09 5468,Stephon Marbury,BOS,32.0,187.96,92.98635999999999,Georgia Tech,USA,1996,1,4,23,3.8,1.2,3.3,-3.2,0.006,0.07,0.17600000000000002,0.377,0.27399999999999997,2008-09 5469,Stephen Jackson,GSW,31.0,203.2,97.52228000000001,Butler Community College,USA,1997,2,42,59,20.7,5.1,6.5,-3.0,0.033,0.11,0.253,0.53,0.254,2008-09 5470,Stephen Graham,IND,27.0,198.12,97.52228000000001,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,52,5.4,1.8,0.6,-0.1,0.033,0.12,0.209,0.498,0.07400000000000001,2008-09 5471,Spencer Hawes,SAC,21.0,213.36,111.13004,Washington,USA,2007,1,10,77,11.4,7.1,1.9,-11.3,0.076,0.21100000000000002,0.204,0.509,0.111,2008-09 5472,Speedy Claxton,ATL,31.0,180.34,77.11064,Hofstra,USA,2000,1,20,2,2.5,0.0,1.5,-14.1,0.0,0.0,0.267,0.317,0.375,2008-09 5473,Sonny Weems,DEN,22.0,198.12,92.079176,Arkansas,USA,2008,2,39,12,1.6,0.3,0.3,-34.0,0.0,0.073,0.272,0.33299999999999996,0.12,2008-09 5474,Sun Sun,LAL,23.0,205.74,92.98635999999999,None,USA,2007,2,40,10,0.6,0.0,0.2,-82.9,0.0,0.0,0.187,0.273,0.11800000000000001,2008-09 5475,Solomon Jones,ATL,24.0,208.28,111.13004,South Florida,USA,2006,2,33,63,3.0,2.3,0.2,-4.1,0.09,0.156,0.11599999999999999,0.655,0.037000000000000005,2008-09 5476,Travis Diener,IND,27.0,185.42,79.3786,Marquette,USA,2005,2,38,55,3.7,1.6,2.2,-0.7,0.01,0.122,0.127,0.555,0.242,2008-09 5477,Trenton Hassell,NJN,30.0,195.58,105.68693600000002,Austin Peay,USA,2001,2,29,53,3.7,2.8,1.0,-8.2,0.052000000000000005,0.10300000000000001,0.1,0.48,0.073,2008-09 5478,Josh McRoberts,IND,22.0,208.28,108.86208,Duke,USA,2007,2,37,33,2.4,2.2,0.5,-1.7,0.102,0.19,0.161,0.451,0.091,2008-09 5479,Zydrunas Ilgauskas,CLE,34.0,220.98,117.93392,None,Lithuania,1996,1,20,65,12.9,7.5,1.0,14.8,0.109,0.212,0.237,0.523,0.06,2008-09 5480,Zaza Pachulia,ATL,25.0,210.82,124.7378,None,Georgia,2003,2,42,77,6.2,5.7,0.7,4.0,0.138,0.21,0.161,0.5710000000000001,0.062,2008-09 5481,Zach Randolph,LAC,27.0,205.74,117.93392,Michigan State,USA,2001,1,19,50,20.8,10.1,2.1,-5.5,0.099,0.23399999999999999,0.27899999999999997,0.531,0.106,2008-09 5482,Yi Jianlian,NJN,21.0,213.36,107.95489599999999,None,USA,2007,1,6,61,8.6,5.3,1.0,-3.9,0.055,0.222,0.207,0.474,0.07,2008-09 5483,Yao Ming,HOU,28.0,228.6,140.61352,None,China,2002,1,1,77,19.7,9.9,1.8,7.8,0.099,0.23199999999999998,0.263,0.618,0.096,2008-09 5484,Yakhouba Diawara,MIA,26.0,200.66,104.32616,Pepperdine,USA,Undrafted,Undrafted,Undrafted,63,3.4,1.3,0.4,-2.8,0.035,0.077,0.136,0.473,0.053,2008-09 5485,Wilson Chandler,NYK,22.0,203.2,99.79024,DePaul,USA,2007,1,23,82,14.4,5.4,2.1,-4.2,0.035,0.147,0.205,0.515,0.098,2008-09 5486,Willie Green,PHI,27.0,190.5,91.171992,Detroit Mercy,USA,2003,2,41,81,8.5,1.6,2.0,0.1,0.019,0.064,0.191,0.493,0.13699999999999998,2008-09 5487,Will Solomon,SAC,30.0,185.42,83.91452,Clemson,USA,2001,2,32,53,5.0,1.2,2.5,-7.3,0.021,0.091,0.20800000000000002,0.506,0.32,2008-09 5488,Will Bynum,DET,26.0,182.88,83.91452,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,57,7.2,1.3,2.8,3.9,0.027999999999999997,0.08800000000000001,0.27699999999999997,0.52,0.34299999999999997,2008-09 5489,Travis Outlaw,POR,24.0,205.74,93.89354399999999,None,USA,2003,1,23,81,12.8,4.1,1.0,3.5,0.038,0.14400000000000002,0.218,0.541,0.066,2008-09 5490,Walter Sharpe,DET,22.0,205.74,111.13004,Alabama-Birmingham,USA,2008,2,32,8,1.0,0.4,0.0,-12.3,0.0,0.12,0.292,0.337,0.0,2008-09 5491,Wally Szczerbiak,CLE,32.0,200.66,108.86208,Miami (OH),USA,1999,1,6,74,7.0,3.1,1.1,5.5,0.035,0.14300000000000002,0.155,0.581,0.086,2008-09 5492,Von Wafer,HOU,23.0,195.58,95.25432,Florida State,USA,2005,2,39,63,9.7,1.8,1.1,4.9,0.019,0.086,0.23399999999999999,0.541,0.1,2008-09 5493,Vladimir Radmanovic,CHA,28.0,208.28,106.59411999999999,None,Serbia,2001,1,12,78,6.9,2.8,1.0,2.3,0.037000000000000005,0.14400000000000002,0.183,0.5489999999999999,0.087,2008-09 5494,Vince Carter,NJN,32.0,198.12,99.79024,North Carolina,USA,1998,1,5,80,20.8,5.1,4.7,-2.3,0.03,0.136,0.268,0.545,0.23,2008-09 5495,Udonis Haslem,MIA,29.0,203.2,106.59411999999999,Florida,USA,Undrafted,Undrafted,Undrafted,75,10.6,8.2,1.1,0.7,0.077,0.215,0.14400000000000002,0.5529999999999999,0.051,2008-09 5496,Tyson Chandler,NOH,26.0,215.9,106.59411999999999,None,USA,2001,1,2,45,8.8,8.7,0.5,8.0,0.13699999999999998,0.183,0.138,0.581,0.023,2008-09 5497,Tyrus Thomas,CHI,22.0,205.74,97.52228000000001,Louisiana State,USA,2006,1,4,79,10.8,6.4,1.0,-3.7,0.078,0.19,0.195,0.525,0.057,2008-09 5498,Tyronn Lue,ORL,32.0,182.88,79.3786,Nebraska,USA,1998,1,23,44,4.2,1.0,1.4,-1.8,0.012,0.087,0.16899999999999998,0.537,0.20600000000000002,2008-09 5499,Troy Murphy,IND,29.0,210.82,111.13004,Notre Dame,USA,2001,1,14,73,14.3,11.8,2.4,-1.4,0.064,0.32799999999999996,0.16899999999999998,0.614,0.10300000000000001,2008-09 5500,Trey Johnson,CLE,24.0,195.58,98.88305600000001,Jackson State,USA,Undrafted,Undrafted,Undrafted,4,1.0,0.3,0.0,-33.6,0.0,0.111,0.253,0.29600000000000004,0.0,2008-09 5501,Trevor Ariza,LAL,24.0,203.2,95.25432,UCLA,USA,2004,2,43,82,8.9,4.3,1.8,8.1,0.064,0.138,0.16699999999999998,0.544,0.106,2008-09 5502,Walter Herrmann,DET,30.0,205.74,102.0582,None,USA,Undrafted,Undrafted,Undrafted,59,3.8,1.8,0.4,1.1,0.048,0.152,0.17,0.514,0.055,2008-09 5503,Shelden Williams,MIN,25.0,205.74,113.398,Duke,USA,2006,1,5,45,4.1,3.4,0.3,-6.1,0.113,0.237,0.18600000000000003,0.503,0.036000000000000004,2008-09 5504,Shawne Williams,DAL,23.0,205.74,102.0582,Memphis,USA,2006,1,17,15,2.8,3.1,0.1,8.1,0.125,0.155,0.17600000000000002,0.345,0.017,2008-09 5505,Shawn Marion,TOR,31.0,200.66,103.418976,Nevada-Las Vegas,USA,1999,1,9,69,12.9,8.5,2.0,0.2,0.083,0.19699999999999998,0.17600000000000002,0.522,0.086,2008-09 5506,Robin Lopez,PHX,21.0,213.36,115.66596000000001,Stanford,USA,2008,1,15,60,3.2,2.0,0.1,-2.9,0.099,0.12300000000000001,0.139,0.5660000000000001,0.019,2008-09 5507,Robert Swift,OKC,23.0,215.9,122.46983999999999,None,USA,2004,1,12,26,3.3,3.4,0.3,-7.8,0.069,0.221,0.11199999999999999,0.551,0.037000000000000005,2008-09 5508,Rob Kurz,GSW,24.0,205.74,105.23334399999999,Notre Dame,USA,Undrafted,Undrafted,Undrafted,40,3.9,2.0,0.5,-14.2,0.07200000000000001,0.11699999999999999,0.16,0.513,0.07200000000000001,2008-09 5509,Ricky Davis,LAC,29.0,200.66,88.45044,Iowa,USA,1998,1,21,36,6.4,1.7,2.3,-14.8,0.013000000000000001,0.077,0.174,0.445,0.16899999999999998,2008-09 5510,Richard Jefferson,MIL,29.0,200.66,102.0582,Arizona,USA,2001,1,13,82,19.6,4.6,2.4,-1.7,0.022000000000000002,0.131,0.248,0.5539999999999999,0.11699999999999999,2008-09 5511,Richard Hamilton,DET,31.0,200.66,87.543256,Connecticut,USA,1999,1,7,67,18.3,3.1,4.4,-0.5,0.022000000000000002,0.084,0.26899999999999996,0.529,0.235,2008-09 5512,Renaldo Balkman,DEN,24.0,203.2,94.34713599999999,South Carolina,USA,2006,1,20,53,5.0,3.8,0.6,3.7,0.13,0.172,0.14400000000000002,0.585,0.068,2008-09 5513,Reggie Evans,PHI,29.0,203.2,111.13004,Iowa,USA,Undrafted,Undrafted,Undrafted,79,3.3,4.6,0.3,-2.5,0.139,0.249,0.13,0.514,0.035,2008-09 5514,Raymond Felton,CHA,25.0,185.42,89.811216,North Carolina,USA,2005,1,5,82,14.2,3.8,6.7,-0.9,0.022000000000000002,0.10099999999999999,0.218,0.483,0.306,2008-09 5515,Ray Allen,BOS,33.0,195.58,92.98635999999999,Connecticut,USA,1996,1,5,79,18.2,3.5,2.8,11.8,0.03,0.084,0.209,0.624,0.121,2008-09 5516,Rasual Butler,NOH,30.0,200.66,92.98635999999999,La Salle,USA,2002,2,52,82,11.2,3.3,0.9,0.7,0.023,0.10099999999999999,0.168,0.541,0.047,2008-09 5517,Rodney Carney,MIN,25.0,200.66,91.171992,Memphis,USA,2006,1,16,67,7.2,1.9,0.4,-5.5,0.033,0.08900000000000001,0.187,0.532,0.038,2008-09 5518,Rasho Nesterovic,IND,33.0,213.36,115.66596000000001,None,Slovenia,1998,1,17,70,6.8,3.4,1.6,-4.1,0.087,0.133,0.188,0.524,0.145,2008-09 5519,Rashard Lewis,ORL,29.0,208.28,104.32616,None,USA,1998,2,32,79,17.7,5.7,2.6,11.1,0.038,0.139,0.22,0.58,0.121,2008-09 5520,Rashad McCants,SAC,24.0,193.04,97.52228000000001,North Carolina,USA,2005,1,14,58,9.6,1.9,1.2,-9.7,0.021,0.098,0.247,0.504,0.11699999999999999,2008-09 5521,Randy Foye,MIN,25.0,193.04,96.615096,Villanova,USA,2006,1,7,70,16.3,3.1,4.3,-5.8,0.016,0.08800000000000001,0.226,0.517,0.19699999999999998,2008-09 5522,Randolph Morris,ATL,23.0,210.82,124.7378,Kentucky,USA,Undrafted,Undrafted,Undrafted,23,0.8,0.9,0.1,6.3,0.055,0.222,0.128,0.48,0.032,2008-09 5523,Ramon Sessions,MIL,23.0,190.5,86.18248,Nevada,USA,2007,2,56,79,12.4,3.4,5.7,-0.7,0.033,0.11599999999999999,0.22,0.525,0.34600000000000003,2008-09 5524,Rajon Rondo,BOS,23.0,185.42,77.56423199999999,Kentucky,USA,2006,1,21,80,11.9,5.2,8.2,10.8,0.049,0.139,0.191,0.5429999999999999,0.377,2008-09 5525,Raja Bell,CHA,32.0,195.58,97.52228000000001,Florida International,U.S. Virgin Islands,Undrafted,Undrafted,Undrafted,67,11.9,3.6,2.1,1.6,0.023,0.102,0.16399999999999998,0.5479999999999999,0.095,2008-09 5526,Rafer Alston,ORL,32.0,187.96,79.3786,Fresno State,USA,1998,2,39,77,11.7,2.9,5.3,3.6,0.016,0.087,0.196,0.494,0.271,2008-09 5527,Quinton Ross,MEM,28.0,198.12,87.543256,Southern Methodist,USA,Undrafted,Undrafted,Undrafted,68,3.9,1.9,0.7,-3.0,0.028999999999999998,0.10099999999999999,0.125,0.478,0.065,2008-09 5528,Quincy Douby,TOR,25.0,190.5,79.3786,Rutgers,USA,2006,1,19,27,4.3,1.2,0.9,-8.4,0.023,0.09699999999999999,0.192,0.486,0.135,2008-09 5529,Quentin Richardson,NYK,29.0,198.12,106.59411999999999,DePaul,USA,2000,1,18,72,10.2,4.4,1.6,-3.5,0.04,0.14400000000000002,0.183,0.51,0.09300000000000001,2008-09 5530,Rasheed Wallace,DET,34.0,210.82,104.32616,North Carolina,USA,1995,1,4,66,12.0,7.4,1.4,1.3,0.031,0.239,0.18600000000000003,0.52,0.07,2008-09 5531,Rodney Stuckey,DET,23.0,195.58,92.98635999999999,Eastern Washington,USA,2007,1,15,79,13.4,3.5,4.9,-2.4,0.032,0.099,0.231,0.508,0.26,2008-09 5532,Roger Mason Jr.,SAS,28.0,195.58,96.16150400000001,Virginia,USA,2002,2,30,82,11.8,3.1,2.1,5.2,0.008,0.111,0.19,0.5539999999999999,0.109,2008-09 5533,Roko Ukic,TOR,24.0,195.58,83.007336,None,USA,2005,2,41,72,4.2,1.0,2.1,-5.5,0.034,0.06,0.20800000000000002,0.43,0.285,2008-09 5534,Shavlik Randolph,POR,25.0,208.28,108.86208,Duke,USA,Undrafted,Undrafted,Undrafted,10,1.8,1.8,0.0,-43.7,0.28600000000000003,0.364,0.24100000000000002,0.61,0.0,2008-09 5535,Shaquille O'Neal,PHX,37.0,215.9,147.4174,Louisiana State,USA,1992,1,1,75,17.8,8.4,1.7,3.1,0.10400000000000001,0.22,0.245,0.623,0.084,2008-09 5536,Shannon Brown,LAL,23.0,193.04,95.707912,Michigan State,USA,2006,1,25,48,4.2,0.9,0.8,-3.0,0.028999999999999998,0.084,0.213,0.5539999999999999,0.139,2008-09 5537,Shane Battier,HOU,30.0,203.2,99.79024,Duke,USA,2001,1,6,60,7.3,4.8,2.3,6.2,0.032,0.124,0.099,0.568,0.098,2008-09 5538,Sergio Rodriguez,POR,23.0,190.5,79.83219199999998,None,Spain,2006,1,27,80,4.5,1.6,3.6,0.5,0.045,0.09,0.185,0.491,0.365,2008-09 5539,Sebastian Telfair,MIN,24.0,182.88,79.3786,None,USA,2004,1,13,75,9.8,1.7,4.6,-3.4,0.017,0.055,0.195,0.48100000000000004,0.254,2008-09 5540,Sean Williams,NJN,22.0,208.28,106.59411999999999,Boston College,USA,2007,1,17,33,2.4,2.4,0.4,-3.3,0.11199999999999999,0.151,0.13699999999999998,0.465,0.054000000000000006,2008-09 5541,Sean Singletary,CHA,23.0,182.88,83.91452,Virginia,USA,2008,2,42,37,2.4,0.9,0.8,-7.3,0.04,0.102,0.185,0.478,0.174,2008-09 5542,Sean May,CHA,25.0,205.74,120.655472,North Carolina,USA,2005,1,13,24,3.9,2.9,0.4,-14.4,0.075,0.193,0.214,0.435,0.068,2008-09 5543,Sean Marks,NOH,33.0,208.28,113.398,California,New Zealand,1998,2,44,60,3.2,3.1,0.2,-1.9,0.087,0.18100000000000002,0.126,0.521,0.027999999999999997,2008-09 5544,Sasha Vujacic,LAL,25.0,200.66,92.98635999999999,None,Slovenia,2004,1,27,80,5.8,1.7,1.4,2.6,0.016,0.10300000000000001,0.158,0.531,0.13,2008-09 5545,Sasha Pavlovic,CLE,25.0,200.66,106.59411999999999,None,Montenegro,2003,1,19,66,4.6,1.9,1.1,4.9,0.036000000000000004,0.106,0.155,0.51,0.107,2008-09 5546,Samuel Dalembert,PHI,29.0,210.82,113.398,Seton Hall,Haiti,2001,1,26,82,6.4,8.5,0.2,1.2,0.127,0.29,0.13699999999999998,0.535,0.013000000000000001,2008-09 5547,Ryan Hollins,DAL,24.0,213.36,104.32616,UCLA,USA,2006,2,50,45,3.2,2.2,0.2,4.8,0.125,0.129,0.157,0.569,0.024,2008-09 5548,Ryan Gomes,MIN,26.0,200.66,111.13004,Providence,USA,2005,2,50,82,13.3,4.8,1.6,-8.3,0.046,0.134,0.204,0.518,0.087,2008-09 5549,Ryan Bowen,NOH,33.0,205.74,98.88305600000001,Iowa,USA,1998,2,55,21,2.2,1.1,0.4,-6.9,0.057999999999999996,0.081,0.099,0.585,0.067,2008-09 5550,Ryan Anderson,NJN,21.0,208.28,108.86208,California,USA,2008,1,21,66,7.4,4.7,0.8,-0.7,0.096,0.19,0.184,0.532,0.065,2008-09 5551,Russell Westbrook,OKC,20.0,190.5,84.821704,UCLA,USA,2008,1,4,82,15.3,4.9,5.3,-5.7,0.075,0.096,0.256,0.489,0.273,2008-09 5552,Rudy Gay,MEM,22.0,203.2,100.697424,Connecticut,USA,2006,1,8,79,18.9,5.5,1.7,-7.8,0.045,0.14,0.256,0.528,0.085,2008-09 5553,Rudy Fernandez,POR,24.0,198.12,83.91452,None,Spain,2007,1,24,78,10.4,2.7,2.0,5.0,0.028999999999999998,0.099,0.184,0.588,0.133,2008-09 5554,Royal Ivey,PHI,27.0,193.04,97.52228000000001,Texas,USA,2004,2,37,71,3.0,1.1,0.6,-6.8,0.025,0.08199999999999999,0.132,0.465,0.081,2008-09 5555,Roy Hibbert,IND,22.0,218.44,126.098576,Georgetown,USA,2008,1,17,70,7.1,3.5,0.7,-2.6,0.12,0.13699999999999998,0.23199999999999998,0.51,0.077,2008-09 5556,Ronny Turiaf,GSW,26.0,208.28,113.398,Gonzaga,France,2005,2,37,79,5.9,4.6,2.1,-1.4,0.06,0.172,0.128,0.5589999999999999,0.14300000000000002,2008-09 5557,Ronnie Price,UTA,26.0,187.96,83.46092800000001,Utah Valley,USA,Undrafted,Undrafted,Undrafted,52,4.0,1.3,2.1,-2.9,0.02,0.091,0.17600000000000002,0.465,0.221,2008-09 5558,Ronnie Brewer,UTA,24.0,200.66,102.965384,Arkansas,USA,2006,1,14,81,13.7,3.7,2.2,1.1,0.046,0.09300000000000001,0.187,0.565,0.105,2008-09 5559,Peja Stojakovic,NOH,32.0,208.28,103.872568,None,Serbia and Montenegro,1996,1,14,61,13.3,4.3,1.2,5.0,0.026000000000000002,0.128,0.187,0.531,0.055999999999999994,2008-09 5560,Josh Howard,DAL,29.0,200.66,95.25432,Wake Forest,USA,2003,1,29,52,18.0,5.1,1.6,6.4,0.042,0.13699999999999998,0.266,0.532,0.08199999999999999,2008-09 5561,Johan Petro,DEN,23.0,213.36,112.037224,None,France,2005,1,25,49,3.3,3.2,0.3,-16.8,0.08,0.245,0.172,0.429,0.047,2008-09 5562,Jose Calderon,TOR,27.0,190.5,95.25432,None,Spain,Undrafted,Undrafted,Undrafted,68,12.8,2.9,8.9,-2.6,0.008,0.08900000000000001,0.16899999999999998,0.613,0.40299999999999997,2008-09 5563,Chris Duhon,NYK,26.0,185.42,83.91452,Duke,USA,2004,2,38,79,11.1,3.1,7.2,-4.0,0.016,0.078,0.149,0.569,0.27899999999999997,2008-09 5564,Chris Douglas-Roberts,NJN,22.0,200.66,90.7184,Memphis,USA,2008,2,40,44,4.9,1.1,1.2,3.7,0.028999999999999998,0.076,0.191,0.531,0.152,2008-09 5565,Chris Bosh,TOR,25.0,208.28,104.32616,Georgia Tech,USA,2003,1,4,77,22.7,10.0,2.5,-1.0,0.08900000000000001,0.221,0.27,0.569,0.114,2008-09 5566,Chris Andersen,DEN,30.0,208.28,103.418976,Blinn,USA,Undrafted,Undrafted,Undrafted,71,6.4,6.2,0.4,4.2,0.134,0.207,0.131,0.608,0.033,2008-09 5567,Cheikh Samb,NYK,24.0,215.9,111.13004,None,USA,2006,2,51,18,0.8,1.3,0.1,0.6,0.128,0.163,0.209,0.214,0.019,2008-09 5568,Chauncey Billups,DEN,32.0,190.5,91.625584,Colorado,USA,1997,1,3,79,17.7,3.0,6.4,5.2,0.013999999999999999,0.087,0.22,0.5920000000000001,0.287,2008-09 5569,Charlie Villanueva,MIL,24.0,210.82,105.23334399999999,Connecticut,USA,2005,1,7,78,16.2,6.7,1.8,-1.4,0.083,0.214,0.284,0.529,0.11900000000000001,2008-09 5570,Charlie Bell,MIL,30.0,190.5,90.7184,Michigan State,USA,Undrafted,Undrafted,Undrafted,70,8.4,1.9,2.2,-2.9,0.02,0.071,0.16,0.525,0.13699999999999998,2008-09 5571,Channing Frye,POR,26.0,210.82,111.13004,Arizona,USA,2005,1,8,63,4.2,2.2,0.4,-7.5,0.065,0.171,0.19699999999999998,0.465,0.057999999999999996,2008-09 5572,Cedric Simmons,SAC,23.0,205.74,106.59411999999999,North Carolina State,USA,2006,1,15,18,1.6,0.9,0.1,-15.0,0.065,0.16399999999999998,0.18100000000000002,0.45299999999999996,0.042,2008-09 5573,Cartier Martin,CHA,24.0,200.66,99.79024,Kansas State,USA,Undrafted,Undrafted,Undrafted,33,2.6,1.0,0.4,6.5,0.034,0.115,0.172,0.489,0.078,2008-09 5574,Chris Kaman,LAC,27.0,213.36,120.20188,Central Michigan,USA,2003,1,6,31,12.0,8.0,1.5,-9.0,0.09300000000000001,0.221,0.209,0.552,0.085,2008-09 5575,Caron Butler,WAS,29.0,200.66,103.418976,Connecticut,USA,2002,1,10,67,20.8,6.2,4.3,-9.0,0.053,0.13699999999999998,0.259,0.552,0.19399999999999998,2008-09 5576,Carlos Boozer,UTA,27.0,205.74,120.655472,Duke,USA,2002,2,34,37,16.2,10.4,2.1,-2.2,0.10800000000000001,0.282,0.242,0.523,0.11,2008-09 5577,Carl Landry,HOU,25.0,205.74,112.490816,Purdue,USA,2007,2,31,69,9.2,5.0,0.6,0.5,0.10300000000000001,0.177,0.18,0.634,0.048,2008-09 5578,Calvin Booth,SAC,33.0,210.82,104.32616,Penn State,USA,1999,2,35,8,2.0,1.4,0.0,-23.8,0.094,0.113,0.11599999999999999,0.5920000000000001,0.0,2008-09 5579,CJ Miles,UTA,22.0,198.12,102.965384,None,USA,2005,2,34,72,9.1,2.3,1.5,0.4,0.033,0.092,0.183,0.546,0.098,2008-09 5580,C.J. Watson,GSW,25.0,187.96,79.3786,Tennessee,USA,Undrafted,Undrafted,Undrafted,77,9.5,2.5,2.7,-2.1,0.023,0.09,0.168,0.564,0.165,2008-09 5581,Bruce Bowen,SAS,38.0,200.66,90.7184,Cal State-Fullerton,USA,Undrafted,Undrafted,Undrafted,80,2.7,1.8,0.5,0.4,0.013000000000000001,0.1,0.07200000000000001,0.539,0.040999999999999995,2008-09 5582,Brook Lopez,NJN,21.0,213.36,117.93392,Stanford,USA,2008,1,10,82,13.0,8.1,1.0,-2.6,0.105,0.212,0.201,0.568,0.06,2008-09 5583,Brian Skinner,LAC,33.0,205.74,115.66596000000001,Baylor,USA,1998,1,22,51,4.2,4.0,0.5,-16.5,0.092,0.187,0.146,0.474,0.054000000000000006,2008-09 5584,Brian Scalabrine,BOS,31.0,205.74,106.59411999999999,Southern California,USA,2001,2,34,39,3.5,1.3,0.5,11.0,0.018000000000000002,0.096,0.121,0.5579999999999999,0.051,2008-09 5585,Brian Cook,HOU,28.0,205.74,113.398,Illinois,USA,2003,1,24,30,2.5,1.1,0.2,-11.2,0.045,0.16399999999999998,0.247,0.47,0.061,2008-09 5586,Brian Cardinal,MIN,32.0,203.2,108.86208,Purdue,USA,2000,2,44,64,3.0,2.2,1.2,-1.6,0.051,0.138,0.11699999999999999,0.515,0.126,2008-09 5587,Carmelo Anthony,DEN,25.0,203.2,104.32616,Syracuse,USA,2003,1,3,66,22.8,6.8,3.4,7.1,0.055999999999999994,0.171,0.316,0.532,0.172,2008-09 5588,Brevin Knight,UTA,33.0,177.8,75.296272,Stanford,USA,1997,1,16,74,2.4,1.2,2.6,3.6,0.016,0.095,0.134,0.414,0.307,2008-09 5589,Chris Mihm,LAL,29.0,213.36,120.20188,Texas,USA,2000,1,7,18,2.0,1.9,0.6,-17.2,0.153,0.184,0.21899999999999997,0.418,0.172,2008-09 5590,Chris Quinn,MIA,25.0,187.96,79.3786,Notre Dame,USA,Undrafted,Undrafted,Undrafted,66,5.1,1.1,2.0,-1.3,0.01,0.085,0.174,0.539,0.22899999999999998,2008-09 5591,Darnell Jackson,CLE,23.0,205.74,114.758776,Kansas,USA,2008,2,52,51,1.9,1.7,0.2,-7.5,0.094,0.155,0.128,0.483,0.03,2008-09 5592,Darko Milicic,MEM,24.0,213.36,124.7378,None,Serbia,2003,1,2,61,5.5,4.3,0.6,-4.0,0.096,0.203,0.162,0.5329999999999999,0.054000000000000006,2008-09 5593,Darius Songaila,WAS,31.0,205.74,112.490816,Wake Forest,Lithuania,2002,2,49,77,7.4,2.9,1.2,-5.4,0.057999999999999996,0.121,0.172,0.57,0.10099999999999999,2008-09 5594,Darius Miles,MEM,27.0,205.74,106.59411999999999,None,USA,2000,1,3,34,3.5,1.7,0.5,-13.2,0.076,0.158,0.21100000000000002,0.5329999999999999,0.11599999999999999,2008-09 5595,Danny Granger,IND,26.0,203.2,103.418976,New Mexico,USA,2005,1,17,67,25.8,5.1,2.7,1.2,0.022000000000000002,0.133,0.294,0.584,0.127,2008-09 5596,Danilo Gallinari,NYK,20.0,208.28,102.0582,None,Italy,2008,1,6,28,6.1,2.0,0.5,4.9,0.035,0.115,0.161,0.621,0.054000000000000006,2008-09 5597,Daniel Gibson,CLE,23.0,187.96,90.7184,Texas,USA,2006,2,42,75,7.8,2.1,1.8,7.0,0.022000000000000002,0.079,0.165,0.519,0.11900000000000001,2008-09 5598,Dan Gadzuric,MIL,31.0,210.82,111.13004,UCLA,Netherlands,2002,2,33,67,4.0,3.8,0.6,-2.5,0.11800000000000001,0.213,0.151,0.495,0.063,2008-09 5599,Damon Jones,MIL,32.0,190.5,88.45044,Houston,USA,Undrafted,Undrafted,Undrafted,18,1.8,0.3,0.4,1.7,0.0,0.065,0.17,0.485,0.086,2008-09 5600,Damien Wilkins,OKC,29.0,198.12,102.0582,Georgia,USA,Undrafted,Undrafted,Undrafted,41,5.3,1.7,0.9,-11.7,0.034,0.10400000000000001,0.187,0.467,0.10300000000000001,2008-09 5601,Dahntay Jones,DEN,28.0,198.12,95.25432,Duke,USA,2003,1,20,79,5.4,2.1,1.0,-1.0,0.048,0.08900000000000001,0.151,0.5329999999999999,0.083,2008-09 5602,Chris Paul,NOH,24.0,182.88,79.3786,Wake Forest,USA,2005,1,4,78,22.8,5.5,11.0,6.5,0.027999999999999997,0.14300000000000002,0.273,0.599,0.512,2008-09 5603,Daequan Cook,MIA,22.0,195.58,95.25432,Ohio State,USA,2007,1,21,75,9.1,2.5,0.9,-0.3,0.012,0.111,0.182,0.512,0.062,2008-09 5604,DJ Mbenga,LAL,28.0,213.36,115.66596000000001,None,Democratic Republic of the Congo,Undrafted,Undrafted,Undrafted,23,2.7,1.3,0.4,0.4,0.054000000000000006,0.126,0.18,0.504,0.078,2008-09 5605,D.J. Augustin,CHA,21.0,182.88,81.64656,Texas,USA,2008,1,9,72,11.8,1.8,3.5,-1.3,0.011000000000000001,0.076,0.20800000000000002,0.5870000000000001,0.237,2008-09 5606,Cuttino Mobley,LAC,33.0,193.04,97.52228000000001,Rhode Island,USA,1998,2,41,11,13.7,2.6,1.1,-9.0,0.025,0.066,0.212,0.491,0.055,2008-09 5607,Craig Smith,MIN,25.0,200.66,113.398,Boston College,USA,2006,2,36,74,10.1,3.8,1.1,-6.6,0.079,0.153,0.231,0.599,0.09699999999999999,2008-09 5608,Courtney Sims,NYK,25.0,210.82,111.13004,Michigan,USA,Undrafted,Undrafted,Undrafted,2,3.0,2.0,0.0,6.0,0.154,0.2,0.231,0.5,0.0,2008-09 5609,Courtney Lee,ORL,23.0,195.58,90.7184,Western Kentucky,USA,2008,1,22,77,8.4,2.3,1.2,8.2,0.011000000000000001,0.09,0.156,0.556,0.07400000000000001,2008-09 5610,Corey Maggette,GSW,29.0,198.12,102.0582,Duke,USA,1999,1,13,51,18.6,5.5,1.8,-3.9,0.035,0.166,0.253,0.5820000000000001,0.095,2008-09 5611,Corey Brewer,MIN,23.0,205.74,85.275296,Florida,USA,2007,1,7,15,6.2,3.3,1.7,0.8,0.07,0.124,0.163,0.473,0.125,2008-09 5612,Chucky Atkins,OKC,34.0,180.34,83.91452,South Florida,USA,Undrafted,Undrafted,Undrafted,33,3.0,0.7,1.8,-6.9,0.013999999999999999,0.05,0.156,0.408,0.22399999999999998,2008-09 5613,Chuck Hayes,HOU,26.0,198.12,107.95489599999999,Kentucky,USA,Undrafted,Undrafted,Undrafted,71,1.3,3.5,0.6,-1.4,0.098,0.243,0.08,0.375,0.076,2008-09 5614,Chris Wilcox,NYK,26.0,208.28,106.59411999999999,Maryland,USA,2002,1,8,62,7.2,4.5,0.8,-8.5,0.10300000000000001,0.20600000000000002,0.214,0.518,0.081,2008-09 5615,DJ White,OKC,22.0,205.74,113.851592,Indiana,USA,2008,1,29,7,8.9,4.6,0.9,-0.2,0.09300000000000001,0.204,0.204,0.556,0.07,2008-09 5616,Darrell Arthur,MEM,21.0,205.74,102.0582,Kansas,USA,2008,1,27,76,5.6,4.6,0.6,-7.3,0.08800000000000001,0.203,0.163,0.456,0.049,2008-09 5617,Brent Barry,HOU,37.0,200.66,95.25432,Oregon State,USA,1995,1,15,56,3.7,1.7,1.4,1.1,0.023,0.106,0.12300000000000001,0.575,0.141,2008-09 5618,Brandon Rush,IND,23.0,198.12,95.25432,Kansas,USA,2008,1,13,75,8.1,3.1,0.9,-4.2,0.02,0.122,0.166,0.505,0.055999999999999994,2008-09 5619,Andrew Bogut,MIL,24.0,213.36,117.93392,Utah,Australia,2005,1,1,36,11.7,10.3,2.0,4.4,0.121,0.266,0.18100000000000002,0.586,0.109,2008-09 5620,Andres Nocioni,SAC,29.0,200.66,102.0582,None,Argentina,Undrafted,Undrafted,Undrafted,76,11.4,4.8,1.3,-0.3,0.032,0.179,0.201,0.555,0.081,2008-09 5621,Andrei Kirilenko,UTA,28.0,205.74,102.0582,None,Russia,1999,1,24,67,11.6,4.8,2.6,7.0,0.055,0.154,0.203,0.5489999999999999,0.151,2008-09 5622,Andrea Bargnani,TOR,23.0,213.36,113.398,None,Italy,2006,1,1,78,15.4,5.3,1.2,-4.9,0.034,0.165,0.22899999999999998,0.5589999999999999,0.065,2008-09 5623,Andre Miller,PHI,33.0,187.96,90.7184,Utah,USA,1999,1,8,82,16.3,4.5,6.5,1.1,0.05,0.098,0.218,0.5479999999999999,0.298,2008-09 5624,Andre Iguodala,PHI,25.0,198.12,93.89354399999999,Arizona,USA,2004,1,9,82,18.8,5.7,5.3,1.5,0.034,0.139,0.22399999999999998,0.56,0.221,2008-09 5625,Andre Brown,CHA,28.0,205.74,111.13004,DePaul,USA,Undrafted,Undrafted,Undrafted,4,1.0,3.0,0.3,-7.9,0.26899999999999996,0.128,0.141,0.254,0.038,2008-09 5626,Andray Blatche,WAS,22.0,210.82,112.490816,None,USA,2005,2,49,71,10.0,5.3,1.7,-6.7,0.087,0.179,0.221,0.508,0.11800000000000001,2008-09 5627,Anderson Varejao,CLE,26.0,210.82,117.93392,None,Brazil,2004,2,30,81,8.6,7.2,1.0,10.7,0.08900000000000001,0.209,0.142,0.565,0.055,2008-09 5628,Amir Johnson,DET,22.0,205.74,95.25432,None,USA,2005,2,56,62,3.5,3.7,0.3,5.6,0.13,0.168,0.111,0.608,0.033,2008-09 5629,Amar'e Stoudemire,PHX,26.0,208.28,112.94440800000001,None,USA,2002,1,9,53,21.4,8.1,2.0,3.3,0.076,0.17800000000000002,0.248,0.617,0.087,2008-09 5630,Andrew Bynum,LAL,21.0,213.36,129.27372,None,USA,2005,1,10,50,14.3,8.0,1.4,7.6,0.10800000000000001,0.2,0.21,0.598,0.076,2008-09 5631,Allen Iverson,DET,34.0,182.88,81.64656,Georgetown,USA,1996,1,1,57,17.5,3.0,5.0,-1.6,0.017,0.08,0.261,0.504,0.23800000000000002,2008-09 5632,Alex Acker,LAC,26.0,195.58,83.91452,Pepperdine,USA,2005,2,60,25,2.9,1.0,0.5,1.8,0.044000000000000004,0.092,0.203,0.44799999999999995,0.091,2008-09 5633,Alando Tucker,PHX,25.0,198.12,92.98635999999999,Wisconsin,USA,2007,1,29,30,4.6,1.0,0.4,2.1,0.07,0.048,0.21600000000000003,0.509,0.064,2008-09 5634,Al Thornton,LAC,25.0,203.2,99.79024,Florida State,USA,2007,1,14,71,16.8,5.2,1.5,-10.6,0.052000000000000005,0.114,0.228,0.502,0.068,2008-09 5635,Al Jefferson,MIN,24.0,208.28,120.20188,None,USA,2004,1,15,50,23.1,11.0,1.6,-4.6,0.107,0.24600000000000002,0.28800000000000003,0.532,0.08199999999999999,2008-09 5636,Al Horford,ATL,23.0,208.28,111.13004,Florida,Dominican Republic,2007,1,3,67,11.5,9.3,2.4,0.9,0.077,0.25,0.168,0.565,0.11900000000000001,2008-09 5637,Al Harrington,NYK,29.0,205.74,113.398,None,USA,1998,1,25,73,20.1,6.2,1.4,-1.9,0.040999999999999995,0.162,0.256,0.547,0.068,2008-09 5638,Adonal Foyle,ORL,34.0,208.28,122.46983999999999,Colgate,St. Vincent & Grenadines,1997,1,8,10,1.7,2.6,0.1,-3.7,0.138,0.258,0.12,0.623,0.027999999999999997,2008-09 5639,Adam Morrison,LAL,24.0,203.2,92.98635999999999,Gonzaga,USA,2006,1,3,52,4.0,1.5,0.8,-7.4,0.032,0.11,0.177,0.44799999999999995,0.10099999999999999,2008-09 5640,Acie Law,ATL,24.0,190.5,91.625584,Texas A&M,USA,2007,1,11,55,2.9,1.1,1.6,1.2,0.013000000000000001,0.1,0.16399999999999998,0.49,0.257,2008-09 5641,Aaron Gray,CHI,24.0,213.36,122.46983999999999,Pittsburgh,USA,2007,2,49,56,3.5,3.9,0.8,-5.3,0.135,0.213,0.142,0.508,0.098,2008-09 5642,Josh Boone,NJN,24.0,208.28,107.501304,Connecticut,USA,2006,1,23,62,4.2,4.2,0.5,-2.7,0.12300000000000001,0.19,0.136,0.513,0.052000000000000005,2008-09 5643,Alexis Ajinca,CHA,21.0,213.36,99.79024,None,France,2008,1,20,31,2.3,1.0,0.1,2.6,0.063,0.153,0.25,0.43,0.032,2008-09 5644,Brendan Haywood,WAS,29.0,213.36,119.294696,North Carolina,USA,2001,1,20,6,9.7,7.3,1.3,-8.7,0.086,0.187,0.177,0.49,0.073,2008-09 5645,Andris Biedrins,GSW,23.0,210.82,108.86208,None,Latvia,2004,1,11,62,11.9,11.2,2.0,-4.6,0.129,0.276,0.17,0.585,0.10099999999999999,2008-09 5646,Anthony Carter,DEN,34.0,187.96,88.45044,Hawaii,USA,Undrafted,Undrafted,Undrafted,78,5.3,2.6,4.7,2.9,0.027000000000000003,0.102,0.141,0.49,0.303,2008-09 5647,Brandon Roy,POR,24.0,198.12,95.707912,Washington,USA,2006,1,6,78,22.6,4.7,5.1,8.9,0.044000000000000004,0.115,0.27399999999999997,0.573,0.243,2008-09 5648,Brandon Bass,DAL,24.0,203.2,113.398,Louisiana State,USA,2005,2,33,81,8.5,4.5,0.5,3.3,0.099,0.17600000000000002,0.201,0.5710000000000001,0.045,2008-09 5649,Brandan Wright,GSW,21.0,208.28,95.25432,North Carolina,USA,2007,1,8,39,8.3,4.0,0.5,-3.5,0.098,0.14400000000000002,0.193,0.57,0.047,2008-09 5650,Brad Miller,CHI,33.0,213.36,118.38751200000002,Purdue,USA,Undrafted,Undrafted,Undrafted,70,11.9,7.8,3.3,-4.7,0.084,0.21899999999999997,0.184,0.5660000000000001,0.17300000000000001,2008-09 5651,Boris Diaw,CHA,27.0,203.2,106.59411999999999,None,France,2003,1,21,81,13.2,5.3,4.1,0.8,0.055,0.136,0.19899999999999998,0.565,0.20800000000000002,2008-09 5652,Bobby Simmons,NJN,29.0,198.12,104.32616,DePaul,USA,2001,2,41,71,7.8,3.9,1.3,-1.0,0.048,0.14300000000000002,0.141,0.596,0.081,2008-09 5653,Bobby Jackson,SAC,36.0,185.42,83.91452,Minnesota,USA,1997,1,23,71,7.5,2.8,2.0,-6.2,0.033,0.126,0.18,0.502,0.16,2008-09 5654,Bobby Brown,MIN,24.0,187.96,79.3786,Cal State-Fullerton,USA,Undrafted,Undrafted,Undrafted,68,5.3,0.8,1.7,-12.5,0.017,0.05,0.21100000000000002,0.47600000000000003,0.214,2008-09 5655,Blake Ahearn,SAS,25.0,187.96,86.18248,Missouri State,USA,Undrafted,Undrafted,Undrafted,3,2.7,0.3,0.7,19.4,0.0,0.067,0.183,0.581,0.2,2008-09 5656,Beno Udrih,SAC,26.0,190.5,92.98635999999999,None,Slovenia,2004,1,28,73,11.0,3.0,4.7,-7.7,0.024,0.08900000000000001,0.182,0.525,0.237,2008-09 5657,Ben Wallace,CLE,34.0,205.74,108.86208,Virginia Union,USA,Undrafted,Undrafted,Undrafted,56,2.9,6.5,0.8,17.9,0.126,0.198,0.077,0.45,0.045,2008-09 5658,Antawn Jamison,WAS,33.0,205.74,106.59411999999999,North Carolina,USA,1998,1,4,81,22.2,8.9,1.9,-9.0,0.071,0.205,0.258,0.5489999999999999,0.09,2008-09 5659,Ben Gordon,CHI,26.0,190.5,90.7184,Connecticut,USA,2004,1,3,82,20.7,3.5,3.4,-1.1,0.02,0.087,0.248,0.573,0.156,2008-09 5660,Austin Croshere,SAS,34.0,208.28,108.86208,Providence,USA,1997,1,12,14,2.9,2.4,0.6,-17.7,0.09699999999999999,0.271,0.20600000000000002,0.452,0.161,2008-09 5661,Arron Afflalo,DET,23.0,195.58,97.52228000000001,UCLA,USA,2007,1,27,74,4.9,1.8,0.6,0.1,0.027999999999999997,0.10099999999999999,0.14300000000000002,0.5479999999999999,0.055,2008-09 5662,Antonio McDyess,DET,34.0,205.74,111.13004,Alabama,USA,1995,1,2,62,9.6,9.8,1.3,-2.9,0.11699999999999999,0.27899999999999997,0.157,0.529,0.073,2008-09 5663,Antonio Daniels,NOH,34.0,193.04,92.98635999999999,Bowling Green,USA,1997,1,4,74,4.1,1.0,2.4,-11.7,0.006,0.09300000000000001,0.16399999999999998,0.536,0.3,2008-09 5664,Antoine Wright,DAL,25.0,200.66,97.52228000000001,Texas A&M,USA,2005,1,15,65,7.3,2.1,1.2,3.2,0.023,0.08,0.156,0.501,0.071,2008-09 5665,Anthony Tolliver,SAS,24.0,203.2,108.86208,Creighton,USA,Undrafted,Undrafted,Undrafted,19,2.7,2.2,0.9,-0.6,0.063,0.171,0.172,0.375,0.134,2008-09 5666,Anthony Roberson,CHI,26.0,187.96,81.64656,Florida,USA,Undrafted,Undrafted,Undrafted,29,4.1,0.8,0.7,-11.5,0.022000000000000002,0.066,0.20600000000000002,0.48700000000000004,0.124,2008-09 5667,Anthony Randolph,GSW,19.0,208.28,95.25432,Louisiana State,USA,2008,1,14,63,7.9,5.8,0.8,-3.8,0.124,0.22399999999999998,0.215,0.506,0.066,2008-09 5668,Anthony Parker,TOR,34.0,198.12,97.52228000000001,Bradley,USA,1997,1,21,80,10.7,4.0,3.4,-1.7,0.021,0.121,0.16399999999999998,0.524,0.157,2008-09 5669,Anthony Morrow,GSW,23.0,195.58,95.25432,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,67,10.1,3.0,1.2,-1.7,0.055999999999999994,0.086,0.177,0.588,0.081,2008-09 5670,Anthony Johnson,ORL,34.0,190.5,88.45044,College of Charleston,USA,1997,2,39,80,5.3,1.8,2.5,4.0,0.023,0.08900000000000001,0.157,0.505,0.223,2008-09 5671,Baron Davis,LAC,30.0,190.5,97.52228000000001,UCLA,USA,1999,1,3,65,14.9,3.7,7.7,-8.3,0.022000000000000002,0.10300000000000001,0.249,0.46,0.365,2008-09 5672,David Lee,NYK,26.0,205.74,108.86208,Florida,USA,2005,1,30,81,16.0,11.7,2.1,-3.3,0.096,0.27699999999999997,0.192,0.59,0.098,2008-09 5673,Aaron Brooks,HOU,24.0,182.88,73.028312,Oregon,USA,2007,1,26,80,11.2,2.0,3.0,4.2,0.021,0.071,0.231,0.521,0.201,2008-09 5674,DeAndre Jordan,LAC,20.0,210.82,113.398,Texas A&M,USA,2008,2,35,53,4.3,4.5,0.2,-15.9,0.107,0.256,0.14,0.585,0.025,2008-09 5675,Jason Collins,MIN,30.0,213.36,115.66596000000001,Stanford,USA,2001,1,18,31,1.8,2.3,0.4,-23.1,0.071,0.135,0.107,0.34600000000000003,0.042,2008-09 5676,Jarvis Hayes,NJN,27.0,203.2,103.418976,Georgia,USA,2003,1,10,74,8.7,3.6,0.7,-0.1,0.018000000000000002,0.155,0.16699999999999998,0.537,0.05,2008-09 5677,Jarron Collins,UTA,30.0,210.82,112.94440800000001,Stanford,USA,2001,2,52,26,1.5,1.4,0.3,-11.2,0.10800000000000001,0.102,0.109,0.502,0.057999999999999996,2008-09 5678,Jarrett Jack,IND,25.0,190.5,89.357624,Georgia Tech,USA,2005,1,22,82,13.1,3.4,4.1,-0.9,0.018000000000000002,0.094,0.184,0.5539999999999999,0.184,2008-09 5679,Jared Jeffries,NYK,27.0,210.82,108.86208,Indiana,USA,2002,1,11,56,5.3,4.1,1.4,-3.4,0.106,0.091,0.126,0.473,0.08800000000000001,2008-09 5680,Jared Dudley,PHX,23.0,200.66,102.0582,Boston College,USA,2007,1,22,68,5.5,3.0,0.8,0.5,0.083,0.131,0.14300000000000002,0.562,0.07200000000000001,2008-09 5681,James White,HOU,26.0,200.66,90.7184,Cincinnati,USA,2006,2,31,4,1.8,0.0,0.3,-31.6,0.0,0.0,0.364,0.7,0.25,2008-09 5682,James Singleton,DAL,27.0,203.2,104.32616,Murray State,USA,Undrafted,Undrafted,Undrafted,62,5.1,4.0,0.3,5.1,0.114,0.191,0.151,0.615,0.031,2008-09 5683,James Posey,NOH,32.0,203.2,98.429464,Xavier,USA,1999,1,18,75,8.9,4.8,1.1,1.4,0.021,0.19,0.15,0.568,0.065,2008-09 5684,James Jones,MIA,28.0,203.2,99.79024,Miami (FL),USA,2003,2,49,40,4.2,1.6,0.5,1.0,0.023,0.098,0.131,0.52,0.049,2008-09 5685,Jameer Nelson,ORL,27.0,182.88,86.18248,Saint Joseph's,USA,2004,1,20,42,16.7,3.5,5.4,15.8,0.018000000000000002,0.10300000000000001,0.22899999999999998,0.612,0.292,2008-09 5686,Jason Hart,DEN,31.0,190.5,81.64656,Syracuse,USA,2000,2,49,39,2.0,1.2,1.2,-20.4,0.038,0.115,0.165,0.375,0.268,2008-09 5687,Jamario Moon,MIA,29.0,203.2,90.7184,Meridian Community College,USA,Undrafted,Undrafted,Undrafted,80,7.2,4.6,1.2,2.0,0.035,0.17300000000000001,0.128,0.5670000000000001,0.07,2008-09 5688,Jamaal Magloire,MIA,31.0,210.82,120.20188,Kentucky,Canada,2000,1,19,55,2.9,4.0,0.4,3.3,0.135,0.251,0.129,0.505,0.047,2008-09 5689,Jake Voskuhl,TOR,31.0,210.82,115.66596000000001,Connecticut,USA,2000,2,33,38,0.9,1.6,0.2,3.3,0.10800000000000001,0.17600000000000002,0.13,0.342,0.043,2008-09 5690,Jacque Vaughn,SAS,34.0,185.42,86.18248,Kansas,USA,1997,1,27,30,2.2,0.7,1.8,-4.8,0.016,0.073,0.16899999999999998,0.392,0.316,2008-09 5691,JaVale McGee,WAS,21.0,213.36,107.501304,Nevada,USA,2008,1,18,75,6.5,3.9,0.3,-12.6,0.11800000000000001,0.18100000000000002,0.205,0.534,0.035,2008-09 5692,JR Smith,DEN,23.0,198.12,99.79024,None,USA,2004,1,18,81,15.2,3.7,2.8,7.6,0.023,0.128,0.23800000000000002,0.5760000000000001,0.172,2008-09 5693,JJ Redick,ORL,25.0,193.04,86.18248,Duke,USA,2006,1,11,64,6.0,1.7,1.1,5.7,0.008,0.099,0.162,0.562,0.105,2008-09 5694,JJ Hickson,CLE,20.0,205.74,109.769264,North Carolina State,USA,2008,1,19,62,4.0,2.7,0.1,-5.1,0.09699999999999999,0.177,0.185,0.5479999999999999,0.023,2008-09 5695,J.R. Giddens,BOS,24.0,195.58,97.52228000000001,New Mexico,USA,2008,1,30,6,0.7,0.5,0.0,15.4,0.4,0.2,0.311,0.667,0.0,2008-09 5696,J.J. Barea,DAL,25.0,182.88,79.3786,Northeastern,Puerto Rico,Undrafted,Undrafted,Undrafted,79,7.8,2.2,3.4,2.0,0.027000000000000003,0.102,0.20600000000000002,0.516,0.272,2008-09 5697,Ime Udoka,SAS,31.0,195.58,99.79024,Portland State,USA,Undrafted,Undrafted,Undrafted,67,4.3,2.8,0.8,6.2,0.031,0.18100000000000002,0.158,0.47,0.083,2008-09 5698,Ike Diogu,SAC,25.0,205.74,113.398,Arizona State,USA,2005,1,9,29,4.1,1.9,0.1,-19.9,0.135,0.17300000000000001,0.233,0.611,0.03,2008-09 5699,Jamal Crawford,GSW,29.0,195.58,90.7184,Michigan,USA,2000,1,8,65,19.7,3.0,4.4,-3.7,0.01,0.07400000000000001,0.228,0.545,0.177,2008-09 5700,Hilton Armstrong,NOH,24.0,210.82,106.59411999999999,Connecticut,USA,2006,1,12,70,4.8,2.8,0.4,-3.9,0.092,0.131,0.165,0.585,0.045,2008-09 5701,Jason Kapono,TOR,28.0,203.2,97.52228000000001,UCLA,USA,2003,2,31,80,8.2,2.0,1.3,-4.2,0.017,0.086,0.172,0.525,0.09300000000000001,2008-09 5702,Jason Maxiell,DET,26.0,200.66,117.93392,Cincinnati,USA,2005,1,26,78,5.8,4.2,0.3,-4.4,0.14,0.136,0.145,0.58,0.027999999999999997,2008-09 5703,David West,NOH,28.0,205.74,108.86208,Xavier,USA,2003,1,18,76,21.0,8.5,2.3,4.1,0.065,0.196,0.263,0.54,0.105,2008-09 5704,John Salmons,CHI,29.0,198.12,93.89354399999999,Miami (FL),USA,2002,1,26,79,18.3,4.2,3.2,-8.4,0.024,0.109,0.21600000000000003,0.58,0.14300000000000002,2008-09 5705,Joey Graham,TOR,27.0,200.66,102.0582,Oklahoma State,USA,2005,1,16,78,7.7,3.7,0.6,-3.9,0.073,0.149,0.185,0.542,0.051,2008-09 5706,Joey Dorsey,HOU,25.0,203.2,121.562656,Memphis,USA,2008,2,33,3,0.7,0.3,0.3,-28.4,0.0,0.25,0.168,0.5,0.5,2008-09 5707,Joel Przybilla,POR,29.0,215.9,111.13004,Minnesota,USA,2000,1,9,82,5.5,8.7,0.3,9.0,0.131,0.324,0.10300000000000001,0.652,0.021,2008-09 5708,Joel Anthony,MIA,26.0,205.74,111.13004,Nevada-Las Vegas,Canada,Undrafted,Undrafted,Undrafted,65,2.2,3.0,0.4,-3.1,0.10400000000000001,0.12300000000000001,0.08199999999999999,0.521,0.038,2008-09 5709,Joe Smith,CLE,33.0,208.28,102.0582,Maryland,USA,1995,1,1,57,6.6,4.6,0.7,-2.1,0.08900000000000001,0.18100000000000002,0.16399999999999998,0.507,0.063,2008-09 5710,Joe Johnson,ATL,28.0,200.66,108.86208,Arkansas,USA,2001,1,10,79,21.4,4.4,5.8,2.6,0.024,0.107,0.265,0.534,0.256,2008-09 5711,Joe Crawford,NYK,23.0,195.58,95.25432,Kentucky,USA,2008,2,58,2,4.5,2.0,0.5,16.8,0.043,0.12,0.21600000000000003,0.414,0.091,2008-09 5712,Joe Alexander,MIL,22.0,203.2,104.32616,West Virginia,USA,2008,1,8,59,4.7,1.9,0.7,-3.1,0.068,0.125,0.201,0.494,0.094,2008-09 5713,Joakim Noah,CHI,24.0,210.82,105.23334399999999,Florida,USA,2007,1,9,80,6.7,7.6,1.3,2.5,0.149,0.21600000000000003,0.124,0.594,0.078,2008-09 5714,Jason Kidd,DAL,36.0,193.04,95.25432,California,USA,1994,1,2,81,9.0,6.2,8.7,5.4,0.034,0.162,0.134,0.55,0.336,2008-09 5715,Jerryd Bayless,POR,20.0,190.5,90.7184,Arizona,USA,2008,1,11,53,4.3,1.1,1.5,-1.4,0.015,0.092,0.205,0.48700000000000004,0.20199999999999999,2008-09 5716,Jerome James,NYK,33.0,215.9,129.27372,Florida A&M,USA,1998,2,36,2,3.0,1.5,0.0,-3.8,0.111,0.25,0.395,0.375,0.0,2008-09 5717,Jermareo Davidson,GSW,24.0,208.28,104.32616,Alabama,USA,2007,2,36,14,3.0,2.4,0.1,-5.0,0.08,0.226,0.17300000000000001,0.494,0.016,2008-09 5718,Jermaine O'Neal,MIA,30.0,210.82,117.02673600000001,None,USA,1996,1,17,68,13.3,6.4,1.8,-3.3,0.076,0.179,0.239,0.522,0.105,2008-09 5719,Jeremy Richardson,ORL,25.0,200.66,88.45044,Delta State,USA,Undrafted,Undrafted,Undrafted,12,3.1,1.2,0.3,-16.4,0.009000000000000001,0.146,0.261,0.358,0.067,2008-09 5720,Jeff Green,OKC,22.0,205.74,106.59411999999999,Georgetown,USA,2007,1,5,78,16.5,6.7,2.0,-8.0,0.047,0.16399999999999998,0.21100000000000002,0.536,0.09,2008-09 5721,Jeff Foster,IND,32.0,210.82,113.398,Texas State,USA,1999,1,21,74,6.1,6.9,1.8,1.8,0.13,0.18,0.12,0.542,0.099,2008-09 5722,Jawad Williams,CLE,26.0,205.74,98.88305600000001,North Carolina,USA,Undrafted,Undrafted,Undrafted,10,1.2,0.2,0.0,13.5,0.063,0.059000000000000004,0.318,0.5,0.0,2008-09 5723,Javaris Crittenton,WAS,21.0,195.58,90.7184,Georgia Tech,USA,2007,1,19,63,5.0,2.6,2.4,-10.0,0.057,0.11199999999999999,0.158,0.48700000000000004,0.20199999999999999,2008-09 5724,Jason Thompson,SAC,22.0,210.82,113.398,Rider,USA,2008,1,12,82,11.1,7.4,1.1,-6.9,0.11800000000000001,0.188,0.191,0.54,0.066,2008-09 5725,Jason Terry,DAL,31.0,187.96,81.64656,Arizona,USA,1999,1,10,74,19.6,2.4,3.4,3.7,0.018000000000000002,0.063,0.256,0.5710000000000001,0.179,2008-09 5726,Jason Richardson,PHX,28.0,198.12,102.0582,Michigan State,USA,2001,1,5,72,16.8,4.4,2.0,-0.4,0.038,0.11800000000000001,0.212,0.5710000000000001,0.092,2008-09 5727,Jerry Stackhouse,DAL,34.0,198.12,98.88305600000001,North Carolina,USA,1995,1,3,10,4.2,1.7,1.2,-24.1,0.032,0.08,0.19399999999999998,0.33299999999999996,0.129,2008-09 5728,Henry Walker,BOS,21.0,198.12,99.79024,Kansas State,USA,2008,2,47,29,3.0,1.0,0.4,-11.0,0.045,0.125,0.182,0.6459999999999999,0.107,2008-09 5729,Jordan Farmar,LAL,22.0,187.96,81.64656,UCLA,USA,2006,1,26,65,6.4,1.8,2.4,1.7,0.021,0.08900000000000001,0.19399999999999998,0.466,0.19399999999999998,2008-09 5730,Hassan Adams,TOR,25.0,193.04,99.79024,Arizona,USA,2006,2,54,12,0.9,0.6,0.1,-17.7,0.02,0.146,0.161,0.35200000000000004,0.03,2008-09 5731,Dwight Howard,ORL,23.0,210.82,120.20188,None,USA,2004,1,1,79,20.6,13.8,1.4,10.6,0.14,0.295,0.26,0.6,0.07200000000000001,2008-09 5732,Dwayne Jones,CHA,26.0,208.28,113.851592,Saint Joseph's,USA,Undrafted,Undrafted,Undrafted,6,2.0,2.0,0.0,6.6,0.15,0.188,0.124,0.622,0.0,2008-09 5733,Drew Gooden,SAS,27.0,208.28,113.398,Kansas,USA,2002,1,4,51,11.9,7.1,0.9,-4.6,0.1,0.228,0.235,0.526,0.069,2008-09 5734,Dorell Wright,MIA,23.0,205.74,95.25432,None,USA,2004,1,19,6,3.0,3.3,0.3,-14.6,0.032,0.257,0.19399999999999998,0.39799999999999996,0.061,2008-09 5735,Donyell Marshall,PHI,36.0,205.74,111.13004,Connecticut,USA,1994,1,4,25,3.8,1.6,0.6,11.2,0.038,0.214,0.196,0.621,0.12,2008-09 5736,Dontell Jefferson,CHA,25.0,195.58,88.45044,Arkansas,USA,Undrafted,Undrafted,Undrafted,6,4.8,2.0,1.5,-5.1,0.013999999999999999,0.147,0.18600000000000003,0.5589999999999999,0.231,2008-09 5737,Donte Greene,SAC,21.0,210.82,102.511792,Syracuse,USA,2008,1,28,55,3.8,1.6,0.5,-11.9,0.027999999999999997,0.107,0.17600000000000002,0.41600000000000004,0.067,2008-09 5738,Dominic McGuire,WAS,23.0,205.74,99.79024,Fresno State,USA,2007,2,47,79,4.5,5.4,2.5,-9.4,0.063,0.185,0.10099999999999999,0.483,0.13699999999999998,2008-09 5739,Dirk Nowitzki,DAL,31.0,213.36,111.13004,None,Germany,1998,1,9,81,25.9,8.4,2.4,4.1,0.033,0.22399999999999998,0.302,0.564,0.11699999999999999,2008-09 5740,Hedo Turkoglu,ORL,30.0,208.28,99.79024,None,Turkey,2000,1,16,77,16.8,5.3,4.9,10.5,0.019,0.14300000000000002,0.23,0.541,0.223,2008-09 5741,Devin Harris,NJN,26.0,190.5,83.91452,Wisconsin,USA,2004,1,5,69,21.3,3.3,6.9,-2.0,0.013999999999999999,0.09699999999999999,0.27899999999999997,0.563,0.332,2008-09 5742,Dwyane Wade,MIA,27.0,193.04,97.975872,Marquette,USA,2003,1,5,79,30.2,5.0,7.5,3.6,0.035,0.121,0.35600000000000004,0.574,0.377,2008-09 5743,Devin Brown,NOH,30.0,195.58,95.25432,Texas-San Antonio,USA,Undrafted,Undrafted,Undrafted,63,5.2,1.9,0.9,-0.1,0.044000000000000004,0.122,0.228,0.45899999999999996,0.11199999999999999,2008-09 5744,Desmond Mason,OKC,31.0,195.58,100.697424,Oklahoma State,USA,2000,1,17,39,7.5,4.0,1.2,-4.0,0.044000000000000004,0.11900000000000001,0.158,0.456,0.065,2008-09 5745,Desmon Farmer,SAS,27.0,195.58,99.79024,Southern California,USA,Undrafted,Undrafted,Undrafted,3,4.3,2.0,0.7,5.9,0.0,0.133,0.17300000000000001,0.43700000000000006,0.054000000000000006,2008-09 5746,Derrick Rose,CHI,20.0,190.5,86.18248,Memphis,USA,2008,1,1,81,16.8,3.9,6.3,-2.5,0.037000000000000005,0.085,0.225,0.516,0.28300000000000003,2008-09 5747,Deron Williams,UTA,25.0,190.5,93.89354399999999,Illinois,USA,2005,1,3,68,19.4,2.9,10.7,3.0,0.011000000000000001,0.081,0.247,0.573,0.457,2008-09 5748,Derek Fisher,LAL,34.0,185.42,95.25432,Arkansas-Little Rock,USA,1996,1,24,82,9.9,2.3,3.2,10.7,0.012,0.07400000000000001,0.14800000000000002,0.546,0.146,2008-09 5749,Demetris Nichols,NYK,24.0,203.2,97.975872,Syracuse,USA,2007,2,53,4,1.8,0.5,0.3,35.6,0.0,0.125,0.3,0.354,0.111,2008-09 5750,Delonte West,CLE,25.0,190.5,81.64656,Saint Joseph's,USA,2004,1,24,64,11.7,3.2,3.5,15.3,0.018000000000000002,0.09,0.168,0.5589999999999999,0.162,2008-09 5751,Dee Brown,PHX,24.0,182.88,83.91452,Illinois,USA,2006,2,46,19,2.4,1.5,1.9,-5.9,0.027999999999999997,0.098,0.11800000000000001,0.449,0.185,2008-09 5752,DeShawn Stevenson,WAS,28.0,195.58,98.88305600000001,None,USA,2000,1,23,32,6.6,2.4,3.1,-11.0,0.013999999999999999,0.08900000000000001,0.14800000000000002,0.41,0.16399999999999998,2008-09 5753,DeSagana Diop,CHA,27.0,213.36,127.00576000000001,None,Senegal,2001,1,8,75,2.3,3.6,0.4,-7.8,0.136,0.19,0.10800000000000001,0.425,0.047,2008-09 5754,DeMarcus Nelson,GSW,23.0,193.04,90.7184,Duke,USA,Undrafted,Undrafted,Undrafted,13,4.1,1.8,1.0,-13.8,0.036000000000000004,0.113,0.17800000000000002,0.44,0.12,2008-09 5755,Devean George,DAL,31.0,203.2,106.59411999999999,Augsburg,USA,1999,1,23,43,3.4,1.8,0.3,-4.1,0.040999999999999995,0.08800000000000001,0.111,0.485,0.031,2008-09 5756,Earl Watson,OKC,30.0,185.42,83.91452,UCLA,USA,2001,2,39,68,6.6,2.7,5.8,-8.3,0.023,0.098,0.163,0.44799999999999995,0.335,2008-09 5757,Dikembe Mutombo,HOU,43.0,218.44,117.93392,Georgetown,Congo,1991,1,4,9,1.8,3.7,0.0,1.8,0.152,0.24100000000000002,0.111,0.47200000000000003,0.0,2008-09 5758,Eddie House,BOS,31.0,185.42,79.3786,Arizona State,USA,2000,2,37,81,8.5,1.9,1.1,6.1,0.009000000000000001,0.11599999999999999,0.19899999999999998,0.5920000000000001,0.109,2008-09 5759,Eddie Gill,MIL,30.0,182.88,86.18248,Weber State,USA,Undrafted,Undrafted,Undrafted,6,2.3,0.7,1.8,-21.1,0.0,0.154,0.131,0.778,0.44,2008-09 5760,Hakim Warrick,MEM,26.0,205.74,99.336648,Syracuse,USA,2005,1,19,82,11.6,5.0,0.8,-5.0,0.077,0.16899999999999998,0.218,0.5539999999999999,0.06,2008-09 5761,Greg Oden,POR,21.0,213.36,129.27372,Ohio State,USA,2007,1,1,61,8.9,7.0,0.5,7.6,0.155,0.252,0.191,0.599,0.038,2008-09 5762,Greg Buckner,MEM,32.0,193.04,95.25432,Clemson,USA,1998,2,53,63,2.5,2.1,0.9,-2.5,0.045,0.14400000000000002,0.111,0.456,0.10300000000000001,2008-09 5763,Grant Hill,PHX,36.0,203.2,102.0582,Duke,USA,1994,1,3,82,12.0,4.9,2.3,4.4,0.033,0.155,0.17600000000000002,0.584,0.107,2008-09 5764,Goran Dragic,PHX,23.0,193.04,81.64656,None,Slovenia,2008,2,45,55,4.5,1.9,2.0,0.2,0.053,0.11800000000000001,0.19399999999999998,0.48700000000000004,0.222,2008-09 5765,Glen Davis,BOS,23.0,205.74,131.088088,Louisiana State,USA,2007,2,35,76,7.0,4.0,0.9,4.1,0.092,0.136,0.174,0.502,0.07,2008-09 5766,Gilbert Arenas,WAS,27.0,193.04,97.52228000000001,Arizona,USA,2001,2,30,2,13.0,4.5,10.0,-2.0,0.019,0.133,0.235,0.433,0.465,2008-09 5767,Gerald Wallace,CHA,26.0,200.66,99.79024,Alabama,USA,2001,1,25,71,16.6,7.8,2.7,0.5,0.052000000000000005,0.19899999999999998,0.204,0.585,0.12,2008-09 5768,Gerald Green,DAL,23.0,203.2,90.7184,None,USA,2005,1,18,38,5.2,1.4,0.4,-9.0,0.04,0.121,0.268,0.513,0.076,2008-09 5769,George Hill,SAS,23.0,187.96,81.64656,Indiana Purdue-Indianapolis,USA,2008,1,26,77,5.7,2.1,1.8,2.2,0.027999999999999997,0.12,0.195,0.502,0.183,2008-09 5770,Gabe Pruitt,BOS,23.0,193.04,77.11064,Southern California,USA,2007,2,32,47,2.0,0.9,0.8,0.8,0.027999999999999997,0.10800000000000001,0.163,0.42200000000000004,0.18100000000000002,2008-09 5771,Hamed Haddadi,MEM,24.0,218.44,115.212368,None,Iran,Undrafted,Undrafted,Undrafted,19,2.5,2.5,0.4,19.7,0.163,0.27399999999999997,0.204,0.5429999999999999,0.114,2008-09 5772,Francisco Garcia,SAC,27.0,200.66,88.45044,Louisville,Dominican Republic,2005,1,23,65,12.7,3.4,2.3,-11.0,0.032,0.096,0.193,0.5539999999999999,0.132,2008-09 5773,Francisco Elson,MIL,33.0,213.36,106.59411999999999,California,Netherlands,1999,2,41,59,3.4,3.9,0.5,-3.7,0.114,0.16899999999999998,0.107,0.537,0.049,2008-09 5774,Flip Murray,ATL,29.0,190.5,90.7184,Shaw,USA,2002,2,41,80,12.2,2.1,2.0,6.1,0.013000000000000001,0.087,0.242,0.5429999999999999,0.141,2008-09 5775,Fabricio Oberto,SAS,34.0,208.28,111.13004,None,Argentina,Undrafted,Undrafted,Undrafted,54,2.6,2.6,1.1,-1.1,0.11199999999999999,0.136,0.113,0.595,0.138,2008-09 5776,Etan Thomas,WAS,31.0,208.28,117.93392,Syracuse,USA,2000,1,12,26,3.1,2.5,0.2,-21.2,0.09300000000000001,0.168,0.14400000000000002,0.525,0.032,2008-09 5777,Erick Dampier,DAL,33.0,210.82,120.20188,Mississippi State,USA,1996,1,10,80,5.7,7.1,1.0,2.9,0.136,0.21600000000000003,0.105,0.664,0.059000000000000004,2008-09 5778,Eric Gordon,LAC,20.0,190.5,100.697424,Indiana,USA,2008,1,7,78,16.1,2.6,2.8,-9.0,0.019,0.07,0.20800000000000002,0.593,0.13699999999999998,2008-09 5779,Emeka Okafor,CHA,26.0,208.28,115.66596000000001,Connecticut,USA,2004,1,2,82,13.2,10.1,0.6,-0.2,0.126,0.245,0.19,0.581,0.034,2008-09 5780,Elton Brand,PHI,30.0,205.74,115.212368,Duke,USA,1999,1,1,29,13.8,8.8,1.3,-1.3,0.098,0.21600000000000003,0.233,0.484,0.07,2008-09 5781,Eduardo Najera,NJN,32.0,203.2,106.59411999999999,Oklahoma,Mexico,2000,2,38,27,2.9,2.5,0.7,-15.0,0.059000000000000004,0.19,0.152,0.47200000000000003,0.11,2008-09 5782,Eddy Curry,NYK,26.0,210.82,129.27372,None,USA,2001,1,4,3,1.7,1.3,0.0,-54.0,0.0,0.33299999999999996,0.18899999999999997,0.753,0.0,2008-09 5783,Fred Jones,LAC,30.0,187.96,102.0582,Oregon,USA,2002,1,14,52,7.3,2.4,3.6,-8.6,0.017,0.08199999999999999,0.129,0.536,0.18899999999999997,2008-09 5784,Renaldo Balkman,DEN,25.0,203.2,94.34713599999999,South Carolina,USA,2006,1,20,13,1.1,1.8,0.5,-22.4,0.045,0.21100000000000002,0.128,0.33899999999999997,0.10800000000000001,2009-10 5785,Reggie Williams,GSW,23.0,201.0,86.0,Virginia Military Institute,USA,Undrafted,Undrafted,Undrafted,24,15.2,4.6,2.8,-3.5,0.025,0.129,0.188,0.588,0.125,2009-10 5786,Reggie Evans,TOR,30.0,203.2,111.13004,Iowa,USA,Undrafted,Undrafted,Undrafted,28,3.4,3.8,0.3,1.5,0.128,0.292,0.175,0.498,0.038,2009-10 5787,Raymond Felton,CHA,26.0,185.42,89.811216,North Carolina,USA,2005,1,5,80,12.1,3.6,5.6,2.1,0.024,0.107,0.192,0.525,0.28300000000000003,2009-10 5788,Rashard Lewis,ORL,30.0,208.28,104.32616,None,USA,1998,2,32,72,14.1,4.4,1.5,8.7,0.032,0.11800000000000001,0.196,0.573,0.075,2009-10 5789,Rasual Butler,LAC,31.0,200.66,92.98635999999999,La Salle,USA,2002,2,52,82,11.9,2.9,1.4,-5.0,0.016,0.084,0.168,0.524,0.067,2009-10 5790,Rasho Nesterovic,TOR,34.0,213.36,115.66596000000001,None,Slovenia,1998,1,17,42,3.9,2.1,0.6,-10.4,0.11699999999999999,0.165,0.184,0.539,0.091,2009-10 5791,Rasheed Wallace,BOS,35.0,210.82,104.32616,North Carolina,USA,1995,1,4,79,9.0,4.1,1.0,1.9,0.028999999999999998,0.203,0.204,0.504,0.076,2009-10 5792,Richard Hamilton,DET,32.0,200.66,87.543256,Connecticut,USA,1999,1,7,46,18.1,2.7,4.4,-5.5,0.021,0.075,0.275,0.505,0.22899999999999998,2009-10 5793,Ray Allen,BOS,34.0,195.58,92.98635999999999,Connecticut,USA,1996,1,5,80,16.3,3.2,2.6,7.4,0.021,0.087,0.201,0.601,0.11800000000000001,2009-10 5794,Richard Jefferson,SAS,30.0,200.66,102.0582,Arizona,USA,2001,1,13,81,12.3,4.4,2.0,6.6,0.027999999999999997,0.135,0.184,0.551,0.09699999999999999,2009-10 5795,Roger Mason Jr.,SAS,29.0,195.58,96.16150400000001,Virginia,USA,2002,2,30,79,6.3,2.1,1.7,1.6,0.008,0.115,0.171,0.49,0.14,2009-10 5796,Robin Lopez,PHX,22.0,213.36,115.66596000000001,Stanford,USA,2008,1,15,51,8.4,4.9,0.1,4.9,0.127,0.151,0.16899999999999998,0.621,0.01,2009-10 5797,Rodney Carney,PHI,26.0,200.66,92.98635999999999,Memphis,USA,2006,1,16,68,4.7,2.0,0.5,-4.5,0.033,0.14800000000000002,0.17800000000000002,0.515,0.07,2009-10 5798,Rodney Stuckey,DET,24.0,195.58,92.98635999999999,Eastern Washington,USA,2007,1,15,73,16.6,3.8,4.8,-3.8,0.03,0.109,0.263,0.479,0.24600000000000002,2009-10 5799,Rodrigue Beaubois,DAL,22.0,182.88,77.11064,None,France,2009,1,25,56,7.1,1.4,1.3,5.3,0.02,0.10400000000000001,0.24100000000000002,0.617,0.162,2009-10 5800,Roko Ukic,MIL,25.0,195.58,86.18248,None,USA,2005,2,41,13,3.1,0.2,0.9,5.1,0.0,0.039,0.19399999999999998,0.574,0.185,2009-10 5801,Ronnie Brewer,MEM,25.0,200.66,102.965384,Arkansas,USA,2006,1,14,58,8.8,3.2,2.7,2.3,0.032,0.098,0.142,0.524,0.13,2009-10 5802,Ronnie Price,UTA,27.0,187.96,83.46092800000001,Utah Valley,USA,Undrafted,Undrafted,Undrafted,60,4.3,1.2,2.1,1.7,0.040999999999999995,0.067,0.18,0.47600000000000003,0.23600000000000002,2009-10 5803,Ronny Turiaf,GSW,27.0,208.28,113.398,Gonzaga,France,2005,2,37,42,4.9,4.5,2.1,-0.9,0.068,0.16699999999999998,0.113,0.574,0.139,2009-10 5804,Roy Hibbert,IND,23.0,218.44,126.098576,Georgetown,USA,2008,1,17,81,11.7,5.7,2.0,0.5,0.09699999999999999,0.15,0.22399999999999998,0.537,0.13,2009-10 5805,Royal Ivey,MIL,28.0,193.04,97.52228000000001,Texas,USA,2004,2,37,44,2.1,0.8,0.6,0.7,0.021,0.102,0.138,0.527,0.127,2009-10 5806,Ricky Davis,LAC,30.0,200.66,88.45044,Iowa,USA,1998,1,21,36,4.4,1.6,1.1,-10.6,0.023,0.11800000000000001,0.172,0.504,0.128,2009-10 5807,Randy Foye,WAS,26.0,193.04,96.615096,Villanova,USA,2006,1,7,70,10.1,1.9,3.3,-8.2,0.011000000000000001,0.08,0.212,0.516,0.23399999999999999,2009-10 5808,Nenad Krstic,OKC,26.0,213.36,108.86208,None,Serbia and Montenegro,2002,1,24,76,8.4,5.0,0.7,3.0,0.09,0.158,0.171,0.527,0.046,2009-10 5809,Ramon Sessions,MIN,24.0,190.5,86.18248,Nevada,USA,2007,2,56,82,8.2,2.6,3.1,-7.4,0.037000000000000005,0.1,0.198,0.513,0.23600000000000002,2009-10 5810,Nene,DEN,27.0,210.82,113.398,None,Brazil,2002,1,7,82,13.8,7.6,2.5,5.1,0.07,0.193,0.166,0.631,0.114,2009-10 5811,Nick Collison,OKC,29.0,208.28,115.66596000000001,Kansas,USA,2003,1,12,75,5.9,5.1,0.5,9.7,0.11599999999999999,0.16899999999999998,0.121,0.616,0.038,2009-10 5812,Nick Young,WAS,25.0,198.12,90.7184,Southern California,USA,2007,1,16,74,8.6,1.4,0.6,-1.9,0.016,0.069,0.214,0.519,0.055,2009-10 5813,Nicolas Batum,POR,21.0,203.2,90.7184,None,France,2008,1,25,37,10.1,3.8,1.2,8.5,0.043,0.153,0.163,0.6459999999999999,0.073,2009-10 5814,O.J. Mayo,MEM,22.0,193.04,95.25432,Southern California,USA,2008,1,3,82,17.5,3.8,3.0,-2.7,0.023,0.094,0.20800000000000002,0.551,0.12,2009-10 5815,Oleksiy Pecherov,MIN,24.0,213.36,106.140528,None,Ukraine,2006,1,18,44,4.5,2.8,0.3,-3.1,0.077,0.22699999999999998,0.226,0.48700000000000004,0.04,2009-10 5816,Oliver Lafayette,BOS,26.0,187.96,86.18248,Houston,USA,Undrafted,Undrafted,Undrafted,1,7.0,4.0,2.0,-24.7,0.053,0.17600000000000002,0.166,0.583,0.182,2009-10 5817,Omri Casspi,SAC,22.0,205.74,102.0582,None,Israel,2009,1,23,77,10.3,4.5,1.2,-2.9,0.044000000000000004,0.162,0.192,0.529,0.076,2009-10 5818,Othello Hunter,ATL,24.0,203.2,102.0582,Ohio State,USA,Undrafted,Undrafted,Undrafted,7,1.6,1.7,0.0,-27.1,0.158,0.182,0.193,0.4,0.0,2009-10 5819,Othyus Jeffers,UTA,24.0,195.58,95.25432,Robert Morris (IL),USA,Undrafted,Undrafted,Undrafted,14,2.6,1.4,0.1,-1.4,0.129,0.162,0.25,0.495,0.021,2009-10 5820,Patrick O'Bryant,TOR,24.0,213.36,113.398,Bradley,USA,2006,1,9,11,1.7,1.0,0.1,-17.2,0.053,0.225,0.198,0.539,0.033,2009-10 5821,Randolph Morris,ATL,24.0,210.82,124.7378,Kentucky,USA,Undrafted,Undrafted,Undrafted,28,2.2,1.4,0.1,-8.0,0.09300000000000001,0.24600000000000002,0.221,0.586,0.027000000000000003,2009-10 5822,Patty Mills,POR,21.0,182.88,83.91452,Saint Mary's (CA),Australia,2009,2,55,10,2.6,0.2,0.5,-26.6,0.031,0.043,0.345,0.48,0.25,2009-10 5823,Paul Davis,WAS,25.0,210.82,122.46983999999999,Michigan State,USA,2006,2,34,2,2.5,0.0,1.5,13.6,0.0,0.0,0.293,0.512,0.75,2009-10 5824,Paul Millsap,UTA,25.0,203.2,113.398,Louisiana Tech,USA,2006,2,47,82,11.6,6.8,1.6,6.6,0.1,0.18899999999999997,0.187,0.573,0.09,2009-10 5825,Paul Pierce,BOS,32.0,200.66,106.59411999999999,Kansas,USA,1998,1,10,71,18.3,4.4,3.1,5.3,0.021,0.132,0.237,0.613,0.15,2009-10 5826,Peja Stojakovic,NOH,33.0,208.28,103.872568,None,Serbia and Montenegro,1996,1,14,62,12.6,3.7,1.5,-1.5,0.022000000000000002,0.11199999999999999,0.184,0.5329999999999999,0.07200000000000001,2009-10 5827,Pops Mensah-Bonsu,TOR,26.0,205.74,106.59411999999999,George Washington,USA,Undrafted,Undrafted,Undrafted,20,2.0,1.8,0.2,-18.3,0.15,0.179,0.19399999999999998,0.44799999999999995,0.040999999999999995,2009-10 5828,Primoz Brezec,MIL,30.0,215.9,115.66596000000001,None,Slovenia,2000,1,27,21,0.9,1.2,0.0,-5.9,0.14,0.165,0.14,0.332,0.018000000000000002,2009-10 5829,Quentin Richardson,MIA,30.0,198.12,103.418976,DePaul,USA,2000,1,18,76,8.9,4.9,1.2,6.3,0.037000000000000005,0.172,0.147,0.5720000000000001,0.067,2009-10 5830,Quinton Ross,WAS,29.0,198.12,87.543256,Southern Methodist,USA,Undrafted,Undrafted,Undrafted,52,1.8,0.9,0.2,-3.7,0.033,0.063,0.106,0.39299999999999996,0.033,2009-10 5831,Rafer Alston,MIA,33.0,187.96,79.3786,Fresno State,USA,1998,2,39,52,8.2,2.5,3.4,-4.7,0.01,0.095,0.185,0.44299999999999995,0.2,2009-10 5832,Raja Bell,GSW,33.0,195.58,97.52228000000001,Florida International,U.S. Virgin Islands,Undrafted,Undrafted,Undrafted,6,11.8,3.8,2.2,7.6,0.031,0.128,0.17,0.57,0.124,2009-10 5833,Rajon Rondo,BOS,24.0,185.42,77.56423199999999,Kentucky,USA,2006,1,21,81,13.7,4.4,9.8,4.8,0.043,0.10300000000000001,0.2,0.54,0.425,2009-10 5834,Pau Gasol,LAL,29.0,213.36,113.398,None,Spain,2001,1,3,65,18.3,11.3,3.4,6.2,0.11599999999999999,0.228,0.213,0.593,0.147,2009-10 5835,Rudy Fernandez,POR,25.0,198.12,83.91452,None,Spain,2007,1,24,62,8.1,2.6,2.0,1.0,0.028999999999999998,0.113,0.174,0.54,0.146,2009-10 5836,Spencer Hawes,SAC,22.0,215.9,111.13004,Washington,USA,2007,1,10,72,10.0,6.1,2.2,-6.5,0.085,0.174,0.19699999999999998,0.507,0.132,2009-10 5837,Russell Westbrook,OKC,21.0,190.5,84.821704,UCLA,USA,2008,1,4,82,16.1,4.9,8.0,5.0,0.059000000000000004,0.10099999999999999,0.254,0.491,0.36700000000000005,2009-10 5838,Steve Nash,PHX,36.0,190.5,80.73937600000001,Santa Clara,Canada,1996,1,15,81,16.5,3.3,11.0,7.1,0.016,0.091,0.228,0.615,0.483,2009-10 5839,Steve Novak,LAC,27.0,208.28,108.86208,Marquette,USA,2006,2,32,54,2.1,0.6,0.1,-16.5,0.003,0.10300000000000001,0.142,0.505,0.025,2009-10 5840,Steven Hunter,MEM,28.0,213.36,108.86208,DePaul,USA,2001,1,15,21,2.5,2.0,0.0,-11.7,0.128,0.16,0.18,0.45,0.0,2009-10 5841,Sundiata Gaines,UTA,24.0,185.42,88.45044,Georgia,USA,Undrafted,Undrafted,Undrafted,32,3.3,0.9,1.2,0.1,0.032,0.11900000000000001,0.23199999999999998,0.518,0.289,2009-10 5842,T.J. Ford,IND,27.0,182.88,74.84268,Texas,USA,2003,1,8,47,10.3,3.2,3.8,-6.7,0.037000000000000005,0.102,0.21100000000000002,0.507,0.254,2009-10 5843,Taj Gibson,CHI,25.0,205.74,102.0582,Southern California,USA,2009,1,26,82,9.0,7.5,0.9,-0.8,0.114,0.187,0.16699999999999998,0.521,0.049,2009-10 5844,Taylor Griffin,PHX,24.0,200.66,107.95489599999999,Oklahoma,USA,2009,2,48,8,1.3,0.3,0.1,1.5,0.0,0.063,0.17800000000000002,0.425,0.055999999999999994,2009-10 5845,Tayshaun Prince,DET,30.0,205.74,97.52228000000001,Kentucky,USA,2002,1,23,49,13.5,5.1,3.3,-5.0,0.049,0.13699999999999998,0.193,0.53,0.165,2009-10 5846,Terrence Williams,NJN,23.0,198.12,99.79024,Louisville,USA,2009,1,11,78,8.4,4.5,2.9,-8.3,0.028999999999999998,0.20199999999999999,0.217,0.45899999999999996,0.22399999999999998,2009-10 5847,Thabo Sefolosha,OKC,26.0,200.66,97.52228000000001,None,Switzerland,2006,1,13,82,6.0,4.7,1.8,2.4,0.038,0.14800000000000002,0.109,0.509,0.08800000000000001,2009-10 5848,Thaddeus Young,PHI,22.0,203.2,99.79024,Georgia Tech,USA,2007,1,12,67,13.8,5.2,1.4,-3.1,0.07,0.121,0.213,0.523,0.075,2009-10 5849,Steve Blake,LAC,30.0,190.5,78.017824,Maryland,USA,2003,2,38,80,7.3,2.3,4.8,-2.7,0.012,0.09300000000000001,0.146,0.539,0.272,2009-10 5850,Theo Ratliff,CHA,37.0,208.28,106.59411999999999,Wyoming,USA,1995,1,18,49,3.6,3.2,0.5,0.1,0.094,0.142,0.13,0.511,0.047,2009-10 5851,Tim Thomas,DAL,33.0,208.28,108.86208,Villanova,USA,1997,1,7,18,7.5,2.3,0.8,-2.3,0.052000000000000005,0.12300000000000001,0.21100000000000002,0.579,0.076,2009-10 5852,Toney Douglas,NYK,24.0,185.42,90.7184,Florida State,USA,2009,1,29,56,8.6,1.9,2.0,-4.7,0.04,0.07400000000000001,0.19399999999999998,0.5710000000000001,0.16699999999999998,2009-10 5853,Tony Allen,BOS,28.0,193.04,96.615096,Oklahoma State,USA,2004,1,25,54,6.1,2.7,1.3,1.7,0.07,0.124,0.19399999999999998,0.54,0.141,2009-10 5854,Tony Battie,NJN,34.0,210.82,108.86208,Texas Tech,USA,1997,1,5,15,2.4,1.5,0.2,-19.5,0.028999999999999998,0.17600000000000002,0.163,0.405,0.042,2009-10 5855,Tony Parker,SAS,28.0,187.96,81.64656,None,France,2001,1,28,56,16.0,2.4,5.7,5.8,0.005,0.084,0.258,0.542,0.304,2009-10 5856,Tracy McGrady,NYK,31.0,203.2,101.151016,None,USA,1997,1,9,30,8.2,3.1,3.3,-9.6,0.038,0.124,0.20800000000000002,0.466,0.22,2009-10 5857,Travis Diener,POR,28.0,185.42,79.3786,Marquette,USA,2005,2,38,9,0.7,0.3,0.9,-26.9,0.0,0.062,0.102,0.255,0.222,2009-10 5858,Travis Outlaw,LAC,25.0,205.74,93.89354399999999,None,USA,2003,1,23,34,9.1,3.6,1.0,-2.9,0.049,0.13699999999999998,0.207,0.503,0.08199999999999999,2009-10 5859,Trenton Hassell,NJN,31.0,195.58,102.965384,Austin Peay,USA,2001,2,29,52,4.5,2.9,1.0,-16.7,0.054000000000000006,0.106,0.122,0.465,0.077,2009-10 5860,Trevor Ariza,HOU,24.0,203.2,95.25432,UCLA,USA,2004,2,43,72,14.9,5.6,3.8,-1.4,0.033,0.15,0.212,0.488,0.16399999999999998,2009-10 5861,Nazr Mohammed,CHA,32.0,208.28,113.398,Kentucky,USA,1998,1,29,58,7.9,5.2,0.5,-0.8,0.138,0.23800000000000002,0.21,0.578,0.049,2009-10 5862,Tim Duncan,SAS,34.0,210.82,117.93392,Wake Forest,US Virgin Islands,1997,1,1,78,17.9,10.1,3.2,7.0,0.109,0.265,0.264,0.56,0.175,2009-10 5863,Rudy Gay,MEM,23.0,203.2,104.32616,Connecticut,USA,2006,1,8,80,19.6,5.9,1.9,-1.1,0.042,0.132,0.226,0.535,0.076,2009-10 5864,Stephen Jackson,CHA,32.0,203.2,97.52228000000001,Butler Community College,USA,1997,2,42,81,20.6,5.0,3.7,1.4,0.031,0.121,0.275,0.518,0.17,2009-10 5865,Stephen Curry,GSW,22.0,190.5,83.91452,Davidson,USA,2009,1,7,80,17.5,4.5,5.9,-3.1,0.018000000000000002,0.11800000000000001,0.218,0.568,0.24100000000000002,2009-10 5866,Ryan Anderson,ORL,22.0,208.28,108.86208,California,USA,2008,1,21,63,7.7,3.2,0.6,10.4,0.091,0.16399999999999998,0.239,0.574,0.069,2009-10 5867,Ryan Bowen,OKC,34.0,205.74,98.88305600000001,Iowa,USA,1998,2,55,1,4.0,2.0,0.0,69.2,0.111,0.1,0.083,1.064,0.0,2009-10 5868,Ryan Gomes,MIN,27.0,200.66,111.13004,Providence,USA,2005,2,50,76,10.9,4.6,1.6,-10.0,0.038,0.14300000000000002,0.17600000000000002,0.528,0.087,2009-10 5869,Ryan Hollins,MIN,25.0,213.36,104.32616,UCLA,USA,2006,2,50,73,6.1,2.8,0.7,-16.8,0.07400000000000001,0.115,0.166,0.6,0.066,2009-10 5870,Sam Young,MEM,25.0,198.12,99.79024,Pittsburgh,USA,2009,2,36,80,7.4,2.5,0.7,-9.2,0.066,0.107,0.21899999999999997,0.518,0.068,2009-10 5871,Jeff Foster,IND,33.0,210.82,113.398,Texas State,USA,1999,1,21,16,3.1,5.1,1.3,-1.3,0.15,0.205,0.107,0.49,0.11800000000000001,2009-10 5872,Samuel Dalembert,PHI,30.0,210.82,113.398,Seton Hall,Haiti,2001,1,26,82,8.1,9.6,0.8,-4.2,0.133,0.304,0.152,0.573,0.047,2009-10 5873,Sasha Pavlovic,MIN,26.0,200.66,106.59411999999999,None,Montenegro,2003,1,19,71,3.7,1.6,0.8,-15.5,0.015,0.131,0.17800000000000002,0.42200000000000004,0.105,2009-10 5874,Sasha Vujacic,LAL,26.0,200.66,92.98635999999999,None,Slovenia,2004,1,27,67,2.8,1.2,0.6,-2.8,0.045,0.11,0.14800000000000002,0.518,0.113,2009-10 5875,Sean Marks,NOH,34.0,208.28,113.398,California,New Zealand,1998,2,44,14,0.7,1.6,0.1,-1.3,0.156,0.138,0.068,0.49,0.037000000000000005,2009-10 5876,Sean May,SAC,26.0,205.74,120.655472,North Carolina,USA,2005,1,13,37,3.3,1.9,0.5,-0.6,0.07200000000000001,0.175,0.198,0.49200000000000005,0.083,2009-10 5877,Stephen Graham,CHA,28.0,198.12,97.52228000000001,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,70,4.2,1.9,0.3,-1.1,0.037000000000000005,0.163,0.174,0.551,0.054000000000000006,2009-10 5878,Sean Williams,NJN,23.0,208.28,106.59411999999999,Boston College,USA,2007,1,17,20,2.6,2.3,0.1,-3.8,0.098,0.129,0.152,0.45299999999999996,0.006999999999999999,2009-10 5879,Serge Ibaka,OKC,20.0,208.28,106.59411999999999,None,Democratic Republic of the Congo,2008,1,24,73,6.3,5.4,0.1,1.6,0.122,0.215,0.163,0.562,0.013000000000000001,2009-10 5880,Sergio Rodriguez,NYK,24.0,190.5,79.83219199999998,None,Spain,2006,1,27,66,6.6,1.3,3.2,-1.6,0.027000000000000003,0.071,0.214,0.5539999999999999,0.307,2009-10 5881,Shane Battier,HOU,31.0,203.2,99.79024,Duke,USA,2001,1,6,67,8.0,4.7,2.4,-1.0,0.038,0.128,0.11599999999999999,0.541,0.111,2009-10 5882,Shannon Brown,LAL,24.0,193.04,95.25432,Michigan State,USA,2006,1,25,82,8.1,2.2,1.3,1.0,0.02,0.1,0.18899999999999997,0.517,0.105,2009-10 5883,Shaquille O'Neal,CLE,38.0,215.9,147.4174,Louisiana State,USA,1992,1,1,53,12.0,6.7,1.5,3.8,0.094,0.235,0.253,0.565,0.11,2009-10 5884,Shaun Livingston,WAS,24.0,200.66,83.91452,None,USA,2004,1,4,36,6.9,2.2,3.6,0.5,0.024,0.094,0.162,0.563,0.24600000000000002,2009-10 5885,Shavlik Randolph,MIA,26.0,208.28,107.047712,Duke,USA,Undrafted,Undrafted,Undrafted,6,2.3,2.3,0.2,11.1,0.13699999999999998,0.152,0.193,0.371,0.031,2009-10 5886,Shawn Marion,DAL,32.0,200.66,103.418976,Nevada-Las Vegas,USA,1999,1,9,75,12.0,6.4,1.4,6.9,0.077,0.152,0.18100000000000002,0.535,0.069,2009-10 5887,Shelden Williams,BOS,26.0,205.74,113.398,Duke,USA,2006,1,5,54,3.7,2.7,0.4,5.8,0.094,0.193,0.154,0.612,0.057999999999999996,2009-10 5888,Solomon Jones,IND,25.0,208.28,111.13004,South Florida,USA,2006,2,33,52,4.0,2.8,0.6,-11.1,0.081,0.155,0.158,0.499,0.077,2009-10 5889,Sonny Weems,TOR,23.0,198.12,92.079176,Arkansas,USA,2008,2,39,69,7.5,2.8,1.5,0.8,0.039,0.125,0.18600000000000003,0.5329999999999999,0.11,2009-10 5890,Sebastian Telfair,CLE,25.0,182.88,79.3786,None,USA,2004,1,13,43,4.8,1.0,2.9,-7.3,0.01,0.075,0.192,0.479,0.313,2009-10 5891,Trey Gilder,MEM,25.0,205.74,92.98635999999999,Northwestern State,USA,Undrafted,Undrafted,Undrafted,2,1.0,0.5,0.0,22.4,0.0,0.16699999999999998,0.087,1.0,0.0,2009-10 5892,Keyon Dooling,NJN,30.0,190.5,88.45044,Missouri,USA,2000,1,10,53,6.9,1.0,2.5,-3.0,0.01,0.055999999999999994,0.20199999999999999,0.519,0.248,2009-10 5893,Nate Robinson,BOS,26.0,175.26,81.64656,Washington,USA,2005,1,21,56,10.1,2.0,2.9,-2.0,0.027000000000000003,0.086,0.243,0.5429999999999999,0.249,2009-10 5894,Malik Hairston,SAS,23.0,198.12,99.79024,Oregon,USA,2008,2,48,47,2.1,1.0,0.3,2.6,0.049,0.128,0.14300000000000002,0.555,0.075,2009-10 5895,Malik Allen,DEN,32.0,208.28,115.66596000000001,Villanova,USA,Undrafted,Undrafted,Undrafted,51,2.1,1.6,0.3,-12.9,0.092,0.125,0.145,0.431,0.055,2009-10 5896,Luther Head,IND,27.0,190.5,83.91452,Illinois,USA,2005,1,24,47,7.6,1.7,1.5,0.9,0.008,0.096,0.212,0.53,0.142,2009-10 5897,Luol Deng,CHI,25.0,205.74,99.79024,Duke,United Kingdom,2004,1,7,70,17.6,7.3,2.0,0.9,0.055999999999999994,0.156,0.217,0.531,0.08800000000000001,2009-10 5898,Luke Walton,LAL,30.0,203.2,106.59411999999999,Arizona,USA,2003,2,32,29,2.4,1.3,1.4,-8.5,0.046,0.109,0.161,0.402,0.223,2009-10 5899,Luke Ridnour,MIL,29.0,187.96,79.3786,Oregon,USA,2003,1,14,82,10.4,1.7,4.0,-1.3,0.015,0.081,0.21899999999999997,0.57,0.314,2009-10 5900,Luis Scola,HOU,30.0,205.74,111.13004,None,Argentina,2002,2,55,82,16.2,8.6,2.1,-2.6,0.073,0.237,0.228,0.55,0.11,2009-10 5901,Luc Mbah a Moute,MIL,23.0,203.2,104.32616,UCLA,Cameroon,2008,2,37,73,6.2,5.5,1.1,1.4,0.096,0.15,0.121,0.53,0.067,2009-10 5902,Lou Williams,PHI,23.0,185.42,79.3786,None,USA,2005,2,45,64,14.0,2.9,4.2,-2.1,0.016,0.10099999999999999,0.212,0.5760000000000001,0.21899999999999997,2009-10 5903,Lou Amundson,PHX,27.0,205.74,107.95489599999999,Nevada-Las Vegas,USA,Undrafted,Undrafted,Undrafted,79,4.7,4.4,0.4,5.1,0.128,0.212,0.147,0.562,0.04,2009-10 5904,Lindsey Hunter,CHI,39.0,187.96,88.45044,Jackson State,USA,1993,1,10,13,1.0,1.1,0.7,-8.5,0.009000000000000001,0.11900000000000001,0.134,0.21,0.105,2009-10 5905,Manu Ginobili,SAS,32.0,198.12,92.98635999999999,None,Argentina,1999,2,57,75,16.5,3.8,4.9,7.9,0.038,0.11900000000000001,0.253,0.584,0.273,2009-10 5906,Lester Hudson,MEM,25.0,190.5,86.18248,Tennessee-Martin,USA,2009,2,58,25,2.3,0.7,0.5,2.5,0.064,0.096,0.24,0.494,0.155,2009-10 5907,Leandro Barbosa,PHX,27.0,190.5,91.625584,None,Brazil,2003,1,28,44,9.5,1.6,1.5,8.0,0.016,0.08199999999999999,0.24600000000000002,0.526,0.125,2009-10 5908,LeBron James,CLE,25.0,203.2,113.398,None,USA,2003,1,1,76,29.7,7.3,8.6,10.8,0.03,0.185,0.33299999999999996,0.604,0.39799999999999996,2009-10 5909,Larry Hughes,CHA,31.0,195.58,83.91452,Saint Louis,USA,1998,1,8,45,9.1,3.2,3.0,-3.3,0.023,0.124,0.20600000000000002,0.47200000000000003,0.196,2009-10 5910,Lamar Odom,LAL,30.0,208.28,104.32616,Rhode Island,USA,1999,1,4,82,10.8,9.8,3.3,6.1,0.08,0.263,0.17,0.5329999999999999,0.159,2009-10 5911,LaMarcus Aldridge,POR,24.0,210.82,108.86208,Texas,USA,2006,1,2,78,17.9,8.0,2.1,4.8,0.08199999999999999,0.187,0.231,0.535,0.099,2009-10 5912,Kyrylo Fesenko,UTA,23.0,215.9,136.0776,None,Ukraine,2007,2,38,49,2.6,1.8,0.3,9.9,0.10400000000000001,0.149,0.161,0.5329999999999999,0.055,2009-10 5913,Kyle Weaver,OKC,24.0,198.12,91.171992,Washington State,USA,2008,2,38,12,3.0,1.5,0.9,-2.3,0.008,0.135,0.122,0.505,0.11199999999999999,2009-10 5914,Kyle Lowry,HOU,24.0,182.88,92.98635999999999,Villanova,USA,2006,1,24,68,9.1,3.6,4.5,2.0,0.06,0.114,0.183,0.536,0.281,2009-10 5915,Kyle Korver,UTA,29.0,200.66,96.16150400000001,Creighton,USA,2003,2,51,52,7.2,2.1,1.7,9.5,0.013000000000000001,0.12,0.16,0.62,0.13699999999999998,2009-10 5916,Kwame Brown,DET,28.0,210.82,122.46983999999999,None,USA,2001,1,1,48,3.3,3.7,0.5,-9.4,0.096,0.23600000000000002,0.15,0.47,0.055999999999999994,2009-10 5917,Kurt Thomas,MIL,37.0,205.74,104.32616,Texas Christian,USA,1995,1,10,70,3.0,4.2,0.7,-5.2,0.084,0.237,0.114,0.489,0.069,2009-10 5918,Leon Powe,CLE,26.0,203.2,108.86208,California,USA,2006,2,49,20,4.0,3.1,0.0,-1.1,0.096,0.195,0.172,0.515,0.0,2009-10 5919,Kris Humphries,NJN,25.0,205.74,106.59411999999999,Minnesota,USA,2004,1,14,69,7.1,5.5,0.5,-8.1,0.11599999999999999,0.262,0.21100000000000002,0.495,0.046,2009-10 5920,Marc Gasol,MEM,25.0,215.9,120.20188,None,Spain,2007,2,48,69,14.6,9.3,2.4,0.8,0.10099999999999999,0.207,0.172,0.617,0.1,2009-10 5921,Marco Belinelli,TOR,24.0,195.58,90.7184,None,Italy,2007,1,18,66,7.1,1.4,1.3,2.2,0.015,0.084,0.19699999999999998,0.5429999999999999,0.11900000000000001,2009-10 5922,Troy Murphy,IND,30.0,210.82,111.13004,Notre Dame,USA,2001,1,14,72,14.6,10.2,2.1,-5.7,0.059000000000000004,0.285,0.188,0.585,0.10800000000000001,2009-10 5923,Mickael Pietrus,ORL,28.0,198.12,97.52228000000001,None,France,2003,1,11,75,8.7,2.9,0.7,5.6,0.027000000000000003,0.114,0.18100000000000002,0.555,0.048,2009-10 5924,Michael Redd,MIL,30.0,198.12,97.52228000000001,Ohio State,USA,2000,2,43,18,11.9,3.0,2.2,-11.5,0.021,0.10800000000000001,0.23199999999999998,0.444,0.14300000000000002,2009-10 5925,Michael Finley,BOS,37.0,200.66,102.0582,Wisconsin,USA,1995,1,21,46,4.4,1.5,0.9,-0.5,0.01,0.11,0.14,0.53,0.09,2009-10 5926,Michael Beasley,MIA,21.0,208.28,106.59411999999999,Kansas State,USA,2008,1,2,78,14.8,6.4,1.3,0.9,0.062,0.19,0.257,0.505,0.076,2009-10 5927,Metta World Peace,LAL,30.0,200.66,117.93392,St. John's (NY),USA,1999,1,16,77,11.0,4.3,3.0,6.8,0.043,0.098,0.163,0.514,0.132,2009-10 5928,Mehmet Okur,UTA,31.0,210.82,119.294696,None,Turkey,2001,2,37,73,13.5,7.1,1.6,3.6,0.07400000000000001,0.20600000000000002,0.21100000000000002,0.561,0.085,2009-10 5929,Maurice Evans,ATL,31.0,195.58,99.79024,Texas,USA,Undrafted,Undrafted,Undrafted,79,5.7,1.9,0.6,0.2,0.05,0.08800000000000001,0.149,0.539,0.055999999999999994,2009-10 5930,Matt Carroll,DAL,29.0,198.12,96.16150400000001,Notre Dame,USA,Undrafted,Undrafted,Undrafted,25,1.8,0.5,0.2,-8.8,0.036000000000000004,0.079,0.22699999999999998,0.43700000000000006,0.08199999999999999,2009-10 5931,Matt Bonner,SAS,30.0,208.28,108.86208,Florida,USA,2003,2,45,65,7.0,3.3,1.0,7.9,0.055,0.161,0.17,0.581,0.09,2009-10 5932,Matt Barnes,ORL,30.0,200.66,102.511792,UCLA,USA,2002,2,45,81,8.8,5.5,1.7,12.3,0.063,0.185,0.162,0.5760000000000001,0.09699999999999999,2009-10 5933,Marcin Gortat,ORL,26.0,210.82,108.86208,None,Poland,2005,2,57,81,3.6,4.2,0.2,4.2,0.109,0.24,0.129,0.563,0.024,2009-10 5934,Marvin Williams,ATL,24.0,205.74,108.86208,North Carolina,USA,2005,1,2,81,10.1,5.1,1.1,6.4,0.05,0.147,0.159,0.54,0.055999999999999994,2009-10 5935,Marreese Speights,PHI,22.0,208.28,111.13004,Florida,USA,2008,1,16,62,8.6,4.1,0.6,-9.1,0.098,0.20800000000000002,0.253,0.524,0.062,2009-10 5936,Marquis Daniels,BOS,29.0,198.12,90.7184,Auburn,USA,Undrafted,Undrafted,Undrafted,51,5.6,1.9,1.3,3.9,0.037000000000000005,0.08800000000000001,0.162,0.526,0.111,2009-10 5937,Mario West,ATL,26.0,195.58,95.25432,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,39,0.8,0.7,0.2,1.7,0.077,0.135,0.106,0.591,0.092,2009-10 5938,Mario Chalmers,MIA,24.0,185.42,86.18248,Kansas,USA,2008,2,34,73,7.1,1.8,3.4,1.5,0.016,0.07200000000000001,0.163,0.519,0.217,2009-10 5939,Mardy Collins,LAC,25.0,198.12,99.79024,Temple,USA,2006,1,29,43,2.6,1.2,1.0,-9.1,0.033,0.09699999999999999,0.168,0.40399999999999997,0.151,2009-10 5940,Marcus Williams,MEM,24.0,190.5,92.98635999999999,Connecticut,USA,2006,1,22,62,4.3,1.5,2.6,-7.6,0.017,0.107,0.185,0.456,0.27399999999999997,2009-10 5941,Marcus Thornton,NOH,23.0,193.04,92.98635999999999,Louisiana State,USA,2009,2,43,73,14.5,2.9,1.6,-2.2,0.045,0.09,0.252,0.55,0.10300000000000001,2009-10 5942,Marcus Landry,BOS,24.0,200.66,104.32616,Wisconsin,USA,Undrafted,Undrafted,Undrafted,18,2.4,1.1,0.0,0.8,0.046,0.14,0.201,0.48700000000000004,0.0,2009-10 5943,Marcus Haislip,SAS,29.0,208.28,104.32616,Tennessee,USA,2002,1,13,10,2.5,1.0,0.0,-2.6,0.10800000000000001,0.13,0.281,0.539,0.0,2009-10 5944,Marcus Camby,POR,36.0,210.82,106.59411999999999,Massachusetts,USA,1996,1,2,74,7.5,11.8,2.5,2.6,0.124,0.317,0.126,0.501,0.11900000000000001,2009-10 5945,Marcus Banks,TOR,28.0,187.96,92.98635999999999,Nevada-Las Vegas,USA,2003,1,13,22,5.0,1.0,1.2,-2.2,0.016,0.094,0.21,0.635,0.215,2009-10 5946,Martell Webster,POR,23.0,200.66,106.59411999999999,None,USA,2005,1,6,82,9.4,3.3,0.8,2.5,0.027999999999999997,0.14,0.18100000000000002,0.5429999999999999,0.05,2009-10 5947,Nathan Jawai,MIN,23.0,208.28,127.00576000000001,Midland,Australia,2008,2,41,39,3.2,2.7,0.6,-9.5,0.12300000000000001,0.151,0.158,0.485,0.09,2009-10 5948,Kosta Koufos,UTA,21.0,213.36,120.20188,Ohio State,USA,2008,1,23,36,1.5,1.3,0.2,-17.9,0.109,0.196,0.17800000000000002,0.494,0.057,2009-10 5949,Kirk Hinrich,CHI,29.0,190.5,86.18248,Kansas,USA,2003,1,7,74,10.9,3.5,4.5,-2.1,0.011000000000000001,0.106,0.165,0.501,0.203,2009-10 5950,Joey Graham,DEN,28.0,200.66,102.0582,Oklahoma State,USA,2005,1,16,62,4.3,2.0,0.4,-3.4,0.063,0.125,0.16399999999999998,0.568,0.046,2009-10 5951,Joey Dorsey,SAC,26.0,203.2,121.562656,Memphis,USA,2008,2,33,15,1.5,2.9,0.1,14.9,0.17,0.29,0.124,0.455,0.025,2009-10 5952,Joel Przybilla,POR,30.0,215.9,111.13004,Minnesota,USA,2000,1,9,30,4.1,7.9,0.3,2.9,0.135,0.285,0.10300000000000001,0.5670000000000001,0.019,2009-10 5953,Joel Anthony,MIA,27.0,205.74,111.13004,Nevada-Las Vegas,Canada,Undrafted,Undrafted,Undrafted,80,2.7,3.1,0.2,2.8,0.111,0.10800000000000001,0.08800000000000001,0.546,0.013999999999999999,2009-10 5954,Joe Smith,ATL,34.0,208.28,102.0582,Maryland,USA,1995,1,1,64,3.0,2.5,0.3,-1.6,0.127,0.188,0.179,0.45299999999999996,0.055,2009-10 5955,Joe Johnson,ATL,29.0,200.66,108.86208,Arkansas,USA,2001,1,10,76,21.3,4.6,4.9,6.0,0.03,0.114,0.267,0.5379999999999999,0.21600000000000003,2009-10 5956,Joe Alexander,CHI,23.0,203.2,104.32616,West Virginia,USA,2008,1,8,8,0.5,0.6,0.3,-24.5,0.069,0.12,0.102,0.273,0.091,2009-10 5957,Jodie Meeks,PHI,22.0,193.04,94.34713599999999,Kentucky,USA,2009,2,41,60,4.7,1.7,0.7,-3.1,0.013999999999999999,0.154,0.19,0.493,0.08,2009-10 5958,Joakim Noah,CHI,25.0,210.82,105.23334399999999,Florida,USA,2007,1,9,64,10.7,11.0,2.1,-1.3,0.132,0.27,0.172,0.557,0.107,2009-10 5959,Jerryd Bayless,POR,21.0,190.5,90.7184,Arizona,USA,2008,1,11,74,8.5,1.6,2.3,1.1,0.017,0.09699999999999999,0.247,0.534,0.226,2009-10 5960,Jerry Stackhouse,MIL,35.0,198.12,98.88305600000001,North Carolina,USA,1995,1,3,42,8.5,2.4,1.7,1.3,0.026000000000000002,0.10800000000000001,0.22,0.517,0.133,2009-10 5961,Johan Petro,DEN,24.0,213.36,112.037224,None,France,2005,1,25,36,3.4,3.6,0.4,0.5,0.085,0.24600000000000002,0.139,0.5529999999999999,0.045,2009-10 5962,Jermaine Taylor,HOU,23.0,193.04,95.25432,Central Florida,USA,2009,2,32,31,4.1,1.5,0.5,-20.7,0.068,0.10300000000000001,0.223,0.46,0.096,2009-10 5963,Jeff Teague,ATL,22.0,187.96,81.64656,Wake Forest,USA,2009,1,19,71,3.2,0.9,1.7,-2.0,0.008,0.106,0.183,0.45899999999999996,0.258,2009-10 5964,Jeff Green,OKC,23.0,205.74,106.59411999999999,Georgetown,USA,2007,1,5,82,15.1,6.0,1.6,2.0,0.043,0.141,0.193,0.53,0.071,2009-10 5965,Mike Dunleavy,IND,29.0,205.74,104.32616,Duke,USA,2002,1,3,67,9.9,3.5,1.5,-1.8,0.018000000000000002,0.156,0.20600000000000002,0.531,0.11199999999999999,2009-10 5966,Mike Harris,HOU,27.0,198.12,106.59411999999999,Rice,USA,Undrafted,Undrafted,Undrafted,13,2.2,1.8,0.2,-19.5,0.09,0.163,0.18899999999999997,0.41600000000000004,0.063,2009-10 5967,Mike James,WAS,35.0,187.96,85.275296,Duquesne,USA,Undrafted,Undrafted,Undrafted,4,4.5,0.8,1.3,1.0,0.023,0.04,0.26899999999999996,0.38299999999999995,0.192,2009-10 5968,Mike Miller,WAS,30.0,203.2,98.88305600000001,Florida,USA,2000,1,5,54,10.9,6.2,3.9,-5.4,0.036000000000000004,0.183,0.149,0.623,0.17800000000000002,2009-10 5969,Mike Wilks,OKC,31.0,177.8,81.64656,Rice,USA,Undrafted,Undrafted,Undrafted,4,4.0,1.0,1.0,-28.1,0.02,0.061,0.14300000000000002,0.581,0.14300000000000002,2009-10 5970,Mikki Moore,GSW,34.0,213.36,102.0582,Nebraska,USA,Undrafted,Undrafted,Undrafted,23,5.0,3.0,1.6,-14.9,0.068,0.12300000000000001,0.12300000000000001,0.606,0.131,2009-10 5971,Mo Williams,CLE,27.0,185.42,86.18248,Alabama,USA,2003,2,47,69,15.8,3.0,5.3,5.3,0.015,0.087,0.221,0.58,0.247,2009-10 5972,Monta Ellis,GSW,24.0,190.5,81.64656,None,USA,2005,2,40,64,25.5,4.0,5.3,-7.2,0.02,0.09300000000000001,0.294,0.517,0.21600000000000003,2009-10 5973,Morris Peterson,NOH,32.0,200.66,99.79024,Michigan State,USA,2000,1,21,46,7.1,2.7,0.9,-5.3,0.02,0.141,0.163,0.503,0.059000000000000004,2009-10 5974,Jermaine O'Neal,MIA,31.0,210.82,115.66596000000001,None,USA,1996,1,17,70,13.6,6.9,1.3,5.1,0.075,0.21,0.22899999999999998,0.563,0.078,2009-10 5975,Kobe Bryant,LAL,31.0,198.12,92.98635999999999,None,USA,1996,1,13,73,27.0,5.4,5.0,8.5,0.032,0.122,0.32299999999999995,0.545,0.23,2009-10 5976,John Salmons,MIL,30.0,198.12,93.89354399999999,Miami (FL),USA,2002,1,26,81,15.4,3.3,2.8,2.5,0.013999999999999999,0.09300000000000001,0.203,0.5529999999999999,0.132,2009-10 5977,Jonas Jerebko,DET,23.0,208.28,104.779752,None,Sweden,2009,2,39,80,9.3,6.0,0.7,-3.5,0.099,0.16399999999999998,0.158,0.545,0.040999999999999995,2009-10 5978,Kevin Ollie,OKC,37.0,187.96,88.45044,Connecticut,USA,Undrafted,Undrafted,Undrafted,25,1.8,1.0,0.8,-3.9,0.016,0.106,0.09699999999999999,0.45299999999999996,0.12,2009-10 5979,Kevin Martin,HOU,27.0,200.66,83.91452,Western Carolina,USA,2004,1,26,46,20.6,3.6,2.4,-4.2,0.02,0.096,0.252,0.561,0.113,2009-10 5980,Kevin Love,MIN,21.0,208.28,117.93392,UCLA,USA,2008,1,5,60,14.0,11.0,2.3,-7.4,0.145,0.282,0.21899999999999997,0.5489999999999999,0.127,2009-10 5981,Kevin Garnett,BOS,34.0,210.82,114.758776,None,USA,1995,1,5,69,14.3,7.3,2.7,8.1,0.049,0.23600000000000002,0.22,0.569,0.14800000000000002,2009-10 5982,Kevin Durant,OKC,21.0,205.74,104.32616,Texas,USA,2007,1,2,82,30.1,7.6,2.8,7.0,0.038,0.177,0.317,0.607,0.13,2009-10 5983,Kenyon Martin,DEN,32.0,205.74,108.86208,Cincinnati,USA,2000,1,1,58,11.5,9.4,1.9,3.4,0.08199999999999999,0.23199999999999998,0.174,0.48100000000000004,0.087,2009-10 5984,Kenny Thomas,SAC,32.0,200.66,111.13004,New Mexico,USA,1999,1,22,26,1.6,3.3,0.6,2.5,0.133,0.184,0.083,0.509,0.064,2009-10 5985,Kendrick Perkins,BOS,25.0,208.28,127.00576000000001,None,USA,2003,1,27,78,10.1,7.6,1.0,7.4,0.09699999999999999,0.235,0.177,0.613,0.057,2009-10 5986,Kelenna Azubuike,GSW,26.0,195.58,99.79024,Kentucky,England,Undrafted,Undrafted,Undrafted,9,13.9,4.6,1.1,-9.1,0.054000000000000006,0.141,0.195,0.623,0.07,2009-10 5987,Keith Bogans,SAS,30.0,195.58,97.52228000000001,Kentucky,USA,2003,2,43,79,4.4,2.2,1.2,1.9,0.02,0.111,0.11,0.542,0.086,2009-10 5988,Kareem Rush,LAC,29.0,198.12,97.52228000000001,Missouri,USA,2002,1,20,7,1.3,0.9,0.6,-3.0,0.021,0.1,0.113,0.409,0.105,2009-10 5989,Jon Brockman,SAC,23.0,200.66,115.66596000000001,Washington,USA,2009,2,38,52,2.8,4.1,0.4,-1.7,0.192,0.20199999999999999,0.102,0.564,0.049,2009-10 5990,Juwan Howard,POR,37.0,205.74,114.758776,Michigan,USA,1994,1,5,73,6.0,4.6,0.8,-1.1,0.08,0.18,0.14300000000000002,0.5379999999999999,0.062,2009-10 5991,Jrue Holiday,PHI,20.0,193.04,81.64656,UCLA,USA,2009,1,17,73,8.0,2.6,3.8,-5.1,0.037000000000000005,0.092,0.183,0.526,0.239,2009-10 5992,Josh Smith,ATL,24.0,205.74,108.86208,None,USA,2004,1,17,81,15.7,8.7,4.2,7.3,0.09,0.196,0.22399999999999998,0.536,0.187,2009-10 5993,Josh Powell,LAL,27.0,205.74,108.86208,North Carolina State,USA,Undrafted,Undrafted,Undrafted,63,2.7,1.8,0.6,-5.6,0.08,0.147,0.18600000000000003,0.40700000000000003,0.09699999999999999,2009-10 5994,Josh McRoberts,IND,23.0,208.28,108.86208,Duke,USA,2007,2,37,42,4.3,3.0,1.0,-0.9,0.084,0.192,0.15,0.55,0.124,2009-10 5995,Josh Howard,WAS,30.0,200.66,95.25432,Wake Forest,USA,2003,1,29,35,12.7,3.6,1.4,1.1,0.039,0.11699999999999999,0.249,0.496,0.086,2009-10 5996,Josh Boone,NJN,25.0,208.28,108.86208,Connecticut,USA,2006,1,23,63,4.0,5.0,0.5,-11.0,0.125,0.221,0.124,0.509,0.047,2009-10 5997,Jose Calderon,TOR,28.0,190.5,95.25432,None,Spain,Undrafted,Undrafted,Undrafted,68,10.3,2.1,5.9,-2.3,0.015,0.076,0.17800000000000002,0.569,0.33399999999999996,2009-10 5998,Jordan Hill,HOU,22.0,208.28,106.59411999999999,Arizona,USA,2009,1,8,47,5.2,3.7,0.4,-2.8,0.126,0.195,0.18100000000000002,0.528,0.052000000000000005,2009-10 5999,Jordan Farmar,LAL,23.0,187.96,81.64656,UCLA,USA,2006,1,26,82,7.2,1.6,1.5,2.4,0.011000000000000001,0.08800000000000001,0.192,0.535,0.139,2009-10 6000,Jonny Flynn,MIN,21.0,182.88,83.91452,Syracuse,USA,2009,1,6,81,13.5,2.4,4.4,-13.2,0.011000000000000001,0.083,0.243,0.511,0.245,2009-10 6001,Jonathan Bender,NYK,29.0,213.36,104.32616,None,USA,1999,1,5,25,4.7,2.1,0.6,-10.5,0.054000000000000006,0.139,0.21,0.529,0.094,2009-10 6002,Julian Wright,NOH,23.0,203.2,102.0582,Kansas,USA,2007,1,13,68,3.8,2.1,0.6,-0.4,0.079,0.11900000000000001,0.151,0.518,0.066,2009-10 6003,Ty Lawson,DEN,22.0,180.34,88.45044,North Carolina,USA,2009,1,18,65,8.3,1.9,3.1,5.4,0.037000000000000005,0.071,0.17600000000000002,0.6,0.233,2009-10 6004,DeAndre Jordan,LAC,21.0,210.82,113.398,Texas A&M,USA,2008,2,35,70,4.8,5.0,0.3,-10.0,0.127,0.248,0.147,0.5710000000000001,0.028999999999999998,2009-10 6005,Tyreke Evans,SAC,20.0,198.12,99.79024,Memphis,USA,2009,1,4,72,20.1,5.3,5.8,-7.0,0.027000000000000003,0.136,0.264,0.529,0.268,2009-10 6006,Chris Paul,NOH,25.0,182.88,79.3786,Wake Forest,USA,2005,1,4,45,18.7,4.2,10.7,1.0,0.013000000000000001,0.11800000000000001,0.226,0.584,0.456,2009-10 6007,Chris Kaman,LAC,28.0,213.36,120.20188,Central Michigan,USA,2003,1,6,76,18.5,9.3,1.6,-5.4,0.081,0.222,0.27,0.527,0.086,2009-10 6008,Chris Hunter,GSW,25.0,210.82,108.86208,Michigan,USA,Undrafted,Undrafted,Undrafted,60,4.5,2.8,0.6,-1.6,0.077,0.165,0.151,0.546,0.065,2009-10 6009,Chris Duhon,NYK,27.0,185.42,86.18248,Duke,USA,2004,2,38,67,7.4,2.7,5.6,-3.7,0.015,0.086,0.132,0.501,0.258,2009-10 6010,Chris Douglas-Roberts,NJN,23.0,200.66,95.25432,Memphis,USA,2008,2,40,67,9.8,3.0,1.4,-11.2,0.028999999999999998,0.109,0.196,0.512,0.099,2009-10 6011,Chris Bosh,TOR,26.0,208.28,104.32616,Georgia Tech,USA,2003,1,4,70,24.0,10.8,2.4,0.3,0.099,0.24600000000000002,0.28800000000000003,0.5920000000000001,0.11599999999999999,2009-10 6012,Chris Andersen,DEN,31.0,208.28,103.418976,Blinn,USA,Undrafted,Undrafted,Undrafted,76,5.9,6.4,0.4,10.3,0.10400000000000001,0.221,0.107,0.631,0.027999999999999997,2009-10 6013,Chauncey Billups,DEN,33.0,190.5,91.625584,Colorado,USA,1997,1,3,73,19.5,3.1,5.6,4.5,0.012,0.09300000000000001,0.244,0.601,0.27,2009-10 6014,Chase Budinger,HOU,22.0,200.66,98.88305600000001,Arizona,USA,2009,2,44,74,8.9,3.0,1.2,0.1,0.027000000000000003,0.147,0.18899999999999997,0.545,0.096,2009-10 6015,Charlie Villanueva,DET,25.0,210.82,105.23334399999999,Connecticut,USA,2005,1,7,78,11.9,4.7,0.7,-9.3,0.052000000000000005,0.198,0.23800000000000002,0.526,0.053,2009-10 6016,Charlie Bell,MIL,31.0,190.5,90.7184,Michigan State,USA,Undrafted,Undrafted,Undrafted,71,6.5,1.9,1.5,0.2,0.021,0.07400000000000001,0.147,0.486,0.09699999999999999,2009-10 6017,Channing Frye,PHX,27.0,210.82,111.13004,Arizona,USA,2005,1,8,81,11.2,5.3,1.4,8.6,0.036000000000000004,0.17800000000000002,0.17,0.598,0.07200000000000001,2009-10 6018,Cedric Jackson,WAS,24.0,190.5,86.18248,Cleveland State,USA,Undrafted,Undrafted,Undrafted,12,1.7,0.7,1.2,-1.3,0.028999999999999998,0.087,0.21600000000000003,0.396,0.33299999999999996,2009-10 6019,Cartier Martin,WAS,25.0,200.66,99.79024,Kansas State,USA,Undrafted,Undrafted,Undrafted,18,7.8,3.8,0.9,0.5,0.069,0.126,0.187,0.473,0.065,2009-10 6020,Caron Butler,DAL,30.0,200.66,103.418976,Connecticut,USA,2002,1,10,74,16.3,6.2,2.1,-0.7,0.043,0.147,0.21899999999999997,0.507,0.092,2009-10 6021,Carmelo Anthony,DEN,26.0,203.2,104.32616,Syracuse,USA,2003,1,3,69,28.2,6.6,3.2,5.4,0.065,0.131,0.332,0.5479999999999999,0.159,2009-10 6022,Carlos Delfino,MIL,27.0,198.12,104.32616,None,Argentina,2003,1,25,75,11.0,5.3,2.7,2.0,0.024,0.182,0.182,0.526,0.14,2009-10 6023,Carlos Boozer,UTA,28.0,205.74,120.655472,Duke,USA,2002,2,34,78,19.5,11.2,3.2,4.1,0.08199999999999999,0.302,0.249,0.599,0.155,2009-10 6024,Carlos Arroyo,MIA,30.0,187.96,91.625584,Florida International,Puerto Rico,Undrafted,Undrafted,Undrafted,72,6.1,1.8,3.1,3.4,0.02,0.077,0.14300000000000002,0.529,0.23,2009-10 6025,Carl Landry,SAC,26.0,205.74,112.490816,Purdue,USA,2007,2,31,80,16.8,5.9,0.8,-2.9,0.086,0.136,0.22699999999999998,0.6,0.048,2009-10 6026,CJ Miles,UTA,23.0,198.12,102.965384,None,USA,2005,2,34,63,9.9,2.7,1.7,3.5,0.033,0.098,0.201,0.515,0.10400000000000001,2009-10 6027,C.J. Watson,GSW,26.0,187.96,79.3786,Tennessee,USA,Undrafted,Undrafted,Undrafted,65,10.3,2.6,2.8,-0.7,0.017,0.09,0.161,0.555,0.14300000000000002,2009-10 6028,Byron Mullens,OKC,21.0,213.36,124.7378,Ohio State,USA,2009,1,24,13,1.1,0.8,0.1,-17.4,0.065,0.146,0.19899999999999998,0.368,0.03,2009-10 6029,Chris Quinn,NJN,26.0,187.96,79.3786,Notre Dame,USA,Undrafted,Undrafted,Undrafted,25,2.2,0.6,1.2,-10.6,0.006,0.077,0.149,0.47700000000000004,0.23199999999999998,2009-10 6030,Chris Richard,CHI,25.0,205.74,116.119552,Florida,USA,2007,2,41,18,2.1,3.3,0.4,-8.1,0.091,0.201,0.09699999999999999,0.547,0.051,2009-10 6031,Chris Wilcox,DET,27.0,208.28,106.59411999999999,Maryland,USA,2002,1,8,34,4.5,3.4,0.4,-18.1,0.11199999999999999,0.222,0.18899999999999997,0.532,0.051,2009-10 6032,Chuck Hayes,HOU,27.0,198.12,107.95489599999999,Kentucky,USA,Undrafted,Undrafted,Undrafted,82,4.4,5.7,1.7,1.1,0.09699999999999999,0.212,0.111,0.5,0.11,2009-10 6033,Darren Collison,NOH,22.0,182.88,72.57472,UCLA,USA,2009,1,21,76,12.4,2.5,5.7,-4.4,0.023,0.086,0.23,0.546,0.32299999999999995,2009-10 6034,Darrell Arthur,MEM,22.0,205.74,106.59411999999999,Kansas,USA,2008,1,27,32,4.5,3.4,0.5,-12.0,0.086,0.18899999999999997,0.172,0.449,0.052000000000000005,2009-10 6035,Darnell Jackson,MIL,24.0,205.74,114.758776,Kansas,USA,2008,2,52,28,0.8,0.8,0.1,-12.4,0.091,0.11599999999999999,0.177,0.35200000000000004,0.055999999999999994,2009-10 6036,Darko Milicic,MIN,25.0,213.36,124.7378,None,Serbia,2003,1,2,32,6.7,4.7,1.5,-9.3,0.07400000000000001,0.17800000000000002,0.161,0.49700000000000005,0.105,2009-10 6037,Darius Songaila,NOH,32.0,205.74,112.490816,Wake Forest,Lithuania,2002,2,49,75,7.2,3.1,0.9,-2.7,0.05,0.156,0.19699999999999998,0.522,0.081,2009-10 6038,Dante Cunningham,POR,23.0,203.2,104.32616,Villanova,USA,2009,2,33,63,3.9,2.5,0.2,5.5,0.094,0.19,0.166,0.517,0.032,2009-10 6039,Danny Green,CLE,23.0,198.12,95.25432,North Carolina,USA,2009,2,46,20,2.0,0.9,0.3,-6.0,0.08199999999999999,0.087,0.18600000000000003,0.48,0.07400000000000001,2009-10 6040,Danny Granger,IND,27.0,203.2,103.418976,New Mexico,USA,2005,1,17,62,24.1,5.5,2.8,-0.8,0.032,0.134,0.28800000000000003,0.564,0.134,2009-10 6041,Danilo Gallinari,NYK,21.0,208.28,102.0582,None,Italy,2008,1,6,81,15.1,4.9,1.7,-2.6,0.027000000000000003,0.14,0.19399999999999998,0.575,0.077,2009-10 6042,Daniel Gibson,CLE,24.0,187.96,90.7184,Texas,USA,2006,2,42,56,6.3,1.3,1.3,8.9,0.016,0.062,0.14400000000000002,0.613,0.10400000000000001,2009-10 6043,Dan Gadzuric,MIL,32.0,210.82,111.13004,UCLA,Netherlands,2002,2,33,32,2.8,2.9,0.4,4.1,0.126,0.193,0.161,0.44,0.061,2009-10 6044,Brook Lopez,NJN,22.0,213.36,120.20188,Stanford,USA,2008,1,10,82,18.8,8.6,2.3,-10.4,0.098,0.17300000000000001,0.23600000000000002,0.57,0.11599999999999999,2009-10 6045,Damien Wilkins,MIN,30.0,198.12,102.0582,Georgia,USA,Undrafted,Undrafted,Undrafted,80,5.6,3.1,1.7,-8.7,0.05,0.127,0.141,0.515,0.126,2009-10 6046,Daequan Cook,MIA,23.0,195.58,95.25432,Ohio State,USA,2007,1,21,45,5.0,1.8,1.0,-1.1,0.013999999999999999,0.11800000000000001,0.19699999999999998,0.42200000000000004,0.109,2009-10 6047,DaJuan Summers,DET,22.0,203.2,108.86208,Georgetown,USA,2009,2,35,44,3.0,1.0,0.4,-13.7,0.038,0.099,0.183,0.457,0.07,2009-10 6048,DJ White,OKC,23.0,205.74,113.851592,Indiana,USA,2008,1,29,12,4.9,1.9,0.3,3.5,0.12300000000000001,0.14800000000000002,0.203,0.65,0.069,2009-10 6049,DJ Mbenga,LAL,29.0,213.36,115.66596000000001,None,Democratic Republic of the Congo,Undrafted,Undrafted,Undrafted,49,2.1,1.8,0.2,-2.4,0.09300000000000001,0.166,0.166,0.47100000000000003,0.037000000000000005,2009-10 6050,D.J. Augustin,CHA,22.0,182.88,81.64656,Texas,USA,2008,1,9,80,6.4,1.2,2.4,0.2,0.009000000000000001,0.068,0.179,0.516,0.23199999999999998,2009-10 6051,Craig Smith,LAC,26.0,200.66,113.398,Boston College,USA,2006,2,36,75,7.8,3.8,1.1,-3.8,0.09300000000000001,0.18600000000000003,0.21600000000000003,0.599,0.124,2009-10 6052,Courtney Lee,NJN,24.0,195.58,90.7184,Western Kentucky,USA,2008,1,22,71,12.5,3.5,1.7,-9.4,0.027999999999999997,0.099,0.17800000000000002,0.525,0.086,2009-10 6053,Corey Maggette,GSW,30.0,198.12,102.0582,Duke,USA,1999,1,13,70,19.8,5.3,2.5,-6.5,0.05,0.155,0.266,0.615,0.133,2009-10 6054,Corey Brewer,MIN,24.0,205.74,85.275296,Florida,USA,2007,1,7,82,13.0,3.4,2.4,-10.1,0.031,0.09699999999999999,0.215,0.502,0.122,2009-10 6055,Coby Karl,GSW,27.0,195.58,97.52228000000001,Boise State,USA,Undrafted,Undrafted,Undrafted,7,4.0,2.6,2.1,-9.8,0.035,0.152,0.171,0.40399999999999997,0.19699999999999998,2009-10 6056,Chucky Atkins,DET,35.0,180.34,83.91452,South Florida,USA,Undrafted,Undrafted,Undrafted,40,4.0,0.7,2.3,-6.0,0.009000000000000001,0.053,0.141,0.47700000000000004,0.22,2009-10 6057,Dahntay Jones,IND,29.0,198.12,95.25432,Duke,USA,2003,1,20,76,10.2,3.0,2.0,-5.3,0.027999999999999997,0.107,0.201,0.527,0.133,2009-10 6058,Brian Skinner,LAC,34.0,205.74,115.66596000000001,Baylor,USA,1998,1,22,16,1.6,1.7,0.0,-13.6,0.08900000000000001,0.22,0.135,0.456,0.0,2009-10 6059,Brian Scalabrine,BOS,32.0,205.74,106.59411999999999,Southern California,USA,2001,2,34,52,1.5,0.9,0.5,-6.8,0.023,0.10800000000000001,0.106,0.445,0.092,2009-10 6060,Brian Cook,HOU,29.0,205.74,113.398,Illinois,USA,2003,1,24,14,1.5,0.6,0.1,-33.6,0.019,0.195,0.28,0.40299999999999997,0.05,2009-10 6061,Andrew Bogut,MIL,25.0,213.36,117.93392,Utah,Australia,2005,1,1,69,15.9,10.2,1.8,4.9,0.10300000000000001,0.262,0.23399999999999999,0.54,0.10099999999999999,2009-10 6062,Andres Nocioni,SAC,30.0,200.66,102.0582,None,Argentina,Undrafted,Undrafted,Undrafted,75,8.5,3.0,1.0,-6.1,0.024,0.149,0.20600000000000002,0.504,0.077,2009-10 6063,Andrei Kirilenko,UTA,29.0,205.74,102.0582,None,Russia,1999,1,24,58,11.9,4.6,2.7,6.7,0.055999999999999994,0.125,0.177,0.588,0.14300000000000002,2009-10 6064,Andrea Bargnani,TOR,24.0,213.36,113.398,None,Italy,2006,1,1,80,17.2,6.2,1.2,-3.9,0.045,0.161,0.223,0.552,0.053,2009-10 6065,Andre Miller,POR,34.0,187.96,90.7184,Utah,USA,1999,1,8,82,14.0,3.2,5.4,6.9,0.04,0.092,0.24,0.53,0.29600000000000004,2009-10 6066,Andre Iguodala,PHI,26.0,198.12,93.89354399999999,Arizona,USA,2004,1,9,82,17.1,6.5,5.8,-4.3,0.03,0.168,0.218,0.535,0.23800000000000002,2009-10 6067,Andray Blatche,WAS,23.0,210.82,112.490816,None,USA,2005,2,49,81,14.1,6.3,2.1,-6.7,0.08,0.18899999999999997,0.258,0.519,0.138,2009-10 6068,Anderson Varejao,CLE,27.0,210.82,117.93392,None,Brazil,2004,2,30,76,8.6,7.6,1.1,12.6,0.11199999999999999,0.20800000000000002,0.132,0.598,0.062,2009-10 6069,Amir Johnson,TOR,23.0,205.74,95.25432,None,USA,2005,2,56,82,6.2,4.8,0.6,3.0,0.128,0.185,0.145,0.639,0.05,2009-10 6070,Amar'e Stoudemire,PHX,27.0,208.28,112.94440800000001,None,USA,2002,1,9,82,23.1,8.9,1.0,5.4,0.098,0.185,0.273,0.615,0.047,2009-10 6071,Alonzo Gee,WAS,23.0,198.12,99.79024,Alabama,USA,Undrafted,Undrafted,Undrafted,11,7.4,3.0,0.6,-1.4,0.08900000000000001,0.129,0.205,0.564,0.071,2009-10 6072,Andrew Bynum,LAL,22.0,213.36,129.27372,None,USA,2005,1,10,65,15.0,8.3,1.0,6.0,0.10300000000000001,0.203,0.20800000000000002,0.608,0.055,2009-10 6073,Allen Iverson,PHI,35.0,182.88,74.84268,Georgetown,USA,1996,1,1,28,13.8,2.8,4.0,-3.0,0.021,0.083,0.22699999999999998,0.515,0.209,2009-10 6074,Alando Tucker,MIN,26.0,198.12,92.98635999999999,Wisconsin,USA,2007,1,29,15,3.4,0.7,0.3,-18.9,0.065,0.043,0.243,0.529,0.077,2009-10 6075,Al Thornton,WAS,26.0,203.2,99.79024,Florida State,USA,2007,1,14,75,10.7,3.9,1.2,-7.5,0.065,0.105,0.192,0.523,0.07200000000000001,2009-10 6076,Al Jefferson,MIN,25.0,208.28,120.20188,None,USA,2004,1,15,76,17.1,9.3,1.8,-11.1,0.08,0.247,0.247,0.524,0.099,2009-10 6077,Al Horford,ATL,24.0,208.28,111.13004,Florida,Dominican Republic,2007,1,3,81,14.2,9.9,2.3,8.2,0.09699999999999999,0.231,0.179,0.594,0.102,2009-10 6078,Al Harrington,NYK,30.0,205.74,113.398,None,USA,1998,1,25,72,17.7,5.6,1.5,-4.8,0.044000000000000004,0.17,0.267,0.546,0.08800000000000001,2009-10 6079,Adam Morrison,LAL,25.0,203.2,92.98635999999999,Gonzaga,USA,2006,1,3,31,2.4,1.0,0.6,-9.1,0.044000000000000004,0.10099999999999999,0.183,0.418,0.121,2009-10 6080,Acie Law,CHI,25.0,190.5,91.625584,Texas A&M,USA,2007,1,11,26,4.3,0.7,1.0,7.0,0.015,0.068,0.22,0.585,0.17,2009-10 6081,Aaron Gray,NOH,25.0,213.36,122.46983999999999,Pittsburgh,USA,2007,2,49,32,3.3,3.3,0.7,-1.7,0.16399999999999998,0.23,0.16399999999999998,0.551,0.109,2009-10 6082,Aaron Brooks,HOU,25.0,182.88,73.028312,Oregon,USA,2007,1,26,82,19.6,2.6,5.3,-0.7,0.021,0.065,0.258,0.5489999999999999,0.253,2009-10 6083,AJ Price,IND,23.0,187.96,82.10015200000001,Connecticut,USA,2009,2,52,56,7.3,1.6,1.9,1.4,0.015,0.098,0.225,0.53,0.198,2009-10 6084,Mike Bibby,ATL,32.0,187.96,88.45044,Arizona,USA,1998,1,2,80,9.1,2.3,3.9,7.1,0.01,0.086,0.162,0.5379999999999999,0.204,2009-10 6085,Alexis Ajinca,CHA,22.0,213.36,99.79024,None,France,2008,1,20,6,1.7,0.7,0.0,11.5,0.036000000000000004,0.111,0.193,0.479,0.0,2009-10 6086,David Andersen,HOU,30.0,210.82,111.13004,None,USA,2002,2,36,63,5.8,3.3,0.7,1.8,0.066,0.2,0.20199999999999999,0.49700000000000005,0.084,2009-10 6087,Andris Biedrins,GSW,24.0,210.82,108.86208,None,Latvia,2004,1,11,33,5.0,7.8,1.7,-8.0,0.08800000000000001,0.27399999999999997,0.102,0.561,0.105,2009-10 6088,Anthony Carter,DEN,35.0,187.96,88.45044,Hawaii,USA,Undrafted,Undrafted,Undrafted,54,3.3,1.6,3.0,-1.8,0.024,0.098,0.127,0.48200000000000004,0.264,2009-10 6089,Brian Cardinal,MIN,33.0,203.2,108.86208,Purdue,USA,2000,2,44,29,1.7,1.0,0.8,-10.3,0.03,0.098,0.084,0.546,0.131,2009-10 6090,Brendan Haywood,DAL,30.0,213.36,119.294696,North Carolina,USA,2001,1,20,77,9.1,9.3,0.6,1.2,0.136,0.20800000000000002,0.135,0.588,0.027999999999999997,2009-10 6091,Brandon Rush,IND,24.0,198.12,95.25432,Kansas,USA,2008,1,13,82,9.4,4.2,1.4,-3.7,0.017,0.133,0.149,0.522,0.07,2009-10 6092,Brandon Roy,POR,25.0,198.12,95.707912,Washington,USA,2006,1,6,65,21.5,4.4,4.7,6.0,0.037000000000000005,0.109,0.266,0.568,0.228,2009-10 6093,Brandon Jennings,MIL,20.0,185.42,76.657048,None,USA,2009,1,10,82,15.5,3.4,5.7,1.8,0.019,0.105,0.26,0.475,0.298,2009-10 6094,Brandon Bass,ORL,25.0,203.2,113.398,Louisiana State,USA,2005,2,33,50,5.8,2.5,0.4,6.0,0.09699999999999999,0.131,0.20600000000000002,0.556,0.048,2009-10 6095,Brad Miller,CHI,34.0,213.36,118.38751200000002,Purdue,USA,Undrafted,Undrafted,Undrafted,82,8.8,4.9,1.9,-1.8,0.048,0.183,0.18,0.53,0.122,2009-10 6096,Boris Diaw,CHA,28.0,203.2,106.59411999999999,None,France,2003,1,21,82,11.3,5.2,4.0,2.3,0.055999999999999994,0.11900000000000001,0.163,0.552,0.185,2009-10 6097,Bobby Simmons,NJN,30.0,198.12,104.32616,DePaul,USA,2001,2,41,23,5.3,2.7,0.7,-7.8,0.028999999999999998,0.158,0.165,0.485,0.065,2009-10 6098,Bobby Brown,LAC,25.0,187.96,79.3786,Cal State-Fullerton,USA,Undrafted,Undrafted,Undrafted,45,4.8,0.8,2.0,-8.7,0.02,0.068,0.256,0.441,0.289,2009-10 6099,Beno Udrih,SAC,27.0,190.5,92.98635999999999,None,Slovenia,2004,1,28,79,12.9,2.8,4.7,-5.1,0.017,0.086,0.185,0.5660000000000001,0.239,2009-10 6100,Antawn Jamison,CLE,34.0,205.74,106.59411999999999,North Carolina,USA,1998,1,4,66,18.7,8.4,1.3,0.7,0.064,0.201,0.237,0.529,0.057999999999999996,2009-10 6101,Ben Wallace,DET,35.0,205.74,108.86208,Virginia Union,USA,Undrafted,Undrafted,Undrafted,69,5.5,8.7,1.5,-2.2,0.139,0.22899999999999998,0.1,0.526,0.081,2009-10 6102,Baron Davis,LAC,31.0,190.5,97.52228000000001,UCLA,USA,1999,1,3,75,15.3,3.5,8.0,-3.7,0.024,0.09699999999999999,0.24,0.501,0.385,2009-10 6103,Austin Daye,DET,22.0,210.82,90.7184,Gonzaga,USA,2009,1,15,69,5.1,2.5,0.5,-8.5,0.042,0.204,0.18100000000000002,0.546,0.063,2009-10 6104,Arron Afflalo,DEN,24.0,195.58,97.52228000000001,UCLA,USA,2007,1,27,82,8.8,3.1,1.7,3.9,0.03,0.098,0.141,0.5760000000000001,0.09300000000000001,2009-10 6105,Antonio McDyess,SAS,35.0,205.74,111.13004,Alabama,USA,1995,1,2,77,5.8,5.9,1.1,6.6,0.11,0.214,0.151,0.49200000000000005,0.076,2009-10 6106,Antonio Anderson,OKC,25.0,198.12,97.52228000000001,Memphis,USA,Undrafted,Undrafted,Undrafted,1,2.0,1.0,0.0,-7.3,0.067,0.0,0.1,0.33299999999999996,0.0,2009-10 6107,Antoine Wright,TOR,26.0,200.66,97.52228000000001,Texas A&M,USA,2005,1,15,67,6.5,2.8,1.1,1.6,0.033,0.128,0.161,0.502,0.075,2009-10 6108,Anthony Tolliver,GSW,25.0,205.74,110.22285600000001,Creighton,USA,Undrafted,Undrafted,Undrafted,46,11.7,7.0,1.9,-0.3,0.063,0.183,0.16699999999999998,0.531,0.084,2009-10 6109,Anthony Randolph,GSW,20.0,208.28,95.25432,Louisiana State,USA,2008,1,14,33,11.6,6.5,1.3,-6.0,0.11,0.217,0.235,0.521,0.08900000000000001,2009-10 6110,Anthony Parker,CLE,35.0,198.12,97.52228000000001,Bradley,USA,1997,1,21,81,7.3,2.9,1.9,8.9,0.016,0.099,0.11900000000000001,0.5760000000000001,0.095,2009-10 6111,Anthony Morrow,GSW,24.0,195.58,95.25432,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,69,13.0,3.8,1.5,-2.8,0.033,0.111,0.177,0.597,0.075,2009-10 6112,Anthony Johnson,ORL,35.0,190.5,88.45044,College of Charleston,USA,1997,2,39,31,4.2,1.5,2.0,7.6,0.025,0.10800000000000001,0.166,0.5429999999999999,0.249,2009-10 6113,Ben Gordon,DET,27.0,190.5,90.7184,Connecticut,USA,2004,1,3,62,13.8,1.9,2.7,-7.5,0.018000000000000002,0.07,0.24600000000000002,0.534,0.16699999999999998,2009-10 6114,Tyler Hansbrough,IND,24.0,205.74,113.398,North Carolina,USA,2009,1,13,29,8.5,4.8,1.0,-4.3,0.12,0.17300000000000001,0.249,0.44799999999999995,0.09699999999999999,2009-10 6115,David Lee,NYK,27.0,205.74,113.398,Florida,USA,2005,1,30,81,20.2,11.7,3.6,-4.6,0.085,0.27399999999999997,0.239,0.584,0.172,2009-10 6116,DeJuan Blair,SAS,21.0,200.66,120.20188,Pittsburgh,USA,2009,2,37,82,7.8,6.4,0.8,4.0,0.159,0.255,0.204,0.564,0.07,2009-10 6117,Jarvis Hayes,NJN,28.0,203.2,103.418976,Georgia,USA,2003,1,10,45,7.8,2.4,0.9,-7.6,0.01,0.115,0.163,0.521,0.064,2009-10 6118,Jarron Collins,PHX,31.0,210.82,112.94440800000001,Stanford,USA,2001,2,52,34,1.0,1.8,0.2,-0.6,0.08900000000000001,0.162,0.087,0.405,0.031,2009-10 6119,Jarrett Jack,TOR,26.0,190.5,89.357624,Georgia Tech,USA,2005,1,22,82,11.4,2.7,5.0,-1.6,0.016,0.099,0.19,0.599,0.27699999999999997,2009-10 6120,Jared Jeffries,HOU,28.0,210.82,108.86208,Indiana,USA,2002,1,11,70,5.3,4.1,1.4,-1.0,0.08,0.10099999999999999,0.11199999999999999,0.507,0.08,2009-10 6121,Jared Dudley,PHX,24.0,200.66,102.0582,Boston College,USA,2007,1,22,82,8.2,3.4,1.4,6.5,0.06,0.1,0.138,0.612,0.08199999999999999,2009-10 6122,Jannero Pargo,CHI,30.0,185.42,83.91452,Arkansas,USA,Undrafted,Undrafted,Undrafted,63,5.5,1.2,1.4,-5.1,0.012,0.096,0.247,0.429,0.182,2009-10 6123,JamesOn Curry,LAC,24.0,190.5,86.18248,Oklahoma State,USA,2007,2,51,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2009-10 6124,James Singleton,WAS,28.0,203.2,104.32616,Murray State,USA,Undrafted,Undrafted,Undrafted,57,4.5,4.8,0.5,-8.5,0.121,0.20800000000000002,0.152,0.452,0.051,2009-10 6125,James Posey,NOH,33.0,203.2,98.429464,Xavier,USA,1999,1,18,77,5.2,4.3,1.5,-2.1,0.022000000000000002,0.209,0.11599999999999999,0.525,0.096,2009-10 6126,James Jones,MIA,29.0,203.2,99.79024,Miami (FL),USA,2003,2,49,36,4.1,1.3,0.5,-0.4,0.009000000000000001,0.094,0.135,0.556,0.055999999999999994,2009-10 6127,James Johnson,CHI,23.0,205.74,111.13004,Wake Forest,USA,2009,1,16,65,3.9,2.0,0.7,-9.3,0.051,0.141,0.179,0.532,0.10400000000000001,2009-10 6128,James Harden,OKC,20.0,195.58,99.79024,Arizona State,USA,2009,1,3,76,9.9,3.2,1.8,5.9,0.032,0.126,0.203,0.551,0.13,2009-10 6129,Jameer Nelson,ORL,28.0,182.88,86.18248,Saint Joseph's,USA,2004,1,20,65,12.6,3.0,5.4,10.3,0.017,0.10400000000000001,0.226,0.54,0.32299999999999995,2009-10 6130,Jamario Moon,CLE,30.0,203.2,90.7184,Meridian Community College,USA,Undrafted,Undrafted,Undrafted,61,4.9,3.1,0.8,7.5,0.03,0.175,0.129,0.555,0.073,2009-10 6131,Jamal Crawford,ATL,30.0,195.58,90.7184,Michigan,USA,2000,1,8,79,18.0,2.5,3.0,4.4,0.016,0.08,0.254,0.573,0.163,2009-10 6132,Jamaal Tinsley,MEM,32.0,190.5,83.91452,Iowa State,USA,2001,1,27,38,3.5,1.7,2.8,-2.0,0.023,0.106,0.158,0.43799999999999994,0.251,2009-10 6133,Jamaal Magloire,MIA,32.0,210.82,115.66596000000001,Kentucky,Canada,2000,1,19,36,2.1,3.4,0.0,-0.6,0.133,0.261,0.131,0.47,0.005,2009-10 6134,JaVale McGee,WAS,22.0,213.36,114.30518400000001,Nevada,USA,2008,1,18,60,6.4,4.1,0.2,-8.2,0.106,0.184,0.195,0.539,0.024,2009-10 6135,JR Smith,DEN,24.0,198.12,99.79024,None,USA,2004,1,18,75,15.4,3.1,2.4,5.7,0.016,0.115,0.267,0.515,0.149,2009-10 6136,JJ Redick,ORL,26.0,193.04,86.18248,Duke,USA,2006,1,11,82,9.6,1.9,1.9,6.1,0.011000000000000001,0.087,0.182,0.606,0.14300000000000002,2009-10 6137,JJ Hickson,CLE,21.0,205.74,109.769264,North Carolina State,USA,2008,1,19,81,8.5,4.9,0.5,2.6,0.08199999999999999,0.193,0.18899999999999997,0.58,0.037000000000000005,2009-10 6138,J.R. Giddens,NYK,25.0,195.58,97.52228000000001,New Mexico,USA,2008,1,30,32,2.2,1.6,0.4,-8.8,0.073,0.17800000000000002,0.162,0.49200000000000005,0.096,2009-10 6139,J.J. Barea,DAL,26.0,182.88,79.3786,Northeastern,Puerto Rico,Undrafted,Undrafted,Undrafted,78,7.6,1.9,3.3,-1.0,0.013000000000000001,0.096,0.20199999999999999,0.526,0.26899999999999996,2009-10 6140,Jason Collins,ATL,31.0,213.36,115.66596000000001,Stanford,USA,2001,1,18,24,0.7,0.6,0.2,-11.0,0.052000000000000005,0.083,0.111,0.335,0.053,2009-10 6141,Jason Hart,NOH,32.0,190.5,81.64656,Syracuse,USA,2000,2,49,5,0.4,0.4,1.2,15.8,0.0,0.08,0.107,0.5,0.353,2009-10 6142,Jason Kapono,PHI,29.0,203.2,97.52228000000001,UCLA,USA,2003,2,31,57,5.7,1.2,0.7,-8.4,0.016,0.065,0.158,0.527,0.063,2009-10 6143,Jason Kidd,DAL,37.0,193.04,95.25432,California,USA,1994,1,2,80,10.3,5.6,9.1,6.0,0.019,0.154,0.145,0.5770000000000001,0.361,2009-10 6144,Tyrus Thomas,CHA,23.0,208.28,102.0582,Louisiana State,USA,2006,1,4,54,9.4,6.2,1.0,-1.5,0.076,0.225,0.217,0.511,0.081,2009-10 6145,Tyson Chandler,CHA,27.0,215.9,106.59411999999999,None,USA,2001,1,2,51,6.5,6.3,0.3,-1.2,0.12,0.214,0.139,0.643,0.023,2009-10 6146,Udonis Haslem,MIA,30.0,203.2,106.59411999999999,Florida,USA,Undrafted,Undrafted,Undrafted,78,9.9,8.1,0.7,3.1,0.092,0.252,0.172,0.5379999999999999,0.042,2009-10 6147,Vince Carter,ORL,33.0,198.12,99.79024,North Carolina,USA,1998,1,5,75,16.6,3.9,3.1,12.1,0.017,0.12300000000000001,0.253,0.541,0.177,2009-10 6148,Vladimir Radmanovic,GSW,29.0,208.28,106.59411999999999,None,Serbia,2001,1,12,41,6.2,4.3,1.1,-8.0,0.063,0.166,0.159,0.449,0.073,2009-10 6149,Wayne Ellington,MIN,22.0,193.04,90.7184,North Carolina,USA,2009,1,28,76,6.6,2.1,1.0,-8.4,0.026000000000000002,0.10099999999999999,0.172,0.527,0.085,2009-10 6150,Wesley Matthews,UTA,23.0,195.58,99.79024,Marquette,USA,Undrafted,Undrafted,Undrafted,82,9.4,2.3,1.5,4.2,0.03,0.081,0.165,0.5920000000000001,0.09,2009-10 6151,Will Bynum,DET,27.0,182.88,83.91452,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,63,10.0,2.3,4.5,-10.0,0.017,0.091,0.203,0.513,0.284,2009-10 6152,Will Conroy,HOU,27.0,187.96,88.45044,Washington,USA,Undrafted,Undrafted,Undrafted,5,1.2,0.6,1.4,-22.3,0.0,0.081,0.185,0.276,0.304,2009-10 6153,Willie Green,PHI,28.0,190.5,91.171992,Detroit Mercy,USA,2003,2,41,73,8.7,1.8,2.1,-4.8,0.015,0.085,0.19399999999999998,0.5379999999999999,0.16399999999999998,2009-10 6154,Wilson Chandler,NYK,23.0,203.2,102.0582,DePaul,USA,2007,1,23,65,15.3,5.4,2.1,-3.1,0.045,0.126,0.203,0.534,0.096,2009-10 6155,Ime Udoka,SAC,32.0,195.58,99.79024,Portland State,USA,Undrafted,Undrafted,Undrafted,69,3.6,2.8,0.8,-0.8,0.061,0.168,0.14300000000000002,0.47,0.091,2009-10 6156,Yakhouba Diawara,MIA,27.0,200.66,102.0582,Pepperdine,USA,Undrafted,Undrafted,Undrafted,6,0.8,0.7,0.5,-4.7,0.024,0.075,0.131,0.25,0.091,2009-10 6157,Zach Randolph,MEM,28.0,205.74,117.93392,Michigan State,USA,2001,1,19,81,20.8,11.7,1.8,-1.8,0.127,0.243,0.247,0.546,0.08,2009-10 6158,Zaza Pachulia,ATL,26.0,210.82,124.7378,None,Georgia,2003,2,42,78,4.3,3.8,0.5,0.2,0.12,0.2,0.152,0.539,0.057999999999999996,2009-10 6159,Zydrunas Ilgauskas,CLE,35.0,220.98,117.93392,None,Lithuania,1996,1,20,64,7.4,5.4,0.8,7.9,0.107,0.19699999999999998,0.18899999999999997,0.491,0.057999999999999996,2009-10 6160,Jeff Ayres,POR,23.0,205.74,108.86208,Arizona State,USA,2009,2,31,39,2.7,2.5,0.0,-6.9,0.081,0.23199999999999998,0.102,0.705,0.004,2009-10 6161,Jawad Williams,CLE,27.0,205.74,98.88305600000001,North Carolina,USA,Undrafted,Undrafted,Undrafted,54,4.1,1.5,0.6,-0.9,0.026000000000000002,0.10400000000000001,0.153,0.496,0.073,2009-10 6162,Jason Williams,ORL,34.0,185.42,81.64656,Florida,USA,1998,1,7,82,6.0,1.5,3.6,8.2,0.005,0.076,0.14300000000000002,0.555,0.265,2009-10 6163,Jason Thompson,SAC,23.0,210.82,113.398,Rider,USA,2008,1,12,75,12.5,8.5,1.7,-5.4,0.107,0.203,0.19699999999999998,0.518,0.084,2009-10 6164,Jason Terry,DAL,32.0,187.96,81.64656,Arizona,USA,1999,1,10,77,16.6,1.8,3.8,4.1,0.009000000000000001,0.055,0.22899999999999998,0.552,0.19399999999999998,2009-10 6165,Jason Smith,PHI,24.0,213.36,108.86208,Colorado State,USA,2007,1,20,56,3.4,2.4,0.6,-4.1,0.09699999999999999,0.152,0.157,0.491,0.076,2009-10 6166,Jason Richardson,PHX,29.0,198.12,102.0582,Michigan State,USA,2001,1,5,79,15.7,5.1,1.8,6.4,0.039,0.136,0.20800000000000002,0.574,0.085,2009-10 6167,Jason Maxiell,DET,27.0,200.66,117.93392,Cincinnati,USA,2005,1,26,76,6.8,5.3,0.5,-6.8,0.11900000000000001,0.20199999999999999,0.163,0.531,0.04,2009-10 6168,Yi Jianlian,NJN,22.0,213.36,113.398,None,USA,2007,1,6,52,12.0,7.2,0.9,-7.4,0.078,0.187,0.203,0.48100000000000004,0.048,2009-10 6169,Ian Mahinmi,SAS,23.0,210.82,104.32616,None,France,2005,1,28,26,3.9,2.0,0.1,-1.6,0.087,0.23399999999999999,0.252,0.667,0.024,2009-10 6170,Hilton Armstrong,HOU,25.0,210.82,106.59411999999999,Connecticut,USA,2006,1,12,33,2.2,2.5,0.6,-4.7,0.09,0.19699999999999998,0.156,0.381,0.095,2009-10 6171,Henry Walker,NYK,22.0,198.12,99.79024,Kansas State,USA,2008,2,47,35,9.4,2.5,1.1,0.5,0.022000000000000002,0.11,0.165,0.649,0.079,2009-10 6172,Earl Clark,PHX,22.0,208.28,102.0582,Louisville,USA,2009,1,14,51,2.7,1.2,0.4,-1.5,0.054000000000000006,0.13,0.21600000000000003,0.42,0.09300000000000001,2009-10 6173,Earl Boykins,WAS,34.0,165.1,60.327736,Eastern Michigan,USA,Undrafted,Undrafted,Undrafted,67,6.6,1.1,2.6,-11.1,0.016,0.062,0.207,0.498,0.26899999999999996,2009-10 6174,Earl Barron,NYK,28.0,213.36,113.398,Memphis,USA,Undrafted,Undrafted,Undrafted,7,11.7,11.0,1.1,1.1,0.161,0.26,0.179,0.508,0.05,2009-10 6175,Dwyane Wade,MIA,28.0,193.04,99.79024,Marquette,USA,2003,1,5,77,26.6,4.8,6.5,7.4,0.046,0.111,0.342,0.562,0.33399999999999996,2009-10 6176,Dwight Howard,ORL,24.0,210.82,120.20188,None,USA,2004,1,1,82,18.3,13.2,1.8,11.8,0.12300000000000001,0.315,0.24100000000000002,0.63,0.087,2009-10 6177,Dwayne Jones,PHX,27.0,208.28,113.851592,Saint Joseph's,USA,Undrafted,Undrafted,Undrafted,2,0.0,1.0,0.0,16.2,0.0,0.5,0.0,0.0,0.0,2009-10 6178,Drew Gooden,LAC,28.0,208.28,113.398,Kansas,USA,2002,1,4,70,10.9,7.7,0.7,-6.8,0.135,0.221,0.21,0.547,0.045,2009-10 6179,Dorell Wright,MIA,24.0,205.74,95.25432,None,USA,2004,1,19,72,7.1,3.3,1.3,2.8,0.04,0.149,0.16,0.5670000000000001,0.102,2009-10 6180,Donte Greene,SAC,22.0,210.82,102.511792,Syracuse,USA,2008,1,28,76,8.5,3.1,0.9,-4.2,0.037000000000000005,0.128,0.193,0.526,0.067,2009-10 6181,Dominic McGuire,SAC,24.0,205.74,99.79024,Fresno State,USA,2007,2,47,51,0.7,1.5,0.2,-16.1,0.078,0.2,0.107,0.345,0.059000000000000004,2009-10 6182,Dirk Nowitzki,DAL,32.0,213.36,111.13004,None,Germany,1998,1,9,81,25.0,7.7,2.7,6.4,0.031,0.198,0.289,0.578,0.128,2009-10 6183,Earl Watson,IND,31.0,185.42,83.91452,UCLA,USA,2001,2,39,79,7.8,3.0,5.1,-2.1,0.025,0.087,0.147,0.517,0.257,2009-10 6184,Devin Harris,NJN,27.0,190.5,86.18248,Wisconsin,USA,2004,1,5,64,16.9,3.2,6.6,-11.4,0.012,0.098,0.25,0.512,0.332,2009-10 6185,Devean George,GSW,32.0,203.2,106.59411999999999,Augsburg,USA,1999,1,23,45,5.4,2.5,0.7,0.4,0.03,0.13699999999999998,0.131,0.56,0.057,2009-10 6186,Desmond Mason,SAC,32.0,195.58,100.697424,Oklahoma State,USA,2000,1,17,5,2.6,2.6,0.4,-28.6,0.057999999999999996,0.205,0.127,0.47200000000000003,0.051,2009-10 6187,Derrick Rose,CHI,21.0,190.5,86.18248,Memphis,USA,2008,1,1,78,20.8,3.8,6.0,-0.5,0.025,0.085,0.271,0.532,0.297,2009-10 6188,Derrick Brown,CHA,22.0,203.2,102.965384,Xavier,USA,2009,2,40,57,3.3,1.4,0.3,1.5,0.07200000000000001,0.10400000000000001,0.17,0.52,0.061,2009-10 6189,Deron Williams,UTA,26.0,190.5,93.89354399999999,Illinois,USA,2005,1,3,76,18.7,4.0,10.5,7.3,0.022000000000000002,0.10300000000000001,0.239,0.574,0.429,2009-10 6190,Derek Fisher,LAL,35.0,185.42,95.25432,Arkansas-Little Rock,USA,1996,1,24,82,7.5,2.1,2.5,7.5,0.013000000000000001,0.07200000000000001,0.139,0.499,0.125,2009-10 6191,Delonte West,CLE,26.0,190.5,81.64656,Saint Joseph's,USA,2004,1,24,60,8.8,2.8,3.3,7.5,0.025,0.106,0.184,0.53,0.21,2009-10 6192,DeShawn Stevenson,DAL,29.0,195.58,98.88305600000001,None,USA,2000,1,23,64,2.1,1.4,0.9,-3.4,0.013999999999999999,0.10300000000000001,0.10800000000000001,0.381,0.09,2009-10 6193,DeSagana Diop,CHA,28.0,213.36,127.00576000000001,None,Senegal,2001,1,8,27,1.2,2.4,0.2,3.2,0.129,0.187,0.08199999999999999,0.485,0.027999999999999997,2009-10 6194,DeMarre Carroll,MEM,23.0,203.2,96.16150400000001,Missouri,USA,2009,1,27,71,2.9,2.1,0.5,-1.7,0.08,0.135,0.145,0.426,0.059000000000000004,2009-10 6195,DeMar DeRozan,TOR,20.0,200.66,99.79024,Southern California,USA,2009,1,9,77,8.6,2.9,0.7,-5.5,0.047,0.10800000000000001,0.182,0.5539999999999999,0.048,2009-10 6196,Devin Brown,CHI,31.0,195.58,95.25432,Texas-San Antonio,USA,Undrafted,Undrafted,Undrafted,50,8.0,2.5,1.3,-1.1,0.028999999999999998,0.098,0.196,0.5,0.095,2009-10 6197,David West,NOH,29.0,205.74,108.86208,Xavier,USA,2003,1,18,81,19.0,7.5,3.0,-2.4,0.065,0.177,0.24100000000000002,0.56,0.135,2009-10 6198,Eddie House,NYK,32.0,185.42,79.3786,Arizona State,USA,2000,2,37,68,7.0,1.6,1.3,0.1,0.013000000000000001,0.092,0.19899999999999998,0.495,0.115,2009-10 6199,Eduardo Najera,DAL,33.0,203.2,106.59411999999999,Oklahoma,Mexico,2000,2,38,46,3.4,2.5,0.6,-3.1,0.054000000000000006,0.14300000000000002,0.121,0.501,0.061,2009-10 6200,Hedo Turkoglu,TOR,31.0,208.28,99.79024,None,Turkey,2000,1,16,74,11.3,4.6,4.1,-3.4,0.022000000000000002,0.151,0.18100000000000002,0.54,0.19899999999999998,2009-10 6201,Hasheem Thabeet,MEM,23.0,220.98,121.10906399999999,Connecticut,Tanzania,2009,1,2,68,3.1,3.6,0.2,-5.9,0.11,0.204,0.105,0.605,0.018000000000000002,2009-10 6202,Hamed Haddadi,MEM,25.0,218.44,120.20188,None,Iran,Undrafted,Undrafted,Undrafted,36,1.7,2.1,0.3,-13.1,0.124,0.231,0.16,0.441,0.064,2009-10 6203,Hakim Warrick,CHI,27.0,205.74,99.336648,Syracuse,USA,2005,1,19,76,9.6,4.1,0.7,-6.4,0.091,0.141,0.217,0.547,0.057999999999999996,2009-10 6204,Greg Oden,POR,22.0,213.36,129.27372,Ohio State,USA,2007,1,1,21,11.1,8.5,0.9,8.9,0.161,0.267,0.209,0.647,0.066,2009-10 6205,Grant Hill,PHX,37.0,203.2,102.0582,Duke,USA,1994,1,3,81,11.3,5.5,2.4,4.0,0.037000000000000005,0.16,0.168,0.561,0.111,2009-10 6206,Goran Dragic,PHX,24.0,190.5,86.18248,None,Slovenia,2008,2,45,80,7.9,2.1,3.0,4.6,0.031,0.10400000000000001,0.213,0.5660000000000001,0.264,2009-10 6207,Glen Davis,BOS,24.0,205.74,131.088088,Louisiana State,USA,2007,2,35,54,6.3,3.8,0.6,-4.0,0.13,0.14400000000000002,0.19899999999999998,0.5,0.064,2009-10 6208,Gilbert Arenas,WAS,28.0,193.04,97.52228000000001,Arizona,USA,2001,2,30,32,22.6,4.2,7.2,-4.6,0.016,0.11199999999999999,0.307,0.511,0.35100000000000003,2009-10 6209,Gerald Wallace,CHA,27.0,200.66,99.79024,Alabama,USA,2001,1,25,76,18.2,10.0,2.1,1.6,0.059000000000000004,0.23399999999999999,0.203,0.586,0.09,2009-10 6210,Gerald Henderson,CHA,22.0,195.58,97.52228000000001,Duke,USA,2009,1,12,43,2.6,1.3,0.3,0.2,0.048,0.127,0.18,0.45299999999999996,0.071,2009-10 6211,Eddy Curry,NYK,27.0,213.36,133.80964,None,USA,2001,1,4,7,3.7,1.9,0.0,-14.5,0.065,0.161,0.285,0.456,0.0,2009-10 6212,George Hill,SAS,24.0,187.96,81.64656,Indiana Purdue-Indianapolis,USA,2008,1,26,78,12.4,2.6,2.9,4.6,0.022000000000000002,0.085,0.19,0.5720000000000001,0.154,2009-10 6213,Francisco Garcia,SAC,28.0,200.66,88.45044,Louisville,Dominican Republic,2005,1,23,25,8.1,2.6,1.8,-3.7,0.021,0.11,0.158,0.55,0.11900000000000001,2009-10 6214,Francisco Elson,PHI,34.0,213.36,108.86208,California,Netherlands,1999,2,41,12,1.0,1.2,0.2,-2.4,0.105,0.19,0.127,0.349,0.049,2009-10 6215,Flip Murray,CHI,30.0,190.5,90.7184,Shaw,USA,2002,2,41,75,9.9,2.4,1.8,0.2,0.02,0.10800000000000001,0.237,0.485,0.141,2009-10 6216,Fabricio Oberto,WAS,35.0,208.28,111.13004,None,Argentina,Undrafted,Undrafted,Undrafted,57,1.5,1.8,0.9,-4.9,0.064,0.127,0.07200000000000001,0.654,0.11199999999999999,2009-10 6217,Etan Thomas,OKC,32.0,208.28,117.93392,Syracuse,USA,2000,1,12,23,3.3,2.8,0.0,-3.9,0.073,0.17800000000000002,0.139,0.483,0.005,2009-10 6218,Ersan Ilyasova,MIL,23.0,208.28,106.59411999999999,None,Turkey,2005,2,36,81,10.4,6.4,1.0,3.6,0.08900000000000001,0.221,0.205,0.526,0.07200000000000001,2009-10 6219,Erick Dampier,DAL,34.0,210.82,120.20188,Mississippi State,USA,1996,1,10,55,6.0,7.3,0.6,7.8,0.11599999999999999,0.228,0.115,0.637,0.035,2009-10 6220,Eric Maynor,OKC,23.0,190.5,79.3786,Virginia Commonwealth,USA,2009,1,20,81,4.7,1.6,3.3,2.8,0.02,0.095,0.174,0.478,0.33899999999999997,2009-10 6221,Eric Gordon,LAC,21.0,190.5,100.697424,Indiana,USA,2008,1,7,62,16.9,2.6,3.0,-4.6,0.013000000000000001,0.07,0.214,0.5710000000000001,0.135,2009-10 6222,Emeka Okafor,NOH,27.0,208.28,115.66596000000001,Connecticut,USA,2004,1,2,82,10.4,9.0,0.7,-2.9,0.12,0.245,0.171,0.547,0.035,2009-10 6223,Elton Brand,PHI,31.0,205.74,115.212368,Duke,USA,1999,1,1,76,13.1,6.1,1.4,-2.8,0.091,0.146,0.21600000000000003,0.518,0.078,2009-10 6224,Garrett Temple,SAS,24.0,198.12,86.18248,Louisiana State,USA,Undrafted,Undrafted,Undrafted,27,5.0,1.1,0.8,0.5,0.019,0.081,0.19699999999999998,0.5529999999999999,0.10400000000000001,2009-10 6225,Mike Conley,MEM,22.0,185.42,83.91452,Ohio State,USA,2007,1,4,80,12.0,2.4,5.3,-1.0,0.013999999999999999,0.07400000000000001,0.18600000000000003,0.526,0.245,2009-10 6226,Darrell Arthur,MEM,23.0,205.74,106.59411999999999,Kansas,USA,2008,1,27,80,9.1,4.3,0.7,2.0,0.08199999999999999,0.16699999999999998,0.21600000000000003,0.534,0.055999999999999994,2010-11 6227,AJ Price,IND,24.0,187.96,82.10015200000001,Connecticut,USA,2009,2,52,50,6.5,1.4,2.2,1.6,0.022000000000000002,0.083,0.22699999999999998,0.45399999999999996,0.233,2010-11 6228,Maurice Evans,WAS,32.0,195.58,99.79024,Texas,USA,Undrafted,Undrafted,Undrafted,73,6.3,2.1,0.6,-7.8,0.036000000000000004,0.08,0.14,0.513,0.046,2010-11 6229,Maurice Ager,MIN,27.0,195.58,91.625584,Michigan State,USA,2006,1,28,4,3.8,0.5,0.3,-12.9,0.0,0.095,0.21600000000000003,0.682,0.063,2010-11 6230,Matt Carroll,CHA,30.0,198.12,96.16150400000001,Notre Dame,USA,Undrafted,Undrafted,Undrafted,54,4.4,1.3,0.4,-6.4,0.023,0.124,0.19399999999999998,0.53,0.068,2010-11 6231,Matt Bonner,SAS,31.0,208.28,106.59411999999999,Florida,USA,2003,2,45,66,7.3,3.6,0.9,8.6,0.051,0.14300000000000002,0.13699999999999998,0.617,0.063,2010-11 6232,Matt Barnes,LAL,31.0,200.66,102.511792,UCLA,USA,2002,2,45,53,6.7,4.3,1.3,1.3,0.084,0.16399999999999998,0.166,0.569,0.11199999999999999,2010-11 6233,Marvin Williams,ATL,25.0,205.74,108.86208,North Carolina,USA,2005,1,2,65,10.4,4.8,1.4,-1.2,0.044000000000000004,0.156,0.174,0.551,0.076,2010-11 6234,Martell Webster,MIN,24.0,200.66,106.59411999999999,None,USA,2005,1,6,46,9.8,3.2,1.2,-11.4,0.036000000000000004,0.12300000000000001,0.179,0.575,0.079,2010-11 6235,Marreese Speights,PHI,23.0,208.28,115.66596000000001,Florida,USA,2008,1,16,64,5.4,3.3,0.5,5.0,0.107,0.226,0.22699999999999998,0.532,0.069,2010-11 6236,Marquis Daniels,BOS,30.0,198.12,90.7184,Auburn,USA,Undrafted,Undrafted,Undrafted,49,5.5,2.3,1.3,1.2,0.034,0.11599999999999999,0.152,0.527,0.113,2010-11 6237,Mario West,NJN,27.0,195.58,95.25432,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,6,3.7,1.8,1.7,0.0,0.018000000000000002,0.114,0.10099999999999999,0.474,0.12300000000000001,2010-11 6238,Mario Chalmers,MIA,25.0,187.96,86.18248,Kansas,USA,2008,2,34,70,6.4,2.1,2.5,8.8,0.009000000000000001,0.094,0.15,0.5379999999999999,0.172,2010-11 6239,Mehmet Okur,UTA,32.0,210.82,120.20188,None,Turkey,2001,2,37,13,4.9,2.3,1.5,-12.8,0.068,0.20800000000000002,0.214,0.452,0.179,2010-11 6240,Marcus Thornton,SAC,24.0,193.04,92.98635999999999,Louisiana State,USA,2009,2,43,73,12.8,3.5,1.8,-3.7,0.039,0.129,0.245,0.525,0.133,2010-11 6241,Marcus Camby,POR,37.0,210.82,106.59411999999999,Massachusetts,USA,1996,1,2,59,4.7,10.3,2.1,2.4,0.136,0.355,0.11800000000000001,0.426,0.114,2010-11 6242,Marcus Banks,TOR,29.0,187.96,92.98635999999999,Nevada-Las Vegas,USA,2003,1,13,3,2.0,0.3,1.0,17.1,0.0,0.067,0.145,0.5429999999999999,0.188,2010-11 6243,Marco Belinelli,NOH,25.0,195.58,90.7184,None,Italy,2007,1,18,80,10.5,1.9,1.2,1.5,0.011000000000000001,0.086,0.19899999999999998,0.56,0.077,2010-11 6244,Marcin Gortat,PHX,27.0,210.82,108.86208,None,Poland,2005,2,57,80,10.2,7.9,0.9,1.4,0.085,0.27,0.175,0.594,0.057,2010-11 6245,Marc Gasol,MEM,26.0,215.9,120.20188,None,Spain,2007,2,48,81,11.7,7.0,2.5,1.7,0.071,0.193,0.171,0.58,0.11699999999999999,2010-11 6246,Manu Ginobili,SAS,33.0,198.12,92.98635999999999,None,Argentina,1999,2,57,80,17.4,3.7,4.9,11.5,0.021,0.11699999999999999,0.256,0.581,0.249,2010-11 6247,Manny Harris,CLE,21.0,195.58,83.91452,Michigan,USA,Undrafted,Undrafted,Undrafted,54,5.9,2.6,1.6,-12.6,0.042,0.13699999999999998,0.18899999999999997,0.486,0.153,2010-11 6248,Malik Allen,ORL,33.0,208.28,115.66596000000001,Villanova,USA,Undrafted,Undrafted,Undrafted,18,1.3,1.8,0.2,-11.0,0.068,0.135,0.09,0.361,0.036000000000000004,2010-11 6249,Luther Head,SAC,28.0,190.5,83.91452,Illinois,USA,2005,1,24,36,5.6,1.7,1.9,-8.1,0.031,0.08900000000000001,0.16699999999999998,0.5379999999999999,0.19399999999999998,2010-11 6250,Luol Deng,CHI,26.0,205.74,99.79024,Duke,United Kingdom,2004,1,7,82,17.4,5.8,2.8,8.3,0.043,0.126,0.20800000000000002,0.5489999999999999,0.11900000000000001,2010-11 6251,Luke Walton,LAL,31.0,203.2,106.59411999999999,Arizona,USA,2003,2,32,54,1.7,1.2,1.1,3.6,0.023,0.11900000000000001,0.146,0.37799999999999995,0.183,2010-11 6252,Marcus Cousin,UTA,24.0,210.82,111.13004,Houston,USA,Undrafted,Undrafted,Undrafted,4,1.0,0.8,0.0,-48.9,0.0,0.214,0.092,0.667,0.0,2010-11 6253,Luke Ridnour,MIN,30.0,187.96,79.3786,Oregon,USA,2003,1,14,71,11.8,2.8,5.4,-5.9,0.019,0.083,0.177,0.5670000000000001,0.27399999999999997,2010-11 6254,Melvin Ely,DEN,33.0,208.28,118.38751200000002,Fresno State,USA,2002,1,12,30,2.3,2.5,0.5,2.1,0.09,0.153,0.092,0.573,0.052000000000000005,2010-11 6255,Michael Beasley,MIN,22.0,208.28,106.59411999999999,Kansas State,USA,2008,1,2,73,19.2,5.6,2.2,-5.6,0.054000000000000006,0.13699999999999998,0.284,0.51,0.11800000000000001,2010-11 6256,Pape Sy,ATL,23.0,200.66,102.0582,None,France,2010,2,53,3,2.3,1.0,0.7,-25.6,0.105,0.071,0.217,0.478,0.222,2010-11 6257,Othyus Jeffers,WAS,25.0,195.58,95.25432,Robert Morris (IL),USA,Undrafted,Undrafted,Undrafted,17,5.5,3.9,1.2,6.1,0.09,0.149,0.133,0.546,0.08800000000000001,2010-11 6258,Orien Greene,NJN,29.0,193.04,94.34713599999999,Louisiana-Lafayette,USA,2005,2,53,3,1.0,0.0,0.3,23.8,0.0,0.0,0.18100000000000002,0.521,0.16699999999999998,2010-11 6259,Omri Casspi,SAC,23.0,205.74,102.0582,None,Israel,2009,1,23,71,8.6,4.3,1.0,-5.0,0.049,0.163,0.165,0.517,0.063,2010-11 6260,Omer Asik,CHI,24.0,213.36,115.66596000000001,None,Turkey,2008,2,36,82,2.8,3.7,0.4,14.0,0.13699999999999998,0.22,0.125,0.5589999999999999,0.049,2010-11 6261,O.J. Mayo,MEM,23.0,193.04,95.25432,Southern California,USA,2008,1,3,71,11.3,2.4,2.0,1.5,0.022000000000000002,0.08800000000000001,0.213,0.499,0.11599999999999999,2010-11 6262,Nikola Pekovic,MIN,25.0,210.82,110.22285600000001,None,Montenegro,2008,2,31,65,5.5,3.0,0.4,-12.7,0.11,0.135,0.195,0.573,0.052000000000000005,2010-11 6263,Nicolas Batum,POR,22.0,203.2,90.7184,None,France,2008,1,25,80,12.4,4.5,1.5,0.6,0.05,0.131,0.177,0.563,0.08,2010-11 6264,Nick Collison,OKC,30.0,208.28,115.66596000000001,Kansas,USA,2003,1,12,71,4.6,4.5,1.0,10.5,0.09699999999999999,0.14800000000000002,0.099,0.6,0.068,2010-11 6265,Nene,DEN,28.0,210.82,113.398,None,Brazil,2002,1,7,75,14.5,7.6,2.0,7.1,0.077,0.204,0.192,0.657,0.10400000000000001,2010-11 6266,Nenad Krstic,BOS,27.0,213.36,108.86208,None,Serbia and Montenegro,2002,1,24,71,8.1,4.7,0.4,1.6,0.09699999999999999,0.158,0.16899999999999998,0.557,0.027000000000000003,2010-11 6267,Metta World Peace,LAL,31.0,200.66,117.93392,St. John's (NY),USA,1999,1,16,82,8.5,3.3,2.1,8.9,0.048,0.078,0.151,0.485,0.10300000000000001,2010-11 6268,Nazr Mohammed,OKC,33.0,208.28,113.398,Kentucky,USA,1998,1,29,75,7.1,4.9,0.3,0.7,0.133,0.212,0.20600000000000002,0.5379999999999999,0.031,2010-11 6269,Mustafa Shakur,WAS,26.0,193.04,88.45044,Arizona,USA,Undrafted,Undrafted,Undrafted,22,2.3,1.0,1.1,-1.2,0.054000000000000006,0.121,0.23600000000000002,0.389,0.258,2010-11 6270,Morris Peterson,OKC,33.0,200.66,99.79024,Michigan State,USA,2000,1,21,4,1.0,0.8,0.3,15.2,0.0,0.158,0.096,0.4,0.053,2010-11 6271,Monta Ellis,GSW,25.0,190.5,83.91452,None,USA,2005,2,40,80,24.1,3.5,5.6,-3.3,0.015,0.086,0.281,0.536,0.23399999999999999,2010-11 6272,Mo Williams,LAC,28.0,185.42,88.45044,Alabama,USA,2003,2,47,58,14.0,2.6,6.6,-9.8,0.013000000000000001,0.086,0.24600000000000002,0.503,0.361,2010-11 6273,Mike Miller,MIA,31.0,203.2,98.88305600000001,Florida,USA,2000,1,5,41,5.6,4.5,1.2,-1.5,0.054000000000000006,0.2,0.14300000000000002,0.525,0.096,2010-11 6274,Mike Harris,HOU,28.0,198.12,106.59411999999999,Rice,USA,Undrafted,Undrafted,Undrafted,4,2.0,1.3,0.3,55.3,0.111,0.158,0.214,0.515,0.071,2010-11 6275,Mike Dunleavy,IND,30.0,205.74,104.32616,Duke,USA,2002,1,3,61,11.2,4.5,1.7,1.6,0.019,0.158,0.16899999999999998,0.593,0.09699999999999999,2010-11 6276,Mike Conley,MEM,23.0,185.42,83.91452,Ohio State,USA,2007,1,4,81,13.7,3.0,6.5,4.9,0.013000000000000001,0.08800000000000001,0.195,0.521,0.273,2010-11 6277,Mike Bibby,MIA,33.0,187.96,88.45044,Arizona,USA,1998,1,2,80,8.6,2.4,3.3,3.3,0.009000000000000001,0.092,0.146,0.57,0.17300000000000001,2010-11 6278,Mickael Pietrus,PHX,29.0,198.12,97.52228000000001,None,France,2003,1,11,57,7.2,2.2,0.6,2.0,0.016,0.11800000000000001,0.183,0.526,0.052000000000000005,2010-11 6279,Michael Redd,MIL,31.0,198.12,97.52228000000001,Ohio State,USA,2000,2,43,10,4.4,0.8,1.2,4.8,0.0,0.07200000000000001,0.17600000000000002,0.47,0.132,2010-11 6280,Nate Robinson,OKC,27.0,175.26,81.64656,Washington,USA,2005,1,21,59,6.8,1.5,1.9,1.2,0.02,0.08900000000000001,0.217,0.507,0.183,2010-11 6281,Luke Harangody,CLE,23.0,200.66,113.851592,Notre Dame,USA,2010,2,52,49,3.9,2.9,0.6,-3.9,0.07200000000000001,0.19,0.16899999999999998,0.444,0.078,2010-11 6282,Luke Babbitt,POR,22.0,205.74,102.0582,Nevada,USA,2010,1,16,24,1.5,1.3,0.3,-11.6,0.040999999999999995,0.19,0.21100000000000002,0.305,0.077,2010-11 6283,Luis Scola,HOU,31.0,205.74,111.13004,None,Argentina,2002,2,55,74,18.3,8.2,2.5,3.0,0.07,0.217,0.255,0.5379999999999999,0.131,2010-11 6284,Kevin Garnett,BOS,35.0,210.82,114.758776,None,USA,1995,1,5,71,14.9,8.9,2.4,13.1,0.049,0.27699999999999997,0.221,0.575,0.127,2010-11 6285,Kevin Durant,OKC,22.0,205.74,104.32616,Texas,USA,2007,1,2,78,27.7,6.8,2.7,4.7,0.023,0.174,0.302,0.589,0.127,2010-11 6286,Kenyon Martin,DEN,33.0,205.74,108.86208,Cincinnati,USA,2000,1,1,48,8.6,6.2,2.3,7.9,0.065,0.203,0.166,0.526,0.13,2010-11 6287,Kendrick Perkins,OKC,26.0,208.28,127.00576000000001,None,USA,2003,1,27,29,6.0,8.0,0.9,6.9,0.10099999999999999,0.253,0.134,0.5379999999999999,0.052000000000000005,2010-11 6288,Keith Bogans,CHI,31.0,195.58,97.52228000000001,Kentucky,USA,2003,2,43,82,4.4,1.8,1.2,5.7,0.016,0.105,0.115,0.5589999999999999,0.098,2010-11 6289,Juwan Howard,MIA,38.0,205.74,113.398,Michigan,USA,1994,1,5,57,2.4,2.1,0.4,2.6,0.081,0.16899999999999998,0.133,0.495,0.062,2010-11 6290,Julian Wright,TOR,24.0,203.2,102.0582,Kansas,USA,2007,1,13,52,3.6,2.3,1.1,-1.0,0.07400000000000001,0.107,0.131,0.525,0.11,2010-11 6291,Jrue Holiday,PHI,21.0,193.04,81.64656,UCLA,USA,2009,1,17,82,14.0,4.0,6.5,2.8,0.027000000000000003,0.105,0.20800000000000002,0.525,0.282,2010-11 6292,Josh Smith,ATL,25.0,205.74,108.86208,None,USA,2004,1,17,77,16.5,8.5,3.3,1.8,0.061,0.233,0.249,0.54,0.168,2010-11 6293,Josh Powell,ATL,28.0,205.74,108.86208,North Carolina State,USA,Undrafted,Undrafted,Undrafted,54,4.1,2.5,0.4,-10.6,0.094,0.163,0.2,0.49200000000000005,0.059000000000000004,2010-11 6294,Josh McRoberts,IND,24.0,208.28,108.86208,Duke,USA,2007,2,37,72,7.4,5.3,2.1,2.5,0.081,0.18100000000000002,0.14800000000000002,0.608,0.14300000000000002,2010-11 6295,Kevin Love,MIN,22.0,208.28,117.93392,UCLA,USA,2008,1,5,73,20.2,15.2,2.5,-6.0,0.136,0.336,0.22699999999999998,0.593,0.11599999999999999,2010-11 6296,Josh Howard,WAS,31.0,200.66,95.25432,Wake Forest,USA,2003,1,29,18,8.4,4.1,1.3,-11.0,0.045,0.159,0.213,0.41600000000000004,0.095,2010-11 6297,Jose Calderon,TOR,29.0,190.5,95.25432,None,Spain,Undrafted,Undrafted,Undrafted,68,9.8,3.0,8.9,-5.3,0.016,0.1,0.16699999999999998,0.522,0.41200000000000003,2010-11 6298,Jordan Hill,HOU,23.0,208.28,106.59411999999999,Arizona,USA,2009,1,8,72,5.6,4.3,0.4,-6.6,0.127,0.183,0.179,0.521,0.043,2010-11 6299,Jordan Farmar,NJN,24.0,187.96,81.64656,UCLA,USA,2006,1,26,73,9.6,2.4,5.0,-7.0,0.015,0.10099999999999999,0.212,0.504,0.341,2010-11 6300,Jordan Crawford,WAS,22.0,193.04,88.45044,Xavier,USA,2010,1,27,42,11.7,2.5,2.8,-10.3,0.032,0.085,0.264,0.456,0.19699999999999998,2010-11 6301,Jonny Flynn,MIN,22.0,182.88,83.91452,Syracuse,USA,2009,1,6,53,5.3,1.5,3.4,-9.4,0.013999999999999999,0.08,0.19,0.444,0.284,2010-11 6302,Jon Brockman,MIL,24.0,200.66,115.66596000000001,Washington,USA,2009,2,38,63,2.2,2.9,0.3,2.1,0.126,0.203,0.09699999999999999,0.5670000000000001,0.040999999999999995,2010-11 6303,John Wall,WAS,20.0,193.04,88.45044,Kentucky,USA,2010,1,1,69,16.4,4.6,8.3,-9.0,0.013999999999999999,0.127,0.23600000000000002,0.494,0.35700000000000004,2010-11 6304,John Salmons,MIL,31.0,198.12,93.89354399999999,Miami (FL),USA,2002,1,26,73,14.0,3.6,3.5,-1.5,0.012,0.11199999999999999,0.209,0.51,0.179,2010-11 6305,John Lucas III,CHI,28.0,180.34,74.84268,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,2,1.0,0.0,0.5,-19.1,0.0,0.0,0.179,0.258,0.16699999999999998,2010-11 6306,Johan Petro,NJN,25.0,213.36,112.037224,None,France,2005,1,25,77,3.5,2.8,0.6,-6.4,0.083,0.20800000000000002,0.187,0.452,0.08800000000000001,2010-11 6307,Joey Graham,CLE,29.0,200.66,104.32616,Oklahoma State,USA,2005,1,16,39,5.2,2.2,0.5,-9.4,0.017,0.153,0.175,0.518,0.054000000000000006,2010-11 6308,Josh Childress,PHX,28.0,203.2,94.800728,Stanford,USA,2004,1,6,54,5.0,2.9,0.8,-5.5,0.09,0.11699999999999999,0.14300000000000002,0.5670000000000001,0.07200000000000001,2010-11 6309,Kevin Martin,HOU,28.0,200.66,83.91452,Western Carolina,USA,2004,1,26,80,23.5,3.2,2.5,2.8,0.012,0.1,0.295,0.601,0.128,2010-11 6310,Kevin Seraphin,WAS,21.0,205.74,124.7378,Le Moyne,France,2010,1,17,58,2.7,2.6,0.2,-14.9,0.127,0.138,0.135,0.479,0.025,2010-11 6311,Keyon Dooling,MIL,31.0,190.5,88.45044,Missouri,USA,2000,1,10,80,7.1,1.5,3.0,3.4,0.008,0.071,0.17600000000000002,0.509,0.226,2010-11 6312,Luc Mbah a Moute,MIL,24.0,203.2,104.32616,UCLA,Cameroon,2008,2,37,79,6.7,5.3,0.9,-0.6,0.09,0.145,0.132,0.518,0.054000000000000006,2010-11 6313,Lou Williams,PHI,24.0,185.42,79.3786,None,USA,2005,2,45,75,13.7,2.0,3.4,2.1,0.021,0.077,0.27699999999999997,0.54,0.248,2010-11 6314,Lou Amundson,GSW,28.0,205.74,102.0582,Nevada-Las Vegas,USA,Undrafted,Undrafted,Undrafted,46,4.3,4.0,0.4,-5.5,0.121,0.162,0.155,0.452,0.039,2010-11 6315,Linas Kleiza,TOR,26.0,203.2,111.13004,Missouri,Lithuania,2005,1,27,39,11.2,4.5,1.0,-4.9,0.042,0.163,0.214,0.502,0.06,2010-11 6316,Lester Hudson,WAS,26.0,190.5,86.18248,Tennessee-Martin,USA,2009,2,58,11,1.6,0.5,1.5,-8.7,0.013999999999999999,0.073,0.204,0.349,0.447,2010-11 6317,Leon Powe,MEM,27.0,203.2,108.86208,California,USA,2006,2,49,30,5.3,2.1,0.2,-10.3,0.08199999999999999,0.16399999999999998,0.23399999999999999,0.524,0.038,2010-11 6318,Leandro Barbosa,TOR,28.0,190.5,91.625584,None,Brazil,2003,1,28,58,13.3,1.7,2.1,-5.5,0.012,0.073,0.254,0.539,0.147,2010-11 6319,LeBron James,MIA,26.0,203.2,113.398,None,USA,2003,1,1,79,26.7,7.5,7.0,10.5,0.033,0.184,0.312,0.594,0.34299999999999997,2010-11 6320,Lazar Hayward,MIN,24.0,198.12,102.0582,Marquette,USA,2010,1,30,42,3.8,1.7,0.7,-16.4,0.055999999999999994,0.14,0.187,0.46399999999999997,0.107,2010-11 6321,Larry Sanders,MIL,22.0,210.82,106.59411999999999,Virginia Commonwealth,USA,2010,1,15,60,4.3,3.0,0.3,-7.6,0.075,0.16399999999999998,0.17600000000000002,0.44799999999999995,0.033,2010-11 6322,Larry Owens,WAS,28.0,200.66,95.25432,Oral Roberts,USA,Undrafted,Undrafted,Undrafted,12,3.3,1.3,0.7,7.0,0.008,0.11800000000000001,0.127,0.556,0.08900000000000001,2010-11 6323,Landry Fields,NYK,23.0,200.66,95.25432,Stanford,USA,2010,2,39,82,9.7,6.4,1.9,2.1,0.047,0.18600000000000003,0.135,0.598,0.087,2010-11 6324,Lance Stephenson,IND,20.0,195.58,95.25432,Cincinnati,USA,2010,2,40,12,3.1,1.5,1.8,0.0,0.009000000000000001,0.14800000000000002,0.223,0.41,0.309,2010-11 6325,Lamar Odom,LAL,31.0,208.28,104.32616,Rhode Island,USA,1999,1,4,82,14.4,8.7,3.0,7.6,0.079,0.223,0.198,0.589,0.154,2010-11 6326,LaMarcus Aldridge,POR,25.0,210.82,108.86208,Texas,USA,2006,1,2,81,21.8,8.8,2.1,4.1,0.10300000000000001,0.171,0.258,0.5489999999999999,0.099,2010-11 6327,Kyrylo Fesenko,UTA,24.0,215.9,127.00576000000001,None,Ukraine,2007,2,38,53,2.0,2.0,0.3,1.6,0.091,0.19899999999999998,0.145,0.441,0.063,2010-11 6328,Kyle Weaver,UTA,25.0,198.12,91.171992,Washington State,USA,2008,2,38,5,5.6,2.0,1.4,2.8,0.028999999999999998,0.14,0.23199999999999998,0.491,0.212,2010-11 6329,Kyle Lowry,HOU,25.0,182.88,92.98635999999999,Villanova,USA,2006,1,24,75,13.5,4.1,6.7,5.0,0.04,0.099,0.18600000000000003,0.55,0.289,2010-11 6330,Kyle Korver,CHI,30.0,200.66,96.16150400000001,Creighton,USA,2003,2,51,82,8.3,1.8,1.5,8.6,0.009000000000000001,0.096,0.182,0.5720000000000001,0.121,2010-11 6331,Kwame Brown,CHA,29.0,210.82,122.46983999999999,None,USA,2001,1,1,66,7.9,6.8,0.7,-7.3,0.102,0.228,0.151,0.55,0.040999999999999995,2010-11 6332,Kurt Thomas,CHI,38.0,205.74,104.32616,Texas Christian,USA,1995,1,10,52,4.1,5.8,1.2,6.8,0.077,0.22699999999999998,0.096,0.527,0.07400000000000001,2010-11 6333,Kris Humphries,NJN,26.0,205.74,106.59411999999999,Minnesota,USA,2004,1,14,74,10.0,10.4,1.1,-5.3,0.125,0.322,0.17300000000000001,0.555,0.069,2010-11 6334,Kosta Koufos,DEN,22.0,213.36,120.20188,Ohio State,USA,2008,1,23,50,3.2,2.6,0.1,-6.1,0.134,0.185,0.18899999999999997,0.474,0.025,2010-11 6335,Kobe Bryant,LAL,32.0,198.12,92.98635999999999,None,USA,1996,1,13,82,25.3,5.1,4.7,7.7,0.035,0.135,0.35,0.5479999999999999,0.258,2010-11 6336,Kirk Hinrich,ATL,30.0,193.04,86.18248,Kansas,USA,2003,1,7,72,10.2,2.5,4.0,-9.5,0.011000000000000001,0.09,0.171,0.5429999999999999,0.221,2010-11 6337,Patrick Ewing,NOH,27.0,203.2,106.59411999999999,Georgetown,USA,2008,2,43,7,0.4,0.3,0.3,-18.4,0.067,0.071,0.193,0.222,0.16699999999999998,2010-11 6338,Patrick Patterson,HOU,22.0,205.74,106.59411999999999,Kentucky,USA,2010,1,14,52,6.3,3.8,0.8,1.3,0.11,0.146,0.163,0.574,0.078,2010-11 6339,Patty Mills,POR,22.0,182.88,83.91452,Saint Mary's (CA),Australia,2009,2,55,64,5.5,0.8,1.7,-7.4,0.027000000000000003,0.053,0.24,0.506,0.261,2010-11 6340,Pau Gasol,LAL,30.0,213.36,113.398,None,Spain,2001,1,3,82,18.8,10.2,3.3,8.5,0.10300000000000001,0.205,0.217,0.589,0.14800000000000002,2010-11 6341,Tony Parker,SAS,29.0,187.96,83.91452,None,France,2001,1,28,78,17.5,3.1,6.6,6.5,0.013999999999999999,0.092,0.254,0.569,0.345,2010-11 6342,Tony Battie,PHI,35.0,210.82,108.86208,Texas Tech,USA,1997,1,5,38,2.6,2.6,0.3,-4.9,0.047,0.24100000000000002,0.14300000000000002,0.489,0.055,2010-11 6343,Tony Allen,MEM,29.0,193.04,96.615096,Oklahoma State,USA,2004,1,25,72,8.9,2.7,1.4,4.4,0.055,0.10099999999999999,0.2,0.562,0.113,2010-11 6344,Toney Douglas,NYK,25.0,187.96,83.91452,Florida State,USA,2009,1,29,81,10.6,3.0,3.0,2.6,0.036000000000000004,0.10400000000000001,0.19899999999999998,0.534,0.20199999999999999,2010-11 6345,Timofey Mozgov,DEN,24.0,215.9,113.398,None,Russia,Undrafted,Undrafted,Undrafted,45,3.6,2.7,0.3,-2.7,0.102,0.16,0.161,0.523,0.045,2010-11 6346,Tim Duncan,SAS,35.0,210.82,115.66596000000001,Wake Forest,US Virgin Islands,1997,1,1,76,13.4,8.9,2.7,10.1,0.09300000000000001,0.26,0.226,0.537,0.15,2010-11 6347,Tiago Splitter,SAS,26.0,210.82,108.86208,None,Brazil,2007,1,28,60,4.6,3.4,0.4,0.2,0.11599999999999999,0.20199999999999999,0.18,0.55,0.06,2010-11 6348,Theo Ratliff,LAL,38.0,208.28,106.59411999999999,Wyoming,USA,1995,1,18,10,0.2,1.3,0.3,-12.0,0.087,0.106,0.06,0.145,0.06,2010-11 6349,Thaddeus Young,PHI,23.0,203.2,99.79024,Georgia Tech,USA,2007,1,12,82,12.7,5.3,1.0,4.8,0.084,0.152,0.222,0.5660000000000001,0.067,2010-11 6350,Thabo Sefolosha,OKC,27.0,200.66,97.52228000000001,None,Switzerland,2006,1,13,79,5.1,4.4,1.4,3.2,0.038,0.159,0.09300000000000001,0.545,0.076,2010-11 6351,Terrence Williams,HOU,24.0,198.12,99.79024,Louisville,USA,2009,1,11,21,5.0,2.4,1.8,-13.6,0.015,0.198,0.242,0.42700000000000005,0.244,2010-11 6352,Tracy McGrady,DET,32.0,203.2,101.151016,None,USA,1997,1,9,72,8.0,3.5,3.5,-3.8,0.034,0.155,0.18899999999999997,0.503,0.244,2010-11 6353,Tayshaun Prince,DET,31.0,205.74,97.52228000000001,Kentucky,USA,2002,1,23,78,14.1,4.2,2.8,-3.8,0.036000000000000004,0.126,0.21100000000000002,0.511,0.142,2010-11 6354,T.J. Ford,IND,28.0,182.88,74.84268,Texas,USA,2003,1,8,41,5.4,2.0,3.4,-1.8,0.024,0.092,0.18600000000000003,0.434,0.308,2010-11 6355,Sundiata Gaines,NJN,25.0,185.42,90.7184,Georgia,USA,Undrafted,Undrafted,Undrafted,24,4.6,1.6,1.8,-5.2,0.047,0.094,0.222,0.45899999999999996,0.23199999999999998,2010-11 6356,Steve Novak,SAS,28.0,208.28,108.86208,Marquette,USA,2006,2,32,30,3.5,0.9,0.1,-10.3,0.022000000000000002,0.135,0.159,0.737,0.025,2010-11 6357,Steve Nash,PHX,37.0,190.5,80.73937600000001,Santa Clara,Canada,1996,1,15,75,14.7,3.5,11.4,4.5,0.019,0.099,0.212,0.601,0.498,2010-11 6358,Steve Blake,LAL,31.0,190.5,78.017824,Maryland,USA,2003,2,38,79,4.0,2.0,2.2,3.6,0.013999999999999999,0.094,0.115,0.5,0.157,2010-11 6359,Stephen Jackson,CHA,33.0,203.2,97.52228000000001,Butler Community College,USA,1997,2,42,67,18.5,4.5,3.6,-4.9,0.027000000000000003,0.124,0.273,0.52,0.184,2010-11 6360,Stephen Graham,NJN,29.0,198.12,97.52228000000001,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,59,3.4,2.1,0.7,-13.0,0.021,0.134,0.126,0.457,0.066,2010-11 6361,Stephen Curry,GSW,23.0,190.5,83.91452,Davidson,USA,2009,1,7,74,18.6,3.9,5.8,-0.6,0.023,0.109,0.242,0.595,0.268,2010-11 6362,Spencer Hawes,PHI,23.0,215.9,111.13004,Washington,USA,2007,1,10,81,7.2,5.7,1.5,-1.5,0.084,0.223,0.19,0.48100000000000004,0.11199999999999999,2010-11 6363,Sonny Weems,TOR,24.0,198.12,92.079176,Arkansas,USA,2008,2,39,59,9.2,2.6,1.8,-10.5,0.031,0.1,0.20199999999999999,0.49200000000000005,0.12,2010-11 6364,Solomon Jones,IND,26.0,208.28,111.13004,South Florida,USA,2006,2,33,39,3.6,2.9,0.8,-6.4,0.095,0.151,0.158,0.469,0.094,2010-11 6365,Taj Gibson,CHI,26.0,205.74,102.0582,Southern California,USA,2009,1,26,80,7.1,5.7,0.7,8.9,0.11199999999999999,0.191,0.16899999999999998,0.502,0.054000000000000006,2010-11 6366,Travis Outlaw,NJN,26.0,205.74,93.89354399999999,None,USA,2003,1,23,82,9.2,4.0,1.0,-8.5,0.027000000000000003,0.138,0.174,0.469,0.059000000000000004,2010-11 6367,Trevor Ariza,NOH,25.0,203.2,95.25432,UCLA,USA,2004,2,43,75,11.0,5.4,2.2,0.6,0.027999999999999997,0.16699999999999998,0.177,0.48700000000000004,0.099,2010-11 6368,Trevor Booker,WAS,23.0,203.2,108.86208,Clemson,USA,2010,1,23,65,5.3,3.9,0.5,-7.0,0.10099999999999999,0.16899999999999998,0.138,0.5820000000000001,0.051,2010-11 6369,Zydrunas Ilgauskas,MIA,36.0,220.98,117.93392,None,Lithuania,1996,1,20,72,5.0,4.0,0.4,9.4,0.11900000000000001,0.17800000000000002,0.159,0.531,0.033,2010-11 6370,Zaza Pachulia,ATL,27.0,210.82,124.7378,None,Georgia,2003,2,42,79,4.4,4.2,0.7,-6.1,0.11900000000000001,0.217,0.14400000000000002,0.562,0.07400000000000001,2010-11 6371,Zach Randolph,MEM,29.0,205.74,117.93392,Michigan State,USA,2001,1,19,75,20.1,12.2,2.2,4.0,0.14400000000000002,0.264,0.25,0.552,0.1,2010-11 6372,Zabian Dowdell,PHX,26.0,190.5,86.636072,Virginia Tech,USA,Undrafted,Undrafted,Undrafted,24,5.0,0.8,2.1,-4.1,0.018000000000000002,0.061,0.251,0.457,0.295,2010-11 6373,Yi Jianlian,WAS,23.0,213.36,113.398,None,USA,2007,1,6,63,5.6,3.9,0.4,-10.1,0.077,0.182,0.174,0.45899999999999996,0.036000000000000004,2010-11 6374,Yao Ming,HOU,30.0,228.6,140.61352,None,China,2002,1,1,5,10.2,5.4,0.8,-14.3,0.081,0.22,0.242,0.579,0.077,2010-11 6375,Xavier Henry,MEM,20.0,198.12,99.79024,Kansas,USA,2010,1,12,38,4.3,1.0,0.5,-6.2,0.02,0.061,0.171,0.451,0.054000000000000006,2010-11 6376,Wilson Chandler,DEN,24.0,203.2,102.0582,DePaul,USA,2007,1,23,72,15.3,5.7,1.7,4.4,0.035,0.152,0.20800000000000002,0.537,0.079,2010-11 6377,Willie Warren,LAC,21.0,193.04,92.079176,Oklahoma,USA,2010,2,54,19,1.9,0.6,1.4,3.9,0.009000000000000001,0.109,0.16,0.48,0.307,2010-11 6378,Willie Green,NOH,29.0,190.5,91.171992,Detroit Mercy,USA,2003,2,41,77,8.7,2.1,1.0,0.1,0.016,0.099,0.207,0.515,0.08,2010-11 6379,Will Bynum,DET,28.0,182.88,83.91452,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,61,7.9,1.2,3.2,-7.6,0.016,0.068,0.22699999999999998,0.524,0.289,2010-11 6380,Wesley Matthews,POR,24.0,195.58,99.79024,Marquette,USA,Undrafted,Undrafted,Undrafted,82,15.9,3.1,2.0,2.5,0.021,0.095,0.213,0.5820000000000001,0.10099999999999999,2010-11 6381,Wesley Johnson,MIN,23.0,200.66,92.98635999999999,Syracuse,USA,2010,1,4,79,9.0,3.0,1.9,-6.4,0.027000000000000003,0.102,0.168,0.491,0.10800000000000001,2010-11 6382,Wayne Ellington,MIN,23.0,193.04,90.7184,North Carolina,USA,2009,1,28,62,6.6,1.7,1.2,-8.9,0.024,0.079,0.172,0.488,0.098,2010-11 6383,Von Wafer,BOS,25.0,195.58,94.800728,Florida State,USA,2005,2,39,58,3.2,0.8,0.6,1.6,0.015,0.086,0.166,0.524,0.111,2010-11 6384,Vladimir Radmanovic,GSW,30.0,208.28,106.59411999999999,None,Serbia,2001,1,12,74,5.1,2.9,1.1,2.7,0.062,0.15,0.149,0.562,0.096,2010-11 6385,Vince Carter,PHX,34.0,198.12,99.79024,North Carolina,USA,1998,1,5,73,14.0,3.8,2.0,3.4,0.03,0.12300000000000001,0.23399999999999999,0.528,0.11599999999999999,2010-11 6386,Udonis Haslem,MIA,31.0,203.2,106.59411999999999,Florida,USA,Undrafted,Undrafted,Undrafted,13,8.0,8.2,0.5,9.3,0.1,0.253,0.146,0.5489999999999999,0.028999999999999998,2010-11 6387,Tyson Chandler,DAL,28.0,215.9,106.59411999999999,None,USA,2001,1,2,74,10.1,9.4,0.4,8.2,0.12300000000000001,0.254,0.142,0.6970000000000001,0.024,2010-11 6388,Tyrus Thomas,CHA,24.0,208.28,102.0582,Louisiana State,USA,2006,1,4,41,10.2,5.5,0.7,-1.3,0.09699999999999999,0.215,0.248,0.536,0.064,2010-11 6389,Tyreke Evans,SAC,21.0,198.12,99.79024,Memphis,USA,2009,1,4,57,17.8,4.8,5.6,-5.5,0.024,0.126,0.255,0.48200000000000004,0.255,2010-11 6390,Tyler Hansbrough,IND,25.0,205.74,113.398,North Carolina,USA,2009,1,13,70,11.0,5.2,0.6,-4.9,0.102,0.162,0.22699999999999998,0.529,0.047,2010-11 6391,Ty Lawson,DEN,23.0,180.34,88.45044,North Carolina,USA,2009,1,18,80,11.7,2.6,4.7,4.3,0.037000000000000005,0.077,0.193,0.593,0.272,2010-11 6392,Troy Murphy,BOS,31.0,210.82,111.13004,Notre Dame,USA,2001,1,14,35,3.1,3.2,0.7,-15.6,0.055,0.23600000000000002,0.151,0.428,0.08800000000000001,2010-11 6393,Trey Johnson,LAL,26.0,195.58,98.88305600000001,Jackson State,USA,Undrafted,Undrafted,Undrafted,8,4.3,0.9,1.4,-7.8,0.023,0.063,0.21,0.455,0.19,2010-11 6394,Solomon Alabi,TOR,23.0,215.9,113.851592,Florida State,Nigeria,2010,2,50,12,0.5,1.2,0.2,-18.0,0.109,0.135,0.138,0.18899999999999997,0.051,2010-11 6395,Joey Dorsey,TOR,27.0,203.2,121.562656,Memphis,USA,2008,2,33,43,3.1,4.4,0.6,-2.0,0.165,0.266,0.141,0.529,0.078,2010-11 6396,Sherron Collins,CHA,24.0,180.34,92.98635999999999,Kansas,USA,Undrafted,Undrafted,Undrafted,20,0.9,0.3,0.4,-14.0,0.0,0.09300000000000001,0.217,0.33399999999999996,0.19,2010-11 6397,Shawne Williams,NYK,25.0,205.74,104.32616,Memphis,USA,2006,1,17,64,7.1,3.7,0.7,-0.1,0.051,0.157,0.152,0.5579999999999999,0.054000000000000006,2010-11 6398,Rodney Carney,MEM,27.0,200.66,92.98635999999999,Memphis,USA,2006,1,16,27,4.7,1.8,0.4,-11.2,0.040999999999999995,0.124,0.179,0.521,0.054000000000000006,2010-11 6399,Robin Lopez,PHX,23.0,213.36,115.66596000000001,Stanford,USA,2008,1,15,67,6.4,3.2,0.1,-2.0,0.094,0.151,0.201,0.539,0.012,2010-11 6400,Richard Jefferson,SAS,31.0,200.66,104.32616,Arizona,USA,2001,1,13,81,11.0,3.8,1.3,6.4,0.026000000000000002,0.11699999999999999,0.154,0.612,0.064,2010-11 6401,Richard Hamilton,DET,33.0,200.66,87.543256,Connecticut,USA,1999,1,7,55,14.1,2.3,3.1,-5.2,0.019,0.086,0.26,0.52,0.19899999999999998,2010-11 6402,Renaldo Balkman,NYK,26.0,203.2,94.34713599999999,South Carolina,USA,2006,1,20,8,2.0,0.9,0.3,0.4,0.034,0.08900000000000001,0.106,0.542,0.047,2010-11 6403,Reggie Williams,GSW,24.0,201.0,86.0,Virginia Military Institute,USA,Undrafted,Undrafted,Undrafted,80,9.2,2.7,1.5,-1.7,0.031,0.11699999999999999,0.18899999999999997,0.585,0.11800000000000001,2010-11 6404,Reggie Evans,TOR,31.0,203.2,111.13004,Iowa,USA,Undrafted,Undrafted,Undrafted,30,4.4,11.5,1.3,-11.0,0.17800000000000002,0.344,0.102,0.466,0.07,2010-11 6405,Raymond Felton,DEN,27.0,185.42,92.98635999999999,North Carolina,USA,2005,1,5,75,15.5,3.6,8.3,2.9,0.02,0.091,0.215,0.524,0.34700000000000003,2010-11 6406,Ray Allen,BOS,35.0,195.58,92.98635999999999,Connecticut,USA,1996,1,5,80,16.5,3.4,2.7,8.1,0.023,0.09,0.198,0.615,0.122,2010-11 6407,Rasual Butler,CHI,32.0,200.66,97.52228000000001,La Salle,USA,2002,2,52,47,4.7,1.6,0.6,-7.6,0.015,0.10300000000000001,0.159,0.446,0.059000000000000004,2010-11 6408,Rashard Lewis,WAS,31.0,208.28,104.32616,None,USA,1998,2,32,57,11.7,5.1,1.6,-1.5,0.044000000000000004,0.136,0.17800000000000002,0.535,0.08199999999999999,2010-11 6409,Rodney Stuckey,DET,25.0,195.58,92.98635999999999,Eastern Washington,USA,2007,1,15,70,15.5,3.1,5.2,-2.6,0.037000000000000005,0.084,0.243,0.544,0.27,2010-11 6410,Randy Foye,LAC,27.0,193.04,96.615096,Villanova,USA,2006,1,7,63,9.8,1.6,2.7,-6.7,0.01,0.068,0.201,0.516,0.18,2010-11 6411,Rajon Rondo,BOS,25.0,185.42,77.56423199999999,Kentucky,USA,2006,1,21,68,10.6,4.4,11.2,8.9,0.045,0.096,0.18100000000000002,0.495,0.44799999999999995,2010-11 6412,Raja Bell,UTA,34.0,195.58,93.439952,Florida International,U.S. Virgin Islands,Undrafted,Undrafted,Undrafted,68,8.0,2.6,1.7,-5.4,0.017,0.08199999999999999,0.125,0.528,0.083,2010-11 6413,Quinton Ross,NJN,30.0,198.12,87.543256,Southern Methodist,USA,Undrafted,Undrafted,Undrafted,36,1.6,0.8,0.3,5.6,0.033,0.065,0.095,0.43700000000000006,0.045,2010-11 6414,Quincy Pondexter,NOH,23.0,198.12,102.0582,Washington,USA,2010,1,26,66,2.8,1.3,0.4,-4.1,0.037000000000000005,0.10400000000000001,0.14,0.48200000000000004,0.064,2010-11 6415,Quentin Richardson,ORL,31.0,198.12,103.418976,DePaul,USA,2000,1,18,57,4.4,3.1,0.7,2.2,0.048,0.17,0.146,0.45399999999999996,0.064,2010-11 6416,Pops Mensah-Bonsu,NOH,27.0,205.74,106.59411999999999,George Washington,USA,Undrafted,Undrafted,Undrafted,7,0.3,1.6,0.3,-18.4,0.094,0.33299999999999996,0.068,0.33299999999999996,0.08,2010-11 6417,Pooh Jeter,SAC,27.0,180.34,79.3786,Portland,USA,Undrafted,Undrafted,Undrafted,62,4.1,1.1,2.6,-5.9,0.011000000000000001,0.08,0.16,0.46,0.281,2010-11 6418,Peja Stojakovic,DAL,34.0,208.28,103.872568,None,Serbia and Montenegro,1996,1,14,33,8.5,2.3,0.9,9.3,0.027999999999999997,0.115,0.18899999999999997,0.588,0.069,2010-11 6419,Paul Pierce,BOS,33.0,200.66,106.59411999999999,Kansas,USA,1998,1,10,80,18.9,5.4,3.3,11.3,0.016,0.161,0.239,0.62,0.152,2010-11 6420,Paul Millsap,UTA,26.0,203.2,113.398,Louisiana Tech,USA,2006,2,47,76,17.3,7.6,2.5,-0.5,0.075,0.188,0.225,0.578,0.121,2010-11 6421,Paul George,IND,21.0,203.2,95.25432,Fresno State,USA,2010,1,10,61,7.8,3.7,1.1,-0.1,0.033,0.162,0.175,0.542,0.08199999999999999,2010-11 6422,Ramon Sessions,CLE,25.0,190.5,86.18248,Nevada,USA,2007,2,56,81,13.3,3.1,5.2,-11.4,0.024,0.113,0.24100000000000002,0.5589999999999999,0.35100000000000003,2010-11 6423,Rodrigue Beaubois,DAL,23.0,187.96,83.91452,None,France,2009,1,25,28,8.4,1.9,2.3,0.1,0.016,0.102,0.256,0.5,0.213,2010-11 6424,Roger Mason Jr.,NYK,30.0,195.58,92.98635999999999,Virginia,USA,2002,2,30,26,2.9,1.7,0.8,-9.8,0.017,0.14400000000000002,0.124,0.461,0.099,2010-11 6425,Ronald Dupree,TOR,30.0,200.66,94.800728,Louisiana State,USA,Undrafted,Undrafted,Undrafted,3,0.7,1.0,0.3,-20.4,0.0,0.273,0.141,0.25,0.125,2010-11 6426,Shawn Marion,DAL,33.0,200.66,103.418976,Nevada-Las Vegas,USA,1999,1,9,80,12.5,6.9,1.4,1.2,0.09,0.19399999999999998,0.214,0.551,0.084,2010-11 6427,Shaun Livingston,CHA,25.0,200.66,83.91452,None,USA,2004,1,4,73,6.6,2.0,2.2,-2.8,0.027999999999999997,0.114,0.20199999999999999,0.53,0.24100000000000002,2010-11 6428,Shaquille O'Neal,BOS,39.0,215.9,147.4174,Louisiana State,USA,1992,1,1,37,9.2,4.8,0.7,13.2,0.092,0.205,0.2,0.659,0.051,2010-11 6429,Shannon Brown,LAL,25.0,193.04,95.25432,Michigan State,USA,2006,1,25,82,8.7,1.9,1.2,4.0,0.026000000000000002,0.083,0.222,0.518,0.107,2010-11 6430,Shane Battier,MEM,32.0,203.2,99.79024,Duke,USA,2001,1,6,82,7.6,4.5,2.3,3.1,0.044000000000000004,0.139,0.11699999999999999,0.5670000000000001,0.109,2010-11 6431,Serge Ibaka,OKC,21.0,208.28,106.59411999999999,None,Democratic Republic of the Congo,2008,1,24,82,9.9,7.6,0.3,4.0,0.11800000000000001,0.20600000000000002,0.158,0.579,0.016,2010-11 6432,Semih Erden,CLE,24.0,210.82,108.86208,None,Turkey,2008,2,60,41,4.0,2.9,0.5,-1.6,0.08,0.166,0.138,0.593,0.054000000000000006,2010-11 6433,Sebastian Telfair,MIN,26.0,182.88,79.3786,None,USA,2004,1,13,37,7.2,1.5,3.0,-7.2,0.025,0.06,0.19399999999999998,0.49700000000000005,0.24600000000000002,2010-11 6434,Sean Marks,POR,35.0,208.28,113.398,California,New Zealand,1998,2,44,29,1.6,1.4,0.1,-16.8,0.084,0.146,0.128,0.473,0.033,2010-11 6435,Sasha Vujacic,NJN,27.0,200.66,92.98635999999999,None,Slovenia,2004,1,27,67,9.8,2.8,2.0,-10.1,0.021,0.11800000000000001,0.195,0.515,0.134,2010-11 6436,Sasha Pavlovic,BOS,27.0,200.66,106.59411999999999,None,Montenegro,2003,1,19,31,2.5,1.0,0.5,-8.6,0.003,0.102,0.11900000000000001,0.49700000000000005,0.07200000000000001,2010-11 6437,Samuel Dalembert,SAC,31.0,210.82,113.398,Seton Hall,Haiti,2001,1,26,80,8.1,8.2,0.8,-4.1,0.124,0.264,0.174,0.509,0.054000000000000006,2010-11 6438,Samardo Samuels,CLE,22.0,205.74,117.93392,Louisville,Jamaica,Undrafted,Undrafted,Undrafted,37,7.8,4.3,0.5,-10.9,0.11599999999999999,0.147,0.214,0.498,0.043,2010-11 6439,Sam Young,MEM,26.0,198.12,99.79024,Pittsburgh,USA,2009,2,36,78,7.3,2.4,0.9,1.8,0.031,0.11,0.174,0.525,0.069,2010-11 6440,Ryan Hollins,CLE,26.0,213.36,108.86208,UCLA,USA,2006,2,50,70,5.3,2.7,0.4,-5.6,0.071,0.115,0.141,0.642,0.035,2010-11 6441,Ryan Gomes,LAC,28.0,200.66,111.13004,Providence,USA,2005,2,50,76,7.2,3.3,1.6,-3.8,0.034,0.109,0.127,0.504,0.084,2010-11 6442,Ryan Anderson,ORL,23.0,208.28,108.86208,California,USA,2008,1,21,64,10.6,5.5,0.8,9.2,0.10400000000000001,0.182,0.198,0.591,0.061,2010-11 6443,Russell Westbrook,OKC,22.0,190.5,84.821704,UCLA,USA,2008,1,4,82,21.9,4.6,8.2,3.0,0.051,0.102,0.312,0.5379999999999999,0.42200000000000004,2010-11 6444,Rudy Gay,MEM,24.0,203.2,104.32616,Connecticut,USA,2006,1,8,54,19.8,6.2,2.8,2.3,0.045,0.14,0.23199999999999998,0.5479999999999999,0.11599999999999999,2010-11 6445,Rudy Fernandez,POR,26.0,198.12,83.91452,None,Spain,2007,1,24,78,8.6,2.2,2.5,1.7,0.024,0.096,0.18600000000000003,0.522,0.171,2010-11 6446,Royal Ivey,OKC,29.0,193.04,97.52228000000001,Texas,USA,2004,2,37,25,1.6,0.6,0.3,-8.9,0.013999999999999999,0.099,0.13,0.527,0.077,2010-11 6447,Roy Hibbert,IND,24.0,218.44,126.098576,Georgetown,USA,2008,1,17,81,12.7,7.5,2.0,-1.7,0.094,0.205,0.237,0.507,0.12300000000000001,2010-11 6448,Ronny Turiaf,NYK,28.0,208.28,111.13004,Gonzaga,France,2005,2,37,64,4.2,3.2,1.4,1.0,0.06,0.14300000000000002,0.096,0.648,0.122,2010-11 6449,Ronnie Price,UTA,28.0,187.96,84.821704,Utah Valley,USA,Undrafted,Undrafted,Undrafted,59,3.3,1.0,0.9,-0.1,0.038,0.07,0.184,0.434,0.12300000000000001,2010-11 6450,Ronnie Brewer,CHI,26.0,200.66,102.965384,Arkansas,USA,2006,1,14,81,6.2,3.2,1.7,9.8,0.036000000000000004,0.128,0.14,0.518,0.126,2010-11 6451,Shelden Williams,NYK,27.0,205.74,113.398,Duke,USA,2006,1,5,59,4.5,4.6,0.5,-1.8,0.115,0.226,0.142,0.522,0.053,2010-11 6452,Joel Przybilla,CHA,31.0,215.9,111.13004,Minnesota,USA,2000,1,9,36,1.8,4.0,0.4,-8.1,0.087,0.24600000000000002,0.078,0.573,0.038,2010-11 6453,Nick Young,WAS,26.0,200.66,95.25432,Southern California,USA,2007,1,16,64,17.4,2.7,1.2,-8.0,0.013999999999999999,0.086,0.245,0.5379999999999999,0.066,2010-11 6454,Joe Smith,LAL,35.0,208.28,102.0582,Maryland,USA,1995,1,1,16,0.5,1.3,0.3,-2.7,0.051,0.257,0.139,0.237,0.09300000000000001,2010-11 6455,Christian Eyenga,CLE,22.0,195.58,95.25432,None,Congo,2009,1,30,44,6.9,2.8,0.8,-10.4,0.031,0.121,0.17300000000000001,0.47600000000000003,0.061,2010-11 6456,Chris Wilcox,DET,28.0,208.28,106.59411999999999,Maryland,USA,2002,1,8,57,7.4,4.8,0.8,-1.0,0.11199999999999999,0.235,0.187,0.5870000000000001,0.068,2010-11 6457,Chris Quinn,SAS,27.0,187.96,79.3786,Notre Dame,USA,Undrafted,Undrafted,Undrafted,41,2.0,0.6,1.0,-1.8,0.012,0.087,0.17300000000000001,0.428,0.23600000000000002,2010-11 6458,Chris Paul,NOH,26.0,182.88,79.3786,Wake Forest,USA,2005,1,4,80,15.9,4.1,9.8,5.2,0.016,0.125,0.21,0.578,0.441,2010-11 6459,Chris Kaman,LAC,29.0,213.36,120.20188,Central Michigan,USA,2003,1,6,32,12.4,7.0,1.4,-4.7,0.07200000000000001,0.22399999999999998,0.245,0.495,0.1,2010-11 6460,Chris Johnson,POR,25.0,210.82,95.25432,Louisiana State,USA,Undrafted,Undrafted,Undrafted,14,2.4,2.3,0.2,-21.3,0.092,0.175,0.129,0.5539999999999999,0.037000000000000005,2010-11 6461,Chris Duhon,ORL,28.0,185.42,86.18248,Duke,USA,2004,2,38,51,2.5,1.0,2.3,1.6,0.013999999999999999,0.063,0.122,0.446,0.251,2010-11 6462,Chris Douglas-Roberts,MIL,24.0,200.66,95.25432,Memphis,USA,2008,2,40,44,7.3,2.0,1.1,-1.0,0.009000000000000001,0.109,0.18600000000000003,0.517,0.098,2010-11 6463,Chris Bosh,MIA,27.0,210.82,106.59411999999999,Georgia Tech,USA,2003,1,4,77,18.7,8.3,1.9,11.4,0.064,0.19899999999999998,0.23399999999999999,0.569,0.086,2010-11 6464,Chris Andersen,DEN,32.0,208.28,103.418976,Blinn,USA,Undrafted,Undrafted,Undrafted,45,5.6,4.9,0.4,5.2,0.12,0.223,0.131,0.636,0.043,2010-11 6465,Chauncey Billups,NYK,34.0,190.5,95.25432,Colorado,USA,1997,1,3,72,16.8,2.6,5.4,2.8,0.013000000000000001,0.081,0.225,0.617,0.266,2010-11 6466,Chuck Hayes,HOU,28.0,198.12,107.95489599999999,Kentucky,USA,Undrafted,Undrafted,Undrafted,74,7.9,8.1,2.7,5.9,0.122,0.21100000000000002,0.132,0.5539999999999999,0.14,2010-11 6467,Chase Budinger,HOU,23.0,200.66,98.88305600000001,Arizona,USA,2009,2,44,78,9.8,3.6,1.6,4.0,0.033,0.147,0.19899999999999998,0.534,0.113,2010-11 6468,Charlie Bell,GSW,32.0,190.5,90.7184,Michigan State,USA,Undrafted,Undrafted,Undrafted,19,1.7,0.9,0.7,2.0,0.037000000000000005,0.084,0.133,0.35700000000000004,0.113,2010-11 6469,Channing Frye,PHX,28.0,210.82,111.13004,Arizona,USA,2005,1,8,77,12.7,6.7,1.2,2.3,0.03,0.20199999999999999,0.16899999999999998,0.557,0.055999999999999994,2010-11 6470,Cartier Martin,WAS,26.0,200.66,99.79024,Kansas State,USA,Undrafted,Undrafted,Undrafted,52,4.0,1.4,0.3,2.3,0.043,0.121,0.17600000000000002,0.524,0.05,2010-11 6471,Caron Butler,DAL,31.0,200.66,103.418976,Connecticut,USA,2002,1,10,29,15.0,4.1,1.6,8.8,0.031,0.11900000000000001,0.255,0.523,0.091,2010-11 6472,Carmelo Anthony,NYK,27.0,203.2,104.32616,Syracuse,USA,2003,1,3,77,25.6,7.3,2.9,3.2,0.05,0.184,0.321,0.557,0.149,2010-11 6473,Carlos Delfino,MIL,28.0,198.12,104.32616,None,Argentina,2003,1,25,49,11.5,4.1,2.3,-3.9,0.017,0.135,0.177,0.517,0.12300000000000001,2010-11 6474,Carlos Boozer,CHI,29.0,205.74,120.655472,Duke,USA,2002,2,34,59,17.5,9.6,2.5,6.5,0.086,0.27,0.27,0.542,0.13699999999999998,2010-11 6475,Carlos Arroyo,BOS,31.0,187.96,90.7184,Florida International,Puerto Rico,Undrafted,Undrafted,Undrafted,64,4.8,1.6,2.0,6.2,0.021,0.078,0.141,0.528,0.16,2010-11 6476,Carl Landry,NOH,27.0,205.74,112.490816,Purdue,USA,2007,2,31,76,11.9,4.6,0.8,-4.5,0.094,0.11199999999999999,0.207,0.555,0.052000000000000005,2010-11 6477,CJ Miles,UTA,24.0,198.12,105.23334399999999,None,USA,2005,2,34,78,12.8,3.3,1.7,0.8,0.032,0.126,0.249,0.507,0.11800000000000001,2010-11 6478,C.J. Watson,CHI,27.0,187.96,79.3786,Tennessee,USA,Undrafted,Undrafted,Undrafted,82,4.9,1.1,2.3,8.3,0.018000000000000002,0.08199999999999999,0.218,0.466,0.303,2010-11 6479,Charlie Villanueva,DET,26.0,210.82,105.23334399999999,Connecticut,USA,2005,1,7,76,11.1,3.9,0.6,-5.6,0.036000000000000004,0.188,0.231,0.5529999999999999,0.05,2010-11 6480,Byron Mullens,OKC,22.0,213.36,124.7378,Ohio State,USA,2009,1,24,13,1.9,1.8,0.0,-14.8,0.07200000000000001,0.237,0.21100000000000002,0.366,0.0,2010-11 6481,Cole Aldrich,OKC,22.0,210.82,111.13004,Kansas,USA,2010,1,11,18,1.0,1.9,0.2,3.9,0.11199999999999999,0.168,0.08199999999999999,0.537,0.040999999999999995,2010-11 6482,Corey Maggette,MIL,31.0,198.12,102.0582,Duke,USA,1999,1,13,67,12.0,3.6,1.3,-3.1,0.037000000000000005,0.165,0.27699999999999997,0.573,0.111,2010-11 6483,David West,NOH,30.0,205.74,108.86208,Xavier,USA,2003,1,18,70,18.9,7.6,2.3,3.3,0.077,0.18899999999999997,0.259,0.5579999999999999,0.126,2010-11 6484,David Lee,GSW,28.0,205.74,108.86208,Florida,USA,2005,1,30,73,16.5,9.8,3.2,-2.3,0.09300000000000001,0.218,0.212,0.5489999999999999,0.136,2010-11 6485,David Andersen,NOH,31.0,210.82,112.037224,None,USA,2002,2,36,40,3.4,2.1,0.3,-0.4,0.069,0.213,0.187,0.513,0.054000000000000006,2010-11 6486,Darren Collison,IND,23.0,182.88,72.57472,UCLA,USA,2009,1,21,79,13.2,2.8,5.1,-3.3,0.019,0.085,0.218,0.534,0.28,2010-11 6487,Darnell Jackson,SAC,25.0,205.74,114.758776,Kansas,USA,2008,2,52,59,3.2,1.6,0.2,-5.8,0.10300000000000001,0.106,0.175,0.521,0.048,2010-11 6488,Darko Milicic,MIN,26.0,213.36,124.7378,None,Serbia,2003,1,2,69,8.8,5.2,1.5,-6.7,0.085,0.146,0.19899999999999998,0.48200000000000004,0.099,2010-11 6489,Darius Songaila,PHI,33.0,205.74,112.490816,Wake Forest,Lithuania,2002,2,49,10,1.6,1.0,0.2,-14.1,0.028999999999999998,0.157,0.128,0.47700000000000004,0.044000000000000004,2010-11 6490,Dante Cunningham,CHA,24.0,203.2,104.32616,Villanova,USA,2009,2,33,78,6.2,3.6,0.6,-3.3,0.071,0.147,0.16,0.483,0.044000000000000004,2010-11 6491,Danny Green,SAS,24.0,198.12,95.25432,North Carolina,USA,2009,2,46,8,5.1,1.9,0.3,12.8,0.037000000000000005,0.156,0.203,0.586,0.039,2010-11 6492,Danny Granger,IND,28.0,203.2,103.418976,New Mexico,USA,2005,1,17,79,20.5,5.4,2.6,-0.9,0.036000000000000004,0.133,0.266,0.5539999999999999,0.128,2010-11 6493,Danilo Gallinari,DEN,22.0,208.28,102.0582,None,Italy,2008,1,6,62,15.6,4.9,1.7,2.1,0.033,0.133,0.19,0.597,0.07400000000000001,2010-11 6494,Corey Brewer,DAL,25.0,205.74,85.275296,Florida,USA,2007,1,7,69,8.0,2.5,1.3,-3.8,0.04,0.09,0.185,0.48200000000000004,0.09,2010-11 6495,Daniel Gibson,CLE,25.0,187.96,90.7184,Texas,USA,2006,2,42,67,11.6,2.6,3.0,-5.4,0.015,0.098,0.198,0.5329999999999999,0.185,2010-11 6496,Damion James,NJN,23.0,200.66,99.79024,Texas,USA,2010,1,24,25,4.4,3.4,0.8,-3.3,0.048,0.21100000000000002,0.16,0.47700000000000004,0.08199999999999999,2010-11 6497,Damien Wilkins,ATL,31.0,198.12,102.0582,Georgia,USA,Undrafted,Undrafted,Undrafted,52,3.5,1.7,0.8,-8.7,0.043,0.122,0.127,0.557,0.099,2010-11 6498,Dahntay Jones,IND,30.0,198.12,95.25432,Duke,USA,2003,1,20,45,6.3,1.4,0.7,-1.8,0.008,0.11900000000000001,0.21899999999999997,0.5579999999999999,0.10300000000000001,2010-11 6499,Daequan Cook,OKC,24.0,195.58,95.25432,Ohio State,USA,2007,1,21,43,5.6,1.7,0.5,7.0,0.017,0.12300000000000001,0.16,0.63,0.055,2010-11 6500,DaJuan Summers,DET,23.0,203.2,108.86208,Georgetown,USA,2009,2,35,22,3.4,0.5,0.1,-4.6,0.013000000000000001,0.062,0.217,0.47600000000000003,0.017,2010-11 6501,DJ White,CHA,24.0,205.74,113.851592,Indiana,USA,2008,1,29,47,5.7,3.4,0.4,-2.7,0.077,0.19899999999999998,0.182,0.542,0.051,2010-11 6502,DJ Mbenga,NOH,30.0,213.36,115.66596000000001,None,Democratic Republic of the Congo,Undrafted,Undrafted,Undrafted,41,1.4,2.1,0.1,-5.2,0.125,0.168,0.11199999999999999,0.518,0.032,2010-11 6503,D.J. Augustin,CHA,23.0,182.88,81.64656,Texas,USA,2008,1,9,82,14.4,2.7,6.1,-4.9,0.017,0.084,0.21100000000000002,0.541,0.306,2010-11 6504,Craig Smith,LAC,27.0,200.66,120.20188,Boston College,USA,2006,2,36,48,5.4,2.4,0.6,-5.7,0.085,0.154,0.19399999999999998,0.5920000000000001,0.095,2010-11 6505,Craig Brackins,PHI,23.0,208.28,104.32616,Iowa State,USA,2010,1,21,3,2.7,1.3,0.3,-29.2,0.057,0.095,0.22,0.25,0.05,2010-11 6506,Courtney Lee,HOU,25.0,195.58,90.7184,Western Kentucky,USA,2008,1,22,81,8.3,2.6,1.2,0.1,0.034,0.10400000000000001,0.179,0.534,0.092,2010-11 6507,Dan Gadzuric,NJN,33.0,210.82,108.86208,UCLA,Netherlands,2002,2,33,42,2.8,3.2,0.3,-7.7,0.159,0.172,0.161,0.419,0.046,2010-11 6508,Brook Lopez,NJN,23.0,213.36,120.20188,Stanford,USA,2008,1,10,82,20.4,6.0,1.6,-7.0,0.078,0.12300000000000001,0.273,0.5489999999999999,0.087,2010-11 6509,Brian Skinner,MIL,35.0,205.74,115.66596000000001,Baylor,USA,1998,1,22,2,0.0,0.0,0.0,-95.6,0.0,0.0,0.0,0.0,0.0,2010-11 6510,Brian Scalabrine,CHI,33.0,205.74,106.59411999999999,Southern California,USA,2001,2,34,18,1.1,0.4,0.3,1.1,0.012,0.083,0.12,0.526,0.098,2010-11 6511,Antawn Jamison,CLE,35.0,205.74,106.59411999999999,North Carolina,USA,1998,1,4,56,18.0,6.7,1.7,-10.6,0.05,0.18600000000000003,0.255,0.516,0.092,2010-11 6512,Andy Rautins,NYK,24.0,193.04,86.18248,Syracuse,USA,2010,2,38,5,1.6,0.2,0.6,-18.8,0.0,0.048,0.278,0.508,0.25,2010-11 6513,Andris Biedrins,GSW,25.0,213.36,108.86208,None,Latvia,2004,1,11,59,5.0,7.2,1.0,-7.8,0.115,0.242,0.106,0.526,0.06,2010-11 6514,Andrew Bynum,LAL,23.0,213.36,129.27372,None,USA,2005,1,10,54,11.3,9.4,1.4,7.1,0.133,0.252,0.18,0.606,0.079,2010-11 6515,Andrew Bogut,MIL,26.0,213.36,117.93392,Utah,Australia,2005,1,1,65,12.8,11.1,2.0,0.0,0.099,0.262,0.198,0.496,0.10300000000000001,2010-11 6516,Andres Nocioni,PHI,31.0,200.66,102.0582,None,Argentina,Undrafted,Undrafted,Undrafted,54,6.1,3.1,0.8,-6.9,0.024,0.191,0.174,0.5379999999999999,0.076,2010-11 6517,Andrei Kirilenko,UTA,30.0,205.74,106.59411999999999,None,Russia,1999,1,24,64,11.7,5.1,3.0,-1.1,0.06,0.135,0.17800000000000002,0.5670000000000001,0.145,2010-11 6518,Andrea Bargnani,TOR,25.0,213.36,113.398,None,Italy,2006,1,1,66,21.4,5.2,1.8,-8.0,0.037000000000000005,0.141,0.282,0.5329999999999999,0.086,2010-11 6519,Andre Miller,POR,35.0,187.96,90.7184,Utah,USA,1999,1,8,81,12.7,3.7,7.0,4.7,0.044000000000000004,0.098,0.209,0.529,0.348,2010-11 6520,Andre Iguodala,PHI,27.0,198.12,93.89354399999999,Arizona,USA,2004,1,9,67,14.1,5.8,6.3,3.4,0.028999999999999998,0.151,0.192,0.53,0.261,2010-11 6521,Andray Blatche,WAS,24.0,210.82,117.93392,None,USA,2005,2,49,64,16.8,8.2,2.3,-6.9,0.094,0.19,0.256,0.49700000000000005,0.115,2010-11 6522,Anthony Carter,NYK,36.0,187.96,88.45044,Hawaii,USA,Undrafted,Undrafted,Undrafted,33,3.3,1.5,2.1,1.1,0.018000000000000002,0.109,0.14400000000000002,0.502,0.23399999999999999,2010-11 6523,Anderson Varejao,CLE,28.0,210.82,117.93392,None,Brazil,2004,2,30,31,9.1,9.7,1.5,-9.0,0.111,0.24,0.135,0.56,0.07400000000000001,2010-11 6524,Amar'e Stoudemire,NYK,28.0,208.28,108.86208,None,USA,2002,1,9,78,25.3,8.2,2.6,1.2,0.08,0.177,0.309,0.565,0.128,2010-11 6525,Alonzo Gee,CLE,24.0,198.12,99.79024,Alabama,USA,Undrafted,Undrafted,Undrafted,56,5.9,3.3,0.7,-10.7,0.061,0.124,0.14400000000000002,0.544,0.055999999999999994,2010-11 6526,Joel Anthony,MIA,28.0,205.74,111.13004,Nevada-Las Vegas,Canada,Undrafted,Undrafted,Undrafted,75,2.0,3.5,0.3,7.8,0.091,0.11900000000000001,0.055,0.583,0.024,2010-11 6527,Al-Farouq Aminu,LAC,20.0,205.74,97.52228000000001,Wake Forest,USA,2010,1,8,81,5.6,3.3,0.7,-7.8,0.06,0.154,0.171,0.499,0.067,2010-11 6528,Al Thornton,GSW,27.0,203.2,106.59411999999999,Florida State,USA,2007,1,14,71,7.4,3.0,0.9,-4.8,0.048,0.139,0.182,0.531,0.07200000000000001,2010-11 6529,Al Jefferson,UTA,26.0,208.28,127.00576000000001,None,USA,2004,1,15,82,18.6,9.7,1.8,-3.2,0.094,0.228,0.242,0.528,0.09,2010-11 6530,Al Horford,ATL,25.0,208.28,111.13004,Florida,Dominican Republic,2007,1,3,77,15.3,9.3,3.5,0.2,0.081,0.233,0.19899999999999998,0.5870000000000001,0.16899999999999998,2010-11 6531,Al Harrington,DEN,31.0,205.74,113.398,None,USA,1998,1,25,73,10.5,4.5,1.4,3.7,0.054000000000000006,0.179,0.221,0.527,0.096,2010-11 6532,Acie Law,GSW,26.0,190.5,91.625584,Texas A&M,USA,2007,1,11,51,4.2,1.2,1.6,-8.2,0.019,0.08199999999999999,0.16,0.502,0.182,2010-11 6533,Aaron Gray,NOH,26.0,213.36,122.46983999999999,Pittsburgh,USA,2007,2,49,41,3.1,4.2,0.4,2.2,0.14,0.273,0.132,0.5660000000000001,0.044000000000000004,2010-11 6534,Aaron Brooks,PHX,26.0,182.88,73.028312,Oregon,USA,2007,1,26,59,10.7,1.3,3.9,-6.5,0.017,0.053,0.257,0.489,0.289,2010-11 6535,Amir Johnson,TOR,24.0,205.74,95.25432,None,USA,2005,2,56,72,9.6,6.4,1.1,-2.8,0.11699999999999999,0.179,0.154,0.608,0.064,2010-11 6536,Anthony Morrow,NJN,25.0,195.58,95.25432,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,58,13.2,3.0,1.2,-4.1,0.023,0.08800000000000001,0.18,0.573,0.063,2010-11 6537,Anthony Parker,CLE,36.0,198.12,95.25432,Bradley,USA,1997,1,21,72,8.3,3.0,3.0,-7.8,0.018000000000000002,0.102,0.146,0.505,0.16399999999999998,2010-11 6538,Anthony Randolph,MIN,21.0,210.82,102.0582,Louisiana State,USA,2008,1,14,40,7.6,4.0,0.8,-10.7,0.079,0.228,0.262,0.505,0.10300000000000001,2010-11 6539,Brian Cook,LAC,30.0,205.74,113.398,Illinois,USA,2003,1,24,40,4.8,2.4,0.4,-8.8,0.05,0.217,0.203,0.534,0.057,2010-11 6540,Brian Cardinal,DAL,34.0,203.2,108.86208,Purdue,USA,2000,2,44,56,2.6,1.1,0.7,0.4,0.019,0.096,0.09699999999999999,0.672,0.09699999999999999,2010-11 6541,Brendan Haywood,DAL,31.0,213.36,119.294696,North Carolina,USA,2001,1,20,72,4.4,5.2,0.3,0.8,0.113,0.222,0.124,0.532,0.022000000000000002,2010-11 6542,Brandon Rush,IND,25.0,198.12,95.25432,Kansas,USA,2008,1,13,67,9.1,3.2,0.9,-6.0,0.021,0.12,0.161,0.54,0.057999999999999996,2010-11 6543,Brandon Roy,POR,26.0,198.12,95.707912,Washington,USA,2006,1,6,47,12.2,2.6,2.7,2.5,0.025,0.09300000000000001,0.228,0.491,0.168,2010-11 6544,Brandon Jennings,MIL,21.0,185.42,76.657048,None,USA,2009,1,10,63,16.2,3.7,4.8,-2.1,0.021,0.106,0.25,0.493,0.261,2010-11 6545,Brandon Bass,ORL,26.0,203.2,113.398,Louisiana State,USA,2005,2,33,76,11.2,5.6,0.8,6.4,0.083,0.17,0.20199999999999999,0.5710000000000001,0.051,2010-11 6546,Brandan Wright,NJN,23.0,208.28,95.25432,North Carolina,USA,2007,1,8,37,3.8,2.4,0.3,-7.8,0.09,0.18,0.17,0.54,0.053,2010-11 6547,Brad Miller,HOU,35.0,213.36,118.38751200000002,Purdue,USA,Undrafted,Undrafted,Undrafted,60,6.4,3.7,2.4,0.0,0.049,0.19699999999999998,0.17,0.5660000000000001,0.22,2010-11 6548,Boris Diaw,CHA,29.0,203.2,106.59411999999999,None,France,2003,1,21,82,11.3,5.0,4.1,-3.9,0.045,0.13699999999999998,0.168,0.5579999999999999,0.203,2010-11 6549,Bobby Simmons,SAS,31.0,198.12,106.59411999999999,DePaul,USA,2001,2,41,2,0.0,0.0,1.0,14.4,0.0,0.0,0.087,0.0,0.182,2010-11 6550,Blake Griffin,LAC,22.0,208.28,113.851592,Oklahoma,USA,2009,1,1,82,22.5,12.1,3.8,-3.4,0.10300000000000001,0.26899999999999996,0.273,0.5489999999999999,0.184,2010-11 6551,Beno Udrih,SAC,28.0,190.5,92.98635999999999,None,Slovenia,2004,1,28,79,13.7,3.4,4.9,-5.6,0.017,0.09699999999999999,0.168,0.5870000000000001,0.21899999999999997,2010-11 6552,Ben Wallace,DET,36.0,205.74,108.86208,Virginia Union,USA,Undrafted,Undrafted,Undrafted,54,2.9,6.5,1.3,-7.2,0.11800000000000001,0.228,0.083,0.442,0.086,2010-11 6553,Ben Uzoh,NJN,23.0,190.5,92.98635999999999,Tulsa,USA,Undrafted,Undrafted,Undrafted,42,3.8,1.5,1.6,-8.7,0.077,0.086,0.20600000000000002,0.46799999999999997,0.278,2010-11 6554,Ben Gordon,DET,28.0,190.5,90.7184,Connecticut,USA,2004,1,3,82,11.2,2.4,2.1,-3.5,0.022000000000000002,0.094,0.212,0.5479999999999999,0.129,2010-11 6555,Baron Davis,CLE,32.0,190.5,97.52228000000001,UCLA,USA,1999,1,3,58,13.1,2.7,6.7,-1.3,0.025,0.087,0.243,0.506,0.38799999999999996,2010-11 6556,Avery Bradley,BOS,20.0,187.96,81.64656,Texas,USA,2010,1,19,31,1.7,0.5,0.4,-17.3,0.03,0.092,0.253,0.36,0.135,2010-11 6557,Austin Daye,DET,23.0,210.82,90.7184,Gonzaga,USA,2009,1,15,72,7.5,3.8,1.1,-4.7,0.05,0.185,0.184,0.518,0.085,2010-11 6558,Arron Afflalo,DEN,25.0,195.58,97.52228000000001,UCLA,USA,2007,1,27,69,12.6,3.6,2.4,3.8,0.023,0.10099999999999999,0.15,0.62,0.109,2010-11 6559,Armon Johnson,POR,22.0,190.5,88.45044,Nevada,USA,2010,2,34,38,2.9,0.9,1.2,-3.0,0.042,0.109,0.237,0.49700000000000005,0.3,2010-11 6560,Antonio McDyess,SAS,36.0,205.74,111.13004,Alabama,USA,1995,1,2,73,5.3,5.4,1.2,5.8,0.107,0.225,0.15,0.516,0.09300000000000001,2010-11 6561,Antonio Daniels,PHI,36.0,193.04,92.98635999999999,Bowling Green,USA,1997,1,4,4,1.5,1.3,0.5,17.6,0.0,0.152,0.096,0.51,0.08,2010-11 6562,Antoine Wright,SAC,27.0,200.66,97.52228000000001,Texas A&M,USA,2005,1,15,7,0.3,0.4,0.0,-19.0,0.054000000000000006,0.043,0.138,0.125,0.0,2010-11 6563,Anthony Tolliver,MIN,26.0,205.74,110.22285600000001,Creighton,USA,Undrafted,Undrafted,Undrafted,65,6.7,4.5,1.3,-4.0,0.07400000000000001,0.17800000000000002,0.133,0.585,0.09,2010-11 6564,DeAndre Jordan,LAC,22.0,210.82,120.20188,Texas A&M,USA,2008,2,35,80,7.1,7.2,0.5,-2.7,0.122,0.20600000000000002,0.11800000000000001,0.648,0.031,2010-11 6565,DeJuan Blair,SAS,22.0,200.66,122.46983999999999,Pittsburgh,USA,2009,2,37,81,8.3,7.0,1.0,5.1,0.14400000000000002,0.23199999999999998,0.198,0.524,0.067,2010-11 6566,Alexis Ajinca,TOR,23.0,218.44,112.490816,None,France,2008,1,20,34,4.2,2.3,0.3,-1.4,0.061,0.20800000000000002,0.212,0.507,0.049,2010-11 6567,DeMarcus Cousins,SAC,20.0,210.82,122.46983999999999,Kentucky,USA,2010,1,5,81,14.1,8.6,2.5,-7.5,0.105,0.247,0.272,0.484,0.149,2010-11 6568,James Johnson,TOR,24.0,205.74,111.13004,Wake Forest,USA,2009,1,16,38,7.1,3.7,2.3,-3.1,0.055999999999999994,0.153,0.183,0.505,0.161,2010-11 6569,James Harden,OKC,21.0,195.58,99.79024,Arizona State,USA,2009,1,3,82,12.2,3.1,2.1,5.7,0.024,0.11,0.19699999999999998,0.598,0.136,2010-11 6570,James Anderson,SAS,22.0,198.12,97.52228000000001,Oklahoma State,USA,2010,1,20,26,3.6,0.9,0.7,-7.0,0.009000000000000001,0.091,0.165,0.529,0.10300000000000001,2010-11 6571,Jameer Nelson,ORL,29.0,182.88,86.18248,Saint Joseph's,USA,2004,1,20,76,13.1,3.0,6.0,7.5,0.019,0.092,0.221,0.5479999999999999,0.324,2010-11 6572,Jamario Moon,LAC,31.0,203.2,92.98635999999999,Meridian Community College,USA,Undrafted,Undrafted,Undrafted,59,4.3,2.8,0.9,-6.5,0.025,0.154,0.12,0.499,0.07400000000000001,2010-11 6573,Jamal Crawford,ATL,31.0,195.58,90.7184,Michigan,USA,2000,1,8,76,14.2,1.7,3.2,-1.3,0.012,0.057,0.231,0.545,0.17800000000000002,2010-11 6574,Jamaal Magloire,MIA,33.0,210.82,115.66596000000001,Kentucky,Canada,2000,1,19,18,1.9,3.4,0.2,7.2,0.131,0.35200000000000004,0.105,0.585,0.031,2010-11 6575,JaVale McGee,WAS,23.0,213.36,114.30518400000001,Nevada,USA,2008,1,18,79,10.1,8.0,0.5,-4.4,0.11599999999999999,0.214,0.165,0.5660000000000001,0.027000000000000003,2010-11 6576,JR Smith,DEN,25.0,198.12,99.79024,None,USA,2004,1,18,79,12.3,4.1,2.2,5.8,0.027999999999999997,0.162,0.22,0.55,0.141,2010-11 6577,JJ Redick,ORL,27.0,193.04,86.18248,Duke,USA,2006,1,11,59,10.1,1.9,1.7,4.0,0.005,0.08,0.16699999999999998,0.589,0.11,2010-11 6578,JJ Hickson,CLE,22.0,205.74,109.769264,North Carolina State,USA,2008,1,19,80,13.8,8.7,1.1,-11.9,0.107,0.244,0.253,0.503,0.075,2010-11 6579,James Jones,MIA,30.0,203.2,97.52228000000001,Miami (FL),USA,2003,2,49,81,5.9,2.0,0.5,8.6,0.019,0.102,0.122,0.629,0.043,2010-11 6580,J.J. Barea,DAL,27.0,182.88,79.3786,Northeastern,Puerto Rico,Undrafted,Undrafted,Undrafted,81,9.5,2.0,3.9,5.9,0.021,0.08900000000000001,0.242,0.535,0.314,2010-11 6581,Ime Udoka,SAS,33.0,195.58,99.79024,Portland State,USA,Undrafted,Undrafted,Undrafted,20,0.7,1.0,0.7,0.6,0.040999999999999995,0.12,0.109,0.285,0.153,2010-11 6582,Ike Diogu,LAC,27.0,205.74,113.398,Arizona State,USA,2005,1,9,36,5.8,3.2,0.1,-10.6,0.096,0.188,0.183,0.59,0.008,2010-11 6583,Ian Mahinmi,DAL,24.0,210.82,104.32616,None,France,2005,1,28,56,3.1,2.1,0.1,8.8,0.114,0.179,0.153,0.645,0.025,2010-11 6584,Hilton Armstrong,ATL,26.0,210.82,106.59411999999999,Connecticut,USA,2006,1,12,53,1.7,2.5,0.3,-10.0,0.098,0.215,0.11,0.508,0.046,2010-11 6585,Henry Walker,NYK,23.0,198.12,99.79024,Kansas State,USA,2008,2,47,61,4.9,2.0,0.6,6.2,0.023,0.155,0.165,0.583,0.069,2010-11 6586,Hedo Turkoglu,ORL,32.0,208.28,99.79024,None,Turkey,2000,1,16,81,10.8,4.4,4.2,6.4,0.021,0.14,0.168,0.555,0.207,2010-11 6587,Hassan Whiteside,SAC,22.0,213.36,106.59411999999999,Marshall,USA,2010,2,33,1,0.0,0.0,0.0,-144.9,0.0,0.0,0.0,0.0,0.0,2010-11 6588,Hasheem Thabeet,HOU,24.0,220.98,119.294696,Connecticut,Tanzania,2009,1,2,47,1.1,1.6,0.1,-14.8,0.073,0.17800000000000002,0.087,0.478,0.015,2010-11 6589,Hamed Haddadi,MEM,26.0,218.44,120.20188,None,Iran,Undrafted,Undrafted,Undrafted,31,2.4,2.2,0.2,11.2,0.18,0.295,0.204,0.55,0.042,2010-11 6590,Hamady Ndiaye,WAS,24.0,213.36,106.59411999999999,Rutgers,Senegal,2010,2,56,16,0.9,0.4,0.0,-22.9,0.028999999999999998,0.08800000000000001,0.076,0.6809999999999999,0.0,2010-11 6591,Hakim Warrick,PHX,28.0,205.74,99.336648,Syracuse,USA,2005,1,19,80,8.4,3.7,0.9,-4.1,0.073,0.17600000000000002,0.209,0.581,0.081,2010-11 6592,Ish Smith,MEM,22.0,182.88,79.3786,Wake Forest,USA,Undrafted,Undrafted,Undrafted,43,2.3,1.1,1.8,-4.4,0.018000000000000002,0.10099999999999999,0.159,0.406,0.268,2010-11 6593,James Posey,IND,34.0,203.2,98.429464,Xavier,USA,1999,1,18,49,4.9,3.0,0.7,-3.7,0.013000000000000001,0.193,0.146,0.485,0.068,2010-11 6594,Jared Dudley,PHX,25.0,200.66,102.0582,Boston College,USA,2007,1,22,82,10.6,3.9,1.3,-0.2,0.06,0.111,0.17,0.598,0.078,2010-11 6595,Jared Jeffries,NYK,29.0,210.82,108.86208,Indiana,USA,2002,1,11,42,1.8,2.8,0.9,11.0,0.121,0.11,0.09,0.375,0.079,2010-11 6596,DeMar DeRozan,TOR,21.0,200.66,99.79024,Southern California,USA,2009,1,9,82,17.2,3.8,1.8,-7.7,0.03,0.10400000000000001,0.23199999999999998,0.53,0.085,2010-11 6597,Joe Johnson,ATL,30.0,200.66,108.86208,Arkansas,USA,2001,1,10,72,18.2,4.0,4.7,0.6,0.027999999999999997,0.10800000000000001,0.264,0.517,0.23,2010-11 6598,Jodie Meeks,PHI,23.0,193.04,94.34713599999999,Kentucky,USA,2009,2,41,74,10.5,2.3,1.1,2.0,0.012,0.085,0.157,0.6,0.055999999999999994,2010-11 6599,Joakim Noah,CHI,26.0,210.82,105.23334399999999,Florida,USA,2007,1,9,48,11.7,10.4,2.2,5.8,0.13699999999999998,0.22699999999999998,0.165,0.579,0.105,2010-11 6600,Jerryd Bayless,TOR,22.0,190.5,90.7184,Arizona,USA,2008,1,11,71,9.2,2.3,3.7,-8.9,0.02,0.11,0.22399999999999998,0.536,0.294,2010-11 6601,Jerry Stackhouse,MIA,36.0,198.12,98.88305600000001,North Carolina,USA,1995,1,3,7,1.7,1.0,0.4,-4.4,0.02,0.15,0.161,0.39799999999999996,0.1,2010-11 6602,Jermaine O'Neal,BOS,32.0,210.82,115.66596000000001,None,USA,1996,1,17,24,5.4,3.7,0.5,3.9,0.076,0.161,0.17600000000000002,0.504,0.046,2010-11 6603,Jeremy Lin,GSW,22.0,190.5,90.7184,Harvard,USA,Undrafted,Undrafted,Undrafted,29,2.6,1.2,1.4,2.5,0.043,0.09699999999999999,0.155,0.45799999999999996,0.207,2010-11 6604,Jeremy Evans,UTA,23.0,205.74,88.904032,Western Kentucky,USA,2010,2,55,49,3.6,2.0,0.5,-2.8,0.1,0.163,0.14800000000000002,0.6779999999999999,0.09,2010-11 6605,Jeff Teague,ATL,23.0,187.96,81.64656,Wake Forest,USA,2009,1,19,70,5.2,1.5,2.0,-2.7,0.013999999999999999,0.113,0.19899999999999998,0.521,0.23600000000000002,2010-11 6606,Jeff Green,BOS,24.0,205.74,106.59411999999999,Georgetown,USA,2007,1,5,75,13.3,4.8,1.4,1.3,0.037000000000000005,0.138,0.195,0.5379999999999999,0.075,2010-11 6607,Jeff Foster,IND,34.0,210.82,113.398,Texas State,USA,1999,1,21,56,3.3,6.3,0.8,3.3,0.177,0.226,0.099,0.49700000000000005,0.073,2010-11 6608,Jeff Adrien,GSW,25.0,201.0,111.0,Connecticut,USA,Undrafted,Undrafted,Undrafted,23,2.5,2.5,0.4,-1.3,0.133,0.20600000000000002,0.163,0.457,0.075,2010-11 6609,Jawad Williams,CLE,28.0,205.74,102.0582,North Carolina,USA,Undrafted,Undrafted,Undrafted,26,4.0,1.8,0.8,-12.5,0.02,0.139,0.17,0.396,0.09300000000000001,2010-11 6610,Jason Williams,MEM,35.0,185.42,81.64656,Florida,USA,1998,1,7,27,2.0,1.1,1.9,9.9,0.012,0.10800000000000001,0.13,0.40299999999999997,0.244,2010-11 6611,Jason Thompson,SAC,24.0,210.82,113.398,Rider,USA,2008,1,12,75,8.8,6.1,1.2,-3.9,0.094,0.205,0.179,0.5329999999999999,0.078,2010-11 6612,Jason Terry,DAL,33.0,187.96,81.64656,Arizona,USA,1999,1,10,82,15.8,1.9,4.1,6.4,0.011000000000000001,0.057,0.245,0.545,0.223,2010-11 6613,Jason Smith,NOH,25.0,213.36,108.86208,Colorado State,USA,2007,1,20,77,4.3,3.1,0.5,0.9,0.09699999999999999,0.16399999999999998,0.16699999999999998,0.49,0.055,2010-11 6614,Jason Richardson,ORL,30.0,198.12,102.0582,Michigan State,USA,2001,1,5,80,15.6,4.1,1.8,5.3,0.028999999999999998,0.11,0.204,0.555,0.087,2010-11 6615,Jason Maxiell,DET,28.0,200.66,117.93392,Cincinnati,USA,2005,1,26,57,4.2,3.0,0.3,-6.5,0.087,0.14400000000000002,0.141,0.51,0.027999999999999997,2010-11 6616,Jason Kidd,DAL,38.0,193.04,95.25432,California,USA,1994,1,2,80,7.9,4.4,8.2,3.7,0.016,0.133,0.142,0.5,0.35700000000000004,2010-11 6617,Jason Kapono,PHI,30.0,203.2,97.52228000000001,UCLA,USA,2003,2,31,24,0.7,0.5,0.2,7.6,0.026000000000000002,0.078,0.114,0.27699999999999997,0.043,2010-11 6618,Jason Collins,ATL,32.0,213.36,115.66596000000001,Stanford,USA,2001,1,18,49,2.0,2.1,0.4,8.0,0.064,0.14,0.095,0.539,0.051,2010-11 6619,Jarron Collins,POR,32.0,210.82,112.94440800000001,Stanford,USA,2001,2,52,28,0.7,0.9,0.1,-0.7,0.084,0.068,0.08,0.374,0.018000000000000002,2010-11 6620,Jarrett Jack,NOH,27.0,190.5,89.357624,Georgia Tech,USA,2005,1,22,83,8.9,2.1,2.9,-5.6,0.013999999999999999,0.10800000000000001,0.22899999999999998,0.503,0.251,2010-11 6621,Greivis Vasquez,MEM,24.0,198.12,95.707912,Maryland,Venezuela,2010,1,28,70,3.6,1.0,2.2,-6.1,0.017,0.094,0.17,0.493,0.266,2010-11 6622,Greg Monroe,DET,21.0,210.82,113.398,Georgetown,USA,2010,1,7,80,9.4,7.5,1.3,-4.1,0.131,0.204,0.154,0.575,0.075,2010-11 6623,Jermaine Taylor,SAC,24.0,193.04,95.25432,Central Florida,USA,2009,2,32,34,6.6,1.8,0.9,-10.1,0.061,0.08800000000000001,0.226,0.535,0.105,2010-11 6624,Gordon Hayward,UTA,21.0,203.2,93.89354399999999,Butler,USA,2010,1,9,72,5.4,1.9,1.1,-8.1,0.04,0.102,0.153,0.578,0.106,2010-11 6625,Earl Clark,ORL,23.0,208.28,102.0582,Louisville,USA,2009,1,14,42,3.9,2.4,0.2,-4.6,0.092,0.153,0.201,0.456,0.035,2010-11 6626,Earl Boykins,MIL,35.0,165.1,60.327736,Eastern Michigan,USA,Undrafted,Undrafted,Undrafted,57,7.2,1.0,2.5,2.7,0.021,0.055,0.24,0.526,0.301,2010-11 6627,Earl Barron,POR,29.0,213.36,113.398,Memphis,USA,Undrafted,Undrafted,Undrafted,21,3.8,3.6,0.5,-6.8,0.125,0.18899999999999997,0.18600000000000003,0.361,0.054000000000000006,2010-11 6628,Dwyane Wade,MIA,29.0,193.04,99.79024,Marquette,USA,2003,1,5,76,25.5,6.4,4.6,10.6,0.055,0.14300000000000002,0.313,0.581,0.223,2010-11 6629,Dwight Howard,ORL,25.0,210.82,120.20188,None,USA,2004,1,1,78,22.9,14.1,1.4,8.6,0.128,0.301,0.272,0.616,0.067,2010-11 6630,Drew Gooden,MIL,29.0,208.28,113.398,Kansas,USA,2002,1,4,35,11.3,6.8,1.3,-3.7,0.09699999999999999,0.22899999999999998,0.248,0.48700000000000004,0.10800000000000001,2010-11 6631,Dorell Wright,GSW,25.0,205.74,92.98635999999999,None,USA,2004,1,19,82,16.4,5.3,3.0,-2.1,0.031,0.126,0.192,0.539,0.114,2010-11 6632,Donte Greene,SAC,23.0,210.82,102.511792,Syracuse,USA,2008,1,28,69,5.8,2.1,0.7,-3.7,0.047,0.099,0.182,0.48200000000000004,0.066,2010-11 6633,Dominique Jones,DAL,22.0,195.58,97.52228000000001,South Florida,USA,2010,1,25,18,2.3,1.4,1.1,-8.7,0.052000000000000005,0.165,0.222,0.4,0.24100000000000002,2010-11 6634,Dominic McGuire,CHA,25.0,205.74,99.79024,Fresno State,USA,2007,2,47,52,3.3,3.8,0.8,-5.7,0.09699999999999999,0.213,0.136,0.43700000000000006,0.092,2010-11 6635,Dirk Nowitzki,DAL,33.0,213.36,111.13004,None,Germany,1998,1,9,73,23.0,7.0,2.6,11.0,0.025,0.203,0.282,0.612,0.136,2010-11 6636,Earl Watson,UTA,32.0,185.42,88.45044,UCLA,USA,2001,2,39,80,4.3,2.3,3.5,-0.8,0.04,0.10400000000000001,0.136,0.5,0.26,2010-11 6637,Dexter Pittman,MIA,23.0,210.82,139.70633600000002,Texas,USA,2010,2,32,2,1.0,1.5,0.0,39.1,0.14300000000000002,0.182,0.20800000000000002,0.33299999999999996,0.0,2010-11 6638,Devin Ebanks,LAL,21.0,205.74,97.52228000000001,West Virginia,USA,2010,2,43,20,3.1,1.4,0.1,-14.1,0.129,0.102,0.237,0.507,0.033,2010-11 6639,Derrick Rose,CHI,22.0,190.5,86.18248,Memphis,USA,2008,1,1,81,25.0,4.1,7.7,8.3,0.032,0.09300000000000001,0.319,0.55,0.37200000000000005,2010-11 6640,Derrick Favors,UTA,19.0,208.28,111.58363200000001,Georgia Tech,USA,2010,1,3,78,6.8,5.3,0.5,-7.2,0.128,0.183,0.172,0.542,0.044000000000000004,2010-11 6641,Derrick Caracter,LAL,23.0,205.74,124.7378,Texas-El Paso,USA,2010,2,58,41,2.0,1.0,0.2,-8.4,0.109,0.122,0.196,0.532,0.054000000000000006,2010-11 6642,Derrick Brown,NYK,23.0,203.2,99.79024,Xavier,USA,2009,2,40,49,3.8,2.0,0.7,-4.3,0.087,0.122,0.153,0.588,0.09300000000000001,2010-11 6643,Deron Williams,NJN,27.0,190.5,94.800728,Illinois,USA,2005,1,3,65,20.1,4.0,10.3,-2.7,0.019,0.107,0.257,0.5660000000000001,0.44799999999999995,2010-11 6644,DeMarre Carroll,HOU,24.0,203.2,96.16150400000001,Missouri,USA,2009,1,27,12,0.8,0.7,0.3,1.1,0.043,0.146,0.11,0.38799999999999996,0.10300000000000001,2010-11 6645,Delonte West,BOS,27.0,190.5,81.64656,Saint Joseph's,USA,2004,1,24,24,5.6,1.5,2.7,-9.2,0.018000000000000002,0.084,0.174,0.5329999999999999,0.268,2010-11 6646,DeShawn Stevenson,DAL,30.0,195.58,98.88305600000001,None,USA,2000,1,23,72,5.3,1.5,1.1,3.2,0.021,0.083,0.162,0.5489999999999999,0.10099999999999999,2010-11 6647,DeSagana Diop,CHA,29.0,213.36,127.00576000000001,None,Senegal,2001,1,8,16,1.3,2.5,0.4,-8.2,0.078,0.172,0.10099999999999999,0.34700000000000003,0.063,2010-11 6648,Grant Hill,PHX,38.0,203.2,102.0582,Duke,USA,1994,1,3,80,13.2,4.2,2.5,1.5,0.037000000000000005,0.122,0.201,0.563,0.126,2010-11 6649,Devin Harris,UTA,28.0,190.5,86.18248,Wisconsin,USA,2004,1,5,71,15.2,2.4,7.1,-5.0,0.009000000000000001,0.08199999999999999,0.247,0.545,0.373,2010-11 6650,Ed Davis,TOR,22.0,208.28,97.52228000000001,North Carolina,USA,2010,1,13,65,7.7,7.1,0.6,-9.8,0.121,0.21899999999999997,0.134,0.583,0.039,2010-11 6651,Derek Fisher,LAL,36.0,185.42,95.25432,Arkansas-Little Rock,USA,1996,1,24,82,6.8,1.9,2.7,9.3,0.006999999999999999,0.067,0.127,0.486,0.134,2010-11 6652,Eduardo Najera,CHA,34.0,203.2,106.59411999999999,Oklahoma,Mexico,2000,2,38,31,2.2,1.4,0.6,1.8,0.043,0.091,0.114,0.449,0.08900000000000001,2010-11 6653,Eddie House,MIA,33.0,185.42,86.18248,Arizona State,USA,2000,2,37,56,6.5,1.6,1.1,5.3,0.011000000000000001,0.096,0.177,0.535,0.10400000000000001,2010-11 6654,Glen Davis,BOS,25.0,205.74,131.088088,Louisiana State,USA,2007,2,35,78,11.7,5.4,1.2,3.6,0.057,0.16699999999999998,0.212,0.499,0.069,2010-11 6655,Gilbert Arenas,ORL,29.0,193.04,97.52228000000001,Arizona,USA,2001,2,30,70,10.8,2.7,3.9,-0.7,0.013999999999999999,0.10800000000000001,0.24600000000000002,0.47100000000000003,0.256,2010-11 6656,Gerald Henderson,CHA,23.0,193.04,97.52228000000001,Duke,USA,2009,1,12,68,9.6,3.0,1.5,-2.6,0.035,0.115,0.201,0.509,0.106,2010-11 6657,George Hill,SAS,25.0,187.96,81.64656,Indiana Purdue-Indianapolis,USA,2008,1,26,76,11.6,2.6,2.5,7.3,0.013999999999999999,0.09300000000000001,0.185,0.588,0.142,2010-11 6658,Gary Neal,SAS,26.0,193.04,95.25432,Towson,USA,Undrafted,Undrafted,Undrafted,80,9.8,2.5,1.2,3.8,0.015,0.121,0.20800000000000002,0.578,0.094,2010-11 6659,Gary Forbes,DEN,26.0,200.66,99.79024,Massachusetts,Panama,Undrafted,Undrafted,Undrafted,63,5.2,1.8,0.8,-2.1,0.040999999999999995,0.127,0.193,0.524,0.094,2010-11 6660,Garrett Temple,CHA,25.0,198.12,88.45044,Louisiana State,USA,Undrafted,Undrafted,Undrafted,24,2.4,1.0,1.3,-6.6,0.005,0.122,0.205,0.37799999999999995,0.209,2010-11 6661,Garret Siler,PHX,24.0,210.82,138.34556,Augusta State,USA,Undrafted,Undrafted,Undrafted,21,2.1,1.3,0.1,-6.1,0.16699999999999998,0.15,0.204,0.5529999999999999,0.040999999999999995,2010-11 6662,Gani Lawal,PHX,22.0,205.74,106.140528,Georgia Tech,USA,2010,2,46,1,0.0,0.0,0.0,-78.3,0.0,0.0,0.0,0.0,0.0,2010-11 6663,Francisco Garcia,SAC,29.0,200.66,88.45044,Louisville,Dominican Republic,2005,1,23,58,9.7,2.3,1.2,-5.6,0.019,0.09300000000000001,0.172,0.551,0.079,2010-11 6664,Gerald Wallace,POR,28.0,200.66,99.79024,Alabama,USA,2001,1,25,71,15.7,8.0,2.4,3.0,0.049,0.20600000000000002,0.203,0.5479999999999999,0.10800000000000001,2010-11 6665,Fabricio Oberto,POR,36.0,208.28,111.13004,None,Argentina,Undrafted,Undrafted,Undrafted,5,1.4,1.4,0.0,-19.0,0.073,0.098,0.086,0.595,0.0,2010-11 6666,Ekpe Udoh,GSW,24.0,208.28,111.13004,Baylor,USA,2010,1,6,58,4.1,3.1,0.7,6.5,0.087,0.11199999999999999,0.13,0.47200000000000003,0.051,2010-11 6667,Francisco Elson,UTA,35.0,213.36,108.86208,California,Netherlands,1999,2,41,62,2.2,1.9,0.5,-4.5,0.071,0.179,0.122,0.529,0.09,2010-11 6668,Elton Brand,PHI,32.0,205.74,115.212368,Duke,USA,1999,1,1,81,15.0,8.3,1.5,1.4,0.09699999999999999,0.18100000000000002,0.19699999999999998,0.5529999999999999,0.07,2010-11 6669,Emeka Okafor,NOH,28.0,208.28,115.66596000000001,Connecticut,USA,2004,1,2,72,10.3,9.5,0.6,3.9,0.121,0.243,0.158,0.584,0.028999999999999998,2010-11 6670,Eric Bledsoe,LAC,21.0,185.42,88.45044,Kentucky,USA,2010,1,18,81,6.7,2.8,3.6,-7.0,0.045,0.098,0.179,0.499,0.254,2010-11 6671,Eric Gordon,LAC,22.0,190.5,97.52228000000001,Indiana,USA,2008,1,7,56,22.3,2.9,4.4,-1.7,0.025,0.064,0.262,0.5660000000000001,0.19699999999999998,2010-11 6672,Goran Dragic,HOU,25.0,190.5,86.18248,None,Slovenia,2008,2,45,70,7.5,2.0,2.9,-6.7,0.032,0.1,0.228,0.524,0.29100000000000004,2010-11 6673,Erick Dampier,MIA,35.0,210.82,120.20188,Mississippi State,USA,1996,1,10,51,2.5,3.5,0.4,6.8,0.083,0.16399999999999998,0.081,0.591,0.039,2010-11 6674,Ersan Ilyasova,MIL,24.0,208.28,106.59411999999999,None,Turkey,2005,2,36,60,9.5,6.1,0.9,1.1,0.078,0.21100000000000002,0.18899999999999997,0.516,0.064,2010-11 6675,Etan Thomas,ATL,33.0,208.28,117.93392,Syracuse,USA,2000,1,12,13,2.5,1.8,0.2,-19.4,0.076,0.262,0.177,0.58,0.05,2010-11 6676,Eric Maynor,OKC,24.0,190.5,79.3786,Virginia Commonwealth,USA,2009,1,20,82,4.2,1.5,2.9,8.4,0.027000000000000003,0.092,0.16899999999999998,0.485,0.313,2010-11 6677,Evan Turner,PHI,22.0,200.66,92.98635999999999,Ohio State,USA,2010,1,2,78,7.2,3.9,2.0,-0.2,0.027000000000000003,0.17,0.17,0.484,0.13699999999999998,2010-11 6678,Andre Miller,DEN,36.0,187.96,90.7184,Utah,USA,1999,1,8,66,9.7,3.3,6.7,4.8,0.037000000000000005,0.106,0.20199999999999999,0.51,0.365,2011-12 6679,Chris Paul,LAC,27.0,182.88,79.3786,Wake Forest,USA,2005,1,4,60,19.8,3.6,9.1,6.6,0.023,0.096,0.242,0.581,0.413,2011-12 6680,Chris Kaman,NOH,30.0,213.36,120.20188,Central Michigan,USA,2003,1,6,47,13.1,7.7,2.1,-2.6,0.08,0.231,0.265,0.478,0.134,2011-12 6681,Chris Johnson,NOH,26.0,210.82,95.25432,Louisiana State,USA,Undrafted,Undrafted,Undrafted,27,2.0,1.5,0.1,-11.1,0.09699999999999999,0.159,0.161,0.557,0.017,2011-12 6682,Chris Duhon,ORL,29.0,185.42,86.18248,Duke,USA,2004,2,38,63,3.8,1.6,2.4,0.7,0.013999999999999999,0.084,0.115,0.5579999999999999,0.20800000000000002,2011-12 6683,Chris Bosh,MIA,28.0,210.82,106.59411999999999,Georgia Tech,USA,2003,1,4,57,18.0,7.9,1.8,10.8,0.06,0.19899999999999998,0.243,0.551,0.086,2011-12 6684,AJ Price,IND,25.0,187.96,83.91452,Connecticut,USA,2009,2,52,44,3.9,1.4,2.0,0.5,0.024,0.10400000000000001,0.175,0.45399999999999996,0.264,2011-12 6685,Aaron Gray,TOR,27.0,213.36,122.46983999999999,Pittsburgh,USA,2007,2,49,49,3.9,5.7,0.6,-7.9,0.11599999999999999,0.293,0.13699999999999998,0.526,0.055,2011-12 6686,Al Harrington,DEN,32.0,205.74,113.398,None,USA,1998,1,25,64,14.2,6.1,1.4,4.8,0.049,0.20600000000000002,0.245,0.535,0.083,2011-12 6687,Al Horford,ATL,26.0,208.28,113.398,Florida,Dominican Republic,2007,1,3,11,12.4,7.0,2.2,6.8,0.08800000000000001,0.179,0.17800000000000002,0.585,0.113,2011-12 6688,Alan Anderson,TOR,29.0,198.12,99.79024,Michigan State,USA,Undrafted,Undrafted,Undrafted,17,9.6,2.0,1.5,-1.5,0.02,0.063,0.191,0.519,0.1,2011-12 6689,Al-Farouq Aminu,NOH,21.0,205.74,97.52228000000001,Wake Forest,USA,2010,1,8,66,6.0,4.7,1.0,-0.2,0.079,0.166,0.163,0.48100000000000004,0.07400000000000001,2011-12 6690,Alec Burks,UTA,20.0,198.12,91.625584,Colorado,USA,2011,1,12,59,7.2,2.2,0.9,-2.3,0.067,0.091,0.218,0.506,0.1,2011-12 6691,Alonzo Gee,CLE,25.0,198.12,99.336648,Alabama,USA,Undrafted,Undrafted,Undrafted,63,10.6,5.1,1.8,-6.1,0.061,0.142,0.187,0.516,0.109,2011-12 6692,Amar'e Stoudemire,NYK,29.0,210.82,117.93392,None,USA,2002,1,9,47,17.5,7.8,1.1,-2.7,0.078,0.19699999999999998,0.251,0.541,0.063,2011-12 6693,Anderson Varejao,CLE,29.0,210.82,117.93392,None,Brazil,2004,2,30,25,10.8,11.5,1.7,-1.7,0.152,0.273,0.166,0.542,0.086,2011-12 6694,Andray Blatche,WAS,25.0,210.82,117.93392,None,USA,2005,2,49,26,8.5,5.8,1.1,-13.0,0.07,0.21600000000000003,0.217,0.415,0.076,2011-12 6695,Andre Emmett,NJN,29.0,195.58,104.32616,Texas Tech,USA,2004,2,35,6,2.2,1.0,0.2,-1.9,0.07400000000000001,0.087,0.146,0.618,0.036000000000000004,2011-12 6696,Andrea Bargnani,TOR,26.0,213.36,116.119552,None,Italy,2006,1,1,31,19.5,5.5,2.0,-1.0,0.028999999999999998,0.16699999999999998,0.293,0.5379999999999999,0.113,2011-12 6697,Chris Singleton,WAS,22.0,203.2,104.32616,Florida State,USA,2011,1,18,66,4.6,3.5,0.7,-4.7,0.033,0.151,0.11599999999999999,0.462,0.051,2011-12 6698,Andre Iguodala,PHI,28.0,198.12,93.89354399999999,Arizona,USA,2004,1,9,62,12.4,6.1,5.5,6.3,0.027999999999999997,0.162,0.17800000000000002,0.537,0.24100000000000002,2011-12 6699,Al Jefferson,UTA,27.0,208.28,131.088088,None,USA,2004,1,15,61,19.2,9.6,2.2,3.2,0.07400000000000001,0.248,0.261,0.52,0.113,2011-12 6700,Amir Johnson,TOR,25.0,205.74,95.25432,None,USA,2005,2,56,64,7.1,6.4,1.2,0.7,0.115,0.18899999999999997,0.14300000000000002,0.6,0.085,2011-12 6701,Craig Smith,POR,28.0,200.66,120.20188,Boston College,USA,2006,2,36,47,3.3,2.3,0.4,-9.7,0.081,0.19699999999999998,0.158,0.556,0.067,2011-12 6702,Chris Wright,GSW,23.0,203.2,102.511792,Dayton,USA,Undrafted,Undrafted,Undrafted,24,2.9,1.9,0.2,-4.4,0.102,0.151,0.156,0.597,0.035,2011-12 6703,Danny Granger,IND,29.0,203.2,103.418976,New Mexico,USA,2005,1,17,62,18.7,5.0,1.8,7.2,0.044000000000000004,0.12,0.257,0.542,0.091,2011-12 6704,Danilo Gallinari,DEN,23.0,208.28,102.0582,None,Italy,2008,1,6,43,14.6,4.7,2.7,7.9,0.026000000000000002,0.14300000000000002,0.209,0.563,0.131,2011-12 6705,Daniel Orton,ORL,21.0,208.28,115.66596000000001,Kentucky,USA,2010,1,29,16,2.8,2.4,0.3,-11.5,0.109,0.13,0.12,0.5489999999999999,0.047,2011-12 6706,Daniel Gibson,CLE,26.0,187.96,90.7184,Texas,USA,2006,2,42,35,7.5,2.9,2.2,-3.2,0.013000000000000001,0.113,0.151,0.493,0.136,2011-12 6707,Dan Gadzuric,NYK,34.0,210.82,108.86208,UCLA,Netherlands,2002,2,33,2,0.0,2.5,0.0,-9.0,0.091,0.444,0.132,0.0,0.0,2011-12 6708,Damion James,NJN,24.0,200.66,102.0582,Texas,USA,2010,1,24,7,4.9,4.7,0.4,-8.6,0.045,0.16699999999999998,0.139,0.42200000000000004,0.032,2011-12 6709,Damien Wilkins,DET,32.0,198.12,102.0582,Georgia,USA,Undrafted,Undrafted,Undrafted,60,3.2,1.7,0.7,-2.4,0.027999999999999997,0.10099999999999999,0.126,0.445,0.079,2011-12 6710,Dahntay Jones,IND,31.0,198.12,102.0582,Duke,USA,2003,1,20,65,5.3,1.8,1.0,-4.0,0.024,0.106,0.162,0.5329999999999999,0.106,2011-12 6711,Daequan Cook,OKC,25.0,195.58,95.25432,Ohio State,USA,2007,1,21,57,5.5,2.1,0.3,6.4,0.013999999999999999,0.125,0.15,0.509,0.024,2011-12 6712,DaJuan Summers,NOH,24.0,203.2,108.86208,Georgetown,USA,2009,2,35,15,4.5,1.5,0.7,-8.3,0.045,0.094,0.17300000000000001,0.493,0.083,2011-12 6713,DJ White,CHA,25.0,205.74,106.59411999999999,Indiana,USA,2008,1,29,58,6.8,3.6,0.8,-16.1,0.05,0.18,0.179,0.516,0.08,2011-12 6714,D.J. Kennedy,CLE,22.0,195.58,97.068688,St. John's (NY),USA,Undrafted,Undrafted,Undrafted,2,6.0,3.5,1.5,-32.7,0.018000000000000002,0.111,0.13,0.466,0.08800000000000001,2011-12 6715,D.J. Augustin,CHA,24.0,182.88,81.64656,Texas,USA,2008,1,9,48,11.1,2.3,6.4,-14.9,0.019,0.07,0.21100000000000002,0.493,0.37,2011-12 6716,Craig Brackins,PHI,24.0,208.28,104.32616,Iowa State,USA,2010,1,21,14,1.6,1.1,0.6,-32.3,0.054000000000000006,0.128,0.193,0.325,0.174,2011-12 6717,Courtney Lee,HOU,26.0,195.58,90.7184,Western Kentucky,USA,2008,1,22,58,11.4,2.7,1.5,1.4,0.017,0.091,0.177,0.534,0.079,2011-12 6718,Courtney Fortson,HOU,24.0,180.34,83.91452,Arkansas,USA,Undrafted,Undrafted,Undrafted,10,3.5,1.5,1.0,-22.6,0.061,0.107,0.217,0.45299999999999996,0.222,2011-12 6719,Cory Joseph,SAS,20.0,190.5,83.91452,Texas,Canada,2011,1,29,29,2.0,0.9,1.2,-9.2,0.02,0.094,0.153,0.374,0.18899999999999997,2011-12 6720,Cory Higgins,CHA,23.0,195.58,81.64656,Colorado,USA,Undrafted,Undrafted,Undrafted,38,3.9,0.9,0.9,-15.1,0.02,0.081,0.251,0.402,0.159,2011-12 6721,Corey Maggette,CHA,32.0,198.12,102.0582,Duke,USA,1999,1,13,32,15.0,3.9,1.2,-15.7,0.025,0.138,0.267,0.517,0.08199999999999999,2011-12 6722,Corey Brewer,DEN,26.0,205.74,85.275296,Florida,USA,2007,1,7,59,8.9,2.5,1.5,1.7,0.039,0.094,0.196,0.505,0.10300000000000001,2011-12 6723,Cole Aldrich,OKC,23.0,210.82,108.86208,Kansas,USA,2010,1,11,26,2.2,1.8,0.1,-6.5,0.08900000000000001,0.21899999999999997,0.157,0.5920000000000001,0.034,2011-12 6724,Chuck Hayes,SAC,29.0,198.12,113.398,Kentucky,USA,Undrafted,Undrafted,Undrafted,54,3.2,4.3,1.4,-6.7,0.073,0.179,0.10300000000000001,0.45899999999999996,0.109,2011-12 6725,Christian Eyenga,LAL,23.0,200.66,95.25432,None,Congo,2009,1,30,7,2.4,2.0,0.7,-17.2,0.04,0.10800000000000001,0.14300000000000002,0.298,0.09300000000000001,2011-12 6726,Chris Wilcox,BOS,29.0,208.28,106.59411999999999,Maryland,USA,2002,1,8,28,5.4,4.4,0.4,-2.8,0.09699999999999999,0.19899999999999998,0.15,0.612,0.042,2011-12 6727,Andres Nocioni,PHI,32.0,200.66,102.0582,None,Argentina,Undrafted,Undrafted,Undrafted,11,1.5,1.3,0.1,-14.4,0.019,0.255,0.25,0.342,0.033,2011-12 6728,Brandan Wright,DAL,24.0,208.28,95.25432,North Carolina,USA,2007,1,8,49,6.9,3.6,0.3,2.8,0.092,0.154,0.172,0.632,0.028999999999999998,2011-12 6729,Andrew Bynum,LAL,24.0,213.36,129.27372,None,USA,2005,1,10,60,18.7,11.8,1.4,2.3,0.107,0.258,0.237,0.594,0.07400000000000001,2011-12 6730,Brendan Haywood,DAL,32.0,213.36,119.294696,North Carolina,USA,2001,1,20,54,5.2,6.0,0.4,2.6,0.136,0.174,0.128,0.52,0.025,2011-12 6731,Brian Cardinal,DAL,35.0,203.2,108.86208,Purdue,USA,2000,2,44,44,1.0,0.8,0.4,-7.7,0.016,0.121,0.11,0.373,0.094,2011-12 6732,Brian Cook,WAS,31.0,205.74,113.398,Illinois,USA,2003,1,24,32,2.5,2.0,0.3,-3.1,0.040999999999999995,0.209,0.18600000000000003,0.396,0.055999999999999994,2011-12 6733,Brian Scalabrine,CHI,34.0,205.74,106.59411999999999,Southern California,USA,2001,2,34,28,1.1,0.8,0.5,9.1,0.07,0.134,0.155,0.49,0.195,2011-12 6734,Brian Skinner,MEM,36.0,205.74,115.66596000000001,Baylor,USA,1998,1,22,1,0.0,0.0,0.0,-88.4,0.0,0.0,0.1,0.0,0.0,2011-12 6735,Brook Lopez,NJN,24.0,213.36,120.20188,Stanford,USA,2008,1,10,5,19.2,3.6,1.2,-12.1,0.063,0.08,0.317,0.527,0.094,2011-12 6736,Byron Mullens,CHA,23.0,213.36,124.7378,Ohio State,USA,2009,1,24,65,9.3,5.0,0.9,-12.9,0.07400000000000001,0.18600000000000003,0.225,0.473,0.073,2011-12 6737,C.J. Watson,CHI,28.0,187.96,79.3786,Tennessee,USA,Undrafted,Undrafted,Undrafted,49,9.7,2.1,4.1,1.9,0.02,0.081,0.228,0.491,0.28300000000000003,2011-12 6738,CJ Miles,UTA,25.0,198.12,100.697424,None,USA,2005,2,34,56,9.1,2.1,1.2,0.2,0.027000000000000003,0.091,0.223,0.484,0.096,2011-12 6739,Carl Landry,NOH,28.0,205.74,112.490816,Purdue,USA,2007,2,31,41,12.5,5.2,0.9,-3.8,0.095,0.17,0.24100000000000002,0.5770000000000001,0.071,2011-12 6740,Brandon Rush,GSW,26.0,198.12,102.0582,Kansas,USA,2008,1,13,65,9.8,3.9,1.4,-1.7,0.023,0.14400000000000002,0.156,0.628,0.081,2011-12 6741,Carldell Johnson,NOH,29.0,177.8,81.64656,Alabama-Birmingham,USA,Undrafted,Undrafted,Undrafted,15,1.8,0.6,1.5,2.3,0.011000000000000001,0.078,0.182,0.37200000000000005,0.314,2011-12 6742,Carlos Delfino,MIL,29.0,198.12,104.32616,None,Argentina,2003,1,25,54,9.0,3.9,2.3,-6.3,0.013999999999999999,0.146,0.157,0.515,0.11800000000000001,2011-12 6743,Carmelo Anthony,NYK,28.0,203.2,104.32616,Syracuse,USA,2003,1,3,55,22.6,6.3,3.6,2.4,0.053,0.156,0.316,0.525,0.209,2011-12 6744,Caron Butler,LAC,32.0,200.66,103.418976,Connecticut,USA,2002,1,10,63,12.0,3.7,1.2,7.0,0.027999999999999997,0.11599999999999999,0.204,0.501,0.065,2011-12 6745,Cartier Martin,WAS,27.0,200.66,99.79024,Kansas State,USA,Undrafted,Undrafted,Undrafted,17,9.3,3.4,0.6,3.1,0.037000000000000005,0.135,0.183,0.555,0.040999999999999995,2011-12 6746,Chandler Parsons,HOU,23.0,205.74,102.965384,Florida,USA,2011,2,38,63,9.5,4.8,2.1,2.7,0.057999999999999996,0.136,0.166,0.513,0.114,2011-12 6747,Channing Frye,PHX,29.0,210.82,111.13004,Arizona,USA,2005,1,8,64,10.5,5.9,1.4,4.3,0.051,0.2,0.195,0.519,0.077,2011-12 6748,Charles Jenkins,GSW,23.0,190.5,99.79024,Hofstra,USA,2011,2,44,51,5.8,1.3,3.3,-11.6,0.01,0.076,0.187,0.48200000000000004,0.306,2011-12 6749,Chase Budinger,HOU,24.0,200.66,98.88305600000001,Arizona,USA,2009,2,44,58,9.6,3.7,1.3,0.0,0.033,0.16,0.19399999999999998,0.556,0.09300000000000001,2011-12 6750,Danny Green,SAS,25.0,198.12,95.25432,North Carolina,USA,2009,2,46,66,9.1,3.5,1.3,8.4,0.04,0.128,0.174,0.579,0.086,2011-12 6751,Charlie Villanueva,DET,27.0,210.82,105.23334399999999,Connecticut,USA,2005,1,7,13,7.0,3.7,0.5,-13.8,0.051,0.252,0.24600000000000002,0.484,0.067,2011-12 6752,Carlos Boozer,CHI,30.0,205.74,120.655472,Duke,USA,2002,2,34,66,15.0,8.5,1.9,5.8,0.068,0.259,0.237,0.5489999999999999,0.11199999999999999,2011-12 6753,Brandon Knight,DET,20.0,190.5,85.728888,Kentucky,USA,2011,1,8,66,12.8,3.2,3.8,-7.2,0.018000000000000002,0.10300000000000001,0.217,0.511,0.20199999999999999,2011-12 6754,Brandon Jennings,MIL,22.0,185.42,76.657048,None,USA,2009,1,10,66,19.1,3.4,5.5,-2.3,0.022000000000000002,0.087,0.258,0.514,0.264,2011-12 6755,Brandon Bass,BOS,27.0,203.2,113.398,Louisiana State,USA,2005,2,33,59,12.5,6.2,0.9,4.9,0.064,0.16399999999999998,0.19699999999999998,0.524,0.05,2011-12 6756,Andrew Goudelock,LAL,23.0,190.5,90.7184,College of Charleston,USA,2011,2,46,40,4.4,0.8,0.5,-4.2,0.013999999999999999,0.068,0.228,0.488,0.085,2011-12 6757,Andris Biedrins,GSW,26.0,213.36,109.769264,None,Latvia,2004,1,11,47,1.7,3.7,0.3,-6.6,0.07,0.205,0.053,0.581,0.028999999999999998,2011-12 6758,Antawn Jamison,CLE,36.0,205.74,106.59411999999999,North Carolina,USA,1998,1,4,65,17.2,6.3,2.0,-7.8,0.061,0.158,0.258,0.48100000000000004,0.11,2011-12 6759,Anthony Carter,TOR,37.0,185.42,86.18248,Hawaii,USA,Undrafted,Undrafted,Undrafted,24,2.0,1.4,1.4,-8.9,0.028999999999999998,0.151,0.165,0.409,0.29600000000000004,2011-12 6760,Anthony Morrow,NJN,26.0,195.58,95.25432,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,62,12.0,2.0,1.0,-5.9,0.021,0.07200000000000001,0.214,0.531,0.065,2011-12 6761,Anthony Parker,CLE,37.0,198.12,95.25432,Bradley,USA,1997,1,21,51,7.2,2.7,2.4,-10.0,0.009000000000000001,0.121,0.14,0.523,0.14400000000000002,2011-12 6762,Anthony Randolph,MIN,22.0,210.82,102.0582,Louisiana State,USA,2008,1,14,34,7.4,3.6,0.6,-3.2,0.092,0.168,0.239,0.532,0.066,2011-12 6763,Anthony Tolliver,MIN,27.0,203.2,108.86208,Creighton,USA,Undrafted,Undrafted,Undrafted,51,4.1,3.0,0.4,-1.7,0.064,0.129,0.12300000000000001,0.504,0.04,2011-12 6764,Armon Johnson,NJN,23.0,190.5,88.45044,Nevada,USA,2010,2,34,9,5.2,1.4,1.2,-5.8,0.008,0.10800000000000001,0.184,0.515,0.16699999999999998,2011-12 6765,Arron Afflalo,DEN,26.0,195.58,97.52228000000001,UCLA,USA,2007,1,27,62,15.2,3.2,2.4,1.4,0.023,0.085,0.192,0.584,0.115,2011-12 6766,Austin Daye,DET,24.0,210.82,90.7184,Gonzaga,USA,2009,1,15,41,4.7,2.2,0.8,-13.1,0.025,0.154,0.21600000000000003,0.39399999999999996,0.1,2011-12 6767,Avery Bradley,BOS,21.0,187.96,81.64656,Texas,USA,2010,1,19,64,7.6,1.8,1.4,5.6,0.032,0.066,0.183,0.555,0.109,2011-12 6768,Baron Davis,NYK,33.0,190.5,96.16150400000001,UCLA,USA,1999,1,3,29,6.1,1.9,4.7,4.0,0.027000000000000003,0.084,0.207,0.457,0.34700000000000003,2011-12 6769,Ben Gordon,DET,29.0,190.5,90.7184,Connecticut,USA,2004,1,3,52,12.5,2.3,2.4,-8.3,0.012,0.099,0.233,0.5489999999999999,0.172,2011-12 6770,Ben Uzoh,TOR,24.0,190.5,92.98635999999999,Tulsa,USA,Undrafted,Undrafted,Undrafted,18,4.5,3.7,3.4,0.9,0.061,0.139,0.162,0.377,0.28,2011-12 6771,Ben Wallace,DET,37.0,205.74,108.86208,Virginia Union,USA,Undrafted,Undrafted,Undrafted,62,1.4,4.3,0.7,-5.4,0.09300000000000001,0.242,0.069,0.39799999999999996,0.073,2011-12 6772,Beno Udrih,MIL,29.0,190.5,92.079176,None,Slovenia,2004,1,28,59,5.9,1.7,3.8,10.1,0.027000000000000003,0.076,0.18,0.488,0.317,2011-12 6773,Bismack Biyombo,CHA,19.0,205.74,111.13004,None,Democratic Republic of the Congo,2011,1,7,63,5.2,5.8,0.4,-17.5,0.087,0.201,0.13,0.48,0.032,2011-12 6774,Blake Ahearn,UTA,28.0,187.96,86.18248,Missouri State,USA,Undrafted,Undrafted,Undrafted,4,2.5,0.5,0.3,-20.1,0.0,0.083,0.281,0.35700000000000004,0.063,2011-12 6775,Blake Griffin,LAC,23.0,208.28,113.851592,Oklahoma,USA,2009,1,1,66,20.7,10.9,3.2,6.9,0.107,0.244,0.266,0.557,0.156,2011-12 6776,Bobby Simmons,LAC,32.0,198.12,106.59411999999999,DePaul,USA,2001,2,41,28,2.9,2.0,0.4,-0.5,0.047,0.121,0.113,0.43,0.039,2011-12 6777,Boris Diaw,SAS,30.0,203.2,106.59411999999999,None,France,2003,1,21,57,6.4,4.9,3.6,-5.9,0.054000000000000006,0.16699999999999998,0.154,0.498,0.22399999999999998,2011-12 6778,Brad Miller,MIN,36.0,213.36,118.38751200000002,Purdue,USA,Undrafted,Undrafted,Undrafted,15,2.3,1.3,1.6,-6.3,0.028999999999999998,0.122,0.13699999999999998,0.542,0.255,2011-12 6779,Andrew Bogut,MIL,27.0,213.36,117.93392,Utah,Australia,2005,1,1,12,11.3,8.3,2.6,3.4,0.066,0.24600000000000002,0.21600000000000003,0.465,0.14800000000000002,2011-12 6780,Dante Cunningham,MEM,25.0,203.2,104.32616,Villanova,USA,2009,2,33,64,5.2,3.8,0.6,-1.4,0.094,0.163,0.13699999999999998,0.5379999999999999,0.054000000000000006,2011-12 6781,Ersan Ilyasova,MIL,25.0,208.28,106.59411999999999,None,Turkey,2005,2,36,60,13.0,8.8,1.2,-0.1,0.12300000000000001,0.228,0.19699999999999998,0.5770000000000001,0.069,2011-12 6782,Darius Morris,LAL,21.0,193.04,86.18248,Michigan,USA,2011,2,41,19,2.4,0.8,1.1,-13.7,0.013999999999999999,0.09,0.19,0.5,0.221,2011-12 6783,Hamed Haddadi,MEM,27.0,218.44,120.20188,None,Iran,Undrafted,Undrafted,Undrafted,35,2.0,2.0,0.2,6.4,0.154,0.225,0.171,0.589,0.064,2011-12 6784,Hamady Ndiaye,WAS,25.0,213.36,106.59411999999999,Rutgers,Senegal,2010,2,56,3,0.0,0.0,0.0,114.3,0.0,0.0,0.111,0.0,0.0,2011-12 6785,Hakim Warrick,PHX,29.0,205.74,99.336648,Syracuse,USA,2005,1,19,35,6.4,2.6,0.9,-12.4,0.068,0.142,0.237,0.503,0.111,2011-12 6786,Gustavo Ayon,NOH,27.0,208.28,113.398,None,Mexico,Undrafted,Undrafted,Undrafted,54,5.9,4.9,1.4,-1.8,0.09699999999999999,0.188,0.145,0.552,0.109,2011-12 6787,Greivis Vasquez,NOH,25.0,198.12,95.707912,Maryland,Venezuela,2010,1,28,66,8.9,2.6,5.4,-0.4,0.017,0.10300000000000001,0.2,0.513,0.349,2011-12 6788,Greg Stiemsma,BOS,26.0,210.82,117.93392,Wisconsin,USA,Undrafted,Undrafted,Undrafted,55,2.9,3.2,0.5,-0.9,0.075,0.188,0.109,0.579,0.061,2011-12 6789,Greg Smith,HOU,21.0,208.28,113.398,Fresno State,USA,Undrafted,Undrafted,Undrafted,8,1.8,2.5,0.1,-2.9,0.07,0.231,0.084,0.636,0.026000000000000002,2011-12 6790,Greg Monroe,DET,22.0,210.82,113.398,Georgetown,USA,2010,1,7,66,15.4,9.7,2.3,-6.7,0.135,0.24100000000000002,0.23399999999999999,0.563,0.13,2011-12 6791,Grant Hill,PHX,39.0,203.2,102.0582,Duke,USA,1994,1,3,49,10.2,3.5,2.2,3.3,0.025,0.11,0.18600000000000003,0.5,0.11599999999999999,2011-12 6792,Gordon Hayward,UTA,22.0,203.2,95.25432,Butler,USA,2010,1,9,66,11.8,3.5,3.1,0.8,0.033,0.095,0.17800000000000002,0.568,0.155,2011-12 6793,Hasheem Thabeet,POR,25.0,220.98,119.294696,Connecticut,Tanzania,2009,1,2,20,1.8,2.1,0.0,-32.2,0.13,0.20800000000000002,0.128,0.5870000000000001,0.0,2011-12 6794,Goran Dragic,HOU,26.0,190.5,86.18248,None,Slovenia,2008,2,45,66,11.7,2.5,5.3,2.3,0.035,0.079,0.22,0.5670000000000001,0.316,2011-12 6795,Gilbert Arenas,MEM,30.0,193.04,97.52228000000001,Arizona,USA,2001,2,30,17,4.2,1.1,1.1,5.6,0.01,0.08800000000000001,0.171,0.526,0.13699999999999998,2011-12 6796,Gerald Wallace,NJN,29.0,200.66,99.79024,Alabama,USA,2001,1,25,58,13.8,6.7,2.8,2.7,0.047,0.165,0.185,0.547,0.129,2011-12 6797,Gerald Henderson,CHA,24.0,195.58,97.52228000000001,Duke,USA,2009,1,12,55,15.1,4.1,2.3,-14.1,0.039,0.10400000000000001,0.228,0.511,0.13,2011-12 6798,Gerald Green,NJN,26.0,203.2,90.7184,None,USA,2005,1,18,31,12.9,3.5,1.1,-1.1,0.022000000000000002,0.136,0.23199999999999998,0.574,0.077,2011-12 6799,George Hill,IND,26.0,187.96,81.64656,Indiana Purdue-Indianapolis,USA,2008,1,26,50,9.6,3.0,2.9,3.0,0.027999999999999997,0.10300000000000001,0.17300000000000001,0.557,0.19399999999999998,2011-12 6800,Gary Neal,SAS,27.0,193.04,95.25432,Towson,USA,Undrafted,Undrafted,Undrafted,56,9.9,2.1,2.1,5.6,0.012,0.1,0.21899999999999997,0.542,0.15,2011-12 6801,Gary Forbes,TOR,27.0,200.66,99.79024,Massachusetts,Panama,Undrafted,Undrafted,Undrafted,48,6.6,2.1,1.1,-3.7,0.044000000000000004,0.121,0.23600000000000002,0.513,0.14400000000000002,2011-12 6802,Francisco Garcia,SAC,30.0,200.66,88.45044,Louisville,Dominican Republic,2005,1,23,49,4.8,2.0,0.6,-7.2,0.013999999999999999,0.129,0.145,0.483,0.061,2011-12 6803,Francisco Elson,PHI,36.0,213.36,108.86208,California,Netherlands,1999,2,41,5,0.4,0.2,0.2,-42.5,0.0,0.063,0.13,0.33299999999999996,0.111,2011-12 6804,Evan Turner,PHI,23.0,200.66,92.98635999999999,Ohio State,USA,2010,1,2,65,9.4,5.8,2.8,2.8,0.018000000000000002,0.23199999999999998,0.20199999999999999,0.478,0.16399999999999998,2011-12 6805,Glen Davis,ORL,26.0,205.74,131.088088,Louisiana State,USA,2007,2,35,61,9.3,5.4,0.8,-1.5,0.086,0.18899999999999997,0.228,0.466,0.062,2011-12 6806,Hassan Whiteside,SAC,23.0,213.36,106.59411999999999,Marshall,USA,2010,2,33,18,1.6,2.2,0.0,5.7,0.168,0.204,0.152,0.449,0.0,2011-12 6807,Hedo Turkoglu,ORL,33.0,208.28,99.79024,None,Turkey,2000,1,16,53,10.9,3.8,4.4,3.8,0.017,0.121,0.19399999999999998,0.528,0.226,2011-12 6808,Henry Walker,NYK,24.0,198.12,106.59411999999999,Kansas State,USA,2008,2,47,32,5.9,2.5,1.2,-1.0,0.016,0.14,0.157,0.526,0.10099999999999999,2011-12 6809,Chris Andersen,DEN,33.0,208.28,103.418976,Blinn,USA,Undrafted,Undrafted,Undrafted,32,5.3,4.6,0.2,6.0,0.11599999999999999,0.225,0.147,0.583,0.019,2011-12 6810,James Singleton,WAS,30.0,203.2,104.32616,Murray State,USA,Undrafted,Undrafted,Undrafted,12,8.2,6.8,1.3,7.4,0.11800000000000001,0.255,0.161,0.6,0.091,2011-12 6811,James Jones,MIA,31.0,203.2,97.52228000000001,Miami (FL),USA,2003,2,49,51,3.6,1.0,0.4,2.1,0.011000000000000001,0.076,0.122,0.5670000000000001,0.045,2011-12 6812,James Johnson,TOR,25.0,205.74,112.490816,Wake Forest,USA,2009,1,16,62,9.1,4.7,2.0,-3.8,0.055999999999999994,0.162,0.20199999999999999,0.498,0.138,2011-12 6813,James Harden,OKC,22.0,195.58,99.79024,Arizona State,USA,2009,1,3,62,16.8,4.1,3.7,9.8,0.019,0.126,0.21600000000000003,0.66,0.19,2011-12 6814,James Anderson,SAS,23.0,198.12,97.52228000000001,Oklahoma State,USA,2010,1,20,51,3.7,1.5,0.8,8.5,0.032,0.11599999999999999,0.16899999999999998,0.483,0.094,2011-12 6815,Jameer Nelson,ORL,30.0,182.88,86.18248,Saint Joseph's,USA,2004,1,20,57,11.9,3.2,5.7,4.0,0.019,0.10300000000000001,0.21100000000000002,0.524,0.309,2011-12 6816,Jamario Moon,CHA,32.0,203.2,92.98635999999999,Meridian Community College,USA,Undrafted,Undrafted,Undrafted,8,2.3,2.8,0.6,-34.8,0.018000000000000002,0.20800000000000002,0.128,0.36200000000000004,0.096,2011-12 6817,Jamal Crawford,POR,32.0,195.58,90.7184,Michigan,USA,2000,1,8,60,14.0,2.0,3.2,-2.8,0.011000000000000001,0.076,0.263,0.506,0.209,2011-12 6818,Jamaal Tinsley,UTA,34.0,190.5,89.357624,Iowa State,USA,2001,1,27,37,3.7,1.2,3.3,-2.4,0.013999999999999999,0.086,0.174,0.461,0.361,2011-12 6819,Jamaal Magloire,TOR,34.0,210.82,120.20188,Kentucky,Canada,2000,1,19,34,1.2,3.3,0.2,6.5,0.087,0.27699999999999997,0.10300000000000001,0.36,0.023,2011-12 6820,JaVale McGee,DEN,24.0,213.36,114.30518400000001,Nevada,USA,2008,1,18,61,11.3,7.8,0.5,-9.5,0.11800000000000001,0.225,0.20600000000000002,0.552,0.035,2011-12 6821,JaJuan Johnson,BOS,23.0,208.28,100.243832,Purdue,USA,2011,1,27,36,3.2,1.6,0.2,-4.5,0.078,0.136,0.22399999999999998,0.456,0.04,2011-12 6822,JR Smith,NYK,26.0,198.12,99.79024,None,USA,2004,1,18,35,12.5,3.9,2.4,5.7,0.034,0.131,0.225,0.508,0.155,2011-12 6823,JJ Redick,ORL,28.0,193.04,86.18248,Duke,USA,2006,1,11,65,11.6,2.3,2.5,0.6,0.012,0.087,0.192,0.575,0.166,2011-12 6824,JJ Hickson,POR,23.0,205.74,109.769264,North Carolina State,USA,2008,1,19,54,8.4,6.2,0.8,-8.0,0.11699999999999999,0.191,0.19,0.501,0.062,2011-12 6825,J.J. Barea,MIN,28.0,182.88,79.3786,Northeastern,Puerto Rico,Undrafted,Undrafted,Undrafted,41,11.3,2.8,5.7,-3.5,0.015,0.10400000000000001,0.243,0.502,0.397,2011-12 6826,Ivan Johnson,ATL,28.0,203.2,115.66596000000001,Cal State-San Bernardino,USA,Undrafted,Undrafted,Undrafted,56,6.4,4.0,0.6,2.4,0.086,0.204,0.195,0.5579999999999999,0.059000000000000004,2011-12 6827,Ish Smith,ORL,23.0,182.88,79.3786,Wake Forest,USA,Undrafted,Undrafted,Undrafted,26,2.8,1.3,1.6,-7.7,0.028999999999999998,0.155,0.191,0.42200000000000004,0.32799999999999996,2011-12 6828,Isaiah Thomas,SAC,23.0,175.26,83.91452,Washington,USA,2011,2,60,65,11.5,2.6,4.1,-2.7,0.031,0.085,0.196,0.574,0.24600000000000002,2011-12 6829,Iman Shumpert,NYK,22.0,195.58,99.79024,Georgia Tech,USA,2011,1,17,59,9.5,3.2,2.8,3.5,0.027999999999999997,0.1,0.182,0.484,0.152,2011-12 6830,Ike Diogu,SAS,28.0,205.74,113.398,Arizona State,USA,2005,1,9,2,1.0,0.5,0.0,31.3,0.0,0.077,0.126,0.34700000000000003,0.0,2011-12 6831,Ian Mahinmi,DAL,25.0,210.82,104.32616,None,France,2005,1,28,61,5.8,4.7,0.2,1.9,0.107,0.183,0.14400000000000002,0.585,0.018000000000000002,2011-12 6832,Erick Dampier,ATL,36.0,210.82,120.20188,Mississippi State,USA,1996,1,10,15,0.1,1.7,0.3,2.3,0.152,0.23800000000000002,0.06,0.125,0.061,2011-12 6833,Darington Hobson,MIL,24.0,200.66,95.25432,New Mexico,USA,2010,2,37,5,0.8,0.6,1.2,10.2,0.0,0.094,0.174,0.154,0.25,2011-12 6834,Eric Maynor,OKC,25.0,190.5,79.3786,Virginia Commonwealth,USA,2009,1,20,9,4.2,1.4,2.4,4.5,0.027999999999999997,0.07400000000000001,0.18100000000000002,0.466,0.256,2011-12 6835,Eric Dawson,SAS,27.0,205.74,113.398,Midwestern State,USA,Undrafted,Undrafted,Undrafted,4,3.8,2.5,0.0,-24.1,0.132,0.192,0.174,0.5820000000000001,0.0,2011-12 6836,Derrick Williams,MIN,21.0,203.2,109.315672,Arizona,USA,2011,1,2,66,8.8,4.7,0.6,-3.3,0.06,0.183,0.21,0.499,0.046,2011-12 6837,Derrick Rose,CHI,23.0,190.5,86.18248,Memphis,USA,2008,1,1,39,21.8,3.4,7.9,10.6,0.022000000000000002,0.083,0.301,0.532,0.379,2011-12 6838,Derrick Favors,UTA,20.0,208.28,112.490816,Georgia Tech,USA,2010,1,3,65,8.8,6.5,0.7,-1.8,0.129,0.22399999999999998,0.203,0.537,0.053,2011-12 6839,Derrick Byars,SAS,28.0,200.66,99.79024,Vanderbilt,USA,2007,2,42,2,5.0,5.5,0.5,-7.6,0.11800000000000001,0.156,0.134,0.392,0.04,2011-12 6840,Derrick Brown,CHA,24.0,203.2,105.68693600000002,Xavier,USA,2009,2,40,65,8.1,3.6,1.0,-14.8,0.073,0.11800000000000001,0.16899999999999998,0.556,0.086,2011-12 6841,Deron Williams,NJN,28.0,190.5,94.800728,Illinois,USA,2005,1,3,55,21.0,3.3,8.7,-6.2,0.013000000000000001,0.096,0.299,0.527,0.45799999999999996,2011-12 6842,Derek Fisher,OKC,37.0,185.42,95.25432,Arkansas-Little Rock,USA,1996,1,24,63,5.6,1.9,2.7,5.7,0.01,0.077,0.13699999999999998,0.46399999999999997,0.17,2011-12 6843,Dennis Horner,NJN,24.0,205.74,104.32616,North Carolina State,USA,Undrafted,Undrafted,Undrafted,8,0.6,0.6,0.0,-40.1,0.095,0.2,0.145,0.434,0.0,2011-12 6844,Delonte West,DAL,28.0,190.5,81.64656,Saint Joseph's,USA,2004,1,24,44,9.6,2.3,3.2,-0.5,0.013999999999999999,0.092,0.207,0.539,0.22899999999999998,2011-12 6845,DeShawn Stevenson,NJN,31.0,195.58,98.88305600000001,None,USA,2000,1,23,51,2.9,2.0,0.8,-6.2,0.008,0.111,0.096,0.413,0.068,2011-12 6846,Devin Ebanks,LAL,22.0,205.74,97.52228000000001,West Virginia,USA,2010,2,43,24,4.0,2.3,0.5,-0.9,0.071,0.08,0.13699999999999998,0.465,0.043,2011-12 6847,DeSagana Diop,CHA,30.0,213.36,127.00576000000001,None,Senegal,2001,1,8,27,1.1,3.1,0.9,-20.1,0.099,0.19,0.087,0.34700000000000003,0.124,2011-12 6848,DeMarcus Cousins,SAC,21.0,210.82,122.46983999999999,Kentucky,USA,2010,1,5,64,18.1,11.0,1.6,-5.1,0.141,0.261,0.289,0.499,0.092,2011-12 6849,DeMar DeRozan,TOR,22.0,200.66,97.975872,Southern California,USA,2009,1,9,63,16.7,3.3,2.0,-1.8,0.022000000000000002,0.091,0.253,0.503,0.105,2011-12 6850,DeJuan Blair,SAS,23.0,200.66,122.46983999999999,Pittsburgh,USA,2009,2,37,64,9.5,5.5,1.2,2.1,0.129,0.16399999999999998,0.214,0.5489999999999999,0.091,2011-12 6851,DeAndre Liggins,ORL,24.0,198.12,94.800728,Kentucky,USA,2011,2,53,17,1.9,0.9,0.3,-27.1,0.057999999999999996,0.10300000000000001,0.182,0.495,0.091,2011-12 6852,DeAndre Jordan,LAC,23.0,210.82,120.20188,Texas A&M,USA,2008,2,35,66,7.4,8.3,0.3,5.4,0.132,0.22,0.11900000000000001,0.626,0.013999999999999999,2011-12 6853,David West,IND,31.0,205.74,108.86208,Xavier,USA,2003,1,18,66,12.8,6.6,2.1,5.4,0.07,0.177,0.209,0.531,0.12300000000000001,2011-12 6854,David Lee,GSW,29.0,205.74,108.86208,Florida,USA,2005,1,30,57,20.1,9.6,2.8,-3.3,0.092,0.2,0.259,0.5489999999999999,0.132,2011-12 6855,Darryl Watkins,NOH,27.0,210.82,117.02673600000001,Syracuse,USA,Undrafted,Undrafted,Undrafted,5,4.6,5.4,0.6,-13.4,0.098,0.226,0.151,0.525,0.065,2011-12 6856,Darren Collison,IND,24.0,182.88,72.57472,UCLA,USA,2009,1,21,60,10.4,3.1,4.8,3.5,0.018000000000000002,0.091,0.17,0.526,0.239,2011-12 6857,Darko Milicic,MIN,27.0,213.36,124.7378,None,Serbia,2003,1,2,29,4.6,3.3,0.6,-5.9,0.079,0.14300000000000002,0.171,0.45799999999999996,0.062,2011-12 6858,DeMarre Carroll,UTA,25.0,203.2,96.16150400000001,Missouri,USA,2009,1,27,24,4.5,2.2,0.8,-1.4,0.09300000000000001,0.092,0.161,0.478,0.078,2011-12 6859,Devin Harris,UTA,29.0,190.5,87.089664,Wisconsin,USA,2004,1,5,63,11.3,1.8,5.0,2.4,0.008,0.066,0.19699999999999998,0.564,0.271,2011-12 6860,Dexter Pittman,MIA,24.0,210.82,129.27372,Texas,USA,2010,2,32,35,3.0,2.0,0.3,4.1,0.10400000000000001,0.175,0.18600000000000003,0.498,0.049,2011-12 6861,Dirk Nowitzki,DAL,34.0,213.36,111.13004,None,Germany,1998,1,9,62,21.6,6.7,2.2,5.4,0.026000000000000002,0.201,0.292,0.564,0.11900000000000001,2011-12 6862,Eric Bledsoe,LAC,22.0,185.42,88.45044,Kentucky,USA,2010,1,18,40,3.3,1.6,1.7,4.3,0.059000000000000004,0.113,0.19699999999999998,0.45399999999999996,0.228,2011-12 6863,Enes Kanter,UTA,20.0,210.82,121.10906399999999,Kentucky,Turkey,2011,1,3,66,4.6,4.2,0.1,-8.2,0.135,0.231,0.16899999999999998,0.539,0.016,2011-12 6864,Emeka Okafor,NOH,29.0,208.28,115.66596000000001,Connecticut,USA,2004,1,2,27,9.9,7.9,0.9,-8.5,0.102,0.223,0.17300000000000001,0.539,0.055,2011-12 6865,Elton Brand,PHI,33.0,205.74,115.212368,Duke,USA,1999,1,1,60,11.0,7.2,1.6,7.3,0.09300000000000001,0.18,0.192,0.521,0.092,2011-12 6866,Elliot Williams,POR,23.0,196.0,86.0,Memphis,USA,2010,1,22,24,3.7,0.8,0.3,-6.5,0.059000000000000004,0.09,0.27,0.537,0.077,2011-12 6867,Ekpe Udoh,MIL,25.0,208.28,111.13004,Baylor,USA,2010,1,6,61,5.6,4.2,0.9,8.4,0.087,0.131,0.141,0.493,0.064,2011-12 6868,Edwin Ubiles,WAS,25.0,198.12,92.532768,Siena,Puerto Rico,Undrafted,Undrafted,Undrafted,4,3.5,2.5,0.3,-18.9,0.045,0.18600000000000003,0.18899999999999997,0.36200000000000004,0.036000000000000004,2011-12 6869,Eduardo Najera,CHA,35.0,203.2,106.59411999999999,Oklahoma,Mexico,2000,2,38,22,2.6,2.3,0.5,-11.7,0.049,0.184,0.125,0.441,0.07200000000000001,2011-12 6870,Eddy Curry,MIA,29.0,213.36,133.80964,None,USA,2001,1,4,14,2.1,0.9,0.1,-38.0,0.063,0.138,0.221,0.508,0.026000000000000002,2011-12 6871,Ed Davis,TOR,23.0,208.28,105.23334399999999,North Carolina,USA,2010,1,13,66,6.3,6.6,0.9,-7.7,0.10099999999999999,0.235,0.136,0.544,0.068,2011-12 6872,Earl Watson,UTA,33.0,185.42,90.264808,UCLA,USA,2001,2,39,50,3.0,2.4,4.3,-0.8,0.033,0.106,0.114,0.413,0.306,2011-12 6873,Earl Clark,ORL,24.0,208.28,102.0582,Louisville,USA,2009,1,14,45,2.7,2.8,0.4,-13.8,0.07,0.195,0.151,0.405,0.059000000000000004,2011-12 6874,Earl Boykins,HOU,36.0,165.1,60.327736,Eastern Michigan,USA,Undrafted,Undrafted,Undrafted,8,4.9,1.4,2.1,-8.6,0.0,0.085,0.212,0.45799999999999996,0.27399999999999997,2011-12 6875,Earl Barron,GSW,30.0,213.36,113.398,Memphis,USA,Undrafted,Undrafted,Undrafted,2,2.0,0.5,0.0,-7.5,0.125,0.0,0.213,0.5,0.0,2011-12 6876,E'Twaun Moore,BOS,23.0,193.04,86.636072,Purdue,USA,2011,2,55,38,2.9,0.9,0.9,6.0,0.013999999999999999,0.096,0.2,0.474,0.188,2011-12 6877,Dwyane Wade,MIA,30.0,193.04,99.79024,Marquette,USA,2003,1,5,49,22.1,4.8,4.6,11.2,0.055999999999999994,0.111,0.31,0.5589999999999999,0.251,2011-12 6878,Dwight Howard,ORL,26.0,210.82,120.20188,None,USA,2004,1,1,54,20.6,14.5,1.9,3.6,0.113,0.318,0.261,0.569,0.098,2011-12 6879,Drew Gooden,MIL,30.0,208.28,113.398,Kansas,USA,2002,1,4,56,13.7,6.5,2.6,-5.8,0.096,0.188,0.256,0.512,0.162,2011-12 6880,Dorell Wright,GSW,26.0,205.74,92.98635999999999,None,USA,2004,1,19,61,10.3,4.6,1.5,-4.9,0.04,0.149,0.17,0.5529999999999999,0.085,2011-12 6881,Donte Greene,SAC,24.0,210.82,102.511792,Syracuse,USA,2008,1,28,53,5.4,2.5,0.6,-5.8,0.024,0.154,0.182,0.491,0.069,2011-12 6882,Donald Sloan,CLE,24.0,190.5,92.98635999999999,Texas A&M,USA,Undrafted,Undrafted,Undrafted,33,5.5,2.0,3.2,-18.9,0.027999999999999997,0.087,0.179,0.433,0.29,2011-12 6883,Dominique Jones,DAL,23.0,195.58,97.52228000000001,South Florida,USA,2010,1,25,33,2.7,1.3,1.3,-12.2,0.035,0.139,0.201,0.493,0.298,2011-12 6884,Dominic McGuire,GSW,26.0,205.74,106.59411999999999,Fresno State,USA,2007,2,47,64,3.5,3.8,1.7,-4.0,0.079,0.16899999999999998,0.122,0.486,0.146,2011-12 6885,Eric Gordon,NOH,23.0,190.5,97.52228000000001,Indiana,USA,2008,1,7,9,20.6,2.8,3.4,5.2,0.008,0.08800000000000001,0.289,0.5489999999999999,0.172,2011-12 6886,Chauncey Billups,LAC,35.0,190.5,95.25432,Colorado,USA,1997,1,3,20,15.0,2.5,4.0,5.8,0.008,0.08800000000000001,0.231,0.5539999999999999,0.21,2011-12 6887,Kevin Seraphin,WAS,22.0,205.74,124.7378,Le Moyne,France,2010,1,17,57,7.9,4.9,0.6,-2.1,0.102,0.16699999999999998,0.184,0.5489999999999999,0.048,2011-12 6888,Jared Jeffries,NYK,30.0,210.82,108.86208,Indiana,USA,2002,1,11,39,4.4,3.9,0.7,2.6,0.10800000000000001,0.135,0.127,0.484,0.057999999999999996,2011-12 6889,Ray Allen,BOS,36.0,195.58,92.98635999999999,Connecticut,USA,1996,1,5,46,14.2,3.1,2.4,3.1,0.011000000000000001,0.09300000000000001,0.18600000000000003,0.607,0.11599999999999999,2011-12 6890,Raymond Felton,POR,28.0,185.42,92.98635999999999,North Carolina,USA,2005,1,5,60,11.4,2.5,6.5,4.1,0.016,0.076,0.21,0.491,0.32,2011-12 6891,Reggie Evans,LAC,32.0,203.2,111.13004,Iowa,USA,Undrafted,Undrafted,Undrafted,56,1.9,4.8,0.3,-11.6,0.165,0.311,0.08900000000000001,0.504,0.035,2011-12 6892,Reggie Jackson,OKC,22.0,190.5,94.34713599999999,Boston College,USA,2011,1,24,45,3.1,1.2,1.6,3.0,0.036000000000000004,0.085,0.198,0.408,0.243,2011-12 6893,Reggie Williams,CHA,25.0,201.0,86.0,Virginia Military Institute,USA,Undrafted,Undrafted,Undrafted,33,8.3,2.8,1.8,-19.4,0.042,0.107,0.195,0.503,0.154,2011-12 6894,Renaldo Balkman,NYK,27.0,203.2,102.0582,South Carolina,USA,2006,1,20,14,3.0,1.9,0.4,0.6,0.061,0.20199999999999999,0.168,0.57,0.075,2011-12 6895,Richard Hamilton,CHI,34.0,200.66,87.543256,Connecticut,USA,1999,1,7,28,11.6,2.4,3.0,7.8,0.033,0.07400000000000001,0.242,0.5,0.19,2011-12 6896,Richard Jefferson,GSW,32.0,200.66,104.32616,Arizona,USA,2001,1,13,63,9.2,3.5,1.4,-1.4,0.017,0.127,0.154,0.55,0.077,2011-12 6897,Ricky Rubio,MIN,21.0,193.04,81.64656,None,Spain,2009,1,5,41,10.6,4.2,8.2,1.7,0.016,0.11900000000000001,0.185,0.47600000000000003,0.38,2011-12 6898,Robin Lopez,PHX,24.0,213.36,115.66596000000001,Stanford,USA,2008,1,15,64,5.4,3.3,0.3,-3.5,0.11,0.152,0.19,0.526,0.039,2011-12 6899,Rodney Stuckey,DET,26.0,195.58,92.98635999999999,Eastern Washington,USA,2007,1,15,55,14.8,2.6,3.8,-2.6,0.027999999999999997,0.077,0.23800000000000002,0.55,0.21899999999999997,2011-12 6900,Rodrigue Beaubois,DAL,24.0,187.96,83.91452,None,France,2009,1,25,53,8.9,2.8,2.9,2.3,0.02,0.126,0.221,0.496,0.217,2011-12 6901,Roger Mason Jr.,WAS,31.0,195.58,92.98635999999999,Virginia,USA,2002,2,30,52,5.5,1.3,0.9,-2.4,0.012,0.10400000000000001,0.19899999999999998,0.53,0.114,2011-12 6902,Ronnie Brewer,CHI,27.0,200.66,102.965384,Arkansas,USA,2006,1,14,66,6.9,3.5,2.1,8.3,0.052000000000000005,0.10400000000000001,0.155,0.465,0.128,2011-12 6903,Ronnie Price,PHX,29.0,187.96,86.18248,Utah Valley,USA,Undrafted,Undrafted,Undrafted,36,3.6,1.6,1.9,-2.7,0.04,0.083,0.166,0.465,0.21100000000000002,2011-12 6904,Ronny Turiaf,MIA,29.0,208.28,111.13004,Gonzaga,France,2005,2,37,17,3.0,4.1,0.6,0.5,0.087,0.22699999999999998,0.096,0.597,0.059000000000000004,2011-12 6905,Roy Hibbert,IND,25.0,218.44,117.93392,Georgetown,USA,2008,1,17,65,12.8,8.8,1.7,5.4,0.128,0.204,0.212,0.539,0.09300000000000001,2011-12 6906,Royal Ivey,OKC,30.0,193.04,97.52228000000001,Texas,USA,2004,2,37,34,2.1,0.7,0.3,1.9,0.004,0.075,0.11199999999999999,0.46399999999999997,0.043,2011-12 6907,Rudy Fernandez,DEN,27.0,198.12,83.91452,None,Spain,2007,1,24,31,8.6,2.1,2.4,5.4,0.016,0.095,0.18100000000000002,0.5489999999999999,0.163,2011-12 6908,Rudy Gay,MEM,25.0,203.2,104.32616,Connecticut,USA,2006,1,8,65,19.0,6.4,2.3,2.0,0.062,0.142,0.251,0.521,0.10800000000000001,2011-12 6909,Russell Westbrook,OKC,23.0,190.5,84.821704,UCLA,USA,2008,1,4,66,23.6,4.6,5.5,7.9,0.05,0.09300000000000001,0.32,0.5379999999999999,0.284,2011-12 6910,Ryan Anderson,ORL,24.0,208.28,108.86208,California,USA,2008,1,21,61,16.1,7.7,0.9,6.0,0.127,0.14800000000000002,0.20800000000000002,0.589,0.047,2011-12 6911,Ryan Gomes,LAC,29.0,200.66,111.13004,Providence,USA,2005,2,50,32,2.3,1.9,0.4,-8.6,0.037000000000000005,0.12300000000000001,0.121,0.371,0.045,2011-12 6912,Ryan Hollins,BOS,27.0,213.36,108.86208,UCLA,USA,2006,2,50,39,3.4,2.1,0.2,-2.2,0.073,0.102,0.135,0.56,0.028999999999999998,2011-12 6913,Ryan Reid,OKC,25.0,203.2,106.59411999999999,Florida State,USA,2010,2,57,5,1.6,0.4,0.0,15.0,0.071,0.077,0.163,0.8,0.0,2011-12 6914,Sam Young,PHI,27.0,198.12,99.79024,Pittsburgh,USA,2009,2,36,35,3.3,1.8,0.4,-8.9,0.055,0.129,0.184,0.41200000000000003,0.066,2011-12 6915,Samardo Samuels,CLE,23.0,205.74,117.93392,Louisville,Jamaica,Undrafted,Undrafted,Undrafted,54,5.4,3.3,0.4,-5.9,0.087,0.163,0.18899999999999997,0.517,0.046,2011-12 6916,Samuel Dalembert,HOU,32.0,210.82,113.398,Seton Hall,Haiti,2001,1,26,65,7.5,7.0,0.5,2.7,0.129,0.242,0.166,0.551,0.036000000000000004,2011-12 6917,Sasha Pavlovic,BOS,28.0,200.66,106.59411999999999,None,Montenegro,2003,1,19,45,2.7,1.6,0.4,0.9,0.009000000000000001,0.147,0.14300000000000002,0.456,0.057999999999999996,2011-12 6918,Rasual Butler,TOR,33.0,200.66,97.52228000000001,La Salle,USA,2002,2,52,34,3.2,1.9,0.6,-11.4,0.015,0.149,0.159,0.39799999999999996,0.075,2011-12 6919,Rashard Lewis,WAS,32.0,208.28,104.32616,None,USA,1998,2,32,28,7.8,3.9,1.0,-12.4,0.051,0.115,0.162,0.457,0.059000000000000004,2011-12 6920,Randy Foye,LAC,28.0,193.04,96.615096,Villanova,USA,2006,1,7,65,11.0,2.1,2.2,1.2,0.017,0.078,0.20800000000000002,0.522,0.14300000000000002,2011-12 6921,Ramon Sessions,LAL,26.0,190.5,86.18248,Nevada,USA,2007,2,56,64,11.3,3.3,5.5,-1.5,0.022000000000000002,0.11800000000000001,0.214,0.535,0.353,2011-12 6922,Mike Miller,MIA,32.0,203.2,95.25432,Florida,USA,2000,1,5,39,6.1,3.3,1.1,11.8,0.038,0.165,0.15,0.561,0.086,2011-12 6923,Mikki Moore,GSW,36.0,213.36,102.0582,Nebraska,USA,Undrafted,Undrafted,Undrafted,7,3.4,3.1,0.7,-7.8,0.065,0.127,0.11699999999999999,0.52,0.06,2011-12 6924,Mo Williams,LAC,29.0,185.42,88.45044,Alabama,USA,2003,2,47,52,13.2,1.9,3.1,-1.9,0.019,0.065,0.228,0.53,0.196,2011-12 6925,Monta Ellis,MIL,26.0,190.5,83.91452,None,USA,2005,2,40,58,20.4,3.4,6.0,-0.8,0.01,0.095,0.281,0.509,0.27699999999999997,2011-12 6926,Morris Almond,WAS,27.0,198.12,102.0582,Rice,USA,2007,1,25,4,3.5,2.0,0.5,25.0,0.016,0.13699999999999998,0.125,0.382,0.039,2011-12 6927,Mychel Thompson,CLE,24.0,198.12,95.707912,Pepperdine,USA,Undrafted,Undrafted,Undrafted,5,3.6,1.0,1.4,-2.8,0.0,0.067,0.13699999999999998,0.375,0.11900000000000001,2011-12 6928,Nate Robinson,GSW,28.0,175.26,81.64656,Washington,USA,2005,1,21,51,11.2,2.0,4.5,1.4,0.015,0.083,0.239,0.534,0.317,2011-12 6929,Nazr Mohammed,OKC,34.0,208.28,113.398,Kentucky,USA,1998,1,29,63,2.7,2.7,0.2,6.1,0.111,0.177,0.138,0.47700000000000004,0.032,2011-12 6930,Nene,WAS,29.0,210.82,113.398,None,Brazil,2002,1,7,39,13.7,7.5,2.1,2.6,0.069,0.23600000000000002,0.231,0.573,0.12300000000000001,2011-12 6931,Nick Collison,OKC,31.0,208.28,115.66596000000001,Kansas,USA,2003,1,12,63,4.5,4.3,1.3,11.3,0.115,0.133,0.102,0.622,0.09300000000000001,2011-12 6932,Nick Young,LAC,27.0,200.66,95.25432,Southern California,USA,2007,1,16,62,14.2,2.1,0.9,-7.1,0.019,0.068,0.24100000000000002,0.512,0.057,2011-12 6933,Nicolas Batum,POR,23.0,203.2,90.7184,None,France,2008,1,25,59,13.9,4.6,1.4,-1.8,0.052000000000000005,0.126,0.205,0.575,0.079,2011-12 6934,Nikola Pekovic,MIN,26.0,210.82,131.54168,None,Montenegro,2008,2,31,47,13.9,7.4,0.7,-1.4,0.161,0.146,0.21899999999999997,0.607,0.043,2011-12 6935,Nikola Vucevic,PHI,21.0,213.36,108.86208,Southern California,Montenegro,2011,1,16,51,5.5,4.8,0.6,2.7,0.115,0.218,0.193,0.462,0.063,2011-12 6936,Sean Williams,BOS,25.0,208.28,106.59411999999999,Boston College,USA,2007,1,17,11,3.6,2.3,0.5,12.9,0.13699999999999998,0.124,0.161,0.722,0.07400000000000001,2011-12 6937,Nolan Smith,POR,23.0,187.96,83.91452,Duke,USA,2011,1,21,44,3.8,1.3,1.4,-15.5,0.033,0.08900000000000001,0.192,0.434,0.196,2011-12 6938,O.J. Mayo,MEM,24.0,193.04,95.25432,Southern California,USA,2008,1,3,66,12.6,3.2,2.6,0.2,0.019,0.12,0.23800000000000002,0.513,0.16399999999999998,2011-12 6939,Omer Asik,CHI,25.0,213.36,115.66596000000001,None,Turkey,2008,2,36,66,3.1,5.3,0.5,9.1,0.146,0.245,0.129,0.509,0.053,2011-12 6940,Omri Casspi,CLE,24.0,205.74,102.0582,None,Israel,2009,1,23,65,7.1,3.5,1.0,-11.4,0.051,0.146,0.177,0.499,0.084,2011-12 6941,Patrick Patterson,HOU,23.0,205.74,106.59411999999999,Kentucky,USA,2010,1,14,64,7.7,4.5,0.8,-1.6,0.083,0.138,0.179,0.457,0.059000000000000004,2011-12 6942,Patty Mills,SAS,23.0,182.88,83.91452,Saint Mary's (CA),Australia,2009,2,55,16,10.3,1.8,2.4,9.5,0.018000000000000002,0.102,0.27699999999999997,0.604,0.244,2011-12 6943,Pau Gasol,LAL,31.0,213.36,113.398,None,Spain,2001,1,3,65,17.4,10.4,3.6,3.5,0.087,0.217,0.22,0.547,0.17,2011-12 6944,Jared Dudley,PHX,26.0,200.66,102.0582,Boston College,USA,2007,1,22,65,12.7,4.6,1.7,2.0,0.054000000000000006,0.11199999999999999,0.175,0.575,0.084,2011-12 6945,Paul George,IND,22.0,203.2,97.52228000000001,Fresno State,USA,2010,1,10,66,12.1,5.6,2.4,6.1,0.033,0.175,0.193,0.555,0.133,2011-12 6946,Paul Millsap,UTA,27.0,203.2,114.758776,Louisiana Tech,USA,2006,2,47,64,16.6,8.8,2.3,4.2,0.09699999999999999,0.213,0.23399999999999999,0.545,0.12,2011-12 6947,Paul Pierce,BOS,34.0,200.66,106.59411999999999,Kansas,USA,1998,1,10,61,19.4,5.2,4.5,4.4,0.022000000000000002,0.151,0.27699999999999997,0.5670000000000001,0.233,2011-12 6948,Quentin Richardson,ORL,32.0,198.12,103.418976,DePaul,USA,2000,1,18,48,4.5,2.6,0.8,-3.5,0.02,0.152,0.133,0.511,0.079,2011-12 6949,Quincy Pondexter,MEM,24.0,198.12,102.0582,Washington,USA,2010,1,26,64,4.2,2.0,0.4,2.2,0.061,0.084,0.131,0.517,0.040999999999999995,2011-12 6950,Raja Bell,UTA,35.0,195.58,95.25432,Florida International,U.S. Virgin Islands,Undrafted,Undrafted,Undrafted,34,6.4,1.4,1.1,-1.7,0.009000000000000001,0.066,0.121,0.586,0.069,2011-12 6951,Rajon Rondo,BOS,26.0,185.42,84.368112,Kentucky,USA,2006,1,21,53,11.9,4.8,11.7,5.2,0.039,0.111,0.203,0.483,0.498,2011-12 6952,Norris Cole,MIA,23.0,187.96,79.3786,Cleveland State,USA,2011,1,28,65,6.8,1.4,2.0,0.5,0.02,0.066,0.21899999999999997,0.452,0.183,2011-12 6953,Sebastian Telfair,PHX,27.0,182.88,77.11064,None,USA,2004,1,13,60,6.1,1.5,2.3,-7.2,0.024,0.095,0.226,0.495,0.285,2011-12 6954,Semih Erden,CLE,25.0,213.36,108.86208,None,Turkey,2008,2,60,28,3.5,2.6,0.3,-11.2,0.069,0.2,0.147,0.5379999999999999,0.049,2011-12 6955,Serge Ibaka,OKC,22.0,208.28,106.59411999999999,None,Democratic Republic of the Congo,2008,1,24,66,9.1,7.5,0.4,6.9,0.131,0.17600000000000002,0.155,0.556,0.024,2011-12 6956,Trevor Ariza,NOH,27.0,203.2,95.25432,UCLA,USA,2004,2,43,41,10.8,5.2,3.3,-6.4,0.036000000000000004,0.154,0.184,0.496,0.16399999999999998,2011-12 6957,Trevor Booker,WAS,24.0,203.2,108.86208,Clemson,USA,2010,1,23,50,8.4,6.5,0.8,-6.0,0.107,0.185,0.157,0.5489999999999999,0.051,2011-12 6958,Trey Johnson,NOH,27.0,195.58,97.52228000000001,Jackson State,USA,Undrafted,Undrafted,Undrafted,11,1.9,1.1,0.4,-6.7,0.061,0.16399999999999998,0.155,0.648,0.121,2011-12 6959,Trey Thompkins,LAC,22.0,208.28,111.13004,Georgia,USA,2011,2,37,24,2.4,1.0,0.1,-28.3,0.038,0.20600000000000002,0.261,0.445,0.05,2011-12 6960,Tristan Thompson,CLE,21.0,205.74,102.965384,Texas,Canada,2011,1,4,60,8.2,6.5,0.5,-11.6,0.14400000000000002,0.166,0.192,0.469,0.035,2011-12 6961,Troy Murphy,LAL,32.0,210.82,111.13004,Notre Dame,USA,2001,1,14,59,3.2,3.2,0.9,0.1,0.051,0.174,0.1,0.537,0.081,2011-12 6962,Ty Lawson,DEN,24.0,180.34,88.45044,North Carolina,USA,2009,1,18,61,16.4,3.7,6.6,2.2,0.03,0.09300000000000001,0.21,0.579,0.303,2011-12 6963,Tyler Hansbrough,IND,26.0,205.74,113.398,North Carolina,USA,2009,1,13,66,9.3,4.4,0.5,-1.5,0.08800000000000001,0.14400000000000002,0.212,0.511,0.038,2011-12 6964,Tyler Honeycutt,SAC,21.0,203.2,85.275296,UCLA,USA,2011,2,35,15,1.3,0.9,0.5,-5.9,0.038,0.145,0.135,0.382,0.106,2011-12 6965,Tyreke Evans,SAC,22.0,198.12,99.79024,Memphis,USA,2009,1,4,63,16.5,4.6,4.5,-6.7,0.032,0.121,0.23800000000000002,0.512,0.21899999999999997,2011-12 6966,Tyrus Thomas,CHA,25.0,208.28,102.0582,Louisiana State,USA,2006,1,4,54,5.6,3.7,0.6,-15.7,0.055,0.179,0.19,0.418,0.059000000000000004,2011-12 6967,Tyson Chandler,NYK,29.0,215.9,108.86208,None,USA,2001,1,2,62,11.3,9.9,0.9,2.4,0.11800000000000001,0.221,0.129,0.708,0.044000000000000004,2011-12 6968,Udonis Haslem,MIA,32.0,203.2,106.59411999999999,Florida,USA,Undrafted,Undrafted,Undrafted,64,6.0,7.3,0.7,4.3,0.09,0.252,0.136,0.479,0.043,2011-12 6969,Vernon Macklin,DET,25.0,208.28,102.965384,Florida,USA,2011,2,52,23,2.0,1.5,0.2,-2.2,0.10400000000000001,0.16699999999999998,0.14300000000000002,0.5589999999999999,0.057,2011-12 6970,Travis Outlaw,SAC,27.0,205.74,93.89354399999999,None,USA,2003,1,23,39,4.3,1.6,0.4,-4.2,0.04,0.09699999999999999,0.187,0.428,0.047,2011-12 6971,Vince Carter,DAL,35.0,198.12,99.79024,North Carolina,USA,1998,1,5,61,10.1,3.4,2.3,6.8,0.024,0.124,0.205,0.519,0.14300000000000002,2011-12 6972,Von Wafer,ORL,26.0,195.58,94.800728,Florida State,USA,2005,2,39,33,5.9,1.4,0.9,-5.5,0.015,0.102,0.221,0.537,0.122,2011-12 6973,Walker Russell,DET,29.0,182.88,77.11064,Jacksonville State,USA,1982,4,78,28,3.0,0.9,2.1,-10.5,0.022000000000000002,0.064,0.175,0.401,0.271,2011-12 6974,Wayne Ellington,MIN,24.0,193.04,90.7184,North Carolina,USA,2009,1,28,51,6.1,1.9,0.6,-0.8,0.016,0.098,0.161,0.48700000000000004,0.057,2011-12 6975,Wesley Johnson,MIN,24.0,200.66,97.52228000000001,Syracuse,USA,2010,1,4,65,6.0,2.7,0.9,-5.0,0.018000000000000002,0.115,0.14300000000000002,0.47700000000000004,0.062,2011-12 6976,Wesley Matthews,POR,25.0,195.58,99.79024,Marquette,USA,Undrafted,Undrafted,Undrafted,66,13.7,3.4,1.7,0.9,0.028999999999999998,0.091,0.188,0.539,0.083,2011-12 6977,Will Bynum,DET,29.0,182.88,83.91452,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,36,5.7,1.6,1.8,-4.3,0.021,0.11,0.244,0.45899999999999996,0.24100000000000002,2011-12 6978,Willie Green,ATL,30.0,190.5,91.171992,Detroit Mercy,USA,2003,2,41,53,7.6,1.5,0.8,-3.3,0.019,0.085,0.19699999999999998,0.578,0.083,2011-12 6979,Wilson Chandler,DEN,25.0,203.2,102.0582,DePaul,USA,2007,1,23,8,9.4,5.1,2.1,-3.8,0.033,0.18100000000000002,0.21100000000000002,0.445,0.113,2011-12 6980,Xavier Henry,NOH,21.0,198.12,99.79024,Kansas,USA,2010,1,12,45,5.3,2.4,0.8,-3.2,0.039,0.124,0.188,0.45,0.081,2011-12 6981,Xavier Silas,PHI,24.0,195.58,92.98635999999999,Northern Illinois,USA,2011,Undrafted,Undrafted,2,5.5,2.0,1.5,-20.7,0.04,0.059000000000000004,0.215,0.337,0.158,2011-12 6982,Yi Jianlian,DAL,24.0,213.36,113.398,None,USA,2007,1,6,30,2.6,1.6,0.2,-13.2,0.061,0.184,0.228,0.433,0.047,2011-12 6983,Zach Randolph,MEM,30.0,205.74,117.93392,Michigan State,USA,2001,1,19,28,11.6,8.0,1.7,7.4,0.121,0.248,0.221,0.5,0.10800000000000001,2011-12 6984,Zaza Pachulia,ATL,28.0,210.82,124.7378,None,Georgia,2003,2,42,58,7.8,7.9,1.4,2.5,0.111,0.21899999999999997,0.141,0.557,0.07400000000000001,2011-12 6985,Jan Vesely,WAS,22.0,210.82,108.86208,None,Czech Republic,2011,1,6,57,4.7,4.4,0.8,-4.7,0.105,0.16,0.127,0.544,0.067,2011-12 6986,Vladimir Radmanovic,ATL,31.0,208.28,106.59411999999999,None,Serbia,2001,1,12,49,4.5,2.9,1.1,2.9,0.052000000000000005,0.166,0.151,0.524,0.115,2011-12 6987,Mike James,CHI,37.0,187.96,85.275296,Duquesne,USA,Undrafted,Undrafted,Undrafted,11,4.8,0.9,2.6,28.6,0.02,0.064,0.249,0.505,0.363,2011-12 6988,Travis Leslie,LAC,22.0,193.04,92.98635999999999,Georgia,USA,2011,2,47,10,1.4,0.9,0.5,-29.3,0.128,0.073,0.19399999999999998,0.39,0.22699999999999998,2011-12 6989,Tony Parker,SAS,30.0,187.96,83.91452,None,France,2001,1,28,60,18.3,2.9,7.7,10.5,0.013000000000000001,0.086,0.278,0.539,0.40399999999999997,2011-12 6990,Shane Battier,MIA,33.0,203.2,102.0582,Duke,USA,2001,1,6,65,4.8,2.4,1.3,4.7,0.045,0.08,0.107,0.504,0.083,2011-12 6991,Shannon Brown,PHX,26.0,193.04,95.25432,Michigan State,USA,2006,1,25,59,11.0,2.7,1.2,-2.0,0.03,0.094,0.228,0.507,0.083,2011-12 6992,Shaun Livingston,MIL,26.0,200.66,79.3786,None,USA,2004,1,4,58,5.5,2.1,2.1,-3.8,0.038,0.08800000000000001,0.152,0.52,0.174,2011-12 6993,Shawn Marion,DAL,34.0,200.66,103.418976,Nevada-Las Vegas,USA,1999,1,9,63,10.6,7.4,2.1,-1.4,0.083,0.187,0.188,0.488,0.115,2011-12 6994,Shawne Williams,NJN,26.0,205.74,104.32616,Memphis,USA,2006,1,17,25,4.5,2.7,0.6,-10.1,0.042,0.121,0.14400000000000002,0.37200000000000005,0.053,2011-12 6995,Shelden Williams,NJN,28.0,205.74,113.398,Duke,USA,2006,1,5,58,4.6,6.0,0.6,-9.5,0.127,0.195,0.114,0.5429999999999999,0.044000000000000004,2011-12 6996,Shelvin Mack,WAS,22.0,190.5,93.89354399999999,Butler,USA,2011,2,34,64,3.6,1.4,2.0,-2.2,0.018000000000000002,0.11900000000000001,0.17600000000000002,0.46799999999999997,0.271,2011-12 6997,Solomon Alabi,TOR,24.0,215.9,114.30518400000001,Florida State,Nigeria,2010,2,50,14,2.4,3.4,0.2,1.7,0.149,0.25,0.16899999999999998,0.418,0.040999999999999995,2011-12 6998,Solomon Jones,NOH,27.0,208.28,111.13004,South Florida,USA,2006,2,33,21,3.2,2.8,0.4,-22.4,0.122,0.11199999999999999,0.138,0.47100000000000003,0.055999999999999994,2011-12 6999,Spencer Hawes,PHI,24.0,215.9,111.13004,Washington,USA,2007,1,10,37,9.6,7.3,2.6,3.7,0.094,0.23399999999999999,0.19899999999999998,0.517,0.16899999999999998,2011-12 7000,Stephen Curry,GSW,24.0,190.5,83.91452,Davidson,USA,2009,1,7,26,14.7,3.4,5.3,5.4,0.023,0.111,0.235,0.605,0.295,2011-12 7001,Stephen Jackson,SAS,34.0,203.2,99.79024,Butler Community College,USA,1997,2,42,47,9.8,3.5,2.5,2.0,0.021,0.136,0.215,0.485,0.151,2011-12 7002,Steve Blake,LAL,32.0,190.5,78.017824,Maryland,USA,2003,2,38,53,5.2,1.6,3.3,0.2,0.009000000000000001,0.067,0.131,0.493,0.21600000000000003,2011-12 7003,Steve Nash,PHX,38.0,190.5,80.73937600000001,Santa Clara,Canada,1996,1,15,62,12.5,3.0,10.7,3.8,0.016,0.08800000000000001,0.19399999999999998,0.625,0.491,2011-12 7004,Tracy McGrady,ATL,33.0,203.2,102.0582,None,USA,1997,1,9,52,5.3,3.0,2.1,5.7,0.033,0.17600000000000002,0.182,0.51,0.221,2011-12 7005,Steve Novak,NYK,29.0,208.28,108.86208,Marquette,USA,2006,2,32,54,8.8,1.9,0.2,6.5,0.01,0.11199999999999999,0.163,0.684,0.02,2011-12 7006,T.J. Ford,SAS,29.0,182.88,74.84268,Texas,USA,2003,1,8,14,3.6,1.3,3.2,7.3,0.019,0.08900000000000001,0.17300000000000001,0.519,0.349,2011-12 7007,Taj Gibson,CHI,27.0,205.74,102.0582,Southern California,USA,2009,1,26,63,7.7,5.3,0.7,15.1,0.11599999999999999,0.162,0.18600000000000003,0.522,0.065,2011-12 7008,Tayshaun Prince,DET,32.0,205.74,97.52228000000001,Kentucky,USA,2002,1,23,63,12.7,4.5,2.4,-7.3,0.040999999999999995,0.125,0.204,0.47,0.127,2011-12 7009,Terrel Harris,MIA,24.0,193.04,86.18248,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,22,3.6,2.3,1.2,-8.3,0.067,0.129,0.17,0.434,0.138,2011-12 7010,Terrence Williams,SAC,25.0,198.12,99.79024,Louisville,USA,2009,1,11,30,7.1,3.4,2.2,-8.1,0.026000000000000002,0.177,0.21600000000000003,0.488,0.20600000000000002,2011-12 7011,Thabo Sefolosha,OKC,28.0,200.66,97.52228000000001,None,Switzerland,2006,1,13,42,4.8,3.0,1.1,7.9,0.027999999999999997,0.11699999999999999,0.105,0.584,0.073,2011-12 7012,Thaddeus Young,PHI,24.0,203.2,99.79024,Georgia Tech,USA,2007,1,12,63,12.8,5.2,1.2,8.4,0.08900000000000001,0.122,0.217,0.5379999999999999,0.07,2011-12 7013,Tiago Splitter,SAS,27.0,210.82,108.86208,None,Brazil,2007,1,28,59,9.3,5.2,1.1,10.2,0.10300000000000001,0.218,0.21,0.649,0.094,2011-12 7014,Tim Duncan,SAS,36.0,210.82,115.66596000000001,Wake Forest,US Virgin Islands,1997,1,1,58,15.4,9.0,2.3,8.6,0.076,0.276,0.263,0.531,0.13699999999999998,2011-12 7015,Timofey Mozgov,DEN,25.0,215.9,113.398,None,Russia,Undrafted,Undrafted,Undrafted,44,5.4,4.1,0.5,-4.1,0.092,0.203,0.17300000000000001,0.556,0.049,2011-12 7016,Tobias Harris,MIL,19.0,203.2,102.511792,Tennessee,USA,2011,1,19,42,5.0,2.4,0.5,-0.6,0.069,0.16899999999999998,0.204,0.54,0.075,2011-12 7017,Toney Douglas,NYK,26.0,187.96,83.91452,Florida State,USA,2009,1,29,38,6.2,1.9,2.0,-0.3,0.026000000000000002,0.10099999999999999,0.245,0.39299999999999996,0.205,2011-12 7018,Tony Allen,MEM,30.0,193.04,96.615096,Oklahoma State,USA,2004,1,25,58,9.8,4.0,1.4,6.9,0.075,0.105,0.185,0.541,0.083,2011-12 7019,Tony Battie,PHI,36.0,210.82,108.86208,Texas Tech,USA,1997,1,5,27,1.6,2.5,0.6,6.5,0.03,0.225,0.092,0.39799999999999996,0.08,2011-12 7020,Sundiata Gaines,NJN,26.0,185.42,90.7184,Georgia,USA,Undrafted,Undrafted,Undrafted,57,5.1,1.9,2.2,-7.6,0.039,0.121,0.212,0.465,0.278,2011-12 7021,Mike Dunleavy,MIL,31.0,205.74,104.32616,Duke,USA,2002,1,3,55,12.3,3.7,2.1,4.7,0.022000000000000002,0.13,0.18899999999999997,0.597,0.132,2011-12 7022,Jannero Pargo,ATL,32.0,185.42,83.91452,Arkansas,USA,Undrafted,Undrafted,Undrafted,50,5.6,1.5,1.9,3.3,0.017,0.11,0.21899999999999997,0.539,0.261,2011-12 7023,Mike Bibby,NYK,34.0,187.96,88.45044,Arizona,USA,1998,1,2,39,2.6,1.5,2.1,-2.4,0.01,0.124,0.124,0.40399999999999997,0.22699999999999998,2011-12 7024,Jeremy Lin,NYK,23.0,190.5,90.7184,Harvard,USA,Undrafted,Undrafted,Undrafted,35,14.6,3.1,6.2,6.1,0.023,0.106,0.27399999999999997,0.552,0.382,2011-12 7025,Jeremy Pargo,MEM,26.0,187.96,99.336648,Gonzaga,USA,Undrafted,Undrafted,Undrafted,44,2.9,0.8,1.3,-15.7,0.028999999999999998,0.069,0.213,0.389,0.23,2011-12 7026,Jeremy Tyler,GSW,21.0,208.28,117.93392,None,USA,2011,2,39,42,4.9,3.3,0.4,-9.9,0.10099999999999999,0.18,0.21100000000000002,0.442,0.044000000000000004,2011-12 7027,Jermaine O'Neal,BOS,33.0,210.82,115.66596000000001,None,USA,1996,1,17,25,5.0,5.4,0.4,2.0,0.08,0.196,0.133,0.46799999999999997,0.028999999999999998,2011-12 7028,Jerome Dyson,NOH,25.0,190.5,81.64656,Connecticut,USA,Undrafted,Undrafted,Undrafted,9,7.4,2.1,2.0,3.3,0.013000000000000001,0.09300000000000001,0.228,0.525,0.20199999999999999,2011-12 7029,Jerome Jordan,NYK,25.0,213.36,108.86208,Tulsa,Jamaica,2010,2,44,21,2.0,1.3,0.2,11.8,0.14300000000000002,0.14300000000000002,0.157,0.561,0.051,2011-12 7030,Jerry Smith,NJN,24.0,187.96,86.18248,Louisville,USA,1963,2,12,5,1.4,1.4,0.8,-10.8,0.048,0.128,0.147,0.25,0.154,2011-12 7031,Jerry Stackhouse,ATL,37.0,198.12,98.88305600000001,North Carolina,USA,1995,1,3,30,3.6,0.8,0.5,-0.9,0.025,0.066,0.20600000000000002,0.49,0.092,2011-12 7032,Jerryd Bayless,TOR,23.0,190.5,94.34713599999999,Arizona,USA,2008,1,11,31,11.4,2.1,3.8,-2.3,0.013999999999999999,0.10300000000000001,0.244,0.561,0.305,2011-12 7033,Jimmer Fredette,SAC,23.0,187.96,88.45044,Brigham Young,USA,2011,1,10,61,7.6,1.2,1.8,-9.1,0.015,0.055999999999999994,0.207,0.495,0.155,2011-12 7034,Jimmy Butler,CHI,22.0,200.66,99.79024,Marquette,USA,2011,1,30,42,2.6,1.3,0.3,18.8,0.071,0.1,0.15,0.526,0.061,2011-12 7035,Joakim Noah,CHI,27.0,210.82,105.23334399999999,Florida,USA,2007,1,9,64,10.2,9.8,2.5,7.5,0.145,0.21899999999999997,0.157,0.561,0.122,2011-12 7036,Jodie Meeks,PHI,24.0,193.04,94.34713599999999,Kentucky,USA,2009,2,41,66,8.4,2.4,0.8,5.8,0.011000000000000001,0.095,0.152,0.551,0.049,2011-12 7037,Joe Johnson,ATL,31.0,200.66,108.86208,Arkansas,USA,2001,1,10,60,18.8,3.7,3.9,5.9,0.028999999999999998,0.092,0.25,0.557,0.18899999999999997,2011-12 7038,Joel Anthony,MIA,29.0,205.74,111.13004,Nevada-Las Vegas,Canada,Undrafted,Undrafted,Undrafted,64,3.4,3.9,0.1,10.9,0.094,0.126,0.079,0.598,0.009000000000000001,2011-12 7039,Joel Przybilla,POR,32.0,215.9,111.13004,Minnesota,USA,2000,1,9,27,2.0,5.1,0.2,-4.0,0.075,0.295,0.083,0.49200000000000005,0.019,2011-12 7040,Johan Petro,NJN,26.0,213.36,112.037224,None,France,2005,1,25,59,4.2,3.8,0.8,-8.7,0.081,0.204,0.158,0.452,0.085,2011-12 7041,John Lucas III,CHI,29.0,180.34,74.84268,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,49,7.5,1.6,2.2,17.7,0.033,0.078,0.264,0.496,0.278,2011-12 7042,John Salmons,SAC,32.0,198.12,93.89354399999999,Miami (FL),USA,2002,1,26,46,7.5,2.9,2.0,-8.1,0.017,0.105,0.14400000000000002,0.47100000000000003,0.11699999999999999,2011-12 7043,John Wall,WAS,21.0,193.04,88.45044,Kentucky,USA,2010,1,1,66,16.3,4.5,8.0,-6.8,0.022000000000000002,0.11900000000000001,0.245,0.502,0.36200000000000004,2011-12 7044,Jon Brockman,MIL,25.0,200.66,115.66596000000001,Washington,USA,2009,2,38,35,1.1,2.1,0.3,-0.3,0.149,0.212,0.11199999999999999,0.359,0.054000000000000006,2011-12 7045,Jon Leuer,MIL,23.0,208.28,103.418976,Wisconsin,USA,2011,2,40,46,4.7,2.6,0.5,0.2,0.087,0.162,0.174,0.536,0.07200000000000001,2011-12 7046,Jonas Jerebko,DET,25.0,208.28,104.779752,None,Sweden,2009,2,39,64,8.7,4.8,0.7,-6.0,0.078,0.18,0.182,0.5479999999999999,0.053,2011-12 7047,Jonny Flynn,POR,23.0,182.88,83.91452,Syracuse,USA,2009,1,6,29,4.5,1.3,3.3,-12.4,0.022000000000000002,0.08900000000000001,0.207,0.442,0.368,2011-12 7048,Jordan Crawford,WAS,23.0,193.04,88.45044,Xavier,USA,2010,1,27,64,14.7,2.6,3.0,-9.1,0.027999999999999997,0.08199999999999999,0.27899999999999997,0.488,0.188,2011-12 7049,Jordan Farmar,NJN,25.0,187.96,81.64656,UCLA,USA,2006,1,26,39,10.4,1.6,3.3,-10.3,0.01,0.083,0.22899999999999998,0.5920000000000001,0.299,2011-12 7050,Jordan Hamilton,DEN,21.0,200.66,99.79024,Texas,USA,2011,1,26,26,4.4,2.4,0.8,6.9,0.052000000000000005,0.19899999999999998,0.221,0.508,0.114,2011-12 7051,Jordan Hill,LAL,24.0,208.28,106.59411999999999,Arizona,USA,2009,1,8,39,5.0,4.8,0.4,-2.4,0.127,0.261,0.179,0.522,0.044000000000000004,2011-12 7052,Jordan Williams,NJN,21.0,208.28,117.93392,Maryland,USA,2011,2,36,43,4.6,3.6,0.3,1.3,0.115,0.16899999999999998,0.146,0.544,0.027000000000000003,2011-12 7053,Jeremy Evans,UTA,24.0,205.74,87.996848,Western Kentucky,USA,2010,2,55,29,2.1,1.7,0.4,-9.7,0.102,0.156,0.11199999999999999,0.632,0.099,2011-12 7054,Jeff Teague,ATL,24.0,187.96,82.10015200000001,Wake Forest,USA,2009,1,19,66,12.6,2.4,4.9,5.4,0.011000000000000001,0.07400000000000001,0.19,0.551,0.231,2011-12 7055,Jeff Foster,IND,35.0,210.82,113.398,Texas State,USA,1999,1,21,11,2.3,3.8,0.4,7.1,0.15,0.205,0.09300000000000001,0.569,0.051,2011-12 7056,Jeff Foote,NOH,24.0,213.36,120.20188,Cornell,USA,Undrafted,Undrafted,Undrafted,4,1.0,1.5,0.0,0.6,0.04,0.147,0.09699999999999999,0.33299999999999996,0.0,2011-12 7057,Mickael Pietrus,BOS,30.0,198.12,97.52228000000001,None,France,2003,1,11,42,6.9,3.1,0.6,2.5,0.024,0.135,0.162,0.509,0.045,2011-12 7058,Michael Redd,PHX,32.0,198.12,97.52228000000001,Ohio State,USA,2000,2,43,51,8.2,1.5,0.6,-8.5,0.02,0.098,0.263,0.511,0.078,2011-12 7059,Michael Beasley,MIN,23.0,208.28,106.59411999999999,Kansas State,USA,2008,1,2,47,11.5,4.4,1.0,-3.3,0.039,0.168,0.253,0.502,0.077,2011-12 7060,Metta World Peace,LAL,32.0,200.66,117.93392,St. John's (NY),USA,1999,1,16,64,7.7,3.4,2.2,2.1,0.048,0.09,0.156,0.478,0.127,2011-12 7061,Mehmet Okur,NJN,33.0,210.82,117.93392,None,Turkey,2001,2,37,17,7.6,4.8,1.8,-17.3,0.055999999999999994,0.17600000000000002,0.171,0.46,0.11900000000000001,2011-12 7062,Maurice Evans,WAS,33.0,195.58,99.79024,Texas,USA,Undrafted,Undrafted,Undrafted,24,4.9,1.0,0.4,-0.2,0.026000000000000002,0.051,0.16399999999999998,0.49700000000000005,0.04,2011-12 7063,Matt Carroll,CHA,31.0,198.12,96.16150400000001,Notre Dame,USA,Undrafted,Undrafted,Undrafted,53,2.7,1.1,0.7,-13.9,0.015,0.1,0.154,0.409,0.10800000000000001,2011-12 7064,Matt Bonner,SAS,32.0,208.28,106.59411999999999,Florida,USA,2003,2,45,65,6.6,3.3,0.9,13.4,0.026000000000000002,0.159,0.131,0.597,0.064,2011-12 7065,Matt Barnes,LAL,32.0,200.66,102.511792,UCLA,USA,2002,2,45,63,7.8,5.5,2.0,2.8,0.08,0.182,0.16399999999999998,0.5539999999999999,0.136,2011-12 7066,Marvin Williams,ATL,26.0,205.74,111.13004,North Carolina,USA,2005,1,2,57,10.2,5.2,1.2,3.0,0.057999999999999996,0.166,0.179,0.542,0.078,2011-12 7067,Martell Webster,MIN,25.0,200.66,104.32616,None,USA,2005,1,6,47,6.9,3.6,0.9,-2.9,0.040999999999999995,0.122,0.13699999999999998,0.5329999999999999,0.052000000000000005,2011-12 7068,Marreese Speights,MEM,24.0,208.28,115.66596000000001,Florida,USA,2008,1,16,60,8.8,6.2,0.8,-2.8,0.113,0.218,0.20800000000000002,0.491,0.059000000000000004,2011-12 7069,Marquis Daniels,BOS,31.0,198.12,90.7184,Auburn,USA,Undrafted,Undrafted,Undrafted,38,3.2,1.7,1.2,0.4,0.04,0.124,0.182,0.395,0.165,2011-12 7070,Markieff Morris,PHX,22.0,208.28,111.13004,Kansas,USA,2011,1,13,63,7.4,4.4,1.0,-2.2,0.061,0.2,0.204,0.484,0.087,2011-12 7071,Jose Calderon,TOR,30.0,190.5,95.707912,None,Spain,Undrafted,Undrafted,Undrafted,53,10.5,3.0,8.8,-3.5,0.012,0.092,0.161,0.547,0.42700000000000005,2011-12 7072,Mario Chalmers,MIA,26.0,187.96,86.18248,Kansas,USA,2008,2,34,64,9.8,2.7,3.5,10.5,0.011000000000000001,0.096,0.17300000000000001,0.578,0.183,2011-12 7073,Marcus Morris,HOU,22.0,205.74,106.59411999999999,Kansas,USA,2011,1,14,17,2.4,0.9,0.2,-10.1,0.042,0.092,0.223,0.348,0.042,2011-12 7074,Marcus Camby,HOU,38.0,210.82,106.59411999999999,Massachusetts,USA,1996,1,2,59,4.9,9.0,1.8,2.9,0.131,0.331,0.126,0.455,0.113,2011-12 7075,Marco Belinelli,NOH,26.0,195.58,88.45044,None,Italy,2007,1,18,66,11.8,2.6,1.5,-6.4,0.012,0.09,0.195,0.525,0.08800000000000001,2011-12 7076,Marcin Gortat,PHX,28.0,210.82,108.86208,None,Poland,2005,2,57,66,15.4,10.0,0.9,1.9,0.10099999999999999,0.247,0.207,0.578,0.045,2011-12 7077,Marc Gasol,MEM,27.0,215.9,120.20188,None,Spain,2007,2,48,65,14.6,8.9,3.1,5.3,0.059000000000000004,0.23,0.192,0.541,0.138,2011-12 7078,Jason Collins,ATL,33.0,213.36,115.66596000000001,Stanford,USA,2001,1,18,30,1.3,1.6,0.3,1.7,0.046,0.126,0.091,0.418,0.049,2011-12 7079,Jason Kapono,LAL,31.0,203.2,97.52228000000001,UCLA,USA,2003,2,31,27,2.0,0.5,0.4,7.6,0.01,0.048,0.114,0.47600000000000003,0.062,2011-12 7080,Jason Kidd,DAL,39.0,193.04,95.25432,California,USA,1994,1,2,48,6.2,4.1,5.5,2.3,0.012,0.14800000000000002,0.124,0.524,0.281,2011-12 7081,Jason Maxiell,DET,29.0,200.66,117.93392,Cincinnati,USA,2005,1,26,65,6.5,5.1,0.6,-3.7,0.1,0.16899999999999998,0.157,0.493,0.045,2011-12 7082,Jason Smith,NOH,26.0,213.36,108.86208,Colorado State,USA,2007,1,20,40,9.9,4.9,0.9,-0.4,0.094,0.14800000000000002,0.207,0.537,0.066,2011-12 7083,Jason Terry,DAL,34.0,187.96,81.64656,Arizona,USA,1999,1,10,63,15.1,2.4,3.6,0.5,0.009000000000000001,0.075,0.23399999999999999,0.54,0.204,2011-12 7084,Jason Thompson,SAC,25.0,210.82,113.398,Rider,USA,2008,1,12,64,9.1,6.9,1.2,-3.7,0.10800000000000001,0.19899999999999998,0.153,0.5579999999999999,0.07,2011-12 7085,Jeff Adrien,HOU,26.0,201.0,111.0,Connecticut,USA,Undrafted,Undrafted,Undrafted,8,2.6,2.8,0.1,-9.3,0.083,0.239,0.166,0.493,0.034,2011-12 7086,Jeff Ayres,IND,25.0,205.74,108.86208,Arizona State,USA,2009,2,31,20,1.7,1.7,0.2,-0.8,0.111,0.21899999999999997,0.16899999999999998,0.435,0.063,2011-12 7087,Marcus Thornton,SAC,25.0,193.04,92.98635999999999,Louisiana State,USA,2009,2,43,51,18.7,3.7,1.9,-5.8,0.049,0.069,0.228,0.544,0.091,2011-12 7088,Josh Childress,PHX,29.0,203.2,95.25432,Stanford,USA,2004,1,6,34,2.9,2.8,1.0,-4.7,0.07,0.158,0.10099999999999999,0.501,0.105,2011-12 7089,Jason Richardson,ORL,31.0,198.12,102.0582,Michigan State,USA,2001,1,5,54,11.6,3.6,2.0,2.6,0.025,0.114,0.2,0.502,0.11199999999999999,2011-12 7090,Josh Harrellson,NYK,23.0,208.28,124.7378,Kentucky,USA,2011,2,45,37,4.4,3.9,0.3,9.9,0.094,0.20600000000000002,0.149,0.505,0.033,2011-12 7091,Lance Stephenson,IND,21.0,195.58,99.79024,Cincinnati,USA,2010,2,40,42,2.5,1.3,1.1,-4.2,0.03,0.115,0.171,0.4,0.174,2011-12 7092,Lance Thomas,NOH,24.0,203.2,102.0582,Duke,USA,Undrafted,Undrafted,Undrafted,42,4.0,3.0,0.3,-6.9,0.094,0.146,0.135,0.541,0.033,2011-12 7093,Landry Fields,NYK,24.0,200.66,97.52228000000001,Stanford,USA,2010,2,39,66,8.8,4.2,2.6,5.1,0.037000000000000005,0.134,0.159,0.506,0.141,2011-12 7094,Larry Hughes,ORL,33.0,195.58,83.91452,Saint Louis,USA,1998,1,8,9,1.3,0.6,0.8,-25.8,0.01,0.039,0.151,0.262,0.13,2011-12 7095,Leandro Barbosa,IND,29.0,190.5,87.996848,None,Brazil,2003,1,28,64,11.1,2.0,1.5,-2.2,0.027000000000000003,0.08,0.258,0.512,0.135,2011-12 7096,Larry Owens,NJN,29.0,200.66,95.25432,Oral Roberts,USA,Undrafted,Undrafted,Undrafted,7,1.9,1.9,0.6,-21.9,0.03,0.18,0.098,0.509,0.095,2011-12 7097,Larry Sanders,MIL,23.0,210.82,106.59411999999999,Virginia Commonwealth,USA,2010,1,15,52,3.6,3.1,0.6,8.9,0.106,0.159,0.17,0.46299999999999997,0.079,2011-12 7098,Lavoy Allen,PHI,23.0,205.74,102.0582,Temple,USA,2011,2,50,41,4.1,4.2,0.8,6.6,0.081,0.218,0.14800000000000002,0.488,0.08900000000000001,2011-12 7099,Lazar Hayward,OKC,25.0,198.12,102.0582,Marquette,USA,2010,1,30,26,1.4,0.6,0.2,-17.1,0.017,0.102,0.183,0.42700000000000005,0.054000000000000006,2011-12 7100,Lester Hudson,MEM,27.0,190.5,86.18248,Tennessee-Martin,USA,2009,2,58,16,10.9,2.9,2.3,-0.9,0.023,0.14400000000000002,0.289,0.483,0.209,2011-12 7101,Linas Kleiza,TOR,27.0,203.2,106.140528,Missouri,Lithuania,2005,1,27,49,9.7,4.1,0.9,-0.2,0.048,0.166,0.228,0.521,0.081,2011-12 7102,LeBron James,MIA,27.0,203.2,113.398,None,USA,2003,1,1,62,27.1,7.9,6.2,10.7,0.05,0.196,0.317,0.605,0.318,2011-12 7103,Lou Amundson,IND,29.0,205.74,102.0582,Nevada-Las Vegas,USA,Undrafted,Undrafted,Undrafted,60,3.6,3.7,0.2,-3.3,0.136,0.19899999999999998,0.171,0.43799999999999994,0.033,2011-12 7104,Lou Williams,PHI,25.0,185.42,79.3786,None,USA,2005,2,45,64,14.9,2.4,3.5,6.4,0.02,0.083,0.273,0.525,0.221,2011-12 7105,Lamar Odom,DAL,32.0,208.28,104.32616,Rhode Island,USA,1999,1,4,50,6.6,4.2,1.7,-4.0,0.04,0.187,0.203,0.423,0.136,2011-12 7106,Luc Mbah a Moute,MIL,25.0,203.2,104.32616,UCLA,Cameroon,2008,2,37,43,7.7,5.3,0.7,3.2,0.084,0.162,0.152,0.544,0.044000000000000004,2011-12 7107,Luke Babbitt,POR,23.0,205.74,102.0582,Nevada,USA,2010,1,16,40,5.1,2.4,0.4,-13.3,0.033,0.179,0.17600000000000002,0.556,0.052000000000000005,2011-12 7108,Luke Harangody,CLE,24.0,200.66,111.13004,Notre Dame,USA,2010,2,52,21,2.9,2.5,0.3,-13.6,0.1,0.168,0.151,0.42700000000000005,0.045,2011-12 7109,Luke Ridnour,MIN,31.0,187.96,79.3786,Oregon,USA,2003,1,14,53,12.1,2.7,4.8,-2.2,0.012,0.08,0.177,0.53,0.237,2011-12 7110,Luke Walton,CLE,32.0,203.2,106.59411999999999,Arizona,USA,2003,2,32,30,1.8,1.6,1.2,-8.0,0.042,0.11699999999999999,0.11800000000000001,0.423,0.161,2011-12 7111,Luol Deng,CHI,27.0,205.74,99.79024,Duke,United Kingdom,2004,1,7,54,15.3,6.5,2.9,8.8,0.040999999999999995,0.141,0.19699999999999998,0.5,0.11699999999999999,2011-12 7112,Malcolm Lee,MIN,22.0,195.58,90.7184,UCLA,USA,2011,2,43,19,3.3,1.4,1.6,-6.0,0.04,0.084,0.155,0.466,0.221,2011-12 7113,Malcolm Thomas,SAS,23.0,205.74,102.0582,San Diego State,USA,Undrafted,Undrafted,Undrafted,3,0.3,1.0,0.3,-17.9,0.091,0.154,0.114,0.129,0.083,2011-12 7114,Manny Harris,CLE,22.0,195.58,83.91452,Michigan,USA,Undrafted,Undrafted,Undrafted,26,6.7,2.7,1.2,-7.4,0.027000000000000003,0.152,0.205,0.49200000000000005,0.13,2011-12 7115,Manu Ginobili,SAS,34.0,198.12,92.98635999999999,None,Argentina,1999,2,57,34,12.9,3.4,4.4,16.1,0.028999999999999998,0.138,0.225,0.6679999999999999,0.27,2011-12 7116,MarShon Brooks,NJN,23.0,195.58,90.7184,Providence,USA,2011,1,25,56,12.6,3.6,2.3,-11.0,0.048,0.095,0.228,0.502,0.147,2011-12 7117,Mike Conley,MEM,24.0,185.42,83.91452,Ohio State,USA,2007,1,4,62,12.7,2.5,6.5,5.8,0.012,0.07400000000000001,0.185,0.523,0.289,2011-12 7118,Jarrett Jack,NOH,28.0,190.5,89.357624,Georgia Tech,USA,2005,1,22,45,15.6,3.9,6.3,-9.0,0.017,0.11900000000000001,0.23,0.54,0.342,2011-12 7119,Josh Davis,MEM,31.0,203.2,106.59411999999999,Wyoming,USA,Undrafted,Undrafted,Undrafted,15,1.9,1.8,0.4,-17.2,0.128,0.106,0.113,0.45899999999999996,0.077,2011-12 7120,Mickell Gladness,GSW,25.0,210.82,99.79024,Alabama A&M,USA,Undrafted,Undrafted,Undrafted,26,2.2,2.2,0.2,-11.9,0.057,0.174,0.127,0.436,0.03,2011-12 7121,Luis Scola,HOU,32.0,205.74,111.13004,None,Argentina,2002,2,55,66,15.5,6.5,2.1,1.8,0.07,0.172,0.248,0.526,0.11800000000000001,2011-12 7122,Kyrylo Fesenko,IND,25.0,215.9,127.00576000000001,None,Ukraine,2007,2,38,3,2.7,3.0,0.3,19.5,0.125,0.41200000000000003,0.20199999999999999,0.524,0.1,2011-12 7123,LaMarcus Aldridge,POR,26.0,210.82,108.86208,Texas,USA,2006,1,2,55,21.7,8.0,2.4,4.1,0.086,0.175,0.271,0.56,0.128,2011-12 7124,Kendrick Perkins,OKC,27.0,208.28,122.46983999999999,None,USA,2003,1,27,65,5.1,6.6,1.2,4.1,0.08199999999999999,0.184,0.109,0.528,0.064,2011-12 7125,Josh Selby,MEM,21.0,187.96,83.007336,Kansas,USA,2011,2,49,28,2.3,0.5,1.1,-7.8,0.01,0.065,0.20199999999999999,0.40299999999999997,0.19699999999999998,2011-12 7126,Josh Smith,ATL,26.0,205.74,102.0582,None,USA,2004,1,17,66,18.8,9.6,3.9,6.1,0.069,0.248,0.282,0.499,0.196,2011-12 7127,Jrue Holiday,PHI,22.0,193.04,81.64656,UCLA,USA,2009,1,17,65,13.5,3.3,4.5,5.0,0.027999999999999997,0.079,0.218,0.496,0.215,2011-12 7128,Julyan Stone,DEN,23.0,198.12,90.7184,Texas-El Paso,USA,Undrafted,Undrafted,Undrafted,22,1.6,1.1,1.7,4.6,0.03,0.124,0.107,0.502,0.257,2011-12 7129,Justin Dentmon,TOR,26.0,180.34,83.91452,Washington,USA,Undrafted,Undrafted,Undrafted,6,4.3,1.3,1.7,-13.5,0.0,0.092,0.19899999999999998,0.424,0.256,2011-12 7130,Justin Harper,ORL,22.0,208.28,102.0582,Richmond,USA,2011,2,32,14,1.4,0.9,0.1,-24.3,0.037000000000000005,0.145,0.213,0.318,0.047,2011-12 7131,Juwan Howard,MIA,39.0,205.74,113.398,Michigan,USA,1994,1,5,28,1.5,1.7,0.4,-12.2,0.105,0.193,0.19,0.354,0.098,2011-12 7132,Kawhi Leonard,SAS,21.0,200.66,102.0582,San Diego State,USA,2011,1,15,64,7.9,5.1,1.1,5.2,0.078,0.165,0.14300000000000002,0.573,0.066,2011-12 7133,Keith Benson,GSW,23.0,210.82,104.32616,Oakland,USA,2011,2,48,3,0.0,1.0,0.0,44.1,0.25,0.1,0.05,0.0,0.0,2011-12 7134,Keith Bogans,NJN,32.0,195.58,97.52228000000001,Kentucky,USA,2003,2,43,5,4.2,2.2,0.6,-19.7,0.059000000000000004,0.081,0.135,0.45299999999999996,0.057999999999999996,2011-12 7135,Kelenna Azubuike,DAL,28.0,195.58,97.52228000000001,Kentucky,England,Undrafted,Undrafted,Undrafted,3,2.3,0.0,0.0,-22.1,0.0,0.0,0.305,0.43799999999999994,0.0,2011-12 7136,Kemba Walker,CHA,22.0,185.42,83.46092800000001,Connecticut,USA,2011,1,9,66,12.1,3.5,4.4,-15.1,0.018000000000000002,0.136,0.253,0.46399999999999997,0.307,2011-12 7137,Kyrie Irving,CLE,20.0,190.5,86.636072,Duke,Australia,2011,1,1,51,18.5,3.7,5.4,-5.6,0.031,0.11199999999999999,0.281,0.5660000000000001,0.324,2011-12 7138,Kenneth Faried,DEN,22.0,203.2,103.418976,Morehead State,USA,2011,1,22,46,10.2,7.7,0.8,0.4,0.158,0.231,0.182,0.618,0.055,2011-12 7139,Kenyon Martin,LAC,34.0,205.74,108.86208,Cincinnati,USA,2000,1,1,42,5.2,4.3,0.4,1.4,0.061,0.174,0.13699999999999998,0.445,0.031,2011-12 7140,Kevin Durant,OKC,23.0,205.74,106.59411999999999,Texas,USA,2007,1,2,66,28.0,8.0,3.5,7.7,0.019,0.2,0.308,0.61,0.17,2011-12 7141,Kevin Garnett,BOS,36.0,210.82,114.758776,None,USA,1995,1,5,60,15.8,8.2,2.9,7.7,0.045,0.261,0.251,0.55,0.171,2011-12 7142,Kevin Love,MIN,23.0,208.28,117.93392,UCLA,USA,2008,1,5,55,26.0,13.3,2.0,0.3,0.11599999999999999,0.26899999999999996,0.285,0.568,0.098,2011-12 7143,Kevin Martin,HOU,29.0,200.66,83.91452,Western Carolina,USA,2004,1,26,40,17.1,2.7,2.8,0.4,0.012,0.086,0.245,0.5539999999999999,0.146,2011-12 7144,Keyon Dooling,BOS,32.0,190.5,88.45044,Missouri,USA,2000,1,10,46,4.0,0.8,1.1,-9.5,0.006,0.064,0.158,0.515,0.138,2011-12 7145,Kirk Hinrich,ATL,31.0,193.04,86.18248,Kansas,USA,2003,1,7,48,6.6,2.1,2.8,1.5,0.011000000000000001,0.086,0.141,0.511,0.162,2011-12 7146,Klay Thompson,GSW,22.0,200.66,92.98635999999999,Washington State,USA,2011,1,11,66,12.5,2.4,2.0,-4.0,0.017,0.09699999999999999,0.249,0.545,0.142,2011-12 7147,Kobe Bryant,LAL,33.0,198.12,92.98635999999999,None,USA,1996,1,13,58,27.9,5.4,4.6,3.1,0.035,0.11699999999999999,0.354,0.527,0.237,2011-12 7148,Kosta Koufos,DEN,23.0,213.36,120.20188,Ohio State,USA,2008,1,23,48,5.5,5.4,0.3,5.4,0.146,0.233,0.14,0.608,0.027999999999999997,2011-12 7149,Kris Humphries,NJN,27.0,205.74,106.59411999999999,Minnesota,USA,2004,1,14,62,13.8,11.0,1.5,-5.1,0.126,0.242,0.193,0.539,0.073,2011-12 7150,Kurt Thomas,POR,39.0,205.74,104.32616,Texas Christian,USA,1995,1,10,53,3.0,3.5,0.9,-1.5,0.055999999999999994,0.21600000000000003,0.113,0.483,0.092,2011-12 7151,Kwame Brown,GSW,30.0,210.82,122.46983999999999,None,USA,2001,1,1,9,6.3,6.3,0.4,-6.1,0.095,0.248,0.16699999999999998,0.519,0.034,2011-12 7152,Kyle Korver,CHI,31.0,200.66,96.16150400000001,Creighton,USA,2003,2,51,65,8.1,2.4,1.7,10.2,0.019,0.10099999999999999,0.151,0.6,0.11900000000000001,2011-12 7153,Kyle Lowry,HOU,26.0,182.88,92.98635999999999,Villanova,USA,2006,1,24,47,14.3,4.5,6.6,1.8,0.027999999999999997,0.13699999999999998,0.218,0.5579999999999999,0.324,2011-12 7154,Josh McRoberts,LAL,25.0,208.28,108.86208,Duke,USA,2007,2,37,50,2.8,3.4,1.0,-6.1,0.098,0.175,0.106,0.516,0.106,2011-12 7155,Josh Howard,UTA,32.0,200.66,95.25432,Wake Forest,USA,2003,1,29,43,8.7,3.7,1.2,-0.5,0.044000000000000004,0.145,0.207,0.461,0.081,2011-12 7156,Nolan Smith,POR,24.0,187.96,83.91452,Duke,USA,2011,1,21,40,2.8,0.7,0.9,-4.2,0.027000000000000003,0.075,0.245,0.435,0.22899999999999998,2012-13 7157,Nikola Vucevic,ORL,22.0,213.36,108.86208,Southern California,Montenegro,2011,1,16,77,13.1,11.9,1.9,-8.1,0.12,0.287,0.19399999999999998,0.534,0.09300000000000001,2012-13 7158,Norris Cole,MIA,24.0,187.96,79.3786,Cleveland State,USA,2011,1,28,80,5.6,1.6,2.1,3.1,0.015,0.083,0.17300000000000001,0.483,0.165,2012-13 7159,Ray Allen,MIA,37.0,195.58,92.98635999999999,Connecticut,USA,1996,1,5,79,10.9,2.7,1.7,5.5,0.025,0.105,0.193,0.599,0.107,2012-13 7160,Omer Asik,HOU,26.0,213.36,115.66596000000001,None,Turkey,2008,2,36,82,10.1,11.7,0.9,5.9,0.13,0.303,0.16399999999999998,0.5579999999999999,0.046,2012-13 7161,Reggie Jackson,OKC,23.0,190.5,94.34713599999999,Boston College,USA,2011,1,24,70,5.3,2.4,1.7,7.4,0.025,0.163,0.19,0.531,0.204,2012-13 7162,Reggie Evans,BKN,33.0,203.2,111.13004,Iowa,USA,Undrafted,Undrafted,Undrafted,80,4.5,11.1,0.5,4.4,0.159,0.39,0.111,0.506,0.032,2012-13 7163,Raymond Felton,NYK,29.0,185.42,92.98635999999999,North Carolina,USA,2005,1,5,68,13.9,2.9,5.5,5.9,0.025,0.075,0.21899999999999997,0.505,0.26,2012-13 7164,Rasheed Wallace,NYK,38.0,210.82,104.32616,North Carolina,USA,1995,1,4,21,7.0,4.0,0.3,3.7,0.042,0.27,0.268,0.484,0.039,2012-13 7165,Randy Foye,UTA,29.0,193.04,96.615096,Villanova,USA,2006,1,7,82,10.8,1.5,2.0,-2.8,0.009000000000000001,0.057999999999999996,0.185,0.55,0.11599999999999999,2012-13 7166,Ramon Sessions,CHA,27.0,190.5,86.18248,Nevada,USA,2007,2,56,61,14.4,2.8,3.8,-12.3,0.018000000000000002,0.10099999999999999,0.252,0.529,0.266,2012-13 7167,Rajon Rondo,BOS,27.0,185.42,84.368112,Kentucky,USA,2006,1,21,38,13.7,5.6,11.1,-1.3,0.036000000000000004,0.139,0.215,0.516,0.49,2012-13 7168,Quincy Pondexter,MEM,25.0,198.12,102.0582,Washington,USA,2010,1,26,59,6.4,2.2,1.0,1.6,0.04,0.086,0.138,0.565,0.076,2012-13 7169,Quincy Miller,DEN,20.0,205.74,95.25432,Baylor,USA,2012,2,38,7,1.3,0.3,0.4,-3.7,0.036000000000000004,0.038,0.19899999999999998,0.349,0.14300000000000002,2012-13 7170,Quincy Acy,TOR,22.0,200.66,102.0582,Baylor,USA,2012,2,37,29,4.0,2.7,0.4,12.1,0.10800000000000001,0.152,0.146,0.632,0.051,2012-13 7171,Quentin Richardson,NYK,33.0,198.12,103.418976,DePaul,USA,2000,1,18,1,5.0,10.0,1.0,-14.8,0.125,0.156,0.2,0.21,0.055999999999999994,2012-13 7172,Perry Jones III,OKC,21.0,210.82,106.59411999999999,Baylor,USA,2012,1,28,38,2.3,1.6,0.3,1.9,0.049,0.195,0.198,0.41700000000000004,0.057,2012-13 7173,Paul Pierce,BOS,35.0,200.66,106.59411999999999,Kansas,USA,1998,1,10,77,18.6,6.3,4.8,3.5,0.021,0.192,0.27399999999999997,0.5589999999999999,0.245,2012-13 7174,Paul Millsap,UTA,28.0,203.2,114.758776,Louisiana Tech,USA,2006,2,47,78,14.6,7.1,2.6,0.0,0.086,0.19399999999999998,0.228,0.55,0.14300000000000002,2012-13 7175,Paul George,IND,23.0,203.2,100.243832,Fresno State,USA,2010,1,10,79,17.4,7.6,4.1,7.2,0.034,0.18899999999999997,0.235,0.531,0.191,2012-13 7176,Pau Gasol,LAL,32.0,213.36,113.398,None,Spain,2001,1,3,49,13.7,8.6,4.1,3.3,0.079,0.2,0.205,0.512,0.196,2012-13 7177,Patty Mills,SAS,24.0,182.88,83.91452,Saint Mary's (CA),Australia,2009,2,55,58,5.1,0.9,1.1,2.2,0.017,0.07,0.19899999999999998,0.59,0.147,2012-13 7178,Patrick Patterson,SAC,24.0,205.74,106.59411999999999,Kentucky,USA,2010,1,14,71,10.4,4.7,1.1,1.0,0.07400000000000001,0.14400000000000002,0.175,0.5660000000000001,0.07,2012-13 7179,Patrick Beverley,HOU,24.0,185.42,83.91452,Arkansas,USA,2009,2,42,41,5.6,2.7,2.9,7.4,0.07,0.10400000000000001,0.154,0.551,0.262,2012-13 7180,Pablo Prigioni,NYK,36.0,190.5,83.91452,None,Argentina,Undrafted,Undrafted,Undrafted,78,3.5,1.8,3.0,8.0,0.038,0.10099999999999999,0.121,0.595,0.27699999999999997,2012-13 7181,PJ Tucker,PHX,28.0,198.12,101.604608,Texas,USA,2006,2,35,79,6.4,4.4,1.4,-4.8,0.077,0.131,0.127,0.525,0.085,2012-13 7182,Orlando Johnson,IND,24.0,195.58,99.79024,California-Santa Barbara,USA,2012,2,36,51,4.0,2.2,0.9,1.6,0.038,0.16,0.168,0.523,0.135,2012-13 7183,Omri Casspi,CLE,25.0,205.74,102.0582,None,Israel,2009,1,23,43,4.0,2.7,0.7,-6.4,0.040999999999999995,0.217,0.179,0.486,0.09300000000000001,2012-13 7184,O.J. Mayo,DAL,25.0,193.04,95.25432,Southern California,USA,2008,1,3,82,15.3,3.5,4.4,-2.0,0.013999999999999999,0.095,0.209,0.556,0.191,2012-13 7185,Nikola Pekovic,MIN,27.0,210.82,131.54168,None,Montenegro,2008,2,31,62,16.3,8.8,0.9,-1.9,0.131,0.188,0.223,0.5720000000000001,0.048,2012-13 7186,Metta World Peace,LAL,33.0,200.66,117.93392,St. John's (NY),USA,1999,1,16,75,12.4,5.0,1.5,4.9,0.046,0.115,0.17600000000000002,0.517,0.067,2012-13 7187,Nick Young,PHI,28.0,200.66,95.25432,Southern California,USA,2007,1,16,59,10.6,2.2,1.4,-5.2,0.019,0.085,0.21,0.525,0.099,2012-13 7188,Marquis Daniels,MIL,32.0,198.12,90.7184,Auburn,USA,Undrafted,Undrafted,Undrafted,59,5.5,2.5,1.1,-3.8,0.044000000000000004,0.107,0.16899999999999998,0.43200000000000005,0.096,2012-13 7189,Markieff Morris,PHX,23.0,208.28,111.13004,Kansas,USA,2011,1,13,82,8.2,4.8,1.3,-10.1,0.081,0.174,0.198,0.473,0.095,2012-13 7190,Mario Chalmers,MIA,27.0,187.96,86.18248,Kansas,USA,2008,2,34,77,8.6,2.2,3.5,14.6,0.012,0.086,0.16,0.5760000000000001,0.183,2012-13 7191,Marcus Thornton,SAC,26.0,193.04,92.98635999999999,Louisiana State,USA,2009,2,43,72,12.7,2.5,1.3,-9.3,0.032,0.09300000000000001,0.23199999999999998,0.552,0.092,2012-13 7192,Marcus Morris,PHX,23.0,205.74,106.59411999999999,Kansas,USA,2011,1,14,77,7.7,3.6,0.8,-4.2,0.059000000000000004,0.146,0.188,0.516,0.068,2012-13 7193,Marcus Camby,NYK,39.0,210.82,108.86208,Massachusetts,USA,1996,1,2,24,1.8,3.3,0.6,-0.3,0.10400000000000001,0.275,0.147,0.342,0.096,2012-13 7194,Marco Belinelli,CHI,27.0,195.58,88.45044,None,Italy,2007,1,18,73,9.6,1.9,2.0,-1.6,0.008,0.077,0.18899999999999997,0.513,0.132,2012-13 7195,Marcin Gortat,PHX,29.0,210.82,108.86208,None,Poland,2005,2,57,61,11.1,8.5,1.2,-6.2,0.077,0.243,0.174,0.5429999999999999,0.063,2012-13 7196,Marc Gasol,MEM,28.0,215.9,120.20188,None,Spain,2007,2,48,80,14.1,7.8,4.0,7.5,0.078,0.19,0.19399999999999998,0.5589999999999999,0.19,2012-13 7197,MarShon Brooks,BKN,24.0,195.58,90.7184,Providence,USA,2011,1,25,73,5.4,1.4,1.0,-2.6,0.04,0.095,0.22399999999999998,0.523,0.153,2012-13 7198,Marquis Teague,CHI,20.0,187.96,86.18248,Kentucky,USA,2012,1,29,48,2.1,0.9,1.3,-2.7,0.009000000000000001,0.126,0.187,0.41200000000000003,0.275,2012-13 7199,Manu Ginobili,SAS,35.0,198.12,92.98635999999999,None,Argentina,1999,2,57,60,11.8,3.4,4.6,7.8,0.026000000000000002,0.134,0.244,0.56,0.308,2012-13 7200,Malcolm Lee,MIN,23.0,195.58,90.7184,UCLA,USA,2011,2,43,16,4.9,2.4,1.3,2.1,0.055999999999999994,0.096,0.145,0.46,0.111,2012-13 7201,Maalik Wayns,LAC,22.0,185.42,88.45044,Villanova,USA,Undrafted,Undrafted,Undrafted,27,2.8,0.3,1.0,-16.4,0.005,0.036000000000000004,0.251,0.39399999999999996,0.233,2012-13 7202,Luol Deng,CHI,28.0,205.74,99.79024,Duke,United Kingdom,2004,1,7,75,16.5,6.3,3.0,-0.2,0.063,0.125,0.213,0.508,0.131,2012-13 7203,Luke Zeller,PHX,26.0,210.82,111.13004,Notre Dame,USA,Undrafted,Undrafted,Undrafted,16,1.2,0.6,0.2,-34.4,0.013999999999999999,0.16699999999999998,0.195,0.365,0.10300000000000001,2012-13 7204,Luke Walton,CLE,33.0,203.2,106.59411999999999,Arizona,USA,2003,2,32,50,3.4,2.9,3.3,-2.9,0.052000000000000005,0.157,0.134,0.45299999999999996,0.28600000000000003,2012-13 7205,Luke Ridnour,MIN,32.0,187.96,79.3786,Oregon,USA,2003,1,14,82,11.5,2.5,3.8,-3.5,0.019,0.079,0.182,0.532,0.21100000000000002,2012-13 7206,Luke Babbitt,POR,24.0,205.74,102.0582,Nevada,USA,2010,1,16,62,3.9,2.2,0.5,-3.4,0.023,0.191,0.162,0.509,0.064,2012-13 7207,Luis Scola,PHX,33.0,205.74,111.13004,None,Argentina,2002,2,55,82,12.8,6.6,2.2,-6.3,0.08,0.20600000000000002,0.23,0.516,0.14,2012-13 7208,Luc Mbah a Moute,MIL,26.0,203.2,104.32616,UCLA,Cameroon,2008,2,37,58,6.7,4.4,0.9,-0.4,0.069,0.138,0.16699999999999998,0.447,0.063,2012-13 7209,Reggie Williams,CHA,26.0,201.0,86.0,Virginia Military Institute,USA,Undrafted,Undrafted,Undrafted,40,3.7,1.3,1.0,-6.7,0.022000000000000002,0.11900000000000001,0.192,0.517,0.18,2012-13 7210,Malcolm Thomas,CHI,24.0,205.74,102.0582,San Diego State,USA,Undrafted,Undrafted,Undrafted,12,1.3,1.3,0.3,32.5,0.098,0.22899999999999998,0.135,0.555,0.1,2012-13 7211,Marreese Speights,CLE,25.0,208.28,115.66596000000001,Florida,USA,2008,1,16,79,8.3,4.9,0.6,-4.4,0.126,0.228,0.257,0.498,0.067,2012-13 7212,Martell Webster,WAS,26.0,200.66,104.32616,None,USA,2005,1,6,76,11.4,3.9,1.9,-1.3,0.027000000000000003,0.12300000000000001,0.16899999999999998,0.601,0.105,2012-13 7213,Marvin Williams,UTA,27.0,205.74,111.13004,North Carolina,USA,2005,1,2,73,7.2,3.6,1.1,-3.3,0.036000000000000004,0.138,0.154,0.515,0.07200000000000001,2012-13 7214,Nick Collison,OKC,32.0,208.28,115.66596000000001,Kansas,USA,2003,1,12,81,5.1,4.1,1.5,12.3,0.09699999999999999,0.149,0.114,0.624,0.11199999999999999,2012-13 7215,Nene,WAS,30.0,210.82,113.398,None,Brazil,2002,1,7,61,12.6,6.7,2.9,3.0,0.069,0.204,0.235,0.5379999999999999,0.184,2012-13 7216,Nazr Mohammed,CHI,35.0,208.28,113.398,Kentucky,USA,1998,1,29,63,2.6,3.1,0.4,-0.7,0.11800000000000001,0.21899999999999997,0.153,0.414,0.06,2012-13 7217,Nate Robinson,CHI,29.0,175.26,81.64656,Washington,USA,2005,1,21,82,13.1,2.2,4.4,0.0,0.015,0.08800000000000001,0.25,0.54,0.312,2012-13 7218,Nando De Colo,SAS,26.0,195.58,90.7184,None,France,2009,2,53,72,3.8,1.9,1.9,-1.2,0.03,0.136,0.171,0.53,0.233,2012-13 7219,Monta Ellis,MIL,27.0,190.5,83.91452,None,USA,2005,2,40,82,19.2,3.9,6.0,-0.4,0.015,0.098,0.261,0.493,0.262,2012-13 7220,Mo Williams,UTA,30.0,185.42,88.45044,Alabama,USA,2003,2,47,46,12.9,2.4,6.2,-2.6,0.019,0.07200000000000001,0.225,0.519,0.324,2012-13 7221,Mirza Teletovic,BKN,27.0,205.74,115.66596000000001,None,Bosnia,Undrafted,Undrafted,Undrafted,53,3.5,1.8,0.4,-2.5,0.07200000000000001,0.147,0.196,0.495,0.08,2012-13 7222,Miles Plumlee,IND,24.0,210.82,115.66596000000001,Duke,USA,2012,1,26,14,0.9,1.6,0.1,-8.4,0.179,0.159,0.188,0.28600000000000003,0.061,2012-13 7223,Mike Scott,ATL,24.0,203.2,107.501304,Virginia,USA,2012,2,43,40,4.6,2.8,0.3,-6.7,0.11599999999999999,0.20800000000000002,0.231,0.5329999999999999,0.057999999999999996,2012-13 7224,Mike Miller,MIA,33.0,203.2,95.25432,Florida,USA,2000,1,5,59,4.8,2.7,1.7,5.3,0.026000000000000002,0.17600000000000002,0.145,0.596,0.16699999999999998,2012-13 7225,Mike James,DAL,38.0,187.96,85.275296,Duquesne,USA,Undrafted,Undrafted,Undrafted,45,6.1,1.6,3.1,3.0,0.012,0.08,0.184,0.48100000000000004,0.23600000000000002,2012-13 7226,Mike Dunleavy,MIL,32.0,205.74,104.32616,Duke,USA,2002,1,3,75,10.5,3.9,1.9,1.0,0.017,0.146,0.17300000000000001,0.5770000000000001,0.114,2012-13 7227,Mike Conley,MEM,25.0,185.42,83.91452,Ohio State,USA,2007,1,4,80,14.6,2.8,6.1,9.0,0.018000000000000002,0.079,0.209,0.5489999999999999,0.287,2012-13 7228,Mickael Pietrus,TOR,31.0,198.12,97.52228000000001,None,France,2003,1,11,19,5.3,1.9,0.5,-2.5,0.016,0.10300000000000001,0.152,0.47200000000000003,0.034,2012-13 7229,Mickael Gelabale,MIN,30.0,200.66,97.52228000000001,None,USA,2005,2,48,36,5.0,2.8,0.7,-4.8,0.057,0.12,0.11800000000000001,0.605,0.064,2012-13 7230,Michael Kidd-Gilchrist,CHA,19.0,200.66,105.23334399999999,Kentucky,USA,2012,1,2,78,9.0,5.8,1.5,-8.2,0.07200000000000001,0.188,0.179,0.506,0.096,2012-13 7231,Michael Beasley,PHX,24.0,208.28,106.59411999999999,Kansas State,USA,2008,1,2,75,10.1,3.8,1.5,-11.5,0.038,0.17,0.276,0.462,0.125,2012-13 7232,Meyers Leonard,POR,21.0,215.9,111.13004,Illinois,USA,2012,1,11,69,5.5,3.7,0.5,-8.1,0.08,0.175,0.141,0.596,0.045,2012-13 7233,Maurice Harkless,ORL,20.0,203.2,95.25432,St. John's (NY),USA,2012,1,15,76,8.2,4.4,0.7,-11.9,0.068,0.121,0.159,0.504,0.04,2012-13 7234,Matt Carroll,CHA,32.0,198.12,96.16150400000001,Notre Dame,USA,Undrafted,Undrafted,Undrafted,1,0.0,0.0,1.0,-21.5,0.0,0.0,0.0,0.0,0.33299999999999996,2012-13 7235,Matt Bonner,SAS,33.0,208.28,106.59411999999999,Florida,USA,2003,2,45,68,4.2,1.9,0.5,4.0,0.032,0.132,0.126,0.609,0.057,2012-13 7236,Matt Barnes,LAC,33.0,200.66,102.511792,UCLA,USA,2002,2,45,80,10.3,4.6,1.5,6.8,0.065,0.14,0.18,0.5660000000000001,0.095,2012-13 7237,Nicolas Batum,POR,24.0,203.2,90.7184,None,France,2008,1,25,73,14.3,5.6,4.9,-2.5,0.04,0.13,0.182,0.5660000000000001,0.19899999999999998,2012-13 7238,Richard Hamilton,CHI,35.0,200.66,87.543256,Connecticut,USA,1999,1,7,50,9.8,1.7,2.4,-2.2,0.016,0.071,0.248,0.48100000000000004,0.191,2012-13 7239,Tiago Splitter,SAS,28.0,210.82,108.86208,None,Brazil,2007,1,28,81,10.3,6.4,1.6,10.3,0.09,0.201,0.183,0.609,0.099,2012-13 7240,Ricky Rubio,MIN,22.0,193.04,81.64656,None,Spain,2009,1,5,57,10.7,4.0,7.3,-2.9,0.028999999999999998,0.134,0.213,0.48200000000000004,0.391,2012-13 7241,Tyler Hansbrough,IND,27.0,205.74,113.398,North Carolina,USA,2009,1,13,81,7.0,4.6,0.4,-0.6,0.128,0.171,0.203,0.527,0.05,2012-13 7242,Ty Lawson,DEN,25.0,180.34,88.45044,North Carolina,USA,2009,1,18,73,16.7,2.7,6.9,4.4,0.016,0.071,0.22,0.5489999999999999,0.295,2012-13 7243,Troy Murphy,DAL,33.0,210.82,111.13004,Notre Dame,USA,2001,1,14,14,4.6,3.5,0.5,-5.5,0.031,0.179,0.132,0.494,0.045,2012-13 7244,Tristan Thompson,CLE,22.0,205.74,102.965384,Texas,Canada,2011,1,4,82,11.7,9.4,1.3,-5.7,0.131,0.218,0.183,0.516,0.069,2012-13 7245,Trevor Booker,WAS,25.0,203.2,108.86208,Clemson,USA,2010,1,23,48,5.3,5.0,0.8,-9.3,0.12,0.18100000000000002,0.145,0.509,0.079,2012-13 7246,Trevor Ariza,WAS,28.0,203.2,95.25432,UCLA,USA,2004,2,43,56,9.5,4.8,2.0,-0.4,0.033,0.16699999999999998,0.17800000000000002,0.5379999999999999,0.132,2012-13 7247,Travis Outlaw,SAC,28.0,205.74,93.89354399999999,None,USA,2003,1,23,38,5.3,1.6,0.6,-6.6,0.04,0.107,0.217,0.5,0.079,2012-13 7248,Tornike Shengelia,BKN,21.0,205.74,108.86208,None,Georgia,2012,2,54,19,1.6,1.2,0.2,2.7,0.1,0.184,0.188,0.499,0.05,2012-13 7249,Tony Wroten,MEM,20.0,198.12,94.34713599999999,Washington,USA,2012,1,25,35,2.6,0.8,1.2,-11.6,0.052000000000000005,0.063,0.213,0.461,0.262,2012-13 7250,Tony Parker,SAS,31.0,187.96,83.91452,None,France,2001,1,28,66,20.3,3.0,7.6,10.7,0.01,0.091,0.28,0.588,0.396,2012-13 7251,Tony Allen,MEM,31.0,193.04,96.615096,Oklahoma State,USA,2004,1,25,79,8.9,4.6,1.2,6.8,0.067,0.139,0.179,0.489,0.076,2012-13 7252,Toney Douglas,SAC,27.0,187.96,83.91452,Florida State,USA,2009,1,29,71,7.5,1.9,2.1,3.1,0.03,0.09300000000000001,0.19699999999999998,0.531,0.17600000000000002,2012-13 7253,Tobias Harris,ORL,20.0,203.2,102.511792,Tennessee,USA,2011,1,19,55,11.0,5.2,1.3,-7.8,0.06,0.188,0.218,0.527,0.087,2012-13 7254,Timofey Mozgov,DEN,26.0,215.9,113.398,None,Russia,Undrafted,Undrafted,Undrafted,41,2.6,2.6,0.2,-7.2,0.146,0.16,0.146,0.5489999999999999,0.039,2012-13 7255,Tim Ohlbrecht,HOU,24.0,210.82,115.66596000000001,None,Germany,Undrafted,Undrafted,Undrafted,3,1.0,0.3,0.3,-33.4,0.0,0.1,0.287,0.436,0.25,2012-13 7256,Tim Duncan,SAS,37.0,210.82,115.66596000000001,Wake Forest,US Virgin Islands,1997,1,1,69,17.8,9.9,2.7,10.5,0.075,0.287,0.27899999999999997,0.5539999999999999,0.151,2012-13 7257,Lou Williams,ATL,26.0,185.42,79.3786,None,USA,2005,2,45,39,14.1,2.1,3.6,0.0,0.008,0.07400000000000001,0.23600000000000002,0.555,0.218,2012-13 7258,Tyler Honeycutt,SAC,22.0,203.2,85.275296,UCLA,USA,2011,2,35,9,0.9,1.1,0.2,-17.8,0.081,0.233,0.217,0.337,0.111,2012-13 7259,Tyler Zeller,CLE,23.0,213.36,113.398,North Carolina,USA,2012,1,17,77,7.9,5.7,1.2,-8.0,0.086,0.162,0.159,0.486,0.075,2012-13 7260,Tyreke Evans,SAC,23.0,198.12,99.79024,Memphis,USA,2009,1,4,65,15.2,4.4,3.5,-5.7,0.031,0.13699999999999998,0.22399999999999998,0.5579999999999999,0.19,2012-13 7261,Tyrus Thomas,CHA,26.0,208.28,102.0582,Louisiana State,USA,2006,1,4,26,4.8,2.3,0.7,-12.1,0.048,0.14300000000000002,0.213,0.418,0.094,2012-13 7262,Zaza Pachulia,ATL,29.0,210.82,124.7378,None,Georgia,2003,2,42,52,5.9,6.5,1.5,0.7,0.139,0.215,0.145,0.534,0.107,2012-13 7263,Zach Randolph,MEM,31.0,205.74,117.93392,Michigan State,USA,2001,1,19,76,15.4,11.2,1.4,4.6,0.13699999999999998,0.256,0.23,0.506,0.073,2012-13 7264,Xavier Henry,NOH,22.0,198.12,99.79024,Kansas,USA,2010,1,12,50,3.9,1.8,0.3,-13.9,0.038,0.146,0.17300000000000001,0.48100000000000004,0.036000000000000004,2012-13 7265,Wilson Chandler,DEN,26.0,203.2,102.0582,DePaul,USA,2007,1,23,43,13.0,5.1,1.3,9.3,0.049,0.17300000000000001,0.228,0.556,0.08199999999999999,2012-13 7266,Willie Green,LAC,31.0,190.5,91.171992,Detroit Mercy,USA,2003,2,41,72,6.3,1.3,0.8,4.4,0.017,0.08199999999999999,0.16899999999999998,0.562,0.07,2012-13 7267,Will Conroy,MIN,30.0,187.96,88.45044,Washington,USA,Undrafted,Undrafted,Undrafted,4,0.3,0.3,0.0,-100.2,0.042,0.0,0.213,0.051,0.0,2012-13 7268,Will Bynum,DET,30.0,182.88,83.91452,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,65,9.8,1.5,3.6,-6.6,0.026000000000000002,0.068,0.267,0.532,0.341,2012-13 7269,Will Barton,POR,22.0,195.58,77.11064,Memphis,USA,2012,2,40,73,4.0,2.0,0.8,-13.4,0.045,0.147,0.203,0.43700000000000006,0.113,2012-13 7270,Thomas Robinson,HOU,22.0,208.28,107.501304,Kansas,USA,2012,1,5,70,4.8,4.5,0.7,-7.0,0.126,0.21100000000000002,0.19,0.451,0.073,2012-13 7271,Wesley Matthews,POR,26.0,195.58,99.79024,Marquette,USA,Undrafted,Undrafted,Undrafted,69,14.8,2.8,2.5,-2.2,0.017,0.077,0.191,0.574,0.115,2012-13 7272,Wayne Ellington,CLE,25.0,193.04,90.7184,North Carolina,USA,2009,1,28,78,7.9,2.1,1.3,-0.3,0.017,0.1,0.168,0.546,0.1,2012-13 7273,Vladimir Radmanovic,CHI,32.0,208.28,106.59411999999999,None,Serbia,2001,1,12,25,1.3,1.1,0.3,-11.7,0.07200000000000001,0.155,0.16699999999999998,0.37200000000000005,0.099,2012-13 7274,Vince Carter,DAL,36.0,198.12,99.79024,North Carolina,USA,1998,1,5,81,13.4,4.1,2.4,4.7,0.032,0.142,0.228,0.5710000000000001,0.14800000000000002,2012-13 7275,Victor Claver,POR,24.0,205.74,101.604608,None,Spain,2009,1,22,49,3.8,2.4,0.9,-9.0,0.044000000000000004,0.131,0.139,0.462,0.079,2012-13 7276,Viacheslav Kravtsov,DET,25.0,210.82,112.037224,None,Ukraine,Undrafted,Undrafted,Undrafted,25,3.1,1.8,0.4,-6.2,0.127,0.111,0.153,0.618,0.062,2012-13 7277,Udonis Haslem,MIA,33.0,203.2,106.59411999999999,Florida,USA,Undrafted,Undrafted,Undrafted,75,3.9,5.4,0.5,11.9,0.091,0.26,0.107,0.535,0.037000000000000005,2012-13 7278,Tyson Chandler,NYK,30.0,215.9,108.86208,None,USA,2001,1,2,66,10.4,10.7,0.9,6.4,0.139,0.244,0.128,0.6709999999999999,0.044000000000000004,2012-13 7279,Tyshawn Taylor,BKN,23.0,190.5,83.91452,Kansas,USA,2012,2,41,38,2.2,0.5,0.6,-12.1,0.011000000000000001,0.08900000000000001,0.262,0.43,0.18100000000000002,2012-13 7280,Wesley Johnson,PHX,25.0,200.66,97.52228000000001,Syracuse,USA,2010,1,4,50,8.0,2.5,0.7,-11.8,0.024,0.12,0.21,0.485,0.061,2012-13 7281,Richard Jefferson,GSW,33.0,200.66,104.32616,Arizona,USA,2001,1,13,56,3.1,1.5,0.6,1.7,0.011000000000000001,0.154,0.146,0.552,0.08800000000000001,2012-13 7282,Thaddeus Young,PHI,25.0,203.2,106.59411999999999,Georgia Tech,USA,2007,1,12,76,14.8,7.5,1.6,-0.2,0.077,0.17,0.19899999999999998,0.541,0.078,2012-13 7283,Terrence Williams,BOS,26.0,198.12,99.79024,Louisville,USA,2009,1,11,24,4.6,1.8,1.6,0.7,0.015,0.142,0.188,0.518,0.19,2012-13 7284,Samuel Dalembert,MIL,33.0,210.82,113.398,Seton Hall,Haiti,2001,1,26,47,6.7,5.9,0.4,-7.8,0.139,0.266,0.183,0.565,0.044000000000000004,2012-13 7285,Samardo Samuels,CLE,24.0,205.74,117.93392,Louisville,Jamaica,Undrafted,Undrafted,Undrafted,18,3.2,1.6,0.4,-9.5,0.055,0.122,0.172,0.41100000000000003,0.069,2012-13 7286,Sam Young,IND,28.0,198.12,102.0582,Pittsburgh,USA,2009,2,36,56,2.8,2.2,0.8,-4.0,0.043,0.147,0.133,0.46399999999999997,0.107,2012-13 7287,Ryan Hollins,LAC,28.0,213.36,108.86208,UCLA,USA,2006,2,50,60,3.4,2.3,0.2,5.2,0.09300000000000001,0.14400000000000002,0.138,0.674,0.027000000000000003,2012-13 7288,Ryan Anderson,NOH,25.0,208.28,108.86208,California,USA,2008,1,21,81,16.2,6.4,1.2,-6.6,0.08800000000000001,0.16,0.24100000000000002,0.5479999999999999,0.071,2012-13 7289,Russell Westbrook,OKC,24.0,190.5,84.821704,UCLA,USA,2008,1,4,82,23.2,5.2,7.4,12.3,0.048,0.11599999999999999,0.324,0.532,0.37200000000000005,2012-13 7290,Rudy Gay,TOR,26.0,203.2,104.32616,Connecticut,USA,2006,1,8,75,18.2,6.1,2.7,3.1,0.044000000000000004,0.162,0.26899999999999996,0.494,0.134,2012-13 7291,Royal Ivey,PHI,31.0,193.04,90.7184,Texas,USA,2004,2,37,53,3.2,1.1,0.6,-4.4,0.026000000000000002,0.071,0.114,0.563,0.073,2012-13 7292,Roy Hibbert,IND,26.0,218.44,127.00576000000001,Georgetown,USA,2008,1,17,79,11.9,8.3,1.4,9.2,0.149,0.16899999999999998,0.225,0.489,0.083,2012-13 7293,Ronny Turiaf,LAC,30.0,208.28,112.94440800000001,Gonzaga,France,2005,2,37,65,1.9,2.3,0.5,3.2,0.077,0.16399999999999998,0.1,0.485,0.07400000000000001,2012-13 7294,Ronnie Price,POR,30.0,187.96,86.18248,Utah Valley,USA,Undrafted,Undrafted,Undrafted,39,2.7,1.1,1.9,-6.2,0.03,0.073,0.152,0.402,0.23199999999999998,2012-13 7295,Ronnie Brewer,OKC,28.0,200.66,102.0582,Arkansas,USA,2006,1,14,60,3.0,2.3,0.8,3.1,0.053,0.139,0.127,0.41600000000000004,0.087,2012-13 7296,Roger Mason Jr.,NOH,32.0,195.58,92.98635999999999,Virginia,USA,2002,2,30,69,5.3,1.9,1.1,-1.7,0.011000000000000001,0.11900000000000001,0.14300000000000002,0.57,0.091,2012-13 7297,Rodrigue Beaubois,DAL,25.0,187.96,83.91452,None,France,2009,1,25,45,4.0,1.3,1.9,3.5,0.017,0.098,0.185,0.47,0.237,2012-13 7298,Rodney Stuckey,DET,27.0,195.58,92.98635999999999,Eastern Washington,USA,2007,1,15,76,11.5,2.8,3.6,-7.4,0.022000000000000002,0.094,0.21,0.505,0.20800000000000002,2012-13 7299,Robin Lopez,NOH,25.0,213.36,115.66596000000001,Stanford,USA,2008,1,15,82,11.3,5.6,0.8,-4.2,0.124,0.131,0.19899999999999998,0.573,0.051,2012-13 7300,Robert Sacre,LAL,24.0,213.36,117.93392,Gonzaga,Canada,2012,2,60,32,1.3,1.1,0.2,-12.3,0.048,0.136,0.134,0.40700000000000003,0.045,2012-13 7301,Sasha Pavlovic,POR,29.0,200.66,106.59411999999999,None,Montenegro,2003,1,19,39,2.6,1.4,0.8,-3.6,0.015,0.11199999999999999,0.11800000000000001,0.423,0.09300000000000001,2012-13 7302,Scott Machado,GSW,23.0,185.42,92.98635999999999,Iona,USA,Undrafted,Undrafted,Undrafted,6,1.3,0.2,1.0,-21.5,0.0,0.055999999999999994,0.3,0.581,0.6,2012-13 7303,Sebastian Telfair,TOR,28.0,182.88,77.11064,None,USA,2004,1,13,59,5.6,1.4,2.6,-1.8,0.015,0.085,0.188,0.488,0.252,2012-13 7304,Serge Ibaka,OKC,23.0,208.28,106.59411999999999,None,Democratic Republic of the Congo,2008,1,24,80,13.2,7.7,0.5,11.2,0.111,0.16399999999999998,0.18,0.612,0.027999999999999997,2012-13 7305,Terrence Ross,TOR,22.0,198.12,88.45044,Washington,USA,2012,1,8,73,6.4,2.0,0.7,-3.3,0.032,0.106,0.195,0.491,0.073,2012-13 7306,Terrence Jones,HOU,21.0,205.74,114.30518400000001,Kentucky,USA,2012,1,18,19,5.5,3.4,0.8,-2.6,0.107,0.154,0.179,0.512,0.09,2012-13 7307,Terrel Harris,NOH,25.0,193.04,86.18248,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,20,0.8,1.3,0.5,0.9,0.036000000000000004,0.19,0.17300000000000001,0.239,0.107,2012-13 7308,Tayshaun Prince,MEM,33.0,205.74,97.52228000000001,Kentucky,USA,2002,1,23,82,10.4,4.4,2.4,2.3,0.032,0.127,0.172,0.486,0.122,2012-13 7309,Taj Gibson,CHI,28.0,205.74,102.0582,Southern California,USA,2009,1,26,65,8.0,5.3,0.9,4.8,0.1,0.17800000000000002,0.182,0.518,0.071,2012-13 7310,Steve Novak,NYK,30.0,208.28,106.59411999999999,Marquette,USA,2006,2,32,81,6.6,1.9,0.4,6.5,0.012,0.102,0.13,0.602,0.032,2012-13 7311,Steve Nash,LAL,39.0,190.5,80.73937600000001,Santa Clara,Canada,1996,1,15,50,12.7,2.8,6.7,1.4,0.018000000000000002,0.077,0.177,0.605,0.31,2012-13 7312,Steve Blake,LAL,33.0,190.5,78.017824,Maryland,USA,2003,2,38,45,7.3,2.9,3.8,2.1,0.02,0.10099999999999999,0.133,0.573,0.22699999999999998,2012-13 7313,Thabo Sefolosha,OKC,29.0,200.66,97.52228000000001,None,Switzerland,2006,1,13,81,7.6,3.9,1.5,12.5,0.032,0.121,0.114,0.617,0.08,2012-13 7314,Stephen Jackson,SAS,35.0,203.2,99.79024,Butler Community College,USA,1997,2,42,55,6.2,2.8,1.5,4.4,0.025,0.138,0.188,0.473,0.11,2012-13 7315,Spencer Hawes,PHI,25.0,215.9,111.13004,Washington,USA,2007,1,10,82,11.0,7.2,2.2,-3.6,0.085,0.214,0.207,0.514,0.134,2012-13 7316,Solomon Jones,NYK,28.0,208.28,111.13004,South Florida,USA,2006,2,33,2,0.0,1.5,0.0,2.7,0.038,0.091,0.073,0.0,0.0,2012-13 7317,Shelvin Mack,ATL,23.0,190.5,93.89354399999999,Butler,USA,2011,2,34,31,4.6,1.3,2.2,-3.3,0.008,0.096,0.18899999999999997,0.537,0.265,2012-13 7318,Shawn Marion,DAL,35.0,200.66,103.418976,Nevada-Las Vegas,USA,1999,1,9,67,12.1,7.8,2.4,-3.1,0.08199999999999999,0.203,0.18899999999999997,0.5529999999999999,0.129,2012-13 7319,Shavlik Randolph,BOS,29.0,208.28,107.047712,Duke,USA,Undrafted,Undrafted,Undrafted,16,4.2,4.4,0.3,1.6,0.183,0.263,0.16399999999999998,0.5589999999999999,0.027999999999999997,2012-13 7320,Shaun Livingston,CLE,27.0,200.66,79.3786,None,USA,2004,1,4,66,6.3,2.4,3.3,-4.1,0.024,0.10400000000000001,0.145,0.536,0.22899999999999998,2012-13 7321,Shannon Brown,PHX,27.0,193.04,95.25432,Michigan State,USA,2006,1,25,59,10.5,2.5,1.8,-8.1,0.035,0.09,0.225,0.493,0.127,2012-13 7322,Shane Battier,MIA,34.0,203.2,102.0582,Duke,USA,2001,1,6,72,6.6,2.3,1.0,11.9,0.027000000000000003,0.08199999999999999,0.111,0.623,0.057999999999999996,2012-13 7323,Stephen Curry,GSW,25.0,190.5,83.91452,Davidson,USA,2009,1,7,78,22.9,4.0,6.9,2.4,0.022000000000000002,0.092,0.261,0.589,0.298,2012-13 7324,Lou Amundson,NOH,30.0,205.74,102.0582,Nevada-Las Vegas,USA,Undrafted,Undrafted,Undrafted,39,1.9,2.7,0.3,-10.0,0.14300000000000002,0.203,0.145,0.392,0.051,2012-13 7325,Rashard Lewis,MIA,33.0,208.28,104.32616,None,USA,1998,2,32,55,5.2,2.2,0.5,0.6,0.03,0.153,0.182,0.53,0.063,2012-13 7326,Leandro Barbosa,BOS,30.0,190.5,87.996848,None,Brazil,2003,1,28,41,5.2,1.1,1.4,-1.9,0.019,0.084,0.21100000000000002,0.509,0.201,2012-13 7327,Daniel Orton,OKC,22.0,208.28,115.66596000000001,Kentucky,USA,2010,1,29,13,2.5,2.0,0.3,-4.2,0.131,0.138,0.161,0.493,0.062,2012-13 7328,Danilo Gallinari,DEN,24.0,208.28,102.0582,None,Italy,2008,1,6,71,16.2,5.2,2.5,7.2,0.033,0.14800000000000002,0.214,0.561,0.113,2012-13 7329,Danny Granger,IND,30.0,203.2,103.418976,New Mexico,USA,2005,1,17,5,5.4,1.8,0.6,-9.8,0.048,0.095,0.263,0.35,0.079,2012-13 7330,Danny Green,SAS,26.0,198.12,95.25432,North Carolina,USA,2009,2,46,80,10.5,3.1,1.8,7.8,0.02,0.10300000000000001,0.168,0.6,0.095,2012-13 7331,Dante Cunningham,MIN,26.0,203.2,104.32616,Villanova,USA,2009,2,33,80,8.7,5.1,0.8,-1.8,0.078,0.159,0.17300000000000001,0.485,0.055999999999999994,2012-13 7332,Darius Johnson-Odom,LAL,23.0,187.96,97.52228000000001,Marquette,USA,2012,2,55,4,0.0,1.0,0.3,-43.1,0.1,0.214,0.26899999999999996,0.0,0.33299999999999996,2012-13 7333,Daniel Gibson,CLE,27.0,187.96,90.7184,Texas,USA,2006,2,42,46,5.4,1.3,1.8,-13.5,0.006,0.077,0.14400000000000002,0.475,0.147,2012-13 7334,Darius Miller,NOH,23.0,203.2,106.59411999999999,Kentucky,USA,2012,2,46,52,2.3,1.5,0.8,-5.1,0.013000000000000001,0.12300000000000001,0.092,0.529,0.1,2012-13 7335,Darko Milicic,BOS,28.0,213.36,124.7378,None,Serbia,2003,1,2,1,0.0,1.0,0.0,-29.3,0.0,0.25,0.253,0.0,0.0,2012-13 7336,Darrell Arthur,MEM,25.0,205.74,106.59411999999999,Kansas,USA,2008,1,27,59,6.1,2.9,0.6,-5.2,0.08199999999999999,0.127,0.20199999999999999,0.47700000000000004,0.06,2012-13 7337,Darren Collison,DAL,25.0,182.88,79.3786,UCLA,USA,2009,1,21,81,12.0,2.7,5.1,-2.0,0.015,0.086,0.19399999999999998,0.575,0.264,2012-13 7338,David Lee,GSW,30.0,205.74,108.86208,Florida,USA,2005,1,30,79,18.5,11.2,3.5,3.1,0.086,0.245,0.23199999999999998,0.561,0.158,2012-13 7339,David West,IND,32.0,205.74,113.398,Xavier,USA,2003,1,18,73,17.1,7.7,2.9,8.5,0.07,0.19,0.24600000000000002,0.545,0.157,2012-13 7340,DeAndre Jordan,LAC,24.0,210.82,120.20188,Texas A&M,USA,2008,2,35,82,8.8,7.2,0.3,7.3,0.129,0.23199999999999998,0.16,0.606,0.02,2012-13 7341,Darius Morris,LAL,22.0,193.04,86.18248,Michigan,USA,2011,2,41,48,4.0,1.2,1.6,0.8,0.038,0.051,0.162,0.475,0.175,2012-13 7342,Damion James,BKN,25.0,200.66,102.0582,Texas,USA,2010,1,24,2,0.0,0.5,0.0,-34.7,0.0,0.5,0.0,0.0,0.0,2012-13 7343,Damien Wilkins,PHI,33.0,198.12,102.0582,Georgia,USA,Undrafted,Undrafted,Undrafted,61,6.4,1.7,1.5,-4.0,0.032,0.08,0.175,0.5329999999999999,0.134,2012-13 7344,Damian Lillard,POR,22.0,190.5,88.45044,Weber State,USA,2012,1,6,82,19.0,3.1,6.5,-2.1,0.015,0.079,0.24100000000000002,0.546,0.28,2012-13 7345,Chris Singleton,WAS,23.0,203.2,104.32616,Florida State,USA,2011,1,18,57,4.1,3.2,0.6,-4.6,0.06,0.166,0.157,0.425,0.065,2012-13 7346,Chris Wilcox,BOS,30.0,208.28,106.59411999999999,Maryland,USA,2002,1,8,61,4.2,3.0,0.4,-0.5,0.081,0.16399999999999998,0.11900000000000001,0.725,0.040999999999999995,2012-13 7347,Chris Wright,DAL,23.0,185.42,95.25432,Georgetown,USA,Undrafted,Undrafted,Undrafted,3,0.7,0.0,0.0,-75.0,0.0,0.0,0.253,0.5,0.0,2012-13 7348,Chuck Hayes,SAC,30.0,198.12,113.398,Kentucky,USA,Undrafted,Undrafted,Undrafted,74,2.7,4.0,1.5,-2.2,0.105,0.177,0.095,0.469,0.135,2012-13 7349,Cole Aldrich,SAC,24.0,210.82,108.86208,Kansas,USA,2010,1,11,45,2.2,2.7,0.2,1.8,0.086,0.249,0.125,0.563,0.032,2012-13 7350,Corey Brewer,DEN,27.0,205.74,85.275296,Florida,USA,2007,1,7,82,12.1,2.9,1.5,5.5,0.031,0.098,0.233,0.506,0.09699999999999999,2012-13 7351,Corey Maggette,DET,33.0,198.12,102.0582,Duke,USA,1999,1,13,18,5.3,1.4,1.1,-3.1,0.021,0.09,0.20199999999999999,0.489,0.121,2012-13 7352,Cory Higgins,CHA,24.0,195.58,81.64656,Colorado,USA,Undrafted,Undrafted,Undrafted,6,2.3,0.5,0.8,-7.9,0.036000000000000004,0.061,0.297,0.35200000000000004,0.278,2012-13 7353,Cory Joseph,SAS,21.0,190.5,83.91452,Texas,Canada,2011,1,29,28,4.5,1.9,1.9,-1.5,0.034,0.111,0.161,0.528,0.19899999999999998,2012-13 7354,Courtney Lee,BOS,27.0,195.58,90.7184,Western Kentucky,USA,2008,1,22,78,7.8,2.4,1.8,-0.6,0.02,0.09699999999999999,0.158,0.545,0.11599999999999999,2012-13 7355,D.J. Augustin,IND,25.0,182.88,83.007336,Texas,USA,2008,1,9,76,4.7,1.2,2.2,-1.1,0.019,0.065,0.151,0.527,0.242,2012-13 7356,DJ White,BOS,26.0,205.74,113.398,Indiana,USA,2008,1,29,12,2.4,1.1,0.3,13.9,0.061,0.111,0.165,0.5379999999999999,0.07,2012-13 7357,DaJuan Summers,LAC,25.0,203.2,108.86208,Georgetown,USA,2009,2,35,2,1.0,1.0,0.5,-6.7,0.0,0.33299999999999996,0.28800000000000003,0.25,0.25,2012-13 7358,Daequan Cook,CHI,26.0,195.58,95.25432,Ohio State,USA,2007,1,21,49,2.8,1.2,0.4,-5.8,0.017,0.146,0.188,0.39799999999999996,0.07200000000000001,2012-13 7359,Dahntay Jones,ATL,32.0,198.12,102.0582,Duke,USA,2003,1,20,78,3.4,1.3,0.6,-1.8,0.027000000000000003,0.08199999999999999,0.14,0.48200000000000004,0.07,2012-13 7360,DeAndre Liggins,OKC,25.0,198.12,94.800728,Kentucky,USA,2011,2,53,39,1.5,1.4,0.4,-2.9,0.05,0.155,0.109,0.528,0.077,2012-13 7361,DeJuan Blair,SAS,24.0,200.66,122.46983999999999,Pittsburgh,USA,2009,2,37,61,5.4,3.8,0.7,-1.4,0.091,0.213,0.187,0.5429999999999999,0.084,2012-13 7362,DeMar DeRozan,TOR,23.0,200.66,97.975872,Southern California,USA,2009,1,9,82,18.1,3.9,2.5,-2.4,0.019,0.10800000000000001,0.24100000000000002,0.523,0.12,2012-13 7363,DeMarcus Cousins,SAC,22.0,210.82,122.46983999999999,Kentucky,USA,2010,1,5,75,17.1,9.9,2.7,-7.3,0.109,0.278,0.281,0.524,0.154,2012-13 7364,Doron Lamb,ORL,21.0,193.04,95.25432,Kentucky,USA,2012,2,42,47,3.3,1.0,0.7,-8.9,0.016,0.075,0.156,0.433,0.085,2012-13 7365,Draymond Green,GSW,23.0,200.66,104.32616,Michigan State,USA,2012,2,35,79,2.9,3.3,0.7,0.4,0.062,0.204,0.141,0.40399999999999997,0.076,2012-13 7366,Drew Gooden,MIL,31.0,208.28,113.398,Kansas,USA,2002,1,4,16,3.3,1.9,0.4,-5.3,0.08199999999999999,0.134,0.217,0.382,0.065,2012-13 7367,Dwight Howard,LAL,27.0,210.82,120.20188,None,USA,2004,1,1,76,17.1,12.4,1.4,3.4,0.106,0.275,0.22399999999999998,0.573,0.068,2012-13 7368,Dwyane Wade,MIA,31.0,193.04,99.79024,Marquette,USA,2003,1,5,69,21.2,5.0,5.1,13.0,0.048,0.127,0.29100000000000004,0.5710000000000001,0.248,2012-13 7369,E'Twaun Moore,ORL,24.0,193.04,86.636072,Purdue,USA,2011,2,55,75,7.8,2.2,2.7,-10.0,0.031,0.08,0.196,0.47100000000000003,0.195,2012-13 7370,Earl Barron,NYK,31.0,213.36,113.398,Memphis,USA,Undrafted,Undrafted,Undrafted,12,3.3,5.1,0.4,-7.0,0.12300000000000001,0.289,0.17800000000000002,0.361,0.054000000000000006,2012-13 7371,Earl Clark,LAL,25.0,208.28,102.0582,Louisville,USA,2009,1,14,59,7.3,5.5,1.1,-2.6,0.069,0.193,0.159,0.51,0.073,2012-13 7372,Earl Watson,UTA,34.0,185.42,90.264808,UCLA,USA,2001,2,39,48,2.0,1.8,4.0,-4.6,0.032,0.096,0.105,0.366,0.326,2012-13 7373,Ed Davis,MEM,24.0,208.28,105.23334399999999,North Carolina,USA,2010,1,13,81,7.7,5.7,0.8,-0.2,0.11,0.231,0.179,0.561,0.066,2012-13 7374,Eddy Curry,DAL,30.0,213.36,133.80964,None,USA,2001,1,4,2,4.5,2.0,0.0,4.5,0.105,0.069,0.223,0.461,0.0,2012-13 7375,Ekpe Udoh,MIL,26.0,208.28,111.13004,Baylor,USA,2010,1,6,76,4.3,3.3,0.6,-3.0,0.092,0.11900000000000001,0.12300000000000001,0.503,0.049,2012-13 7376,Elton Brand,DAL,34.0,205.74,115.212368,Duke,USA,1999,1,1,72,7.2,6.0,1.0,-1.4,0.09699999999999999,0.21,0.172,0.499,0.07200000000000001,2012-13 7377,Emeka Okafor,WAS,30.0,208.28,115.66596000000001,Connecticut,USA,2004,1,2,79,9.7,8.8,1.2,-1.8,0.10400000000000001,0.263,0.19399999999999998,0.496,0.077,2012-13 7378,Enes Kanter,UTA,21.0,210.82,121.10906399999999,Kentucky,Turkey,2011,1,3,70,7.2,4.3,0.4,3.7,0.147,0.17600000000000002,0.21100000000000002,0.588,0.05,2012-13 7379,Dorell Wright,PHI,27.0,205.74,92.98635999999999,None,USA,2004,1,19,79,9.2,3.8,1.9,-5.7,0.026000000000000002,0.17300000000000001,0.18600000000000003,0.551,0.138,2012-13 7380,Chris Quinn,CLE,29.0,187.96,79.3786,Notre Dame,USA,Undrafted,Undrafted,Undrafted,7,1.4,0.3,1.3,3.7,0.015,0.017,0.132,0.29600000000000004,0.155,2012-13 7381,Donatas Motiejunas,HOU,22.0,213.36,100.697424,None,Lithuania,2011,1,20,44,5.7,2.1,0.7,3.1,0.078,0.11900000000000001,0.222,0.531,0.091,2012-13 7382,Dominique Jones,DAL,24.0,195.58,97.52228000000001,South Florida,USA,2010,1,25,29,4.0,1.6,2.9,-3.0,0.059000000000000004,0.087,0.23,0.43799999999999994,0.40299999999999997,2012-13 7383,DeMarre Carroll,UTA,26.0,203.2,96.16150400000001,Missouri,USA,2009,1,27,66,6.0,2.8,0.9,5.4,0.094,0.11,0.161,0.535,0.085,2012-13 7384,DeQuan Jones,ORL,23.0,203.2,100.243832,Miami (FL),USA,Undrafted,Undrafted,Undrafted,63,3.7,1.7,0.3,-10.8,0.023,0.122,0.15,0.485,0.03,2012-13 7385,DeSagana Diop,CHA,31.0,213.36,127.00576000000001,None,Senegal,2001,1,8,22,0.7,2.3,0.6,-6.3,0.051,0.193,0.073,0.292,0.087,2012-13 7386,DeShawn Stevenson,ATL,32.0,195.58,98.88305600000001,None,USA,2000,1,23,56,5.1,2.2,0.9,-1.1,0.018000000000000002,0.10300000000000001,0.11800000000000001,0.522,0.063,2012-13 7387,Derek Fisher,OKC,38.0,185.42,95.25432,Arkansas-Little Rock,USA,1996,1,24,33,5.3,1.1,1.4,6.5,0.004,0.07,0.168,0.49200000000000005,0.11699999999999999,2012-13 7388,Deron Williams,BKN,29.0,190.5,94.800728,Illinois,USA,2005,1,3,78,18.9,3.0,7.7,1.7,0.012,0.086,0.242,0.574,0.364,2012-13 7389,Derrick Favors,UTA,21.0,208.28,112.490816,Georgia Tech,USA,2010,1,3,77,9.4,7.1,1.0,-1.5,0.11900000000000001,0.23399999999999999,0.204,0.5329999999999999,0.071,2012-13 7390,Derrick Williams,MIN,22.0,203.2,109.315672,Arizona,USA,2011,1,2,78,12.0,5.5,0.6,-5.3,0.055999999999999994,0.205,0.237,0.515,0.044000000000000004,2012-13 7391,Devin Ebanks,LAL,23.0,205.74,97.52228000000001,West Virginia,USA,2010,2,43,19,3.4,2.2,0.5,-6.6,0.052000000000000005,0.157,0.198,0.41100000000000003,0.094,2012-13 7392,Devin Harris,ATL,30.0,190.5,87.089664,Wisconsin,USA,2004,1,5,58,9.9,2.0,3.4,7.3,0.005,0.086,0.19699999999999998,0.565,0.215,2012-13 7393,Dexter Pittman,MEM,25.0,210.82,129.27372,Texas,USA,2010,2,32,11,0.7,1.1,0.0,-36.9,0.226,0.185,0.212,0.325,0.0,2012-13 7394,Diante Garrett,PHX,24.0,193.04,86.18248,Iowa State,USA,Undrafted,Undrafted,Undrafted,19,2.1,0.8,1.6,-18.0,0.033,0.07400000000000001,0.2,0.375,0.35200000000000004,2012-13 7395,Dion Waiters,CLE,21.0,193.04,97.52228000000001,Syracuse,USA,2012,1,4,61,14.7,2.4,3.0,-6.3,0.013999999999999999,0.09,0.261,0.49200000000000005,0.17800000000000002,2012-13 7396,Dirk Nowitzki,DAL,35.0,213.36,111.13004,None,Germany,1998,1,9,53,17.3,6.8,2.5,0.7,0.025,0.221,0.247,0.564,0.132,2012-13 7397,Dominic McGuire,IND,27.0,205.74,106.59411999999999,Fresno State,USA,2007,2,47,26,2.0,3.0,0.8,-10.5,0.059000000000000004,0.187,0.09,0.42200000000000004,0.08,2012-13 7398,Donald Sloan,NOH,25.0,190.5,92.98635999999999,Texas A&M,USA,Undrafted,Undrafted,Undrafted,23,3.5,1.2,1.7,-16.2,0.012,0.106,0.177,0.455,0.284,2012-13 7399,Chris Paul,LAC,28.0,182.88,79.3786,Wake Forest,USA,2005,1,4,70,16.9,3.7,9.7,8.7,0.027999999999999997,0.109,0.225,0.594,0.44299999999999995,2012-13 7400,Chris Kaman,DAL,31.0,213.36,120.20188,Central Michigan,USA,2003,1,6,66,10.5,5.6,0.8,-4.6,0.08199999999999999,0.226,0.255,0.529,0.066,2012-13 7401,Chris Johnson,MEM,23.0,198.12,91.171992,Dayton,USA,Undrafted,Undrafted,Undrafted,8,3.6,1.4,0.3,18.1,0.051,0.073,0.124,0.56,0.025,2012-13 7402,Andrei Kirilenko,MIN,32.0,205.74,106.59411999999999,None,Russia,1999,1,24,64,12.4,5.7,2.8,-1.4,0.057,0.153,0.17300000000000001,0.59,0.14400000000000002,2012-13 7403,Andrew Bogut,GSW,28.0,213.36,117.93392,Utah,Australia,2005,1,1,32,5.8,7.7,2.1,2.8,0.09699999999999999,0.235,0.135,0.46299999999999997,0.121,2012-13 7404,Andrew Goudelock,LAL,24.0,190.5,90.7184,College of Charleston,USA,2011,2,46,1,0.0,1.0,0.0,-88.3,0.111,0.0,0.157,0.0,0.0,2012-13 7405,Andrew Nicholson,ORL,23.0,205.74,113.398,St. Bonaventure,Canada,2012,1,19,75,7.8,3.4,0.6,-6.9,0.063,0.172,0.221,0.557,0.062,2012-13 7406,Andris Biedrins,GSW,27.0,213.36,109.769264,None,Latvia,2004,1,11,53,0.5,2.9,0.3,-4.9,0.075,0.24600000000000002,0.037000000000000005,0.449,0.039,2012-13 7407,Antawn Jamison,LAL,37.0,205.74,106.59411999999999,North Carolina,USA,1998,1,4,76,9.4,4.8,0.7,2.3,0.075,0.16699999999999998,0.188,0.561,0.051,2012-13 7408,Anthony Davis,NOH,20.0,208.28,99.79024,Kentucky,USA,2012,1,1,64,13.5,8.2,1.0,-5.5,0.106,0.23600000000000002,0.215,0.5589999999999999,0.06,2012-13 7409,Anthony Morrow,DAL,27.0,195.58,95.25432,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,41,4.0,0.7,0.3,-6.9,0.033,0.066,0.19699999999999998,0.53,0.057999999999999996,2012-13 7410,Anthony Randolph,DEN,23.0,210.82,102.0582,Louisiana State,USA,2008,1,14,39,3.7,2.4,0.3,1.9,0.10300000000000001,0.198,0.217,0.534,0.054000000000000006,2012-13 7411,Anthony Tolliver,ATL,28.0,203.2,108.86208,Creighton,USA,Undrafted,Undrafted,Undrafted,62,4.1,2.5,0.5,-1.3,0.036000000000000004,0.14300000000000002,0.132,0.531,0.052000000000000005,2012-13 7412,Arnett Moultrie,PHI,22.0,208.28,111.13004,Mississippi State,USA,2012,1,27,47,3.7,3.1,0.2,-7.5,0.152,0.151,0.14,0.595,0.031,2012-13 7413,Aron Baynes,SAS,26.0,208.28,117.93392,Washington State,Australia,Undrafted,Undrafted,Undrafted,16,2.7,2.0,0.3,-0.1,0.08900000000000001,0.147,0.16399999999999998,0.521,0.053,2012-13 7414,Arron Afflalo,ORL,27.0,195.58,97.52228000000001,UCLA,USA,2007,1,27,64,16.5,3.7,3.2,-7.4,0.013999999999999999,0.106,0.228,0.527,0.146,2012-13 7415,Austin Daye,MEM,25.0,210.82,90.7184,Gonzaga,USA,2009,1,15,55,4.5,2.2,0.8,1.7,0.027000000000000003,0.18,0.168,0.5539999999999999,0.09300000000000001,2012-13 7416,Austin Rivers,NOH,20.0,193.04,90.7184,Duke,USA,2012,1,10,61,6.2,1.8,2.1,-6.8,0.013000000000000001,0.078,0.172,0.431,0.142,2012-13 7417,Andrea Bargnani,TOR,27.0,213.36,116.119552,None,Italy,2006,1,1,35,12.7,3.7,1.1,-5.8,0.028999999999999998,0.12300000000000001,0.233,0.48200000000000004,0.064,2012-13 7418,Avery Bradley,BOS,22.0,187.96,81.64656,Texas,USA,2010,1,19,50,9.2,2.2,2.1,1.3,0.025,0.063,0.19,0.461,0.115,2012-13 7419,Andre Miller,DEN,37.0,187.96,90.7184,Utah,USA,1999,1,8,82,9.6,2.9,5.9,5.1,0.032,0.092,0.18,0.5479999999999999,0.326,2012-13 7420,Andre Drummond,DET,19.0,208.28,122.46983999999999,Connecticut,USA,2012,1,9,60,7.9,7.6,0.5,-1.5,0.153,0.266,0.17,0.578,0.04,2012-13 7421,AJ Price,WAS,26.0,187.96,83.91452,Connecticut,USA,2009,2,52,57,7.7,2.0,3.6,-2.3,0.017,0.083,0.18100000000000002,0.501,0.273,2012-13 7422,Aaron Brooks,HOU,28.0,182.88,73.028312,Oregon,USA,2007,1,26,53,7.1,1.5,2.2,-10.7,0.013999999999999999,0.077,0.18100000000000002,0.555,0.19,2012-13 7423,Aaron Gray,TOR,28.0,213.36,122.46983999999999,Pittsburgh,USA,2007,2,49,42,2.8,3.2,0.8,-7.7,0.107,0.207,0.132,0.544,0.10300000000000001,2012-13 7424,Al Harrington,ORL,33.0,205.74,111.13004,None,USA,1998,1,25,10,5.1,2.7,1.0,-16.0,0.061,0.214,0.249,0.434,0.141,2012-13 7425,Al Horford,ATL,27.0,208.28,113.398,Florida,Dominican Republic,2007,1,3,74,17.4,10.2,3.2,3.3,0.084,0.22899999999999998,0.221,0.56,0.149,2012-13 7426,Al Jefferson,UTA,28.0,208.28,131.088088,None,USA,2004,1,15,78,17.8,9.2,2.1,-3.5,0.07,0.265,0.26,0.522,0.11900000000000001,2012-13 7427,Al-Farouq Aminu,NOH,22.0,205.74,97.52228000000001,Wake Forest,USA,2010,1,8,76,7.3,7.7,1.4,-1.3,0.079,0.255,0.14400000000000002,0.519,0.076,2012-13 7428,Alan Anderson,TOR,30.0,198.12,99.79024,Michigan State,USA,Undrafted,Undrafted,Undrafted,65,10.7,2.3,1.6,-3.7,0.026000000000000002,0.09699999999999999,0.237,0.509,0.125,2012-13 7429,Alec Burks,UTA,21.0,198.12,91.625584,Colorado,USA,2011,1,12,64,7.0,2.3,1.4,3.8,0.038,0.111,0.2,0.507,0.127,2012-13 7430,Alexey Shved,MIN,24.0,198.12,82.553744,None,Russia,Undrafted,Undrafted,Undrafted,77,8.6,2.3,3.7,-2.3,0.024,0.084,0.20600000000000002,0.474,0.248,2012-13 7431,Alonzo Gee,CLE,26.0,198.12,99.336648,Alabama,USA,Undrafted,Undrafted,Undrafted,82,10.3,3.9,1.6,-8.0,0.032,0.11900000000000001,0.168,0.505,0.081,2012-13 7432,Amar'e Stoudemire,NYK,30.0,210.82,111.13004,None,USA,2002,1,9,29,14.2,5.0,0.4,3.0,0.105,0.157,0.257,0.637,0.037000000000000005,2012-13 7433,Amir Johnson,TOR,26.0,205.74,95.25432,None,USA,2005,2,56,81,10.0,7.5,1.5,4.1,0.115,0.196,0.16,0.591,0.085,2012-13 7434,Anderson Varejao,CLE,30.0,210.82,117.93392,None,Brazil,2004,2,30,25,14.1,14.4,3.4,-7.3,0.16699999999999998,0.304,0.18,0.529,0.157,2012-13 7435,Andray Blatche,BKN,26.0,210.82,117.93392,None,USA,2005,2,49,82,10.3,5.1,1.0,-1.3,0.121,0.21,0.263,0.547,0.10800000000000001,2012-13 7436,Andre Iguodala,DEN,29.0,198.12,93.89354399999999,Arizona,USA,2004,1,9,80,13.0,5.3,5.4,7.4,0.034,0.135,0.188,0.52,0.22399999999999998,2012-13 7437,Eric Bledsoe,LAC,23.0,185.42,88.45044,Kentucky,USA,2010,1,18,76,8.5,3.0,3.1,5.5,0.061,0.10800000000000001,0.225,0.513,0.249,2012-13 7438,Ben Gordon,CHA,30.0,190.5,90.7184,Connecticut,USA,2004,1,3,75,11.2,1.7,1.9,-15.4,0.013000000000000001,0.087,0.276,0.515,0.18,2012-13 7439,Beno Udrih,ORL,30.0,190.5,92.079176,None,Slovenia,2004,1,28,66,8.2,2.1,4.6,-6.8,0.025,0.081,0.18899999999999997,0.516,0.32899999999999996,2012-13 7440,Carlos Delfino,HOU,30.0,198.12,104.32616,None,Argentina,2003,1,25,67,10.6,3.3,2.0,6.2,0.012,0.13699999999999998,0.18600000000000003,0.5489999999999999,0.125,2012-13 7441,Carmelo Anthony,NYK,29.0,203.2,104.32616,Syracuse,USA,2003,1,3,67,28.7,6.9,2.6,6.2,0.061,0.158,0.353,0.56,0.13699999999999998,2012-13 7442,Caron Butler,LAC,33.0,200.66,103.418976,Connecticut,USA,2002,1,10,78,10.4,2.9,1.0,6.4,0.026000000000000002,0.11800000000000001,0.20199999999999999,0.535,0.063,2012-13 7443,Cartier Martin,WAS,28.0,200.66,99.79024,Kansas State,USA,Undrafted,Undrafted,Undrafted,41,6.6,2.4,0.5,-3.9,0.017,0.14,0.195,0.511,0.049,2012-13 7444,Chandler Parsons,HOU,24.0,205.74,102.965384,Florida,USA,2011,2,38,76,15.5,5.3,3.5,2.6,0.033,0.131,0.184,0.584,0.157,2012-13 7445,Charles Jenkins,PHI,24.0,190.5,97.52228000000001,Hofstra,USA,2011,2,44,59,1.9,0.5,0.7,-0.6,0.019,0.057999999999999996,0.155,0.425,0.16699999999999998,2012-13 7446,Charlie Villanueva,DET,28.0,210.82,105.23334399999999,Connecticut,USA,2005,1,7,69,6.8,3.5,0.8,-3.8,0.048,0.203,0.21600000000000003,0.48100000000000004,0.08199999999999999,2012-13 7447,Chase Budinger,MIN,25.0,200.66,98.88305600000001,Arizona,USA,2009,2,44,23,9.4,3.1,1.1,2.4,0.033,0.133,0.207,0.516,0.08,2012-13 7448,Chauncey Billups,LAC,36.0,190.5,95.25432,Colorado,USA,1997,1,3,22,8.4,1.5,2.2,4.5,0.006,0.095,0.2,0.601,0.168,2012-13 7449,Chris Andersen,MIA,34.0,208.28,103.418976,Blinn,USA,Undrafted,Undrafted,Undrafted,42,4.9,4.1,0.4,10.0,0.11900000000000001,0.213,0.14400000000000002,0.631,0.045,2012-13 7450,Chris Bosh,MIA,29.0,210.82,106.59411999999999,Georgia Tech,USA,2003,1,4,74,16.6,6.8,1.7,10.8,0.07200000000000001,0.174,0.228,0.5920000000000001,0.081,2012-13 7451,Chris Copeland,NYK,29.0,203.2,102.0582,Colorado,USA,Undrafted,Undrafted,Undrafted,56,8.7,2.1,0.5,4.4,0.046,0.11699999999999999,0.256,0.583,0.055,2012-13 7452,Linas Kleiza,TOR,28.0,203.2,106.140528,Missouri,Lithuania,2005,1,27,20,7.4,2.6,0.8,-6.1,0.028999999999999998,0.13699999999999998,0.221,0.46,0.077,2012-13 7453,Chris Duhon,LAL,30.0,185.42,86.18248,Duke,USA,2004,2,38,46,2.9,1.5,2.9,0.5,0.015,0.076,0.091,0.517,0.23600000000000002,2012-13 7454,Chris Johnson,MIN,27.0,210.82,95.25432,Louisiana State,USA,Undrafted,Undrafted,Undrafted,30,3.9,2.0,0.3,-4.1,0.085,0.153,0.166,0.65,0.042,2012-13 7455,Carlos Boozer,CHI,31.0,205.74,120.655472,Duke,USA,2002,2,34,79,16.2,9.8,2.3,-2.7,0.077,0.273,0.258,0.51,0.132,2012-13 7456,Ben Hansbrough,IND,25.0,190.5,92.079176,Notre Dame,USA,Undrafted,Undrafted,Undrafted,28,2.0,0.6,0.8,-6.7,0.01,0.08199999999999999,0.163,0.501,0.20199999999999999,2012-13 7457,Carl Landry,GSW,29.0,205.74,112.490816,Purdue,USA,2007,2,31,81,10.8,6.0,0.8,-1.1,0.109,0.177,0.19899999999999998,0.605,0.055999999999999994,2012-13 7458,C.J. Watson,BKN,29.0,187.96,79.3786,Tennessee,USA,Undrafted,Undrafted,Undrafted,80,6.8,1.8,2.0,0.8,0.028999999999999998,0.085,0.17300000000000001,0.544,0.17800000000000002,2012-13 7459,Bernard James,DAL,28.0,208.28,108.86208,Florida State,USA,2012,2,33,46,2.8,2.8,0.1,-0.6,0.11800000000000001,0.20199999999999999,0.133,0.541,0.02,2012-13 7460,Bismack Biyombo,CHA,20.0,205.74,111.13004,None,Democratic Republic of the Congo,2011,1,7,80,4.8,7.3,0.4,-8.9,0.1,0.209,0.10300000000000001,0.47200000000000003,0.025,2012-13 7461,Blake Griffin,LAC,24.0,208.28,113.851592,Oklahoma,USA,2009,1,1,80,18.0,8.3,3.7,6.6,0.08800000000000001,0.225,0.254,0.5720000000000001,0.192,2012-13 7462,Boris Diaw,SAS,31.0,203.2,106.59411999999999,None,France,2003,1,21,75,5.8,3.4,2.4,4.9,0.048,0.124,0.121,0.603,0.152,2012-13 7463,Bradley Beal,WAS,20.0,195.58,93.89354399999999,Florida,USA,2012,1,3,56,13.9,3.8,2.4,-3.1,0.027000000000000003,0.107,0.22,0.515,0.136,2012-13 7464,Brandan Wright,DAL,25.0,208.28,95.25432,North Carolina,USA,2007,1,8,64,8.5,4.1,0.6,5.1,0.085,0.16,0.191,0.606,0.054000000000000006,2012-13 7465,Brandon Bass,BOS,28.0,203.2,113.398,Louisiana State,USA,2005,2,33,81,8.7,5.2,1.0,-2.1,0.069,0.155,0.156,0.535,0.06,2012-13 7466,Brandon Jennings,MIL,23.0,185.42,76.657048,None,USA,2009,1,10,80,17.5,3.1,6.5,-4.4,0.021,0.073,0.23800000000000002,0.51,0.29600000000000004,2012-13 7467,Brandon Knight,DET,21.0,190.5,85.728888,Kentucky,USA,2011,1,8,75,13.3,3.3,4.0,-3.1,0.026000000000000002,0.092,0.22699999999999998,0.511,0.21600000000000003,2012-13 7468,Brandon Roy,MIN,28.0,198.12,95.707912,Washington,USA,2006,1,6,5,5.8,2.8,4.6,0.8,0.036000000000000004,0.09699999999999999,0.179,0.368,0.267,2012-13 7469,Brandon Rush,GSW,27.0,198.12,95.25432,Kansas,USA,2008,1,13,2,7.0,0.5,1.0,12.7,0.0,0.045,0.228,0.6779999999999999,0.154,2012-13 7470,Brendan Haywood,CHA,33.0,213.36,119.294696,North Carolina,USA,2001,1,20,61,3.5,4.8,0.5,-8.2,0.11800000000000001,0.16399999999999998,0.115,0.441,0.04,2012-13 7471,Brian Roberts,NOH,27.0,185.42,81.64656,Dayton,USA,Undrafted,Undrafted,Undrafted,78,7.1,1.2,2.8,-8.4,0.013999999999999999,0.077,0.21899999999999997,0.509,0.301,2012-13 7472,Brook Lopez,BKN,25.0,213.36,120.20188,Stanford,USA,2008,1,10,74,19.4,6.9,0.9,4.7,0.109,0.154,0.285,0.5670000000000001,0.061,2012-13 7473,Byron Mullens,CHA,24.0,213.36,124.7378,Ohio State,USA,2009,1,24,53,10.6,6.4,1.5,-16.2,0.053,0.21899999999999997,0.213,0.465,0.102,2012-13 7474,CJ Miles,CLE,26.0,198.12,100.697424,None,USA,2005,2,34,65,11.2,2.7,1.0,-4.1,0.02,0.13,0.24,0.551,0.083,2012-13 7475,Eric Gordon,NOH,24.0,190.5,97.52228000000001,Indiana,USA,2008,1,7,42,17.0,1.8,3.3,-2.8,0.009000000000000001,0.064,0.284,0.523,0.183,2012-13 7476,Chris Douglas-Roberts,DAL,26.0,200.66,95.25432,Memphis,USA,2008,2,40,6,2.8,0.8,0.7,-13.6,0.0,0.09300000000000001,0.13699999999999998,0.462,0.10300000000000001,2012-13 7477,Ersan Ilyasova,MIL,26.0,208.28,106.59411999999999,None,Turkey,2005,2,36,73,13.2,7.1,1.6,0.3,0.08,0.209,0.204,0.552,0.092,2012-13 7478,Josh Akognon,DAL,27.0,180.34,83.91452,Cal State-Fullerton,USA,Undrafted,Undrafted,Undrafted,3,1.7,0.3,0.3,-22.5,0.0,0.16699999999999998,0.235,0.625,0.2,2012-13 7479,Josh Childress,BKN,30.0,203.2,95.25432,Stanford,USA,2004,1,6,14,1.0,1.1,0.4,-9.6,0.055999999999999994,0.106,0.096,0.32,0.085,2012-13 7480,Josh Harrellson,MIA,24.0,208.28,124.7378,Kentucky,USA,2011,2,45,6,1.7,1.2,0.0,3.8,0.12,0.111,0.19899999999999998,0.506,0.0,2012-13 7481,Josh Howard,MIN,33.0,200.66,95.25432,Wake Forest,USA,2003,1,29,11,6.7,3.3,0.4,-3.4,0.047,0.146,0.201,0.45,0.034,2012-13 7482,Josh McRoberts,CHA,26.0,208.28,108.86208,Duke,USA,2007,2,37,67,6.0,4.9,2.1,-8.0,0.07400000000000001,0.184,0.139,0.527,0.151,2012-13 7483,Josh Selby,MEM,22.0,187.96,83.007336,Kansas,USA,2011,2,49,10,2.0,0.5,0.4,-36.3,0.0,0.09300000000000001,0.262,0.373,0.14300000000000002,2012-13 7484,Jose Calderon,DET,31.0,190.5,95.707912,None,Spain,Undrafted,Undrafted,Undrafted,73,11.3,2.4,7.1,-6.4,0.01,0.09,0.171,0.616,0.396,2012-13 7485,Josh Smith,ATL,27.0,205.74,102.0582,None,USA,2004,1,17,76,17.5,8.4,4.2,1.9,0.057,0.21100000000000002,0.266,0.501,0.204,2012-13 7486,Julyan Stone,DEN,24.0,198.12,90.7184,Texas-El Paso,USA,Undrafted,Undrafted,Undrafted,4,1.8,0.8,0.5,10.7,0.071,0.045,0.087,0.9309999999999999,0.111,2012-13 7487,Justin Dentmon,DAL,27.0,180.34,83.91452,Washington,USA,Undrafted,Undrafted,Undrafted,2,0.0,0.0,0.0,-28.6,0.0,0.0,0.222,0.0,0.0,2012-13 7488,Justin Holiday,PHI,24.0,198.12,83.91452,Washington,USA,Undrafted,Undrafted,Undrafted,9,4.7,1.6,1.7,7.5,0.0,0.105,0.195,0.408,0.155,2012-13 7489,Juwan Howard,MIA,40.0,205.74,113.398,Michigan,USA,1994,1,5,7,3.0,1.1,0.9,-11.2,0.0,0.174,0.231,0.54,0.207,2012-13 7490,Kawhi Leonard,SAS,22.0,200.66,102.0582,San Diego State,USA,2011,1,15,58,11.9,6.0,1.6,10.1,0.044000000000000004,0.172,0.166,0.5920000000000001,0.077,2012-13 7491,Keith Bogans,BKN,33.0,195.58,97.52228000000001,Kentucky,USA,2003,2,43,74,4.2,1.6,1.0,-0.2,0.013000000000000001,0.086,0.113,0.5329999999999999,0.084,2012-13 7492,Jrue Holiday,PHI,23.0,193.04,92.98635999999999,UCLA,USA,2009,1,17,78,17.7,4.2,8.0,-2.5,0.033,0.095,0.264,0.496,0.358,2012-13 7493,Jordan Hill,LAL,25.0,208.28,106.59411999999999,Arizona,USA,2009,1,8,29,6.7,5.7,0.4,-3.8,0.18100000000000002,0.198,0.191,0.5329999999999999,0.05,2012-13 7494,Jordan Hamilton,DEN,22.0,200.66,99.79024,Texas,USA,2011,1,26,40,5.2,2.4,0.6,-1.2,0.08199999999999999,0.175,0.24600000000000002,0.49,0.08900000000000001,2012-13 7495,Jordan Crawford,BOS,24.0,193.04,88.45044,Xavier,USA,2010,1,27,70,11.6,3.0,3.2,-5.4,0.028999999999999998,0.107,0.252,0.512,0.244,2012-13 7496,Joakim Noah,CHI,28.0,210.82,105.23334399999999,Florida,USA,2007,1,9,66,11.9,11.1,4.0,1.2,0.124,0.218,0.172,0.534,0.17600000000000002,2012-13 7497,Jodie Meeks,LAL,25.0,193.04,94.34713599999999,Kentucky,USA,2009,2,41,78,7.9,2.2,0.9,2.5,0.025,0.085,0.16699999999999998,0.54,0.066,2012-13 7498,Joe Johnson,BKN,32.0,200.66,108.86208,Arkansas,USA,2001,1,10,72,16.3,3.0,3.5,4.4,0.024,0.07400000000000001,0.21899999999999997,0.521,0.163,2012-13 7499,Joel Anthony,MIA,30.0,205.74,111.13004,Nevada-Las Vegas,Canada,Undrafted,Undrafted,Undrafted,62,1.4,1.9,0.2,5.1,0.096,0.141,0.087,0.542,0.034,2012-13 7500,Joel Freeland,POR,26.0,208.28,102.0582,None,Great Britain,2006,1,30,51,2.6,2.3,0.3,-12.3,0.08800000000000001,0.19,0.165,0.435,0.05,2012-13 7501,Joel Przybilla,MIL,33.0,215.9,111.13004,Minnesota,USA,2000,1,9,12,0.2,1.8,0.3,-36.3,0.069,0.258,0.055999999999999994,0.205,0.08,2012-13 7502,Johan Petro,ATL,27.0,213.36,112.037224,None,France,2005,1,25,31,3.5,3.6,0.5,-12.9,0.10400000000000001,0.259,0.18100000000000002,0.46799999999999997,0.076,2012-13 7503,John Henson,MIL,22.0,210.82,99.79024,North Carolina,USA,2012,1,14,63,6.0,4.7,0.5,-2.5,0.14,0.23800000000000002,0.221,0.49700000000000005,0.063,2012-13 7504,John Jenkins,ATL,22.0,193.04,97.52228000000001,Vanderbilt,USA,2012,1,23,61,6.1,1.5,0.9,-7.9,0.021,0.096,0.183,0.5760000000000001,0.105,2012-13 7505,John Lucas III,TOR,30.0,180.34,74.84268,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,63,5.3,1.0,1.7,-6.3,0.01,0.08800000000000001,0.21,0.483,0.233,2012-13 7506,John Salmons,SAC,33.0,198.12,93.89354399999999,Miami (FL),USA,2002,1,26,76,8.8,2.7,3.0,-1.0,0.017,0.08900000000000001,0.147,0.509,0.142,2012-13 7507,John Wall,WAS,22.0,193.04,88.45044,Kentucky,USA,2010,1,1,49,18.5,4.0,7.6,1.5,0.024,0.111,0.289,0.521,0.40700000000000003,2012-13 7508,Jon Leuer,MEM,24.0,208.28,103.418976,Wisconsin,USA,2011,2,40,28,2.0,1.3,0.3,-18.0,0.07400000000000001,0.16699999999999998,0.159,0.485,0.07400000000000001,2012-13 7509,Jonas Jerebko,DET,26.0,208.28,104.779752,None,Sweden,2009,2,39,49,7.7,3.8,0.9,-5.6,0.086,0.168,0.2,0.531,0.079,2012-13 7510,Jonas Valanciunas,TOR,21.0,210.82,104.779752,None,Lithuania,2011,1,5,62,8.9,6.0,0.7,-3.7,0.099,0.201,0.171,0.619,0.051,2012-13 7511,Kemba Walker,CHA,23.0,185.42,83.46092800000001,Connecticut,USA,2011,1,9,82,17.7,3.5,5.7,-9.7,0.023,0.09300000000000001,0.255,0.517,0.308,2012-13 7512,Kendall Marshall,PHX,21.0,193.04,88.45044,North Carolina,USA,2012,1,13,48,3.0,0.9,3.0,-13.3,0.006,0.062,0.136,0.455,0.306,2012-13 7513,Kenneth Faried,DEN,23.0,203.2,103.418976,Morehead State,USA,2011,1,22,80,11.5,9.2,1.0,5.1,0.133,0.24,0.179,0.573,0.051,2012-13 7514,Kent Bazemore,GSW,23.0,195.58,91.171992,Old Dominion,USA,Undrafted,Undrafted,Undrafted,61,2.0,0.4,0.4,2.2,0.022000000000000002,0.068,0.264,0.45399999999999996,0.159,2012-13 7515,Kyle Korver,ATL,32.0,200.66,96.16150400000001,Creighton,USA,2003,2,51,74,10.9,4.0,2.0,4.4,0.012,0.13,0.145,0.637,0.094,2012-13 7516,Kyle Lowry,TOR,27.0,182.88,92.98635999999999,Villanova,USA,2006,1,24,68,11.6,4.7,6.4,0.3,0.033,0.153,0.19899999999999998,0.5429999999999999,0.336,2012-13 7517,Kyle O'Quinn,ORL,23.0,208.28,108.86208,Norfolk State,USA,2012,2,49,57,4.1,3.7,0.9,-5.4,0.113,0.23600000000000002,0.17800000000000002,0.535,0.122,2012-13 7518,Kyle Singler,DET,25.0,203.2,104.32616,Duke,USA,2011,2,33,82,8.8,4.0,0.9,-4.5,0.054000000000000006,0.113,0.158,0.517,0.053,2012-13 7519,Kyrie Irving,CLE,21.0,190.5,86.636072,Duke,Australia,2011,1,1,59,22.5,3.7,5.9,-5.1,0.018000000000000002,0.106,0.298,0.5529999999999999,0.315,2012-13 7520,LaMarcus Aldridge,POR,27.0,210.82,108.86208,Texas,USA,2006,1,2,74,21.1,9.1,2.6,-1.4,0.07200000000000001,0.209,0.265,0.53,0.125,2012-13 7521,Lamar Odom,LAC,33.0,208.28,104.32616,Rhode Island,USA,1999,1,4,82,4.0,5.9,1.7,9.5,0.086,0.252,0.132,0.429,0.128,2012-13 7522,Lance Stephenson,IND,22.0,195.58,103.418976,Cincinnati,USA,2010,2,40,78,8.8,3.9,2.9,8.8,0.024,0.126,0.151,0.53,0.15,2012-13 7523,Lance Thomas,NOH,25.0,203.2,102.0582,Duke,USA,Undrafted,Undrafted,Undrafted,59,2.5,1.9,0.3,-3.5,0.081,0.132,0.111,0.565,0.043,2012-13 7524,Landry Fields,TOR,25.0,200.66,97.52228000000001,Stanford,USA,2010,2,39,51,4.7,4.1,1.2,-0.8,0.068,0.171,0.129,0.48700000000000004,0.084,2012-13 7525,Larry Sanders,MIL,24.0,210.82,106.59411999999999,Virginia Commonwealth,USA,2010,1,15,71,9.8,9.5,1.2,1.9,0.11900000000000001,0.248,0.17,0.523,0.068,2012-13 7526,Lavoy Allen,PHI,24.0,205.74,115.66596000000001,Temple,USA,2011,2,50,79,5.8,5.0,0.9,-2.9,0.105,0.166,0.149,0.474,0.068,2012-13 7527,Eric Maynor,POR,26.0,190.5,79.3786,Virginia Commonwealth,USA,2009,1,20,64,4.5,0.7,2.8,-3.2,0.011000000000000001,0.046,0.18600000000000003,0.47200000000000003,0.295,2012-13 7528,LeBron James,MIA,28.0,203.2,113.398,None,USA,2003,1,1,76,26.8,8.0,7.3,14.1,0.044000000000000004,0.20800000000000002,0.298,0.64,0.344,2012-13 7529,Lazar Hayward,MIN,26.0,198.12,102.0582,Marquette,USA,2010,1,30,4,2.5,1.0,0.8,-38.8,0.0,0.14800000000000002,0.183,0.396,0.2,2012-13 7530,Kwame Brown,PHI,31.0,210.82,131.54168,None,USA,2001,1,1,22,1.9,3.4,0.4,-6.5,0.092,0.221,0.094,0.452,0.051,2012-13 7531,Jimmy Butler,CHI,23.0,200.66,99.79024,Marquette,USA,2011,1,30,82,8.6,4.0,1.4,1.9,0.073,0.105,0.147,0.574,0.08800000000000001,2012-13 7532,Kurt Thomas,NYK,40.0,205.74,108.86208,Texas Christian,USA,1995,1,10,39,2.5,2.3,0.5,-1.2,0.067,0.19,0.11699999999999999,0.547,0.085,2012-13 7533,Kris Humphries,BKN,28.0,205.74,106.59411999999999,Minnesota,USA,2004,1,14,65,5.8,5.6,0.5,-3.7,0.125,0.235,0.16399999999999998,0.515,0.043,2012-13 7534,Kenyon Martin,NYK,35.0,205.74,108.86208,Cincinnati,USA,2000,1,1,18,7.2,5.3,0.4,8.4,0.096,0.16899999999999998,0.14400000000000002,0.583,0.03,2012-13 7535,Kevin Durant,OKC,24.0,205.74,106.59411999999999,Texas,USA,2007,1,2,81,28.1,7.9,4.6,12.7,0.018000000000000002,0.201,0.298,0.647,0.213,2012-13 7536,Kevin Garnett,BOS,37.0,210.82,114.758776,None,USA,1995,1,5,68,14.8,7.8,2.3,3.5,0.046,0.259,0.251,0.535,0.147,2012-13 7537,Kevin Jones,CLE,23.0,203.2,117.93392,West Virginia,USA,Undrafted,Undrafted,Undrafted,32,3.0,2.4,0.3,6.0,0.12300000000000001,0.145,0.158,0.418,0.043,2012-13 7538,Kevin Love,MIN,24.0,208.28,117.93392,UCLA,USA,2008,1,5,18,18.3,14.0,2.3,-1.7,0.10800000000000001,0.337,0.275,0.45799999999999996,0.11699999999999999,2012-13 7539,Kevin Martin,OKC,30.0,200.66,83.91452,Western Carolina,USA,2004,1,26,77,14.0,2.3,1.4,11.6,0.019,0.076,0.21,0.608,0.081,2012-13 7540,Kevin Murphy,UTA,23.0,198.12,83.91452,Tennessee Tech,USA,2012,2,47,17,0.9,0.2,0.1,-40.9,0.0,0.10300000000000001,0.26,0.268,0.083,2012-13 7541,Kevin Seraphin,WAS,23.0,205.74,124.7378,Le Moyne,France,2010,1,17,79,9.1,4.4,0.7,-6.2,0.069,0.156,0.23600000000000002,0.478,0.063,2012-13 7542,Keyon Dooling,MEM,33.0,190.5,88.45044,Missouri,USA,2000,1,10,7,4.4,0.1,1.1,-5.7,0.0,0.013999999999999999,0.162,0.644,0.195,2012-13 7543,Khris Middleton,DET,21.0,200.66,97.52228000000001,Texas A&M,USA,2012,2,39,27,6.1,1.9,1.0,2.2,0.01,0.124,0.159,0.532,0.085,2012-13 7544,Kim English,DET,24.0,198.12,90.7184,Missouri,USA,2012,2,44,41,2.9,0.9,0.6,-8.1,0.022000000000000002,0.086,0.158,0.47700000000000004,0.09699999999999999,2012-13 7545,Kirk Hinrich,CHI,32.0,193.04,86.18248,Kansas,USA,2003,1,7,60,7.7,2.6,5.2,3.2,0.011000000000000001,0.091,0.147,0.493,0.267,2012-13 7546,Klay Thompson,GSW,23.0,200.66,92.98635999999999,Washington State,USA,2011,1,11,82,16.6,3.7,2.2,1.8,0.012,0.099,0.218,0.5329999999999999,0.099,2012-13 7547,Kobe Bryant,LAL,34.0,198.12,92.98635999999999,None,USA,1996,1,13,78,27.3,5.6,6.0,2.7,0.025,0.131,0.317,0.57,0.28600000000000003,2012-13 7548,Kosta Koufos,DEN,24.0,213.36,120.20188,Ohio State,USA,2008,1,23,81,8.0,6.9,0.4,8.0,0.131,0.214,0.145,0.585,0.026000000000000002,2012-13 7549,Kris Joseph,BKN,24.0,200.66,95.25432,Syracuse,USA,2012,2,51,10,0.9,0.7,0.1,-3.3,0.02,0.136,0.166,0.257,0.027999999999999997,2012-13 7550,Jimmer Fredette,SAC,24.0,187.96,88.45044,Brigham Young,USA,2011,1,10,69,7.2,1.0,1.3,-6.3,0.022000000000000002,0.064,0.235,0.546,0.154,2012-13 7551,Kendrick Perkins,OKC,28.0,208.28,122.46983999999999,None,USA,2003,1,27,78,4.2,6.0,1.4,11.8,0.07,0.187,0.106,0.479,0.078,2012-13 7552,Jerry Stackhouse,BKN,38.0,198.12,98.88305600000001,North Carolina,USA,1995,1,3,37,4.9,0.9,0.9,-1.7,0.01,0.063,0.17,0.5,0.107,2012-13 7553,Hakim Warrick,CHA,30.0,205.74,99.336648,Syracuse,USA,2005,1,19,28,6.9,3.2,0.9,-14.2,0.048,0.159,0.21600000000000003,0.47600000000000003,0.091,2012-13 7554,Hamed Haddadi,PHX,28.0,218.44,120.20188,None,Iran,Undrafted,Undrafted,Undrafted,30,2.8,3.7,0.4,-2.3,0.14300000000000002,0.21899999999999997,0.168,0.447,0.057999999999999996,2012-13 7555,Harrison Barnes,GSW,21.0,203.2,95.25432,North Carolina,USA,2012,1,7,81,9.2,4.1,1.2,2.0,0.028999999999999998,0.14400000000000002,0.17600000000000002,0.526,0.07200000000000001,2012-13 7556,Hasheem Thabeet,OKC,26.0,220.98,119.294696,Connecticut,Tanzania,2009,1,2,66,2.4,3.0,0.2,12.0,0.11199999999999999,0.183,0.102,0.619,0.021,2012-13 7557,Hedo Turkoglu,ORL,34.0,208.28,99.79024,None,Turkey,2000,1,16,11,2.9,2.4,2.1,-20.4,0.024,0.135,0.172,0.28800000000000003,0.2,2012-13 7558,Henry Sims,NOH,23.0,208.28,111.13004,Georgetown,USA,Undrafted,Undrafted,Undrafted,2,2.0,1.0,0.0,12.6,0.5,0.0,0.368,0.667,0.0,2012-13 7559,Gustavo Ayon,MIL,28.0,208.28,113.398,None,Mexico,Undrafted,Undrafted,Undrafted,55,3.7,3.6,1.3,0.8,0.096,0.20800000000000002,0.146,0.54,0.142,2012-13 7560,Ian Mahinmi,IND,26.0,210.82,104.32616,None,France,2005,1,28,80,5.0,3.9,0.3,-4.1,0.1,0.175,0.174,0.49700000000000005,0.038,2012-13 7561,Isaiah Thomas,SAC,24.0,175.26,83.91452,Washington,USA,2011,2,60,79,13.9,2.0,4.0,-4.1,0.015,0.07400000000000001,0.228,0.574,0.243,2012-13 7562,Ish Smith,MIL,24.0,182.88,79.3786,Wake Forest,USA,Undrafted,Undrafted,Undrafted,52,2.4,1.2,1.7,-5.9,0.025,0.102,0.17300000000000001,0.379,0.256,2012-13 7563,Ivan Johnson,ATL,29.0,203.2,115.66596000000001,Cal State-San Bernardino,USA,Undrafted,Undrafted,Undrafted,69,6.6,3.9,0.7,-0.8,0.084,0.209,0.214,0.546,0.079,2012-13 7564,J.J. Barea,MIN,29.0,182.88,79.3786,Northeastern,Puerto Rico,Undrafted,Undrafted,Undrafted,74,11.3,2.8,4.0,-2.0,0.021,0.11900000000000001,0.25,0.51,0.301,2012-13 7565,JJ Hickson,POR,24.0,205.74,109.769264,North Carolina State,USA,2008,1,19,80,12.7,10.4,1.1,-5.3,0.131,0.28,0.19899999999999998,0.591,0.065,2012-13 7566,JJ Redick,MIL,29.0,193.04,86.18248,Duke,USA,2006,1,11,78,14.1,2.2,3.8,-2.0,0.008,0.073,0.20800000000000002,0.5710000000000001,0.193,2012-13 7567,Iman Shumpert,NYK,23.0,195.58,99.79024,Georgia Tech,USA,2011,1,17,45,6.8,3.0,1.7,0.3,0.035,0.125,0.159,0.516,0.12,2012-13 7568,Greg Stiemsma,MIN,27.0,210.82,117.93392,Wisconsin,USA,Undrafted,Undrafted,Undrafted,76,4.0,3.4,0.4,-3.7,0.055999999999999994,0.2,0.139,0.498,0.04,2012-13 7569,Greg Smith,HOU,22.0,208.28,113.398,Fresno State,USA,Undrafted,Undrafted,Undrafted,70,6.0,4.6,0.4,5.4,0.115,0.209,0.147,0.636,0.036000000000000004,2012-13 7570,Greg Monroe,DET,23.0,210.82,113.398,Georgetown,USA,2010,1,7,81,16.0,9.6,3.5,-5.5,0.099,0.237,0.248,0.527,0.18899999999999997,2012-13 7571,Evan Turner,PHI,24.0,200.66,99.79024,Ohio State,USA,2010,1,2,82,13.3,6.3,4.3,-3.5,0.022000000000000002,0.183,0.213,0.478,0.192,2012-13 7572,Fab Melo,BOS,23.0,213.36,115.66596000000001,Syracuse,Brazil,2012,1,22,6,1.2,0.5,0.0,-9.1,0.0,0.077,0.115,0.451,0.0,2012-13 7573,Jerryd Bayless,MEM,24.0,190.5,90.7184,Arizona,USA,2008,1,11,80,8.7,2.2,3.3,0.0,0.013999999999999999,0.106,0.20800000000000002,0.514,0.254,2012-13 7574,Festus Ezeli,GSW,23.0,210.82,115.66596000000001,Vanderbilt,Nigeria,2012,1,30,78,2.4,4.0,0.3,-0.8,0.146,0.166,0.10800000000000001,0.467,0.027999999999999997,2012-13 7575,Francisco Garcia,HOU,31.0,200.66,88.45044,Louisville,Dominican Republic,2005,1,23,58,5.5,1.6,1.1,-2.6,0.008,0.091,0.14800000000000002,0.519,0.095,2012-13 7576,Garrett Temple,WAS,27.0,198.12,88.45044,Louisiana State,USA,Undrafted,Undrafted,Undrafted,51,5.1,2.4,2.3,0.0,0.027999999999999997,0.092,0.133,0.478,0.151,2012-13 7577,Gary Neal,SAS,28.0,193.04,95.25432,Towson,USA,Undrafted,Undrafted,Undrafted,68,9.5,2.1,1.9,4.0,0.011000000000000001,0.096,0.21600000000000003,0.512,0.13699999999999998,2012-13 7578,George Hill,IND,27.0,187.96,86.18248,Indiana Purdue-Indianapolis,USA,2008,1,26,76,14.2,3.7,4.7,8.7,0.02,0.099,0.188,0.5579999999999999,0.22,2012-13 7579,Gerald Green,IND,27.0,203.2,95.25432,None,USA,2005,1,18,60,7.0,2.4,0.8,0.4,0.031,0.107,0.212,0.465,0.087,2012-13 7580,Gerald Henderson,CHA,25.0,195.58,97.52228000000001,Duke,USA,2009,1,12,68,15.5,3.7,2.6,-10.7,0.028999999999999998,0.109,0.235,0.531,0.152,2012-13 7581,Gerald Wallace,BKN,30.0,200.66,99.79024,Alabama,USA,2001,1,25,69,7.7,4.6,2.6,3.0,0.04,0.139,0.14400000000000002,0.49,0.131,2012-13 7582,Glen Davis,ORL,27.0,205.74,131.088088,Louisiana State,USA,2007,2,35,34,15.1,7.2,2.1,-1.8,0.059000000000000004,0.201,0.26,0.483,0.115,2012-13 7583,Goran Dragic,PHX,27.0,190.5,86.18248,None,Slovenia,2008,2,45,77,14.7,3.1,7.4,-6.0,0.026000000000000002,0.081,0.21600000000000003,0.54,0.344,2012-13 7584,Gordon Hayward,UTA,23.0,203.2,95.25432,Butler,USA,2010,1,9,72,14.1,3.1,3.0,1.8,0.027999999999999997,0.098,0.217,0.564,0.163,2012-13 7585,Grant Hill,LAC,40.0,203.2,102.0582,Duke,USA,1994,1,3,29,3.2,1.7,0.9,0.6,0.016,0.105,0.142,0.428,0.09,2012-13 7586,JR Smith,NYK,27.0,198.12,99.79024,None,USA,2004,1,18,80,18.1,5.3,2.7,5.9,0.027000000000000003,0.162,0.264,0.522,0.147,2012-13 7587,JaVale McGee,DEN,25.0,213.36,114.30518400000001,Nevada,USA,2008,1,18,79,9.1,4.8,0.3,3.5,0.129,0.166,0.21100000000000002,0.589,0.027000000000000003,2012-13 7588,Greivis Vasquez,NOH,26.0,198.12,95.707912,Maryland,Venezuela,2010,1,28,78,13.9,4.3,9.0,-4.3,0.019,0.132,0.22899999999999998,0.502,0.43200000000000005,2012-13 7589,Evan Fournier,DEN,20.0,198.12,90.7184,None,France,2012,1,20,38,5.3,0.9,1.2,7.7,0.016,0.066,0.204,0.597,0.153,2012-13 7590,Jason Richardson,PHI,32.0,198.12,102.0582,Michigan State,USA,2001,1,5,33,10.5,3.8,1.5,0.3,0.022000000000000002,0.14,0.187,0.495,0.081,2012-13 7591,Jason Smith,NOH,27.0,213.36,108.86208,Colorado State,USA,2007,1,20,51,8.2,3.6,0.7,-3.8,0.08800000000000001,0.16399999999999998,0.24,0.544,0.07200000000000001,2012-13 7592,Jason Terry,BOS,35.0,187.96,81.64656,Arizona,USA,1999,1,10,79,10.1,2.0,2.5,0.3,0.011000000000000001,0.077,0.179,0.5660000000000001,0.152,2012-13 7593,Jason Thompson,SAC,26.0,210.82,113.398,Rider,USA,2008,1,12,82,10.9,6.7,1.0,-5.2,0.085,0.19899999999999998,0.184,0.5329999999999999,0.059000000000000004,2012-13 7594,Jeff Adrien,CHA,27.0,201.0,111.0,Connecticut,USA,Undrafted,Undrafted,Undrafted,52,4.0,3.8,0.7,-8.0,0.106,0.213,0.157,0.493,0.08199999999999999,2012-13 7595,Jeff Green,BOS,26.0,205.74,106.59411999999999,Georgetown,USA,2007,1,5,81,12.8,3.9,1.6,0.0,0.03,0.132,0.22,0.561,0.1,2012-13 7596,Jeff Teague,ATL,25.0,187.96,82.10015200000001,Wake Forest,USA,2009,1,19,80,14.6,2.3,7.2,1.3,0.011000000000000001,0.067,0.22899999999999998,0.5429999999999999,0.348,2012-13 7597,Jeffery Taylor,CHA,24.0,200.66,102.0582,Vanderbilt,Sweden,2012,2,31,77,6.1,1.9,0.8,-8.9,0.038,0.075,0.15,0.531,0.07200000000000001,2012-13 7598,Jeremy Evans,UTA,25.0,205.74,87.996848,Western Kentucky,USA,2010,2,55,37,2.0,1.6,0.3,4.4,0.131,0.162,0.13,0.6409999999999999,0.076,2012-13 7599,Jeremy Lamb,OKC,21.0,195.58,81.64656,Connecticut,USA,2012,1,12,23,3.1,0.8,0.2,-13.7,0.035,0.098,0.252,0.479,0.063,2012-13 7600,Jeremy Lin,HOU,24.0,190.5,90.7184,Harvard,USA,Undrafted,Undrafted,Undrafted,82,13.4,3.0,6.1,2.4,0.013999999999999999,0.091,0.20800000000000002,0.5379999999999999,0.29,2012-13 7601,Jeremy Pargo,PHI,27.0,187.96,99.336648,Gonzaga,USA,Undrafted,Undrafted,Undrafted,39,6.8,1.3,2.4,-10.4,0.013000000000000001,0.077,0.228,0.478,0.254,2012-13 7602,Jae Crowder,DAL,22.0,198.12,106.59411999999999,Marquette,USA,2012,2,34,78,5.0,2.4,1.2,0.7,0.028999999999999998,0.128,0.151,0.491,0.10300000000000001,2012-13 7603,Jeremy Tyler,ATL,22.0,208.28,117.93392,None,USA,2011,2,39,21,1.0,1.0,0.0,7.0,0.1,0.226,0.21600000000000003,0.413,0.027999999999999997,2012-13 7604,Jermaine O'Neal,PHX,34.0,210.82,115.66596000000001,None,USA,1996,1,17,55,8.3,5.3,0.8,-6.8,0.09300000000000001,0.22899999999999998,0.221,0.5379999999999999,0.07400000000000001,2012-13 7605,Jason Maxiell,DET,30.0,200.66,117.93392,Cincinnati,USA,2005,1,26,72,6.9,5.7,0.8,-6.1,0.086,0.177,0.156,0.478,0.049,2012-13 7606,Jason Kidd,NYK,40.0,193.04,95.25432,California,USA,1994,1,2,76,6.0,4.3,3.3,5.5,0.027000000000000003,0.161,0.115,0.532,0.17800000000000002,2012-13 7607,Jeff Ayres,IND,26.0,205.74,113.398,Arizona State,USA,2009,2,31,37,3.9,2.8,0.4,9.6,0.08800000000000001,0.201,0.191,0.5329999999999999,0.068,2012-13 7608,Jason Collins,WAS,34.0,213.36,115.66596000000001,Stanford,USA,2001,1,18,38,1.1,1.6,0.2,1.0,0.064,0.115,0.07400000000000001,0.47600000000000003,0.028999999999999998,2012-13 7609,Jamal Crawford,LAC,33.0,195.58,90.7184,Michigan,USA,2000,1,8,76,16.5,1.7,2.5,7.4,0.012,0.054000000000000006,0.257,0.5579999999999999,0.14800000000000002,2012-13 7610,Jameer Nelson,ORL,31.0,182.88,86.18248,Saint Joseph's,USA,2004,1,20,56,14.7,3.7,7.4,-4.9,0.013000000000000001,0.107,0.226,0.498,0.326,2012-13 7611,Jamaal Tinsley,UTA,35.0,190.5,89.357624,Iowa State,USA,2001,1,27,66,3.5,1.7,4.4,0.1,0.017,0.09300000000000001,0.135,0.467,0.354,2012-13 7612,James Anderson,HOU,24.0,198.12,97.52228000000001,Oklahoma State,USA,2010,1,20,39,3.8,1.8,1.1,11.9,0.054000000000000006,0.141,0.175,0.539,0.14400000000000002,2012-13 7613,James Harden,HOU,23.0,195.58,99.79024,Arizona State,USA,2009,1,3,78,25.9,4.9,5.8,2.7,0.024,0.11900000000000001,0.289,0.6,0.257,2012-13 7614,James Johnson,SAC,26.0,205.74,112.490816,Wake Forest,USA,2009,1,16,54,5.1,2.7,1.1,-15.5,0.061,0.132,0.192,0.442,0.11,2012-13 7615,James White,NYK,30.0,200.66,97.52228000000001,Cincinnati,USA,2006,2,31,57,2.2,0.8,0.5,-6.1,0.013000000000000001,0.12300000000000001,0.154,0.503,0.107,2012-13 7616,Jan Vesely,WAS,23.0,210.82,108.86208,None,Czech Republic,2011,1,6,51,2.5,2.4,0.5,-3.1,0.084,0.151,0.122,0.48,0.069,2012-13 7617,James Jones,MIA,32.0,203.2,97.52228000000001,Miami (FL),USA,2003,2,49,38,1.6,0.6,0.3,1.1,0.0,0.102,0.146,0.478,0.11,2012-13 7618,Jared Cunningham,DAL,22.0,193.04,88.45044,Oregon State,USA,2012,1,24,8,2.0,0.4,0.1,-12.5,0.045,0.087,0.295,0.5379999999999999,0.111,2012-13 7619,Jared Dudley,PHX,27.0,200.66,102.0582,Boston College,USA,2007,1,22,79,10.9,3.1,2.6,-4.2,0.04,0.08800000000000001,0.17300000000000001,0.5820000000000001,0.147,2012-13 7620,Jared Jeffries,POR,31.0,210.82,108.86208,Indiana,USA,2002,1,11,38,1.2,1.6,0.4,2.8,0.09,0.125,0.10800000000000001,0.34299999999999997,0.057999999999999996,2012-13 7621,Jared Sullinger,BOS,21.0,205.74,117.93392,Ohio State,USA,2012,1,21,45,6.0,5.9,0.8,3.7,0.125,0.225,0.149,0.534,0.062,2012-13 7622,Jarrett Jack,GSW,29.0,190.5,89.357624,Georgia Tech,USA,2005,1,22,79,12.9,3.1,5.6,2.2,0.01,0.1,0.21100000000000002,0.542,0.3,2012-13 7623,Jarvis Varnado,MIA,25.0,205.74,104.32616,Mississippi State,USA,2010,2,41,13,0.6,0.7,0.2,-16.3,0.043,0.14300000000000002,0.133,0.457,0.107,2012-13 7624,Jannero Pargo,CHA,33.0,185.42,83.91452,Arkansas,USA,Undrafted,Undrafted,Undrafted,32,6.5,1.1,2.1,-8.6,0.025,0.066,0.24,0.475,0.233,2012-13 7625,Rasual Butler,IND,35.0,200.66,97.52228000000001,La Salle,USA,2002,2,52,50,2.7,0.8,0.3,-5.9,0.018000000000000002,0.1,0.157,0.585,0.075,2013-14 7626,Quincy Pondexter,MEM,26.0,198.12,102.0582,Washington,USA,2010,1,26,15,6.3,1.7,1.3,-18.1,0.043,0.075,0.183,0.52,0.126,2013-14 7627,Rashard Lewis,MIA,34.0,208.28,106.59411999999999,None,USA,1998,2,32,60,4.5,1.8,1.0,4.4,0.033,0.10800000000000001,0.14300000000000002,0.535,0.08800000000000001,2013-14 7628,Randy Foye,DEN,30.0,193.04,96.615096,Villanova,USA,2006,1,7,81,13.2,2.9,3.5,-3.2,0.015,0.086,0.185,0.5579999999999999,0.17300000000000001,2013-14 7629,Ramon Sessions,MIL,28.0,190.5,86.18248,Nevada,USA,2007,2,56,83,12.3,2.4,4.1,-3.7,0.019,0.085,0.223,0.539,0.258,2013-14 7630,Rajon Rondo,BOS,28.0,185.42,84.368112,Kentucky,USA,2006,1,21,30,11.7,5.5,9.8,-10.7,0.023,0.184,0.209,0.461,0.48,2013-14 7631,Quincy Miller,DEN,21.0,205.74,95.25432,Baylor,USA,2012,2,38,52,4.9,2.8,0.5,-4.3,0.049,0.158,0.17300000000000001,0.45899999999999996,0.047,2013-14 7632,Paul Pierce,BKN,36.0,200.66,106.59411999999999,Kansas,USA,1998,1,10,75,13.5,4.6,2.4,2.2,0.015,0.185,0.226,0.595,0.146,2013-14 7633,Phil Pressey,BOS,23.0,180.34,79.3786,Missouri,USA,Undrafted,Undrafted,Undrafted,75,2.8,1.4,3.2,-0.9,0.021,0.08800000000000001,0.14300000000000002,0.39,0.305,2013-14 7634,Peyton Siva,DET,23.0,182.88,83.91452,Louisville,USA,2013,2,56,24,2.3,0.6,1.4,-6.3,0.009000000000000001,0.065,0.165,0.425,0.258,2013-14 7635,Perry Jones III,OKC,22.0,210.82,106.59411999999999,Baylor,USA,2012,1,28,62,3.5,1.8,0.4,5.7,0.045,0.125,0.13,0.541,0.05,2013-14 7636,Pero Antic,ATL,31.0,210.82,117.93392,None,Macedonia,Undrafted,Undrafted,Undrafted,50,7.0,4.2,1.2,3.8,0.07,0.18899999999999997,0.182,0.545,0.1,2013-14 7637,Paul George,IND,24.0,205.74,99.79024,Fresno State,USA,2010,1,10,80,21.7,6.8,3.5,6.4,0.026000000000000002,0.177,0.282,0.555,0.177,2013-14 7638,Paul Millsap,ATL,29.0,203.2,114.758776,Louisiana Tech,USA,2006,2,47,74,17.9,8.5,3.1,1.4,0.07200000000000001,0.215,0.254,0.545,0.16,2013-14 7639,Ray Allen,MIA,38.0,195.58,92.98635999999999,Connecticut,USA,1996,1,5,73,9.6,2.8,2.0,4.6,0.015,0.11800000000000001,0.168,0.59,0.11699999999999999,2013-14 7640,Quincy Acy,SAC,23.0,200.66,102.0582,Baylor,USA,2012,2,37,63,2.7,3.4,0.4,-7.8,0.092,0.19,0.10099999999999999,0.52,0.051,2013-14 7641,Ray McCallum,SAC,23.0,190.5,86.18248,Detroit Mercy,USA,2013,2,36,45,6.2,1.8,2.7,-6.0,0.022000000000000002,0.079,0.179,0.439,0.21600000000000003,2013-14 7642,Royal Ivey,OKC,32.0,193.04,90.7184,Texas,USA,2004,2,37,2,0.0,0.5,0.0,-20.5,0.0,0.33299999999999996,0.207,0.0,0.0,2013-14 7643,Reggie Bullock,LAC,23.0,200.66,92.98635999999999,North Carolina,USA,2013,1,25,43,2.7,1.3,0.3,-0.8,0.03,0.113,0.154,0.46,0.049,2013-14 7644,Pau Gasol,LAL,33.0,213.36,113.398,None,Spain,2001,1,3,60,17.4,9.7,3.4,-9.1,0.071,0.254,0.264,0.522,0.184,2013-14 7645,Roy Hibbert,IND,27.0,218.44,131.54168,Georgetown,USA,2008,1,17,81,10.8,6.6,1.1,7.5,0.10099999999999999,0.146,0.195,0.499,0.06,2013-14 7646,Ronny Turiaf,MIN,31.0,208.28,109.315672,Gonzaga,France,2005,2,37,31,4.8,5.6,0.8,-1.1,0.096,0.213,0.11199999999999999,0.578,0.06,2013-14 7647,Ronnie Brewer,CHI,29.0,200.66,106.59411999999999,Arkansas,USA,2006,1,14,24,0.3,0.6,0.4,-9.7,0.015,0.077,0.053,0.22,0.085,2013-14 7648,Roger Mason Jr.,MIA,33.0,195.58,92.98635999999999,Virginia,USA,2002,2,30,25,3.0,0.9,0.8,1.2,0.005,0.095,0.145,0.528,0.105,2013-14 7649,Rodney Stuckey,DET,28.0,195.58,92.98635999999999,Eastern Washington,USA,2007,1,15,73,13.9,2.3,2.1,-4.9,0.022000000000000002,0.077,0.24600000000000002,0.516,0.129,2013-14 7650,Royce White,SAC,23.0,203.2,117.93392,Iowa State,USA,2012,1,16,3,0.0,0.0,0.0,-37.5,0.0,0.0,0.061,0.0,0.0,2013-14 7651,Robin Lopez,POR,26.0,213.36,115.66596000000001,Stanford,USA,2008,1,15,82,11.1,8.5,0.9,5.8,0.13699999999999998,0.152,0.141,0.605,0.040999999999999995,2013-14 7652,Robert Sacre,LAL,25.0,213.36,117.93392,Gonzaga,Canada,2012,2,60,65,5.4,3.9,0.8,-5.7,0.079,0.174,0.155,0.513,0.07200000000000001,2013-14 7653,Robert Covington,HOU,23.0,205.74,97.52228000000001,Tennessee State,USA,Undrafted,Undrafted,Undrafted,7,2.3,0.7,0.0,27.1,0.065,0.083,0.203,0.5710000000000001,0.0,2013-14 7654,Robbie Hummel,MIN,25.0,203.2,99.79024,Purdue,USA,2012,2,58,53,3.4,2.5,0.4,1.1,0.057,0.16699999999999998,0.126,0.49200000000000005,0.052000000000000005,2013-14 7655,Ricky Rubio,MIN,23.0,193.04,83.91452,None,Spain,2009,1,5,82,9.5,4.2,8.6,5.3,0.025,0.122,0.162,0.491,0.36200000000000004,2013-14 7656,Ricky Ledo,DAL,21.0,200.66,88.45044,Providence,USA,2013,2,43,11,1.7,0.2,0.2,13.8,0.0,0.061,0.293,0.506,0.1,2013-14 7657,Richard Jefferson,UTA,34.0,200.66,106.140528,Arizona,USA,2001,1,13,82,10.1,2.7,1.6,-10.1,0.009000000000000001,0.10800000000000001,0.17300000000000001,0.573,0.098,2013-14 7658,Reggie Williams,OKC,27.0,201.0,86.0,Virginia Military Institute,USA,Undrafted,Undrafted,Undrafted,3,3.7,0.0,0.3,-5.5,0.0,0.0,0.314,0.611,0.14300000000000002,2013-14 7659,Reggie Jackson,OKC,24.0,190.5,94.34713599999999,Boston College,USA,2011,1,24,80,13.1,3.9,4.1,8.0,0.022000000000000002,0.128,0.22699999999999998,0.527,0.231,2013-14 7660,Reggie Evans,SAC,34.0,203.2,111.13004,Iowa,USA,Undrafted,Undrafted,Undrafted,54,4.0,6.2,0.4,-7.0,0.142,0.29600000000000004,0.131,0.516,0.037000000000000005,2013-14 7661,Raymond Felton,NYK,30.0,185.42,92.98635999999999,North Carolina,USA,2005,1,5,65,9.7,3.0,5.6,-0.3,0.031,0.085,0.182,0.47600000000000003,0.275,2013-14 7662,Ronnie Price,ORL,31.0,187.96,86.18248,Utah Valley,USA,Undrafted,Undrafted,Undrafted,31,2.4,1.4,2.1,-2.8,0.023,0.111,0.153,0.379,0.263,2013-14 7663,Mike Miller,MEM,34.0,203.2,98.88305600000001,Florida,USA,2000,1,5,82,7.1,2.5,1.6,-2.5,0.02,0.126,0.14400000000000002,0.619,0.11599999999999999,2013-14 7664,Patrick Patterson,TOR,25.0,205.74,106.59411999999999,Kentucky,USA,2010,1,14,65,8.5,5.3,1.2,6.0,0.085,0.172,0.17300000000000001,0.5329999999999999,0.083,2013-14 7665,Nate Robinson,DEN,30.0,175.26,81.64656,Washington,USA,2005,1,21,44,10.4,1.8,2.5,6.7,0.027999999999999997,0.073,0.24600000000000002,0.544,0.226,2013-14 7666,Nando De Colo,TOR,27.0,195.58,88.45044,None,France,2009,2,53,47,3.8,1.6,1.4,-0.7,0.033,0.139,0.18600000000000003,0.526,0.203,2013-14 7667,Mustafa Shakur,OKC,29.0,190.5,86.18248,Arizona,USA,Undrafted,Undrafted,Undrafted,3,0.3,0.0,1.3,-29.6,0.0,0.0,0.228,0.129,0.667,2013-14 7668,Monta Ellis,DAL,28.0,190.5,83.91452,None,USA,2005,2,40,82,19.0,3.6,5.7,1.4,0.015,0.09699999999999999,0.26,0.532,0.245,2013-14 7669,Mo Williams,POR,31.0,185.42,88.45044,Alabama,USA,2003,2,47,74,9.7,2.1,4.3,0.2,0.025,0.065,0.203,0.507,0.266,2013-14 7670,Mirza Teletovic,BKN,28.0,205.74,109.769264,None,Bosnia,Undrafted,Undrafted,Undrafted,72,8.6,3.7,0.8,-3.4,0.05,0.175,0.20199999999999999,0.5589999999999999,0.069,2013-14 7671,Miroslav Raduljica,MIL,26.0,213.36,113.398,None,Serbia,Undrafted,Undrafted,Undrafted,48,3.8,2.3,0.5,-6.1,0.129,0.136,0.172,0.603,0.084,2013-14 7672,Nate Wolters,MIL,23.0,193.04,86.18248,South Dakota State,USA,2013,2,38,58,7.2,2.6,3.2,-1.8,0.027999999999999997,0.102,0.16699999999999998,0.486,0.22699999999999998,2013-14 7673,Miles Plumlee,PHX,25.0,210.82,115.66596000000001,Duke,USA,2012,1,26,80,8.1,7.8,0.5,1.7,0.111,0.24,0.163,0.529,0.033,2013-14 7674,Mike Muscala,ATL,22.0,210.82,108.40848799999999,Bucknell,USA,2013,2,44,20,3.8,2.6,0.4,-20.3,0.08900000000000001,0.20600000000000002,0.192,0.48,0.057999999999999996,2013-14 7675,Mike James,CHI,39.0,187.96,85.275296,Duquesne,USA,Undrafted,Undrafted,Undrafted,11,1.0,0.6,1.5,-5.1,0.0,0.121,0.175,0.251,0.34700000000000003,2013-14 7676,Mike Harris,UTA,31.0,198.12,109.769264,Rice,USA,Undrafted,Undrafted,Undrafted,20,4.2,1.7,0.3,1.7,0.07,0.09,0.161,0.5760000000000001,0.037000000000000005,2013-14 7677,Mike Dunleavy,CHI,33.0,205.74,104.32616,Duke,USA,2002,1,3,82,11.3,4.2,2.3,2.7,0.021,0.13,0.17,0.5489999999999999,0.11900000000000001,2013-14 7678,Mike Conley,MEM,26.0,185.42,83.91452,Ohio State,USA,2007,1,4,73,17.2,2.9,6.0,1.4,0.019,0.084,0.244,0.545,0.293,2013-14 7679,Rudy Gay,SAC,27.0,203.2,104.32616,Connecticut,USA,2006,1,8,73,20.0,6.0,2.9,-1.9,0.051,0.149,0.27399999999999997,0.54,0.146,2013-14 7680,Michael Kidd-Gilchrist,CHA,20.0,200.66,105.23334399999999,Kentucky,USA,2012,1,2,62,7.2,5.2,0.8,2.0,0.085,0.161,0.155,0.516,0.055,2013-14 7681,Mike Scott,ATL,25.0,203.2,107.501304,Virginia,USA,2012,2,43,80,9.6,3.6,0.9,-6.3,0.049,0.175,0.239,0.5589999999999999,0.091,2013-14 7682,Patty Mills,SAS,25.0,182.88,83.91452,Saint Mary's (CA),Australia,2009,2,55,81,10.2,2.1,1.8,10.8,0.026000000000000002,0.095,0.225,0.588,0.157,2013-14 7683,Nazr Mohammed,CHI,36.0,208.28,113.398,Kentucky,USA,1998,1,29,80,1.6,2.2,0.3,-0.6,0.136,0.21,0.14800000000000002,0.445,0.066,2013-14 7684,Nene,WAS,31.0,210.82,113.398,None,Brazil,2002,1,7,53,14.2,5.5,2.9,3.4,0.049,0.17300000000000001,0.24,0.53,0.166,2013-14 7685,Patrick Beverley,HOU,25.0,185.42,83.91452,Arkansas,USA,2009,2,42,56,10.2,3.5,2.7,9.1,0.051,0.076,0.149,0.545,0.12300000000000001,2013-14 7686,Pablo Prigioni,NYK,37.0,190.5,83.91452,None,Argentina,Undrafted,Undrafted,Undrafted,66,3.8,2.0,3.5,1.7,0.033,0.095,0.095,0.642,0.258,2013-14 7687,PJ Tucker,PHX,29.0,198.12,101.604608,Texas,USA,2006,2,35,81,9.4,6.5,1.7,2.9,0.071,0.16399999999999998,0.14,0.54,0.08,2013-14 7688,Otto Porter Jr.,WAS,21.0,203.2,89.811216,Georgetown,USA,2013,1,3,37,2.1,1.5,0.3,-4.8,0.076,0.145,0.152,0.405,0.051,2013-14 7689,Othyus Jeffers,MIN,28.0,195.58,95.25432,Robert Morris (IL),USA,Undrafted,Undrafted,Undrafted,6,1.5,1.5,0.2,29.7,0.038,0.18600000000000003,0.09,0.58,0.026000000000000002,2013-14 7690,Orlando Johnson,SAC,25.0,195.58,99.79024,California-Santa Barbara,USA,2012,2,36,45,2.2,1.2,0.4,-4.7,0.026000000000000002,0.127,0.161,0.402,0.087,2013-14 7691,Omri Casspi,HOU,26.0,205.74,102.0582,None,Israel,2009,1,23,71,6.9,3.7,1.2,6.2,0.05,0.165,0.18100000000000002,0.528,0.105,2013-14 7692,Nemanja Nedovic,GSW,23.0,190.5,87.089664,None,Serbia,2013,1,30,24,1.1,0.6,0.5,-19.8,0.023,0.09,0.17,0.306,0.16,2013-14 7693,Omer Asik,HOU,27.0,213.36,115.66596000000001,None,Turkey,2008,2,36,48,5.8,7.9,0.5,3.4,0.12,0.293,0.136,0.57,0.039,2013-14 7694,O.J. Mayo,MIL,26.0,193.04,95.25432,Southern California,USA,2008,1,3,52,11.7,2.4,2.2,-13.9,0.019,0.086,0.22899999999999998,0.516,0.152,2013-14 7695,Norris Cole,MIA,25.0,187.96,79.3786,Cleveland State,USA,2011,1,28,82,6.4,2.0,3.0,4.1,0.011000000000000001,0.08800000000000001,0.157,0.49700000000000005,0.187,2013-14 7696,Nikola Vucevic,ORL,23.0,213.36,113.398,Southern California,Montenegro,2011,1,16,57,14.2,11.0,1.8,-5.1,0.113,0.273,0.21600000000000003,0.536,0.098,2013-14 7697,Nikola Pekovic,MIN,28.0,210.82,129.27372,None,Montenegro,2008,2,31,54,17.5,8.7,0.9,5.7,0.132,0.17800000000000002,0.225,0.5820000000000001,0.049,2013-14 7698,Nick Young,LAL,29.0,200.66,95.25432,Southern California,USA,2007,1,16,64,17.9,2.6,1.5,-2.2,0.017,0.08199999999999999,0.27,0.564,0.091,2013-14 7699,Nick Collison,OKC,33.0,208.28,115.66596000000001,Kansas,USA,2003,1,12,81,4.2,3.6,1.3,12.2,0.102,0.145,0.11599999999999999,0.599,0.10800000000000001,2013-14 7700,Nick Calathes,MEM,25.0,198.12,96.615096,Florida,USA,2009,2,45,71,4.9,1.9,2.9,1.9,0.025,0.113,0.177,0.506,0.273,2013-14 7701,Ognjen Kuzmic,GSW,24.0,213.36,113.851592,None,Bosnia,2012,2,52,21,0.7,1.0,0.1,-27.3,0.105,0.14300000000000002,0.126,0.42,0.034,2013-14 7702,Rudy Gobert,UTA,22.0,215.9,111.13004,None,France,2013,1,27,45,2.3,3.4,0.2,-3.4,0.13,0.262,0.13699999999999998,0.507,0.026000000000000002,2013-14 7703,Wesley Matthews,POR,27.0,195.58,99.79024,Marquette,USA,Undrafted,Undrafted,Undrafted,82,16.4,3.5,2.4,4.9,0.02,0.09,0.196,0.588,0.109,2013-14 7704,Ryan Anderson,NOP,26.0,208.28,108.86208,California,USA,2008,1,21,22,19.8,6.5,0.8,1.7,0.08900000000000001,0.111,0.22,0.5720000000000001,0.032,2013-14 7705,Tyler Hansbrough,TOR,28.0,205.74,113.398,North Carolina,USA,2009,1,13,64,4.9,4.5,0.3,0.1,0.14300000000000002,0.21100000000000002,0.14800000000000002,0.562,0.028999999999999998,2013-14 7706,Ty Lawson,DEN,26.0,180.34,88.45044,North Carolina,USA,2009,1,18,62,17.6,3.5,8.8,-1.6,0.02,0.085,0.225,0.5539999999999999,0.369,2013-14 7707,Troy Daniels,HOU,22.0,193.04,92.532768,Virginia Commonwealth,USA,Undrafted,Undrafted,Undrafted,5,8.4,0.8,1.0,22.0,0.0,0.07,0.20600000000000002,0.677,0.114,2013-14 7708,Tristan Thompson,CLE,23.0,205.74,107.95489599999999,Texas,Canada,2011,1,4,82,11.7,9.2,0.9,-4.9,0.114,0.218,0.175,0.528,0.044000000000000004,2013-14 7709,Trey Burke,UTA,21.0,185.42,86.18248,Michigan,USA,2013,1,9,70,12.8,3.0,5.7,-6.4,0.018000000000000002,0.09,0.21899999999999997,0.473,0.28,2013-14 7710,Trevor Booker,WAS,26.0,203.2,106.59411999999999,Clemson,USA,2010,1,23,72,6.8,5.3,0.9,-1.3,0.10800000000000001,0.17800000000000002,0.14400000000000002,0.563,0.061,2013-14 7711,Trevor Ariza,WAS,28.0,203.2,99.79024,UCLA,USA,2004,2,43,77,14.4,6.2,2.5,3.5,0.040999999999999995,0.16,0.175,0.59,0.105,2013-14 7712,Tyler Zeller,CLE,24.0,213.36,114.758776,North Carolina,USA,2012,1,17,70,5.7,4.0,0.5,-0.2,0.11199999999999999,0.191,0.172,0.581,0.055,2013-14 7713,Travis Outlaw,SAC,29.0,205.74,93.89354399999999,None,USA,2003,1,23,63,5.4,2.7,0.8,-4.7,0.037000000000000005,0.136,0.156,0.49200000000000005,0.076,2013-14 7714,Tornike Shengelia,CHI,22.0,205.74,99.79024,None,Georgia,2012,2,54,26,1.1,0.6,0.5,-11.0,0.028999999999999998,0.094,0.127,0.46,0.141,2013-14 7715,Tony Wroten,PHI,21.0,198.12,92.98635999999999,Washington,USA,2012,1,25,72,13.0,3.2,3.0,-12.1,0.040999999999999995,0.099,0.275,0.493,0.21,2013-14 7716,Tony Snell,CHI,22.0,200.66,90.7184,New Mexico,USA,2013,1,20,77,4.5,1.6,0.9,-4.2,0.018000000000000002,0.095,0.151,0.489,0.095,2013-14 7717,Tony Parker,SAS,32.0,187.96,83.91452,None,France,2001,1,28,68,16.7,2.3,5.7,6.7,0.01,0.075,0.266,0.555,0.31,2013-14 7718,Tony Mitchell,DET,22.0,203.2,106.59411999999999,North Texas,USA,2013,2,37,21,1.0,1.2,0.1,2.6,0.174,0.177,0.132,0.54,0.04,2013-14 7719,Tony Mitchell,MIL,24.0,198.12,97.975872,Alabama,USA,Undrafted,Undrafted,Undrafted,3,2.0,0.3,0.3,3.1,0.16699999999999998,0.0,0.242,0.6,0.2,2013-14 7720,Tony Allen,MEM,32.0,193.04,96.615096,Oklahoma State,USA,2004,1,25,55,9.0,3.8,1.7,3.8,0.073,0.121,0.19899999999999998,0.531,0.115,2013-14 7721,Toure' Murry,NYK,24.0,195.58,88.45044,Wichita State,USA,Undrafted,Undrafted,Undrafted,51,2.7,0.9,1.0,-1.3,0.04,0.091,0.218,0.479,0.215,2013-14 7722,Tyreke Evans,NOP,24.0,198.12,99.79024,Memphis,USA,2009,1,4,72,14.5,4.7,5.0,-4.4,0.043,0.153,0.272,0.504,0.313,2013-14 7723,Tyshawn Taylor,BKN,24.0,190.5,83.91452,Kansas,USA,2012,2,41,23,3.9,0.7,1.6,-23.9,0.012,0.054000000000000006,0.231,0.42700000000000005,0.242,2013-14 7724,Tyson Chandler,NYK,31.0,215.9,108.86208,None,USA,2001,1,2,55,8.7,9.6,1.1,0.4,0.11,0.264,0.129,0.615,0.054000000000000006,2013-14 7725,Michael Carter-Williams,PHI,22.0,198.12,83.91452,Syracuse,USA,2013,1,11,70,16.7,6.2,6.3,-9.1,0.043,0.158,0.256,0.48,0.292,2013-14 7726,Zaza Pachulia,MIL,30.0,210.82,124.7378,None,Georgia,2003,2,42,53,7.7,6.3,2.6,-8.6,0.11900000000000001,0.177,0.16899999999999998,0.502,0.16,2013-14 7727,Zach Randolph,MEM,32.0,205.74,117.93392,Michigan State,USA,2001,1,19,79,17.4,10.1,2.5,1.5,0.11599999999999999,0.235,0.261,0.51,0.124,2013-14 7728,Xavier Henry,LAL,23.0,198.12,99.79024,Kansas,USA,2010,1,12,43,10.0,2.7,1.2,-1.1,0.028999999999999998,0.10400000000000001,0.22699999999999998,0.511,0.09,2013-14 7729,Wilson Chandler,DEN,27.0,203.2,102.0582,DePaul,USA,2007,1,23,62,13.6,4.7,1.8,-4.6,0.032,0.134,0.195,0.526,0.09300000000000001,2013-14 7730,Willie Green,LAC,32.0,190.5,91.171992,Detroit Mercy,USA,2003,2,41,55,5.0,1.4,0.9,6.0,0.016,0.081,0.166,0.47700000000000004,0.09,2013-14 7731,Will Bynum,DET,31.0,182.88,83.91452,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,56,8.7,1.8,3.9,-5.7,0.024,0.08199999999999999,0.23800000000000002,0.502,0.327,2013-14 7732,Will Barton,POR,23.0,198.12,79.3786,Memphis,USA,2012,2,40,41,4.0,1.8,0.8,-0.7,0.044000000000000004,0.154,0.21600000000000003,0.488,0.149,2013-14 7733,Wesley Johnson,LAL,26.0,200.66,97.52228000000001,Syracuse,USA,2010,1,4,79,9.1,4.4,1.6,-7.6,0.033,0.132,0.151,0.522,0.08199999999999999,2013-14 7734,Wayne Ellington,DAL,26.0,193.04,90.7184,North Carolina,USA,2009,1,28,45,3.2,1.0,0.4,-3.3,0.023,0.107,0.158,0.5539999999999999,0.068,2013-14 7735,Vitor Faverani,BOS,26.0,210.82,117.93392,None,Brazil,Undrafted,Undrafted,Undrafted,37,4.4,3.5,0.4,-9.4,0.09699999999999999,0.195,0.191,0.502,0.059000000000000004,2013-14 7736,Vince Carter,DAL,37.0,198.12,99.79024,North Carolina,USA,1998,1,5,81,11.9,3.5,2.6,3.0,0.038,0.125,0.22899999999999998,0.539,0.17,2013-14 7737,Victor Oladipo,ORL,22.0,193.04,97.52228000000001,Indiana,USA,2013,1,2,80,13.8,4.1,4.1,-4.9,0.02,0.129,0.243,0.514,0.225,2013-14 7738,Victor Claver,POR,25.0,205.74,101.604608,None,Spain,2009,1,22,21,2.2,1.9,0.6,9.1,0.057999999999999996,0.153,0.147,0.502,0.094,2013-14 7739,Viacheslav Kravtsov,PHX,26.0,210.82,115.212368,None,Ukraine,Undrafted,Undrafted,Undrafted,20,1.0,0.9,0.1,-31.9,0.15,0.174,0.18,0.54,0.034,2013-14 7740,Vander Blue,BOS,21.0,193.04,90.7184,Marquette,USA,Undrafted,Undrafted,Undrafted,3,1.7,1.0,0.3,10.4,0.0,0.17600000000000002,0.253,0.40299999999999997,0.091,2013-14 7741,Udonis Haslem,MIA,34.0,203.2,106.59411999999999,Florida,USA,Undrafted,Undrafted,Undrafted,46,3.8,3.8,0.3,-2.4,0.079,0.259,0.142,0.523,0.032,2013-14 7742,Toney Douglas,MIA,28.0,187.96,88.45044,Florida State,USA,2009,1,29,51,4.0,1.7,1.3,0.8,0.031,0.12,0.166,0.493,0.157,2013-14 7743,Russell Westbrook,OKC,25.0,190.5,90.7184,UCLA,USA,2008,1,4,46,21.8,5.7,6.9,8.3,0.046,0.153,0.33299999999999996,0.545,0.38,2013-14 7744,Tobias Harris,ORL,21.0,205.74,106.59411999999999,Tennessee,USA,2011,1,19,61,14.6,7.0,1.3,-6.5,0.052000000000000005,0.209,0.222,0.542,0.077,2013-14 7745,Tim Hardaway Jr.,NYK,22.0,198.12,92.98635999999999,Michigan,USA,2013,1,24,81,10.2,1.5,0.8,-5.9,0.012,0.066,0.192,0.5539999999999999,0.059000000000000004,2013-14 7746,Shavlik Randolph,PHX,30.0,208.28,107.047712,Duke,USA,Undrafted,Undrafted,Undrafted,14,1.4,1.8,0.1,21.2,0.09699999999999999,0.20199999999999999,0.11199999999999999,0.531,0.013999999999999999,2013-14 7747,Shaun Livingston,BKN,28.0,200.66,79.3786,None,USA,2004,1,4,76,8.3,3.2,3.2,2.3,0.040999999999999995,0.11,0.163,0.551,0.201,2013-14 7748,Shannon Brown,NYK,28.0,193.04,95.25432,Michigan State,USA,2006,1,25,29,2.2,1.0,0.3,-7.8,0.032,0.098,0.17,0.419,0.059000000000000004,2013-14 7749,Shane Larkin,DAL,21.0,180.34,79.83219199999998,Miami (FL),USA,2013,1,18,48,2.8,0.9,1.5,5.2,0.025,0.078,0.17300000000000001,0.446,0.20800000000000002,2013-14 7750,Shane Edwards,CLE,27.0,200.66,99.79024,Arkansas-Little Rock,USA,Undrafted,Undrafted,Undrafted,2,1.0,1.0,0.0,-25.6,0.083,0.111,0.161,0.33299999999999996,0.0,2013-14 7751,Shane Battier,MIA,35.0,203.2,99.79024,Duke,USA,2001,1,6,73,4.1,1.9,0.9,8.5,0.03,0.087,0.099,0.523,0.057,2013-14 7752,Shabazz Muhammad,MIN,21.0,198.12,100.697424,UCLA,USA,2013,1,14,37,3.9,1.4,0.2,-14.0,0.08800000000000001,0.10400000000000001,0.23199999999999998,0.505,0.038,2013-14 7753,Shawn Marion,DAL,36.0,200.66,103.418976,Nevada-Las Vegas,USA,1999,1,9,76,10.4,6.5,1.6,0.0,0.064,0.16899999999999998,0.158,0.537,0.076,2013-14 7754,Seth Curry,CLE,23.0,187.96,83.91452,Duke,USA,Undrafted,Undrafted,Undrafted,2,1.5,0.5,0.0,-4.9,0.0,0.077,0.10099999999999999,0.5,0.0,2013-14 7755,Serge Ibaka,OKC,24.0,208.28,111.13004,None,Democratic Republic of the Congo,2008,1,24,81,15.1,8.8,1.0,7.4,0.1,0.191,0.196,0.5760000000000001,0.051,2013-14 7756,Scotty Hopson,CLE,24.0,200.66,92.532768,Tennessee,USA,Undrafted,Undrafted,Undrafted,2,0.5,0.0,0.5,-13.1,0.0,0.0,0.307,0.102,0.2,2013-14 7757,Sasha Vujacic,LAC,30.0,200.66,92.98635999999999,None,Slovenia,2004,1,27,2,2.5,1.5,0.0,-42.6,0.0,0.25,0.32,0.5,0.0,2013-14 7758,Samuel Dalembert,DAL,34.0,210.82,113.398,Seton Hall,Haiti,2001,1,26,80,6.6,6.8,0.5,1.8,0.146,0.242,0.15,0.605,0.035,2013-14 7759,Ryan Kelly,LAL,23.0,210.82,104.32616,Duke,USA,2013,2,48,59,8.0,3.7,1.6,-3.3,0.035,0.145,0.159,0.5479999999999999,0.10400000000000001,2013-14 7760,Ryan Hollins,LAC,29.0,213.36,108.86208,UCLA,USA,2006,2,50,61,2.3,1.5,0.1,6.3,0.076,0.126,0.12,0.73,0.026000000000000002,2013-14 7761,Ryan Gomes,OKC,31.0,200.66,111.13004,Providence,USA,2005,2,50,5,1.2,0.8,0.2,9.8,0.0,0.133,0.115,0.375,0.048,2013-14 7762,Sergey Karasev,CLE,20.0,200.66,88.904032,None,Russia,2013,1,19,22,1.7,0.7,0.3,-15.6,0.0,0.121,0.14400000000000002,0.47,0.059000000000000004,2013-14 7763,Shawne Williams,LAL,28.0,205.74,104.32616,Memphis,USA,2006,1,17,36,5.6,4.6,0.8,1.6,0.036000000000000004,0.196,0.132,0.503,0.057999999999999996,2013-14 7764,Shelvin Mack,ATL,24.0,190.5,93.89354399999999,Butler,USA,2011,2,34,73,7.5,2.2,3.7,-1.5,0.017,0.10800000000000001,0.191,0.51,0.28800000000000003,2013-14 7765,Solomon Hill,IND,23.0,200.66,102.0582,Arizona,USA,2013,1,23,28,1.7,1.5,0.4,2.1,0.045,0.153,0.114,0.545,0.078,2013-14 7766,Tim Duncan,SAS,38.0,210.82,113.398,Wake Forest,US Virgin Islands,1997,1,1,74,15.1,9.7,3.0,6.6,0.086,0.282,0.254,0.535,0.159,2013-14 7767,Tiago Splitter,SAS,29.0,210.82,111.13004,None,Brazil,2007,1,28,59,8.2,6.2,1.5,10.5,0.106,0.196,0.174,0.5720000000000001,0.10300000000000001,2013-14 7768,Thomas Robinson,POR,23.0,208.28,107.501304,Kansas,USA,2012,1,5,70,4.8,4.4,0.5,-4.7,0.132,0.254,0.19699999999999998,0.502,0.061,2013-14 7769,Thaddeus Young,PHI,26.0,203.2,104.32616,Georgia Tech,USA,2007,1,12,79,17.9,6.0,2.3,-11.6,0.063,0.129,0.24100000000000002,0.512,0.114,2013-14 7770,Thabo Sefolosha,OKC,30.0,200.66,100.697424,None,Switzerland,2006,1,13,61,6.3,3.6,1.5,4.8,0.037000000000000005,0.113,0.11900000000000001,0.517,0.08199999999999999,2013-14 7771,Terrence Ross,TOR,23.0,198.12,88.45044,Washington,USA,2012,1,8,81,10.9,3.1,1.0,4.0,0.023,0.113,0.18600000000000003,0.5529999999999999,0.06,2013-14 7772,Terrence Jones,HOU,22.0,205.74,114.30518400000001,Kentucky,USA,2012,1,18,76,12.1,6.9,1.1,4.1,0.092,0.185,0.185,0.5770000000000001,0.067,2013-14 7773,Tayshaun Prince,MEM,34.0,205.74,97.52228000000001,Kentucky,USA,2002,1,23,76,6.0,3.1,1.6,0.7,0.019,0.12300000000000001,0.136,0.43799999999999994,0.09,2013-14 7774,Taj Gibson,CHI,29.0,205.74,102.0582,Southern California,USA,2009,1,26,82,13.0,6.8,1.1,3.6,0.102,0.165,0.23199999999999998,0.524,0.075,2013-14 7775,Steven Adams,OKC,20.0,213.36,115.66596000000001,Pittsburgh,New Zealand,2013,1,12,81,3.3,4.1,0.5,3.8,0.142,0.17800000000000002,0.11599999999999999,0.541,0.05,2013-14 7776,Steve Novak,TOR,31.0,208.28,106.59411999999999,Marquette,USA,2006,2,32,54,3.3,1.1,0.2,0.6,0.016,0.111,0.125,0.599,0.038,2013-14 7777,Steve Nash,LAL,40.0,190.5,80.73937600000001,Santa Clara,Canada,1996,1,15,15,6.8,1.9,5.7,-9.3,0.012,0.086,0.18600000000000003,0.488,0.428,2013-14 7778,Steve Blake,GSW,34.0,190.5,78.017824,Maryland,USA,2003,2,38,55,6.9,2.9,5.6,-4.9,0.009000000000000001,0.105,0.14,0.508,0.303,2013-14 7779,Stephen Jackson,LAC,36.0,203.2,99.79024,Butler Community College,USA,1997,2,42,9,1.7,1.1,0.6,11.3,0.023,0.099,0.142,0.27,0.071,2013-14 7780,Stephen Curry,GSW,26.0,190.5,83.91452,Davidson,USA,2009,1,7,78,24.0,4.3,8.5,9.4,0.018000000000000002,0.10800000000000001,0.281,0.61,0.37200000000000005,2013-14 7781,Spencer Hawes,CLE,26.0,215.9,111.13004,Washington,USA,2007,1,10,80,13.2,8.3,3.0,-9.2,0.057,0.228,0.196,0.5539999999999999,0.152,2013-14 7782,Solomon Jones,ORL,29.0,208.28,106.59411999999999,South Florida,USA,2006,2,33,11,1.3,1.5,0.2,-11.4,0.107,0.11800000000000001,0.11199999999999999,0.373,0.039,2013-14 7783,Timofey Mozgov,DEN,27.0,215.9,113.398,None,Russia,Undrafted,Undrafted,Undrafted,82,9.4,6.4,0.8,1.0,0.10800000000000001,0.21,0.188,0.584,0.055,2013-14 7784,Michael Beasley,MIA,25.0,208.28,106.59411999999999,Kansas State,USA,2008,1,2,55,7.9,3.1,0.8,-1.0,0.047,0.21100000000000002,0.255,0.5589999999999999,0.08800000000000001,2013-14 7785,Nicolas Batum,POR,25.0,203.2,90.7184,None,France,2008,1,25,82,13.0,7.5,5.1,5.1,0.043,0.179,0.16399999999999998,0.589,0.20800000000000002,2013-14 7786,Metta World Peace,NYK,34.0,200.66,117.93392,St. John's (NY),USA,1999,1,16,29,4.8,2.0,0.6,2.0,0.052000000000000005,0.129,0.195,0.469,0.07,2013-14 7787,Dante Cunningham,MIN,27.0,203.2,100.243832,Villanova,USA,2009,2,33,81,6.3,4.1,1.0,-0.9,0.073,0.149,0.155,0.474,0.08,2013-14 7788,Darius Johnson-Odom,PHI,24.0,187.96,97.52228000000001,Marquette,USA,2012,2,55,3,0.0,0.7,0.3,-9.9,0.0,0.133,0.271,0.0,0.1,2013-14 7789,Darius Miller,NOP,24.0,203.2,102.0582,Kentucky,USA,2012,2,46,45,4.4,1.2,1.0,1.0,0.015,0.068,0.129,0.55,0.09,2013-14 7790,Darius Morris,MEM,23.0,193.04,88.45044,Michigan,USA,2011,2,41,27,4.0,1.0,1.6,-12.1,0.024,0.075,0.192,0.498,0.259,2013-14 7791,Darrell Arthur,DEN,26.0,205.74,106.59411999999999,Kansas,USA,2008,1,27,68,5.9,3.1,0.9,3.3,0.05,0.14400000000000002,0.185,0.45899999999999996,0.08199999999999999,2013-14 7792,Darren Collison,LAC,26.0,182.88,79.3786,UCLA,USA,2009,1,21,80,11.4,2.4,3.7,5.7,0.026000000000000002,0.073,0.198,0.575,0.225,2013-14 7793,David Lee,GSW,31.0,205.74,108.86208,Florida,USA,2005,1,30,69,18.2,9.3,2.1,9.7,0.08900000000000001,0.214,0.24100000000000002,0.5660000000000001,0.10099999999999999,2013-14 7794,Danny Green,SAS,27.0,198.12,97.52228000000001,North Carolina,USA,2009,2,46,68,9.1,3.4,1.5,9.8,0.017,0.13,0.165,0.58,0.092,2013-14 7795,David West,IND,33.0,205.74,113.398,Xavier,USA,2003,1,18,80,14.0,6.8,2.8,8.4,0.057999999999999996,0.18,0.21899999999999997,0.5329999999999999,0.158,2013-14 7796,DeAndre Liggins,MIA,26.0,198.12,94.800728,Kentucky,USA,2011,2,53,1,2.0,1.0,0.0,33.3,0.5,0.0,0.2,1.0,0.0,2013-14 7797,DeJuan Blair,DAL,25.0,200.66,122.46983999999999,Pittsburgh,USA,2009,2,37,78,6.4,4.7,0.9,1.3,0.127,0.22,0.192,0.557,0.08800000000000001,2013-14 7798,DeMar DeRozan,TOR,24.0,200.66,97.975872,Southern California,USA,2009,1,9,79,22.7,4.3,4.0,3.4,0.02,0.113,0.282,0.532,0.18899999999999997,2013-14 7799,DeMarcus Cousins,SAC,23.0,210.82,122.46983999999999,Kentucky,USA,2010,1,5,71,22.7,11.7,2.9,-1.9,0.109,0.309,0.326,0.555,0.175,2013-14 7800,DeMarre Carroll,ATL,27.0,203.2,96.16150400000001,Missouri,USA,2009,1,27,73,11.1,5.5,1.8,3.4,0.053,0.14300000000000002,0.153,0.575,0.08800000000000001,2013-14 7801,Dennis Schroder,ATL,20.0,185.42,76.203456,None,Germany,2013,1,17,49,3.7,1.2,1.9,-16.2,0.009000000000000001,0.105,0.196,0.442,0.247,2013-14 7802,Derek Fisher,OKC,39.0,185.42,95.25432,Arkansas-Little Rock,USA,1996,1,24,81,5.2,1.5,1.4,9.1,0.01,0.08800000000000001,0.139,0.542,0.12,2013-14 7803,DeAndre Jordan,LAC,25.0,210.82,120.20188,Texas A&M,USA,2008,2,35,82,10.4,13.6,0.9,9.2,0.133,0.289,0.12300000000000001,0.63,0.036000000000000004,2013-14 7804,Deron Williams,BKN,30.0,190.5,94.800728,Illinois,USA,2005,1,3,64,14.3,2.6,6.1,5.2,0.009000000000000001,0.08900000000000001,0.21899999999999997,0.564,0.312,2013-14 7805,Danny Granger,LAC,31.0,205.74,103.418976,New Mexico,USA,2005,1,17,41,8.2,3.2,1.0,5.5,0.040999999999999995,0.13,0.198,0.502,0.08,2013-14 7806,Damion James,SAS,26.0,200.66,102.0582,Texas,USA,2010,1,24,5,1.2,2.4,0.6,6.2,0.019,0.239,0.095,0.304,0.071,2013-14 7807,Chris Johnson,BOS,24.0,198.12,91.171992,Dayton,USA,Undrafted,Undrafted,Undrafted,40,6.3,2.4,0.8,-1.4,0.043,0.102,0.14,0.537,0.059000000000000004,2013-14 7808,Chris Kaman,LAL,32.0,213.36,120.20188,Central Michigan,USA,2003,1,6,39,10.4,5.9,1.5,-3.7,0.078,0.24100000000000002,0.263,0.537,0.14,2013-14 7809,Chris Paul,LAC,29.0,182.88,79.3786,Wake Forest,USA,2005,1,4,62,19.1,4.3,10.7,11.6,0.02,0.114,0.23399999999999999,0.58,0.45899999999999996,2013-14 7810,Chris Singleton,WAS,24.0,205.74,103.418976,Florida State,USA,2011,1,18,25,3.0,2.2,0.2,-14.9,0.07400000000000001,0.185,0.168,0.48100000000000004,0.043,2013-14 7811,Chris Smith,NYK,26.0,187.96,90.7184,Louisville,USA,Undrafted,Undrafted,Undrafted,2,0.0,0.0,0.0,-98.5,0.0,0.0,0.0,0.0,0.0,2013-14 7812,Chris Wright,MIL,25.0,205.74,102.511792,Dayton,USA,Undrafted,Undrafted,Undrafted,8,6.0,2.5,0.6,-5.4,0.10099999999999999,0.09300000000000001,0.16699999999999998,0.5770000000000001,0.057999999999999996,2013-14 7813,Chuck Hayes,TOR,31.0,198.12,113.398,Kentucky,USA,Undrafted,Undrafted,Undrafted,61,2.2,3.4,0.6,4.7,0.099,0.223,0.10400000000000001,0.46799999999999997,0.069,2013-14 7814,Daniel Orton,PHI,23.0,208.28,124.7378,Kentucky,USA,2010,1,29,22,3.0,2.8,0.7,-8.6,0.07,0.209,0.131,0.54,0.09699999999999999,2013-14 7815,Cody Zeller,CHA,21.0,213.36,108.86208,Indiana,USA,2013,1,4,82,6.0,4.3,1.1,-2.2,0.09300000000000001,0.185,0.182,0.498,0.106,2013-14 7816,Corey Brewer,MIN,28.0,205.74,83.91452,Florida,USA,2007,1,7,81,12.3,2.6,1.7,4.7,0.026000000000000002,0.062,0.162,0.55,0.075,2013-14 7817,Cory Joseph,SAS,22.0,190.5,86.18248,Texas,Canada,2011,1,29,68,5.0,1.6,1.7,1.7,0.042,0.08800000000000001,0.17300000000000001,0.5579999999999999,0.18,2013-14 7818,Courtney Lee,MEM,28.0,195.58,90.7184,Western Kentucky,USA,2008,1,22,79,9.6,2.4,1.5,0.7,0.018000000000000002,0.09300000000000001,0.17300000000000001,0.574,0.09300000000000001,2013-14 7819,D.J. Augustin,CHI,26.0,182.88,83.007336,Texas,USA,2008,1,9,71,13.1,1.8,4.4,1.1,0.009000000000000001,0.067,0.22699999999999998,0.569,0.297,2013-14 7820,DJ Stephens,MIL,23.0,195.58,85.275296,Memphis,USA,Undrafted,Undrafted,Undrafted,3,2.3,1.7,0.0,-7.1,0.063,0.364,0.217,0.47,0.0,2013-14 7821,DJ White,CHA,27.0,205.74,113.398,Indiana,USA,2008,1,29,2,0.0,1.0,0.0,-14.6,0.0,0.4,0.04,0.0,0.0,2013-14 7822,Damian Lillard,POR,23.0,190.5,88.45044,Weber State,USA,2012,1,6,82,20.7,3.5,5.6,5.4,0.013000000000000001,0.092,0.25,0.568,0.249,2013-14 7823,Cole Aldrich,NYK,25.0,210.82,111.13004,Kansas,USA,2010,1,11,46,2.0,2.8,0.3,-1.4,0.128,0.325,0.128,0.62,0.063,2013-14 7824,Chris Douglas-Roberts,CHA,27.0,200.66,95.25432,Memphis,USA,2008,2,40,49,6.9,2.4,1.0,0.6,0.018000000000000002,0.113,0.14800000000000002,0.588,0.081,2013-14 7825,Derrick Favors,UTA,22.0,208.28,121.562656,Georgia Tech,USA,2010,1,3,73,13.3,8.7,1.2,-8.7,0.10099999999999999,0.237,0.21,0.556,0.07200000000000001,2013-14 7826,Derrick Williams,SAC,23.0,203.2,108.86208,Arizona,USA,2011,1,2,78,8.0,4.1,0.7,-4.5,0.042,0.151,0.162,0.524,0.049,2013-14 7827,Ekpe Udoh,MIL,27.0,208.28,111.13004,Baylor,USA,2010,1,6,42,3.4,3.5,0.7,-9.2,0.087,0.12,0.11699999999999999,0.44,0.059000000000000004,2013-14 7828,Elias Harris,LAL,24.0,203.2,108.40848799999999,Gonzaga,Germany,Undrafted,Undrafted,Undrafted,2,0.0,0.5,0.5,-14.3,0.083,0.0,0.036000000000000004,0.0,0.091,2013-14 7829,Elliot Williams,PHI,25.0,196.0,86.0,Memphis,USA,2010,1,22,67,6.0,1.9,1.1,-14.9,0.027000000000000003,0.1,0.168,0.519,0.10400000000000001,2013-14 7830,Elton Brand,ATL,35.0,205.74,115.212368,Duke,USA,1999,1,1,73,5.7,4.9,1.0,-1.3,0.085,0.218,0.142,0.561,0.081,2013-14 7831,Enes Kanter,UTA,22.0,210.82,112.037224,Kentucky,Turkey,2011,1,3,80,12.3,7.5,0.9,-12.8,0.11599999999999999,0.21899999999999997,0.23199999999999998,0.523,0.064,2013-14 7832,Eric Bledsoe,PHX,24.0,185.42,88.45044,Kentucky,USA,2010,1,18,43,17.7,4.7,5.5,4.9,0.021,0.133,0.249,0.578,0.272,2013-14 7833,Eric Gordon,NOP,25.0,193.04,97.52228000000001,Indiana,USA,2008,1,7,64,15.4,2.6,3.3,-6.2,0.016,0.079,0.22899999999999998,0.54,0.16399999999999998,2013-14 7834,Ed Davis,MEM,25.0,208.28,102.0582,North Carolina,USA,2010,1,13,63,5.7,4.1,0.4,3.9,0.111,0.204,0.175,0.542,0.045,2013-14 7835,Eric Maynor,PHI,27.0,190.5,79.3786,Virginia Commonwealth,USA,2009,1,20,31,2.6,1.3,1.7,-26.5,0.03,0.113,0.184,0.387,0.29100000000000004,2013-14 7836,Ersan Ilyasova,MIL,27.0,208.28,106.59411999999999,None,Turkey,2005,2,36,55,11.2,6.2,1.3,-9.9,0.077,0.188,0.21100000000000002,0.486,0.086,2013-14 7837,Evan Fournier,DEN,21.0,198.12,90.7184,None,France,2012,1,20,76,8.4,2.7,1.5,0.1,0.024,0.124,0.195,0.5329999999999999,0.11900000000000001,2013-14 7838,Evan Turner,IND,25.0,200.66,99.79024,Ohio State,USA,2010,1,2,81,14.0,5.0,3.2,-7.0,0.027000000000000003,0.151,0.233,0.498,0.174,2013-14 7839,Francisco Garcia,HOU,32.0,200.66,88.45044,Louisville,Dominican Republic,2005,1,23,55,5.7,2.2,1.1,3.3,0.022000000000000002,0.098,0.134,0.521,0.09,2013-14 7840,Gal Mekel,DAL,26.0,190.5,86.636072,Wichita State,Israel,Undrafted,Undrafted,Undrafted,31,2.4,0.9,2.0,-1.9,0.019,0.094,0.182,0.4,0.299,2013-14 7841,Garrett Temple,WAS,28.0,198.12,88.45044,Louisiana State,USA,Undrafted,Undrafted,Undrafted,75,1.8,0.9,1.0,-5.6,0.038,0.091,0.146,0.431,0.18,2013-14 7842,Gary Neal,CHA,29.0,193.04,95.25432,Towson,USA,Undrafted,Undrafted,Undrafted,52,10.5,1.7,1.6,-8.8,0.01,0.085,0.24100000000000002,0.53,0.13699999999999998,2013-14 7843,Erik Murphy,CHI,23.0,208.28,104.32616,Florida,USA,2013,2,49,24,0.3,0.3,0.1,-40.0,0.028999999999999998,0.111,0.114,0.231,0.065,2013-14 7844,Derrick Rose,CHI,25.0,190.5,86.18248,Memphis,USA,2008,1,1,10,15.9,3.2,4.3,-3.3,0.031,0.076,0.295,0.446,0.257,2013-14 7845,Earl Watson,POR,35.0,185.42,90.264808,UCLA,USA,2001,2,39,24,0.5,0.6,1.2,-0.8,0.035,0.068,0.083,0.47,0.24600000000000002,2013-14 7846,E'Twaun Moore,ORL,25.0,193.04,86.636072,Purdue,USA,2011,2,55,79,6.3,1.7,1.4,-3.5,0.022000000000000002,0.08,0.16399999999999998,0.513,0.122,2013-14 7847,Devin Harris,DAL,31.0,190.5,87.089664,Wisconsin,USA,2004,1,5,40,7.9,2.1,4.5,11.2,0.012,0.10800000000000001,0.203,0.517,0.312,2013-14 7848,Dewayne Dedmon,ORL,24.0,213.36,115.66596000000001,Southern California,USA,Undrafted,Undrafted,Undrafted,31,3.1,4.1,0.2,-10.2,0.114,0.28800000000000003,0.132,0.5,0.021,2013-14 7849,Dexter Pittman,ATL,26.0,210.82,129.27372,Texas,USA,2010,2,32,2,0.0,1.5,0.0,2.8,0.6,0.0,0.273,0.0,0.0,2013-14 7850,Diante Garrett,UTA,25.0,193.04,86.18248,Iowa State,USA,Undrafted,Undrafted,Undrafted,71,3.5,1.4,1.7,-6.1,0.012,0.095,0.152,0.45899999999999996,0.183,2013-14 7851,Dion Waiters,CLE,22.0,193.04,102.0582,Syracuse,USA,2012,1,4,70,15.9,2.8,3.0,-2.5,0.017,0.09,0.26899999999999996,0.508,0.183,2013-14 7852,Dionte Christmas,PHX,27.0,195.58,92.98635999999999,Temple,USA,Undrafted,Undrafted,Undrafted,31,2.3,1.2,0.3,-4.9,0.066,0.15,0.17,0.489,0.067,2013-14 7853,Dirk Nowitzki,DAL,36.0,213.36,111.13004,None,Germany,1998,1,9,80,21.7,6.2,2.7,4.9,0.018000000000000002,0.203,0.268,0.603,0.14,2013-14 7854,Earl Clark,NYK,26.0,208.28,106.140528,Louisville,USA,2009,1,14,54,4.8,2.6,0.3,-8.5,0.032,0.17800000000000002,0.18100000000000002,0.466,0.039,2013-14 7855,Donald Sloan,IND,26.0,190.5,92.98635999999999,Texas A&M,USA,Undrafted,Undrafted,Undrafted,48,2.3,0.9,1.0,-11.5,0.012,0.11,0.17800000000000002,0.43700000000000006,0.223,2013-14 7856,Dorell Wright,POR,28.0,205.74,92.98635999999999,None,USA,2004,1,19,68,5.0,2.8,0.9,1.2,0.033,0.17600000000000002,0.163,0.524,0.096,2013-14 7857,Doron Lamb,ORL,22.0,193.04,90.7184,Kentucky,USA,2012,2,42,53,3.6,0.9,0.8,-0.6,0.013000000000000001,0.069,0.134,0.5429999999999999,0.09300000000000001,2013-14 7858,Draymond Green,GSW,24.0,200.66,104.32616,Michigan State,USA,2012,2,35,82,6.2,5.0,1.9,5.8,0.053,0.19699999999999998,0.149,0.498,0.127,2013-14 7859,Drew Gooden,WAS,32.0,208.28,113.398,Kansas,USA,2002,1,4,22,8.3,5.2,0.7,-5.2,0.11199999999999999,0.24,0.204,0.591,0.066,2013-14 7860,Dwight Buycks,TOR,25.0,190.5,86.18248,Marquette,USA,Undrafted,Undrafted,Undrafted,14,3.1,1.6,0.7,-1.7,0.031,0.153,0.187,0.414,0.115,2013-14 7861,Dwight Howard,HOU,28.0,210.82,120.20188,None,USA,2004,1,1,71,18.3,12.2,1.8,7.9,0.11599999999999999,0.28,0.24100000000000002,0.6,0.091,2013-14 7862,Dwyane Wade,MIA,32.0,193.04,99.79024,Marquette,USA,2003,1,5,54,19.0,4.5,4.7,4.5,0.045,0.11900000000000001,0.276,0.588,0.249,2013-14 7863,Donatas Motiejunas,HOU,23.0,213.36,100.697424,None,Lithuania,2011,1,20,62,5.5,3.6,0.5,4.0,0.071,0.185,0.177,0.504,0.057999999999999996,2013-14 7864,Chris Copeland,IND,30.0,203.2,106.59411999999999,Colorado,USA,Undrafted,Undrafted,Undrafted,41,3.7,0.8,0.4,-3.9,0.03,0.107,0.239,0.621,0.124,2013-14 7865,Chris Bosh,MIA,30.0,210.82,106.59411999999999,Georgia Tech,USA,2003,1,4,79,16.2,6.6,1.1,9.8,0.051,0.19699999999999998,0.226,0.597,0.055999999999999994,2013-14 7866,Chris Babb,BOS,24.0,195.58,102.0582,Iowa State,USA,Undrafted,Undrafted,Undrafted,14,1.6,1.2,0.2,-2.4,0.031,0.11900000000000001,0.113,0.36700000000000005,0.034,2013-14 7867,Andre Drummond,DET,20.0,208.28,122.46983999999999,Connecticut,USA,2012,1,9,81,13.5,13.2,0.4,-5.0,0.177,0.27899999999999997,0.16699999999999998,0.599,0.021,2013-14 7868,Andre Iguodala,GSW,30.0,198.12,93.89354399999999,Arizona,USA,2004,1,9,63,9.3,4.7,4.2,13.7,0.03,0.124,0.134,0.57,0.17,2013-14 7869,Andre Miller,WAS,38.0,187.96,90.7184,Utah,USA,1999,1,8,58,4.9,2.2,3.4,3.6,0.034,0.113,0.152,0.534,0.307,2013-14 7870,Andre Roberson,OKC,22.0,200.66,95.25432,Colorado,USA,2013,1,26,40,1.9,2.4,0.4,6.7,0.11199999999999999,0.155,0.10300000000000001,0.518,0.051,2013-14 7871,Andrea Bargnani,NYK,28.0,213.36,113.398,None,Italy,2006,1,1,42,13.3,5.3,1.1,-6.2,0.059000000000000004,0.152,0.223,0.51,0.063,2013-14 7872,Andrei Kirilenko,BKN,33.0,205.74,106.59411999999999,None,Russia,1999,1,24,45,5.0,3.2,1.6,-3.1,0.077,0.128,0.14400000000000002,0.532,0.131,2013-14 7873,Andrew Bogut,GSW,29.0,213.36,117.93392,Utah,Australia,2005,1,1,67,7.3,10.0,1.7,9.1,0.11699999999999999,0.293,0.124,0.61,0.087,2013-14 7874,Andray Blatche,BKN,27.0,210.82,117.93392,None,USA,2005,2,49,73,11.2,5.3,1.5,0.4,0.08900000000000001,0.19899999999999998,0.252,0.532,0.126,2013-14 7875,Andrew Bynum,IND,26.0,213.36,129.27372,None,USA,2005,1,10,26,8.7,5.6,1.1,-11.8,0.10800000000000001,0.198,0.24,0.456,0.099,2013-14 7876,Andris Biedrins,UTA,28.0,213.36,113.398,None,Latvia,2004,1,11,6,0.5,2.8,0.0,-6.3,0.047,0.33299999999999996,0.053,0.41200000000000003,0.0,2013-14 7877,Antawn Jamison,LAC,38.0,205.74,106.59411999999999,North Carolina,USA,1998,1,4,22,3.8,2.5,0.3,11.0,0.038,0.204,0.203,0.408,0.047,2013-14 7878,Anthony Bennett,CLE,21.0,203.2,117.480328,Nevada-Las Vegas,Canada,2013,1,1,52,4.2,3.0,0.3,-6.1,0.077,0.18600000000000003,0.198,0.425,0.043,2013-14 7879,Anthony Davis,NOP,21.0,208.28,99.79024,Kentucky,USA,2012,1,1,67,20.8,10.0,1.6,-1.7,0.102,0.23399999999999999,0.252,0.5820000000000001,0.078,2013-14 7880,Anthony Morrow,NOP,28.0,195.58,95.25432,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,76,8.4,1.8,0.8,-0.4,0.023,0.092,0.193,0.57,0.069,2013-14 7881,Anthony Randolph,DEN,24.0,210.82,102.0582,Louisiana State,USA,2008,1,14,43,4.8,2.8,0.7,-8.6,0.040999999999999995,0.213,0.20199999999999999,0.499,0.10400000000000001,2013-14 7882,Anthony Tolliver,CHA,29.0,203.2,108.86208,Creighton,USA,Undrafted,Undrafted,Undrafted,64,6.1,2.6,0.7,2.0,0.027999999999999997,0.11900000000000001,0.122,0.605,0.049,2013-14 7883,Andrew Nicholson,ORL,24.0,205.74,113.398,St. Bonaventure,Canada,2012,1,19,76,5.7,3.4,0.3,-5.8,0.05,0.192,0.196,0.489,0.037000000000000005,2013-14 7884,Archie Goodwin,PHX,19.0,195.58,89.811216,Kentucky,USA,2013,1,29,52,3.7,1.7,0.4,-7.6,0.051,0.121,0.192,0.507,0.061,2013-14 7885,Anderson Varejao,CLE,31.0,210.82,121.10906399999999,None,Brazil,2004,2,30,65,8.4,9.7,2.2,1.1,0.114,0.28600000000000003,0.147,0.527,0.122,2013-14 7886,Amar'e Stoudemire,NYK,31.0,210.82,111.13004,None,USA,2002,1,9,65,11.9,4.9,0.5,-6.2,0.09,0.175,0.239,0.596,0.044000000000000004,2013-14 7887,Meyers Leonard,POR,22.0,215.9,111.13004,Illinois,USA,2012,1,11,40,2.5,2.8,0.5,-12.2,0.08,0.265,0.139,0.489,0.08,2013-14 7888,AJ Price,MIN,27.0,187.96,88.45044,Connecticut,USA,2009,2,52,28,1.6,0.4,0.5,-2.4,0.009000000000000001,0.081,0.23,0.469,0.271,2013-14 7889,Aaron Brooks,DEN,29.0,182.88,73.028312,Oregon,USA,2007,1,26,72,9.0,1.9,3.2,-2.5,0.031,0.069,0.205,0.518,0.23800000000000002,2013-14 7890,Aaron Gray,SAC,29.0,213.36,122.46983999999999,Pittsburgh,USA,2007,2,49,37,1.8,3.0,0.6,-11.7,0.13,0.226,0.125,0.466,0.092,2013-14 7891,Adonis Thomas,PHI,21.0,200.66,108.86208,Memphis,USA,Undrafted,Undrafted,Undrafted,6,2.3,0.5,0.5,10.8,0.0,0.091,0.184,0.485,0.115,2013-14 7892,Al Harrington,WAS,34.0,205.74,111.13004,None,USA,1998,1,25,34,6.6,2.4,0.8,4.1,0.036000000000000004,0.157,0.228,0.506,0.08900000000000001,2013-14 7893,Al Horford,ATL,28.0,208.28,113.398,Florida,Dominican Republic,2007,1,3,29,18.6,8.4,2.6,3.7,0.078,0.212,0.24600000000000002,0.588,0.139,2013-14 7894,Amir Johnson,TOR,27.0,205.74,95.25432,None,USA,2005,2,56,77,10.4,6.6,1.5,4.6,0.092,0.17300000000000001,0.166,0.5920000000000001,0.085,2013-14 7895,Al Jefferson,CHA,29.0,208.28,131.088088,None,USA,2004,1,15,73,21.8,10.8,2.1,1.2,0.07,0.281,0.297,0.532,0.122,2013-14 7896,Alan Anderson,BKN,31.0,198.12,99.79024,Michigan State,USA,Undrafted,Undrafted,Undrafted,78,7.2,2.2,1.0,0.2,0.027000000000000003,0.08900000000000001,0.16,0.525,0.07400000000000001,2013-14 7897,Alec Burks,UTA,22.0,198.12,95.707912,Colorado,USA,2011,1,12,78,14.0,3.3,2.7,-7.4,0.03,0.10800000000000001,0.235,0.547,0.168,2013-14 7898,Alex Len,PHX,21.0,215.9,115.66596000000001,Maryland,Ukraine,2013,1,5,42,2.0,2.4,0.1,-5.7,0.11800000000000001,0.19399999999999998,0.14,0.469,0.017,2013-14 7899,Alexey Shved,MIN,25.0,198.12,84.821704,None,Russia,Undrafted,Undrafted,Undrafted,63,4.0,1.3,1.1,-3.6,0.033,0.099,0.213,0.452,0.162,2013-14 7900,Alexis Ajinca,NOP,26.0,218.44,112.490816,None,France,2008,1,20,56,5.9,4.9,0.7,-5.7,0.12,0.222,0.166,0.589,0.067,2013-14 7901,Allen Crabbe,POR,22.0,198.12,95.25432,California,USA,2013,2,31,15,2.2,0.6,0.4,1.9,0.011000000000000001,0.087,0.163,0.475,0.08800000000000001,2013-14 7902,Alonzo Gee,CLE,27.0,198.12,102.0582,Alabama,USA,Undrafted,Undrafted,Undrafted,65,4.0,2.3,0.7,-7.9,0.037000000000000005,0.128,0.134,0.491,0.071,2013-14 7903,Al-Farouq Aminu,NOP,23.0,205.74,97.52228000000001,Wake Forest,USA,2010,1,8,80,7.2,6.2,1.4,-3.8,0.071,0.213,0.142,0.516,0.083,2013-14 7904,Arinze Onuaku,CLE,26.0,205.74,124.7378,Syracuse,USA,Undrafted,Undrafted,Undrafted,5,0.6,1.6,0.6,-16.2,0.095,0.28600000000000003,0.102,0.255,0.13,2013-14 7905,Arnett Moultrie,PHI,23.0,208.28,108.86208,Mississippi State,USA,2012,1,27,12,3.0,2.9,0.2,-16.2,0.06,0.146,0.10400000000000001,0.44799999999999995,0.015,2013-14 7906,Aron Baynes,SAS,27.0,208.28,117.93392,Washington State,Australia,Undrafted,Undrafted,Undrafted,53,3.0,2.7,0.6,3.8,0.131,0.205,0.19,0.467,0.10300000000000001,2013-14 7907,C.J. Watson,IND,30.0,187.96,79.3786,Tennessee,USA,Undrafted,Undrafted,Undrafted,63,6.6,1.6,1.7,7.1,0.018000000000000002,0.075,0.163,0.555,0.14400000000000002,2013-14 7908,CJ McCollum,POR,22.0,193.04,90.7184,Lehigh,USA,2013,1,10,38,5.3,1.3,0.7,-4.0,0.016,0.094,0.205,0.521,0.08900000000000001,2013-14 7909,CJ Miles,CLE,27.0,198.12,104.779752,None,USA,2005,2,34,51,9.9,2.0,1.0,2.2,0.02,0.10099999999999999,0.217,0.569,0.08800000000000001,2013-14 7910,Carl Landry,SAC,30.0,205.74,112.490816,Purdue,USA,2007,2,31,18,4.2,3.2,0.3,-13.7,0.07200000000000001,0.198,0.14400000000000002,0.563,0.036000000000000004,2013-14 7911,Carlos Boozer,CHI,32.0,205.74,120.655472,Duke,USA,2002,2,34,76,13.7,8.3,1.6,-1.5,0.07200000000000001,0.27,0.259,0.489,0.105,2013-14 7912,Carmelo Anthony,NYK,30.0,203.2,106.59411999999999,Syracuse,USA,2003,1,3,77,27.4,8.1,3.1,0.9,0.055,0.192,0.32299999999999995,0.561,0.156,2013-14 7913,Caron Butler,OKC,34.0,200.66,103.418976,Connecticut,USA,2002,1,10,56,10.5,4.1,1.5,-5.9,0.017,0.16899999999999998,0.204,0.512,0.099,2013-14 7914,Byron Mullens,PHI,25.0,213.36,124.7378,Ohio State,USA,2009,1,24,45,4.2,2.0,0.3,-17.8,0.061,0.191,0.21100000000000002,0.544,0.06,2013-14 7915,Carrick Felix,CLE,23.0,198.12,91.171992,Arizona State,USA,2013,2,33,7,2.7,0.9,0.6,4.7,0.037000000000000005,0.135,0.221,0.603,0.14300000000000002,2013-14 7916,Casper Ware,PHI,24.0,177.8,79.3786,Long Beach State,USA,Undrafted,Undrafted,Undrafted,9,5.3,1.0,1.1,1.0,0.0,0.095,0.196,0.5379999999999999,0.135,2013-14 7917,Chandler Parsons,HOU,25.0,205.74,102.965384,Florida,USA,2011,2,38,74,16.6,5.5,4.0,6.3,0.03,0.13,0.19399999999999998,0.565,0.168,2013-14 7918,Channing Frye,PHX,31.0,210.82,111.13004,Arizona,USA,2005,1,8,82,11.1,5.1,1.2,6.0,0.036000000000000004,0.166,0.174,0.555,0.061,2013-14 7919,Charlie Villanueva,DET,29.0,210.82,105.23334399999999,Connecticut,USA,2005,1,7,20,4.6,1.7,0.3,-23.3,0.031,0.18899999999999997,0.25,0.469,0.063,2013-14 7920,Chase Budinger,MIN,26.0,200.66,94.800728,Arizona,USA,2009,2,44,41,6.7,2.5,0.8,-0.9,0.027000000000000003,0.11900000000000001,0.172,0.505,0.063,2013-14 7921,Chauncey Billups,DET,37.0,190.5,95.25432,Colorado,USA,1997,1,3,19,3.8,1.5,2.2,-7.2,0.013999999999999999,0.098,0.153,0.42700000000000005,0.196,2013-14 7922,Chris Andersen,MIA,35.0,208.28,111.13004,Blinn,USA,Undrafted,Undrafted,Undrafted,72,6.6,5.3,0.3,7.0,0.121,0.214,0.138,0.6829999999999999,0.021,2013-14 7923,Cartier Martin,ATL,29.0,200.66,99.79024,Kansas State,USA,Undrafted,Undrafted,Undrafted,59,5.6,1.9,0.6,-6.5,0.017,0.133,0.17300000000000001,0.562,0.064,2013-14 7924,Brook Lopez,BKN,26.0,213.36,124.7378,Stanford,USA,2008,1,10,17,20.7,6.0,0.9,-0.2,0.08800000000000001,0.126,0.26899999999999996,0.629,0.059000000000000004,2013-14 7925,Brian Roberts,NOP,28.0,185.42,78.471416,Dayton,USA,Undrafted,Undrafted,Undrafted,72,9.4,1.9,3.3,-4.8,0.012,0.083,0.203,0.529,0.226,2013-14 7926,Brandon Rush,UTA,28.0,198.12,105.68693600000002,Kansas,USA,2008,1,13,38,2.1,1.2,0.6,-12.3,0.013000000000000001,0.106,0.121,0.428,0.085,2013-14 7927,Arron Afflalo,ORL,28.0,195.58,97.52228000000001,UCLA,USA,2007,1,27,73,18.2,3.6,3.4,-7.5,0.013999999999999999,0.10300000000000001,0.233,0.574,0.16899999999999998,2013-14 7928,Austin Daye,SAS,26.0,210.82,90.7184,Gonzaga,USA,2009,1,15,22,3.0,1.2,0.4,-1.1,0.037000000000000005,0.171,0.23,0.456,0.081,2013-14 7929,Austin Rivers,NOP,21.0,193.04,90.7184,Duke,USA,2012,1,10,69,7.7,1.9,2.3,0.4,0.023,0.091,0.215,0.48200000000000004,0.193,2013-14 7930,Avery Bradley,BOS,23.0,187.96,81.64656,Texas,USA,2010,1,19,60,14.9,3.8,1.4,-3.8,0.027999999999999997,0.109,0.233,0.51,0.079,2013-14 7931,Ben Gordon,CHA,31.0,190.5,90.7184,Connecticut,USA,2004,1,3,19,5.2,1.4,1.1,2.5,0.011000000000000001,0.095,0.221,0.42200000000000004,0.122,2013-14 7932,Ben McLemore,SAC,21.0,195.58,88.45044,Kansas,USA,2013,1,7,82,8.8,2.9,1.0,-5.7,0.027000000000000003,0.09699999999999999,0.168,0.485,0.057999999999999996,2013-14 7933,Beno Udrih,MEM,31.0,190.5,95.25432,None,Slovenia,2004,1,28,41,4.9,1.4,2.8,-8.6,0.017,0.094,0.16899999999999998,0.523,0.278,2013-14 7934,Bernard James,DAL,29.0,208.28,108.86208,Florida State,USA,2012,2,33,30,0.9,1.4,0.1,-2.8,0.126,0.19399999999999998,0.11699999999999999,0.503,0.028999999999999998,2013-14 7935,Bismack Biyombo,CHA,21.0,205.74,111.13004,None,Democratic Republic of the Congo,2011,1,7,77,2.9,4.8,0.1,-2.6,0.10800000000000001,0.27,0.096,0.606,0.012,2013-14 7936,Blake Griffin,LAC,25.0,208.28,113.851592,Oklahoma,USA,2009,1,1,80,24.1,9.5,3.9,9.6,0.079,0.215,0.29,0.583,0.185,2013-14 7937,Boris Diaw,SAS,32.0,203.2,113.398,None,France,2003,1,21,79,9.1,4.1,2.8,8.0,0.045,0.14,0.171,0.578,0.162,2013-14 7938,Bradley Beal,WAS,21.0,195.58,93.89354399999999,Florida,USA,2012,1,3,73,17.1,3.7,3.3,2.0,0.024,0.1,0.244,0.507,0.155,2013-14 7939,Brandan Wright,DAL,26.0,208.28,95.25432,North Carolina,USA,2007,1,8,58,9.1,4.2,0.5,6.4,0.113,0.155,0.17800000000000002,0.695,0.046,2013-14 7940,Brandon Bass,BOS,29.0,203.2,113.398,Louisiana State,USA,2005,2,33,82,11.1,5.7,1.1,-8.0,0.08,0.161,0.18600000000000003,0.5489999999999999,0.065,2013-14 7941,Brandon Davies,PHI,22.0,208.28,108.86208,Brigham Young,USA,Undrafted,Undrafted,Undrafted,51,2.8,2.1,0.5,-5.2,0.075,0.145,0.14,0.47600000000000003,0.07400000000000001,2013-14 7942,Brandon Jennings,DET,24.0,185.42,76.657048,None,USA,2009,1,10,80,15.5,3.1,7.6,-4.2,0.022000000000000002,0.077,0.23199999999999998,0.486,0.33399999999999996,2013-14 7943,Brandon Knight,MIL,22.0,190.5,85.728888,Kentucky,USA,2011,1,8,72,17.9,3.5,4.9,-9.3,0.021,0.10400000000000001,0.267,0.523,0.262,2013-14 7944,George Hill,IND,28.0,190.5,85.275296,Indiana Purdue-Indianapolis,USA,2008,1,26,76,10.3,3.7,3.5,6.2,0.026000000000000002,0.10099999999999999,0.14800000000000002,0.563,0.17,2013-14 7945,Gerald Green,PHX,28.0,203.2,95.25432,None,USA,2005,1,18,82,15.8,3.4,1.5,1.2,0.023,0.111,0.237,0.585,0.085,2013-14 7946,Kyle Singler,DET,26.0,203.2,104.32616,Duke,USA,2011,2,33,82,9.6,3.7,0.9,-4.8,0.052000000000000005,0.091,0.14,0.574,0.047,2013-14 7947,Gerald Wallace,BOS,31.0,200.66,99.79024,Alabama,USA,2001,1,25,58,5.1,3.7,2.5,-6.2,0.028999999999999998,0.15,0.11699999999999999,0.5429999999999999,0.152,2013-14 7948,Kenneth Faried,DEN,24.0,203.2,103.418976,Morehead State,USA,2011,1,22,80,13.7,8.6,1.2,-2.8,0.11599999999999999,0.22899999999999998,0.212,0.573,0.071,2013-14 7949,Kent Bazemore,LAL,24.0,195.58,91.171992,Old Dominion,USA,Undrafted,Undrafted,Undrafted,67,6.0,1.7,1.4,-11.8,0.011000000000000001,0.13,0.222,0.515,0.16699999999999998,2013-14 7950,Kentavious Caldwell-Pope,DET,21.0,195.58,92.98635999999999,Georgia,USA,2013,1,8,80,5.9,2.0,0.7,-1.4,0.024,0.086,0.138,0.483,0.05,2013-14 7951,Kenyon Martin,NYK,36.0,205.74,102.0582,Cincinnati,USA,2000,1,1,32,4.3,4.2,1.6,4.8,0.068,0.17600000000000002,0.11900000000000001,0.521,0.11800000000000001,2013-14 7952,Kevin Durant,OKC,25.0,205.74,108.86208,Texas,USA,2007,1,2,81,32.0,7.4,5.5,8.0,0.022000000000000002,0.184,0.327,0.635,0.259,2013-14 7953,Kevin Garnett,BKN,38.0,210.82,114.758776,None,USA,1995,1,5,54,6.5,6.6,1.5,-1.3,0.066,0.314,0.19399999999999998,0.467,0.13,2013-14 7954,Kevin Love,MIN,25.0,208.28,110.22285600000001,UCLA,USA,2008,1,5,77,26.1,12.5,4.4,4.4,0.086,0.298,0.284,0.591,0.205,2013-14 7955,Kendrick Perkins,OKC,29.0,208.28,122.46983999999999,None,USA,2003,1,27,62,3.4,4.9,1.1,1.9,0.078,0.19,0.11599999999999999,0.474,0.076,2013-14 7956,Kevin Martin,MIN,31.0,200.66,89.357624,Western Carolina,USA,2004,1,26,68,19.1,3.0,1.8,2.2,0.017,0.08900000000000001,0.248,0.5529999999999999,0.09,2013-14 7957,Khris Middleton,MIL,22.0,203.2,98.429464,Texas A&M,USA,2012,2,39,82,12.1,3.8,2.1,-8.2,0.027000000000000003,0.121,0.19,0.541,0.114,2013-14 7958,Kirk Hinrich,CHI,33.0,193.04,86.18248,Kansas,USA,2003,1,7,73,9.1,2.6,3.9,3.4,0.017,0.086,0.17300000000000001,0.494,0.22399999999999998,2013-14 7959,Klay Thompson,GSW,24.0,200.66,92.98635999999999,Washington State,USA,2011,1,11,81,18.4,3.1,2.2,9.5,0.015,0.078,0.22699999999999998,0.555,0.09699999999999999,2013-14 7960,Kobe Bryant,LAL,35.0,198.12,92.98635999999999,None,USA,1996,1,13,6,13.8,4.3,6.3,-10.5,0.013000000000000001,0.14400000000000002,0.293,0.505,0.369,2013-14 7961,Kosta Koufos,MEM,25.0,213.36,120.20188,Ohio State,USA,2008,1,23,80,6.4,5.2,0.5,2.2,0.134,0.21899999999999997,0.192,0.514,0.047,2013-14 7962,Kris Humphries,BOS,29.0,205.74,106.59411999999999,Minnesota,USA,2004,1,14,69,8.4,5.9,1.0,-7.3,0.102,0.239,0.192,0.552,0.087,2013-14 7963,Kyle Korver,ATL,33.0,200.66,96.16150400000001,Creighton,USA,2003,2,51,71,12.0,4.0,2.9,2.9,0.011000000000000001,0.124,0.141,0.653,0.127,2013-14 7964,Kevin Seraphin,WAS,24.0,208.28,126.098576,Le Moyne,France,2010,1,17,53,4.7,2.4,0.3,-4.6,0.102,0.157,0.21600000000000003,0.5329999999999999,0.054000000000000006,2013-14 7965,Kyle Lowry,TOR,28.0,182.88,92.98635999999999,Villanova,USA,2006,1,24,79,17.9,4.7,7.4,4.6,0.035,0.114,0.226,0.5670000000000001,0.336,2013-14 7966,Kendall Marshall,LAL,22.0,193.04,88.45044,North Carolina,USA,2012,1,13,54,8.0,2.9,8.8,-5.7,0.011000000000000001,0.09300000000000001,0.163,0.494,0.426,2013-14 7967,Kelly Olynyk,BOS,23.0,213.36,107.95489599999999,Gonzaga,Canada,2013,1,13,70,8.7,5.2,1.6,-2.3,0.11199999999999999,0.187,0.205,0.546,0.12300000000000001,2013-14 7968,Jordan Crawford,GSW,25.0,193.04,88.45044,Xavier,USA,2010,1,27,81,11.0,2.3,3.5,-5.0,0.016,0.092,0.237,0.516,0.256,2013-14 7969,Jordan Farmar,LAL,27.0,187.96,81.64656,UCLA,USA,2006,1,26,41,10.1,2.5,4.9,-3.9,0.023,0.1,0.23,0.5329999999999999,0.34299999999999997,2013-14 7970,Jordan Hamilton,HOU,23.0,200.66,99.79024,Texas,USA,2011,1,26,60,6.7,3.2,0.9,-4.0,0.033,0.16399999999999998,0.188,0.507,0.084,2013-14 7971,Jordan Hill,LAL,26.0,208.28,106.59411999999999,Arizona,USA,2009,1,8,72,9.7,7.4,0.8,-9.5,0.139,0.248,0.198,0.579,0.063,2013-14 7972,Jorge Gutierrez,BKN,25.0,190.5,88.45044,California-Berkeley,Mexico,Undrafted,Undrafted,Undrafted,15,4.1,1.5,2.0,-7.8,0.013999999999999999,0.095,0.141,0.523,0.204,2013-14 7973,Jose Calderon,DAL,32.0,190.5,95.707912,None,Spain,Undrafted,Undrafted,Undrafted,81,11.4,2.4,4.7,0.5,0.013999999999999999,0.075,0.162,0.596,0.223,2013-14 7974,Josh Childress,NOP,31.0,203.2,95.25432,Stanford,USA,2004,1,6,4,0.0,0.8,0.5,27.1,0.0,0.15,0.02,0.0,0.095,2013-14 7975,Kemba Walker,CHA,24.0,185.42,83.46092800000001,Connecticut,USA,2011,1,9,73,17.7,4.2,6.1,3.1,0.017,0.114,0.258,0.499,0.29100000000000004,2013-14 7976,Josh Harrellson,DET,25.0,208.28,124.7378,Kentucky,USA,2011,2,45,32,2.9,2.4,0.5,-0.2,0.096,0.166,0.129,0.547,0.07400000000000001,2013-14 7977,Josh Powell,HOU,31.0,205.74,108.86208,North Carolina State,USA,Undrafted,Undrafted,Undrafted,1,4.0,5.0,0.0,-20.6,0.0,0.294,0.172,0.33299999999999996,0.0,2013-14 7978,Josh Smith,DET,28.0,205.74,102.0582,None,USA,2004,1,17,77,16.4,6.8,3.3,-4.1,0.039,0.174,0.244,0.46299999999999997,0.147,2013-14 7979,Jrue Holiday,NOP,24.0,193.04,92.98635999999999,UCLA,USA,2009,1,17,34,14.3,4.2,7.9,1.5,0.027000000000000003,0.115,0.226,0.505,0.358,2013-14 7980,Julyan Stone,TOR,25.0,198.12,90.7184,Texas-El Paso,USA,Undrafted,Undrafted,Undrafted,21,0.9,1.0,0.6,-21.4,0.018000000000000002,0.175,0.09300000000000001,0.491,0.179,2013-14 7981,Justin Hamilton,MIA,24.0,213.36,115.66596000000001,Louisiana State,USA,2012,2,45,8,3.3,0.9,0.0,-13.9,0.071,0.065,0.177,0.586,0.0,2013-14 7982,Kawhi Leonard,SAS,23.0,200.66,104.32616,San Diego State,USA,2011,1,15,66,12.8,6.2,2.0,9.6,0.046,0.185,0.183,0.602,0.10300000000000001,2013-14 7983,Keith Bogans,BOS,34.0,195.58,97.52228000000001,Kentucky,USA,2003,2,43,6,2.0,0.5,0.5,-9.2,0.0,0.07,0.065,0.82,0.08800000000000001,2013-14 7984,Josh McRoberts,CHA,27.0,208.28,108.86208,Duke,USA,2007,2,37,78,8.5,4.8,4.3,1.0,0.040999999999999995,0.141,0.138,0.5479999999999999,0.215,2013-14 7985,Kyle O'Quinn,ORL,24.0,208.28,113.398,Norfolk State,USA,2012,2,49,69,6.2,5.3,1.1,0.4,0.10099999999999999,0.244,0.18600000000000003,0.526,0.10400000000000001,2013-14 7986,Kyrie Irving,CLE,22.0,190.5,87.543256,Duke,Australia,2011,1,1,71,20.8,3.6,6.1,-5.1,0.023,0.09699999999999999,0.28,0.5329999999999999,0.311,2013-14 7987,LaMarcus Aldridge,POR,28.0,210.82,108.86208,Texas,USA,2006,1,2,69,23.2,11.1,2.6,7.1,0.073,0.256,0.299,0.507,0.128,2013-14 7988,Marco Belinelli,SAS,28.0,195.58,95.25432,None,Italy,2007,1,18,80,11.4,2.8,2.2,7.3,0.011000000000000001,0.113,0.191,0.605,0.13,2013-14 7989,Marcus Morris,PHX,24.0,205.74,106.59411999999999,Kansas,USA,2011,1,14,82,9.7,3.9,1.1,4.7,0.054000000000000006,0.15,0.20199999999999999,0.552,0.077,2013-14 7990,Marcus Thornton,BKN,27.0,193.04,92.98635999999999,Louisiana State,USA,2009,2,43,72,9.8,2.8,1.1,-0.6,0.037000000000000005,0.095,0.196,0.511,0.07200000000000001,2013-14 7991,Mario Chalmers,MIA,28.0,187.96,86.18248,Kansas,USA,2008,2,34,73,9.8,2.9,4.9,8.1,0.025,0.096,0.17300000000000001,0.5670000000000001,0.23199999999999998,2013-14 7992,Markieff Morris,PHX,24.0,208.28,111.13004,Kansas,USA,2011,1,13,81,13.8,6.0,1.8,4.2,0.07400000000000001,0.182,0.23199999999999998,0.564,0.11199999999999999,2013-14 7993,Marquis Teague,BKN,21.0,187.96,86.18248,Kentucky,USA,2012,1,29,40,2.7,1.0,1.5,-9.2,0.003,0.10099999999999999,0.18,0.39799999999999996,0.222,2013-14 7994,Marreese Speights,GSW,26.0,208.28,115.66596000000001,Florida,USA,2008,1,16,79,6.4,3.7,0.4,-5.8,0.11,0.207,0.251,0.507,0.061,2013-14 7995,Marcin Gortat,WAS,30.0,210.82,108.86208,None,Poland,2005,2,57,81,13.2,9.5,1.7,4.8,0.086,0.24,0.18,0.568,0.08,2013-14 7996,Martell Webster,WAS,27.0,200.66,104.32616,None,USA,2005,1,6,78,9.7,2.8,1.2,-0.5,0.021,0.10400000000000001,0.14800000000000002,0.591,0.068,2013-14 7997,Mason Plumlee,BKN,24.0,210.82,106.59411999999999,Duke,USA,2013,1,22,70,7.4,4.4,0.9,-1.3,0.094,0.19899999999999998,0.172,0.67,0.08199999999999999,2013-14 7998,Matt Barnes,LAC,34.0,200.66,102.511792,UCLA,USA,2002,2,45,63,9.9,4.6,2.0,9.2,0.040999999999999995,0.139,0.163,0.552,0.10099999999999999,2013-14 7999,Matt Bonner,SAS,34.0,208.28,106.59411999999999,Florida,USA,2003,2,45,61,3.2,2.1,0.5,7.0,0.026000000000000002,0.184,0.122,0.5820000000000001,0.063,2013-14 8000,Matthew Dellavedova,CLE,23.0,193.04,90.7184,Saint Mary's (CA),Australia,Undrafted,Undrafted,Undrafted,72,4.7,1.7,2.6,3.8,0.025,0.083,0.132,0.534,0.217,2013-14 8001,Maurice Harkless,ORL,21.0,205.74,99.79024,St. John's (NY),USA,2012,1,15,80,7.4,3.3,1.0,-7.2,0.04,0.11599999999999999,0.147,0.542,0.063,2013-14 8002,Melvin Ely,NOP,36.0,208.28,117.93392,Fresno State,USA,2002,1,12,2,3.0,0.5,0.0,-13.6,0.0,0.059000000000000004,0.11699999999999999,0.5,0.0,2013-14 8003,Gerald Henderson,CHA,26.0,195.58,97.52228000000001,Duke,USA,2009,1,12,77,14.0,4.0,2.6,-0.9,0.013999999999999999,0.128,0.22399999999999998,0.507,0.13699999999999998,2013-14 8004,Marvin Williams,UTA,28.0,205.74,107.501304,North Carolina,USA,2005,1,2,66,9.1,5.1,1.2,-5.6,0.055,0.179,0.17,0.54,0.075,2013-14 8005,Marc Gasol,MEM,29.0,215.9,120.20188,None,Spain,2007,2,48,59,14.6,7.2,3.6,-0.5,0.052000000000000005,0.20800000000000002,0.223,0.526,0.18,2013-14 8006,MarShon Brooks,LAL,25.0,195.58,90.7184,Providence,USA,2011,1,25,35,4.5,1.5,0.7,4.2,0.036000000000000004,0.149,0.23199999999999998,0.551,0.121,2013-14 8007,Manu Ginobili,SAS,36.0,198.12,92.98635999999999,None,Argentina,1999,2,57,68,12.3,3.0,4.3,12.9,0.023,0.12300000000000001,0.244,0.59,0.27399999999999997,2013-14 8008,Lance Stephenson,IND,23.0,195.58,104.32616,Cincinnati,USA,2010,2,40,78,13.8,7.2,4.6,6.1,0.040999999999999995,0.179,0.195,0.564,0.217,2013-14 8009,Lance Thomas,NOP,26.0,203.2,102.0582,Duke,USA,Undrafted,Undrafted,Undrafted,5,1.2,1.4,0.6,-11.2,0.055999999999999994,0.11900000000000001,0.145,0.27899999999999997,0.12,2013-14 8010,Landry Fields,TOR,26.0,200.66,97.52228000000001,Stanford,USA,2010,2,39,30,2.3,2.0,0.7,-1.2,0.057,0.163,0.125,0.44299999999999995,0.096,2013-14 8011,Larry Sanders,MIL,25.0,210.82,106.59411999999999,Virginia Commonwealth,USA,2010,1,15,23,7.7,7.2,0.8,-9.3,0.10400000000000001,0.21100000000000002,0.16399999999999998,0.478,0.055,2013-14 8012,Lavoy Allen,IND,25.0,205.74,115.66596000000001,Temple,USA,2011,2,50,65,4.7,4.8,1.1,-9.3,0.113,0.205,0.14300000000000002,0.47,0.105,2013-14 8013,LeBron James,MIA,29.0,203.2,113.398,None,USA,2003,1,1,77,27.1,6.9,6.3,7.9,0.037000000000000005,0.188,0.309,0.649,0.311,2013-14 8014,Lorenzo Brown,PHI,23.0,195.58,88.45044,North Carolina State,USA,2013,2,52,26,2.5,1.1,1.6,-3.1,0.036000000000000004,0.099,0.19899999999999998,0.349,0.281,2013-14 8015,Lou Amundson,CHI,31.0,205.74,102.0582,Nevada-Las Vegas,USA,Undrafted,Undrafted,Undrafted,19,2.0,2.9,0.3,-4.4,0.166,0.17600000000000002,0.139,0.446,0.057,2013-14 8016,Lou Williams,ATL,27.0,185.42,79.3786,None,USA,2005,2,45,60,10.4,2.1,3.5,-5.1,0.008,0.092,0.21100000000000002,0.547,0.23399999999999999,2013-14 8017,Luc Mbah a Moute,MIN,27.0,203.2,104.32616,UCLA,Cameroon,2008,2,37,64,3.5,2.3,0.6,-7.4,0.059000000000000004,0.10300000000000001,0.115,0.503,0.055999999999999994,2013-14 8018,Luis Scola,IND,34.0,205.74,108.86208,None,Argentina,2002,2,55,82,7.6,4.8,1.0,0.1,0.07200000000000001,0.242,0.237,0.505,0.106,2013-14 8019,Luke Babbitt,NOP,25.0,205.74,102.0582,Nevada,USA,2010,1,16,27,6.3,3.3,1.1,7.2,0.048,0.18600000000000003,0.17600000000000002,0.525,0.08900000000000001,2013-14 8020,Luke Ridnour,CHA,33.0,187.96,79.3786,Oregon,USA,2003,1,14,61,5.0,1.6,2.9,-8.2,0.023,0.079,0.165,0.452,0.248,2013-14 8021,Luol Deng,CLE,29.0,205.74,99.79024,Duke,United Kingdom,2004,1,7,63,16.0,5.7,2.9,-0.5,0.05,0.133,0.222,0.517,0.141,2013-14 8022,Maalik Wayns,LAC,23.0,185.42,88.45044,Villanova,USA,Undrafted,Undrafted,Undrafted,2,1.0,1.0,1.0,-13.6,0.0,0.222,0.102,0.5,0.33299999999999996,2013-14 8023,Malcolm Thomas,UTA,25.0,205.74,102.0582,San Diego State,USA,Undrafted,Undrafted,Undrafted,8,1.9,2.6,0.3,3.3,0.111,0.23199999999999998,0.184,0.444,0.043,2013-14 8024,Manny Harris,LAL,24.0,195.58,83.91452,Michigan,USA,Undrafted,Undrafted,Undrafted,9,8.1,3.8,1.2,-10.9,0.04,0.163,0.21100000000000002,0.485,0.10400000000000001,2013-14 8025,Jonas Valanciunas,TOR,22.0,210.82,104.779752,None,Lithuania,2011,1,5,81,11.3,8.8,0.7,2.5,0.11900000000000001,0.248,0.18600000000000003,0.579,0.040999999999999995,2013-14 8026,Jonas Jerebko,DET,27.0,208.28,104.779752,None,Sweden,2009,2,39,64,4.2,2.7,0.6,-6.9,0.071,0.18899999999999997,0.161,0.5770000000000001,0.08800000000000001,2013-14 8027,Leandro Barbosa,PHX,31.0,190.5,87.996848,None,Brazil,2003,1,28,20,7.5,1.9,1.6,4.9,0.015,0.098,0.19899999999999998,0.506,0.146,2013-14 8028,John Wall,WAS,23.0,193.04,88.45044,Kentucky,USA,2010,1,1,82,19.3,4.1,8.8,2.9,0.013999999999999999,0.114,0.271,0.524,0.392,2013-14 8029,JJ Hickson,DEN,25.0,205.74,109.769264,North Carolina State,USA,2008,1,19,69,11.8,9.2,1.4,-5.5,0.11800000000000001,0.24600000000000002,0.20800000000000002,0.521,0.085,2013-14 8030,JJ Redick,LAC,30.0,193.04,86.18248,Duke,USA,2006,1,11,35,15.2,2.1,2.2,8.6,0.011000000000000001,0.071,0.214,0.598,0.11599999999999999,2013-14 8031,JR Smith,NYK,28.0,198.12,99.79024,None,USA,2004,1,18,74,14.5,4.0,3.0,-1.0,0.017,0.131,0.21600000000000003,0.527,0.152,2013-14 8032,JaVale McGee,DEN,26.0,213.36,122.46983999999999,Nevada,USA,2008,1,18,5,7.0,3.4,0.4,0.1,0.135,0.11900000000000001,0.247,0.455,0.035,2013-14 8033,Jae Crowder,DAL,23.0,198.12,106.59411999999999,Marquette,USA,2012,2,34,78,4.6,2.5,0.8,12.1,0.044000000000000004,0.135,0.134,0.551,0.067,2013-14 8034,Jamaal Franklin,MEM,22.0,195.58,86.636072,San Diego State,USA,2013,2,41,21,1.9,1.1,0.3,4.8,0.028999999999999998,0.138,0.142,0.489,0.053,2013-14 8035,Jamaal Tinsley,UTA,36.0,190.5,85.275296,Iowa State,USA,2001,1,27,8,1.1,1.4,2.9,-20.2,0.022000000000000002,0.114,0.12300000000000001,0.225,0.359,2013-14 8036,Jamal Crawford,LAC,34.0,195.58,90.7184,Michigan,USA,2000,1,8,69,18.6,2.3,3.2,6.1,0.018000000000000002,0.064,0.27,0.556,0.18100000000000002,2013-14 8037,Jameer Nelson,ORL,32.0,182.88,86.18248,Saint Joseph's,USA,2004,1,20,68,12.1,3.4,7.0,-6.5,0.015,0.105,0.201,0.515,0.341,2013-14 8038,James Anderson,PHI,25.0,198.12,95.25432,Oklahoma State,USA,2010,1,20,80,10.1,3.8,1.9,-11.2,0.026000000000000002,0.11900000000000001,0.159,0.53,0.099,2013-14 8039,James Harden,HOU,24.0,195.58,99.79024,Arizona State,USA,2009,1,3,73,25.4,4.7,6.1,7.6,0.026000000000000002,0.107,0.276,0.618,0.266,2013-14 8040,James Johnson,MEM,27.0,205.74,112.490816,Wake Forest,USA,2009,1,16,52,7.4,3.2,2.1,6.4,0.077,0.126,0.19699999999999998,0.552,0.175,2013-14 8041,James Jones,MIA,33.0,203.2,97.52228000000001,Miami (FL),USA,2003,2,49,20,4.9,1.2,0.5,19.5,0.013000000000000001,0.105,0.16399999999999998,0.6659999999999999,0.06,2013-14 8042,James Nunnally,PHI,23.0,200.66,92.98635999999999,California-Santa Barbara,USA,Undrafted,Undrafted,Undrafted,13,3.4,1.5,0.6,-11.4,0.006,0.11800000000000001,0.156,0.44,0.08199999999999999,2013-14 8043,James Southerland,NOP,24.0,203.2,97.52228000000001,Syracuse,USA,Undrafted,Undrafted,Undrafted,4,3.5,2.0,0.0,8.4,0.0,0.276,0.23800000000000002,0.441,0.0,2013-14 8044,Jan Vesely,DEN,24.0,213.36,109.769264,None,Czech Republic,2011,1,6,54,3.6,3.5,0.4,-8.8,0.109,0.179,0.132,0.498,0.043,2013-14 8045,Jannero Pargo,CHA,34.0,185.42,83.91452,Arkansas,USA,Undrafted,Undrafted,Undrafted,29,4.7,0.7,1.8,-11.7,0.004,0.098,0.28300000000000003,0.5539999999999999,0.433,2013-14 8046,Jared Cunningham,SAC,23.0,193.04,88.45044,Oregon State,USA,2012,1,24,13,2.0,0.5,0.6,-0.9,0.015,0.062,0.16699999999999998,0.46399999999999997,0.154,2013-14 8047,Jared Dudley,LAC,28.0,200.66,102.0582,Boston College,USA,2007,1,22,74,6.9,2.2,1.4,6.2,0.023,0.079,0.136,0.541,0.087,2013-14 8048,Jared Sullinger,BOS,22.0,205.74,117.93392,Ohio State,USA,2012,1,21,74,13.3,8.1,1.6,-2.9,0.126,0.20600000000000002,0.237,0.49700000000000005,0.09699999999999999,2013-14 8049,Jarrett Jack,CLE,30.0,190.5,90.7184,Georgia Tech,USA,2005,1,22,80,9.5,2.8,4.1,-5.0,0.011000000000000001,0.102,0.18,0.498,0.23199999999999998,2013-14 8050,Jarvis Varnado,PHI,26.0,205.74,104.32616,Mississippi State,USA,2010,2,41,24,4.1,2.6,0.5,-11.6,0.061,0.147,0.121,0.597,0.059000000000000004,2013-14 8051,Jason Collins,BKN,35.0,213.36,115.66596000000001,Stanford,USA,2001,1,18,22,1.1,0.9,0.2,-9.2,0.048,0.086,0.08900000000000001,0.485,0.034,2013-14 8052,J.J. Barea,MIN,30.0,182.88,80.73937600000001,Northeastern,Puerto Rico,Undrafted,Undrafted,Undrafted,79,8.4,1.9,3.8,-4.3,0.011000000000000001,0.10400000000000001,0.244,0.47100000000000003,0.353,2013-14 8053,Ish Smith,PHX,25.0,182.88,79.3786,Wake Forest,USA,Undrafted,Undrafted,Undrafted,70,3.7,1.8,2.6,0.9,0.033,0.11199999999999999,0.159,0.43799999999999994,0.275,2013-14 8054,Isaiah Thomas,SAC,25.0,175.26,83.91452,Washington,USA,2011,2,60,72,20.3,2.9,6.3,0.2,0.021,0.07400000000000001,0.258,0.574,0.317,2013-14 8055,Isaiah Canaan,HOU,23.0,182.88,85.275296,Murray State,USA,2013,2,34,22,4.6,1.1,1.0,-4.8,0.03,0.07,0.20600000000000002,0.506,0.14400000000000002,2013-14 8056,Gigi Datome,DET,26.0,203.2,97.52228000000001,None,Italy,Undrafted,Undrafted,Undrafted,34,2.4,1.4,0.3,8.6,0.057999999999999996,0.16899999999999998,0.205,0.409,0.071,2013-14 8057,Jon Leuer,MEM,25.0,208.28,103.418976,Wisconsin,USA,2011,2,40,49,6.2,3.2,0.4,-1.0,0.069,0.23600000000000002,0.212,0.5660000000000001,0.052000000000000005,2013-14 8058,Giannis Antetokounmpo,MIL,19.0,205.74,92.98635999999999,None,Greece,2013,1,15,77,6.8,4.4,1.9,-4.4,0.047,0.16,0.15,0.518,0.12,2013-14 8059,Glen Davis,LAC,28.0,205.74,131.088088,Louisiana State,USA,2007,2,35,68,9.4,5.2,1.1,-5.9,0.07200000000000001,0.166,0.203,0.491,0.08,2013-14 8060,Glen Rice,WAS,23.0,198.12,93.439952,Georgia Tech,USA,2013,2,35,11,2.9,1.8,0.6,-2.6,0.036000000000000004,0.17,0.19,0.39899999999999997,0.10099999999999999,2013-14 8061,Goran Dragic,PHX,28.0,190.5,86.18248,None,Slovenia,2008,2,45,76,20.3,3.2,5.9,6.5,0.028999999999999998,0.07400000000000001,0.24600000000000002,0.604,0.27399999999999997,2013-14 8062,Gordon Hayward,UTA,24.0,203.2,99.79024,Butler,USA,2010,1,9,77,16.2,5.1,5.2,-8.4,0.025,0.142,0.23,0.52,0.237,2013-14 8063,Gorgui Dieng,MIN,24.0,210.82,107.95489599999999,Louisville,Senegal,2013,1,21,60,4.8,5.0,0.7,-3.8,0.134,0.261,0.17,0.534,0.076,2013-14 8064,Greg Monroe,DET,24.0,210.82,113.398,Georgetown,USA,2010,1,7,82,15.2,9.3,2.1,-4.1,0.099,0.218,0.212,0.531,0.10099999999999999,2013-14 8065,Greg Oden,MIA,26.0,213.36,123.830616,Ohio State,USA,2007,1,1,23,2.9,2.3,0.0,-7.5,0.126,0.177,0.154,0.5670000000000001,0.006999999999999999,2013-14 8066,Greg Smith,HOU,23.0,208.28,113.398,Fresno State,USA,Undrafted,Undrafted,Undrafted,11,3.5,2.5,0.0,-4.7,0.122,0.18600000000000003,0.152,0.629,0.0,2013-14 8067,Jason Maxiell,ORL,31.0,200.66,117.93392,Cincinnati,USA,2005,1,26,34,3.2,2.5,0.3,-10.5,0.063,0.133,0.122,0.45899999999999996,0.027000000000000003,2013-14 8068,Greg Stiemsma,NOP,28.0,210.82,117.93392,Wisconsin,USA,Undrafted,Undrafted,Undrafted,55,2.9,4.1,0.7,-9.5,0.08199999999999999,0.183,0.083,0.584,0.055,2013-14 8069,Gustavo Ayon,ATL,29.0,208.28,113.398,None,Mexico,Undrafted,Undrafted,Undrafted,26,4.3,4.8,1.1,-1.6,0.113,0.222,0.149,0.505,0.10099999999999999,2013-14 8070,Hamady Ndiaye,SAC,27.0,213.36,106.59411999999999,Rutgers,Senegal,2010,2,56,14,0.4,1.3,0.2,-14.9,0.062,0.22,0.076,0.318,0.065,2013-14 8071,Harrison Barnes,GSW,22.0,203.2,95.25432,North Carolina,USA,2012,1,7,78,9.5,4.0,1.5,-0.8,0.033,0.121,0.168,0.486,0.08,2013-14 8072,Hasheem Thabeet,OKC,27.0,220.98,119.294696,Connecticut,Tanzania,2009,1,2,23,1.2,1.7,0.0,4.2,0.057999999999999996,0.16899999999999998,0.095,0.536,0.008,2013-14 8073,Hedo Turkoglu,LAC,35.0,208.28,99.79024,None,Turkey,2000,1,16,38,3.0,2.3,0.9,2.2,0.031,0.209,0.155,0.49200000000000005,0.127,2013-14 8074,Henry Sims,PHI,24.0,208.28,112.490816,Georgetown,USA,Undrafted,Undrafted,Undrafted,46,7.6,5.2,1.1,-8.9,0.12300000000000001,0.17800000000000002,0.183,0.535,0.10099999999999999,2013-14 8075,Hilton Armstrong,GSW,29.0,210.82,106.59411999999999,Connecticut,USA,2006,1,12,15,1.7,3.1,0.3,10.5,0.18100000000000002,0.304,0.14,0.48,0.07400000000000001,2013-14 8076,Hollis Thompson,PHI,23.0,203.2,93.439952,Georgetown,USA,Undrafted,Undrafted,Undrafted,77,6.0,3.2,0.9,-11.1,0.044000000000000004,0.11599999999999999,0.113,0.57,0.061,2013-14 8077,Ian Clark,UTA,23.0,190.5,78.471416,Belmont,USA,Undrafted,Undrafted,Undrafted,23,3.0,0.8,0.7,1.4,0.019,0.1,0.217,0.485,0.147,2013-14 8078,Ian Mahinmi,IND,27.0,210.82,113.398,None,France,2005,1,28,77,3.5,3.3,0.3,1.2,0.099,0.135,0.114,0.5379999999999999,0.031,2013-14 8079,Iman Shumpert,NYK,24.0,195.58,99.79024,Georgia Tech,USA,2011,1,17,74,6.7,4.2,1.7,5.2,0.048,0.14,0.142,0.48,0.09699999999999999,2013-14 8080,Greivis Vasquez,TOR,27.0,198.12,95.707912,Maryland,Venezuela,2010,1,28,79,9.6,2.2,4.1,4.3,0.013000000000000001,0.102,0.21600000000000003,0.537,0.31,2013-14 8081,Jason Smith,NOP,28.0,213.36,108.86208,Colorado State,USA,2007,1,20,31,9.7,5.8,0.9,-2.7,0.065,0.19,0.18,0.495,0.054000000000000006,2013-14 8082,Jason Terry,BKN,36.0,187.96,81.64656,Arizona,USA,1999,1,10,35,4.5,1.1,1.6,-6.2,0.008,0.073,0.149,0.501,0.156,2013-14 8083,Joakim Noah,CHI,29.0,210.82,105.23334399999999,Florida,USA,2007,1,9,80,12.6,11.3,5.4,3.9,0.115,0.247,0.187,0.531,0.258,2013-14 8084,John Jenkins,ATL,23.0,193.04,97.52228000000001,Vanderbilt,USA,2012,1,23,13,3.1,1.7,0.8,-4.8,0.022000000000000002,0.127,0.163,0.457,0.113,2013-14 8085,John Henson,MIL,23.0,210.82,99.79024,North Carolina,USA,2012,1,14,70,11.1,7.1,1.6,-11.5,0.105,0.20800000000000002,0.204,0.5429999999999999,0.111,2013-14 8086,Joel Freeland,POR,27.0,208.28,102.0582,None,Great Britain,2006,1,30,52,3.3,4.0,0.7,0.5,0.13,0.175,0.12300000000000001,0.498,0.07200000000000001,2013-14 8087,Joel Anthony,BOS,31.0,205.74,111.13004,Nevada-Las Vegas,Canada,Undrafted,Undrafted,Undrafted,33,0.8,1.2,0.1,-3.5,0.08900000000000001,0.146,0.094,0.39399999999999996,0.016,2013-14 8088,Joe Johnson,BKN,33.0,200.66,108.86208,Arkansas,USA,2001,1,10,79,15.8,3.4,2.7,1.1,0.022000000000000002,0.102,0.22399999999999998,0.564,0.14800000000000002,2013-14 8089,Jodie Meeks,LAL,26.0,193.04,94.34713599999999,Kentucky,USA,2009,2,41,77,15.7,2.5,1.8,-8.9,0.012,0.069,0.19,0.601,0.085,2013-14 8090,John Salmons,TOR,34.0,198.12,93.89354399999999,Miami (FL),USA,2002,1,26,78,5.2,2.1,1.9,-0.1,0.013000000000000001,0.098,0.129,0.462,0.135,2013-14 8091,Jimmy Butler,CHI,24.0,200.66,99.79024,Marquette,USA,2011,1,30,67,13.1,4.9,2.6,4.2,0.039,0.107,0.16899999999999998,0.522,0.11,2013-14 8092,Jimmer Fredette,CHI,25.0,187.96,88.45044,Brigham Young,USA,2011,1,10,49,5.6,1.1,1.3,-1.8,0.017,0.095,0.244,0.578,0.221,2013-14 8093,Jerryd Bayless,BOS,25.0,190.5,90.7184,Arizona,USA,2008,1,11,72,9.3,2.0,2.7,-4.4,0.015,0.086,0.198,0.498,0.187,2013-14 8094,Jeremy Tyler,NYK,23.0,208.28,113.398,None,USA,2011,2,39,41,3.6,2.7,0.2,-4.6,0.11,0.21600000000000003,0.187,0.532,0.032,2013-14 8095,Jermaine O'Neal,GSW,35.0,210.82,115.66596000000001,None,USA,1996,1,17,44,7.9,5.5,0.6,3.5,0.111,0.187,0.184,0.57,0.045,2013-14 8096,Jeremy Lamb,OKC,22.0,195.58,83.91452,Connecticut,USA,2012,1,12,78,8.5,2.4,1.5,8.1,0.021,0.11800000000000001,0.203,0.522,0.12300000000000001,2013-14 8097,Jeremy Evans,UTA,26.0,205.74,89.357624,Western Kentucky,USA,2010,2,55,66,6.1,4.7,0.7,-7.4,0.113,0.185,0.154,0.5489999999999999,0.061,2013-14 8098,Jeffery Taylor,CHA,25.0,200.66,102.0582,Vanderbilt,Sweden,2012,2,31,26,8.0,2.3,0.8,-6.9,0.026000000000000002,0.087,0.187,0.436,0.06,2013-14 8099,Jeff Withey,NOP,24.0,213.36,106.59411999999999,Kansas,USA,2013,2,39,58,3.3,2.6,0.4,2.1,0.085,0.16699999999999998,0.121,0.59,0.057,2013-14 8100,Jeff Teague,ATL,26.0,187.96,82.10015200000001,Wake Forest,USA,2009,1,19,79,16.5,2.6,6.7,1.6,0.015,0.078,0.253,0.541,0.34700000000000003,2013-14 8101,Jeff Green,BOS,27.0,205.74,106.59411999999999,Georgetown,USA,2007,1,5,82,16.9,4.6,1.7,-7.3,0.021,0.136,0.23399999999999999,0.52,0.085,2013-14 8102,Jeff Ayres,SAS,27.0,205.74,113.398,Arizona State,USA,2009,2,31,73,3.3,3.5,0.8,7.0,0.115,0.193,0.12300000000000001,0.605,0.085,2013-14 8103,Jeff Adrien,MIL,28.0,201.0,111.0,Connecticut,USA,Undrafted,Undrafted,Undrafted,53,6.8,5.8,0.7,-3.7,0.11699999999999999,0.26,0.168,0.5529999999999999,0.064,2013-14 8104,Jason Thompson,SAC,27.0,210.82,113.398,Rider,USA,2008,1,12,82,7.1,6.4,0.6,-0.3,0.087,0.213,0.14400000000000002,0.523,0.04,2013-14 8105,John Lucas III,UTA,31.0,180.34,75.296272,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,42,3.8,0.9,1.0,-16.5,0.021,0.054000000000000006,0.163,0.40299999999999997,0.12,2013-14 8106,Jeremy Lin,HOU,25.0,190.5,90.7184,Harvard,USA,Undrafted,Undrafted,Undrafted,71,12.5,2.6,4.1,5.1,0.019,0.076,0.20199999999999999,0.5720000000000001,0.22899999999999998,2013-14 8107,Jose Calderon,NYK,33.0,190.5,90.7184,None,Spain,Undrafted,Undrafted,Undrafted,42,9.1,3.0,4.7,-14.5,0.016,0.099,0.16,0.519,0.251,2014-15 8108,Josh Smith,HOU,29.0,205.74,102.0582,None,USA,2004,1,17,83,12.4,6.4,3.3,0.1,0.069,0.175,0.245,0.467,0.207,2014-15 8109,Josh McRoberts,MIA,28.0,208.28,108.86208,Duke,USA,2007,2,37,17,4.2,2.6,1.9,6.1,0.03,0.159,0.132,0.613,0.168,2014-15 8110,Jorge Gutierrez,MIL,26.0,190.5,88.45044,California-Berkeley,Mexico,Undrafted,Undrafted,Undrafted,20,2.7,1.3,1.1,-7.0,0.032,0.11900000000000001,0.151,0.5670000000000001,0.212,2014-15 8111,Jannero Pargo,CHA,35.0,185.42,83.91452,Arkansas,USA,Undrafted,Undrafted,Undrafted,9,4.6,0.3,0.9,-3.6,0.0,0.045,0.248,0.5710000000000001,0.21600000000000003,2014-15 8112,Jordan Hamilton,LAC,24.0,200.66,99.79024,Texas,USA,2011,1,26,14,2.7,1.1,0.5,-7.0,0.019,0.125,0.149,0.5429999999999999,0.09,2014-15 8113,Jordan Farmar,LAC,28.0,187.96,81.64656,UCLA,USA,2006,1,26,36,4.6,1.2,1.9,-4.7,0.017,0.075,0.171,0.513,0.213,2014-15 8114,Jordan Clarkson,LAL,23.0,195.58,83.91452,Missouri,USA,2014,2,46,59,11.9,3.2,3.5,-8.6,0.04,0.109,0.23399999999999999,0.528,0.243,2014-15 8115,Jordan Adams,MEM,20.0,195.58,94.800728,UCLA,USA,2014,1,22,30,3.1,0.9,0.5,1.3,0.039,0.084,0.195,0.489,0.10099999999999999,2014-15 8116,Hedo Turkoglu,LAC,36.0,208.28,99.79024,None,Turkey,2000,1,16,62,3.7,1.6,0.6,0.1,0.008,0.152,0.146,0.602,0.08,2014-15 8117,Jordan Hill,LAL,27.0,208.28,106.59411999999999,Arizona,USA,2009,1,8,70,12.0,7.9,1.5,-10.9,0.09699999999999999,0.23199999999999998,0.225,0.494,0.096,2014-15 8118,Jrue Holiday,NOP,25.0,193.04,92.98635999999999,UCLA,USA,2009,1,17,40,14.8,3.4,6.9,3.5,0.027999999999999997,0.09,0.22699999999999998,0.522,0.322,2014-15 8119,Julius Randle,LAL,20.0,205.74,113.398,Kentucky,USA,2014,1,7,1,2.0,0.0,0.0,-74.1,0.0,0.0,0.17,0.258,0.0,2014-15 8120,Justin Hamilton,MIN,25.0,213.36,115.66596000000001,Louisiana State,USA,2012,2,45,41,5.3,3.3,0.9,-11.8,0.095,0.128,0.14800000000000002,0.551,0.09,2014-15 8121,Khris Middleton,MIL,23.0,200.66,102.0582,Texas A&M,USA,2012,2,39,79,13.4,4.4,2.3,6.9,0.023,0.138,0.198,0.563,0.12300000000000001,2014-15 8122,Kirk Hinrich,CHI,34.0,193.04,86.18248,Kansas,USA,2003,1,7,66,5.7,1.8,2.2,1.9,0.013999999999999999,0.065,0.132,0.46799999999999997,0.14300000000000002,2014-15 8123,Klay Thompson,GSW,25.0,200.66,97.52228000000001,Washington State,USA,2011,1,11,77,21.7,3.2,2.9,15.8,0.012,0.092,0.275,0.591,0.13699999999999998,2014-15 8124,Kobe Bryant,LAL,36.0,198.12,96.16150400000001,None,USA,1996,1,13,35,22.3,5.7,5.6,-12.2,0.022000000000000002,0.166,0.34299999999999997,0.47700000000000004,0.3,2014-15 8125,Kosta Koufos,MEM,26.0,213.36,120.20188,Ohio State,USA,2008,1,23,81,5.2,5.3,0.5,4.3,0.09699999999999999,0.24600000000000002,0.158,0.53,0.044000000000000004,2014-15 8126,Kostas Papanikolaou,HOU,24.0,203.2,106.59411999999999,None,Greece,2012,2,48,43,4.2,2.7,2.0,-2.6,0.055999999999999994,0.114,0.14400000000000002,0.444,0.166,2014-15 8127,Kevin Seraphin,WAS,25.0,208.28,126.098576,Le Moyne,France,2010,1,17,79,6.6,3.6,0.7,-5.4,0.084,0.182,0.22,0.535,0.085,2014-15 8128,Kris Humphries,WAS,30.0,205.74,106.59411999999999,Minnesota,USA,2004,1,14,64,8.0,6.5,0.9,-1.6,0.099,0.249,0.184,0.512,0.068,2014-15 8129,Kyle Korver,ATL,34.0,200.66,96.16150400000001,Creighton,USA,2003,2,51,75,12.1,4.1,2.6,10.9,0.008,0.131,0.14300000000000002,0.6990000000000001,0.111,2014-15 8130,Kyle Lowry,TOR,29.0,182.88,92.98635999999999,Villanova,USA,2006,1,24,70,17.8,4.7,6.8,3.0,0.025,0.129,0.249,0.527,0.312,2014-15 8131,Kyle O'Quinn,ORL,25.0,208.28,113.398,Norfolk State,USA,2012,2,49,51,5.8,3.9,1.2,-6.5,0.065,0.207,0.185,0.55,0.11900000000000001,2014-15 8132,Kyle Singler,OKC,27.0,203.2,103.418976,Duke,USA,2011,2,33,80,6.0,2.4,1.1,-2.8,0.019,0.1,0.13,0.512,0.071,2014-15 8133,Kyrie Irving,CLE,23.0,190.5,87.543256,Duke,Australia,2011,1,1,75,21.7,3.2,5.2,6.5,0.024,0.075,0.26,0.583,0.23600000000000002,2014-15 8134,LaMarcus Aldridge,POR,29.0,210.82,108.86208,Texas,USA,2006,1,2,71,23.4,10.2,1.7,5.7,0.077,0.23199999999999998,0.3,0.528,0.08900000000000001,2014-15 8135,Kyle Anderson,SAS,21.0,205.74,104.32616,UCLA,USA,2014,1,30,33,2.2,2.2,0.8,-4.8,0.017,0.21,0.135,0.389,0.11599999999999999,2014-15 8136,Henry Sims,PHI,25.0,208.28,112.490816,Georgetown,USA,Undrafted,Undrafted,Undrafted,73,8.0,4.9,1.1,-11.5,0.092,0.196,0.20600000000000002,0.521,0.109,2014-15 8137,Kevin Martin,MIN,32.0,200.66,92.532768,Western Carolina,USA,2004,1,26,39,20.0,3.6,2.3,-10.9,0.016,0.10800000000000001,0.266,0.5489999999999999,0.12300000000000001,2014-15 8138,Kevin Garnett,MIN,39.0,210.82,114.758776,None,USA,1995,1,5,47,6.9,6.6,1.6,0.2,0.059000000000000004,0.316,0.184,0.496,0.131,2014-15 8139,Justin Holiday,GSW,26.0,198.12,83.91452,Washington,USA,Undrafted,Undrafted,Undrafted,59,4.3,1.2,0.8,3.0,0.019,0.094,0.19,0.498,0.114,2014-15 8140,Jusuf Nurkic,DEN,20.0,210.82,127.00576000000001,None,Bosnia & Herzegovina,2014,1,16,62,6.9,6.2,0.8,-1.5,0.11599999999999999,0.249,0.205,0.483,0.07200000000000001,2014-15 8141,KJ McDaniels,HOU,22.0,198.12,92.98635999999999,Clemson,USA,2014,2,32,62,7.9,3.2,1.2,-8.6,0.049,0.113,0.192,0.494,0.095,2014-15 8142,Kalin Lucas,MEM,26.0,185.42,84.368112,Michigan State,USA,Undrafted,Undrafted,Undrafted,1,0.0,0.0,0.0,-39.6,0.0,0.0,0.063,0.0,0.0,2014-15 8143,Kawhi Leonard,SAS,24.0,200.66,104.32616,San Diego State,USA,2011,1,15,64,16.5,7.2,2.5,12.0,0.049,0.204,0.231,0.5670000000000001,0.124,2014-15 8144,Kelly Olynyk,BOS,24.0,213.36,107.95489599999999,Gonzaga,Canada,2013,1,13,64,10.3,4.7,1.7,4.7,0.07,0.16899999999999998,0.20800000000000002,0.5579999999999999,0.115,2014-15 8145,Kevin Love,CLE,26.0,208.28,110.22285600000001,UCLA,USA,2008,1,5,75,16.4,9.7,2.2,6.6,0.066,0.261,0.21600000000000003,0.562,0.10400000000000001,2014-15 8146,Kemba Walker,CHA,25.0,185.42,83.46092800000001,Connecticut,USA,2011,1,9,62,17.3,3.5,5.1,-4.6,0.018000000000000002,0.102,0.259,0.486,0.272,2014-15 8147,Kendrick Perkins,CLE,30.0,208.28,122.46983999999999,None,USA,2003,1,27,68,3.6,4.7,0.8,0.7,0.087,0.215,0.139,0.467,0.065,2014-15 8148,Kenneth Faried,DEN,25.0,203.2,103.418976,Morehead State,USA,2011,1,22,75,12.6,8.9,1.2,-1.2,0.121,0.23399999999999999,0.20199999999999999,0.5479999999999999,0.067,2014-15 8149,Kent Bazemore,ATL,25.0,195.58,91.171992,Old Dominion,USA,Undrafted,Undrafted,Undrafted,75,5.2,3.0,1.0,-0.7,0.018000000000000002,0.165,0.157,0.52,0.09300000000000001,2014-15 8150,Kentavious Caldwell-Pope,DET,22.0,195.58,92.98635999999999,Georgia,USA,2013,1,8,82,12.7,3.1,1.3,0.5,0.019,0.092,0.192,0.501,0.065,2014-15 8151,Kenyon Martin,MIL,37.0,205.74,102.0582,Cincinnati,USA,2000,1,1,11,1.8,1.7,0.5,-2.3,0.067,0.12300000000000001,0.11599999999999999,0.43700000000000006,0.068,2014-15 8152,Kevin Durant,OKC,26.0,205.74,108.86208,Texas,USA,2007,1,2,27,25.4,6.6,4.1,7.2,0.02,0.18100000000000002,0.285,0.633,0.213,2014-15 8153,Kendall Marshall,MIL,23.0,193.04,90.7184,North Carolina,USA,2012,1,13,28,4.2,1.0,3.1,8.0,0.006,0.07200000000000001,0.16,0.562,0.301,2014-15 8154,James Young,BOS,19.0,198.12,97.52228000000001,Kentucky,USA,2014,1,17,31,3.4,1.4,0.4,-2.9,0.027000000000000003,0.11,0.153,0.457,0.059000000000000004,2014-15 8155,Henry Walker,MIA,27.0,198.12,106.59411999999999,Kansas State,USA,2008,2,47,24,7.3,3.4,1.2,-0.8,0.013999999999999999,0.134,0.145,0.49700000000000005,0.071,2014-15 8156,Ian Clark,DEN,24.0,190.5,81.64656,Belmont,USA,Undrafted,Undrafted,Undrafted,30,1.9,0.5,0.4,-9.9,0.023,0.073,0.159,0.483,0.09699999999999999,2014-15 8157,Jeremy Evans,UTA,27.0,205.74,90.7184,Western Kentucky,USA,2010,2,55,38,2.4,1.9,0.3,6.2,0.11800000000000001,0.177,0.131,0.636,0.084,2014-15 8158,Jeremy Lamb,OKC,23.0,195.58,83.91452,Connecticut,USA,2012,1,12,47,6.3,2.3,0.9,-6.3,0.013000000000000001,0.16699999999999998,0.218,0.5379999999999999,0.125,2014-15 8159,Jeremy Lin,LAL,26.0,190.5,90.7184,Harvard,USA,Undrafted,Undrafted,Undrafted,74,11.2,2.6,4.6,-6.7,0.015,0.10099999999999999,0.217,0.539,0.27899999999999997,2014-15 8160,Jerome Jordan,BKN,28.0,213.36,114.758776,Tulsa,Jamaica,2010,2,44,44,3.1,2.4,0.3,-12.2,0.14800000000000002,0.154,0.157,0.609,0.06,2014-15 8161,Jerrelle Benimon,DEN,23.0,203.0,111.0,None,USA,Undrafted,Undrafted,Undrafted,2,0.0,1.5,0.0,120.0,1.0,0.4,0.16699999999999998,0.0,0.0,2014-15 8162,Jerryd Bayless,MIL,26.0,190.5,90.7184,Arizona,USA,2008,1,11,77,7.8,2.7,3.0,0.7,0.015,0.125,0.18899999999999997,0.519,0.221,2014-15 8163,Jerel McNeal,PHX,28.0,190.5,90.7184,Marquette,USA,Undrafted,Undrafted,Undrafted,6,1.5,0.5,0.3,-7.1,0.0,0.107,0.217,0.379,0.11800000000000001,2014-15 8164,Jimmer Fredette,NOP,26.0,187.96,88.45044,Brigham Young,USA,2011,1,10,50,3.6,0.8,1.2,2.7,0.018000000000000002,0.07,0.18899999999999997,0.479,0.171,2014-15 8165,Joakim Noah,CHI,30.0,210.82,105.23334399999999,Florida,USA,2007,1,9,67,7.2,9.6,4.7,2.3,0.11699999999999999,0.226,0.13699999999999998,0.48200000000000004,0.22699999999999998,2014-15 8166,Jodie Meeks,DET,27.0,193.04,95.25432,Kentucky,USA,2009,2,41,60,11.1,1.7,1.3,-3.8,0.009000000000000001,0.071,0.20199999999999999,0.5479999999999999,0.091,2014-15 8167,Joe Harris,CLE,23.0,198.12,102.0582,Virginia,USA,2014,2,33,51,2.7,0.8,0.5,-12.1,0.016,0.083,0.142,0.537,0.083,2014-15 8168,Joe Ingles,UTA,27.0,203.2,97.975872,None,Australia,Undrafted,Undrafted,Undrafted,79,5.0,2.2,2.3,-1.9,0.015,0.106,0.129,0.5329999999999999,0.171,2014-15 8169,Joe Johnson,BKN,34.0,200.66,108.86208,Arkansas,USA,2001,1,10,80,14.4,4.8,3.7,-2.5,0.022000000000000002,0.136,0.205,0.523,0.16899999999999998,2014-15 8170,Joel Anthony,DET,32.0,205.74,111.13004,Nevada-Las Vegas,Canada,Undrafted,Undrafted,Undrafted,49,1.8,1.9,0.1,2.4,0.085,0.157,0.095,0.607,0.019,2014-15 8171,Jimmy Butler,CHI,25.0,200.66,99.79024,Marquette,USA,2011,1,30,65,20.0,5.8,3.3,4.1,0.051,0.111,0.215,0.583,0.142,2014-15 8172,Joel Freeland,POR,28.0,208.28,102.0582,None,Great Britain,2006,1,30,48,3.5,4.0,0.3,6.9,0.111,0.221,0.136,0.522,0.039,2014-15 8173,Jerami Grant,PHI,21.0,203.2,95.25432,Syracuse,USA,2014,2,39,65,6.3,3.0,1.2,-6.0,0.037000000000000005,0.12,0.16399999999999998,0.47,0.095,2014-15 8174,Jeff Withey,NOP,25.0,213.36,100.697424,Kansas,USA,2013,2,39,37,2.6,1.7,0.3,-5.4,0.10099999999999999,0.19699999999999998,0.175,0.57,0.07,2014-15 8175,Jared Cunningham,LAC,24.0,193.04,88.45044,Oregon State,USA,2012,1,24,19,1.8,0.5,0.5,3.1,0.012,0.105,0.24,0.452,0.204,2014-15 8176,Jared Dudley,MIL,29.0,200.66,102.0582,Boston College,USA,2007,1,22,72,7.2,3.1,1.8,3.7,0.03,0.113,0.13699999999999998,0.5720000000000001,0.115,2014-15 8177,Jared Sullinger,BOS,23.0,205.74,117.93392,Ohio State,USA,2012,1,21,58,13.3,7.6,2.3,-2.9,0.102,0.207,0.23399999999999999,0.503,0.14,2014-15 8178,Jarnell Stokes,MEM,21.0,205.74,119.294696,Tennessee,USA,2014,2,35,19,3.0,1.8,0.2,5.1,0.133,0.154,0.193,0.578,0.053,2014-15 8179,Jarrett Jack,BKN,31.0,190.5,90.7184,Georgia Tech,USA,2005,1,22,80,12.0,3.1,4.7,-7.8,0.01,0.111,0.225,0.522,0.28600000000000003,2014-15 8180,Jason Maxiell,CHA,32.0,200.66,117.93392,Cincinnati,USA,2005,1,26,61,3.3,3.3,0.3,-8.6,0.1,0.146,0.128,0.455,0.036000000000000004,2014-15 8181,Jeffery Taylor,CHA,26.0,200.66,102.0582,Vanderbilt,Sweden,2012,2,31,29,4.4,1.8,0.8,-13.6,0.034,0.10400000000000001,0.165,0.48100000000000004,0.09300000000000001,2014-15 8182,Jason Richardson,PHI,34.0,198.12,102.0582,Michigan State,USA,2001,1,5,19,9.1,3.5,2.0,-8.0,0.03,0.142,0.218,0.45799999999999996,0.171,2014-15 8183,Jason Terry,HOU,37.0,187.96,83.91452,Arizona,USA,1999,1,10,77,7.0,1.6,1.9,3.7,0.01,0.07,0.142,0.579,0.139,2014-15 8184,Jason Thompson,SAC,28.0,210.82,113.398,Rider,USA,2008,1,12,81,6.1,6.5,1.0,-4.8,0.08199999999999999,0.22,0.129,0.5,0.063,2014-15 8185,Jeff Adrien,HOU,29.0,201.0,111.0,Connecticut,USA,Undrafted,Undrafted,Undrafted,17,3.5,4.5,0.9,-4.8,0.107,0.278,0.13699999999999998,0.494,0.10400000000000001,2014-15 8186,Jeff Ayres,SAS,28.0,205.74,113.398,Arizona State,USA,2009,2,31,51,2.7,2.3,0.3,-7.9,0.105,0.24,0.161,0.618,0.061,2014-15 8187,Jeff Green,MEM,28.0,205.74,106.59411999999999,Georgetown,USA,2007,1,5,78,15.0,4.2,1.7,-3.2,0.028999999999999998,0.122,0.221,0.534,0.08900000000000001,2014-15 8188,Jeff Teague,ATL,27.0,187.96,82.10015200000001,Wake Forest,USA,2009,1,19,73,15.9,2.5,7.0,8.6,0.016,0.076,0.25,0.5660000000000001,0.36700000000000005,2014-15 8189,Jason Smith,NYK,29.0,213.36,111.13004,Colorado State,USA,2007,1,20,82,8.0,4.0,1.7,-13.4,0.062,0.152,0.196,0.49700000000000005,0.134,2014-15 8190,Joey Dorsey,HOU,31.0,205.74,124.7378,Memphis,USA,2008,2,33,69,2.7,4.0,0.4,0.7,0.126,0.233,0.11,0.507,0.043,2014-15 8191,Joffrey Lauvergne,DEN,23.0,210.82,99.79024,None,France,2013,2,55,24,3.9,3.2,0.5,-20.4,0.096,0.218,0.193,0.45899999999999996,0.09,2014-15 8192,John Henson,MIL,24.0,210.82,104.32616,North Carolina,USA,2012,1,14,67,7.0,4.7,0.9,-1.4,0.115,0.168,0.183,0.578,0.084,2014-15 8193,Jabari Brown,LAL,22.0,195.58,97.068688,Missouri,USA,Undrafted,Undrafted,Undrafted,19,11.9,1.9,2.1,-13.4,0.006,0.071,0.18600000000000003,0.547,0.113,2014-15 8194,JaVale McGee,DEN,27.0,213.36,122.46983999999999,Nevada,USA,2008,1,18,23,4.6,2.7,0.1,-11.4,0.076,0.191,0.187,0.5670000000000001,0.021,2014-15 8195,JaMychal Green,MEM,25.0,203.2,104.32616,Alabama,USA,Undrafted,Undrafted,Undrafted,24,2.6,1.9,0.2,-7.8,0.12300000000000001,0.191,0.171,0.603,0.04,2014-15 8196,JaKarr Sampson,PHI,22.0,205.74,97.068688,St. John's (NY),USA,Undrafted,Undrafted,Undrafted,74,5.2,2.2,1.0,-11.0,0.032,0.13,0.17800000000000002,0.498,0.121,2014-15 8197,JR Smith,CLE,29.0,198.12,102.0582,None,USA,2004,1,18,70,12.1,3.1,2.8,2.8,0.017,0.102,0.191,0.5379999999999999,0.145,2014-15 8198,JJ Redick,LAC,31.0,193.04,86.18248,Duke,USA,2006,1,11,78,16.4,2.1,1.8,11.8,0.011000000000000001,0.066,0.207,0.622,0.085,2014-15 8199,Jabari Parker,MIL,20.0,203.2,108.86208,Duke,USA,2014,1,2,25,12.3,5.5,1.7,-5.2,0.078,0.142,0.204,0.527,0.095,2014-15 8200,JJ Hickson,DEN,26.0,205.74,109.769264,North Carolina State,USA,2008,1,19,73,7.6,6.2,0.8,-7.1,0.113,0.23199999999999998,0.2,0.504,0.069,2014-15 8201,Ish Smith,PHI,26.0,182.88,79.3786,Wake Forest,USA,Undrafted,Undrafted,Undrafted,55,6.1,1.8,3.3,-7.3,0.018000000000000002,0.11599999999999999,0.243,0.431,0.38799999999999996,2014-15 8202,Isaiah Thomas,BOS,26.0,175.26,83.91452,Washington,USA,2011,2,60,67,16.4,2.3,4.2,4.3,0.021,0.079,0.276,0.58,0.26899999999999996,2014-15 8203,Jonas Valanciunas,TOR,23.0,213.36,115.66596000000001,None,Lithuania,2011,1,5,80,12.0,8.7,0.5,-0.7,0.121,0.254,0.193,0.623,0.031,2014-15 8204,Isaiah Canaan,PHI,24.0,182.88,91.171992,Murray State,USA,2013,2,34,47,9.2,1.9,2.1,-3.8,0.02,0.08199999999999999,0.217,0.534,0.18899999999999997,2014-15 8205,Iman Shumpert,CLE,25.0,195.58,99.79024,Georgia Tech,USA,2011,1,17,62,8.0,3.6,2.2,2.6,0.042,0.122,0.17600000000000002,0.49700000000000005,0.13699999999999998,2014-15 8206,Ian Mahinmi,IND,28.0,210.82,113.398,None,France,2005,1,28,61,4.3,5.8,0.5,0.5,0.10099999999999999,0.24100000000000002,0.125,0.516,0.045,2014-15 8207,J.J. Barea,DAL,31.0,182.88,83.91452,Northeastern,Puerto Rico,Undrafted,Undrafted,Undrafted,77,7.5,1.7,3.4,4.5,0.019,0.09,0.215,0.502,0.295,2014-15 8208,Jack Cooley,UTA,24.0,205.74,111.58363200000001,Notre Dame,USA,Undrafted,Undrafted,Undrafted,16,1.7,1.6,0.1,-2.2,0.115,0.205,0.165,0.43200000000000005,0.019,2014-15 8209,Jae Crowder,BOS,24.0,198.12,106.59411999999999,Marquette,USA,2012,2,34,82,7.7,3.6,1.1,2.8,0.046,0.149,0.174,0.517,0.087,2014-15 8210,Jamaal Franklin,DEN,23.0,195.58,86.636072,San Diego State,USA,2013,2,41,3,1.0,0.7,1.0,-48.4,0.091,0.091,0.136,0.75,0.273,2014-15 8211,John Jenkins,ATL,24.0,193.04,97.52228000000001,Vanderbilt,USA,2012,1,23,24,5.6,1.6,0.5,-3.9,0.006999999999999999,0.13,0.175,0.629,0.081,2014-15 8212,John Lucas III,DET,32.0,180.34,75.296272,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,21,4.7,0.8,2.9,-9.1,0.017,0.053,0.21100000000000002,0.461,0.392,2014-15 8213,John Salmons,NOP,35.0,198.12,95.25432,Miami (FL),USA,2002,1,26,21,2.0,1.0,0.6,-12.1,0.015,0.075,0.09300000000000001,0.42200000000000004,0.078,2014-15 8214,John Wall,WAS,24.0,193.04,88.45044,Kentucky,USA,2010,1,1,79,17.6,4.6,10.0,5.3,0.013999999999999999,0.127,0.257,0.523,0.446,2014-15 8215,Johnny O'Bryant III,MIL,22.0,205.74,120.20188,Louisiana State,USA,2014,2,36,34,2.9,1.9,0.5,-13.9,0.078,0.122,0.19399999999999998,0.379,0.076,2014-15 8216,Jon Leuer,MEM,26.0,208.28,103.418976,Wisconsin,USA,2011,2,40,63,4.5,3.3,0.7,-1.2,0.066,0.213,0.18600000000000003,0.478,0.091,2014-15 8217,Jonas Jerebko,BOS,28.0,208.28,104.779752,None,Sweden,2009,2,39,75,6.0,3.8,0.9,5.2,0.081,0.175,0.16399999999999998,0.5489999999999999,0.091,2014-15 8218,Lance Stephenson,CHA,24.0,195.58,104.32616,Cincinnati,USA,2010,2,40,61,8.2,4.5,3.9,-7.5,0.026000000000000002,0.17,0.21100000000000002,0.419,0.259,2014-15 8219,James Michael McAdoo,GSW,22.0,205.74,104.32616,North Carolina,USA,Undrafted,Undrafted,Undrafted,15,4.1,2.5,0.1,10.2,0.115,0.17300000000000001,0.196,0.564,0.02,2014-15 8220,James Jones,CLE,34.0,203.2,97.52228000000001,Miami (FL),USA,2003,2,49,57,4.4,1.1,0.4,-10.5,0.015,0.096,0.159,0.565,0.059000000000000004,2014-15 8221,James Johnson,TOR,28.0,205.74,113.398,Wake Forest,USA,2009,1,16,70,7.9,3.7,1.4,7.0,0.052000000000000005,0.163,0.174,0.617,0.114,2014-15 8222,James Harden,HOU,25.0,195.58,102.0582,Arizona State,USA,2009,1,3,81,27.4,5.7,7.0,5.8,0.027999999999999997,0.14400000000000002,0.313,0.605,0.34,2014-15 8223,James Ennis III,MIA,24.0,200.66,94.34713599999999,Long Beach State,USA,2013,2,50,62,5.0,2.8,0.8,-0.1,0.057999999999999996,0.14,0.146,0.541,0.07400000000000001,2014-15 8224,Jameer Nelson,DEN,33.0,182.88,86.18248,Saint Joseph's,USA,2004,1,20,63,8.3,2.3,4.0,-0.6,0.025,0.091,0.19899999999999998,0.503,0.278,2014-15 8225,Jamal Crawford,LAC,35.0,195.58,90.7184,Michigan,USA,2000,1,8,64,15.8,1.9,2.5,2.3,0.012,0.07,0.278,0.532,0.16,2014-15 8226,Hollis Thompson,PHI,24.0,203.2,93.439952,Georgetown,USA,Undrafted,Undrafted,Undrafted,71,8.8,2.8,1.2,-9.3,0.031,0.095,0.159,0.5379999999999999,0.083,2014-15 8227,Lance Thomas,NYK,27.0,203.2,102.0582,Duke,USA,Undrafted,Undrafted,Undrafted,62,7.1,3.1,1.1,-10.7,0.048,0.102,0.172,0.456,0.079,2014-15 8228,Meyers Leonard,POR,23.0,215.9,111.13004,Illinois,USA,2012,1,11,55,5.9,4.5,0.6,1.0,0.061,0.245,0.162,0.631,0.063,2014-15 8229,Langston Galloway,NYK,23.0,187.96,90.7184,Saint Joseph's,USA,Undrafted,Undrafted,Undrafted,45,11.8,4.2,3.3,-9.5,0.027000000000000003,0.12300000000000001,0.19,0.489,0.175,2014-15 8230,Rajon Rondo,DAL,29.0,185.42,84.368112,Kentucky,USA,2006,1,21,68,8.9,5.5,7.9,-1.2,0.039,0.161,0.19399999999999998,0.44799999999999995,0.39299999999999996,2014-15 8231,Quincy Pondexter,NOP,27.0,200.66,99.79024,Washington,USA,2010,1,26,75,7.2,2.6,1.3,0.1,0.034,0.09,0.139,0.55,0.08,2014-15 8232,Quincy Miller,DET,22.0,205.74,95.25432,Baylor,USA,2012,2,38,10,2.9,2.0,0.8,14.8,0.035,0.133,0.16699999999999998,0.33799999999999997,0.092,2014-15 8233,Quincy Acy,NYK,24.0,200.66,108.86208,Baylor,USA,2012,2,37,68,5.9,4.4,1.0,-8.0,0.067,0.2,0.155,0.5329999999999999,0.091,2014-15 8234,Phil Pressey,BOS,24.0,180.34,79.3786,Missouri,USA,Undrafted,Undrafted,Undrafted,50,3.5,1.6,2.3,0.7,0.024,0.124,0.175,0.45299999999999996,0.3,2014-15 8235,Perry Jones III,OKC,23.0,210.82,106.59411999999999,Baylor,USA,2012,1,28,43,4.3,1.8,0.4,-9.4,0.01,0.11599999999999999,0.156,0.45899999999999996,0.046,2014-15 8236,Pero Antic,ATL,32.0,210.82,117.93392,None,Macedonia,Undrafted,Undrafted,Undrafted,63,5.7,3.0,0.8,6.0,0.065,0.146,0.171,0.508,0.07200000000000001,2014-15 8237,Paul Pierce,WAS,37.0,200.66,106.59411999999999,Kansas,USA,1998,1,10,73,11.9,4.0,2.0,5.0,0.027000000000000003,0.147,0.19699999999999998,0.58,0.115,2014-15 8238,Paul Millsap,ATL,30.0,203.2,114.758776,Louisiana Tech,USA,2006,2,47,73,16.7,7.8,3.1,7.7,0.069,0.203,0.235,0.565,0.149,2014-15 8239,Paul George,IND,25.0,205.74,99.79024,Fresno State,USA,2010,1,10,6,8.8,3.7,1.0,7.0,0.051,0.18899999999999997,0.327,0.49200000000000005,0.122,2014-15 8240,Pau Gasol,CHI,34.0,213.36,113.398,None,Spain,2001,1,3,78,18.5,11.8,2.7,3.0,0.091,0.267,0.244,0.55,0.142,2014-15 8241,Patty Mills,SAS,26.0,182.88,83.91452,Saint Mary's (CA),Australia,2009,2,55,51,6.9,1.5,1.7,9.0,0.027999999999999997,0.07200000000000001,0.213,0.496,0.172,2014-15 8242,Patrick Patterson,TOR,26.0,205.74,106.59411999999999,Kentucky,USA,2010,1,14,81,8.0,5.3,1.9,5.3,0.066,0.16899999999999998,0.13,0.568,0.10800000000000001,2014-15 8243,Patrick Christopher,MEM,27.0,196.0,94.0,California,USA,Undrafted,Undrafted,Undrafted,4,1.5,1.5,0.0,-22.8,0.077,0.182,0.21100000000000002,0.25,0.0,2014-15 8244,Patrick Beverley,HOU,26.0,185.42,95.25432,Arkansas,USA,2009,2,42,56,10.1,4.2,3.4,2.2,0.043,0.114,0.162,0.509,0.171,2014-15 8245,Pablo Prigioni,HOU,38.0,190.5,83.91452,None,Argentina,Undrafted,Undrafted,Undrafted,67,4.1,1.8,2.6,-3.7,0.028999999999999998,0.085,0.11699999999999999,0.557,0.213,2014-15 8246,PJ Tucker,PHX,30.0,198.12,101.604608,Texas,USA,2006,2,35,78,9.1,6.4,1.6,-0.3,0.051,0.17800000000000002,0.139,0.541,0.076,2014-15 8247,PJ Hairston,CHA,22.0,198.12,104.32616,North Carolina,USA,2014,1,26,45,5.6,2.0,0.5,-8.0,0.032,0.11699999999999999,0.196,0.446,0.051,2014-15 8248,Otto Porter Jr.,WAS,22.0,203.2,89.811216,Georgetown,USA,2013,1,3,74,6.0,3.0,0.9,0.6,0.057999999999999996,0.11800000000000001,0.152,0.523,0.068,2014-15 8249,Omri Casspi,SAC,27.0,205.74,102.0582,None,Israel,2009,1,23,67,8.9,3.9,1.5,-5.8,0.046,0.157,0.18600000000000003,0.58,0.121,2014-15 8250,Omer Asik,NOP,28.0,213.36,115.66596000000001,None,Turkey,2008,2,36,76,7.3,9.8,0.9,0.4,0.139,0.289,0.14,0.545,0.054000000000000006,2014-15 8251,Ognjen Kuzmic,GSW,25.0,213.36,117.93392,None,Bosnia,2012,2,52,16,1.3,1.1,0.4,-25.8,0.115,0.11800000000000001,0.11800000000000001,0.727,0.154,2014-15 8252,O.J. Mayo,MIL,27.0,195.58,95.25432,Southern California,USA,2008,1,3,71,11.4,2.6,2.8,-0.6,0.021,0.10300000000000001,0.23600000000000002,0.529,0.19399999999999998,2014-15 8253,Norris Cole,NOP,26.0,187.96,79.3786,Cleveland State,USA,2011,1,28,75,7.6,2.1,3.4,-3.4,0.009000000000000001,0.09300000000000001,0.183,0.483,0.22899999999999998,2014-15 8254,Noah Vonleh,CHA,19.0,208.28,108.86208,Indiana,USA,2014,1,9,25,3.3,3.4,0.2,-13.2,0.105,0.26,0.17,0.475,0.028999999999999998,2014-15 8255,Nikola Vucevic,ORL,24.0,213.36,117.93392,Southern California,Montenegro,2011,1,16,74,19.3,10.9,2.0,-6.0,0.10300000000000001,0.264,0.258,0.5479999999999999,0.106,2014-15 8256,Nikola Pekovic,MIN,29.0,210.82,133.80964,None,Montenegro,2008,2,31,31,12.5,7.5,0.9,-6.0,0.11699999999999999,0.19699999999999998,0.22699999999999998,0.502,0.057,2014-15 8257,Ramon Sessions,WAS,29.0,190.5,86.18248,Nevada,USA,2007,2,56,64,6.3,2.3,2.8,-5.6,0.023,0.10800000000000001,0.191,0.49,0.258,2014-15 8258,Nikola Mirotic,CHI,24.0,208.28,99.79024,None,Montenegro,2011,1,23,82,10.2,4.9,1.2,6.1,0.044000000000000004,0.21899999999999997,0.231,0.556,0.102,2014-15 8259,Randy Foye,DEN,31.0,193.04,96.615096,Villanova,USA,2006,1,7,50,8.7,1.7,2.4,-4.7,0.009000000000000001,0.08,0.19399999999999998,0.51,0.17600000000000002,2014-15 8260,Ray McCallum,SAC,24.0,190.5,86.18248,Detroit Mercy,USA,2013,2,36,68,7.4,2.6,2.8,-8.9,0.04,0.099,0.17800000000000002,0.496,0.21,2014-15 8261,Sebastian Telfair,OKC,30.0,182.88,77.11064,None,USA,2004,1,13,16,8.4,1.9,2.8,-12.3,0.006999999999999999,0.096,0.22399999999999998,0.479,0.29,2014-15 8262,Sean Kilpatrick,MIN,25.0,193.04,95.25432,Cincinnati,USA,Undrafted,Undrafted,Undrafted,4,5.5,1.5,1.0,7.3,0.02,0.094,0.151,0.506,0.08199999999999999,2014-15 8263,Samuel Dalembert,NYK,35.0,210.82,115.66596000000001,Seton Hall,Haiti,2001,1,26,32,4.0,5.3,0.9,-13.5,0.114,0.251,0.154,0.461,0.08800000000000001,2014-15 8264,Ryan Kelly,LAL,24.0,210.82,104.32616,Duke,USA,2013,2,48,52,6.4,2.8,1.8,-7.4,0.011000000000000001,0.12300000000000001,0.14300000000000002,0.473,0.113,2014-15 8265,Ryan Hollins,SAC,30.0,213.36,108.86208,UCLA,USA,2006,2,50,46,3.0,2.2,0.3,-4.8,0.09699999999999999,0.156,0.134,0.648,0.048,2014-15 8266,Ryan Anderson,NOP,27.0,208.28,108.86208,California,USA,2008,1,21,61,13.7,4.8,0.9,-1.9,0.071,0.128,0.23,0.524,0.054000000000000006,2014-15 8267,Russell Westbrook,OKC,26.0,190.5,90.7184,UCLA,USA,2008,1,4,67,28.1,7.3,8.6,4.1,0.059000000000000004,0.16699999999999998,0.37200000000000005,0.536,0.43,2014-15 8268,Russ Smith,MEM,24.0,182.88,74.84268,Louisville,USA,2014,2,47,12,2.5,0.5,0.7,10.4,0.015,0.078,0.251,0.488,0.21600000000000003,2014-15 8269,Rudy Gobert,UTA,23.0,215.9,111.13004,None,France,2013,1,27,82,8.4,9.5,1.3,1.2,0.142,0.266,0.14,0.627,0.087,2014-15 8270,Rudy Gay,SAC,28.0,203.2,104.32616,Connecticut,USA,2006,1,8,68,21.1,5.9,3.7,-2.3,0.048,0.141,0.268,0.556,0.185,2014-15 8271,Roy Hibbert,IND,28.0,218.44,131.54168,Georgetown,USA,2008,1,17,76,10.6,7.1,1.1,-1.4,0.09300000000000001,0.217,0.217,0.501,0.076,2014-15 8272,Ronny Turiaf,MIN,32.0,208.28,112.94440800000001,Gonzaga,France,2005,2,37,2,0.0,0.5,1.0,-14.3,0.0,0.071,0.0,0.0,0.16699999999999998,2014-15 8273,Ronnie Price,LAL,32.0,187.96,86.18248,Utah Valley,USA,Undrafted,Undrafted,Undrafted,43,5.1,1.6,3.8,-3.1,0.021,0.059000000000000004,0.134,0.455,0.244,2014-15 8274,Rodney Stuckey,IND,29.0,195.58,92.98635999999999,Eastern Washington,USA,2007,1,15,71,12.6,3.5,3.1,-0.7,0.021,0.121,0.23399999999999999,0.528,0.2,2014-15 8275,Rodney Hood,UTA,22.0,203.2,97.52228000000001,Duke,USA,2014,1,23,50,8.7,2.3,1.7,3.3,0.01,0.115,0.196,0.529,0.136,2014-15 8276,Robin Lopez,POR,27.0,213.36,115.66596000000001,Stanford,USA,2008,1,15,59,9.6,6.7,0.9,4.7,0.128,0.12300000000000001,0.156,0.574,0.05,2014-15 8277,Robert Sacre,LAL,26.0,213.36,122.46983999999999,Gonzaga,Canada,2012,2,60,67,4.6,3.5,0.8,-2.6,0.08199999999999999,0.14300000000000002,0.15,0.449,0.076,2014-15 8278,Robert Covington,PHI,24.0,205.74,97.52228000000001,Tennessee State,USA,Undrafted,Undrafted,Undrafted,70,13.5,4.5,1.5,-4.4,0.034,0.145,0.218,0.5539999999999999,0.095,2014-15 8279,Robbie Hummel,MIN,26.0,205.74,99.336648,Purdue,USA,2012,2,58,45,4.4,3.0,0.6,-10.7,0.047,0.166,0.121,0.536,0.057999999999999996,2014-15 8280,Ricky Rubio,MIN,24.0,193.04,87.089664,None,Spain,2009,1,5,22,10.3,5.7,8.8,-1.6,0.028999999999999998,0.16699999999999998,0.196,0.452,0.42200000000000004,2014-15 8281,Ricky Ledo,NYK,22.0,200.66,88.45044,Providence,USA,2013,2,43,17,5.3,2.1,1.1,-14.7,0.073,0.098,0.23600000000000002,0.426,0.14300000000000002,2014-15 8282,Richard Jefferson,DAL,35.0,200.66,106.140528,Arizona,USA,2001,1,13,74,5.8,2.5,0.8,3.6,0.022000000000000002,0.13699999999999998,0.155,0.5770000000000001,0.073,2014-15 8283,Reggie Williams,SAS,28.0,201.0,86.0,Virginia Military Institute,USA,Undrafted,Undrafted,Undrafted,20,1.9,0.9,0.5,-15.0,0.049,0.128,0.192,0.45399999999999996,0.16899999999999998,2014-15 8284,Reggie Jackson,DET,25.0,190.5,94.34713599999999,Boston College,USA,2011,1,24,77,14.5,4.2,6.0,1.6,0.027000000000000003,0.129,0.249,0.511,0.33299999999999996,2014-15 8285,Reggie Evans,SAC,35.0,203.2,111.13004,Iowa,USA,Undrafted,Undrafted,Undrafted,47,3.7,6.4,0.7,-4.4,0.149,0.32299999999999995,0.129,0.49,0.065,2014-15 8286,Reggie Bullock,PHX,24.0,200.66,92.98635999999999,North Carolina,USA,2013,1,25,36,1.9,1.4,0.2,-1.5,0.003,0.159,0.114,0.466,0.038,2014-15 8287,Raymond Felton,DAL,31.0,185.42,92.98635999999999,North Carolina,USA,2005,1,5,29,3.7,0.9,1.4,-3.3,0.006999999999999999,0.08900000000000001,0.20600000000000002,0.48,0.237,2014-15 8288,Rasual Butler,WAS,36.0,200.66,97.52228000000001,La Salle,USA,2002,2,52,75,7.7,2.6,0.8,-1.6,0.02,0.11900000000000001,0.17800000000000002,0.531,0.067,2014-15 8289,Landry Fields,TOR,27.0,200.66,97.52228000000001,Stanford,USA,2010,2,39,26,1.8,1.0,0.6,-18.7,0.052000000000000005,0.083,0.11,0.527,0.11199999999999999,2014-15 8290,Nik Stauskas,SAC,21.0,198.12,92.98635999999999,Michigan,Canada,2014,1,8,73,4.4,1.2,0.9,-7.0,0.011000000000000001,0.075,0.141,0.49200000000000005,0.092,2014-15 8291,Nick Young,LAL,30.0,200.66,95.25432,Southern California,USA,2007,1,16,42,13.4,2.3,1.0,-2.8,0.018000000000000002,0.08900000000000001,0.257,0.52,0.071,2014-15 8292,Markieff Morris,PHX,25.0,208.28,111.13004,Kansas,USA,2011,1,13,82,15.3,6.2,2.3,2.2,0.048,0.16699999999999998,0.23399999999999999,0.523,0.12,2014-15 8293,Markel Brown,BKN,23.0,190.5,86.18248,Oklahoma State,USA,2014,2,44,47,4.6,2.3,0.8,-0.6,0.022000000000000002,0.135,0.149,0.45899999999999996,0.07,2014-15 8294,Mario Chalmers,MIA,29.0,187.96,86.18248,Kansas,USA,2008,2,34,80,10.2,2.6,3.8,-3.1,0.013000000000000001,0.092,0.188,0.521,0.21600000000000003,2014-15 8295,Marcus Thornton,PHX,28.0,193.04,92.98635999999999,Louisiana State,USA,2009,2,43,48,7.9,1.8,0.8,-2.9,0.034,0.1,0.23600000000000002,0.514,0.087,2014-15 8296,Marcus Smart,BOS,21.0,193.04,99.79024,Oklahoma State,USA,2014,1,6,67,7.8,3.3,3.1,2.5,0.037000000000000005,0.10099999999999999,0.152,0.491,0.161,2014-15 8297,Marcus Morris,PHX,25.0,205.74,106.59411999999999,Kansas,USA,2011,1,14,81,10.4,4.8,1.6,-1.7,0.039,0.17,0.19,0.52,0.1,2014-15 8298,Marco Belinelli,SAS,29.0,195.58,95.25432,None,Italy,2007,1,18,62,9.2,2.5,1.5,0.1,0.022000000000000002,0.106,0.19,0.5529999999999999,0.105,2014-15 8299,Marcin Gortat,WAS,31.0,210.82,108.86208,None,Poland,2005,2,57,82,12.2,8.7,1.2,6.0,0.084,0.237,0.175,0.5870000000000001,0.062,2014-15 8300,Marc Gasol,MEM,30.0,215.9,120.20188,None,Spain,2007,2,48,81,17.4,7.8,3.8,3.4,0.051,0.22399999999999998,0.247,0.5579999999999999,0.193,2014-15 8301,Manu Ginobili,SAS,37.0,198.12,92.98635999999999,None,Argentina,1999,2,57,70,10.5,3.0,4.2,9.6,0.02,0.129,0.235,0.544,0.29,2014-15 8302,Malcolm Thomas,PHI,26.0,205.74,102.0582,San Diego State,USA,Undrafted,Undrafted,Undrafted,17,2.6,3.3,0.4,-28.1,0.086,0.242,0.127,0.49200000000000005,0.065,2014-15 8303,Malcolm Lee,PHI,25.0,195.58,90.7184,UCLA,USA,2011,2,43,1,0.0,0.0,0.0,66.7,0.0,0.0,0.192,0.0,0.0,2014-15 8304,Luol Deng,MIA,30.0,205.74,99.79024,Duke,United Kingdom,2004,1,7,72,14.0,5.2,1.9,0.2,0.053,0.131,0.19399999999999998,0.561,0.094,2014-15 8305,Luke Ridnour,ORL,34.0,187.96,79.3786,Oregon,USA,2003,1,14,47,4.0,1.4,2.0,-9.8,0.013000000000000001,0.102,0.149,0.507,0.22,2014-15 8306,Luke Babbitt,NOP,26.0,205.74,102.0582,Nevada,USA,2010,1,16,63,4.1,1.8,0.4,-5.1,0.017,0.131,0.125,0.639,0.044000000000000004,2014-15 8307,Luis Scola,IND,35.0,205.74,108.86208,None,Argentina,2002,2,55,81,9.4,6.5,1.3,0.0,0.095,0.259,0.225,0.515,0.11,2014-15 8308,Lucas Nogueira,TOR,22.0,213.36,99.79024,None,Brazil,2013,1,16,6,1.0,1.8,0.2,-20.7,0.067,0.45,0.19899999999999998,0.307,0.071,2014-15 8309,Luc Mbah a Moute,PHI,28.0,203.2,104.32616,UCLA,Cameroon,2008,2,37,67,9.9,4.9,1.6,-9.3,0.044000000000000004,0.14400000000000002,0.188,0.466,0.10099999999999999,2014-15 8310,Lou Williams,TOR,28.0,185.42,79.3786,None,USA,2005,2,45,80,15.5,1.9,2.1,6.8,0.013999999999999999,0.07400000000000001,0.267,0.564,0.136,2014-15 8311,Lou Amundson,NYK,32.0,205.74,102.0582,Nevada-Las Vegas,USA,Undrafted,Undrafted,Undrafted,53,4.9,5.1,1.3,-7.0,0.109,0.21100000000000002,0.175,0.442,0.11800000000000001,2014-15 8312,Lorenzo Brown,MIN,24.0,195.58,85.728888,North Carolina State,USA,2013,2,52,29,4.2,2.4,3.1,-7.9,0.031,0.126,0.136,0.46799999999999997,0.257,2014-15 8313,Lester Hudson,LAC,30.0,190.5,86.18248,Tennessee-Martin,USA,2009,2,58,5,3.6,1.6,1.0,-3.4,0.024,0.13699999999999998,0.162,0.5710000000000001,0.172,2014-15 8314,Leandro Barbosa,GSW,32.0,190.5,87.996848,None,Brazil,2003,1,28,66,7.1,1.4,1.5,2.0,0.026000000000000002,0.076,0.20600000000000002,0.5579999999999999,0.162,2014-15 8315,LeBron James,CLE,30.0,203.2,113.398,None,USA,2003,1,1,69,25.3,6.0,7.4,9.8,0.025,0.166,0.324,0.5770000000000001,0.366,2014-15 8316,Lavoy Allen,IND,26.0,205.74,115.66596000000001,Temple,USA,2011,2,50,63,5.0,5.1,1.2,3.2,0.126,0.20800000000000002,0.15,0.493,0.107,2014-15 8317,Larry Sanders,MIL,26.0,210.82,104.32616,Virginia Commonwealth,USA,2010,1,15,27,7.3,6.1,0.9,-5.6,0.128,0.187,0.168,0.507,0.065,2014-15 8318,Larry Drew II,PHI,25.0,187.96,81.64656,UCLA,USA,Undrafted,Undrafted,Undrafted,12,3.8,1.3,3.8,-18.7,0.005,0.08,0.17300000000000001,0.38799999999999996,0.381,2014-15 8319,Marreese Speights,GSW,27.0,208.28,115.66596000000001,Florida,USA,2008,1,16,76,10.4,4.3,0.9,8.2,0.102,0.195,0.287,0.546,0.098,2014-15 8320,Nicolas Batum,POR,26.0,203.2,90.7184,None,France,2008,1,25,71,9.4,5.9,4.8,4.2,0.028999999999999998,0.155,0.145,0.516,0.2,2014-15 8321,Martell Webster,WAS,28.0,200.66,104.32616,None,USA,2005,1,6,32,3.3,1.4,0.5,-19.0,0.032,0.111,0.179,0.445,0.081,2014-15 8322,Mason Plumlee,BKN,25.0,210.82,106.59411999999999,Duke,USA,2013,1,22,82,8.7,6.2,0.9,-5.6,0.11599999999999999,0.221,0.195,0.57,0.069,2014-15 8323,Nick Johnson,HOU,22.0,190.5,91.625584,Arizona,USA,2014,2,42,28,2.6,1.4,0.4,-7.3,0.053,0.1,0.17300000000000001,0.43,0.069,2014-15 8324,Nick Collison,OKC,34.0,208.28,115.66596000000001,Kansas,USA,2003,1,12,66,4.1,3.8,1.4,2.6,0.087,0.156,0.13,0.485,0.12,2014-15 8325,Nick Calathes,MEM,26.0,198.12,96.615096,Florida,USA,2009,2,45,58,4.2,1.8,2.5,5.9,0.025,0.115,0.177,0.455,0.27399999999999997,2014-15 8326,Nerlens Noel,PHI,21.0,210.82,103.418976,Kentucky,USA,2013,1,6,75,9.9,8.1,1.7,-9.1,0.08199999999999999,0.207,0.17300000000000001,0.493,0.099,2014-15 8327,Nene,WAS,32.0,210.82,113.398,None,Brazil,2002,1,7,67,11.0,5.1,1.8,5.9,0.057999999999999996,0.172,0.21899999999999997,0.534,0.11699999999999999,2014-15 8328,Nazr Mohammed,CHI,37.0,208.28,113.398,Kentucky,USA,1998,1,29,23,1.2,1.7,0.1,1.6,0.099,0.239,0.138,0.431,0.038,2014-15 8329,Nate Wolters,MIL,24.0,193.04,86.18248,South Dakota State,USA,2013,2,38,21,2.0,1.6,1.0,-3.4,0.035,0.11599999999999999,0.134,0.35200000000000004,0.127,2014-15 8330,Nate Robinson,DEN,31.0,175.26,81.64656,Washington,USA,2005,1,21,42,5.7,1.2,2.3,-8.2,0.03,0.06,0.235,0.43200000000000005,0.303,2014-15 8331,Monta Ellis,DAL,29.0,190.5,83.91452,None,USA,2005,2,40,80,18.9,2.4,4.1,4.2,0.013999999999999999,0.063,0.27699999999999997,0.509,0.2,2014-15 8332,Mo Williams,CHA,32.0,185.42,89.811216,Alabama,USA,2003,2,47,68,14.2,2.6,6.2,-3.5,0.012,0.08900000000000001,0.248,0.512,0.358,2014-15 8333,Mitch McGary,OKC,23.0,208.28,115.66596000000001,Michigan,USA,2014,1,21,32,6.3,5.2,0.4,4.0,0.12,0.239,0.18600000000000003,0.55,0.043,2014-15 8334,Mirza Teletovic,BKN,29.0,205.74,109.769264,None,Bosnia,Undrafted,Undrafted,Undrafted,40,8.5,4.9,1.2,-1.9,0.034,0.19699999999999998,0.2,0.5,0.087,2014-15 8335,Hassan Whiteside,MIA,26.0,213.36,120.20188,Marshall,USA,2010,2,33,48,11.8,10.0,0.1,-2.2,0.154,0.33,0.20600000000000002,0.619,0.009000000000000001,2014-15 8336,Miroslav Raduljica,MIN,27.0,213.36,113.398,None,Serbia,Undrafted,Undrafted,Undrafted,5,1.6,1.0,0.0,-7.0,0.095,0.188,0.217,0.45,0.0,2014-15 8337,Miles Plumlee,MIL,26.0,210.82,115.66596000000001,Duke,USA,2012,1,26,73,4.0,4.4,0.5,0.1,0.106,0.195,0.122,0.536,0.040999999999999995,2014-15 8338,Mike Scott,ATL,26.0,203.2,107.501304,Virginia,USA,2012,2,43,68,7.8,2.9,1.1,1.1,0.047,0.15,0.22,0.5429999999999999,0.115,2014-15 8339,Mike Muscala,ATL,23.0,210.82,104.32616,Bucknell,USA,2013,2,44,40,4.9,3.0,0.6,5.3,0.121,0.14800000000000002,0.165,0.608,0.08,2014-15 8340,Mike Miller,CLE,35.0,203.2,98.88305600000001,Florida,USA,2000,1,5,52,2.1,1.8,0.9,-5.7,0.006,0.141,0.091,0.47100000000000003,0.10099999999999999,2014-15 8341,Mike Dunleavy,CHI,34.0,205.74,104.32616,Duke,USA,2002,1,3,63,9.4,3.9,1.8,5.4,0.017,0.125,0.14300000000000002,0.573,0.094,2014-15 8342,Mike Conley,MEM,27.0,185.42,79.3786,Ohio State,USA,2007,1,4,70,15.8,3.0,5.4,3.8,0.015,0.094,0.237,0.5579999999999999,0.278,2014-15 8343,Michael Kidd-Gilchrist,CHA,21.0,200.66,105.23334399999999,Kentucky,USA,2012,1,2,55,10.9,7.6,1.4,3.1,0.075,0.214,0.183,0.519,0.078,2014-15 8344,Michael Carter-Williams,MIL,23.0,198.12,86.18248,Syracuse,USA,2013,1,11,66,14.6,5.3,6.7,-3.7,0.032,0.15,0.268,0.461,0.374,2014-15 8345,Michael Beasley,MIA,26.0,208.28,106.59411999999999,Kansas State,USA,2008,1,2,24,8.8,3.7,1.3,0.7,0.027999999999999997,0.168,0.24,0.474,0.113,2014-15 8346,Maurice Harkless,ORL,22.0,205.74,97.52228000000001,St. John's (NY),USA,2012,1,15,45,3.5,2.4,0.6,-5.0,0.061,0.11699999999999999,0.134,0.449,0.055999999999999994,2014-15 8347,Matthew Dellavedova,CLE,24.0,193.04,90.7184,Saint Mary's (CA),Australia,Undrafted,Undrafted,Undrafted,67,4.8,1.9,3.0,0.6,0.031,0.076,0.127,0.493,0.228,2014-15 8348,Matt Bonner,SAS,35.0,208.28,106.59411999999999,Florida,USA,2003,2,45,72,3.7,1.6,0.7,1.1,0.035,0.107,0.126,0.536,0.07400000000000001,2014-15 8349,Matt Barnes,LAC,35.0,200.66,102.511792,UCLA,USA,2002,2,45,76,10.1,4.0,1.5,12.0,0.026000000000000002,0.12,0.147,0.574,0.067,2014-15 8350,Marvin Williams,CHA,29.0,205.74,107.501304,North Carolina,USA,2005,1,2,78,7.4,4.9,1.3,-4.3,0.031,0.183,0.134,0.541,0.078,2014-15 8351,Harrison Barnes,GSW,23.0,203.2,102.0582,North Carolina,USA,2012,1,7,82,10.1,5.5,1.4,12.6,0.055999999999999994,0.151,0.149,0.573,0.068,2014-15 8352,Danilo Gallinari,DEN,26.0,208.28,102.0582,None,Italy,2008,1,6,59,12.4,3.7,1.4,1.4,0.023,0.14800000000000002,0.217,0.563,0.094,2014-15 8353,Greg Stiemsma,TOR,29.0,210.82,117.93392,Wisconsin,USA,Undrafted,Undrafted,Undrafted,17,0.8,0.9,0.2,-16.8,0.158,0.12,0.121,0.7170000000000001,0.077,2014-15 8354,Alonzo Gee,POR,28.0,198.12,102.0582,Alabama,USA,Undrafted,Undrafted,Undrafted,54,4.5,1.7,0.5,-5.6,0.062,0.095,0.168,0.5479999999999999,0.062,2014-15 8355,Alexis Ajinca,NOP,27.0,218.44,112.490816,None,France,2008,1,20,68,6.5,4.6,0.7,-0.6,0.13,0.248,0.214,0.595,0.084,2014-15 8356,Alexey Shved,NYK,26.0,198.12,84.821704,None,Russia,Undrafted,Undrafted,Undrafted,42,10.3,2.4,2.5,-8.5,0.031,0.111,0.258,0.541,0.26,2014-15 8357,Alex Len,PHX,22.0,215.9,115.66596000000001,Maryland,Ukraine,2013,1,5,69,6.3,6.6,0.5,0.5,0.102,0.223,0.135,0.542,0.03,2014-15 8358,Alex Kirk,CLE,23.0,213.36,111.13004,New Mexico,USA,Undrafted,Undrafted,Undrafted,5,0.8,0.2,0.2,-61.8,0.091,0.0,0.17,0.41,0.125,2014-15 8359,Alec Burks,UTA,23.0,198.12,95.707912,Colorado,USA,2011,1,12,27,13.9,4.2,3.0,-7.4,0.025,0.127,0.21,0.524,0.145,2014-15 8360,Alan Anderson,BKN,32.0,198.12,99.79024,Michigan State,USA,Undrafted,Undrafted,Undrafted,74,7.4,2.8,1.1,-1.4,0.02,0.109,0.142,0.563,0.07400000000000001,2014-15 8361,Al-Farouq Aminu,DAL,24.0,205.74,97.52228000000001,Wake Forest,USA,2010,1,8,74,5.6,4.6,0.8,5.7,0.091,0.18,0.151,0.504,0.062,2014-15 8362,Al Jefferson,CHA,30.0,208.28,131.088088,None,USA,2004,1,15,65,16.6,8.4,1.7,-3.7,0.054000000000000006,0.26,0.267,0.5,0.11,2014-15 8363,Al Horford,ATL,29.0,208.28,113.398,Florida,Dominican Republic,2007,1,3,76,15.2,7.2,3.2,6.6,0.068,0.193,0.225,0.563,0.17800000000000002,2014-15 8364,Adreian Payne,MIN,24.0,208.28,111.13004,Michigan State,USA,2014,1,15,32,6.7,5.1,0.9,-16.9,0.073,0.18600000000000003,0.17600000000000002,0.44299999999999995,0.067,2014-15 8365,Aaron Gordon,ORL,19.0,205.74,99.79024,Arizona,USA,2014,1,4,47,5.2,3.6,0.7,-5.6,0.064,0.171,0.156,0.517,0.064,2014-15 8366,Amar'e Stoudemire,DAL,32.0,208.28,111.13004,None,USA,2002,1,9,59,11.5,5.6,0.8,-4.9,0.105,0.212,0.23800000000000002,0.595,0.064,2014-15 8367,Aaron Brooks,CHI,30.0,182.88,73.028312,Oregon,USA,2007,1,26,82,11.6,2.0,3.2,5.2,0.019,0.078,0.252,0.534,0.245,2014-15 8368,Zoran Dragic,MIA,26.0,195.58,90.7184,None,Slovenia,Undrafted,Undrafted,Undrafted,16,1.8,0.5,0.3,-15.3,0.07200000000000001,0.045,0.217,0.435,0.11599999999999999,2014-15 8369,Zaza Pachulia,MIL,31.0,210.82,122.46983999999999,None,Georgia,2003,2,42,73,8.3,6.8,2.4,6.9,0.133,0.20600000000000002,0.18899999999999997,0.506,0.155,2014-15 8370,Zach Randolph,MEM,33.0,205.74,117.93392,Michigan State,USA,2001,1,19,71,16.1,10.5,2.2,6.3,0.115,0.259,0.242,0.5379999999999999,0.111,2014-15 8371,Zach LaVine,MIN,20.0,195.58,83.007336,UCLA,USA,2014,1,13,77,10.1,2.8,3.6,-14.5,0.016,0.11599999999999999,0.22399999999999998,0.515,0.25,2014-15 8372,Xavier Henry,LAL,24.0,198.12,99.79024,Kansas,USA,2010,1,12,9,2.2,0.4,0.3,8.0,0.024,0.031,0.139,0.424,0.048,2014-15 8373,Wilson Chandler,DEN,28.0,203.2,102.0582,DePaul,USA,2007,1,23,78,13.9,6.1,1.7,-5.1,0.040999999999999995,0.174,0.201,0.523,0.086,2014-15 8374,Willie Green,ORL,33.0,190.5,92.98635999999999,Detroit Mercy,USA,2003,2,41,52,5.9,1.5,1.3,-4.7,0.017,0.075,0.177,0.47700000000000004,0.121,2014-15 8375,Will Cherry,TOR,24.0,183.0,83.0,Montana,USA,Undrafted,Undrafted,Undrafted,8,1.9,0.6,1.0,-3.7,0.017,0.066,0.168,0.34700000000000003,0.174,2014-15 8376,Will Bynum,WAS,32.0,182.88,83.91452,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,7,3.1,0.9,2.6,-41.0,0.033,0.07,0.272,0.336,0.486,2014-15 8377,Will Barton,DEN,24.0,198.12,79.3786,Memphis,USA,2012,2,40,58,6.8,2.8,1.4,-2.3,0.027000000000000003,0.14800000000000002,0.20199999999999999,0.503,0.135,2014-15 8378,Wesley Matthews,POR,28.0,195.58,99.79024,Marquette,USA,Undrafted,Undrafted,Undrafted,60,15.9,3.7,2.3,6.5,0.021,0.095,0.19699999999999998,0.586,0.11,2014-15 8379,Wesley Johnson,LAL,27.0,200.66,97.52228000000001,Syracuse,USA,2010,1,4,76,9.9,4.2,1.6,-6.8,0.032,0.129,0.16399999999999998,0.509,0.084,2014-15 8380,AJ Price,CLE,28.0,187.96,88.45044,Connecticut,USA,2009,2,52,26,5.1,1.2,1.8,-12.2,0.019,0.096,0.226,0.451,0.254,2014-15 8381,Amir Johnson,TOR,28.0,205.74,108.86208,None,USA,2005,2,56,75,9.3,6.1,1.6,2.3,0.09300000000000001,0.16399999999999998,0.157,0.603,0.092,2014-15 8382,Anderson Varejao,CLE,32.0,210.82,121.10906399999999,None,Brazil,2004,2,30,26,9.8,6.5,1.3,-1.0,0.111,0.212,0.185,0.58,0.09,2014-15 8383,Andre Dawkins,MIA,23.0,195.58,99.336648,Duke,USA,Undrafted,Undrafted,Undrafted,4,0.8,0.5,0.3,-18.3,0.0,0.071,0.153,0.25,0.077,2014-15 8384,Bojan Bogdanovic,BKN,26.0,203.2,97.975872,None,Croatia,2011,2,31,78,9.0,2.7,0.9,-4.9,0.031,0.09699999999999999,0.172,0.562,0.057,2014-15 8385,Blake Griffin,LAC,26.0,208.28,113.851592,Oklahoma,USA,2009,1,1,67,21.9,7.6,5.3,11.5,0.063,0.18,0.281,0.551,0.24600000000000002,2014-15 8386,Bismack Biyombo,CHA,22.0,205.74,111.13004,None,Democratic Republic of the Congo,2011,1,7,64,4.8,6.4,0.3,-1.2,0.134,0.222,0.115,0.578,0.021,2014-15 8387,Bernard James,DAL,30.0,208.28,106.59411999999999,Florida State,USA,2012,2,33,16,2.8,2.4,0.3,-1.7,0.12300000000000001,0.146,0.12,0.593,0.039,2014-15 8388,Beno Udrih,MEM,32.0,190.5,92.98635999999999,None,Slovenia,2004,1,28,79,7.7,1.8,2.8,0.2,0.015,0.092,0.19699999999999998,0.55,0.23600000000000002,2014-15 8389,Ben McLemore,SAC,22.0,195.58,88.45044,Kansas,USA,2013,1,7,82,12.1,2.9,1.7,-1.3,0.013999999999999999,0.086,0.172,0.552,0.08199999999999999,2014-15 8390,Ben Gordon,ORL,32.0,190.5,92.98635999999999,Connecticut,USA,2004,1,3,56,6.2,1.1,0.9,-9.0,0.008,0.083,0.22,0.5379999999999999,0.111,2014-15 8391,Avery Bradley,BOS,24.0,187.96,81.64656,Texas,USA,2010,1,19,77,13.9,3.1,1.8,-2.4,0.02,0.08900000000000001,0.21,0.507,0.087,2014-15 8392,Austin Rivers,LAC,22.0,193.04,90.7184,Duke,USA,2012,1,10,76,7.0,2.0,2.0,-3.2,0.019,0.08900000000000001,0.179,0.48100000000000004,0.157,2014-15 8393,Austin Daye,ATL,27.0,210.82,99.79024,Gonzaga,USA,2009,1,15,34,3.8,2.2,0.5,-3.1,0.031,0.212,0.217,0.449,0.083,2014-15 8394,Arron Afflalo,POR,29.0,195.58,97.52228000000001,UCLA,USA,2007,1,27,78,13.3,3.2,1.7,-1.2,0.012,0.096,0.191,0.5329999999999999,0.079,2014-15 8395,Aron Baynes,SAS,28.0,208.28,117.93392,Washington State,Australia,Undrafted,Undrafted,Undrafted,70,6.6,4.5,0.5,6.8,0.114,0.20600000000000002,0.17600000000000002,0.618,0.049,2014-15 8396,Arinze Onuaku,MIN,27.0,205.74,124.7378,Syracuse,USA,Undrafted,Undrafted,Undrafted,6,4.5,3.5,0.7,-9.7,0.115,0.212,0.125,0.7709999999999999,0.08900000000000001,2014-15 8397,Archie Goodwin,PHX,20.0,195.58,89.811216,Kentucky,USA,2013,1,29,41,5.6,1.8,1.1,-15.4,0.049,0.1,0.23,0.486,0.149,2014-15 8398,Anthony Tolliver,DET,30.0,203.2,108.86208,Creighton,USA,Undrafted,Undrafted,Undrafted,76,6.3,3.1,0.8,3.2,0.039,0.152,0.14800000000000002,0.569,0.061,2014-15 8399,Anthony Morrow,OKC,29.0,195.58,95.25432,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,74,10.7,2.6,0.8,4.4,0.024,0.09,0.16399999999999998,0.604,0.05,2014-15 8400,Anthony Davis,NOP,22.0,208.28,99.79024,Kentucky,USA,2012,1,1,68,24.4,10.2,2.2,5.1,0.08,0.24,0.276,0.591,0.109,2014-15 8401,Anthony Bennett,MIN,22.0,203.2,111.13004,Nevada-Las Vegas,Canada,2013,1,1,57,5.2,3.8,0.8,-16.5,0.062,0.22899999999999998,0.17600000000000002,0.45799999999999996,0.087,2014-15 8402,Andrew Wiggins,MIN,20.0,203.2,90.264808,Kansas,Canada,2014,1,1,82,16.9,4.6,2.1,-10.1,0.05,0.096,0.226,0.517,0.09699999999999999,2014-15 8403,Andrew Nicholson,ORL,25.0,205.74,113.398,St. Bonaventure,Canada,2012,1,19,40,4.9,2.1,0.6,-7.9,0.04,0.147,0.213,0.483,0.076,2014-15 8404,Andrew Bogut,GSW,30.0,213.36,117.93392,Utah,Australia,2005,1,1,67,6.3,8.1,2.7,16.6,0.10099999999999999,0.262,0.133,0.565,0.149,2014-15 8405,Andrei Kirilenko,BKN,34.0,205.74,106.59411999999999,None,Russia,1999,1,24,7,0.4,1.1,0.1,-39.3,0.065,0.162,0.092,0.222,0.038,2014-15 8406,Andrea Bargnani,NYK,29.0,213.36,111.13004,None,Italy,2006,1,1,29,14.8,4.4,1.6,-17.5,0.043,0.14800000000000002,0.262,0.527,0.11900000000000001,2014-15 8407,Andre Roberson,OKC,23.0,200.66,95.25432,Colorado,USA,2013,1,26,67,3.4,3.8,1.0,5.1,0.052000000000000005,0.159,0.08900000000000001,0.513,0.075,2014-15 8408,Andre Miller,SAC,39.0,187.96,90.7184,Utah,USA,1999,1,8,81,4.4,1.9,3.5,-4.4,0.036000000000000004,0.105,0.155,0.5479999999999999,0.35200000000000004,2014-15 8409,Andre Iguodala,GSW,31.0,198.12,97.52228000000001,Arizona,USA,2004,1,9,77,7.8,3.3,3.0,12.2,0.024,0.109,0.135,0.5529999999999999,0.151,2014-15 8410,Andre Drummond,DET,21.0,210.82,126.552168,Connecticut,USA,2012,1,9,82,13.8,13.5,0.7,-2.1,0.183,0.302,0.21899999999999997,0.504,0.037000000000000005,2014-15 8411,Wayne Ellington,LAL,27.0,193.04,90.7184,North Carolina,USA,2009,1,28,65,10.0,3.2,1.6,-3.4,0.02,0.11699999999999999,0.18600000000000003,0.504,0.10099999999999999,2014-15 8412,Vince Carter,MEM,38.0,198.12,99.79024,North Carolina,USA,1998,1,5,66,5.8,2.0,1.2,-0.3,0.027000000000000003,0.109,0.19699999999999998,0.445,0.11,2014-15 8413,Victor Oladipo,ORL,23.0,193.04,95.25432,Indiana,USA,2013,1,2,72,17.9,4.2,4.1,-5.7,0.022000000000000002,0.114,0.251,0.527,0.188,2014-15 8414,Victor Claver,POR,26.0,205.74,101.604608,None,Spain,2009,1,22,10,2.4,2.0,0.1,15.3,0.043,0.25,0.15,0.6,0.019,2014-15 8415,Terrence Ross,TOR,24.0,200.66,88.45044,Washington,USA,2012,1,8,82,9.8,2.8,1.0,1.1,0.018000000000000002,0.106,0.184,0.519,0.063,2014-15 8416,Terrence Jones,HOU,23.0,205.74,115.66596000000001,Kentucky,USA,2012,1,18,33,11.7,6.7,1.1,5.3,0.098,0.163,0.187,0.5670000000000001,0.067,2014-15 8417,Tayshaun Prince,DET,35.0,205.74,97.52228000000001,Kentucky,USA,2002,1,23,58,7.5,3.6,1.6,-4.8,0.040999999999999995,0.127,0.153,0.504,0.109,2014-15 8418,Tarik Black,LAL,23.0,210.82,116.573144,Kansas,USA,Undrafted,Undrafted,Undrafted,63,6.0,5.8,0.7,-2.8,0.131,0.22899999999999998,0.141,0.583,0.059000000000000004,2014-15 8419,Taj Gibson,CHI,30.0,205.74,102.0582,Southern California,USA,2009,1,26,62,10.3,6.4,1.1,1.8,0.107,0.149,0.177,0.545,0.071,2014-15 8420,TJ Warren,PHX,21.0,203.2,97.52228000000001,North Carolina State,USA,2014,1,14,40,6.1,2.1,0.6,-7.4,0.068,0.08199999999999999,0.177,0.551,0.069,2014-15 8421,Steven Adams,OKC,21.0,213.36,115.66596000000001,Pittsburgh,New Zealand,2013,1,12,70,7.7,7.5,0.9,0.2,0.124,0.198,0.14400000000000002,0.5489999999999999,0.055999999999999994,2014-15 8422,Steve Novak,OKC,32.0,208.28,102.0582,Marquette,USA,2006,2,32,35,1.8,0.6,0.3,-19.6,0.01,0.11,0.133,0.5539999999999999,0.08800000000000001,2014-15 8423,Steve Blake,POR,35.0,190.5,78.017824,Maryland,USA,2003,2,38,81,4.3,1.7,3.6,3.6,0.012,0.083,0.132,0.507,0.264,2014-15 8424,Stephen Curry,GSW,27.0,190.5,86.18248,Davidson,USA,2009,1,7,80,23.8,4.3,7.7,17.0,0.024,0.113,0.28300000000000003,0.638,0.358,2014-15 8425,Spencer Hawes,LAC,27.0,215.9,111.13004,Washington,USA,2007,1,10,73,5.8,3.5,1.2,-2.8,0.027000000000000003,0.195,0.185,0.478,0.11,2014-15 8426,Spencer Dinwiddie,DET,22.0,198.12,90.7184,Colorado,USA,2014,2,38,34,4.3,1.4,3.1,-8.7,0.009000000000000001,0.11199999999999999,0.215,0.39399999999999996,0.39399999999999996,2014-15 8427,Solomon Hill,IND,24.0,200.66,102.0582,Arizona,USA,2013,1,23,82,8.9,3.8,2.2,-3.6,0.033,0.115,0.161,0.507,0.121,2014-15 8428,Sim Bhullar,SAC,22.0,226.06,163.29312,New Mexico State,Canada,Undrafted,Undrafted,Undrafted,3,0.7,0.3,0.3,34.7,0.0,0.33299999999999996,0.45,0.5,0.5,2014-15 8429,Shelvin Mack,ATL,25.0,190.5,93.89354399999999,Butler,USA,2011,2,34,55,5.4,1.4,2.8,0.7,0.011000000000000001,0.098,0.19699999999999998,0.489,0.298,2014-15 8430,Shayne Whittington,IND,24.0,210.82,113.398,Western Michigan,USA,Undrafted,Undrafted,Undrafted,20,2.9,1.5,0.3,2.9,0.10300000000000001,0.198,0.247,0.547,0.094,2014-15 8431,Shawne Williams,DET,29.0,208.28,104.32616,Memphis,USA,2006,1,17,63,5.4,2.6,0.7,-4.8,0.04,0.14800000000000002,0.152,0.537,0.068,2014-15 8432,Shawn Marion,CLE,37.0,200.66,103.418976,Nevada-Las Vegas,USA,1999,1,9,57,4.8,3.5,0.9,2.2,0.068,0.14300000000000002,0.128,0.489,0.069,2014-15 8433,Shavlik Randolph,PHX,31.0,208.28,107.047712,Duke,USA,Undrafted,Undrafted,Undrafted,21,1.1,1.8,0.2,-10.9,0.11699999999999999,0.21,0.14400000000000002,0.298,0.051,2014-15 8434,Shaun Livingston,GSW,29.0,200.66,87.089664,None,USA,2004,1,4,78,5.9,2.3,3.3,4.0,0.034,0.10099999999999999,0.16399999999999998,0.529,0.267,2014-15 8435,Shannon Brown,MIA,29.0,190.5,97.52228000000001,Michigan State,USA,2006,1,25,5,4.0,0.2,0.6,-5.4,0.0,0.013999999999999999,0.145,0.48200000000000004,0.049,2014-15 8436,Shane Larkin,NYK,22.0,180.34,79.3786,Miami (FL),USA,2013,1,18,76,6.2,2.3,3.0,-11.1,0.018000000000000002,0.096,0.13699999999999998,0.504,0.201,2014-15 8437,Shabazz Napier,MIA,23.0,185.42,79.3786,Connecticut,USA,2014,1,24,51,5.1,2.2,2.5,-1.4,0.021,0.11599999999999999,0.157,0.517,0.21600000000000003,2014-15 8438,Shabazz Muhammad,MIN,22.0,198.12,102.965384,UCLA,USA,2013,1,14,38,13.5,4.1,1.2,-9.7,0.079,0.125,0.245,0.556,0.091,2014-15 8439,Seth Curry,PHX,24.0,187.96,83.91452,Duke,USA,Undrafted,Undrafted,Undrafted,2,0.0,1.0,0.5,-22.5,0.0,0.4,0.17800000000000002,0.0,0.2,2014-15 8440,Sergey Karasev,BKN,21.0,200.66,94.34713599999999,None,Russia,2013,1,19,33,4.6,2.0,1.4,0.7,0.046,0.08800000000000001,0.141,0.508,0.12300000000000001,2014-15 8441,Serge Ibaka,OKC,25.0,208.28,111.13004,None,Democratic Republic of the Congo,2008,1,24,64,14.3,7.8,0.9,3.6,0.07200000000000001,0.17600000000000002,0.192,0.5489999999999999,0.040999999999999995,2014-15 8442,Thabo Sefolosha,ATL,31.0,200.66,100.697424,None,Switzerland,2006,1,13,52,5.3,4.3,1.4,10.3,0.063,0.193,0.147,0.506,0.11599999999999999,2014-15 8443,Boris Diaw,SAS,33.0,203.2,113.398,None,France,2003,1,21,81,8.7,4.3,2.9,6.7,0.046,0.153,0.183,0.526,0.18100000000000002,2014-15 8444,Thaddeus Young,BKN,27.0,203.2,100.243832,Georgia Tech,USA,2007,1,12,76,14.1,5.4,2.3,-4.4,0.057999999999999996,0.136,0.214,0.507,0.11800000000000001,2014-15 8445,Tiago Splitter,SAS,30.0,210.82,111.13004,None,Brazil,2007,1,28,52,8.2,4.8,1.5,12.4,0.10099999999999999,0.172,0.183,0.601,0.11,2014-15 8446,Vander Blue,LAL,22.0,193.04,90.7184,Marquette,USA,Undrafted,Undrafted,Undrafted,2,11.0,4.5,4.0,-23.0,0.024,0.12300000000000001,0.205,0.342,0.17800000000000002,2014-15 8447,Udonis Haslem,MIA,35.0,203.2,106.59411999999999,Florida,USA,Undrafted,Undrafted,Undrafted,62,4.2,4.2,0.7,-7.1,0.083,0.221,0.14400000000000002,0.488,0.078,2014-15 8448,Tyson Chandler,DAL,32.0,215.9,108.86208,None,USA,2001,1,2,75,10.3,11.5,1.1,5.5,0.141,0.271,0.128,0.6970000000000001,0.053,2014-15 8449,Tyrus Thomas,MEM,28.0,208.28,102.0582,Louisiana State,USA,2006,1,4,2,2.0,0.0,0.5,3.7,0.0,0.0,0.13699999999999998,1.064,0.2,2014-15 8450,Tyreke Evans,NOP,25.0,198.12,99.79024,Memphis,USA,2009,1,4,79,16.6,5.3,6.6,2.2,0.034,0.142,0.257,0.508,0.316,2014-15 8451,Tyler Zeller,BOS,25.0,213.36,114.758776,North Carolina,USA,2012,1,17,82,10.2,5.7,1.4,-3.0,0.09300000000000001,0.19899999999999998,0.198,0.594,0.106,2014-15 8452,Tyler Johnson,MIA,23.0,190.5,86.18248,Fresno State,USA,Undrafted,Undrafted,Undrafted,32,5.9,2.5,1.3,-5.0,0.027000000000000003,0.121,0.165,0.506,0.115,2014-15 8453,Tyler Hansbrough,TOR,29.0,205.74,113.398,North Carolina,USA,2009,1,13,74,3.6,3.6,0.3,10.5,0.12,0.188,0.107,0.597,0.028999999999999998,2014-15 8454,Tyler Ennis,MIL,20.0,190.5,79.3786,Syracuse,Canada,2014,1,18,33,3.7,1.1,2.2,-7.8,0.018000000000000002,0.081,0.203,0.41100000000000003,0.278,2014-15 8455,Ty Lawson,DEN,27.0,180.34,88.45044,North Carolina,USA,2009,1,18,75,15.2,3.1,9.6,-1.7,0.017,0.081,0.203,0.526,0.408,2014-15 8456,Troy Daniels,CHA,23.0,193.04,92.98635999999999,Virginia Commonwealth,USA,Undrafted,Undrafted,Undrafted,47,3.7,0.7,0.5,-12.4,0.02,0.07400000000000001,0.209,0.515,0.111,2014-15 8457,Tristan Thompson,CLE,24.0,205.74,107.95489599999999,Texas,Canada,2011,1,4,82,8.5,8.0,0.5,4.5,0.14400000000000002,0.201,0.14,0.58,0.027999999999999997,2014-15 8458,Trey Burke,UTA,22.0,185.42,83.91452,Michigan,USA,2013,1,9,76,12.8,2.7,4.3,-1.6,0.015,0.087,0.237,0.455,0.245,2014-15 8459,Trevor Booker,UTA,27.0,203.2,104.32616,Clemson,USA,2010,1,23,79,7.2,5.0,1.1,0.9,0.105,0.192,0.18100000000000002,0.536,0.09300000000000001,2014-15 8460,Trevor Ariza,HOU,29.0,203.2,97.52228000000001,UCLA,USA,2004,2,43,82,12.8,5.6,2.5,4.3,0.028999999999999998,0.145,0.166,0.539,0.11199999999999999,2014-15 8461,Travis Wear,NYK,24.0,208.28,102.0582,UCLA,USA,Undrafted,Undrafted,Undrafted,51,3.9,2.1,0.8,-5.5,0.054000000000000006,0.133,0.179,0.451,0.10400000000000001,2014-15 8462,Toure' Murry,UTA,25.0,195.58,88.45044,Wichita State,USA,Undrafted,Undrafted,Undrafted,5,1.2,0.2,0.2,4.5,0.067,0.0,0.267,0.51,0.111,2014-15 8463,Tony Wroten,PHI,22.0,198.12,92.98635999999999,Washington,USA,2012,1,25,30,16.9,2.9,5.2,-12.7,0.027000000000000003,0.085,0.303,0.494,0.33799999999999997,2014-15 8464,Tony Snell,CHI,23.0,200.66,90.7184,New Mexico,USA,2013,1,20,72,6.0,2.4,0.9,2.8,0.024,0.109,0.142,0.55,0.068,2014-15 8465,Tony Parker,SAS,33.0,187.96,83.91452,None,France,2001,1,28,68,14.4,1.9,4.9,5.4,0.009000000000000001,0.066,0.247,0.539,0.278,2014-15 8466,Tony Allen,MEM,33.0,193.04,96.615096,Oklahoma State,USA,2004,1,25,63,8.6,4.4,1.4,10.2,0.073,0.11900000000000001,0.166,0.528,0.081,2014-15 8467,Toney Douglas,NOP,29.0,187.96,88.45044,Florida State,USA,2009,1,29,12,4.3,1.8,2.0,5.0,0.015,0.13,0.187,0.45,0.214,2014-15 8468,Tobias Harris,ORL,22.0,205.74,106.59411999999999,Tennessee,USA,2011,1,19,68,17.1,6.3,1.8,-6.6,0.035,0.17300000000000001,0.225,0.551,0.08800000000000001,2014-15 8469,Timofey Mozgov,CLE,28.0,215.9,113.398,None,Russia,Undrafted,Undrafted,Undrafted,81,9.7,7.3,0.7,4.8,0.11199999999999999,0.207,0.16699999999999998,0.594,0.04,2014-15 8470,Tim Hardaway Jr.,NYK,23.0,198.12,95.25432,Michigan,USA,2013,1,24,70,11.5,2.2,1.8,-10.8,0.008,0.10099999999999999,0.235,0.512,0.134,2014-15 8471,Tim Frazier,POR,24.0,185.42,77.11064,None,USA,Undrafted,Undrafted,Undrafted,11,5.2,2.5,5.5,-3.4,0.026000000000000002,0.10099999999999999,0.17300000000000001,0.406,0.361,2014-15 8472,Tim Duncan,SAS,39.0,210.82,113.398,Wake Forest,US Virgin Islands,1997,1,1,77,13.9,9.1,3.0,7.0,0.08900000000000001,0.266,0.223,0.56,0.166,2014-15 8473,Thomas Robinson,PHI,24.0,208.28,107.501304,Kansas,USA,2012,1,5,54,5.7,5.6,0.6,-0.6,0.122,0.284,0.195,0.502,0.07,2014-15 8474,Bradley Beal,WAS,22.0,195.58,93.89354399999999,Florida,USA,2012,1,3,63,15.3,3.8,3.1,5.8,0.032,0.098,0.226,0.521,0.14400000000000002,2014-15 8475,Brandan Wright,PHX,27.0,208.28,95.25432,North Carolina,USA,2007,1,8,75,7.3,4.3,0.5,0.1,0.099,0.14800000000000002,0.138,0.66,0.044000000000000004,2014-15 8476,Brandon Bass,BOS,30.0,203.2,113.398,Louisiana State,USA,2005,2,33,82,10.6,4.9,1.3,-2.1,0.079,0.149,0.2,0.557,0.091,2014-15 8477,Elliot Williams,PHI,26.0,196.0,86.0,Memphis,USA,2010,1,22,13,2.8,0.6,0.9,1.6,0.0,0.075,0.16399999999999998,0.47700000000000004,0.15,2014-15 8478,Elijah Millsap,UTA,27.0,198.12,97.52228000000001,Alabama-Birmingham,USA,Undrafted,Undrafted,Undrafted,47,5.3,3.2,1.2,5.6,0.035,0.145,0.17,0.45,0.10099999999999999,2014-15 8479,Elfrid Payton,ORL,21.0,193.04,83.91452,Louisiana-Lafayette,USA,2014,1,10,82,8.9,4.3,6.5,-3.4,0.047,0.111,0.182,0.456,0.314,2014-15 8480,Ekpe Udoh,LAC,28.0,208.28,111.13004,Baylor,USA,2010,1,6,33,0.9,0.8,0.2,-2.8,0.062,0.16,0.129,0.519,0.107,2014-15 8481,Ed Davis,LAL,26.0,208.28,108.86208,North Carolina,USA,2010,1,13,79,8.3,7.6,1.2,-7.4,0.134,0.23399999999999999,0.147,0.594,0.08199999999999999,2014-15 8482,Earl Clark,BKN,27.0,208.28,106.140528,Louisville,USA,2009,1,14,10,2.7,2.3,0.3,-14.1,0.011000000000000001,0.23399999999999999,0.17600000000000002,0.425,0.057999999999999996,2014-15 8483,Earl Barron,PHX,33.0,213.36,113.398,Memphis,USA,Undrafted,Undrafted,Undrafted,16,2.0,1.8,0.3,-19.7,0.092,0.136,0.153,0.361,0.06,2014-15 8484,E'Twaun Moore,CHI,26.0,193.04,86.636072,Purdue,USA,2011,2,55,56,2.7,0.8,0.6,0.6,0.027000000000000003,0.077,0.146,0.504,0.106,2014-15 8485,Dwyane Wade,MIA,33.0,193.04,99.79024,Marquette,USA,2003,1,5,62,21.5,3.5,4.8,-1.2,0.036000000000000004,0.09699999999999999,0.345,0.534,0.3,2014-15 8486,Dwight Powell,DAL,23.0,210.82,108.86208,Stanford,Canada,2014,2,45,29,3.1,1.7,0.3,-4.4,0.08,0.161,0.16699999999999998,0.552,0.057999999999999996,2014-15 8487,Dwight Howard,HOU,29.0,210.82,124.7378,None,USA,2004,1,1,41,15.8,10.5,1.2,8.1,0.106,0.29600000000000004,0.23399999999999999,0.596,0.07200000000000001,2014-15 8488,Dwight Buycks,LAL,26.0,190.5,86.18248,Marquette,USA,Undrafted,Undrafted,Undrafted,6,8.7,2.0,2.3,-13.6,0.018000000000000002,0.092,0.21,0.586,0.20600000000000002,2014-15 8489,Drew Gordon,PHI,24.0,205.74,111.13004,New Mexico,USA,Undrafted,Undrafted,Undrafted,9,1.9,2.0,0.2,-22.9,0.09699999999999999,0.2,0.159,0.428,0.044000000000000004,2014-15 8490,Drew Gooden,WAS,33.0,208.28,113.398,Kansas,USA,2002,1,4,51,5.4,4.4,1.0,0.4,0.099,0.18899999999999997,0.171,0.469,0.08900000000000001,2014-15 8491,Draymond Green,GSW,25.0,200.66,104.32616,Michigan State,USA,2012,2,35,79,11.7,8.2,3.7,16.5,0.051,0.218,0.171,0.54,0.155,2014-15 8492,Doug McDermott,CHI,23.0,203.2,102.0582,Creighton,USA,2014,1,11,36,3.0,1.2,0.2,-12.2,0.021,0.13,0.188,0.48,0.033,2014-15 8493,Dorell Wright,POR,29.0,205.74,92.98635999999999,None,USA,2004,1,19,48,4.6,2.3,0.9,6.1,0.025,0.17800000000000002,0.171,0.525,0.102,2014-15 8494,Donatas Motiejunas,HOU,24.0,213.36,115.66596000000001,None,Lithuania,2011,1,20,71,12.0,5.9,1.8,2.6,0.075,0.161,0.193,0.5529999999999999,0.109,2014-15 8495,Donald Sloan,IND,27.0,190.5,92.98635999999999,Texas A&M,USA,Undrafted,Undrafted,Undrafted,53,7.4,2.7,3.6,-4.8,0.012,0.128,0.185,0.503,0.29100000000000004,2014-15 8496,Dirk Nowitzki,DAL,37.0,213.36,111.13004,None,Germany,1998,1,9,77,17.3,5.9,1.9,4.3,0.021,0.20600000000000002,0.251,0.56,0.10099999999999999,2014-15 8497,Dion Waiters,OKC,23.0,193.04,102.0582,Syracuse,USA,2012,1,4,80,11.8,2.4,2.0,0.3,0.02,0.07400000000000001,0.221,0.46,0.11599999999999999,2014-15 8498,Dewayne Dedmon,ORL,25.0,213.36,111.13004,Southern California,USA,Undrafted,Undrafted,Undrafted,59,3.7,5.0,0.2,-0.5,0.153,0.235,0.128,0.568,0.016,2014-15 8499,Devyn Marble,ORL,22.0,198.12,90.7184,Iowa,USA,2014,2,56,16,2.3,1.9,1.1,-1.8,0.024,0.142,0.124,0.36200000000000004,0.102,2014-15 8500,Devin Harris,DAL,32.0,190.5,87.089664,Wisconsin,USA,2004,1,5,76,8.8,1.8,3.1,3.3,0.008,0.081,0.179,0.5589999999999999,0.207,2014-15 8501,Derrick Williams,SAC,24.0,203.2,108.86208,Arizona,USA,2011,1,2,74,8.3,2.7,0.7,-7.2,0.033,0.11800000000000001,0.18899999999999997,0.54,0.057,2014-15 8502,Derrick Rose,CHI,26.0,190.5,86.18248,Memphis,USA,2008,1,1,51,17.7,3.2,4.9,4.1,0.025,0.083,0.31,0.493,0.289,2014-15 8503,Derrick Favors,UTA,23.0,208.28,118.841104,Georgia Tech,USA,2010,1,3,74,16.0,8.2,1.5,2.2,0.10099999999999999,0.209,0.24100000000000002,0.5579999999999999,0.09,2014-15 8504,Elton Brand,ATL,36.0,205.74,115.212368,Duke,USA,1999,1,1,36,2.7,2.8,0.6,1.3,0.065,0.161,0.11699999999999999,0.457,0.07,2014-15 8505,Deron Williams,BKN,31.0,190.5,90.7184,Illinois,USA,2005,1,3,68,13.0,3.5,6.6,0.1,0.015,0.11199999999999999,0.223,0.504,0.326,2014-15 8506,Enes Kanter,OKC,23.0,210.82,111.13004,Kentucky,Turkey,2011,1,3,75,15.5,8.9,0.7,-2.6,0.147,0.21,0.24100000000000002,0.564,0.044000000000000004,2014-15 8507,Eric Gordon,NOP,26.0,193.04,97.52228000000001,Indiana,USA,2008,1,7,61,13.4,2.6,3.8,1.2,0.016,0.07400000000000001,0.198,0.544,0.177,2014-15 8508,Greg Smith,DAL,24.0,208.28,113.398,Fresno State,USA,Undrafted,Undrafted,Undrafted,42,1.9,1.9,0.2,-1.3,0.07200000000000001,0.147,0.099,0.605,0.039,2014-15 8509,Greg Monroe,DET,25.0,210.82,113.398,Georgetown,USA,2010,1,7,69,15.9,10.2,2.1,-1.7,0.111,0.254,0.23800000000000002,0.5489999999999999,0.11900000000000001,2014-15 8510,Grant Jerrett,UTA,21.0,208.28,105.23334399999999,Arizona,USA,2013,2,40,8,2.0,1.1,0.4,-22.3,0.034,0.163,0.249,0.303,0.091,2014-15 8511,Gorgui Dieng,MIN,25.0,210.82,105.68693600000002,Louisville,Senegal,2013,1,21,73,9.7,8.3,2.0,-9.1,0.115,0.21100000000000002,0.151,0.573,0.105,2014-15 8512,Gordon Hayward,UTA,25.0,203.2,102.0582,Butler,USA,2010,1,9,76,19.3,4.9,4.1,2.1,0.024,0.141,0.261,0.5670000000000001,0.21100000000000002,2014-15 8513,Goran Dragic,MIA,29.0,190.5,86.18248,None,Slovenia,2008,2,45,78,16.3,3.5,4.5,0.6,0.035,0.081,0.214,0.5770000000000001,0.212,2014-15 8514,Glenn Robinson III,PHI,21.0,200.66,100.697424,Michigan,USA,2014,2,40,35,2.1,1.1,0.3,3.1,0.063,0.106,0.146,0.47100000000000003,0.064,2014-15 8515,Glen Rice,WAS,24.0,198.12,93.439952,Georgia Tech,USA,2013,2,35,5,2.2,0.8,0.4,-26.0,0.059000000000000004,0.069,0.21100000000000002,0.312,0.083,2014-15 8516,Glen Davis,LAC,29.0,205.74,131.088088,Louisiana State,USA,2007,2,35,74,4.0,2.3,0.5,-3.6,0.052000000000000005,0.153,0.17300000000000001,0.495,0.073,2014-15 8517,Gigi Datome,BOS,27.0,203.2,97.52228000000001,None,Italy,Undrafted,Undrafted,Undrafted,21,5.0,1.4,0.4,13.0,0.016,0.138,0.207,0.5870000000000001,0.073,2014-15 8518,Giannis Antetokounmpo,MIL,20.0,210.82,98.429464,None,Greece,2013,1,15,81,12.7,6.7,2.6,1.1,0.046,0.201,0.196,0.552,0.133,2014-15 8519,Gerald Wallace,BOS,32.0,200.66,99.79024,Alabama,USA,2001,1,25,32,1.1,1.8,0.3,4.8,0.069,0.161,0.091,0.431,0.05,2014-15 8520,Gerald Henderson,CHA,27.0,195.58,97.52228000000001,Duke,USA,2009,1,12,80,12.1,3.4,2.6,-0.2,0.017,0.115,0.209,0.514,0.152,2014-15 8521,Gerald Green,PHX,29.0,203.2,95.25432,None,USA,2005,1,18,74,11.9,2.5,1.2,0.1,0.025,0.11900000000000001,0.284,0.532,0.11,2014-15 8522,George Hill,IND,29.0,190.5,85.275296,Indiana Purdue-Indianapolis,USA,2008,1,26,43,16.1,4.2,5.1,7.1,0.022000000000000002,0.134,0.243,0.579,0.304,2014-15 8523,Gary Neal,MIN,30.0,193.04,95.25432,Towson,USA,Undrafted,Undrafted,Undrafted,54,10.1,2.4,1.9,-4.2,0.013000000000000001,0.111,0.24,0.483,0.152,2014-15 8524,Gary Harris,DEN,20.0,193.04,95.25432,Michigan State,USA,2014,1,19,55,3.4,1.2,0.5,-12.8,0.028999999999999998,0.068,0.162,0.395,0.061,2014-15 8525,Garrett Temple,WAS,29.0,198.12,88.45044,Louisiana State,USA,Undrafted,Undrafted,Undrafted,52,3.9,1.7,1.1,-0.4,0.036000000000000004,0.096,0.139,0.534,0.11900000000000001,2014-15 8526,Gal Mekel,DAL,27.0,190.5,86.636072,Wichita State,Israel,Undrafted,Undrafted,Undrafted,4,1.5,0.3,3.3,-1.9,0.0,0.026000000000000002,0.24,0.15,0.44799999999999995,2014-15 8527,Furkan Aldemir,PHI,23.0,208.28,108.86208,None,Turkey,2012,2,53,41,2.3,4.3,0.7,-10.4,0.14300000000000002,0.21,0.084,0.517,0.079,2014-15 8528,Francisco Garcia,HOU,33.0,200.66,97.52228000000001,Louisville,Dominican Republic,2005,1,23,14,3.2,1.2,1.1,-1.3,0.018000000000000002,0.078,0.17,0.34700000000000003,0.128,2014-15 8529,Festus Ezeli,GSW,25.0,210.82,120.20188,Vanderbilt,Nigeria,2012,1,30,46,4.4,3.4,0.2,5.4,0.131,0.18899999999999997,0.177,0.58,0.027999999999999997,2014-15 8530,Evan Turner,BOS,26.0,200.66,99.79024,Ohio State,USA,2010,1,2,82,9.5,5.1,5.5,-2.4,0.019,0.184,0.195,0.48200000000000004,0.302,2014-15 8531,Evan Fournier,ORL,22.0,200.66,92.98635999999999,None,France,2012,1,20,58,12.0,2.6,2.1,-4.1,0.019,0.08900000000000001,0.2,0.546,0.115,2014-15 8532,Ersan Ilyasova,MIL,28.0,208.28,106.59411999999999,None,Turkey,2005,2,36,58,11.5,4.8,1.0,1.8,0.07,0.177,0.218,0.5539999999999999,0.07,2014-15 8533,Erick Green,DEN,24.0,193.04,83.91452,Virginia Tech,USA,2013,2,46,43,3.4,0.7,0.9,-11.0,0.017,0.068,0.18600000000000003,0.436,0.165,2014-15 8534,Eric Moreland,SAC,23.0,208.28,98.88305600000001,Oregon State,USA,Undrafted,Undrafted,Undrafted,3,0.7,0.3,0.0,36.1,0.0,0.5,0.25,1.0,0.0,2014-15 8535,Eric Bledsoe,PHX,25.0,185.42,88.45044,Kentucky,USA,2010,1,18,81,17.0,5.2,6.1,1.5,0.028999999999999998,0.136,0.23800000000000002,0.555,0.273,2014-15 8536,Greivis Vasquez,TOR,28.0,198.12,90.7184,Maryland,Venezuela,2010,1,28,82,9.5,2.6,3.7,2.5,0.013000000000000001,0.11599999999999999,0.201,0.514,0.247,2014-15 8537,Dennis Schroder,ATL,21.0,185.42,76.203456,None,Germany,2013,1,17,77,10.0,2.1,4.1,-0.3,0.023,0.099,0.27399999999999997,0.516,0.373,2014-15 8538,DeMarcus Cousins,SAC,24.0,210.82,122.46983999999999,Kentucky,USA,2010,1,5,59,24.1,12.7,3.6,0.1,0.11,0.297,0.33899999999999997,0.545,0.20199999999999999,2014-15 8539,Chris Douglas-Roberts,LAC,28.0,200.66,95.25432,Memphis,USA,2008,2,40,12,1.6,1.0,0.3,-7.8,0.011000000000000001,0.159,0.11,0.387,0.057999999999999996,2014-15 8540,Chris Copeland,IND,31.0,203.2,106.59411999999999,Colorado,USA,Undrafted,Undrafted,Undrafted,50,6.2,2.2,1.0,-3.9,0.031,0.11800000000000001,0.212,0.46799999999999997,0.102,2014-15 8541,Chris Bosh,MIA,31.0,210.82,106.59411999999999,Georgia Tech,USA,2003,1,4,44,21.1,7.0,2.2,-2.2,0.036000000000000004,0.201,0.29,0.5479999999999999,0.121,2014-15 8542,Chris Andersen,MIA,36.0,208.28,111.13004,Blinn,USA,Undrafted,Undrafted,Undrafted,60,5.3,5.0,0.7,0.5,0.086,0.23399999999999999,0.125,0.622,0.063,2014-15 8543,Chase Budinger,MIN,27.0,200.66,94.800728,Arizona,USA,2009,2,44,67,6.8,3.0,1.0,-10.5,0.028999999999999998,0.149,0.165,0.537,0.08199999999999999,2014-15 8544,Charlie Villanueva,DAL,30.0,210.82,105.23334399999999,Connecticut,USA,2005,1,7,64,6.3,2.3,0.3,-3.3,0.046,0.185,0.261,0.534,0.047,2014-15 8545,Channing Frye,ORL,32.0,210.82,115.66596000000001,Arizona,USA,2005,1,8,75,7.3,3.9,1.3,-7.6,0.016,0.16899999999999998,0.141,0.546,0.07400000000000001,2014-15 8546,Chandler Parsons,DAL,26.0,205.74,102.965384,Florida,USA,2011,2,38,66,15.7,4.9,2.4,4.6,0.032,0.132,0.205,0.5670000000000001,0.111,2014-15 8547,Cartier Martin,DET,30.0,200.66,99.79024,Kansas State,USA,Undrafted,Undrafted,Undrafted,23,1.6,0.9,0.5,2.3,0.0,0.114,0.128,0.34,0.085,2014-15 8548,Caron Butler,DET,35.0,200.66,103.418976,Connecticut,USA,2002,1,10,78,5.9,2.5,1.0,-1.8,0.013999999999999999,0.12300000000000001,0.132,0.544,0.07400000000000001,2014-15 8549,Carmelo Anthony,NYK,31.0,203.2,108.86208,Syracuse,USA,2003,1,3,40,24.2,6.6,3.1,-4.2,0.059000000000000004,0.158,0.324,0.531,0.161,2014-15 8550,Carlos Boozer,LAL,33.0,205.74,117.02673600000001,Duke,USA,2002,2,34,71,11.8,6.8,1.3,-9.2,0.07,0.248,0.235,0.517,0.10099999999999999,2014-15 8551,Carl Landry,SAC,31.0,205.74,112.490816,Purdue,USA,2007,2,31,70,7.2,3.8,0.4,-9.2,0.095,0.152,0.182,0.578,0.04,2014-15 8552,Cameron Bairstow,CHI,24.0,205.74,113.398,New Mexico,Australia,2014,2,49,18,0.6,0.4,0.1,-16.5,0.111,0.040999999999999995,0.14,0.309,0.021,2014-15 8553,CJ Wilcox,LAC,24.0,195.58,88.45044,Washington,USA,2014,1,28,21,2.0,0.3,0.4,-10.9,0.011000000000000001,0.062,0.223,0.527,0.151,2014-15 8554,CJ Miles,IND,28.0,198.12,104.779752,None,USA,2005,2,34,70,13.5,3.1,1.1,4.0,0.011000000000000001,0.114,0.235,0.525,0.069,2014-15 8555,CJ McCollum,POR,23.0,193.04,90.7184,Lehigh,USA,2013,1,10,62,6.8,1.5,1.0,5.3,0.016,0.083,0.205,0.534,0.10400000000000001,2014-15 8556,C.J. Watson,IND,31.0,187.96,79.3786,Tennessee,USA,Undrafted,Undrafted,Undrafted,57,10.0,2.9,3.6,-0.6,0.013999999999999999,0.113,0.185,0.581,0.22899999999999998,2014-15 8557,Bryce Cotton,UTA,22.0,185.42,74.84268,Providence,USA,Undrafted,Undrafted,Undrafted,15,5.3,1.2,1.0,-0.4,0.021,0.106,0.237,0.52,0.16899999999999998,2014-15 8558,Bruno Caboclo,TOR,19.0,205.74,92.98635999999999,None,Brazil,2014,1,20,8,1.3,0.3,0.0,-60.3,0.048,0.05,0.315,0.41700000000000004,0.0,2014-15 8559,Brook Lopez,BKN,27.0,213.36,124.7378,Stanford,USA,2008,1,10,72,17.2,7.4,0.7,-2.5,0.113,0.17,0.262,0.5579999999999999,0.044000000000000004,2014-15 8560,Brian Roberts,CHA,29.0,185.42,78.471416,Dayton,USA,Undrafted,Undrafted,Undrafted,72,6.7,1.5,2.3,-4.2,0.011000000000000001,0.079,0.187,0.495,0.209,2014-15 8561,Brendan Haywood,CLE,35.0,213.36,119.294696,North Carolina,USA,2001,1,20,22,1.6,1.3,0.1,-21.3,0.055999999999999994,0.192,0.18100000000000002,0.49,0.032,2014-15 8562,Brandon Rush,GSW,29.0,198.12,99.79024,Kansas,USA,2008,1,13,33,0.9,1.2,0.4,-18.9,0.015,0.154,0.111,0.255,0.063,2014-15 8563,Brandon Knight,PHX,23.0,190.5,85.728888,Kentucky,USA,2011,1,8,63,17.0,3.9,5.2,-1.1,0.015,0.11900000000000001,0.254,0.5429999999999999,0.272,2014-15 8564,Brandon Jennings,DET,25.0,185.42,76.657048,None,USA,2009,1,10,41,15.4,2.5,6.6,0.8,0.017,0.079,0.254,0.522,0.384,2014-15 8565,Brandon Davies,PHI,23.0,208.28,108.86208,Brigham Young,USA,Undrafted,Undrafted,Undrafted,27,5.3,3.1,1.1,-19.1,0.099,0.135,0.18600000000000003,0.46299999999999997,0.12300000000000001,2014-15 8566,Chris Johnson,UTA,25.0,198.12,91.171992,Dayton,USA,Undrafted,Undrafted,Undrafted,29,5.7,1.9,0.5,-2.7,0.016,0.099,0.145,0.515,0.046,2014-15 8567,DeMarre Carroll,ATL,28.0,203.2,96.16150400000001,Missouri,USA,2009,1,27,70,12.6,5.3,1.7,5.7,0.054000000000000006,0.14,0.168,0.603,0.083,2014-15 8568,Chris Kaman,POR,33.0,213.36,120.20188,Central Michigan,USA,2003,1,6,74,8.6,6.5,0.9,0.6,0.11699999999999999,0.265,0.228,0.537,0.079,2014-15 8569,Chuck Hayes,TOR,32.0,198.12,108.86208,Kentucky,USA,Undrafted,Undrafted,Undrafted,29,1.7,1.8,0.7,7.6,0.08199999999999999,0.163,0.106,0.49200000000000005,0.105,2014-15 8570,DeMar DeRozan,TOR,25.0,200.66,99.79024,Southern California,USA,2009,1,9,60,20.1,4.6,3.5,2.6,0.023,0.128,0.28600000000000003,0.51,0.174,2014-15 8571,DeJuan Blair,WAS,26.0,200.66,122.46983999999999,Pittsburgh,USA,2009,2,37,29,1.9,1.9,0.1,-12.4,0.11,0.24100000000000002,0.182,0.469,0.028999999999999998,2014-15 8572,DeAndre Jordan,LAC,26.0,210.82,120.20188,Texas A&M,USA,2008,2,35,82,11.5,15.0,0.7,11.2,0.162,0.32299999999999995,0.135,0.638,0.03,2014-15 8573,David West,IND,34.0,205.74,113.398,Xavier,USA,2003,1,18,66,11.7,6.8,3.4,0.1,0.062,0.19399999999999998,0.21,0.508,0.19899999999999998,2014-15 8574,David Wear,SAC,24.0,208.28,104.32616,UCLA,USA,Undrafted,Undrafted,Undrafted,2,0.0,1.0,0.5,-67.3,0.2,0.0,0.091,0.0,0.14300000000000002,2014-15 8575,David Stockton,SAC,24.0,180.34,74.84268,Gonzaga,USA,Undrafted,Undrafted,Undrafted,3,2.7,0.7,3.0,32.7,0.0,0.053,0.161,0.46299999999999997,0.33299999999999996,2014-15 8576,David Lee,GSW,32.0,205.74,111.13004,Florida,USA,2005,1,30,49,7.9,5.2,1.7,3.2,0.09699999999999999,0.22,0.19699999999999998,0.541,0.142,2014-15 8577,Darren Collison,SAC,27.0,182.88,79.3786,UCLA,USA,2009,1,21,45,16.1,3.2,5.6,1.2,0.015,0.086,0.21,0.575,0.263,2014-15 8578,Darrell Arthur,DEN,27.0,205.74,106.59411999999999,Kansas,USA,2008,1,27,58,6.6,2.9,1.0,-0.2,0.055,0.129,0.20199999999999999,0.466,0.096,2014-15 8579,Darius Morris,BKN,24.0,193.04,88.45044,Michigan,USA,2011,2,41,38,2.2,0.7,1.3,-11.2,0.025,0.077,0.19899999999999998,0.377,0.281,2014-15 8580,Darius Miller,NOP,25.0,203.2,102.0582,Kentucky,USA,2012,2,46,5,0.4,0.2,0.4,-13.1,0.0,0.031,0.08900000000000001,0.14300000000000002,0.07400000000000001,2014-15 8581,Dante Exum,UTA,19.0,198.12,86.18248,None,Australia,2014,1,5,82,4.8,1.6,2.4,3.3,0.018000000000000002,0.065,0.141,0.457,0.16899999999999998,2014-15 8582,Dante Cunningham,NOP,28.0,203.2,104.32616,Villanova,USA,2009,2,33,66,5.2,3.9,0.8,0.8,0.051,0.127,0.11199999999999999,0.473,0.045,2014-15 8583,Danny Green,SAS,28.0,198.12,97.52228000000001,North Carolina,USA,2009,2,46,81,11.7,4.2,2.0,9.9,0.027000000000000003,0.138,0.175,0.596,0.10099999999999999,2014-15 8584,Danny Granger,PHX,32.0,205.74,100.697424,New Mexico,USA,2005,1,17,30,6.3,2.7,0.6,-8.0,0.040999999999999995,0.11699999999999999,0.161,0.527,0.049,2014-15 8585,Damjan Rudez,IND,29.0,208.28,90.7184,None,Croatia,Undrafted,Undrafted,Undrafted,68,4.8,0.7,0.8,-0.7,0.008,0.042,0.13699999999999998,0.591,0.079,2014-15 8586,Damian Lillard,POR,24.0,190.5,88.45044,Weber State,USA,2012,1,6,82,21.0,4.6,6.2,4.5,0.018000000000000002,0.11900000000000001,0.267,0.56,0.285,2014-15 8587,Dahntay Jones,LAC,34.0,198.12,102.0582,Duke,USA,2003,1,20,33,0.6,0.3,0.1,-23.0,0.008,0.09300000000000001,0.10300000000000001,0.406,0.027000000000000003,2014-15 8588,D.J. Augustin,OKC,27.0,182.88,83.007336,Texas,USA,2008,1,9,82,9.5,2.0,4.3,-2.9,0.011000000000000001,0.079,0.198,0.527,0.28600000000000003,2014-15 8589,Courtney Lee,MEM,29.0,195.58,90.7184,Western Kentucky,USA,2008,1,22,77,10.1,2.3,2.0,2.1,0.01,0.077,0.152,0.555,0.096,2014-15 8590,Cory Joseph,SAS,23.0,190.5,86.18248,Texas,Canada,2011,1,29,79,6.8,2.4,2.4,6.4,0.035,0.113,0.171,0.564,0.205,2014-15 8591,Cory Jefferson,BKN,24.0,205.74,98.88305600000001,Baylor,USA,2014,2,60,50,3.7,2.9,0.3,6.8,0.10099999999999999,0.2,0.174,0.48,0.047,2014-15 8592,Corey Brewer,HOU,29.0,205.74,84.368112,Florida,USA,2007,1,7,80,11.5,3.7,2.2,-0.6,0.040999999999999995,0.115,0.209,0.507,0.131,2014-15 8593,Cole Aldrich,NYK,26.0,210.82,113.398,Kansas,USA,2010,1,11,61,5.5,5.5,1.2,-16.0,0.11199999999999999,0.28,0.182,0.513,0.14300000000000002,2014-15 8594,Cody Zeller,CHA,22.0,213.36,108.86208,Indiana,USA,2013,1,4,62,7.6,5.8,1.6,1.4,0.073,0.20199999999999999,0.155,0.53,0.106,2014-15 8595,Clint Capela,HOU,21.0,208.28,108.86208,None,Switzerland,2014,1,25,12,2.7,3.0,0.2,5.6,0.115,0.24100000000000002,0.213,0.409,0.037000000000000005,2014-15 8596,Cleanthony Early,NYK,24.0,203.2,99.79024,Wichita State,USA,2014,2,34,39,5.4,2.5,0.9,-13.0,0.038,0.139,0.195,0.447,0.102,2014-15 8597,Chris Paul,LAC,30.0,182.88,79.3786,Wake Forest,USA,2005,1,4,82,19.1,4.6,10.2,12.2,0.021,0.124,0.23399999999999999,0.596,0.441,2014-15 8598,Allen Crabbe,POR,23.0,198.12,95.25432,California,USA,2013,2,31,51,3.3,1.4,0.8,-1.8,0.011000000000000001,0.10400000000000001,0.115,0.525,0.08199999999999999,2014-15 8599,Jarrett Jack,BKN,32.0,190.5,90.7184,Georgia Tech,USA,2005,1,22,32,12.8,4.3,7.4,-5.8,0.009000000000000001,0.138,0.213,0.505,0.34,2015-16 8600,Zach Randolph,MEM,34.0,205.74,117.93392,Michigan State,USA,2001,1,19,68,15.3,7.8,2.1,-2.0,0.1,0.21,0.247,0.519,0.125,2015-16 8601,Frank Kaminsky,CHA,23.0,213.36,108.86208,Wisconsin,USA,2015,1,9,81,7.5,4.1,1.2,-0.4,0.044000000000000004,0.171,0.17,0.513,0.095,2015-16 8602,Garrett Temple,WAS,30.0,198.12,88.45044,Louisiana State,USA,Undrafted,Undrafted,Undrafted,80,7.3,2.7,1.8,0.4,0.02,0.10300000000000001,0.142,0.52,0.102,2015-16 8603,Gary Harris,DEN,21.0,193.04,95.25432,Michigan State,USA,2014,1,19,76,12.3,2.9,1.9,-5.1,0.024,0.077,0.163,0.5660000000000001,0.09300000000000001,2015-16 8604,Gary Neal,WAS,31.0,193.04,95.25432,Towson,USA,Undrafted,Undrafted,Undrafted,40,9.8,2.1,1.2,-9.0,0.015,0.10800000000000001,0.21100000000000002,0.5579999999999999,0.099,2015-16 8605,George Hill,IND,30.0,190.5,85.275296,Indiana Purdue-Indianapolis,USA,2008,1,26,74,12.1,4.0,3.5,2.5,0.026000000000000002,0.105,0.16,0.555,0.157,2015-16 8606,Gerald Green,MIA,30.0,200.66,92.98635999999999,None,USA,2005,1,18,69,8.9,2.4,0.8,1.3,0.019,0.096,0.198,0.491,0.057,2015-16 8607,Gerald Henderson,POR,28.0,195.58,97.52228000000001,Duke,USA,2009,1,12,72,8.7,2.9,1.0,1.6,0.023,0.13699999999999998,0.203,0.526,0.084,2015-16 8608,Giannis Antetokounmpo,MIL,21.0,210.82,100.697424,None,Greece,2013,1,15,80,16.9,7.7,4.3,-2.6,0.047,0.20199999999999999,0.223,0.5660000000000001,0.195,2015-16 8609,Glenn Robinson III,IND,22.0,200.66,100.697424,Michigan,USA,2014,2,40,45,3.8,1.5,0.6,-4.4,0.025,0.11800000000000001,0.161,0.508,0.077,2015-16 8610,Goran Dragic,MIA,30.0,190.5,86.18248,None,Slovenia,2008,2,45,72,14.1,3.8,5.8,4.1,0.026000000000000002,0.10099999999999999,0.215,0.537,0.276,2015-16 8611,Gordon Hayward,UTA,26.0,203.2,102.511792,Butler,USA,2010,1,9,80,19.7,5.0,3.7,1.0,0.025,0.135,0.256,0.5589999999999999,0.18100000000000002,2015-16 8612,Gorgui Dieng,MIN,26.0,210.82,109.315672,Louisville,Senegal,2013,1,21,82,10.1,7.1,1.7,0.8,0.086,0.222,0.16899999999999998,0.601,0.099,2015-16 8613,Greg Monroe,MIL,26.0,210.82,120.20188,Georgetown,USA,2010,1,7,79,15.3,8.8,2.3,-2.7,0.109,0.239,0.23399999999999999,0.562,0.128,2015-16 8614,Greg Smith,MIN,25.0,208.28,113.398,Fresno State,USA,Undrafted,Undrafted,Undrafted,18,2.4,2.3,0.3,-17.8,0.069,0.18600000000000003,0.10800000000000001,0.545,0.049,2015-16 8615,Greivis Vasquez,MIL,29.0,198.12,98.429464,Maryland,Venezuela,2010,1,28,23,5.7,2.0,4.0,-8.9,0.012,0.105,0.18899999999999997,0.435,0.32,2015-16 8616,Harrison Barnes,GSW,24.0,203.2,102.0582,North Carolina,USA,2012,1,7,66,11.7,4.9,1.8,10.5,0.043,0.127,0.159,0.5589999999999999,0.077,2015-16 8617,Hassan Whiteside,MIA,27.0,213.36,120.20188,Marshall,USA,2010,2,33,73,14.2,11.8,0.4,3.0,0.13,0.316,0.205,0.629,0.022000000000000002,2015-16 8618,Henry Sims,BKN,26.0,208.28,112.490816,Georgetown,USA,Undrafted,Undrafted,Undrafted,14,6.5,5.1,0.6,-16.8,0.084,0.23,0.17,0.504,0.054000000000000006,2015-16 8619,Hollis Thompson,PHI,25.0,203.2,93.439952,Georgetown,USA,Undrafted,Undrafted,Undrafted,77,9.8,3.5,1.3,-8.4,0.026000000000000002,0.113,0.161,0.525,0.07200000000000001,2015-16 8620,Ian Clark,GSW,25.0,190.5,79.3786,Belmont,USA,Undrafted,Undrafted,Undrafted,66,3.6,1.0,1.0,-5.2,0.026000000000000002,0.10099999999999999,0.201,0.544,0.171,2015-16 8621,Ian Mahinmi,IND,29.0,210.82,113.398,None,France,2005,1,28,71,9.3,7.1,1.5,4.3,0.084,0.221,0.158,0.603,0.09,2015-16 8622,Iman Shumpert,CLE,26.0,195.58,99.79024,Georgia Tech,USA,2011,1,17,54,5.8,3.8,1.7,7.8,0.027999999999999997,0.14300000000000002,0.133,0.475,0.1,2015-16 8623,Isaiah Canaan,PHI,25.0,182.88,91.171992,Murray State,USA,2013,2,34,77,11.0,2.3,1.8,-12.6,0.01,0.09,0.198,0.528,0.12,2015-16 8624,Isaiah Thomas,BOS,27.0,175.26,83.91452,Washington,USA,2011,2,60,82,22.2,3.0,6.2,3.7,0.018000000000000002,0.08,0.293,0.562,0.312,2015-16 8625,Ish Smith,PHI,27.0,182.88,79.3786,Wake Forest,USA,Undrafted,Undrafted,Undrafted,77,12.6,4.0,6.5,-7.5,0.02,0.127,0.23800000000000002,0.465,0.37,2015-16 8626,Festus Ezeli,GSW,26.0,210.82,120.20188,Vanderbilt,Nigeria,2012,1,30,46,7.0,5.6,0.7,14.3,0.141,0.22399999999999998,0.18,0.5589999999999999,0.06,2015-16 8627,Evan Turner,BOS,27.0,200.66,99.79024,Ohio State,USA,2010,1,2,81,10.5,4.9,4.4,1.8,0.023,0.165,0.187,0.513,0.247,2015-16 8628,Evan Fournier,ORL,23.0,200.66,92.98635999999999,None,France,2012,1,20,79,15.4,2.8,2.7,-3.7,0.013999999999999999,0.085,0.203,0.5870000000000001,0.128,2015-16 8629,Ersan Ilyasova,ORL,29.0,208.28,106.59411999999999,None,Turkey,2005,2,36,74,10.4,5.4,0.9,-4.3,0.078,0.16699999999999998,0.182,0.526,0.055,2015-16 8630,Devyn Marble,ORL,23.0,198.12,90.7184,Iowa,USA,2014,2,56,28,2.1,1.4,0.4,-4.2,0.023,0.134,0.155,0.368,0.07200000000000001,2015-16 8631,Dewayne Dedmon,ORL,26.0,213.36,111.13004,Southern California,USA,Undrafted,Undrafted,Undrafted,58,4.4,3.9,0.2,-2.7,0.10800000000000001,0.25,0.152,0.606,0.028999999999999998,2015-16 8632,Dion Waiters,OKC,24.0,193.04,99.79024,Syracuse,USA,2012,1,4,78,9.8,2.6,2.0,3.7,0.019,0.08199999999999999,0.17600000000000002,0.49200000000000005,0.10300000000000001,2015-16 8633,Dirk Nowitzki,DAL,38.0,213.36,111.13004,None,Germany,1998,1,9,75,18.3,6.5,1.8,3.6,0.025,0.20199999999999999,0.255,0.555,0.096,2015-16 8634,Donald Sloan,BKN,28.0,190.5,92.98635999999999,Texas A&M,USA,Undrafted,Undrafted,Undrafted,61,7.0,2.8,4.4,-5.1,0.015,0.131,0.165,0.536,0.293,2015-16 8635,Donatas Motiejunas,HOU,25.0,213.36,100.697424,None,Lithuania,2011,1,20,37,6.2,2.9,1.1,4.6,0.077,0.14,0.217,0.504,0.11599999999999999,2015-16 8636,Doug McDermott,CHI,24.0,203.2,102.0582,Creighton,USA,2014,1,11,81,9.4,2.4,0.7,-3.7,0.021,0.09,0.171,0.561,0.049,2015-16 8637,Draymond Green,GSW,26.0,200.66,104.32616,Michigan State,USA,2012,2,35,81,14.0,9.5,7.4,18.9,0.055999999999999994,0.222,0.18600000000000003,0.5870000000000001,0.27699999999999997,2015-16 8638,Drew Gooden,WAS,34.0,208.28,113.398,Kansas,USA,2002,1,4,30,2.7,2.8,0.4,-12.0,0.09300000000000001,0.23399999999999999,0.174,0.376,0.066,2015-16 8639,Duje Dukan,SAC,24.0,205.74,99.79024,Wisconsin,Croatia,Undrafted,Undrafted,Undrafted,1,6.0,4.0,1.0,-18.1,0.063,0.08,0.16,0.3,0.067,2015-16 8640,Dwight Howard,HOU,30.0,210.82,120.20188,None,USA,2004,1,1,71,13.7,11.8,1.4,0.2,0.11699999999999999,0.293,0.187,0.604,0.071,2015-16 8641,Dwight Powell,DAL,24.0,210.82,108.86208,Stanford,Canada,2014,2,45,69,5.8,4.0,0.6,-1.0,0.091,0.214,0.182,0.557,0.077,2015-16 8642,J.J. Barea,DAL,32.0,182.88,83.91452,Northeastern,Puerto Rico,Undrafted,Undrafted,Undrafted,74,10.9,2.1,4.1,-1.8,0.017,0.085,0.235,0.536,0.301,2015-16 8643,Dwyane Wade,MIA,34.0,193.04,99.79024,Marquette,USA,2003,1,5,74,19.0,4.1,4.6,1.0,0.042,0.10800000000000001,0.315,0.517,0.267,2015-16 8644,Ed Davis,POR,27.0,208.28,108.86208,North Carolina,USA,2010,1,13,81,6.5,7.4,1.1,1.4,0.142,0.239,0.128,0.616,0.078,2015-16 8645,Edy Tavares,ATL,24.0,220.98,117.93392,None,Cabo Verde,2014,2,43,11,2.3,1.9,0.3,-3.1,0.132,0.222,0.168,0.555,0.055,2015-16 8646,Elfrid Payton,ORL,22.0,193.04,83.91452,Louisiana-Lafayette,USA,2014,1,10,73,10.7,3.6,6.4,-2.1,0.038,0.096,0.201,0.478,0.317,2015-16 8647,Elijah Millsap,UTA,28.0,198.12,102.0582,Alabama-Birmingham,USA,Undrafted,Undrafted,Undrafted,20,1.8,1.8,1.0,6.6,0.038,0.179,0.146,0.384,0.16399999999999998,2015-16 8648,Elliot Williams,CHA,27.0,196.0,86.0,Memphis,USA,2010,1,22,5,1.6,0.8,0.8,-0.6,0.026000000000000002,0.079,0.13699999999999998,0.34,0.14300000000000002,2015-16 8649,Elton Brand,PHI,37.0,205.74,115.212368,Duke,USA,1999,1,1,17,4.1,3.7,1.1,-5.6,0.036000000000000004,0.245,0.174,0.461,0.142,2015-16 8650,Emmanuel Mudiay,DEN,20.0,195.58,90.7184,None,Democratic Republic of the Congo,2015,1,7,68,12.8,3.4,5.5,-3.7,0.017,0.107,0.253,0.43700000000000006,0.281,2015-16 8651,Enes Kanter,OKC,24.0,210.82,111.13004,Kentucky,Turkey,2011,1,3,82,12.7,8.1,0.4,2.7,0.168,0.256,0.23399999999999999,0.626,0.032,2015-16 8652,Eric Bledsoe,PHX,26.0,185.42,86.18248,Kentucky,USA,2010,1,18,31,20.4,4.0,6.1,-2.2,0.018000000000000002,0.11199999999999999,0.273,0.557,0.298,2015-16 8653,Eric Gordon,NOP,27.0,193.04,97.52228000000001,Indiana,USA,2008,1,7,45,15.2,2.2,2.7,-2.6,0.008,0.067,0.205,0.565,0.129,2015-16 8654,Eric Moreland,SAC,24.0,208.28,107.95489599999999,Oregon State,USA,Undrafted,Undrafted,Undrafted,8,1.0,1.4,0.1,1.6,0.079,0.157,0.096,0.515,0.028999999999999998,2015-16 8655,Erick Green,DEN,25.0,193.04,83.91452,Virginia Tech,USA,2013,2,46,9,1.4,0.7,0.3,-1.5,0.086,0.115,0.151,0.46799999999999997,0.107,2015-16 8656,E'Twaun Moore,CHI,27.0,193.04,86.636072,Purdue,USA,2011,2,55,59,7.5,2.3,1.7,-1.0,0.017,0.092,0.16,0.5479999999999999,0.11800000000000001,2015-16 8657,JJ Hickson,WAS,27.0,205.74,109.769264,North Carolina State,USA,2008,1,19,35,5.9,3.8,0.7,-7.4,0.095,0.226,0.222,0.514,0.091,2015-16 8658,JJ O'Brien,UTA,24.0,200.66,99.79024,San Diego State,USA,Undrafted,Undrafted,Undrafted,2,0.0,0.5,0.0,-48.1,0.0,0.25,0.077,0.0,0.0,2015-16 8659,JJ Redick,LAC,32.0,193.04,86.18248,Duke,USA,2006,1,11,75,16.3,1.9,1.4,12.1,0.005,0.065,0.22399999999999998,0.632,0.08,2015-16 8660,Jeremy Evans,DAL,28.0,205.74,90.7184,Western Kentucky,USA,2010,2,55,30,2.4,1.8,0.1,-4.5,0.047,0.16699999999999998,0.11599999999999999,0.62,0.013000000000000001,2015-16 8661,Jeremy Lamb,CHA,24.0,195.58,83.91452,Connecticut,USA,2012,1,12,66,8.8,3.8,1.2,5.9,0.039,0.18,0.21899999999999997,0.529,0.111,2015-16 8662,Jeremy Lin,CHA,27.0,190.5,90.7184,Harvard,USA,Undrafted,Undrafted,Undrafted,78,11.7,3.2,3.0,2.7,0.022000000000000002,0.111,0.22,0.534,0.192,2015-16 8663,Jerian Grant,NYK,23.0,193.04,88.45044,Notre Dame,USA,2015,1,19,76,5.6,1.9,2.3,-6.4,0.02,0.105,0.18899999999999997,0.479,0.23600000000000002,2015-16 8664,Jerryd Bayless,MIL,27.0,190.5,90.7184,Arizona,USA,2008,1,11,52,10.4,2.7,3.1,-4.9,0.016,0.092,0.16699999999999998,0.568,0.168,2015-16 8665,Jimmer Fredette,SAS,27.0,187.96,88.45044,Brigham Young,USA,2011,1,10,6,1.5,0.0,0.2,-71.1,0.0,0.0,0.242,0.625,0.5,2015-16 8666,Jimmy Butler,CHI,26.0,200.66,99.79024,Marquette,USA,2011,1,30,67,20.9,5.3,4.8,-0.8,0.035,0.11599999999999999,0.245,0.562,0.218,2015-16 8667,Joakim Noah,CHI,31.0,210.82,105.23334399999999,Florida,USA,2007,1,9,29,4.3,8.8,3.8,-0.2,0.14,0.266,0.139,0.406,0.256,2015-16 8668,Jodie Meeks,DET,28.0,193.04,95.25432,Kentucky,USA,2009,2,41,3,7.3,1.7,1.0,12.4,0.026000000000000002,0.10300000000000001,0.243,0.506,0.14300000000000002,2015-16 8669,Joe Harris,CLE,24.0,198.12,99.336648,Virginia,USA,2014,2,33,5,0.6,0.6,0.4,-55.2,0.0,0.375,0.142,0.375,0.182,2015-16 8670,Joe Ingles,UTA,28.0,203.2,102.511792,None,Australia,Undrafted,Undrafted,Undrafted,81,4.2,1.9,1.2,-2.1,0.017,0.124,0.133,0.5720000000000001,0.125,2015-16 8671,Joe Johnson,MIA,35.0,200.66,108.86208,Arkansas,USA,2001,1,10,81,12.2,3.6,3.9,-1.1,0.021,0.10099999999999999,0.18,0.5379999999999999,0.172,2015-16 8672,Jerami Grant,PHI,22.0,203.2,95.25432,Syracuse,USA,2014,2,39,77,9.7,4.7,1.8,-9.1,0.051,0.139,0.183,0.506,0.106,2015-16 8673,Joe Young,IND,24.0,187.96,81.64656,Oregon,USA,2015,2,43,41,3.8,1.2,1.6,-5.1,0.017,0.12300000000000001,0.24,0.428,0.261,2015-16 8674,Joffrey Lauvergne,DEN,24.0,210.82,99.79024,None,France,2013,2,55,59,7.9,4.9,0.9,-9.7,0.083,0.23199999999999998,0.19899999999999998,0.5670000000000001,0.09300000000000001,2015-16 8675,John Henson,MIL,25.0,210.82,103.872568,North Carolina,USA,2012,1,14,57,7.0,3.9,0.9,-4.8,0.105,0.152,0.192,0.58,0.096,2015-16 8676,John Jenkins,PHX,25.0,193.04,97.52228000000001,Vanderbilt,USA,2012,1,23,43,4.1,1.3,0.8,-6.6,0.017,0.102,0.174,0.522,0.111,2015-16 8677,John Wall,WAS,25.0,193.04,88.45044,Kentucky,USA,2010,1,1,77,19.9,4.9,10.2,0.7,0.017,0.138,0.284,0.51,0.449,2015-16 8678,Johnny O'Bryant III,MIL,23.0,205.74,116.573144,Louisiana State,USA,2014,2,36,66,3.0,2.7,0.5,-5.7,0.09,0.15,0.138,0.441,0.057,2015-16 8679,Jon Leuer,PHX,27.0,208.28,103.418976,Wisconsin,USA,2011,2,40,67,8.5,5.6,1.1,-3.0,0.065,0.259,0.19899999999999998,0.555,0.09,2015-16 8680,Jonas Jerebko,BOS,29.0,208.28,104.779752,None,Sweden,2009,2,39,78,4.4,3.7,0.8,2.9,0.07,0.19899999999999998,0.136,0.531,0.078,2015-16 8681,Jonas Valanciunas,TOR,24.0,213.36,115.66596000000001,None,Lithuania,2011,1,5,60,12.8,9.1,0.7,3.0,0.142,0.273,0.207,0.61,0.045,2015-16 8682,Jonathon Simmons,SAS,26.0,198.12,88.45044,Houston,USA,Undrafted,Undrafted,Undrafted,55,6.0,1.7,1.1,7.2,0.025,0.109,0.19,0.586,0.10800000000000001,2015-16 8683,Jordan Adams,MEM,21.0,195.58,94.800728,UCLA,USA,2014,1,22,2,3.5,1.0,1.5,5.3,0.0,0.182,0.28600000000000003,0.42700000000000005,0.273,2015-16 8684,Jordan Clarkson,LAL,24.0,195.58,87.996848,Missouri,USA,2014,2,46,79,15.5,4.0,2.4,-13.1,0.037000000000000005,0.096,0.228,0.516,0.139,2015-16 8685,Jordan Farmar,MEM,29.0,187.96,81.64656,UCLA,USA,2006,1,26,12,9.2,2.1,3.1,-13.6,0.013999999999999999,0.09699999999999999,0.182,0.527,0.198,2015-16 8686,Joel Anthony,DET,33.0,205.74,111.13004,Nevada-Las Vegas,Canada,Undrafted,Undrafted,Undrafted,19,0.9,1.1,0.1,-7.0,0.09300000000000001,0.151,0.07400000000000001,0.6659999999999999,0.02,2015-16 8687,Devin Harris,DAL,33.0,190.5,83.91452,Wisconsin,USA,2004,1,5,64,7.6,2.2,1.8,-1.6,0.015,0.102,0.175,0.5589999999999999,0.149,2015-16 8688,Jeff Withey,UTA,26.0,213.36,104.779752,Kansas,USA,2013,2,39,51,4.3,3.4,0.4,4.4,0.102,0.209,0.153,0.5770000000000001,0.051,2015-16 8689,Jeff Green,LAC,29.0,205.74,106.59411999999999,Georgetown,USA,2007,1,5,80,11.7,4.2,1.7,-0.1,0.038,0.132,0.207,0.51,0.102,2015-16 8690,JR Smith,CLE,30.0,198.12,102.0582,None,USA,2004,1,18,77,12.4,2.8,1.7,6.1,0.02,0.084,0.17800000000000002,0.542,0.08199999999999999,2015-16 8691,JaKarr Sampson,DEN,23.0,205.74,97.068688,St. John's (NY),USA,Undrafted,Undrafted,Undrafted,73,5.1,2.6,0.6,-6.5,0.042,0.134,0.168,0.504,0.062,2015-16 8692,JaMychal Green,MEM,26.0,205.74,102.965384,Alabama,USA,Undrafted,Undrafted,Undrafted,78,7.4,4.8,0.9,-1.9,0.10300000000000001,0.19699999999999998,0.193,0.52,0.07400000000000001,2015-16 8693,JaVale McGee,DAL,28.0,213.36,122.46983999999999,Nevada,USA,2008,1,18,34,5.1,3.9,0.1,-6.6,0.14800000000000002,0.231,0.212,0.574,0.015,2015-16 8694,Jabari Parker,MIL,21.0,203.2,113.398,Duke,USA,2014,1,2,76,14.1,5.2,1.7,-3.4,0.059000000000000004,0.127,0.20800000000000002,0.535,0.086,2015-16 8695,Jae Crowder,BOS,25.0,198.12,106.59411999999999,Marquette,USA,2012,2,34,73,14.2,5.1,1.8,4.5,0.031,0.141,0.184,0.565,0.087,2015-16 8696,Jahlil Okafor,PHI,20.0,210.82,124.7378,Duke,USA,2015,1,3,53,17.5,7.0,1.2,-16.6,0.084,0.17800000000000002,0.278,0.536,0.08800000000000001,2015-16 8697,Jamal Crawford,LAC,36.0,195.58,88.45044,Michigan,USA,2000,1,8,79,14.2,1.8,2.3,2.3,0.01,0.066,0.24600000000000002,0.529,0.145,2015-16 8698,Jameer Nelson,DEN,34.0,182.88,86.18248,Saint Joseph's,USA,2004,1,20,39,7.7,2.9,4.9,-7.0,0.019,0.109,0.166,0.46399999999999997,0.287,2015-16 8699,James Anderson,SAC,27.0,198.12,96.615096,Oklahoma State,USA,2010,1,20,51,3.5,1.7,0.8,-3.2,0.019,0.10400000000000001,0.13699999999999998,0.469,0.078,2015-16 8700,James Ennis III,NOP,25.0,200.66,95.25432,Long Beach State,USA,2013,2,50,22,7.2,1.9,1.0,-6.4,0.07400000000000001,0.078,0.2,0.621,0.10400000000000001,2015-16 8701,James Harden,HOU,26.0,195.58,99.79024,Arizona State,USA,2009,1,3,82,29.0,6.1,7.5,1.2,0.022000000000000002,0.157,0.325,0.598,0.354,2015-16 8702,Jeff Teague,ATL,28.0,187.96,84.368112,Wake Forest,USA,2009,1,19,79,15.7,2.7,5.9,1.5,0.016,0.083,0.263,0.551,0.341,2015-16 8703,James Johnson,TOR,29.0,205.74,113.398,Wake Forest,USA,2009,1,16,57,5.0,2.2,1.2,-0.6,0.035,0.121,0.16,0.532,0.113,2015-16 8704,James Michael McAdoo,GSW,23.0,205.74,108.86208,North Carolina,USA,Undrafted,Undrafted,Undrafted,41,2.9,1.4,0.4,-15.9,0.12,0.131,0.201,0.5539999999999999,0.11,2015-16 8705,James Young,BOS,20.0,198.12,97.52228000000001,Kentucky,USA,2014,1,17,29,1.0,0.9,0.3,-6.1,0.021,0.129,0.095,0.384,0.063,2015-16 8706,Jared Cunningham,CLE,25.0,193.04,88.45044,Oregon State,USA,2012,1,24,44,2.7,0.9,0.5,-3.3,0.009000000000000001,0.102,0.16899999999999998,0.46399999999999997,0.07400000000000001,2015-16 8707,Jared Dudley,WAS,30.0,200.66,102.0582,Boston College,USA,2007,1,22,81,7.9,3.5,2.1,1.1,0.028999999999999998,0.128,0.129,0.602,0.11199999999999999,2015-16 8708,Jared Sullinger,BOS,24.0,205.74,117.93392,Ohio State,USA,2012,1,21,81,10.3,8.3,2.3,4.3,0.106,0.271,0.218,0.47600000000000003,0.14800000000000002,2015-16 8709,Jarell Eddie,WAS,24.0,200.66,98.88305600000001,Virginia Tech,USA,Undrafted,Undrafted,Undrafted,26,2.4,0.9,0.2,-10.9,0.013000000000000001,0.15,0.201,0.46,0.057999999999999996,2015-16 8710,Jarell Martin,MEM,22.0,208.28,108.40848799999999,Louisiana State,USA,2015,1,25,27,5.7,3.2,0.6,-5.8,0.1,0.15,0.182,0.534,0.065,2015-16 8711,Jarnell Stokes,MEM,22.0,205.74,119.294696,Tennessee,USA,2014,2,35,7,1.0,0.6,0.1,20.3,0.071,0.17600000000000002,0.141,0.595,0.083,2015-16 8712,Jason Smith,ORL,30.0,213.36,108.86208,Colorado State,USA,2007,1,20,76,7.2,2.9,0.8,-1.9,0.051,0.163,0.22399999999999998,0.513,0.087,2015-16 8713,Jason Terry,HOU,38.0,187.96,83.91452,Arizona,USA,1999,1,10,72,5.9,1.1,1.4,-0.3,0.012,0.057999999999999996,0.15,0.54,0.125,2015-16 8714,Jason Thompson,TOR,29.0,210.82,113.398,Rider,USA,2008,1,12,47,3.1,2.9,0.6,1.2,0.075,0.23399999999999999,0.14,0.5579999999999999,0.094,2015-16 8715,Jeff Ayres,LAC,29.0,205.74,113.398,Arizona State,USA,2009,2,31,17,1.8,1.3,0.3,-18.2,0.042,0.17,0.142,0.585,0.078,2015-16 8716,James Jones,CLE,35.0,203.2,98.88305600000001,Miami (FL),USA,2003,2,49,48,3.7,1.0,0.3,-4.8,0.018000000000000002,0.099,0.163,0.58,0.054000000000000006,2015-16 8717,Jordan Hamilton,NOP,25.0,200.66,99.79024,Texas,USA,2011,1,26,11,11.4,5.6,2.3,-11.2,0.043,0.19399999999999998,0.20800000000000002,0.499,0.128,2015-16 8718,Derrick Williams,NYK,25.0,203.2,108.86208,Arizona,USA,2011,1,2,80,9.3,3.7,0.9,-7.5,0.035,0.191,0.23399999999999999,0.55,0.096,2015-16 8719,Derrick Favors,UTA,24.0,208.28,120.20188,Georgia Tech,USA,2010,1,3,62,16.4,8.1,1.5,1.1,0.102,0.2,0.239,0.551,0.086,2015-16 8720,Anthony Davis,NOP,23.0,208.28,114.758776,Kentucky,USA,2012,1,1,61,24.3,10.3,1.9,-4.7,0.064,0.262,0.29600000000000004,0.5589999999999999,0.1,2015-16 8721,Anthony Morrow,OKC,30.0,195.58,95.25432,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,68,5.6,0.9,0.4,4.0,0.013000000000000001,0.06,0.171,0.5429999999999999,0.037000000000000005,2015-16 8722,Anthony Tolliver,DET,31.0,203.2,108.86208,Creighton,USA,Undrafted,Undrafted,Undrafted,72,5.3,3.2,0.7,-0.7,0.03,0.159,0.126,0.5429999999999999,0.057999999999999996,2015-16 8723,Archie Goodwin,PHX,21.0,195.58,90.7184,Kentucky,USA,2013,1,29,57,8.9,2.5,2.1,-11.0,0.026000000000000002,0.114,0.231,0.498,0.174,2015-16 8724,Aron Baynes,DET,29.0,208.28,117.93392,Washington State,Australia,Undrafted,Undrafted,Undrafted,81,6.3,4.7,0.6,-4.7,0.122,0.223,0.187,0.563,0.07,2015-16 8725,Arron Afflalo,NYK,30.0,195.58,95.25432,UCLA,USA,2007,1,27,71,12.8,3.7,2.0,-3.2,0.011000000000000001,0.109,0.18100000000000002,0.531,0.09699999999999999,2015-16 8726,Austin Rivers,LAC,23.0,193.04,90.7184,Duke,USA,2012,1,10,67,8.9,1.9,1.5,-2.1,0.016,0.08,0.195,0.523,0.11599999999999999,2015-16 8727,Avery Bradley,BOS,25.0,187.96,81.64656,Texas,USA,2010,1,19,76,15.2,2.9,2.1,4.2,0.02,0.073,0.2,0.5379999999999999,0.095,2015-16 8728,Axel Toupane,DEN,23.0,200.66,95.25432,None,France,Undrafted,Undrafted,Undrafted,21,3.6,1.5,0.7,-2.1,0.032,0.087,0.125,0.49,0.068,2015-16 8729,Ben McLemore,SAC,23.0,195.58,88.45044,Kansas,USA,2013,1,7,68,7.8,2.2,1.2,-0.6,0.026000000000000002,0.083,0.174,0.531,0.076,2015-16 8730,Beno Udrih,MEM,33.0,190.5,92.98635999999999,None,Slovenia,2004,1,28,44,4.7,1.6,2.6,-1.3,0.013000000000000001,0.10099999999999999,0.172,0.496,0.256,2015-16 8731,Bismack Biyombo,TOR,23.0,205.74,111.13004,None,Democratic Republic of the Congo,2011,1,7,82,5.5,8.0,0.4,3.8,0.115,0.281,0.11699999999999999,0.586,0.025,2015-16 8732,Blake Griffin,LAC,27.0,208.28,113.851592,Oklahoma,USA,2009,1,1,35,21.4,8.4,4.9,7.9,0.048,0.221,0.292,0.544,0.258,2015-16 8733,Boban Marjanovic,SAS,27.0,220.98,131.54168,None,Serbia,Undrafted,Undrafted,Undrafted,54,5.5,3.6,0.4,6.6,0.166,0.275,0.22899999999999998,0.662,0.07200000000000001,2015-16 8734,Bobby Portis,CHI,21.0,210.82,104.32616,Arkansas,USA,2015,1,22,62,7.0,5.4,0.8,-7.9,0.114,0.21,0.207,0.469,0.076,2015-16 8735,Bojan Bogdanovic,BKN,27.0,203.2,97.975872,None,Croatia,2011,2,31,79,11.2,3.2,1.3,-8.8,0.019,0.11800000000000001,0.19399999999999998,0.55,0.073,2015-16 8736,Boris Diaw,SAS,34.0,203.2,113.398,None,France,2003,1,21,76,6.4,3.1,2.3,10.8,0.049,0.139,0.168,0.5820000000000001,0.182,2015-16 8737,Bradley Beal,WAS,23.0,195.58,93.89354399999999,Florida,USA,2012,1,3,55,17.4,3.4,2.9,-1.6,0.027000000000000003,0.099,0.25,0.547,0.153,2015-16 8738,Brandan Wright,MEM,28.0,208.28,95.25432,North Carolina,USA,2007,1,8,12,6.9,3.6,0.5,-13.1,0.073,0.14800000000000002,0.156,0.6629999999999999,0.05,2015-16 8739,Branden Dawson,LAC,23.0,198.12,102.0582,Michigan State,USA,2015,2,56,6,0.8,0.7,0.0,-24.6,0.111,0.067,0.092,0.46,0.0,2015-16 8740,Brandon Bass,LAL,31.0,203.2,113.398,Louisiana State,USA,2005,2,33,66,7.2,4.3,1.1,-2.6,0.085,0.153,0.138,0.619,0.08800000000000001,2015-16 8741,Brandon Jennings,ORL,26.0,185.42,76.657048,None,USA,2009,1,10,48,6.9,2.0,3.5,0.4,0.02,0.10300000000000001,0.198,0.491,0.298,2015-16 8742,Brandon Knight,PHX,24.0,190.5,85.728888,Kentucky,USA,2011,1,8,52,19.6,3.9,5.1,-6.8,0.021,0.099,0.263,0.522,0.23399999999999999,2015-16 8743,Brandon Rush,GSW,30.0,198.12,99.79024,Kansas,USA,2008,1,13,72,4.2,2.5,0.8,0.2,0.023,0.154,0.128,0.56,0.07200000000000001,2015-16 8744,Brian Roberts,POR,30.0,185.42,78.471416,Dayton,USA,Undrafted,Undrafted,Undrafted,51,4.0,0.8,1.1,-6.2,0.013000000000000001,0.086,0.196,0.552,0.205,2015-16 8745,Anthony Brown,LAL,23.0,200.66,95.25432,Stanford,USA,2015,2,34,29,4.0,2.4,0.7,-4.3,0.015,0.11599999999999999,0.11,0.42700000000000005,0.048,2015-16 8746,Anthony Bennett,TOR,23.0,203.2,111.13004,Nevada-Las Vegas,Canada,2013,1,1,19,1.5,1.2,0.0,-12.5,0.064,0.293,0.18100000000000002,0.446,0.0,2015-16 8747,Andrew Wiggins,MIN,21.0,203.2,90.264808,Kansas,Canada,2014,1,1,81,20.7,3.6,2.0,-1.0,0.043,0.07400000000000001,0.26899999999999996,0.5429999999999999,0.098,2015-16 8748,Andrew Nicholson,ORL,26.0,205.74,113.398,St. Bonaventure,Canada,2012,1,19,56,6.9,3.6,0.4,1.2,0.045,0.21600000000000003,0.209,0.5670000000000001,0.05,2015-16 8749,Zaza Pachulia,DAL,32.0,210.82,124.7378,None,Georgia,2003,2,42,76,8.6,9.4,1.7,0.9,0.13699999999999998,0.262,0.16399999999999998,0.55,0.10099999999999999,2015-16 8750,Aaron Brooks,CHI,31.0,182.88,73.028312,Oregon,USA,2007,1,26,69,7.1,1.5,2.6,-1.4,0.02,0.078,0.231,0.494,0.265,2015-16 8751,Aaron Gordon,ORL,20.0,205.74,99.79024,Arizona,USA,2014,1,4,78,9.2,6.5,1.6,-1.3,0.08900000000000001,0.21,0.171,0.541,0.10300000000000001,2015-16 8752,Aaron Harrison,CHA,21.0,198.12,95.25432,Kentucky,USA,Undrafted,Undrafted,Undrafted,21,0.9,0.7,0.1,2.2,0.047,0.133,0.138,0.371,0.033,2015-16 8753,Adreian Payne,MIN,25.0,208.28,107.501304,Michigan State,USA,2014,1,15,52,2.5,2.1,0.6,-10.8,0.049,0.22,0.18,0.42200000000000004,0.09300000000000001,2015-16 8754,Al Horford,ATL,30.0,208.28,111.13004,Florida,Dominican Republic,2007,1,3,82,15.2,7.3,3.2,4.9,0.062,0.18,0.20600000000000002,0.565,0.165,2015-16 8755,Al Jefferson,CHA,31.0,208.28,131.088088,None,USA,2004,1,15,47,12.0,6.4,1.5,3.7,0.055999999999999994,0.244,0.245,0.507,0.114,2015-16 8756,Al-Farouq Aminu,POR,25.0,205.74,97.52228000000001,Wake Forest,USA,2010,1,8,82,10.2,6.1,1.7,1.5,0.045,0.185,0.16899999999999998,0.5329999999999999,0.087,2015-16 8757,Alan Anderson,WAS,33.0,198.12,99.79024,Michigan State,USA,Undrafted,Undrafted,Undrafted,13,5.0,2.1,1.1,5.4,0.006,0.149,0.157,0.495,0.11199999999999999,2015-16 8758,Alan Williams,PHX,23.0,203.2,117.93392,California-Santa Barbara,USA,Undrafted,Undrafted,Undrafted,10,2.9,3.8,0.5,-0.2,0.184,0.387,0.201,0.48100000000000004,0.096,2015-16 8759,Alec Burks,UTA,24.0,198.12,97.068688,Colorado,USA,2011,1,12,31,13.3,3.5,2.0,-2.0,0.023,0.139,0.251,0.52,0.14,2015-16 8760,Alex Len,PHX,23.0,215.9,117.93392,Maryland,Ukraine,2013,1,5,78,9.0,7.6,1.2,-7.8,0.10300000000000001,0.248,0.204,0.48200000000000004,0.087,2015-16 8761,Briante Weber,MIA,23.0,187.96,74.84268,Virginia Commonwealth,USA,Undrafted,Undrafted,Undrafted,7,4.4,3.6,3.0,-22.5,0.04,0.127,0.11800000000000001,0.38,0.175,2015-16 8762,Alex Stepheson,MEM,28.0,208.28,122.46983999999999,USC,USA,Undrafted,Undrafted,Undrafted,8,2.8,3.5,0.3,-3.8,0.20199999999999999,0.122,0.17,0.341,0.053,2015-16 8763,Allen Crabbe,POR,24.0,198.12,95.25432,California,USA,2013,2,31,81,10.3,2.7,1.2,0.1,0.013999999999999999,0.09699999999999999,0.163,0.5720000000000001,0.07200000000000001,2015-16 8764,Alonzo Gee,NOP,29.0,198.12,102.0582,Alabama,USA,Undrafted,Undrafted,Undrafted,73,4.5,3.4,1.0,-4.0,0.039,0.126,0.092,0.5720000000000001,0.063,2015-16 8765,Amar'e Stoudemire,MIA,33.0,208.28,111.13004,None,USA,2002,1,9,52,5.8,4.3,0.5,1.8,0.10099999999999999,0.22899999999999998,0.18,0.599,0.054000000000000006,2015-16 8766,Amir Johnson,BOS,29.0,205.74,108.86208,None,USA,2005,2,56,79,7.3,6.4,1.7,4.6,0.10400000000000001,0.19399999999999998,0.13699999999999998,0.602,0.11,2015-16 8767,Anderson Varejao,GSW,33.0,210.82,123.830616,None,Brazil,2004,2,30,53,2.6,2.7,0.7,-0.5,0.079,0.23,0.147,0.473,0.102,2015-16 8768,Andre Drummond,DET,22.0,210.82,126.552168,Connecticut,USA,2012,1,9,81,16.2,14.8,0.8,2.0,0.153,0.34299999999999997,0.24,0.499,0.042,2015-16 8769,Andre Iguodala,GSW,32.0,198.12,97.52228000000001,Arizona,USA,2004,1,9,65,7.0,4.0,3.4,14.4,0.034,0.127,0.12,0.565,0.165,2015-16 8770,Andre Miller,SAS,40.0,190.5,90.7184,Utah,USA,1999,1,8,39,3.7,1.3,2.2,5.1,0.036000000000000004,0.10099999999999999,0.162,0.6,0.276,2015-16 8771,Andre Roberson,OKC,24.0,200.66,95.25432,Colorado,USA,2013,1,26,70,4.8,3.6,0.7,9.4,0.06,0.113,0.09300000000000001,0.5660000000000001,0.039,2015-16 8772,Andrea Bargnani,BKN,30.0,213.36,111.13004,None,Italy,2006,1,1,46,6.6,2.1,0.4,-15.7,0.047,0.135,0.23399999999999999,0.5,0.051,2015-16 8773,Andrew Bogut,GSW,31.0,213.36,117.93392,Utah,Australia,2005,1,1,70,5.4,7.0,2.3,14.2,0.094,0.252,0.11599999999999999,0.623,0.145,2015-16 8774,Andrew Goudelock,HOU,27.0,190.5,90.7184,College of Charleston,USA,2011,2,46,8,2.8,0.3,0.5,13.6,0.024,0.015,0.243,0.506,0.11800000000000001,2015-16 8775,Alexis Ajinca,NOP,28.0,218.44,112.490816,None,France,2008,1,20,59,6.0,4.6,0.5,-3.0,0.094,0.257,0.20600000000000002,0.514,0.059000000000000004,2015-16 8776,Brook Lopez,BKN,28.0,213.36,124.7378,Stanford,USA,2008,1,10,73,20.6,7.8,2.0,-3.7,0.094,0.16699999999999998,0.276,0.562,0.106,2015-16 8777,Bruno Caboclo,TOR,20.0,205.74,92.98635999999999,None,Brazil,2014,1,20,6,0.5,0.3,0.2,-2.5,0.022000000000000002,0.024,0.16399999999999998,0.125,0.033,2015-16 8778,Bryce Cotton,MEM,23.0,185.42,74.84268,Providence,USA,Undrafted,Undrafted,Undrafted,8,1.0,0.0,0.4,-31.0,0.0,0.0,0.179,0.4,0.136,2015-16 8779,Cory Joseph,TOR,24.0,190.5,86.18248,Texas,Canada,2011,1,29,80,8.5,2.6,3.1,6.9,0.021,0.092,0.17,0.512,0.19899999999999998,2015-16 8780,Coty Clarke,BOS,23.0,200.66,102.0582,None,USA,Undrafted,Undrafted,Undrafted,3,2.0,0.3,0.0,24.4,0.0,0.33299999999999996,0.363,0.75,0.0,2015-16 8781,Courtney Lee,CHA,30.0,195.58,90.7184,Western Kentucky,USA,2008,1,22,79,9.6,2.6,1.7,2.9,0.013999999999999999,0.087,0.15,0.551,0.08800000000000001,2015-16 8782,Cristiano Felicio,CHI,23.0,208.28,124.7378,None,Brazil,Undrafted,Undrafted,Undrafted,31,3.4,3.3,0.8,5.6,0.109,0.252,0.136,0.601,0.115,2015-16 8783,D'Angelo Russell,LAL,20.0,195.58,88.45044,Ohio State,USA,2015,1,2,80,13.2,3.4,3.3,-13.0,0.021,0.113,0.24100000000000002,0.507,0.213,2015-16 8784,D.J. Augustin,DEN,28.0,182.88,83.007336,Texas,USA,2008,1,9,62,7.5,1.5,3.2,-1.4,0.008,0.081,0.183,0.575,0.257,2015-16 8785,Dahntay Jones,CLE,35.0,198.12,102.0582,Duke,USA,2003,1,20,1,13.0,5.0,2.0,-6.1,0.027999999999999997,0.114,0.157,0.46399999999999997,0.067,2015-16 8786,Damian Lillard,POR,25.0,190.5,88.45044,Weber State,USA,2012,1,6,75,25.1,4.0,6.8,0.9,0.018000000000000002,0.105,0.31,0.56,0.33,2015-16 8787,Damien Inglis,MIL,21.0,203.2,111.58363200000001,None,France,2014,2,31,20,1.8,1.6,0.5,-10.0,0.016,0.195,0.158,0.444,0.11199999999999999,2015-16 8788,Damjan Rudez,MIN,30.0,205.74,104.32616,None,Croatia,Undrafted,Undrafted,Undrafted,33,2.3,0.6,0.3,-2.1,0.022000000000000002,0.065,0.126,0.5720000000000001,0.057999999999999996,2015-16 8789,Danilo Gallinari,DEN,27.0,208.28,102.0582,None,Italy,2008,1,6,53,19.5,5.3,2.5,-3.5,0.03,0.14300000000000002,0.228,0.5820000000000001,0.122,2015-16 8790,Danny Green,SAS,29.0,198.12,97.52228000000001,North Carolina,USA,2009,2,46,79,7.2,3.8,1.8,12.7,0.026000000000000002,0.134,0.145,0.49200000000000005,0.092,2015-16 8791,Cory Jefferson,PHX,25.0,205.74,98.88305600000001,Baylor,USA,2014,2,60,8,2.8,2.0,0.0,-10.2,0.122,0.196,0.209,0.446,0.0,2015-16 8792,Dante Cunningham,NOP,29.0,203.2,104.32616,Villanova,USA,2009,2,33,80,6.1,3.0,1.0,-6.4,0.031,0.10800000000000001,0.111,0.54,0.055999999999999994,2015-16 8793,Darren Collison,SAC,28.0,182.88,79.3786,UCLA,USA,2009,1,21,74,14.0,2.3,4.3,-2.4,0.013999999999999999,0.07,0.193,0.591,0.21899999999999997,2015-16 8794,Darrun Hilliard,DET,23.0,198.12,92.98635999999999,Villanova,USA,2015,2,38,38,4.0,1.2,0.7,-0.1,0.013999999999999999,0.115,0.198,0.511,0.11699999999999999,2015-16 8795,David Lee,DAL,33.0,205.74,111.13004,Florida,USA,2005,1,30,55,7.8,5.5,1.5,-3.0,0.122,0.247,0.215,0.568,0.162,2015-16 8796,David West,SAS,35.0,205.74,113.398,Xavier,USA,2003,1,18,78,7.1,4.0,1.8,11.8,0.061,0.187,0.179,0.573,0.15,2015-16 8797,DeAndre Jordan,LAC,27.0,210.82,120.20188,Texas A&M,USA,2008,2,35,77,12.7,13.8,1.2,10.2,0.115,0.321,0.154,0.628,0.051,2015-16 8798,DeJuan Blair,WAS,27.0,200.66,122.46983999999999,Pittsburgh,USA,2009,2,37,29,2.1,2.0,0.4,-11.4,0.09699999999999999,0.203,0.172,0.414,0.077,2015-16 8799,DeMar DeRozan,TOR,26.0,200.66,99.79024,Southern California,USA,2009,1,9,78,23.5,4.5,4.0,3.0,0.027000000000000003,0.11599999999999999,0.297,0.55,0.20800000000000002,2015-16 8800,DeMarcus Cousins,SAC,25.0,210.82,122.46983999999999,Kentucky,USA,2010,1,5,65,26.9,11.5,3.3,0.0,0.078,0.27399999999999997,0.35200000000000004,0.5379999999999999,0.16699999999999998,2015-16 8801,DeMarre Carroll,TOR,29.0,203.2,96.16150400000001,Missouri,USA,2009,1,27,26,11.0,4.7,1.0,2.7,0.043,0.134,0.179,0.49,0.055999999999999994,2015-16 8802,Delon Wright,TOR,24.0,195.58,86.18248,Utah,USA,2015,1,20,27,3.8,1.4,1.1,5.2,0.04,0.136,0.226,0.54,0.226,2015-16 8803,Dennis Schroder,ATL,22.0,185.42,78.017824,None,Germany,2013,1,17,80,11.0,2.6,4.4,7.8,0.018000000000000002,0.12300000000000001,0.293,0.51,0.368,2015-16 8804,Deron Williams,DAL,32.0,190.5,90.7184,Illinois,USA,2005,1,3,65,14.1,2.9,5.8,0.4,0.01,0.08800000000000001,0.221,0.53,0.295,2015-16 8805,Darrell Arthur,DEN,28.0,205.74,106.59411999999999,Kansas,USA,2008,1,27,70,7.5,4.2,1.4,-2.1,0.062,0.151,0.168,0.514,0.102,2015-16 8806,Derrick Rose,CHI,27.0,190.5,86.18248,Memphis,USA,2008,1,1,66,16.4,3.4,4.7,-4.2,0.023,0.086,0.27,0.479,0.25,2015-16 8807,Corey Brewer,HOU,30.0,205.74,84.368112,Florida,USA,2007,1,7,82,7.2,2.4,1.3,-2.2,0.027000000000000003,0.102,0.17600000000000002,0.48100000000000004,0.102,2015-16 8808,Cody Zeller,CHA,23.0,213.36,108.86208,Indiana,USA,2013,1,4,73,8.7,6.2,1.0,4.4,0.086,0.201,0.154,0.5920000000000001,0.061,2015-16 8809,Bryce Dejean-Jones,NOP,23.0,198.12,92.079176,Iowa State,USA,Undrafted,Undrafted,Undrafted,14,5.6,3.4,1.1,-7.0,0.027999999999999997,0.175,0.141,0.505,0.076,2015-16 8810,C.J. Watson,ORL,32.0,187.96,79.3786,Tennessee,USA,Undrafted,Undrafted,Undrafted,33,4.3,2.0,2.7,-2.3,0.017,0.094,0.12,0.461,0.18,2015-16 8811,CJ McCollum,POR,24.0,193.04,90.7184,Lehigh,USA,2013,1,10,80,20.8,3.2,4.3,2.0,0.018000000000000002,0.084,0.27,0.544,0.21100000000000002,2015-16 8812,CJ Miles,IND,29.0,198.12,104.779752,None,USA,2005,2,34,64,11.8,2.7,1.0,-0.5,0.019,0.11199999999999999,0.225,0.547,0.069,2015-16 8813,CJ Wilcox,LAC,25.0,195.58,88.45044,Washington,USA,2014,1,28,23,3.0,0.5,0.4,8.8,0.006999999999999999,0.063,0.2,0.491,0.09,2015-16 8814,Cameron Bairstow,DET,25.0,205.74,113.398,New Mexico,Australia,2014,2,49,18,1.9,1.6,0.3,-7.1,0.038,0.235,0.198,0.391,0.091,2015-16 8815,Cameron Payne,OKC,21.0,190.5,83.91452,Murray State,USA,2015,1,14,57,5.0,1.5,1.9,-2.8,0.013999999999999999,0.121,0.20600000000000002,0.49,0.24100000000000002,2015-16 8816,Carl Landry,PHI,32.0,205.74,112.490816,Purdue,USA,2007,2,31,36,9.8,4.1,0.9,-10.4,0.09,0.20199999999999999,0.239,0.605,0.102,2015-16 8817,Carmelo Anthony,NYK,32.0,203.2,108.86208,Syracuse,USA,2003,1,3,72,21.8,7.7,4.2,-0.7,0.043,0.195,0.295,0.53,0.209,2015-16 8818,Caron Butler,SAC,36.0,200.66,103.418976,Connecticut,USA,2002,1,10,17,3.7,1.3,0.6,-12.4,0.028999999999999998,0.115,0.163,0.49,0.099,2015-16 8819,Chandler Parsons,DAL,27.0,208.28,104.32616,Florida,USA,2011,2,38,61,13.7,4.7,2.8,1.3,0.018000000000000002,0.158,0.20800000000000002,0.589,0.158,2015-16 8820,Channing Frye,CLE,33.0,210.82,115.66596000000001,Arizona,USA,2005,1,8,70,6.1,3.3,1.0,3.7,0.033,0.192,0.156,0.586,0.086,2015-16 8821,Cole Aldrich,LAC,27.0,210.82,113.398,Kansas,USA,2010,1,11,60,5.5,4.8,0.8,1.0,0.122,0.284,0.19,0.626,0.107,2015-16 8822,Charlie Villanueva,DAL,31.0,210.82,105.23334399999999,Connecticut,USA,2005,1,7,62,5.1,2.5,0.4,-7.9,0.036000000000000004,0.213,0.244,0.473,0.063,2015-16 8823,Chris Andersen,MEM,37.0,208.28,111.13004,Blinn,USA,Undrafted,Undrafted,Undrafted,27,3.9,3.6,0.4,-10.7,0.1,0.191,0.109,0.598,0.045,2015-16 8824,Chris Bosh,MIA,32.0,210.82,106.59411999999999,Georgia Tech,USA,2003,1,4,53,19.1,7.4,2.4,1.7,0.032,0.21100000000000002,0.253,0.5710000000000001,0.129,2015-16 8825,Chris Copeland,MIL,32.0,205.74,108.40848799999999,Colorado,USA,Undrafted,Undrafted,Undrafted,24,2.1,0.4,0.5,-26.2,0.006999999999999999,0.073,0.177,0.462,0.12,2015-16 8826,Chris Johnson,UTA,26.0,198.12,93.439952,Dayton,USA,Undrafted,Undrafted,Undrafted,70,2.9,1.9,0.6,4.6,0.037000000000000005,0.134,0.13699999999999998,0.48200000000000004,0.08199999999999999,2015-16 8827,Chris Kaman,POR,34.0,213.36,120.20188,Central Michigan,USA,2003,1,6,16,2.8,1.5,0.7,-13.2,0.077,0.17,0.213,0.496,0.18600000000000003,2015-16 8828,Chris McCullough,BKN,21.0,210.82,90.7184,Syracuse,USA,2015,1,29,24,4.7,2.8,0.4,-16.1,0.07400000000000001,0.145,0.16,0.47,0.038,2015-16 8829,Chris Paul,LAC,31.0,182.88,79.3786,Wake Forest,USA,2005,1,4,74,19.5,4.2,10.0,11.9,0.018000000000000002,0.11900000000000001,0.26899999999999996,0.575,0.493,2015-16 8830,Christian Wood,PHI,20.0,210.82,99.79024,Nevada-Las Vegas,USA,Undrafted,Undrafted,Undrafted,17,3.6,2.2,0.2,-13.5,0.08199999999999999,0.192,0.187,0.49,0.035,2015-16 8831,Chuck Hayes,LAC,33.0,198.12,108.86208,Kentucky,USA,Undrafted,Undrafted,Undrafted,2,2.0,4.0,1.0,-2.0,0.0,0.28600000000000003,0.11199999999999999,0.6940000000000001,0.133,2015-16 8832,Cleanthony Early,NYK,25.0,203.2,95.25432,Wichita State,USA,2014,2,34,17,1.8,1.5,0.4,0.4,0.027999999999999997,0.146,0.14800000000000002,0.371,0.057999999999999996,2015-16 8833,Cliff Alexander,POR,20.0,203.2,108.86208,Kansas,USA,Undrafted,Undrafted,Undrafted,8,1.3,0.8,0.0,-15.1,0.087,0.11800000000000001,0.151,0.5,0.0,2015-16 8834,Clint Capela,HOU,22.0,208.28,108.86208,None,Switzerland,2014,1,25,77,7.0,6.4,0.6,3.1,0.141,0.225,0.159,0.5529999999999999,0.05,2015-16 8835,Chase Budinger,PHX,28.0,200.66,94.800728,Arizona,USA,2009,2,44,66,4.1,2.3,1.0,-0.1,0.048,0.129,0.142,0.514,0.098,2015-16 8836,Jordan Hill,IND,28.0,208.28,106.59411999999999,Arizona,USA,2009,1,8,73,8.8,6.2,1.2,1.2,0.11199999999999999,0.209,0.204,0.534,0.096,2015-16 8837,Devin Booker,PHX,19.0,198.12,93.439952,Kentucky,USA,2015,1,13,76,13.8,2.5,2.6,-9.6,0.013999999999999999,0.083,0.231,0.535,0.162,2015-16 8838,Jordan Mickey,BOS,21.0,203.2,106.59411999999999,Louisiana State,USA,2015,2,33,16,1.3,0.8,0.1,9.3,0.102,0.14300000000000002,0.20800000000000002,0.39799999999999996,0.03,2015-16 8839,Robert Sacre,LAL,27.0,213.36,122.46983999999999,Gonzaga,Canada,2012,2,60,25,3.5,2.9,0.6,-6.6,0.09699999999999999,0.138,0.138,0.474,0.07200000000000001,2015-16 8840,Robin Lopez,NYK,28.0,213.36,115.66596000000001,Stanford,USA,2008,1,15,82,10.3,7.3,1.4,-1.5,0.132,0.161,0.17600000000000002,0.574,0.083,2015-16 8841,Rodney Hood,UTA,23.0,203.2,93.439952,Duke,USA,2014,1,23,79,14.5,3.4,2.7,2.0,0.018000000000000002,0.107,0.218,0.542,0.142,2015-16 8842,Rodney Stuckey,IND,30.0,195.58,92.98635999999999,Eastern Washington,USA,2007,1,15,58,8.9,2.7,2.4,0.8,0.017,0.11599999999999999,0.207,0.504,0.179,2015-16 8843,Rondae Hollis-Jefferson,BKN,21.0,200.66,99.79024,Arizona,USA,2015,1,23,29,5.8,5.3,1.5,-2.9,0.067,0.19899999999999998,0.132,0.519,0.1,2015-16 8844,Ronnie Price,PHX,33.0,187.96,86.18248,Utah Valley,USA,Undrafted,Undrafted,Undrafted,62,5.3,1.6,2.4,-3.2,0.021,0.068,0.13699999999999998,0.517,0.187,2015-16 8845,Roy Hibbert,LAL,29.0,218.44,122.46983999999999,Georgetown,USA,2008,1,17,81,5.9,4.9,1.2,-18.0,0.071,0.154,0.13,0.507,0.08199999999999999,2015-16 8846,Rudy Gay,SAC,29.0,203.2,104.32616,Connecticut,USA,2006,1,8,70,17.2,6.5,1.7,-2.1,0.047,0.16,0.225,0.5379999999999999,0.078,2015-16 8847,Rudy Gobert,UTA,24.0,215.9,111.13004,None,France,2013,1,27,61,9.1,11.0,1.5,4.3,0.13,0.273,0.14300000000000002,0.5820000000000001,0.073,2015-16 8848,Russ Smith,MEM,25.0,182.88,74.84268,Louisville,USA,2014,2,47,15,1.5,0.6,0.7,-23.3,0.017,0.14300000000000002,0.239,0.415,0.314,2015-16 8849,Russell Westbrook,OKC,27.0,190.5,90.7184,UCLA,USA,2008,1,4,80,23.5,7.8,10.4,10.8,0.061,0.17800000000000002,0.313,0.5539999999999999,0.46799999999999997,2015-16 8850,Ryan Anderson,NOP,28.0,208.28,108.86208,California,USA,2008,1,21,66,17.0,6.0,1.1,-1.2,0.069,0.153,0.242,0.546,0.059000000000000004,2015-16 8851,Robert Covington,PHI,25.0,205.74,97.52228000000001,Tennessee State,USA,Undrafted,Undrafted,Undrafted,67,12.8,6.3,1.4,-7.8,0.035,0.21100000000000002,0.213,0.5429999999999999,0.083,2015-16 8852,Ryan Hollins,MEM,31.0,213.36,108.86208,UCLA,USA,2006,2,50,37,3.4,2.6,0.3,-17.3,0.10800000000000001,0.14300000000000002,0.11699999999999999,0.636,0.034,2015-16 8853,Salah Mejri,DAL,30.0,218.44,111.13004,None,Tunisia,Undrafted,Undrafted,Undrafted,34,3.7,3.6,0.3,6.3,0.114,0.21100000000000002,0.141,0.636,0.038,2015-16 8854,Sam Dekker,HOU,22.0,205.74,104.32616,Wisconsin,USA,2015,1,18,3,0.0,0.3,0.0,2.8,0.0,0.2,0.0,0.0,0.0,2015-16 8855,Sasha Kaun,CLE,31.0,210.82,117.93392,Kansas,Russia,2008,2,56,25,0.9,1.0,0.1,-3.2,0.14300000000000002,0.154,0.134,0.527,0.052000000000000005,2015-16 8856,Sasha Vujacic,NYK,32.0,200.66,88.45044,None,Slovenia,2004,1,27,61,4.9,2.4,1.4,-1.9,0.03,0.151,0.16399999999999998,0.503,0.146,2015-16 8857,Sean Kilpatrick,BKN,26.0,193.04,99.336648,Cincinnati,USA,Undrafted,Undrafted,Undrafted,31,11.1,1.8,0.9,-12.3,0.021,0.083,0.23,0.5760000000000001,0.078,2015-16 8858,Serge Ibaka,OKC,26.0,208.28,111.13004,None,Democratic Republic of the Congo,2008,1,24,78,12.6,6.8,0.8,9.9,0.065,0.16,0.17600000000000002,0.5329999999999999,0.037000000000000005,2015-16 8859,Sergey Karasev,BKN,22.0,200.66,94.34713599999999,None,Russia,2013,1,19,40,2.4,1.5,0.9,1.0,0.024,0.15,0.12,0.562,0.114,2015-16 8860,Seth Curry,SAC,25.0,187.96,83.91452,Duke,USA,Undrafted,Undrafted,Undrafted,44,6.8,1.4,1.5,-3.7,0.013999999999999999,0.081,0.17600000000000002,0.603,0.14800000000000002,2015-16 8861,Shabazz Muhammad,MIN,23.0,198.12,101.151016,UCLA,USA,2013,1,14,82,10.5,3.3,0.6,-6.6,0.071,0.11699999999999999,0.22899999999999998,0.5479999999999999,0.055,2015-16 8862,Shabazz Napier,ORL,24.0,185.42,79.3786,Connecticut,USA,2014,1,24,55,3.7,1.0,1.8,-5.2,0.016,0.087,0.20199999999999999,0.46,0.253,2015-16 8863,Shane Larkin,BKN,23.0,180.34,79.3786,Miami (FL),USA,2013,1,18,78,7.3,2.3,4.4,-9.6,0.018000000000000002,0.10400000000000001,0.175,0.515,0.3,2015-16 8864,Shayne Whittington,IND,25.0,210.82,113.398,Western Michigan,USA,Undrafted,Undrafted,Undrafted,7,1.6,1.7,0.4,-8.4,0.11599999999999999,0.19399999999999998,0.182,0.46299999999999997,0.12,2015-16 8865,Ryan Kelly,LAL,25.0,210.82,104.32616,Duke,USA,2013,2,48,36,4.2,3.4,0.6,-0.9,0.046,0.22899999999999998,0.17600000000000002,0.44,0.07,2015-16 8866,Shelvin Mack,UTA,26.0,190.5,92.079176,Butler,USA,2011,2,34,52,8.6,2.5,3.6,3.6,0.013999999999999999,0.125,0.23399999999999999,0.507,0.292,2015-16 8867,Ricky Rubio,MIN,25.0,193.04,87.996848,None,Spain,2009,1,5,76,10.1,4.3,8.7,1.1,0.02,0.139,0.17600000000000002,0.529,0.402,2015-16 8868,Richard Jefferson,CLE,36.0,200.66,105.68693600000002,Arizona,USA,2001,1,13,74,5.5,1.7,0.8,-2.3,0.013000000000000001,0.096,0.136,0.585,0.07,2015-16 8869,Otto Porter Jr.,WAS,23.0,203.2,89.811216,Georgetown,USA,2013,1,3,75,11.6,5.2,1.6,0.6,0.047,0.14800000000000002,0.16,0.564,0.076,2015-16 8870,PJ Hairston,MEM,23.0,198.12,104.32616,North Carolina,USA,2014,1,26,66,6.2,2.6,0.6,-6.0,0.02,0.136,0.16399999999999998,0.47,0.045,2015-16 8871,PJ Tucker,PHX,31.0,198.12,111.13004,Texas,USA,2006,2,35,82,8.0,6.2,2.2,-7.2,0.07,0.152,0.127,0.506,0.10400000000000001,2015-16 8872,Pablo Prigioni,LAC,39.0,190.5,83.91452,None,Argentina,Undrafted,Undrafted,Undrafted,59,2.5,1.9,2.2,-2.7,0.05,0.10300000000000001,0.11199999999999999,0.48200000000000004,0.235,2015-16 8873,Pat Connaughton,POR,23.0,195.58,93.439952,Notre Dame,USA,2015,2,41,34,1.1,0.9,0.3,-6.7,0.08,0.14400000000000002,0.188,0.35200000000000004,0.115,2015-16 8874,Patrick Beverley,HOU,27.0,185.42,83.91452,Arkansas,USA,2009,2,42,71,9.9,3.5,3.4,3.1,0.04,0.09699999999999999,0.155,0.5529999999999999,0.175,2015-16 8875,Patrick Patterson,TOR,27.0,205.74,106.59411999999999,Kentucky,USA,2010,1,14,79,6.9,4.3,1.2,9.3,0.046,0.146,0.131,0.534,0.07,2015-16 8876,Patty Mills,SAS,27.0,182.88,83.91452,Saint Mary's (CA),Australia,2009,2,55,81,8.5,2.0,2.8,12.2,0.019,0.087,0.193,0.541,0.19699999999999998,2015-16 8877,Pau Gasol,CHI,35.0,213.36,113.398,None,Spain,2001,1,3,72,16.5,11.0,4.1,-1.2,0.073,0.27699999999999997,0.24600000000000002,0.529,0.215,2015-16 8878,Paul George,IND,26.0,205.74,99.79024,Fresno State,USA,2010,1,10,81,23.1,7.0,4.1,3.3,0.031,0.187,0.301,0.557,0.203,2015-16 8879,Paul Millsap,ATL,31.0,203.2,111.58363200000001,Louisiana Tech,USA,2006,2,47,81,17.1,9.0,3.3,4.0,0.083,0.213,0.24,0.556,0.162,2015-16 8880,Paul Pierce,LAC,38.0,200.66,106.59411999999999,Kansas,USA,1998,1,10,68,6.1,2.7,1.0,2.2,0.011000000000000001,0.151,0.18,0.489,0.08800000000000001,2015-16 8881,Richaun Holmes,PHI,22.0,208.28,111.13004,Bowling Green,USA,2015,2,37,51,5.6,2.6,0.6,-2.5,0.099,0.121,0.175,0.564,0.073,2015-16 8882,Phil Pressey,POR,25.0,180.34,79.3786,Missouri,USA,Undrafted,Undrafted,Undrafted,23,3.3,1.3,3.3,-6.7,0.011000000000000001,0.109,0.17800000000000002,0.433,0.395,2015-16 8883,RJ Hunter,BOS,22.0,195.58,83.91452,Georgia State,USA,2015,1,28,36,2.7,1.0,0.4,-3.5,0.006,0.131,0.155,0.48,0.068,2015-16 8884,Rajon Rondo,SAC,30.0,185.42,84.368112,Kentucky,USA,2006,1,21,72,11.9,6.0,11.7,-3.4,0.033,0.15,0.187,0.506,0.473,2015-16 8885,Rakeem Christmas,IND,24.0,205.74,113.398,Syracuse,USA,2015,2,36,1,4.0,1.0,0.0,-85.4,0.25,0.0,0.154,1.0,0.0,2015-16 8886,Ramon Sessions,WAS,30.0,190.5,86.18248,Nevada,USA,2007,2,56,82,9.9,2.5,2.9,-1.4,0.017,0.12300000000000001,0.22,0.565,0.228,2015-16 8887,Randy Foye,OKC,32.0,193.04,96.615096,Villanova,USA,2006,1,7,81,5.9,1.9,2.0,1.0,0.016,0.086,0.16,0.461,0.14400000000000002,2015-16 8888,Rashad Vaughn,MIL,19.0,198.12,91.625584,UNLV,USA,2015,1,17,70,3.1,1.3,0.6,-6.8,0.012,0.086,0.133,0.39799999999999996,0.055,2015-16 8889,Rasual Butler,SAS,37.0,200.66,97.52228000000001,La Salle,USA,2002,2,52,46,2.7,1.2,0.5,11.9,0.008,0.13,0.129,0.5579999999999999,0.079,2015-16 8890,Raul Neto,UTA,24.0,185.42,81.19296800000001,None,Brazil,2013,2,47,81,5.9,1.5,2.1,3.6,0.013999999999999999,0.08,0.17600000000000002,0.53,0.19,2015-16 8891,Ray McCallum,SAS,25.0,190.5,86.18248,Detroit Mercy,USA,2013,2,36,41,3.3,1.1,1.5,3.1,0.018000000000000002,0.096,0.168,0.449,0.185,2015-16 8892,Raymond Felton,DAL,32.0,185.42,92.98635999999999,North Carolina,USA,2005,1,5,80,9.5,3.2,3.6,0.8,0.018000000000000002,0.111,0.184,0.502,0.205,2015-16 8893,Reggie Bullock,DET,25.0,200.66,92.98635999999999,North Carolina,USA,2013,1,25,37,3.3,1.8,0.7,-7.5,0.034,0.151,0.11699999999999999,0.583,0.1,2015-16 8894,Reggie Jackson,DET,26.0,190.5,94.34713599999999,Boston College,USA,2011,1,24,79,18.8,3.2,6.2,1.6,0.025,0.092,0.28800000000000003,0.535,0.344,2015-16 8895,Quincy Acy,SAC,25.0,200.66,108.86208,Baylor,USA,2012,2,37,59,5.2,3.2,0.5,-7.6,0.079,0.154,0.131,0.629,0.045,2015-16 8896,Orlando Johnson,NOP,27.0,195.58,99.79024,California-Santa Barbara,USA,2012,2,36,7,3.7,2.1,0.3,-16.1,0.035,0.141,0.16899999999999998,0.34600000000000003,0.031,2015-16 8897,Solomon Hill,IND,25.0,200.66,102.0582,Arizona,USA,2013,1,23,59,4.2,2.8,1.0,4.2,0.049,0.156,0.131,0.5429999999999999,0.09300000000000001,2015-16 8898,Spencer Dinwiddie,CHI,23.0,198.12,90.7184,Colorado,USA,2014,2,38,12,4.8,1.4,1.8,-17.0,0.025,0.094,0.213,0.423,0.297,2015-16 8899,Trevor Ariza,HOU,31.0,203.2,97.52228000000001,UCLA,USA,2004,2,43,81,12.7,4.5,2.3,0.4,0.026000000000000002,0.11900000000000001,0.158,0.551,0.1,2015-16 8900,Trevor Booker,UTA,28.0,203.2,103.418976,Clemson,USA,2010,1,23,79,5.9,5.7,1.1,1.6,0.11900000000000001,0.20199999999999999,0.14400000000000002,0.5329999999999999,0.083,2015-16 8901,Trey Burke,UTA,23.0,185.42,86.636072,Michigan,USA,2013,1,9,64,10.6,1.8,2.3,-2.0,0.015,0.08,0.247,0.507,0.201,2015-16 8902,Trey Lyles,UTA,20.0,208.28,106.140528,Kentucky,USA,2015,1,12,80,6.1,3.7,0.7,-0.9,0.048,0.203,0.183,0.517,0.07200000000000001,2015-16 8903,Tristan Thompson,CLE,25.0,205.74,107.95489599999999,Texas,Canada,2011,1,4,82,7.8,9.0,0.8,7.9,0.133,0.233,0.11599999999999999,0.611,0.04,2015-16 8904,Troy Daniels,CHA,24.0,193.04,92.98635999999999,Virginia Commonwealth,USA,Undrafted,Undrafted,Undrafted,43,5.6,1.3,0.5,-2.4,0.016,0.11900000000000001,0.20199999999999999,0.634,0.083,2015-16 8905,Ty Lawson,IND,28.0,180.34,88.45044,North Carolina,USA,2009,1,18,66,5.7,1.8,3.6,-6.2,0.019,0.07200000000000001,0.147,0.47600000000000003,0.251,2015-16 8906,Tyler Ennis,MIL,21.0,190.5,87.996848,Syracuse,Canada,2014,1,18,46,4.5,1.6,2.1,-5.5,0.023,0.10800000000000001,0.17300000000000001,0.51,0.225,2015-16 8907,Tyler Hansbrough,CHA,30.0,205.74,113.398,North Carolina,USA,2009,1,13,44,2.4,2.0,0.2,-1.2,0.11900000000000001,0.174,0.146,0.522,0.038,2015-16 8908,Tyler Johnson,MIA,24.0,193.04,84.368112,Fresno State,USA,Undrafted,Undrafted,Undrafted,36,8.7,3.0,2.2,2.4,0.038,0.10400000000000001,0.172,0.579,0.151,2015-16 8909,Tyler Zeller,BOS,26.0,213.36,114.758776,North Carolina,USA,2012,1,17,60,6.1,3.0,0.5,-3.4,0.091,0.168,0.23,0.539,0.073,2015-16 8910,Tyreke Evans,NOP,26.0,198.12,99.79024,Memphis,USA,2009,1,4,25,15.2,5.2,6.6,-0.9,0.028999999999999998,0.159,0.254,0.534,0.366,2015-16 8911,Tony Wroten,NYK,23.0,198.12,92.98635999999999,Washington,USA,2012,1,25,8,8.4,2.6,2.5,-24.2,0.015,0.141,0.32,0.41200000000000003,0.27399999999999997,2015-16 8912,Tyson Chandler,PHX,33.0,215.9,108.86208,None,USA,2001,1,2,66,7.2,8.7,1.0,-12.6,0.11599999999999999,0.272,0.128,0.606,0.064,2015-16 8913,Udonis Haslem,MIA,36.0,203.2,106.59411999999999,Florida,USA,Undrafted,Undrafted,Undrafted,37,1.6,2.0,0.4,0.0,0.05,0.301,0.136,0.43200000000000005,0.08,2015-16 8914,Victor Oladipo,ORL,24.0,193.04,95.25432,Indiana,USA,2013,1,2,72,16.0,4.8,3.9,-0.6,0.022000000000000002,0.135,0.228,0.534,0.182,2015-16 8915,Vince Carter,MEM,39.0,198.12,99.79024,North Carolina,USA,1998,1,5,60,6.6,2.4,0.9,-3.0,0.033,0.132,0.18100000000000002,0.52,0.08900000000000001,2015-16 8916,Wayne Ellington,BKN,28.0,193.04,90.7184,North Carolina,USA,2009,1,28,76,7.7,2.3,1.1,-10.6,0.013000000000000001,0.107,0.17600000000000002,0.498,0.08199999999999999,2015-16 8917,Wesley Johnson,LAC,28.0,200.66,97.52228000000001,Syracuse,USA,2010,1,4,80,6.9,3.1,0.6,3.3,0.024,0.13699999999999998,0.157,0.513,0.045,2015-16 8918,Wesley Matthews,DAL,29.0,195.58,99.79024,Marquette,USA,Undrafted,Undrafted,Undrafted,78,12.5,3.1,1.9,2.7,0.011000000000000001,0.08900000000000001,0.174,0.532,0.08800000000000001,2015-16 8919,Will Barton,DEN,25.0,198.12,79.3786,Memphis,USA,2012,2,40,82,14.4,5.8,2.5,-3.5,0.027999999999999997,0.20199999999999999,0.231,0.535,0.147,2015-16 8920,Willie Cauley-Stein,SAC,22.0,213.36,108.86208,Kentucky,USA,2015,1,6,66,7.0,5.3,0.6,-2.7,0.105,0.166,0.133,0.588,0.038,2015-16 8921,Willie Reed,BKN,26.0,208.28,99.79024,Saint Louis,USA,Undrafted,Undrafted,Undrafted,39,4.7,3.1,0.3,-7.9,0.132,0.20600000000000002,0.18,0.579,0.039,2015-16 8922,Xavier Munford,MEM,24.0,190.5,81.64656,Rhode Island,USA,Undrafted,Undrafted,Undrafted,14,5.7,2.2,1.6,-9.5,0.013000000000000001,0.14400000000000002,0.172,0.48100000000000004,0.136,2015-16 8923,Jordan McRae,CLE,25.0,195.58,81.19296800000001,Tennessee,USA,2014,2,58,22,4.5,0.9,1.1,10.6,0.024,0.08199999999999999,0.253,0.5479999999999999,0.21600000000000003,2015-16 8924,Zach LaVine,MIN,21.0,195.58,85.728888,UCLA,USA,2014,1,13,82,14.0,2.8,3.1,-5.5,0.013999999999999999,0.1,0.233,0.5479999999999999,0.187,2015-16 8925,Tyus Jones,MIN,20.0,187.96,88.45044,Duke,USA,2015,1,24,37,4.2,1.3,2.9,-10.0,0.013999999999999999,0.083,0.159,0.45,0.278,2015-16 8926,Sonny Weems,PHX,29.0,198.12,92.98635999999999,Arkansas,USA,2008,2,39,43,2.5,1.2,1.1,-10.7,0.013999999999999999,0.109,0.132,0.45899999999999996,0.14800000000000002,2015-16 8927,Tony Snell,CHI,24.0,200.66,90.7184,New Mexico,USA,2013,1,20,64,5.3,3.1,1.0,4.5,0.016,0.132,0.13699999999999998,0.478,0.07,2015-16 8928,Tony Allen,MEM,34.0,193.04,96.615096,Oklahoma State,USA,2004,1,25,64,8.4,4.6,1.1,-1.4,0.071,0.14300000000000002,0.17,0.505,0.068,2015-16 8929,Spencer Hawes,CHA,28.0,215.9,111.13004,Washington,USA,2007,1,10,57,6.0,4.3,1.9,2.1,0.053,0.201,0.171,0.508,0.171,2015-16 8930,Stanley Johnson,DET,20.0,200.66,111.13004,Arizona,USA,2015,1,8,73,8.1,4.2,1.6,-3.8,0.036000000000000004,0.16399999999999998,0.196,0.46,0.113,2015-16 8931,Stephen Curry,GSW,28.0,190.5,86.18248,Davidson,USA,2009,1,7,79,30.1,5.4,6.7,18.3,0.028999999999999998,0.131,0.32,0.669,0.315,2015-16 8932,Steve Blake,DET,36.0,190.5,78.017824,Maryland,USA,2003,2,38,58,4.4,1.5,3.4,-3.7,0.01,0.092,0.14800000000000002,0.51,0.311,2015-16 8933,Steve Novak,MIL,33.0,208.28,102.0582,Marquette,USA,2006,2,32,10,2.4,0.5,0.0,5.1,0.0,0.102,0.18,0.6509999999999999,0.0,2015-16 8934,Steven Adams,OKC,22.0,213.36,115.66596000000001,Pittsburgh,New Zealand,2013,1,12,80,8.0,6.7,0.8,11.1,0.124,0.158,0.127,0.621,0.042,2015-16 8935,T.J. McConnell,PHI,24.0,187.96,90.7184,Arizona,USA,Undrafted,Undrafted,Undrafted,81,6.1,3.1,4.5,-7.9,0.028999999999999998,0.154,0.171,0.511,0.36,2015-16 8936,TJ Warren,PHX,22.0,203.2,104.32616,North Carolina State,USA,2014,1,14,47,11.0,3.1,0.9,-7.2,0.057,0.1,0.198,0.5489999999999999,0.068,2015-16 8937,Taj Gibson,CHI,31.0,205.74,102.0582,Southern California,USA,2009,1,26,73,8.6,6.9,1.5,-2.6,0.11599999999999999,0.155,0.14800000000000002,0.556,0.083,2015-16 8938,Tarik Black,LAL,24.0,205.74,113.398,Kansas,USA,Undrafted,Undrafted,Undrafted,39,3.4,4.0,0.4,0.7,0.1,0.257,0.13,0.537,0.053,2015-16 8939,Tayshaun Prince,MIN,36.0,205.74,96.16150400000001,Kentucky,USA,2002,1,23,77,2.9,1.9,1.0,-1.9,0.025,0.08900000000000001,0.083,0.466,0.073,2015-16 8940,Terrence Jones,HOU,24.0,205.74,114.30518400000001,Kentucky,USA,2012,1,18,50,8.7,4.2,0.8,-10.5,0.064,0.166,0.195,0.519,0.069,2015-16 8941,Tony Parker,SAS,34.0,187.96,83.91452,None,France,2001,1,28,72,11.9,2.4,5.3,10.6,0.01,0.08900000000000001,0.214,0.546,0.294,2015-16 8942,Terrence Ross,TOR,25.0,200.66,88.45044,Washington,USA,2012,1,8,73,9.9,2.5,0.8,5.7,0.013999999999999999,0.10400000000000001,0.183,0.551,0.053,2015-16 8943,Thabo Sefolosha,ATL,32.0,200.66,99.79024,None,Switzerland,2006,1,13,75,6.4,4.5,1.4,3.1,0.034,0.171,0.125,0.579,0.09300000000000001,2015-16 8944,Thaddeus Young,BKN,28.0,203.2,100.243832,Georgia Tech,USA,2007,1,12,73,15.1,9.0,1.9,-4.4,0.083,0.22699999999999998,0.21899999999999997,0.5329999999999999,0.094,2015-16 8945,Thanasis Antetokounmpo,NYK,23.0,200.66,92.98635999999999,None,Greece,2014,2,51,2,3.0,0.5,0.0,-26.1,0.0,0.125,0.28800000000000003,0.75,0.0,2015-16 8946,Thomas Robinson,BKN,25.0,208.28,107.501304,Kansas,USA,2012,1,5,71,4.3,5.1,0.6,-13.9,0.152,0.293,0.192,0.45299999999999996,0.08,2015-16 8947,Tiago Splitter,ATL,31.0,210.82,111.13004,None,Brazil,2007,1,28,36,5.6,3.3,0.8,9.3,0.09,0.145,0.154,0.5710000000000001,0.077,2015-16 8948,Tibor Pleiss,UTA,26.0,220.98,116.119552,None,Germany,2010,2,31,12,2.0,1.3,0.2,-6.0,0.095,0.134,0.19899999999999998,0.46399999999999997,0.043,2015-16 8949,Tim Duncan,SAS,40.0,210.82,113.398,Wake Forest,US Virgin Islands,1997,1,1,61,8.6,7.3,2.7,13.7,0.087,0.23399999999999999,0.174,0.523,0.153,2015-16 8950,Tim Frazier,NOP,25.0,185.42,77.11064,None,USA,Undrafted,Undrafted,Undrafted,51,5.1,2.2,3.2,-0.5,0.039,0.126,0.198,0.499,0.33899999999999997,2015-16 8951,Tim Hardaway Jr.,ATL,24.0,198.12,92.98635999999999,Michigan,USA,2013,1,24,51,6.4,1.7,1.0,6.1,0.009000000000000001,0.09699999999999999,0.16399999999999998,0.563,0.08900000000000001,2015-16 8952,Timofey Mozgov,CLE,29.0,215.9,124.7378,None,Russia,Undrafted,Undrafted,Undrafted,76,6.3,4.4,0.4,0.8,0.09699999999999999,0.187,0.165,0.593,0.039,2015-16 8953,Tobias Harris,DET,23.0,205.74,106.59411999999999,Tennessee,USA,2011,1,19,76,14.7,6.7,2.2,-0.5,0.042,0.184,0.195,0.56,0.106,2015-16 8954,Toney Douglas,NOP,30.0,187.96,88.45044,Florida State,USA,2009,1,29,61,8.7,2.3,2.6,-4.8,0.02,0.111,0.192,0.5429999999999999,0.188,2015-16 8955,Terry Rozier,BOS,22.0,187.96,86.18248,Louisville,USA,2015,1,16,39,1.8,1.6,0.9,-6.6,0.071,0.134,0.17600000000000002,0.326,0.19899999999999998,2015-16 8956,Omri Casspi,SAC,28.0,205.74,102.0582,None,Israel,2009,1,23,69,11.8,5.9,1.4,-0.2,0.034,0.196,0.177,0.5870000000000001,0.07400000000000001,2015-16 8957,Shaun Livingston,GSW,30.0,200.66,87.089664,None,USA,2004,1,4,78,6.3,2.2,3.0,8.5,0.032,0.08900000000000001,0.145,0.581,0.222,2015-16 8958,Omer Asik,NOP,29.0,213.36,115.66596000000001,None,Turkey,2008,2,36,68,4.0,6.1,0.4,-9.3,0.10300000000000001,0.28,0.115,0.551,0.032,2015-16 8959,Kevon Looney,GSW,20.0,205.74,99.79024,UCLA,USA,2015,1,30,5,1.8,2.0,0.0,-41.8,0.16,0.375,0.154,0.643,0.0,2015-16 8960,Kirk Hinrich,ATL,35.0,193.04,86.18248,Kansas,USA,2003,1,7,46,3.0,1.5,1.6,1.5,0.013999999999999999,0.107,0.11699999999999999,0.504,0.17300000000000001,2015-16 8961,Klay Thompson,GSW,26.0,200.66,97.52228000000001,Washington State,USA,2011,1,11,80,22.1,3.8,2.1,15.7,0.015,0.1,0.264,0.597,0.094,2015-16 8962,Kobe Bryant,LAL,37.0,198.12,96.16150400000001,None,USA,1996,1,13,66,17.6,3.7,2.8,-15.8,0.023,0.12300000000000001,0.319,0.469,0.183,2015-16 8963,Kosta Koufos,SAC,27.0,213.36,120.20188,Ohio State,USA,2008,1,23,78,6.8,5.4,0.4,-7.1,0.122,0.19,0.155,0.54,0.034,2015-16 8964,Kostas Papanikolaou,DEN,25.0,203.2,106.59411999999999,None,Greece,2012,2,48,26,2.6,1.5,0.6,-0.2,0.032,0.125,0.145,0.46399999999999997,0.077,2015-16 8965,Kris Humphries,ATL,31.0,205.74,106.59411999999999,Minnesota,USA,2004,1,14,53,6.5,4.1,0.7,-5.2,0.073,0.21600000000000003,0.192,0.517,0.068,2015-16 8966,Kristaps Porzingis,NYK,20.0,220.98,108.86208,None,Latvia,2015,1,4,72,14.3,7.3,1.3,-0.2,0.071,0.20600000000000002,0.245,0.518,0.076,2015-16 8967,Kyle Anderson,SAS,22.0,205.74,104.32616,UCLA,USA,2014,1,30,78,4.5,3.1,1.6,10.0,0.024,0.201,0.147,0.528,0.14,2015-16 8968,Kyle Korver,ATL,35.0,200.66,96.16150400000001,Creighton,USA,2003,2,51,80,9.2,3.3,2.1,6.3,0.006,0.10800000000000001,0.135,0.5770000000000001,0.095,2015-16 8969,Kyle Lowry,TOR,30.0,182.88,92.98635999999999,Villanova,USA,2006,1,24,77,21.2,4.7,6.4,6.0,0.023,0.124,0.26,0.578,0.293,2015-16 8970,Kyle O'Quinn,NYK,26.0,208.28,113.398,Norfolk State,USA,2012,2,49,65,4.8,3.8,1.1,-4.3,0.114,0.237,0.212,0.52,0.161,2015-16 8971,Kevin Seraphin,NYK,26.0,208.28,126.098576,Le Moyne,France,2010,1,17,48,3.9,2.6,1.0,-10.4,0.065,0.19399999999999998,0.223,0.435,0.157,2015-16 8972,Kyle Singler,OKC,28.0,203.2,103.418976,Duke,USA,2011,2,33,68,3.4,2.1,0.4,-0.7,0.055999999999999994,0.099,0.11699999999999999,0.48100000000000004,0.035,2015-16 8973,LaMarcus Aldridge,SAS,30.0,210.82,108.86208,Texas,USA,2006,1,2,74,18.0,8.5,1.5,12.0,0.091,0.222,0.26,0.565,0.081,2015-16 8974,Lamar Patterson,ATL,24.0,195.58,102.0582,Pittsburgh,USA,2014,2,48,35,2.4,1.4,1.1,3.1,0.012,0.141,0.126,0.46799999999999997,0.134,2015-16 8975,Lance Stephenson,MEM,25.0,195.58,104.32616,Cincinnati,USA,2010,2,40,69,8.3,3.2,1.9,-2.4,0.032,0.152,0.19899999999999998,0.5479999999999999,0.152,2015-16 8976,Lance Thomas,NYK,28.0,203.2,106.59411999999999,Duke,USA,Undrafted,Undrafted,Undrafted,59,8.2,2.2,0.9,-0.1,0.03,0.079,0.172,0.557,0.066,2015-16 8977,Langston Galloway,NYK,24.0,187.96,90.7184,Saint Joseph's,USA,Undrafted,Undrafted,Undrafted,82,7.6,3.5,2.5,-2.9,0.023,0.131,0.155,0.49,0.161,2015-16 8978,Larry Nance Jr.,LAL,23.0,205.74,104.32616,Wyoming,USA,2015,1,27,63,5.5,5.0,0.7,-5.2,0.086,0.184,0.126,0.544,0.055,2015-16 8979,Lavoy Allen,IND,27.0,205.74,115.66596000000001,Temple,USA,2011,2,50,79,5.4,5.4,1.0,6.9,0.114,0.18,0.131,0.532,0.07,2015-16 8980,LeBron James,CLE,31.0,203.2,113.398,None,USA,2003,1,1,76,25.3,7.4,6.8,11.0,0.047,0.187,0.311,0.588,0.33899999999999997,2015-16 8981,Leandro Barbosa,GSW,33.0,190.5,87.996848,None,Brazil,2003,1,28,68,6.4,1.7,1.2,3.1,0.027999999999999997,0.09,0.179,0.545,0.11199999999999999,2015-16 8982,Lorenzo Brown,DET,25.0,195.58,85.728888,North Carolina State,USA,2013,2,52,8,2.5,0.9,1.4,-29.1,0.0,0.149,0.261,0.374,0.306,2015-16 8983,Lou Amundson,NYK,33.0,205.74,99.79024,Nevada-Las Vegas,USA,Undrafted,Undrafted,Undrafted,29,1.8,1.7,0.4,-9.7,0.115,0.13699999999999998,0.175,0.401,0.107,2015-16 8984,Lou Williams,LAL,29.0,185.42,79.3786,None,USA,2005,2,45,67,15.3,2.5,2.5,-10.8,0.017,0.08,0.22699999999999998,0.584,0.149,2015-16 8985,Kyrie Irving,CLE,24.0,190.5,87.543256,Duke,Australia,2011,1,1,53,19.6,3.0,4.7,5.7,0.03,0.078,0.293,0.54,0.253,2015-16 8986,Luc Mbah a Moute,LAC,29.0,203.2,104.32616,UCLA,Cameroon,2008,2,37,75,3.1,2.3,0.4,11.5,0.053,0.09,0.09699999999999999,0.498,0.032,2015-16 8987,Kevin Martin,SAS,33.0,200.66,90.264808,Western Carolina,USA,2004,1,26,55,9.3,2.0,1.1,-5.4,0.013999999999999999,0.102,0.222,0.52,0.08900000000000001,2015-16 8988,Kevin Garnett,MIN,40.0,210.82,108.86208,None,USA,1995,1,5,38,3.2,3.9,1.6,6.6,0.031,0.262,0.11699999999999999,0.491,0.16399999999999998,2015-16 8989,Jorge Gutierrez,CHA,27.0,190.5,85.728888,California-Berkeley,Mexico,Undrafted,Undrafted,Undrafted,12,1.8,0.6,1.4,11.6,0.0,0.10300000000000001,0.155,0.6940000000000001,0.395,2015-16 8990,Jose Calderon,NYK,34.0,190.5,90.7184,None,Spain,Undrafted,Undrafted,Undrafted,72,7.6,3.2,4.1,-2.0,0.012,0.109,0.126,0.5710000000000001,0.213,2015-16 8991,Josh Huestis,OKC,24.0,200.66,104.32616,Stanford,USA,2014,1,29,5,2.8,2.0,0.0,-3.4,0.045,0.157,0.132,0.509,0.0,2015-16 8992,Josh McRoberts,MIA,29.0,208.28,108.86208,Duke,USA,2007,2,37,42,3.6,2.5,1.9,2.0,0.044000000000000004,0.157,0.154,0.45299999999999996,0.204,2015-16 8993,Josh Richardson,MIA,22.0,198.12,90.7184,Tennessee,USA,2015,2,40,52,6.6,2.1,1.4,3.1,0.023,0.085,0.13699999999999998,0.569,0.098,2015-16 8994,Josh Smith,HOU,30.0,205.74,102.0582,None,USA,2004,1,17,55,6.0,3.5,1.6,-4.2,0.059000000000000004,0.177,0.226,0.439,0.172,2015-16 8995,Jrue Holiday,NOP,26.0,193.04,92.98635999999999,UCLA,USA,2009,1,17,65,16.8,3.0,6.0,-0.3,0.016,0.106,0.287,0.529,0.365,2015-16 8996,Julius Randle,LAL,21.0,205.74,113.398,Kentucky,USA,2014,1,7,81,11.3,10.2,1.8,-15.4,0.077,0.327,0.212,0.48200000000000004,0.111,2015-16 8997,Justin Anderson,DAL,22.0,198.12,103.418976,Virginia,USA,2015,1,21,55,3.8,2.4,0.5,2.2,0.028999999999999998,0.188,0.155,0.522,0.071,2015-16 8998,Justin Harper,BKN,26.0,208.28,102.0582,Richmond,USA,2011,2,32,5,2.6,0.2,0.0,-51.9,0.0,0.038,0.177,0.597,0.0,2015-16 8999,Justin Holiday,CHI,27.0,198.12,83.91452,Washington,USA,Undrafted,Undrafted,Undrafted,53,4.5,1.7,1.1,-3.4,0.017,0.111,0.16399999999999998,0.489,0.111,2015-16 9000,Justise Winslow,MIA,20.0,200.66,102.0582,Duke,USA,2015,1,10,78,6.4,5.2,1.5,3.9,0.042,0.158,0.124,0.489,0.077,2015-16 9001,Kevin Love,CLE,27.0,208.28,113.851592,UCLA,USA,2008,1,5,77,16.0,9.9,2.4,8.4,0.071,0.287,0.235,0.5529999999999999,0.11900000000000001,2015-16 9002,Jusuf Nurkic,DEN,21.0,213.36,127.00576000000001,None,Bosnia & Herzegovina,2014,1,16,32,8.2,5.5,1.3,-1.3,0.128,0.22699999999999998,0.272,0.46,0.12300000000000001,2015-16 9003,Karl-Anthony Towns,MIN,20.0,213.36,110.676448,Kentucky,USA,2015,1,1,82,18.3,10.5,2.0,-2.1,0.102,0.271,0.247,0.59,0.10800000000000001,2015-16 9004,Kawhi Leonard,SAS,25.0,200.66,104.32616,San Diego State,USA,2011,1,15,72,21.2,6.8,2.6,14.3,0.046,0.182,0.258,0.616,0.128,2015-16 9005,Keith Appling,ORL,24.0,185.42,83.91452,Michigan State,USA,Undrafted,Undrafted,Undrafted,5,1.2,0.2,0.2,20.3,0.0,0.042,0.201,0.33799999999999997,0.059000000000000004,2015-16 9006,Kelly Olynyk,BOS,25.0,213.36,107.95489599999999,Gonzaga,Canada,2013,1,13,69,10.0,4.1,1.5,5.2,0.054000000000000006,0.158,0.207,0.561,0.11900000000000001,2015-16 9007,Kelly Oubre Jr.,WAS,20.0,200.66,92.98635999999999,Kansas,USA,2015,1,15,63,3.7,2.1,0.2,-1.9,0.039,0.177,0.17300000000000001,0.507,0.028999999999999998,2015-16 9008,Kemba Walker,CHA,26.0,185.42,83.46092800000001,Connecticut,USA,2011,1,9,81,20.9,4.4,5.2,4.2,0.021,0.11599999999999999,0.265,0.5539999999999999,0.253,2015-16 9009,Kendall Marshall,PHI,24.0,193.04,90.7184,North Carolina,USA,2012,1,13,30,3.7,0.9,2.4,-14.6,0.005,0.076,0.18100000000000002,0.449,0.266,2015-16 9010,Kendrick Perkins,NOP,31.0,208.28,122.46983999999999,None,USA,2003,1,27,37,2.5,3.5,0.8,-5.8,0.053,0.225,0.106,0.529,0.077,2015-16 9011,Kenneth Faried,DEN,26.0,203.2,103.418976,Morehead State,USA,2011,1,22,67,12.5,8.7,1.2,-4.3,0.15,0.23199999999999998,0.207,0.5770000000000001,0.077,2015-16 9012,Kent Bazemore,ATL,26.0,195.58,91.171992,Old Dominion,USA,Undrafted,Undrafted,Undrafted,75,11.6,5.1,2.3,3.2,0.015,0.17600000000000002,0.19899999999999998,0.551,0.127,2015-16 9013,Kentavious Caldwell-Pope,DET,23.0,195.58,92.98635999999999,Georgia,USA,2013,1,8,76,14.5,3.7,1.8,2.0,0.026000000000000002,0.085,0.18,0.521,0.075,2015-16 9014,Kevin Durant,OKC,27.0,205.74,108.86208,Texas,USA,2007,1,2,72,28.2,8.2,5.0,11.2,0.021,0.209,0.305,0.634,0.23,2015-16 9015,KJ McDaniels,HOU,23.0,198.12,92.98635999999999,Clemson,USA,2014,2,32,37,2.4,1.1,0.3,18.9,0.078,0.10400000000000001,0.188,0.522,0.059000000000000004,2015-16 9016,Lucas Nogueira,TOR,23.0,213.36,99.79024,None,Brazil,2013,1,16,29,2.2,1.6,0.2,8.1,0.087,0.136,0.125,0.642,0.044000000000000004,2015-16 9017,Khris Middleton,MIL,24.0,203.2,106.140528,Texas A&M,USA,2012,2,39,79,18.2,3.8,4.2,-0.1,0.018000000000000002,0.10300000000000001,0.22899999999999998,0.56,0.183,2015-16 9018,Nate Robinson,NOP,32.0,175.26,81.64656,Washington,USA,2005,1,21,2,0.0,0.0,2.0,-43.4,0.0,0.0,0.019,0.0,0.28600000000000003,2015-16 9019,Mike Miller,DEN,36.0,203.2,98.88305600000001,Florida,USA,2000,1,5,47,1.3,1.1,0.9,-14.2,0.016,0.14,0.092,0.508,0.159,2015-16 9020,Mike Muscala,ATL,24.0,210.82,108.86208,Bucknell,USA,2013,2,44,60,3.3,2.0,0.6,-2.2,0.075,0.157,0.158,0.5760000000000001,0.099,2015-16 9021,Miles Plumlee,MIL,27.0,210.82,112.94440800000001,Duke,USA,2012,1,26,61,5.1,3.8,0.3,-4.5,0.121,0.174,0.154,0.606,0.03,2015-16 9022,Mirza Teletovic,PHX,30.0,205.74,109.769264,None,Bosnia,Undrafted,Undrafted,Undrafted,79,12.2,3.8,1.1,-5.8,0.035,0.16399999999999998,0.233,0.5710000000000001,0.08800000000000001,2015-16 9023,Mitch McGary,OKC,24.0,208.28,115.66596000000001,Michigan,USA,2014,1,21,20,1.3,0.9,0.2,-32.2,0.068,0.222,0.20800000000000002,0.474,0.071,2015-16 9024,Mo Williams,CLE,33.0,185.42,89.811216,Alabama,USA,2003,2,47,41,8.2,1.8,2.4,-5.0,0.009000000000000001,0.099,0.22699999999999998,0.527,0.231,2015-16 9025,Monta Ellis,IND,30.0,190.5,83.91452,None,USA,2005,2,40,81,13.8,3.3,4.7,2.5,0.017,0.091,0.21,0.504,0.222,2015-16 9026,Montrezl Harrell,HOU,22.0,203.2,108.86208,Louisville,USA,2015,2,32,39,3.6,1.7,0.4,5.0,0.076,0.10800000000000001,0.14400000000000002,0.635,0.067,2015-16 9027,Myles Turner,IND,20.0,210.82,110.22285600000001,Texas,USA,2015,1,11,60,10.3,5.5,0.7,-1.3,0.054000000000000006,0.207,0.21100000000000002,0.531,0.05,2015-16 9028,Nazr Mohammed,OKC,38.0,208.28,113.398,Kentucky,USA,1998,1,29,5,1.6,0.8,0.0,-9.5,0.055999999999999994,0.158,0.20600000000000002,0.68,0.0,2015-16 9029,Nemanja Bjelica,MIN,28.0,208.28,108.86208,None,Serbia,2010,2,35,60,5.1,3.5,1.4,-5.2,0.054000000000000006,0.17800000000000002,0.127,0.594,0.115,2015-16 9030,Nene,WAS,33.0,210.82,113.398,None,Brazil,2002,1,7,57,9.2,4.5,1.7,2.4,0.054000000000000006,0.22699999999999998,0.223,0.564,0.145,2015-16 9031,Mike Dunleavy,CHI,35.0,205.74,104.32616,Duke,USA,2002,1,3,31,7.2,2.7,1.3,-5.7,0.012,0.11599999999999999,0.14400000000000002,0.5429999999999999,0.076,2015-16 9032,Nerlens Noel,PHI,22.0,210.82,103.418976,Kentucky,USA,2013,1,6,67,11.1,8.1,1.8,-11.0,0.085,0.22,0.18899999999999997,0.544,0.107,2015-16 9033,Nick Young,LAL,31.0,200.66,95.25432,Southern California,USA,2007,1,16,54,7.3,1.8,0.6,-10.8,0.015,0.092,0.188,0.483,0.057999999999999996,2015-16 9034,Nicolas Batum,CHA,27.0,203.2,90.7184,None,France,2008,1,25,70,14.9,6.1,5.8,4.8,0.025,0.166,0.215,0.546,0.262,2015-16 9035,Nik Stauskas,PHI,22.0,198.12,92.98635999999999,Michigan,Canada,2014,1,8,73,8.5,2.5,1.9,-11.7,0.013000000000000001,0.10099999999999999,0.166,0.517,0.11900000000000001,2015-16 9036,Nikola Jokic,DEN,21.0,208.28,113.398,None,Serbia,2014,2,41,80,10.0,7.0,2.4,1.2,0.113,0.248,0.198,0.5820000000000001,0.17600000000000002,2015-16 9037,Nikola Mirotic,CHI,25.0,208.28,99.79024,None,Montenegro,2011,1,23,66,11.8,5.5,1.5,0.2,0.039,0.19699999999999998,0.21100000000000002,0.564,0.095,2015-16 9038,Nikola Pekovic,MIN,30.0,210.82,139.252744,None,Montenegro,2008,2,31,12,4.5,1.8,0.9,-18.3,0.053,0.11800000000000001,0.20800000000000002,0.45899999999999996,0.131,2015-16 9039,Nikola Vucevic,ORL,25.0,213.36,117.93392,Southern California,Montenegro,2011,1,16,65,18.2,8.9,2.8,-2.2,0.092,0.223,0.267,0.531,0.154,2015-16 9040,Noah Vonleh,POR,20.0,205.74,108.86208,Indiana,USA,2014,1,9,78,3.6,3.9,0.4,-2.7,0.083,0.20199999999999999,0.132,0.47100000000000003,0.037000000000000005,2015-16 9041,Norman Powell,TOR,23.0,193.04,97.52228000000001,UCLA,USA,2015,2,46,49,5.6,2.3,1.0,4.9,0.026000000000000002,0.142,0.179,0.541,0.102,2015-16 9042,Luis Montero,POR,23.0,200.66,83.91452,Westchester CC NY,Dominican Republic,Undrafted,Undrafted,Undrafted,12,1.2,0.3,0.1,-58.0,0.0,0.11800000000000001,0.266,0.337,0.067,2015-16 9043,Norris Cole,NOP,27.0,187.96,79.3786,Cleveland State,USA,2011,1,28,45,10.6,3.4,3.7,-5.5,0.009000000000000001,0.13699999999999998,0.21600000000000003,0.465,0.21899999999999997,2015-16 9044,O.J. Mayo,MIL,28.0,195.58,95.25432,Southern California,USA,2008,1,3,41,7.8,2.6,2.9,-1.2,0.013000000000000001,0.094,0.16899999999999998,0.474,0.156,2015-16 9045,Nick Collison,OKC,35.0,208.28,115.66596000000001,Kansas,USA,2003,1,12,59,2.1,2.9,0.9,3.1,0.107,0.161,0.107,0.498,0.10300000000000001,2015-16 9046,Mike Conley,MEM,28.0,185.42,79.3786,Ohio State,USA,2007,1,4,56,15.3,2.9,6.1,1.6,0.017,0.09300000000000001,0.231,0.5379999999999999,0.324,2015-16 9047,Mike Scott,ATL,27.0,203.2,107.501304,Virginia,USA,2012,2,43,75,6.2,2.7,1.0,5.1,0.052000000000000005,0.14400000000000002,0.17600000000000002,0.575,0.106,2015-16 9048,Michael Carter-Williams,MIL,24.0,198.12,86.18248,Syracuse,USA,2013,1,11,54,11.5,5.1,5.2,-3.3,0.033,0.154,0.21,0.498,0.264,2015-16 9049,Luis Scola,TOR,36.0,205.74,108.86208,None,Argentina,2002,2,55,76,8.7,4.8,0.9,-2.7,0.061,0.19899999999999998,0.193,0.523,0.066,2015-16 9050,Luke Babbitt,NOP,27.0,205.74,102.0582,Nevada,USA,2010,1,16,47,7.0,3.1,1.1,-3.1,0.032,0.166,0.172,0.526,0.092,2015-16 9051,Luol Deng,MIA,31.0,205.74,99.79024,Duke,United Kingdom,2004,1,7,74,12.3,6.0,1.9,1.3,0.052000000000000005,0.155,0.171,0.5489999999999999,0.087,2015-16 9052,Manu Ginobili,SAS,38.0,198.12,92.98635999999999,None,Argentina,1999,2,57,58,9.6,2.5,3.1,14.9,0.027999999999999997,0.115,0.231,0.573,0.23399999999999999,2015-16 9053,Marc Gasol,MEM,31.0,215.9,115.66596000000001,None,Spain,2007,2,48,52,16.6,7.0,3.8,-0.1,0.036000000000000004,0.20199999999999999,0.239,0.528,0.195,2015-16 9054,Marcelo Huertas,LAL,33.0,190.5,90.7184,None,Brazil,Undrafted,Undrafted,Undrafted,53,4.5,1.7,3.4,0.1,0.023,0.09300000000000001,0.165,0.488,0.327,2015-16 9055,Marcin Gortat,WAS,32.0,210.82,108.86208,None,Poland,2005,2,57,75,13.5,9.9,1.4,0.8,0.107,0.252,0.188,0.5920000000000001,0.07200000000000001,2015-16 9056,Marco Belinelli,SAC,30.0,195.58,95.25432,None,Italy,2007,1,18,68,10.2,1.7,1.9,-6.4,0.006,0.071,0.19899999999999998,0.5,0.11699999999999999,2015-16 9057,Marcus Morris,DET,26.0,205.74,106.59411999999999,Kansas,USA,2011,1,14,80,14.1,5.1,2.5,1.8,0.034,0.126,0.184,0.531,0.107,2015-16 9058,Marcus Smart,BOS,22.0,193.04,99.79024,Oklahoma State,USA,2014,1,6,61,9.1,4.2,3.0,2.6,0.047,0.11699999999999999,0.172,0.46299999999999997,0.162,2015-16 9059,Michael Kidd-Gilchrist,CHA,22.0,200.66,105.23334399999999,Kentucky,USA,2012,1,2,7,12.7,6.4,1.3,15.2,0.065,0.16,0.179,0.603,0.069,2015-16 9060,Mario Chalmers,MIA,30.0,187.96,86.18248,Kansas,USA,2008,2,34,61,10.3,2.6,3.8,2.9,0.02,0.111,0.218,0.561,0.27,2015-16 9061,Mario Hezonja,ORL,21.0,203.2,98.88305600000001,None,Croatia,2015,1,5,79,6.1,2.2,1.4,-1.4,0.022000000000000002,0.121,0.16899999999999998,0.541,0.113,2015-16 9062,Markel Brown,BKN,24.0,190.5,86.18248,Oklahoma State,USA,2014,2,44,62,5.9,2.0,1.5,-11.5,0.026000000000000002,0.12,0.187,0.5,0.142,2015-16 9063,Marcus Thornton,WAS,29.0,193.04,92.98635999999999,Louisiana State,USA,2009,2,43,61,9.7,2.5,1.4,-0.4,0.037000000000000005,0.11199999999999999,0.24,0.511,0.125,2015-16 9064,Marreese Speights,GSW,28.0,208.28,115.66596000000001,Florida,USA,2008,1,16,72,7.1,3.3,0.8,1.7,0.10099999999999999,0.205,0.302,0.506,0.126,2015-16 9065,Michael Beasley,HOU,27.0,208.28,106.59411999999999,Kansas State,USA,2008,1,2,20,12.8,4.9,0.8,-8.4,0.084,0.198,0.29,0.563,0.086,2015-16 9066,Markieff Morris,WAS,26.0,208.28,111.13004,Kansas,USA,2011,1,13,64,12.0,5.5,1.9,-4.3,0.049,0.195,0.243,0.489,0.125,2015-16 9067,Metta World Peace,LAL,36.0,200.66,117.93392,St. John's (NY),USA,1999,1,16,35,5.0,2.5,0.8,-6.0,0.033,0.125,0.165,0.435,0.078,2015-16 9068,Maurice Harkless,POR,23.0,205.74,97.52228000000001,St. John's (NY),USA,2012,1,15,78,6.4,3.6,0.9,1.7,0.076,0.133,0.155,0.541,0.068,2015-16 9069,Matthew Dellavedova,CLE,25.0,193.04,89.811216,Saint Mary's (CA),Australia,Undrafted,Undrafted,Undrafted,76,7.5,2.1,4.4,10.0,0.021,0.076,0.159,0.527,0.265,2015-16 9070,Meyers Leonard,POR,24.0,215.9,111.13004,Illinois,USA,2012,1,11,61,8.4,5.1,1.5,1.0,0.042,0.213,0.17600000000000002,0.561,0.10300000000000001,2015-16 9071,Matt Barnes,MEM,36.0,200.66,102.511792,UCLA,USA,2002,2,45,76,10.0,5.5,2.1,-5.5,0.040999999999999995,0.179,0.177,0.503,0.11699999999999999,2015-16 9072,Mason Plumlee,POR,26.0,210.82,106.59411999999999,Duke,USA,2013,1,22,82,9.1,7.7,2.8,1.1,0.106,0.223,0.17300000000000001,0.564,0.161,2015-16 9073,Marvin Williams,CHA,30.0,205.74,107.501304,North Carolina,USA,2005,1,2,81,11.7,6.4,1.4,5.2,0.059000000000000004,0.187,0.16899999999999998,0.585,0.07400000000000001,2015-16 9074,Matt Bonner,SAS,36.0,208.28,106.59411999999999,Florida,USA,2003,2,45,30,2.5,0.9,0.3,17.5,0.019,0.133,0.146,0.647,0.061,2015-16 9075,Marvin Williams,CHA,31.0,205.74,107.501304,North Carolina,USA,2005,1,2,76,11.2,6.6,1.4,-0.5,0.042,0.20199999999999999,0.163,0.551,0.07200000000000001,2016-17 9076,Mason Plumlee,DEN,27.0,210.82,115.66596000000001,Duke,USA,2013,1,22,81,10.4,7.5,3.5,0.0,0.09,0.222,0.18100000000000002,0.5579999999999999,0.187,2016-17 9077,Matt Barnes,GSW,37.0,200.66,102.511792,UCLA,USA,2002,2,45,74,7.1,5.2,2.6,-2.5,0.045,0.2,0.156,0.514,0.162,2016-17 9078,Matthew Dellavedova,MIL,26.0,193.04,89.811216,Saint Mary's (CA),Australia,Undrafted,Undrafted,Undrafted,76,7.6,1.9,4.7,-1.1,0.013999999999999999,0.07200000000000001,0.161,0.501,0.259,2016-17 9079,Maurice Harkless,POR,24.0,205.74,99.79024,St. John's (NY),USA,2012,1,15,77,10.0,4.4,1.1,3.4,0.062,0.107,0.151,0.57,0.055999999999999994,2016-17 9080,Metta World Peace,LAL,37.0,200.66,117.93392,St. John's (NY),USA,1999,1,16,25,2.3,0.8,0.4,-17.7,0.031,0.11800000000000001,0.225,0.38,0.113,2016-17 9081,Meyers Leonard,POR,25.0,215.9,115.66596000000001,Illinois,USA,2012,1,11,74,5.4,3.2,1.0,-2.6,0.024,0.19399999999999998,0.157,0.507,0.085,2016-17 9082,Michael Carter-Williams,CHI,25.0,198.12,86.18248,Syracuse,USA,2013,1,11,45,6.6,3.4,2.5,-0.8,0.028999999999999998,0.16899999999999998,0.207,0.43700000000000006,0.203,2016-17 9083,Michael Beasley,MIL,28.0,208.28,106.59411999999999,Kansas State,USA,2008,1,2,56,9.4,3.4,0.9,-1.6,0.051,0.18600000000000003,0.248,0.584,0.096,2016-17 9084,Marshall Plumlee,NYK,24.0,213.36,113.398,Duke,USA,Undrafted,Undrafted,Undrafted,21,1.9,2.4,0.5,-1.9,0.14400000000000002,0.193,0.125,0.521,0.08199999999999999,2016-17 9085,Michael Gbinije,DET,25.0,200.66,90.7184,Syracuse,USA,2016,2,49,9,0.4,0.3,0.2,-1.8,0.057,0.037000000000000005,0.157,0.184,0.087,2016-17 9086,Maurice Ndour,NYK,25.0,205.74,90.7184,Ohio U.,Senegal,Undrafted,Undrafted,Undrafted,32,3.1,2.0,0.3,-1.4,0.073,0.149,0.145,0.503,0.037000000000000005,2016-17 9087,Marreese Speights,LAC,29.0,208.28,115.66596000000001,Florida,USA,2008,1,16,82,8.7,4.5,0.8,-2.4,0.077,0.245,0.239,0.584,0.085,2016-17 9088,Omri Casspi,MIN,29.0,205.74,102.0582,None,Israel,2009,1,23,36,5.2,3.1,1.0,-8.4,0.047,0.16699999999999998,0.14,0.526,0.087,2016-17 9089,Markieff Morris,WAS,27.0,208.28,111.13004,Kansas,USA,2011,1,13,76,14.0,6.5,1.7,3.9,0.051,0.18,0.204,0.54,0.076,2016-17 9090,Mario Hezonja,ORL,22.0,203.2,98.88305600000001,None,Croatia,2015,1,5,65,4.9,2.2,1.0,-15.1,0.021,0.151,0.191,0.45,0.11,2016-17 9091,Marcus Thornton,WAS,30.0,193.04,92.98635999999999,Louisiana State,USA,2009,2,43,33,6.6,2.3,1.2,-12.7,0.043,0.12,0.188,0.494,0.10800000000000001,2016-17 9092,Marcus Smart,BOS,23.0,193.04,99.79024,Oklahoma State,USA,2014,1,6,79,10.6,3.9,4.6,2.5,0.036000000000000004,0.107,0.185,0.486,0.226,2016-17 9093,Marcus Morris,DET,27.0,205.74,106.59411999999999,Kansas,USA,2011,1,14,79,14.0,4.6,2.0,-2.8,0.031,0.127,0.20199999999999999,0.508,0.095,2016-17 9094,Marcus Georges-Hunt,ORL,23.0,198.12,99.79024,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,5,2.8,1.8,0.6,-25.0,0.022000000000000002,0.163,0.124,0.614,0.13,2016-17 9095,Marco Belinelli,CHA,31.0,195.58,95.25432,None,Italy,2007,1,18,74,10.5,2.4,2.0,-0.1,0.009000000000000001,0.10400000000000001,0.193,0.5660000000000001,0.131,2016-17 9096,Marcin Gortat,WAS,33.0,210.82,108.86208,None,Poland,2005,2,57,82,10.8,10.4,1.5,2.8,0.10400000000000001,0.26899999999999996,0.147,0.593,0.065,2016-17 9097,Marcelo Huertas,LAL,34.0,190.5,90.7184,None,Brazil,Undrafted,Undrafted,Undrafted,23,2.7,1.0,2.3,-12.3,0.009000000000000001,0.11599999999999999,0.171,0.41700000000000004,0.311,2016-17 9098,Michael Kidd-Gilchrist,CHA,23.0,200.66,105.23334399999999,Kentucky,USA,2012,1,2,81,9.2,7.0,1.4,1.6,0.071,0.19399999999999998,0.146,0.528,0.07400000000000001,2016-17 9099,Marc Gasol,MEM,32.0,215.9,115.66596000000001,None,Spain,2007,2,48,74,19.5,6.3,4.6,1.4,0.027000000000000003,0.19,0.267,0.5539999999999999,0.24600000000000002,2016-17 9100,Manu Ginobili,SAS,39.0,198.12,92.98635999999999,None,Argentina,1999,2,57,69,7.5,2.3,2.7,10.4,0.025,0.113,0.195,0.532,0.19899999999999998,2016-17 9101,Marquese Chriss,PHX,19.0,208.28,105.68693600000002,Washington,USA,2016,1,8,82,9.2,4.2,0.7,-10.8,0.057999999999999996,0.16399999999999998,0.196,0.529,0.051,2016-17 9102,Mike Conley,MEM,29.0,185.42,79.3786,Ohio State,USA,2007,1,4,69,20.5,3.5,6.3,3.1,0.015,0.10800000000000001,0.263,0.604,0.32899999999999996,2016-17 9103,Okaro White,MIA,24.0,203.2,92.532768,Florida State,USA,Undrafted,Undrafted,Undrafted,35,2.8,2.3,0.6,8.6,0.061,0.142,0.109,0.507,0.061,2016-17 9104,Mike Miller,DEN,37.0,203.2,98.88305600000001,Florida,USA,2000,1,5,20,1.4,1.9,1.1,-3.3,0.016,0.261,0.10400000000000001,0.586,0.195,2016-17 9105,Omer Asik,NOP,30.0,213.36,115.66596000000001,None,Turkey,2008,2,36,31,2.7,5.3,0.5,-4.9,0.10099999999999999,0.252,0.08800000000000001,0.517,0.044000000000000004,2016-17 9106,Manny Harris,DAL,27.0,195.58,83.91452,Michigan,USA,Undrafted,Undrafted,Undrafted,4,2.0,2.3,0.5,-51.1,0.091,0.353,0.294,0.239,0.14300000000000002,2016-17 9107,Norris Cole,OKC,28.0,187.96,79.3786,Cleveland State,USA,2011,1,28,13,3.3,0.8,1.1,-6.4,0.0,0.105,0.22,0.381,0.177,2016-17 9108,Norman Powell,TOR,24.0,193.04,97.52228000000001,UCLA,USA,2015,2,46,76,8.4,2.2,1.1,3.7,0.022000000000000002,0.12,0.212,0.552,0.094,2016-17 9109,Noah Vonleh,POR,21.0,205.74,111.13004,Indiana,USA,2014,1,9,74,4.4,5.2,0.4,-2.0,0.111,0.22399999999999998,0.131,0.525,0.036000000000000004,2016-17 9110,Nikola Vucevic,ORL,26.0,213.36,117.93392,Southern California,Montenegro,2011,1,16,75,14.6,10.4,2.8,-3.6,0.086,0.306,0.243,0.498,0.157,2016-17 9111,Nikola Mirotic,CHI,26.0,208.28,107.95489599999999,None,Montenegro,2011,1,23,70,10.6,5.5,1.1,4.7,0.04,0.20800000000000002,0.198,0.546,0.069,2016-17 9112,Nikola Jokic,DEN,22.0,208.28,113.398,None,Serbia,2014,2,41,73,16.7,9.8,4.9,5.1,0.11900000000000001,0.272,0.23399999999999999,0.64,0.266,2016-17 9113,Nik Stauskas,PHI,23.0,198.12,92.98635999999999,Michigan,Canada,2014,1,8,80,9.5,2.8,2.4,-4.8,0.011000000000000001,0.102,0.16399999999999998,0.54,0.129,2016-17 9114,Nicolas Laprovittola,SAS,27.0,193.04,81.64656,None,Argentina,Undrafted,Undrafted,Undrafted,18,3.3,0.6,1.6,-9.7,0.006999999999999999,0.057999999999999996,0.19,0.579,0.301,2016-17 9115,Nicolas Brussino,DAL,24.0,203.2,97.52228000000001,None,Argentina,Undrafted,Undrafted,Undrafted,54,2.8,1.8,0.9,-10.8,0.053,0.165,0.153,0.498,0.14400000000000002,2016-17 9116,Nicolas Batum,CHA,28.0,203.2,90.7184,None,France,2008,1,25,77,15.1,6.2,5.9,1.3,0.019,0.184,0.221,0.529,0.273,2016-17 9117,Mike Dunleavy,ATL,36.0,205.74,104.32616,Duke,USA,2002,1,3,53,5.2,2.2,0.9,-4.3,0.024,0.124,0.141,0.573,0.09699999999999999,2016-17 9118,Nick Young,LAL,32.0,200.66,95.25432,Southern California,USA,2007,1,16,60,13.2,2.3,1.0,-6.9,0.017,0.081,0.195,0.588,0.057,2016-17 9119,Nerlens Noel,DAL,23.0,210.82,103.418976,Kentucky,USA,2013,1,6,51,8.7,5.8,1.0,-2.6,0.1,0.225,0.17600000000000002,0.622,0.078,2016-17 9120,Nene,HOU,34.0,210.82,113.398,None,Brazil,2002,1,7,67,9.1,4.2,1.0,6.6,0.085,0.17,0.193,0.63,0.08800000000000001,2016-17 9121,Nemanja Bjelica,MIN,29.0,208.28,102.0582,None,Serbia,2010,2,35,65,6.2,3.8,1.2,1.3,0.053,0.184,0.16399999999999998,0.526,0.102,2016-17 9122,Myles Turner,IND,21.0,210.82,110.22285600000001,Texas,USA,2015,1,11,81,14.5,7.3,1.3,3.2,0.064,0.192,0.19699999999999998,0.585,0.065,2016-17 9123,Montrezl Harrell,HOU,23.0,203.2,108.86208,Louisville,USA,2015,2,32,58,9.1,3.8,1.1,3.5,0.084,0.13699999999999998,0.17600000000000002,0.662,0.09699999999999999,2016-17 9124,Monta Ellis,IND,31.0,190.5,83.91452,None,USA,2005,2,40,74,8.5,2.8,3.2,-0.5,0.011000000000000001,0.10300000000000001,0.16899999999999998,0.514,0.171,2016-17 9125,Mirza Teletovic,MIL,31.0,205.74,111.13004,None,Bosnia,Undrafted,Undrafted,Undrafted,70,6.4,2.3,0.7,3.4,0.011000000000000001,0.15,0.191,0.515,0.063,2016-17 9126,Mindaugas Kuzminskas,NYK,27.0,205.74,97.52228000000001,None,Lithuania,Undrafted,Undrafted,Undrafted,68,6.3,1.9,1.0,-1.2,0.05,0.084,0.188,0.5329999999999999,0.102,2016-17 9127,Miles Plumlee,CHA,28.0,210.82,112.94440800000001,Duke,USA,2012,1,26,45,2.5,2.1,0.5,-5.9,0.09300000000000001,0.127,0.131,0.518,0.065,2016-17 9128,Mike Tobey,CHA,22.0,213.36,117.93392,Virginia,USA,Undrafted,Undrafted,Undrafted,2,1.0,1.5,0.5,-27.3,0.083,0.043,0.105,0.25,0.091,2016-17 9129,Mike Scott,ATL,28.0,203.2,107.501304,Virginia,USA,2012,2,43,18,2.5,2.1,0.9,-8.5,0.053,0.171,0.165,0.36,0.15,2016-17 9130,Mike Muscala,ATL,25.0,210.82,108.86208,Bucknell,USA,2013,2,44,70,6.2,3.4,1.4,-3.1,0.069,0.15,0.149,0.596,0.121,2016-17 9131,Nick Collison,OKC,36.0,208.28,115.66596000000001,Kansas,USA,2003,1,12,20,1.7,1.6,0.6,-17.2,0.068,0.18600000000000003,0.10099999999999999,0.622,0.171,2016-17 9132,Malik Beasley,DEN,20.0,195.58,88.904032,Florida State,USA,2016,1,19,22,3.8,0.8,0.5,15.0,0.036000000000000004,0.07200000000000001,0.222,0.536,0.098,2016-17 9133,Josh McRoberts,MIA,30.0,208.28,108.86208,Duke,USA,2007,2,37,22,4.9,3.4,2.3,-9.3,0.065,0.154,0.175,0.439,0.2,2016-17 9134,Malcolm Brogdon,MIL,24.0,195.58,97.52228000000001,Virginia,USA,2016,2,36,75,10.2,2.8,4.2,2.7,0.027999999999999997,0.09699999999999999,0.18600000000000003,0.555,0.239,2016-17 9135,Kevin Seraphin,IND,27.0,208.28,126.098576,Le Moyne,France,2010,1,17,49,4.7,2.9,0.5,-9.9,0.079,0.20199999999999999,0.18899999999999997,0.5589999999999999,0.069,2016-17 9136,Kevin Love,CLE,28.0,208.28,113.851592,UCLA,USA,2008,1,5,60,19.0,11.1,1.9,7.2,0.087,0.295,0.255,0.573,0.09300000000000001,2016-17 9137,Kevin Durant,GSW,28.0,205.74,108.86208,Texas,USA,2007,1,2,62,25.1,8.3,4.8,16.0,0.023,0.23199999999999998,0.276,0.6509999999999999,0.218,2016-17 9138,Kentavious Caldwell-Pope,DET,24.0,195.58,92.98635999999999,Georgia,USA,2013,1,8,76,13.8,3.3,2.5,-4.0,0.022000000000000002,0.087,0.191,0.519,0.111,2016-17 9139,Kent Bazemore,ATL,27.0,195.58,91.171992,Old Dominion,USA,Undrafted,Undrafted,Undrafted,73,11.0,3.2,2.4,-2.3,0.026000000000000002,0.1,0.204,0.504,0.14,2016-17 9140,Kenneth Faried,DEN,27.0,203.2,103.418976,Morehead State,USA,2011,1,22,61,9.6,7.6,0.9,-3.1,0.157,0.243,0.18100000000000002,0.588,0.064,2016-17 9141,Kemba Walker,CHA,27.0,185.42,83.46092800000001,Connecticut,USA,2011,1,9,79,23.2,3.9,5.5,3.6,0.018000000000000002,0.107,0.29100000000000004,0.569,0.282,2016-17 9142,Kelly Oubre Jr.,WAS,21.0,200.66,92.98635999999999,Kansas,USA,2015,1,15,79,6.3,3.3,0.6,0.4,0.044000000000000004,0.138,0.147,0.516,0.042,2016-17 9143,Kelly Olynyk,BOS,26.0,213.36,107.95489599999999,Gonzaga,Canada,2013,1,13,75,9.0,4.8,2.0,-0.4,0.053,0.207,0.188,0.603,0.159,2016-17 9144,Kay Felder,CLE,22.0,175.26,79.83219199999998,None,USA,2016,2,54,42,4.0,1.0,1.4,-5.5,0.009000000000000001,0.10300000000000001,0.251,0.462,0.261,2016-17 9145,Kawhi Leonard,SAS,26.0,200.66,104.32616,San Diego State,USA,2011,1,15,74,25.5,5.8,3.5,8.6,0.038,0.16,0.312,0.61,0.182,2016-17 9146,Karl-Anthony Towns,MIN,21.0,213.36,110.676448,Kentucky,USA,2015,1,1,82,25.1,12.3,2.7,-0.9,0.114,0.27699999999999997,0.27399999999999997,0.618,0.127,2016-17 9147,Kevon Looney,GSW,21.0,205.74,99.79024,UCLA,USA,2015,1,30,53,2.5,2.3,0.5,0.2,0.107,0.18899999999999997,0.133,0.5529999999999999,0.094,2016-17 9148,KJ McDaniels,BKN,24.0,198.12,92.98635999999999,Clemson,USA,2014,2,32,49,4.2,1.7,0.3,-3.1,0.033,0.14300000000000002,0.185,0.555,0.04,2016-17 9149,Justise Winslow,MIA,21.0,200.66,102.0582,Duke,USA,2015,1,10,18,10.9,5.2,3.7,-0.4,0.04,0.122,0.2,0.39899999999999997,0.153,2016-17 9150,Justin Holiday,NYK,28.0,198.12,83.91452,Washington,USA,Undrafted,Undrafted,Undrafted,82,7.7,2.7,1.2,-1.7,0.018000000000000002,0.13,0.16899999999999998,0.5489999999999999,0.095,2016-17 9151,Justin Harper,PHI,27.0,208.28,102.0582,Richmond,USA,2011,2,32,3,4.0,1.7,0.7,-18.0,0.069,0.10300000000000001,0.214,0.5,0.1,2016-17 9152,Justin Hamilton,BKN,27.0,213.36,115.66596000000001,Louisiana State,USA,2012,2,45,64,6.9,4.1,0.9,-11.3,0.062,0.172,0.162,0.55,0.07400000000000001,2016-17 9153,Justin Anderson,PHI,23.0,198.12,103.418976,Virginia,USA,2015,1,21,75,7.1,3.3,0.9,-6.6,0.06,0.17300000000000001,0.20600000000000002,0.537,0.08900000000000001,2016-17 9154,Julius Randle,LAL,22.0,205.74,113.398,Kentucky,USA,2014,1,7,74,13.2,8.6,3.6,-10.2,0.07400000000000001,0.254,0.215,0.5429999999999999,0.195,2016-17 9155,Juancho Hernangomez,DEN,21.0,205.74,104.32616,None,Spain,2016,1,15,62,4.9,3.0,0.5,-3.6,0.055,0.18899999999999997,0.14400000000000002,0.5920000000000001,0.048,2016-17 9156,Jrue Holiday,NOP,27.0,193.04,92.98635999999999,UCLA,USA,2009,1,17,67,15.4,3.9,7.3,0.9,0.022000000000000002,0.10300000000000001,0.235,0.532,0.355,2016-17 9157,Josh Richardson,MIA,23.0,198.12,90.7184,Tennessee,USA,2015,2,40,53,10.2,3.2,2.6,1.2,0.023,0.095,0.168,0.493,0.128,2016-17 9158,Josh Huestis,OKC,25.0,200.66,104.32616,Stanford,USA,2014,1,29,2,7.0,4.5,1.5,6.4,0.133,0.172,0.146,0.612,0.115,2016-17 9159,Jose Calderon,ATL,35.0,190.5,90.7184,None,Spain,Undrafted,Undrafted,Undrafted,41,3.4,1.8,2.1,-9.7,0.027999999999999997,0.126,0.14400000000000002,0.506,0.251,2016-17 9160,Otto Porter Jr.,WAS,24.0,203.2,89.811216,Georgetown,USA,2013,1,3,80,13.4,6.4,1.5,3.1,0.05,0.172,0.149,0.628,0.066,2016-17 9161,Jusuf Nurkic,POR,22.0,213.36,127.00576000000001,None,Bosnia & Herzegovina,2014,1,16,65,10.2,7.2,1.9,-2.1,0.124,0.23600000000000002,0.235,0.528,0.142,2016-17 9162,Khris Middleton,MIL,25.0,203.2,106.140528,Texas A&M,USA,2012,2,39,29,14.7,4.2,3.4,5.7,0.015,0.153,0.23199999999999998,0.57,0.175,2016-17 9163,Klay Thompson,GSW,27.0,200.66,97.52228000000001,Washington State,USA,2011,1,11,78,22.3,3.7,2.1,14.7,0.022000000000000002,0.091,0.262,0.5920000000000001,0.09,2016-17 9164,Kosta Koufos,SAC,28.0,213.36,120.20188,Ohio State,USA,2008,1,23,71,6.6,5.7,0.7,-5.7,0.095,0.223,0.154,0.56,0.053,2016-17 9165,Malachi Richardson,SAC,21.0,198.12,92.98635999999999,Syracuse,USA,2016,1,22,22,3.6,1.0,0.5,-4.2,0.018000000000000002,0.106,0.196,0.517,0.092,2016-17 9166,Luol Deng,LAL,32.0,205.74,99.79024,Duke,United Kingdom,2004,1,7,56,7.6,5.3,1.3,-6.4,0.044000000000000004,0.172,0.14300000000000002,0.47,0.073,2016-17 9167,Luke Babbitt,MIA,28.0,205.74,102.0582,Nevada,USA,2010,1,16,68,4.8,2.1,0.5,1.8,0.013000000000000001,0.132,0.133,0.563,0.049,2016-17 9168,Luis Scola,BKN,37.0,205.74,109.315672,None,Argentina,2002,2,55,36,5.1,3.9,1.0,-8.0,0.114,0.213,0.185,0.55,0.124,2016-17 9169,Lucas Nogueira,TOR,24.0,213.36,99.79024,None,Brazil,2013,1,16,57,4.4,4.3,0.7,9.8,0.084,0.158,0.095,0.682,0.053,2016-17 9170,Luc Mbah a Moute,LAC,30.0,203.2,104.32616,UCLA,Cameroon,2008,2,37,80,6.1,2.1,0.5,10.3,0.028999999999999998,0.075,0.11699999999999999,0.581,0.028999999999999998,2016-17 9171,Lou Williams,HOU,30.0,185.42,79.3786,None,USA,2005,2,45,81,17.5,2.5,3.0,-0.4,0.013999999999999999,0.096,0.28300000000000003,0.593,0.193,2016-17 9172,Leandro Barbosa,PHX,34.0,190.5,87.996848,None,Brazil,2003,1,28,67,6.3,1.6,1.2,-1.8,0.018000000000000002,0.106,0.207,0.509,0.128,2016-17 9173,LeBron James,CLE,32.0,203.2,113.398,None,USA,2003,1,1,74,26.4,8.6,8.7,7.7,0.04,0.209,0.297,0.619,0.38799999999999996,2016-17 9174,Lavoy Allen,IND,28.0,205.74,117.93392,Temple,USA,2011,2,50,61,2.9,3.6,0.9,-6.3,0.133,0.154,0.106,0.485,0.09300000000000001,2016-17 9175,Larry Sanders,CLE,28.0,210.82,104.32616,Virginia Commonwealth,USA,2010,1,15,5,0.8,0.8,0.0,-7.2,0.375,0.111,0.22399999999999998,0.41,0.0,2016-17 9176,Larry Nance Jr.,LAL,24.0,205.74,104.32616,Wyoming,USA,2015,1,27,63,7.1,5.9,1.5,-5.0,0.08900000000000001,0.204,0.134,0.5670000000000001,0.096,2016-17 9177,Langston Galloway,SAC,25.0,187.96,90.7184,Saint Joseph's,USA,Undrafted,Undrafted,Undrafted,74,7.9,2.1,1.3,-1.5,0.019,0.094,0.185,0.51,0.098,2016-17 9178,Lance Thomas,NYK,29.0,203.2,106.59411999999999,Duke,USA,Undrafted,Undrafted,Undrafted,46,6.0,3.1,0.8,-9.7,0.035,0.12300000000000001,0.132,0.516,0.053,2016-17 9179,Lance Stephenson,IND,26.0,195.58,104.32616,Cincinnati,USA,2010,2,40,18,6.8,2.9,3.3,1.6,0.012,0.149,0.185,0.485,0.254,2016-17 9180,Lamar Patterson,ATL,25.0,195.58,102.0582,Pittsburgh,USA,2014,2,48,5,1.8,1.4,1.2,16.8,0.027000000000000003,0.133,0.23399999999999999,0.276,0.25,2016-17 9181,LaMarcus Aldridge,SAS,31.0,210.82,117.93392,Texas,USA,2006,1,2,72,17.3,7.3,1.9,6.1,0.084,0.171,0.249,0.532,0.1,2016-17 9182,Kyrie Irving,CLE,25.0,190.5,87.543256,Duke,Australia,2011,1,1,72,25.2,3.2,5.8,5.1,0.023,0.075,0.302,0.58,0.278,2016-17 9183,Kyle Wiltjer,HOU,24.0,208.28,108.86208,Gonzaga,Canada,Undrafted,Undrafted,Undrafted,14,0.9,0.7,0.1,-35.9,0.095,0.154,0.187,0.43700000000000006,0.069,2016-17 9184,Kyle Singler,OKC,29.0,203.2,103.418976,Duke,USA,2011,2,33,32,2.8,1.5,0.3,0.8,0.022000000000000002,0.12300000000000001,0.113,0.486,0.034,2016-17 9185,Kyle O'Quinn,NYK,27.0,208.28,113.398,Norfolk State,USA,2012,2,49,79,6.3,5.6,1.5,-6.8,0.138,0.25,0.18600000000000003,0.552,0.149,2016-17 9186,Kyle Lowry,TOR,31.0,182.88,92.98635999999999,Villanova,USA,2006,1,24,60,22.4,4.8,7.0,8.2,0.024,0.121,0.249,0.623,0.293,2016-17 9187,Kyle Korver,CLE,36.0,200.66,96.16150400000001,Creighton,USA,2003,2,51,67,10.1,2.8,1.6,-4.9,0.005,0.114,0.151,0.635,0.09300000000000001,2016-17 9188,Kyle Anderson,SAS,23.0,205.74,104.32616,UCLA,USA,2014,1,30,72,3.4,2.9,1.3,10.5,0.038,0.187,0.122,0.525,0.126,2016-17 9189,Kristaps Porzingis,NYK,21.0,220.98,108.86208,None,Latvia,2015,1,4,66,18.1,7.2,1.5,-3.1,0.055999999999999994,0.177,0.244,0.546,0.073,2016-17 9190,Kris Humphries,ATL,32.0,205.74,106.59411999999999,Minnesota,USA,2004,1,14,56,4.6,3.7,0.5,-4.4,0.095,0.245,0.18,0.514,0.07,2016-17 9191,Kris Dunn,MIN,23.0,193.04,92.98635999999999,Providence,USA,2016,1,5,78,3.8,2.1,2.4,-2.8,0.021,0.131,0.142,0.43200000000000005,0.2,2016-17 9192,Malcolm Delaney,ATL,28.0,190.5,86.18248,Virginia Tech,USA,Undrafted,Undrafted,Undrafted,73,5.4,1.7,2.6,2.2,0.009000000000000001,0.10400000000000001,0.187,0.456,0.24100000000000002,2016-17 9193,PJ Tucker,TOR,32.0,198.12,111.13004,Texas,USA,2006,2,35,81,6.7,5.8,1.2,-1.2,0.055999999999999994,0.18100000000000002,0.113,0.516,0.063,2016-17 9194,Wilson Chandler,DEN,30.0,203.2,102.0582,DePaul,USA,2007,1,23,71,15.7,6.5,2.0,-1.7,0.052000000000000005,0.17800000000000002,0.221,0.545,0.09699999999999999,2016-17 9195,Pat Connaughton,POR,24.0,195.58,95.25432,Notre Dame,USA,2015,2,41,39,2.5,1.3,0.7,-5.2,0.036000000000000004,0.14400000000000002,0.132,0.645,0.13699999999999998,2016-17 9196,Tony Parker,SAS,35.0,187.96,83.91452,None,France,2001,1,28,63,10.1,1.8,4.5,5.4,0.006999999999999999,0.07200000000000001,0.207,0.514,0.276,2016-17 9197,Tony Allen,MEM,35.0,193.04,96.615096,Oklahoma State,USA,2004,1,25,71,9.1,5.5,1.4,1.2,0.095,0.139,0.18100000000000002,0.493,0.083,2016-17 9198,Toney Douglas,MEM,31.0,187.96,88.45044,Florida State,USA,2009,1,29,24,4.9,2.5,2.3,-0.3,0.035,0.157,0.165,0.451,0.214,2016-17 9199,Tomas Satoransky,WAS,25.0,200.66,95.25432,None,Czech Republic,2012,2,32,57,2.7,1.5,1.6,2.3,0.040999999999999995,0.08900000000000001,0.127,0.47700000000000004,0.183,2016-17 9200,Tobias Harris,DET,24.0,205.74,106.59411999999999,Tennessee,USA,2011,1,19,82,16.1,5.1,1.7,-1.3,0.026000000000000002,0.155,0.218,0.568,0.087,2016-17 9201,Timothe Luwawu-Cabarrot,PHI,22.0,198.12,92.98635999999999,None,France,2016,1,24,69,6.4,2.2,1.1,-2.5,0.023,0.11199999999999999,0.177,0.536,0.09300000000000001,2016-17 9202,Timofey Mozgov,LAL,30.0,215.9,124.7378,None,Russia,Undrafted,Undrafted,Undrafted,54,7.4,4.9,0.8,-9.2,0.09699999999999999,0.16,0.17,0.5529999999999999,0.061,2016-17 9203,Tim Quarterman,POR,22.0,198.12,86.18248,Louisiana State,USA,Undrafted,Undrafted,Undrafted,16,1.9,0.9,0.7,0.0,0.053,0.11900000000000001,0.23600000000000002,0.511,0.23399999999999999,2016-17 9204,Tim Hardaway Jr.,ATL,25.0,198.12,92.98635999999999,Michigan,USA,2013,1,24,79,14.5,2.8,2.3,3.1,0.019,0.094,0.223,0.568,0.13699999999999998,2016-17 9205,Tim Frazier,NOP,26.0,185.42,77.11064,None,USA,Undrafted,Undrafted,Undrafted,65,7.1,2.7,5.2,-3.0,0.023,0.09699999999999999,0.163,0.504,0.312,2016-17 9206,Tiago Splitter,PHI,32.0,210.82,111.13004,None,Brazil,2007,1,28,8,4.9,2.8,0.5,-3.5,0.1,0.226,0.222,0.544,0.08900000000000001,2016-17 9207,Thon Maker,MIL,20.0,215.9,101.151016,None,South Sudan,2016,1,10,57,4.0,2.0,0.4,1.3,0.081,0.16699999999999998,0.187,0.5579999999999999,0.069,2016-17 9208,Tony Snell,MIL,25.0,200.66,98.429464,New Mexico,USA,2013,1,20,80,8.5,3.1,1.2,-1.2,0.011000000000000001,0.111,0.122,0.603,0.057999999999999996,2016-17 9209,Thomas Robinson,LAL,26.0,208.28,107.501304,Kansas,USA,2012,1,5,48,5.0,4.6,0.6,-7.5,0.158,0.304,0.20600000000000002,0.535,0.08800000000000001,2016-17 9210,Thabo Sefolosha,ATL,33.0,200.66,99.79024,None,Switzerland,2006,1,13,62,7.2,4.4,1.7,-0.5,0.038,0.14800000000000002,0.134,0.519,0.099,2016-17 9211,Terry Rozier,BOS,23.0,187.96,86.18248,Louisville,USA,2015,1,16,74,5.5,3.1,1.8,-0.2,0.034,0.162,0.172,0.466,0.16399999999999998,2016-17 9212,Terrence Ross,ORL,26.0,200.66,88.45044,Washington,USA,2012,1,8,78,11.0,2.6,1.1,3.4,0.01,0.10800000000000001,0.18899999999999997,0.55,0.066,2016-17 9213,Terrence Jones,MIL,25.0,205.74,115.66596000000001,Kentucky,USA,2012,1,18,54,10.8,5.7,1.1,-1.7,0.053,0.203,0.21600000000000003,0.515,0.075,2016-17 9214,Taurean Prince,ATL,23.0,203.2,99.79024,Baylor,USA,2016,1,12,59,5.7,2.7,0.9,-0.8,0.027000000000000003,0.14300000000000002,0.171,0.513,0.091,2016-17 9215,Tarik Black,LAL,25.0,205.74,113.398,Kansas,USA,Undrafted,Undrafted,Undrafted,67,5.7,5.1,0.6,-1.9,0.138,0.20199999999999999,0.154,0.56,0.052000000000000005,2016-17 9216,Taj Gibson,OKC,32.0,205.74,107.047712,Southern California,USA,2009,1,26,78,10.8,6.2,0.9,0.3,0.084,0.18100000000000002,0.19,0.5429999999999999,0.057,2016-17 9217,TJ Warren,PHX,23.0,203.2,102.0582,North Carolina State,USA,2014,1,14,66,14.4,5.1,1.1,-6.8,0.064,0.11599999999999999,0.19,0.539,0.055999999999999994,2016-17 9218,T.J. McConnell,PHI,25.0,187.96,90.7184,Arizona,USA,Undrafted,Undrafted,Undrafted,81,6.9,3.1,6.6,-6.2,0.02,0.109,0.14400000000000002,0.504,0.374,2016-17 9219,Steven Adams,OKC,23.0,213.36,115.66596000000001,Pittsburgh,New Zealand,2013,1,12,80,11.3,7.7,1.1,2.8,0.128,0.151,0.16,0.589,0.054000000000000006,2016-17 9220,Steve Novak,MIL,34.0,208.28,102.0582,Marquette,USA,2006,2,32,8,0.6,0.4,0.0,-1.6,0.0,0.14300000000000002,0.16899999999999998,0.35700000000000004,0.0,2016-17 9221,Stephen Zimmerman,ORL,20.0,213.36,108.86208,Nevada-Las Vegas,USA,2016,2,41,19,1.2,1.8,0.2,-18.1,0.09300000000000001,0.273,0.149,0.34600000000000003,0.055999999999999994,2016-17 9222,Thaddeus Young,IND,29.0,203.2,100.243832,Georgia Tech,USA,2007,1,12,74,11.0,6.1,1.6,2.5,0.067,0.152,0.165,0.562,0.08199999999999999,2016-17 9223,Treveon Graham,CHA,23.0,198.12,102.511792,Virginia Commonwealth,USA,Undrafted,Undrafted,Undrafted,27,2.1,0.8,0.2,-11.6,0.028999999999999998,0.098,0.121,0.612,0.057999999999999996,2016-17 9224,Trevor Ariza,HOU,32.0,203.2,97.52228000000001,UCLA,USA,2004,2,43,80,11.7,5.7,2.2,5.7,0.021,0.162,0.141,0.5479999999999999,0.08800000000000001,2016-17 9225,Trevor Booker,BKN,29.0,203.2,103.418976,Clemson,USA,2010,1,23,71,10.0,8.0,1.9,-7.9,0.08900000000000001,0.251,0.188,0.5539999999999999,0.131,2016-17 9226,Zach LaVine,MIN,22.0,195.58,83.91452,UCLA,USA,2014,1,13,47,18.9,3.4,3.0,-3.6,0.012,0.098,0.218,0.5760000000000001,0.128,2016-17 9227,Jordan Mickey,BOS,22.0,203.2,106.59411999999999,Louisiana State,USA,2015,2,33,25,1.5,1.4,0.3,-17.1,0.099,0.20199999999999999,0.157,0.473,0.084,2016-17 9228,Yogi Ferrell,DAL,24.0,182.88,81.64656,Indiana,USA,Undrafted,Undrafted,Undrafted,46,10.0,2.4,3.7,-4.1,0.018000000000000002,0.091,0.196,0.5329999999999999,0.23199999999999998,2016-17 9229,Willie Reed,MIA,27.0,210.82,111.13004,Saint Louis,USA,Undrafted,Undrafted,Undrafted,71,5.3,4.7,0.4,2.6,0.135,0.223,0.153,0.578,0.04,2016-17 9230,Willie Cauley-Stein,SAC,23.0,213.36,108.86208,Kentucky,USA,2015,1,6,75,8.1,4.5,1.1,-6.3,0.069,0.2,0.19899999999999998,0.5579999999999999,0.09300000000000001,2016-17 9231,Will Barton,DEN,26.0,198.12,79.3786,Memphis,USA,2012,2,40,60,13.7,4.3,3.4,-2.9,0.037000000000000005,0.132,0.21100000000000002,0.547,0.185,2016-17 9232,Wesley Matthews,DAL,30.0,195.58,99.79024,Marquette,USA,Undrafted,Undrafted,Undrafted,73,13.5,3.5,2.9,-3.5,0.008,0.11699999999999999,0.196,0.5329999999999999,0.138,2016-17 9233,Wesley Johnson,LAC,29.0,200.66,97.52228000000001,Syracuse,USA,2010,1,4,68,2.7,2.7,0.3,-2.9,0.035,0.209,0.126,0.44799999999999995,0.042,2016-17 9234,Wayne Selden,MEM,22.0,195.58,104.32616,Kansas,USA,Undrafted,Undrafted,Undrafted,14,5.1,1.1,0.9,-7.4,0.005,0.066,0.162,0.525,0.09,2016-17 9235,Wayne Ellington,MIA,29.0,193.04,90.7184,North Carolina,USA,2009,1,28,62,10.5,2.1,1.1,2.7,0.013000000000000001,0.087,0.179,0.565,0.07,2016-17 9236,Wade Baldwin IV,MEM,21.0,193.04,91.625584,Vanderbilt,USA,2016,1,17,33,3.2,1.4,1.8,-16.9,0.028999999999999998,0.09699999999999999,0.191,0.40399999999999997,0.262,2016-17 9237,Vince Carter,MEM,40.0,198.12,99.79024,North Carolina,USA,1998,1,5,73,8.0,3.1,1.8,3.6,0.023,0.128,0.149,0.542,0.11199999999999999,2016-17 9238,Victor Oladipo,OKC,25.0,193.04,95.25432,Indiana,USA,2013,1,2,67,15.9,4.3,2.6,2.5,0.019,0.12300000000000001,0.213,0.534,0.122,2016-17 9239,Udonis Haslem,MIA,37.0,203.2,106.59411999999999,Florida,USA,Undrafted,Undrafted,Undrafted,16,1.9,2.3,0.4,-23.8,0.063,0.255,0.131,0.524,0.094,2016-17 9240,Tyus Jones,MIN,21.0,187.96,88.45044,Duke,USA,2015,1,24,60,3.5,1.1,2.6,2.5,0.015,0.08900000000000001,0.135,0.523,0.276,2016-17 9241,Tyson Chandler,PHX,34.0,215.9,108.86208,None,USA,2001,1,2,47,8.4,11.5,0.6,-2.9,0.127,0.33899999999999997,0.113,0.703,0.033,2016-17 9242,Tyreke Evans,SAC,27.0,198.12,99.79024,Memphis,USA,2009,1,4,40,10.3,3.4,3.1,-8.6,0.017,0.17800000000000002,0.27,0.501,0.281,2016-17 9243,Tyler Zeller,BOS,27.0,213.36,114.758776,North Carolina,USA,2012,1,17,51,3.5,2.4,0.8,0.2,0.08800000000000001,0.16699999999999998,0.16399999999999998,0.508,0.125,2016-17 9244,Tyler Ulis,PHX,21.0,177.8,68.0388,Kentucky,USA,2016,2,34,61,7.3,1.6,3.7,-6.5,0.018000000000000002,0.073,0.20199999999999999,0.474,0.297,2016-17 9245,Tyler Johnson,MIA,25.0,193.04,84.368112,Fresno State,USA,Undrafted,Undrafted,Undrafted,73,13.7,4.0,3.2,0.5,0.025,0.125,0.207,0.535,0.17,2016-17 9246,Tyler Ennis,LAL,22.0,190.5,87.996848,Syracuse,Canada,2014,1,18,53,4.3,0.8,1.6,-0.2,0.017,0.07200000000000001,0.19399999999999998,0.521,0.21100000000000002,2016-17 9247,Ty Lawson,SAC,29.0,180.34,88.45044,North Carolina,USA,2009,1,18,69,9.9,2.6,4.8,-4.2,0.028999999999999998,0.087,0.193,0.551,0.3,2016-17 9248,Troy Williams,HOU,22.0,200.66,95.25432,Indiana,USA,Undrafted,Undrafted,Undrafted,30,6.2,2.3,0.8,-5.4,0.028999999999999998,0.107,0.171,0.511,0.07200000000000001,2016-17 9249,Troy Daniels,MEM,25.0,193.04,92.98635999999999,Virginia Commonwealth,USA,Undrafted,Undrafted,Undrafted,67,8.2,1.5,0.7,0.3,0.02,0.077,0.21,0.531,0.065,2016-17 9250,Tristan Thompson,CLE,26.0,205.74,107.95489599999999,Texas,Canada,2011,1,4,78,8.1,9.2,1.0,2.9,0.135,0.196,0.11199999999999999,0.594,0.046,2016-17 9251,Trey Lyles,UTA,21.0,208.28,106.140528,Kentucky,USA,2015,1,12,71,6.2,3.3,1.0,0.9,0.047,0.17800000000000002,0.214,0.46399999999999997,0.098,2016-17 9252,Trey Burke,WAS,24.0,185.42,86.636072,Michigan,USA,2013,1,9,57,5.0,0.8,1.8,-9.2,0.012,0.065,0.205,0.532,0.23,2016-17 9253,Stephen Curry,GSW,29.0,190.5,86.18248,Davidson,USA,2009,1,7,79,25.3,4.5,6.6,17.2,0.027000000000000003,0.113,0.292,0.624,0.287,2016-17 9254,Pascal Siakam,TOR,23.0,205.74,104.32616,New Mexico State,Cameroon,2016,1,27,55,4.2,3.4,0.3,0.0,0.083,0.168,0.131,0.523,0.027999999999999997,2016-17 9255,Stanley Johnson,DET,21.0,200.66,111.13004,Arizona,USA,2015,1,8,77,4.4,2.5,1.4,0.2,0.028999999999999998,0.129,0.14800000000000002,0.436,0.106,2016-17 9256,Spencer Dinwiddie,BKN,24.0,198.12,90.7184,Colorado,USA,2014,2,38,59,7.3,2.8,3.1,-4.9,0.022000000000000002,0.109,0.14400000000000002,0.581,0.21,2016-17 9257,Richaun Holmes,PHI,23.0,208.28,111.13004,Bowling Green,USA,2015,2,37,57,9.8,5.5,1.0,-7.6,0.087,0.198,0.188,0.611,0.081,2016-17 9258,Richard Jefferson,CLE,37.0,200.66,105.68693600000002,Arizona,USA,2001,1,13,79,5.7,2.6,1.0,3.4,0.02,0.115,0.12300000000000001,0.574,0.068,2016-17 9259,Reggie Williams,NOP,30.0,201.0,86.0,Virginia Military Institute,USA,Undrafted,Undrafted,Undrafted,6,4.5,1.0,0.7,-20.2,0.022000000000000002,0.062,0.132,0.518,0.087,2016-17 9260,Reggie Jackson,DET,27.0,190.5,94.34713599999999,Boston College,USA,2011,1,24,52,14.5,2.2,5.2,-8.8,0.015,0.077,0.264,0.51,0.306,2016-17 9261,Reggie Bullock,DET,26.0,200.66,92.98635999999999,North Carolina,USA,2013,1,25,31,4.5,2.1,0.9,5.0,0.028999999999999998,0.11900000000000001,0.131,0.5379999999999999,0.086,2016-17 9262,Raymond Felton,LAC,33.0,185.42,92.98635999999999,North Carolina,USA,2005,1,5,80,6.7,2.7,2.4,-4.1,0.021,0.11800000000000001,0.166,0.496,0.172,2016-17 9263,Raul Neto,UTA,25.0,185.42,81.19296800000001,None,Brazil,2013,2,47,40,2.5,0.8,0.9,13.9,0.013999999999999999,0.084,0.147,0.527,0.14,2016-17 9264,Rashad Vaughn,MIL,20.0,198.12,91.625584,UNLV,USA,2015,1,17,41,3.5,1.2,0.6,-7.6,0.01,0.11199999999999999,0.17300000000000001,0.449,0.085,2016-17 9265,Randy Foye,BKN,33.0,193.04,98.88305600000001,Villanova,USA,2006,1,7,69,5.2,2.2,2.0,-7.0,0.006999999999999999,0.124,0.145,0.506,0.153,2016-17 9266,Ramon Sessions,CHA,31.0,190.5,86.18248,Nevada,USA,2007,2,56,50,6.2,1.5,2.6,-4.8,0.015,0.078,0.19699999999999998,0.495,0.24,2016-17 9267,Rakeem Christmas,IND,25.0,205.74,113.398,Syracuse,USA,2015,2,36,29,2.0,1.9,0.1,-10.6,0.127,0.157,0.12300000000000001,0.529,0.027000000000000003,2016-17 9268,Rajon Rondo,CHI,31.0,185.42,84.368112,Kentucky,USA,2006,1,21,69,7.8,5.1,6.7,-2.1,0.043,0.16699999999999998,0.177,0.461,0.361,2016-17 9269,Ricky Rubio,MIN,26.0,193.04,86.18248,None,Spain,2009,1,5,75,11.1,4.1,9.1,-1.0,0.032,0.11199999999999999,0.174,0.539,0.385,2016-17 9270,RJ Hunter,CHI,23.0,195.58,83.91452,Georgia State,USA,2015,1,28,3,0.0,0.3,0.0,-57.8,0.0,0.077,0.042,0.0,0.0,2016-17 9271,Quincy Acy,BKN,26.0,200.66,108.86208,Baylor,USA,2012,2,37,38,5.8,3.0,0.5,-4.7,0.040999999999999995,0.192,0.16899999999999998,0.565,0.053,2016-17 9272,Pierre Jackson,DAL,25.0,177.8,81.64656,Baylor,USA,2013,2,42,8,4.4,1.1,2.4,31.7,0.011000000000000001,0.111,0.23199999999999998,0.41600000000000004,0.322,2016-17 9273,Paul Zipser,CHI,23.0,203.2,95.25432,None,Germany,2016,2,48,44,5.5,2.8,0.8,1.6,0.019,0.138,0.145,0.503,0.062,2016-17 9274,Paul Pierce,LAC,39.0,200.66,106.59411999999999,Kansas,USA,1998,1,10,25,3.2,1.9,0.4,2.4,0.004,0.168,0.149,0.535,0.049,2016-17 9275,Paul Millsap,ATL,32.0,203.2,111.58363200000001,Louisiana Tech,USA,2006,2,47,69,18.1,7.7,3.7,2.0,0.053,0.192,0.243,0.542,0.172,2016-17 9276,Paul George,IND,27.0,205.74,99.79024,Fresno State,USA,2010,1,10,75,23.7,6.6,3.3,2.9,0.025,0.17800000000000002,0.29,0.5870000000000001,0.157,2016-17 9277,Pau Gasol,SAS,36.0,213.36,113.398,None,Spain,2001,1,3,64,12.4,7.8,2.3,6.8,0.077,0.271,0.21600000000000003,0.578,0.14300000000000002,2016-17 9278,Patty Mills,SAS,28.0,182.88,83.91452,Saint Mary's (CA),Australia,2009,2,55,80,9.5,1.8,3.5,12.0,0.015,0.07400000000000001,0.18899999999999997,0.578,0.23600000000000002,2016-17 9279,Patrick Patterson,TOR,28.0,205.74,106.59411999999999,Kentucky,USA,2010,1,14,65,6.8,4.5,1.2,10.9,0.045,0.162,0.125,0.542,0.066,2016-17 9280,Patrick McCaw,GSW,21.0,200.66,83.91452,Nevada-Las Vegas,USA,2016,2,38,71,4.0,1.4,1.1,-0.7,0.021,0.078,0.11900000000000001,0.54,0.099,2016-17 9281,Patrick Beverley,HOU,28.0,185.42,83.91452,Arkansas,USA,2009,2,42,67,9.5,5.9,4.2,7.3,0.05,0.159,0.141,0.546,0.184,2016-17 9282,Patricio Garino,ORL,24.0,198.12,92.079176,George Washington,Argentina,Undrafted,Undrafted,Undrafted,5,0.0,1.4,0.0,-21.1,0.025,0.133,0.10300000000000001,0.0,0.0,2016-17 9283,Quinn Cook,NOP,24.0,187.96,81.19296800000001,Duke,USA,Undrafted,Undrafted,Undrafted,14,5.6,0.5,1.9,-7.7,0.006,0.042,0.19899999999999998,0.579,0.198,2016-17 9284,Robert Covington,PHI,26.0,205.74,97.52228000000001,Tennessee State,USA,Undrafted,Undrafted,Undrafted,67,12.9,6.5,1.5,-3.5,0.047,0.177,0.19,0.534,0.075,2016-17 9285,Robin Lopez,CHI,29.0,213.36,115.66596000000001,Stanford,USA,2008,1,15,81,10.4,6.4,1.0,0.2,0.114,0.131,0.174,0.511,0.054000000000000006,2016-17 9286,Rodney Hood,UTA,24.0,203.2,93.439952,Duke,USA,2014,1,23,59,12.7,3.4,1.6,4.2,0.012,0.13,0.231,0.522,0.102,2016-17 9287,Solomon Hill,NOP,26.0,200.66,102.0582,Arizona,USA,2013,1,23,80,7.0,3.8,1.8,0.9,0.023,0.113,0.115,0.527,0.08,2016-17 9288,Skal Labissiere,SAC,21.0,210.82,102.0582,Kentucky,Haiti,2016,1,28,33,8.8,4.9,0.8,-2.9,0.095,0.19399999999999998,0.212,0.5770000000000001,0.071,2016-17 9289,Shelvin Mack,UTA,27.0,190.5,92.079176,Butler,USA,2011,2,34,55,7.8,2.3,2.8,0.3,0.02,0.099,0.195,0.518,0.21,2016-17 9290,Sheldon Mac,WAS,24.0,198.12,90.7184,Miami (Fla.),USA,Undrafted,Undrafted,Undrafted,30,3.0,1.1,0.5,-8.7,0.015,0.115,0.14300000000000002,0.518,0.078,2016-17 9291,Shawn Long,PHI,24.0,205.74,115.66596000000001,Louisiana-Lafayette,USA,Undrafted,Undrafted,Undrafted,18,8.2,4.7,0.7,2.6,0.196,0.214,0.245,0.595,0.087,2016-17 9292,Shaun Livingston,GSW,31.0,200.66,87.089664,None,USA,2004,1,4,76,5.1,2.0,1.8,7.6,0.025,0.095,0.135,0.568,0.146,2016-17 9293,Shabazz Napier,POR,25.0,185.42,79.3786,Connecticut,USA,2014,1,24,53,4.1,1.2,1.3,2.7,0.019,0.122,0.22399999999999998,0.5329999999999999,0.2,2016-17 9294,Shabazz Muhammad,MIN,24.0,198.12,101.151016,UCLA,USA,2013,1,14,78,9.9,2.8,0.4,-1.5,0.063,0.109,0.214,0.5660000000000001,0.038,2016-17 9295,Seth Curry,DAL,26.0,187.96,83.91452,Duke,USA,Undrafted,Undrafted,Undrafted,70,12.8,2.6,2.7,-0.7,0.013999999999999999,0.095,0.19699999999999998,0.601,0.159,2016-17 9296,Sergio Rodriguez,PHI,31.0,190.5,79.83219199999998,None,Spain,2006,1,27,68,7.8,2.3,5.1,-5.3,0.015,0.10099999999999999,0.19399999999999998,0.484,0.349,2016-17 9297,Serge Ibaka,TOR,27.0,208.28,106.59411999999999,None,Democratic Republic of the Congo,2008,1,24,79,14.8,6.8,0.9,-2.7,0.059000000000000004,0.188,0.21100000000000002,0.5660000000000001,0.05,2016-17 9298,Semaj Christon,OKC,24.0,190.5,86.18248,Xavier,USA,2014,2,55,64,2.9,1.4,2.0,-6.5,0.023,0.085,0.127,0.387,0.193,2016-17 9299,Sean Kilpatrick,BKN,27.0,193.04,99.336648,Cincinnati,USA,Undrafted,Undrafted,Undrafted,70,13.1,4.0,2.2,-6.4,0.013999999999999999,0.153,0.237,0.546,0.147,2016-17 9300,Sasha Vujacic,NYK,33.0,200.66,88.45044,None,Slovenia,2004,1,27,42,3.0,1.4,1.2,-1.5,0.031,0.12300000000000001,0.17300000000000001,0.423,0.18899999999999997,2016-17 9301,Sam Dekker,HOU,23.0,205.74,104.32616,Wisconsin,USA,2015,1,18,77,6.5,3.7,1.0,2.8,0.073,0.145,0.15,0.5489999999999999,0.079,2016-17 9302,Salah Mejri,DAL,31.0,218.44,111.13004,None,Tunisia,Undrafted,Undrafted,Undrafted,73,2.9,4.2,0.2,0.2,0.122,0.287,0.107,0.65,0.025,2016-17 9303,Ryan Kelly,ATL,26.0,210.82,104.32616,Duke,USA,2013,2,48,16,1.6,1.1,0.5,2.6,0.01,0.168,0.147,0.408,0.11599999999999999,2016-17 9304,Ryan Anderson,HOU,29.0,208.28,108.86208,California,USA,2008,1,21,72,13.6,4.6,0.9,7.9,0.057999999999999996,0.115,0.179,0.583,0.046,2016-17 9305,Russell Westbrook,OKC,28.0,190.5,90.7184,UCLA,USA,2008,1,4,81,31.6,10.7,10.4,3.3,0.053,0.27899999999999997,0.408,0.5539999999999999,0.5429999999999999,2016-17 9306,Rudy Gobert,UTA,25.0,215.9,111.13004,None,France,2013,1,27,81,14.0,12.8,1.2,8.1,0.138,0.28800000000000003,0.16699999999999998,0.6809999999999999,0.057,2016-17 9307,Rudy Gay,SAC,30.0,203.2,104.32616,Connecticut,USA,2006,1,8,30,18.7,6.3,2.8,1.7,0.039,0.17600000000000002,0.251,0.5589999999999999,0.14,2016-17 9308,Roy Hibbert,DEN,30.0,218.44,122.46983999999999,Georgetown,USA,2008,1,17,48,4.6,3.2,0.4,-0.3,0.086,0.14,0.139,0.614,0.048,2016-17 9309,Ronnie Price,PHX,34.0,187.96,86.18248,Utah Valley,USA,Undrafted,Undrafted,Undrafted,14,1.0,0.8,1.3,-12.8,0.02,0.068,0.087,0.272,0.188,2016-17 9310,Rondae Hollis-Jefferson,BKN,22.0,200.66,97.068688,Arizona,USA,2015,1,23,78,8.7,5.8,2.0,-4.7,0.057999999999999996,0.21,0.187,0.517,0.135,2016-17 9311,Ron Baker,NYK,24.0,193.04,99.79024,Wichita State,USA,Undrafted,Undrafted,Undrafted,52,4.1,1.9,2.1,-2.5,0.015,0.113,0.152,0.456,0.188,2016-17 9312,Rodney Stuckey,IND,31.0,195.58,92.98635999999999,Eastern Washington,USA,2007,1,15,39,7.2,2.2,2.2,-0.9,0.01,0.125,0.222,0.483,0.184,2016-17 9313,Rodney McGruder,MIA,25.0,193.04,92.98635999999999,Kansas State,USA,Undrafted,Undrafted,Undrafted,78,6.4,3.3,1.6,-0.2,0.054000000000000006,0.09300000000000001,0.124,0.506,0.08800000000000001,2016-17 9314,Spencer Hawes,MIL,29.0,215.9,111.13004,Washington,USA,2007,1,10,54,6.2,3.5,1.5,-10.2,0.052000000000000005,0.215,0.19699999999999998,0.562,0.174,2016-17 9315,Jordan McRae,CLE,26.0,195.58,81.19296800000001,Tennessee,USA,2014,2,58,37,4.4,1.1,0.5,-7.5,0.018000000000000002,0.099,0.21600000000000003,0.488,0.083,2016-17 9316,Al Horford,BOS,31.0,208.28,111.13004,Florida,Dominican Republic,2007,1,3,68,14.0,6.8,5.0,5.0,0.049,0.183,0.19899999999999998,0.5529999999999999,0.239,2016-17 9317,Jordan Farmar,SAC,30.0,187.96,81.64656,UCLA,USA,2006,1,26,2,6.0,1.5,4.5,-6.4,0.038,0.061,0.191,0.5,0.34600000000000003,2016-17 9318,D.J. Augustin,ORL,29.0,182.88,83.007336,Texas,USA,2008,1,9,78,7.9,1.5,2.7,-15.1,0.01,0.077,0.19899999999999998,0.524,0.237,2016-17 9319,D'Angelo Russell,LAL,21.0,195.58,88.45044,Ohio State,USA,2015,1,2,63,15.6,3.5,4.8,-8.7,0.018000000000000002,0.12,0.267,0.518,0.26899999999999996,2016-17 9320,Cristiano Felicio,CHI,24.0,205.74,120.655472,None,Brazil,Undrafted,Undrafted,Undrafted,66,4.8,4.7,0.6,-0.1,0.131,0.19899999999999998,0.126,0.603,0.061,2016-17 9321,Courtney Lee,NYK,31.0,195.58,90.7184,Western Kentucky,USA,2008,1,22,77,10.8,3.4,2.3,-4.9,0.023,0.092,0.145,0.5589999999999999,0.10400000000000001,2016-17 9322,Cory Joseph,TOR,25.0,190.5,86.18248,Texas,Canada,2011,1,29,80,9.3,2.9,3.3,2.0,0.028999999999999998,0.10400000000000001,0.183,0.518,0.2,2016-17 9323,Corey Brewer,LAL,31.0,205.74,84.368112,Florida,USA,2007,1,7,82,4.5,2.0,1.2,3.0,0.027000000000000003,0.11800000000000001,0.145,0.491,0.10400000000000001,2016-17 9324,Cole Aldrich,MIN,28.0,210.82,113.398,Kansas,USA,2010,1,11,62,1.7,2.5,0.4,-0.2,0.11,0.248,0.094,0.5489999999999999,0.063,2016-17 9325,Cody Zeller,CHA,24.0,213.36,108.86208,Indiana,USA,2013,1,4,62,10.3,6.5,1.6,5.4,0.085,0.17600000000000002,0.154,0.604,0.087,2016-17 9326,Clint Capela,HOU,23.0,208.28,108.86208,None,Switzerland,2014,1,25,65,12.6,8.1,1.0,7.8,0.127,0.25,0.201,0.638,0.066,2016-17 9327,Christian Wood,CHA,21.0,210.82,99.79024,Nevada-Las Vegas,USA,Undrafted,Undrafted,Undrafted,13,2.7,2.2,0.2,5.5,0.149,0.14300000000000002,0.153,0.591,0.031,2016-17 9328,Chris Paul,LAC,32.0,182.88,79.3786,Wake Forest,USA,2005,1,4,61,18.1,5.0,9.2,14.9,0.025,0.149,0.243,0.614,0.444,2016-17 9329,Chris McCullough,WAS,22.0,205.74,97.52228000000001,Syracuse,USA,2015,1,29,16,2.3,1.2,0.1,26.8,0.129,0.12300000000000001,0.198,0.526,0.036000000000000004,2016-17 9330,Dahntay Jones,CLE,36.0,198.12,102.0582,Duke,USA,2003,1,20,1,9.0,2.0,1.0,4.3,0.077,0.091,0.414,0.461,0.2,2016-17 9331,Chris Andersen,CLE,38.0,208.28,111.13004,Blinn,USA,Undrafted,Undrafted,Undrafted,12,2.3,2.6,0.4,4.3,0.098,0.191,0.136,0.49700000000000005,0.063,2016-17 9332,Cheick Diallo,NOP,20.0,205.74,99.79024,Kansas,Mali,2016,2,33,17,5.1,4.3,0.2,-9.4,0.115,0.28600000000000003,0.203,0.51,0.031,2016-17 9333,Chasson Randle,NYK,24.0,187.96,83.91452,Stanford,USA,Undrafted,Undrafted,Undrafted,26,5.3,1.2,1.3,-3.4,0.022000000000000002,0.09699999999999999,0.19699999999999998,0.586,0.17300000000000001,2016-17 9334,Channing Frye,CLE,34.0,210.82,115.66596000000001,Arizona,USA,2005,1,8,74,9.1,3.9,0.6,1.0,0.031,0.19,0.196,0.612,0.05,2016-17 9335,Chandler Parsons,MEM,28.0,208.28,104.32616,Florida,USA,2011,2,38,34,6.2,2.5,1.6,-3.6,0.01,0.141,0.184,0.436,0.122,2016-17 9336,Carmelo Anthony,NYK,33.0,203.2,108.86208,Syracuse,USA,2003,1,3,74,22.4,5.9,2.9,-5.0,0.026000000000000002,0.16,0.29,0.535,0.141,2016-17 9337,Caris LeVert,BKN,22.0,200.66,92.079176,Michigan,USA,2016,1,20,57,8.2,3.3,1.9,-2.7,0.02,0.141,0.16399999999999998,0.556,0.132,2016-17 9338,Cameron Payne,CHI,22.0,190.5,83.91452,Murray State,USA,2015,1,14,31,5.2,1.5,1.8,-8.7,0.006999999999999999,0.111,0.215,0.40700000000000003,0.195,2016-17 9339,CJ Wilcox,ORL,26.0,195.58,88.45044,Washington,USA,2014,1,28,22,1.0,0.5,0.5,-13.1,0.033,0.087,0.149,0.32899999999999996,0.174,2016-17 9340,CJ Miles,IND,30.0,198.12,102.0582,None,USA,2005,2,34,76,10.7,3.0,0.6,0.8,0.019,0.129,0.183,0.5920000000000001,0.040999999999999995,2016-17 9341,CJ McCollum,POR,25.0,190.5,86.18248,Lehigh,USA,2013,1,10,80,23.0,3.6,3.6,1.2,0.024,0.09,0.27399999999999997,0.585,0.175,2016-17 9342,C.J. Watson,ORL,33.0,187.96,79.3786,Tennessee,USA,Undrafted,Undrafted,Undrafted,62,4.5,1.4,1.8,-9.9,0.017,0.084,0.142,0.507,0.174,2016-17 9343,Buddy Hield,SAC,23.0,193.04,97.068688,Oklahoma,Bahamas,2016,1,6,82,10.6,3.3,1.5,-5.5,0.02,0.134,0.214,0.541,0.10099999999999999,2016-17 9344,Chinanu Onuaku,HOU,20.0,208.28,111.13004,Louisville,USA,2016,2,37,5,2.8,2.0,0.6,-41.4,0.049,0.17,0.10800000000000001,0.799,0.086,2016-17 9345,Damian Jones,GSW,22.0,213.36,111.13004,Vanderbilt,USA,2016,1,30,10,1.9,2.3,0.0,-14.9,0.113,0.222,0.138,0.466,0.0,2016-17 9346,Damian Lillard,POR,26.0,190.5,88.45044,Weber State,USA,2012,1,6,75,27.0,4.9,5.9,1.2,0.018000000000000002,0.134,0.309,0.586,0.27699999999999997,2016-17 9347,Damjan Rudez,ORL,31.0,208.28,103.418976,None,Croatia,Undrafted,Undrafted,Undrafted,45,1.8,0.6,0.4,-17.3,0.017,0.079,0.138,0.466,0.10099999999999999,2016-17 9348,Derrick Favors,UTA,25.0,208.28,120.20188,Georgia Tech,USA,2010,1,3,50,9.5,6.1,1.1,2.8,0.092,0.205,0.20800000000000002,0.512,0.079,2016-17 9349,Deron Williams,CLE,33.0,190.5,90.7184,Illinois,USA,2005,1,3,64,11.0,2.3,5.6,-2.8,0.009000000000000001,0.096,0.22399999999999998,0.541,0.35,2016-17 9350,Denzel Valentine,CHI,23.0,198.12,96.16150400000001,Michigan State,USA,2016,1,14,57,5.1,2.6,1.1,-0.5,0.012,0.161,0.156,0.49200000000000005,0.095,2016-17 9351,Dennis Schroder,ATL,23.0,185.42,78.017824,None,Germany,2013,1,17,79,17.9,3.1,6.3,-2.0,0.019,0.08800000000000001,0.276,0.5329999999999999,0.34,2016-17 9352,Demetrius Jackson,BOS,22.0,185.42,91.171992,Notre Dame,USA,2016,2,45,5,2.0,0.8,0.6,6.3,0.091,0.11800000000000001,0.172,0.753,0.3,2016-17 9353,Delon Wright,TOR,25.0,195.58,86.18248,Utah,USA,2015,1,20,27,5.6,1.8,2.1,8.8,0.042,0.084,0.16699999999999998,0.535,0.204,2016-17 9354,Dejounte Murray,SAS,20.0,195.58,77.11064,Washington,USA,2016,1,29,38,3.4,1.1,1.3,2.9,0.023,0.11699999999999999,0.24100000000000002,0.503,0.23600000000000002,2016-17 9355,DeMarre Carroll,TOR,30.0,203.2,96.16150400000001,Missouri,USA,2009,1,27,72,8.9,3.8,1.0,3.3,0.038,0.126,0.156,0.53,0.055999999999999994,2016-17 9356,DeMarcus Cousins,NOP,26.0,210.82,122.46983999999999,Kentucky,USA,2010,1,5,72,27.0,11.0,4.6,-2.2,0.07200000000000001,0.305,0.364,0.562,0.262,2016-17 9357,DeMar DeRozan,TOR,27.0,200.66,99.79024,Southern California,USA,2009,1,9,74,27.3,5.2,3.9,3.3,0.03,0.134,0.342,0.552,0.204,2016-17 9358,DeAndre' Bembry,ATL,22.0,198.12,95.25432,Saint Joseph's,USA,2016,1,21,38,2.7,1.6,0.7,-3.4,0.042,0.138,0.15,0.48100000000000004,0.12300000000000001,2016-17 9359,DeAndre Liggins,DAL,29.0,198.12,94.800728,Kentucky,USA,2011,2,53,62,2.5,1.7,0.9,2.8,0.028999999999999998,0.124,0.11599999999999999,0.47600000000000003,0.09699999999999999,2016-17 9360,DeAndre Jordan,LAC,28.0,210.82,120.20188,Texas A&M,USA,2008,2,35,81,12.7,13.8,1.2,9.7,0.136,0.34299999999999997,0.153,0.6729999999999999,0.054000000000000006,2016-17 9361,Davis Bertans,SAS,24.0,208.28,95.25432,None,Latvia,2011,2,42,67,4.5,1.5,0.7,6.3,0.031,0.105,0.155,0.609,0.084,2016-17 9362,David West,GSW,36.0,205.74,113.398,Xavier,USA,2003,1,18,68,4.6,3.0,2.2,9.1,0.069,0.192,0.19399999999999998,0.5710000000000001,0.26,2016-17 9363,David Nwaba,LAL,24.0,193.04,94.800728,None,USA,Undrafted,Undrafted,Undrafted,20,6.0,3.2,0.7,2.2,0.049,0.131,0.12,0.611,0.048,2016-17 9364,David Lee,SAS,34.0,205.74,111.13004,Florida,USA,2005,1,30,79,7.3,5.6,1.6,11.0,0.11800000000000001,0.21100000000000002,0.166,0.613,0.126,2016-17 9365,Darrun Hilliard,DET,24.0,198.12,92.98635999999999,Villanova,USA,2015,2,38,39,3.3,0.8,0.8,-0.1,0.006,0.092,0.196,0.45899999999999996,0.133,2016-17 9366,Darren Collison,SAC,29.0,182.88,79.3786,UCLA,USA,2009,1,21,68,13.2,2.2,4.6,-4.2,0.013000000000000001,0.07400000000000001,0.2,0.57,0.243,2016-17 9367,Darrell Arthur,DEN,29.0,205.74,106.59411999999999,Kansas,USA,2008,1,27,41,6.4,2.7,1.0,-0.4,0.043,0.155,0.18,0.583,0.099,2016-17 9368,Dario Saric,PHI,23.0,208.28,101.151016,None,Croatia,2014,1,12,81,12.8,6.3,2.2,-7.2,0.059000000000000004,0.207,0.244,0.508,0.145,2016-17 9369,Danuel House,WAS,24.0,200.66,97.52228000000001,Texas A&M,USA,Undrafted,Undrafted,Undrafted,1,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2016-17 9370,Dante Exum,UTA,21.0,198.12,86.18248,None,Australia,2014,1,5,66,6.2,2.0,1.7,2.0,0.028999999999999998,0.091,0.18100000000000002,0.521,0.14400000000000002,2016-17 9371,Dante Cunningham,NOP,30.0,203.2,104.32616,Villanova,USA,2009,2,33,66,6.6,4.2,0.6,-0.3,0.036000000000000004,0.14400000000000002,0.10800000000000001,0.586,0.031,2016-17 9372,Danny Green,SAS,30.0,198.12,97.52228000000001,North Carolina,USA,2009,2,46,68,7.3,3.3,1.8,7.8,0.02,0.11599999999999999,0.13699999999999998,0.537,0.09699999999999999,2016-17 9373,Danilo Gallinari,DEN,28.0,208.28,102.0582,None,Italy,2008,1,6,63,18.2,5.2,2.1,2.7,0.021,0.14400000000000002,0.2,0.622,0.09,2016-17 9374,Daniel Ochefu,WAS,23.0,210.82,111.13004,Villanova,USA,Undrafted,Undrafted,Undrafted,19,1.3,1.2,0.2,-20.5,0.077,0.28800000000000003,0.19,0.43,0.07,2016-17 9375,Bryn Forbes,SAS,23.0,190.5,86.18248,Michigan State,USA,Undrafted,Undrafted,Undrafted,36,2.6,0.6,0.6,-8.7,0.006999999999999999,0.08199999999999999,0.18100000000000002,0.462,0.146,2016-17 9376,Derrick Jones Jr.,PHX,20.0,200.66,86.18248,Nevada-Las Vegas,USA,Undrafted,Undrafted,Undrafted,32,5.3,2.5,0.4,4.4,0.076,0.078,0.11699999999999999,0.604,0.03,2016-17 9377,Bruno Caboclo,TOR,21.0,205.74,92.98635999999999,None,Brazil,2014,1,20,9,1.6,1.1,0.4,6.2,0.109,0.139,0.192,0.43799999999999994,0.154,2016-17 9378,Brice Johnson,LAC,23.0,208.28,104.32616,North Carolina,USA,2016,1,25,3,1.3,1.0,0.3,44.9,0.14300000000000002,0.222,0.385,0.28600000000000003,0.16699999999999998,2016-17 9379,Andrew Wiggins,MIN,22.0,203.2,90.264808,Kansas,Canada,2014,1,1,82,23.6,4.0,2.3,-0.5,0.039,0.087,0.28800000000000003,0.534,0.10400000000000001,2016-17 9380,Andrew Nicholson,BKN,27.0,205.74,113.398,St. Bonaventure,Canada,2012,1,19,38,2.6,1.6,0.3,-17.6,0.05,0.156,0.17800000000000002,0.42700000000000005,0.047,2016-17 9381,Andrew Harrison,MEM,22.0,198.12,96.615096,Kentucky,USA,2015,2,44,72,5.9,1.9,2.8,-0.3,0.017,0.09,0.16399999999999998,0.47700000000000004,0.209,2016-17 9382,Andrew Bogut,CLE,32.0,213.36,117.93392,Utah,Australia,2005,1,1,27,2.9,8.1,1.8,-1.7,0.10300000000000001,0.32,0.106,0.46,0.133,2016-17 9383,Andre Roberson,OKC,25.0,200.66,95.25432,Colorado,USA,2013,1,26,79,6.6,5.1,1.0,2.8,0.046,0.138,0.1,0.51,0.045,2016-17 9384,Andre Iguodala,GSW,33.0,198.12,97.52228000000001,Arizona,USA,2004,1,9,76,7.6,4.0,3.4,13.4,0.03,0.131,0.113,0.624,0.16899999999999998,2016-17 9385,Andre Drummond,DET,23.0,210.82,126.552168,Connecticut,USA,2012,1,9,81,13.6,13.8,1.1,-6.3,0.146,0.373,0.22399999999999998,0.518,0.06,2016-17 9386,Anderson Varejao,GSW,34.0,210.82,123.830616,None,Brazil,2004,2,30,14,1.3,1.9,0.7,-8.4,0.133,0.188,0.124,0.478,0.152,2016-17 9387,Amir Johnson,BOS,30.0,205.74,108.86208,None,USA,2005,2,56,80,6.5,4.6,1.8,8.0,0.084,0.16899999999999998,0.138,0.628,0.125,2016-17 9388,Alonzo Gee,DEN,30.0,198.12,102.0582,Alabama,USA,Undrafted,Undrafted,Undrafted,13,0.8,1.2,0.5,1.4,0.046,0.136,0.10800000000000001,0.306,0.092,2016-17 9389,Allen Crabbe,POR,25.0,198.12,97.52228000000001,California,USA,2013,2,31,79,10.7,2.9,1.2,-2.8,0.009000000000000001,0.105,0.149,0.602,0.063,2016-17 9390,Alexis Ajinca,NOP,29.0,218.44,112.490816,None,France,2008,1,20,39,5.3,4.5,0.3,-4.7,0.084,0.225,0.171,0.529,0.031,2016-17 9391,Anthony Bennett,BKN,24.0,203.2,106.59411999999999,Nevada-Las Vegas,Canada,2013,1,1,23,5.0,3.4,0.5,-10.6,0.10400000000000001,0.207,0.191,0.5329999999999999,0.075,2016-17 9392,Alex Poythress,PHI,23.0,200.66,107.95489599999999,Kentucky,USA,Undrafted,Undrafted,Undrafted,6,10.7,4.8,0.8,-9.6,0.073,0.13699999999999998,0.166,0.5479999999999999,0.052000000000000005,2016-17 9393,Alex Abrines,OKC,23.0,198.12,86.18248,None,Spain,2013,2,32,68,6.0,1.3,0.6,-2.3,0.019,0.07400000000000001,0.157,0.56,0.055,2016-17 9394,Alec Burks,UTA,25.0,198.12,97.068688,Colorado,USA,2011,1,12,42,6.7,2.9,0.7,0.1,0.028999999999999998,0.18,0.21899999999999997,0.501,0.07400000000000001,2016-17 9395,Alan Williams,PHX,24.0,203.2,117.93392,California-Santa Barbara,USA,Undrafted,Undrafted,Undrafted,47,7.4,6.2,0.5,-0.3,0.138,0.293,0.20600000000000002,0.547,0.049,2016-17 9396,Alan Anderson,LAC,34.0,198.12,99.79024,Michigan State,USA,Undrafted,Undrafted,Undrafted,30,2.9,0.8,0.4,-10.8,0.011000000000000001,0.077,0.142,0.494,0.052000000000000005,2016-17 9397,Al-Farouq Aminu,POR,26.0,205.74,99.79024,Wake Forest,USA,2010,1,8,61,8.7,7.4,1.6,1.8,0.049,0.23199999999999998,0.158,0.506,0.08199999999999999,2016-17 9398,Al Jefferson,IND,32.0,208.28,131.088088,None,USA,2004,1,15,66,8.1,4.2,0.9,-5.8,0.086,0.251,0.26,0.526,0.114,2016-17 9399,Zach Randolph,MEM,35.0,205.74,117.93392,Michigan State,USA,2001,1,19,73,14.1,8.2,1.7,-1.1,0.113,0.28,0.285,0.49,0.131,2016-17 9400,Adreian Payne,MIN,26.0,208.28,107.501304,Michigan State,USA,2014,1,15,18,3.5,1.8,0.4,0.8,0.069,0.2,0.22399999999999998,0.505,0.08900000000000001,2016-17 9401,Aaron Harrison,CHA,22.0,198.12,95.25432,Kentucky,USA,Undrafted,Undrafted,Undrafted,5,0.2,0.6,0.6,-18.6,0.0,0.2,0.142,0.102,0.375,2016-17 9402,Aaron Gordon,ORL,21.0,205.74,99.79024,Arizona,USA,2014,1,4,80,12.7,5.1,1.9,-2.8,0.054000000000000006,0.141,0.2,0.53,0.09699999999999999,2016-17 9403,Aaron Brooks,IND,32.0,182.88,73.028312,Oregon,USA,2007,1,26,65,5.0,1.1,1.9,-3.0,0.022000000000000002,0.064,0.191,0.507,0.21600000000000003,2016-17 9404,AJ Hammons,DAL,24.0,213.36,117.93392,Purdue,USA,2016,2,46,22,2.2,1.6,0.2,-0.6,0.049,0.19899999999999998,0.16699999999999998,0.47200000000000003,0.038,2016-17 9405,Alex Len,PHX,24.0,215.9,117.93392,Maryland,Ukraine,2013,1,5,77,8.0,6.6,0.6,-11.1,0.10400000000000001,0.251,0.17600000000000002,0.5529999999999999,0.043,2016-17 9406,Anthony Brown,ORL,24.0,200.66,95.707912,Stanford,USA,2015,2,34,11,3.9,3.0,0.7,1.3,0.048,0.163,0.158,0.43,0.08,2016-17 9407,Anthony Davis,NOP,24.0,210.82,114.758776,Kentucky,USA,2012,1,1,75,28.0,11.8,2.1,1.7,0.067,0.26899999999999996,0.326,0.58,0.11,2016-17 9408,Anthony Morrow,CHI,31.0,195.58,95.25432,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,49,5.5,0.6,0.5,-1.8,0.018000000000000002,0.03,0.161,0.505,0.052000000000000005,2016-17 9409,Briante Weber,CHA,24.0,187.96,74.84268,Virginia Commonwealth,USA,Undrafted,Undrafted,Undrafted,20,3.1,1.3,1.1,-10.8,0.043,0.126,0.17300000000000001,0.462,0.168,2016-17 9410,Brian Roberts,CHA,31.0,185.42,78.471416,Dayton,USA,Undrafted,Undrafted,Undrafted,41,3.5,1.0,1.3,-7.0,0.013000000000000001,0.094,0.18600000000000003,0.51,0.214,2016-17 9411,Brandon Rush,MIN,31.0,198.12,102.0582,Kansas,USA,2008,1,13,47,4.2,2.1,1.0,-0.8,0.019,0.08900000000000001,0.09699999999999999,0.505,0.057999999999999996,2016-17 9412,Brandon Knight,PHX,25.0,190.5,88.45044,Kentucky,USA,2011,1,8,54,11.0,2.2,2.4,-12.1,0.023,0.094,0.253,0.502,0.19399999999999998,2016-17 9413,Brandon Jennings,WAS,27.0,185.42,77.11064,None,USA,2009,1,10,81,7.1,2.4,4.9,-3.0,0.018000000000000002,0.1,0.175,0.479,0.308,2016-17 9414,Brandon Ingram,LAL,19.0,205.74,86.18248,Duke,USA,2016,1,2,79,9.4,4.0,2.1,-8.0,0.027999999999999997,0.128,0.16899999999999998,0.474,0.105,2016-17 9415,Brandon Bass,LAC,32.0,203.2,113.398,Louisiana State,USA,2005,2,33,52,5.6,2.5,0.4,-13.0,0.086,0.165,0.2,0.65,0.063,2016-17 9416,Brandan Wright,MEM,29.0,208.28,95.25432,North Carolina,USA,2007,1,8,28,6.8,2.8,0.5,3.9,0.078,0.115,0.166,0.628,0.06,2016-17 9417,Bradley Beal,WAS,24.0,195.58,93.89354399999999,Florida,USA,2012,1,3,77,23.1,3.1,3.5,5.6,0.022000000000000002,0.078,0.263,0.604,0.154,2016-17 9418,Boris Diaw,UTA,35.0,203.2,113.398,None,France,2003,1,21,73,4.6,2.2,2.3,2.4,0.043,0.10300000000000001,0.158,0.494,0.207,2016-17 9419,Bojan Bogdanovic,WAS,28.0,203.2,102.0582,None,Croatia,2011,2,31,81,13.7,3.4,1.4,-7.0,0.02,0.124,0.22399999999999998,0.585,0.086,2016-17 9420,Bobby Portis,CHI,22.0,210.82,111.58363200000001,Arkansas,USA,2015,1,22,64,6.8,4.6,0.5,-4.3,0.078,0.242,0.193,0.545,0.059000000000000004,2016-17 9421,Bobby Brown,HOU,32.0,187.96,79.3786,Cal State-Fullerton,USA,Undrafted,Undrafted,Undrafted,25,2.5,0.2,0.6,-12.1,0.0,0.05,0.23399999999999999,0.509,0.175,2016-17 9422,Boban Marjanovic,DET,28.0,220.98,131.54168,None,Serbia,Undrafted,Undrafted,Undrafted,35,5.5,3.7,0.3,1.9,0.166,0.313,0.248,0.606,0.054000000000000006,2016-17 9423,Blake Griffin,LAC,28.0,208.28,113.851592,Oklahoma,USA,2009,1,1,61,21.6,8.1,4.9,10.6,0.064,0.204,0.278,0.569,0.235,2016-17 9424,Bismack Biyombo,ORL,24.0,205.74,115.66596000000001,None,Democratic Republic of the Congo,2011,1,7,81,6.0,7.0,0.9,-9.4,0.094,0.256,0.135,0.546,0.065,2016-17 9425,Beno Udrih,DET,34.0,190.5,92.98635999999999,None,Slovenia,2004,1,28,39,5.8,1.5,3.4,5.4,0.012,0.102,0.201,0.535,0.364,2016-17 9426,Ben McLemore,SAC,24.0,195.58,88.45044,Kansas,USA,2013,1,7,61,8.1,2.1,0.8,-6.5,0.019,0.106,0.201,0.5379999999999999,0.068,2016-17 9427,Ben Bentil,DAL,22.0,205.74,106.59411999999999,Providence,Ghana,2016,2,51,3,0.0,0.7,0.0,-44.0,0.0,0.25,0.184,0.0,0.0,2016-17 9428,Axel Toupane,NOP,24.0,200.66,95.25432,None,France,Undrafted,Undrafted,Undrafted,4,2.8,0.3,0.0,-6.8,0.0,0.023,0.086,0.611,0.0,2016-17 9429,Avery Bradley,BOS,26.0,187.96,81.64656,Texas,USA,2010,1,19,55,16.3,6.1,2.2,1.2,0.04,0.161,0.218,0.5479999999999999,0.107,2016-17 9430,Austin Rivers,LAC,24.0,193.04,90.7184,Duke,USA,2012,1,10,74,12.0,2.2,2.8,-0.1,0.011000000000000001,0.076,0.203,0.545,0.155,2016-17 9431,Arron Afflalo,SAC,31.0,195.58,95.25432,UCLA,USA,2007,1,27,61,8.4,2.0,1.3,-7.7,0.006999999999999999,0.087,0.147,0.5589999999999999,0.077,2016-17 9432,Aron Baynes,DET,30.0,208.28,117.93392,Washington State,Australia,Undrafted,Undrafted,Undrafted,75,4.9,4.4,0.4,5.2,0.10800000000000001,0.20600000000000002,0.14300000000000002,0.57,0.039,2016-17 9433,Arinze Onuaku,ORL,29.0,205.74,115.66596000000001,Syracuse,USA,Undrafted,Undrafted,Undrafted,8,0.5,0.8,0.3,-30.5,0.069,0.21100000000000002,0.10300000000000001,0.5,0.14300000000000002,2016-17 9434,Archie Goodwin,BKN,22.0,195.58,92.98635999999999,Kentucky,USA,2013,1,29,15,7.3,1.9,1.6,-5.4,0.039,0.106,0.209,0.6509999999999999,0.18600000000000003,2016-17 9435,Anthony Tolliver,SAC,32.0,203.2,108.86208,Creighton,USA,Undrafted,Undrafted,Undrafted,65,7.1,3.6,1.2,-4.8,0.040999999999999995,0.14800000000000002,0.135,0.595,0.077,2016-17 9436,Brook Lopez,BKN,29.0,213.36,121.562656,Stanford,USA,2008,1,10,75,20.5,5.4,2.3,-4.2,0.057999999999999996,0.13,0.29,0.578,0.14300000000000002,2016-17 9437,Jordan Hill,MIN,29.0,208.28,108.86208,Arizona,USA,2009,1,8,7,1.7,2.0,0.0,13.9,0.205,0.133,0.18,0.43200000000000005,0.0,2016-17 9438,Derrick Rose,NYK,28.0,190.5,86.18248,Memphis,USA,2008,1,1,64,18.0,3.8,4.4,-3.9,0.034,0.092,0.256,0.53,0.21600000000000003,2016-17 9439,Devin Booker,PHX,20.0,198.12,93.439952,Kentucky,USA,2015,1,13,78,22.1,3.2,3.4,-4.4,0.018000000000000002,0.08199999999999999,0.284,0.531,0.16,2016-17 9440,Jaylen Brown,BOS,20.0,200.66,102.0582,California,USA,2016,1,3,78,6.6,2.8,0.8,-2.2,0.038,0.146,0.183,0.539,0.077,2016-17 9441,Jason Terry,MIL,39.0,187.96,83.91452,Arizona,USA,1999,1,10,74,4.1,1.4,1.3,4.7,0.013000000000000001,0.077,0.098,0.6,0.1,2016-17 9442,Jason Smith,WAS,31.0,213.36,108.86208,Colorado State,USA,2007,1,20,74,5.7,3.5,0.5,-0.7,0.071,0.203,0.16899999999999998,0.598,0.052000000000000005,2016-17 9443,Jarrod Uthoff,DAL,24.0,205.74,100.243832,Iowa,USA,Undrafted,Undrafted,Undrafted,9,4.4,2.4,1.0,-26.8,0.066,0.149,0.174,0.48700000000000004,0.141,2016-17 9444,Jarrett Jack,NOP,33.0,190.5,90.7184,Georgia Tech,USA,2005,1,22,2,3.0,0.0,2.5,-14.3,0.0,0.0,0.09,0.773,0.263,2016-17 9445,Jarnell Stokes,DEN,23.0,205.74,115.66596000000001,Tennessee,USA,2014,2,35,2,1.5,1.0,1.0,-3.1,0.111,0.14300000000000002,0.111,0.7979999999999999,0.4,2016-17 9446,Jarell Martin,MEM,23.0,208.28,108.40848799999999,Louisiana State,USA,2015,1,25,42,3.9,3.9,0.2,-4.1,0.078,0.24,0.161,0.47700000000000004,0.025,2016-17 9447,Jarell Eddie,PHX,25.0,200.66,98.88305600000001,Virginia Tech,USA,Undrafted,Undrafted,Undrafted,5,4.8,1.4,0.0,-3.4,0.013999999999999999,0.08800000000000001,0.154,0.523,0.0,2016-17 9448,Jared Sullinger,TOR,25.0,205.74,117.93392,Ohio State,USA,2012,1,21,11,3.4,2.5,0.3,-15.8,0.079,0.185,0.204,0.366,0.048,2016-17 9449,Jared Dudley,PHX,31.0,200.66,102.0582,Boston College,USA,2007,1,22,64,6.8,3.5,1.9,-1.0,0.024,0.156,0.138,0.579,0.126,2016-17 9450,James Young,BOS,21.0,198.12,97.52228000000001,Kentucky,USA,2014,1,17,29,2.3,0.9,0.1,-5.8,0.027999999999999997,0.10400000000000001,0.132,0.5489999999999999,0.03,2016-17 9451,James Michael McAdoo,GSW,24.0,205.74,108.86208,North Carolina,USA,Undrafted,Undrafted,Undrafted,52,2.8,1.8,0.3,-0.7,0.08,0.129,0.149,0.5429999999999999,0.06,2016-17 9452,Jeff Green,ORL,30.0,205.74,106.59411999999999,Georgetown,USA,2007,1,5,69,9.2,3.1,1.2,-9.1,0.027000000000000003,0.125,0.204,0.505,0.08900000000000001,2016-17 9453,James Jones,CLE,36.0,203.2,98.88305600000001,Miami (FL),USA,2003,2,49,48,2.8,0.8,0.3,-11.2,0.009000000000000001,0.102,0.139,0.655,0.062,2016-17 9454,James Harden,HOU,27.0,195.58,99.79024,Arizona State,USA,2009,1,3,81,29.1,8.1,11.2,6.3,0.035,0.212,0.341,0.613,0.505,2016-17 9455,James Ennis III,MEM,26.0,200.66,95.25432,Long Beach State,USA,2013,2,50,64,6.7,4.0,1.0,0.7,0.051,0.14300000000000002,0.129,0.581,0.067,2016-17 9456,Jameer Nelson,DEN,35.0,182.88,86.18248,Saint Joseph's,USA,2004,1,20,75,9.2,2.6,5.1,1.1,0.015,0.08900000000000001,0.157,0.544,0.258,2016-17 9457,Jamal Murray,DEN,20.0,193.04,93.89354399999999,Kentucky,Canada,2016,1,7,82,9.9,2.6,2.1,1.0,0.026000000000000002,0.10400000000000001,0.21600000000000003,0.518,0.142,2016-17 9458,Jamal Crawford,LAC,37.0,195.58,88.45044,Michigan,USA,2000,1,8,82,12.3,1.6,2.6,-1.7,0.009000000000000001,0.057999999999999996,0.225,0.525,0.159,2016-17 9459,Jakob Poeltl,TOR,21.0,213.36,104.32616,Utah,Austria,2016,1,9,54,3.1,3.1,0.2,0.3,0.13699999999999998,0.16899999999999998,0.121,0.589,0.03,2016-17 9460,Jake Layman,POR,23.0,205.74,95.25432,Maryland,USA,2016,2,47,35,2.2,0.7,0.3,-0.4,0.025,0.07200000000000001,0.191,0.40399999999999997,0.07200000000000001,2016-17 9461,Jahlil Okafor,PHI,21.0,210.82,124.7378,Duke,USA,2015,1,3,50,11.8,4.8,1.2,-14.5,0.075,0.163,0.247,0.546,0.09699999999999999,2016-17 9462,Jae Crowder,BOS,26.0,198.12,106.59411999999999,Marquette,USA,2012,2,34,72,13.9,5.8,2.2,7.8,0.024,0.171,0.17,0.613,0.09699999999999999,2016-17 9463,Jabari Parker,MIL,22.0,203.2,113.398,Duke,USA,2014,1,2,51,20.1,6.2,2.8,-2.5,0.053,0.151,0.26,0.563,0.13699999999999998,2016-17 9464,JaVale McGee,GSW,29.0,213.36,122.46983999999999,Nevada,USA,2008,1,18,77,6.1,3.2,0.2,18.7,0.156,0.187,0.226,0.642,0.032,2016-17 9465,JaMychal Green,MEM,27.0,205.74,102.965384,Alabama,USA,Undrafted,Undrafted,Undrafted,77,8.9,7.1,1.1,0.4,0.091,0.212,0.147,0.601,0.064,2016-17 9466,James Johnson,MIA,30.0,205.74,113.398,Wake Forest,USA,2009,1,16,76,12.8,4.9,3.6,2.6,0.035,0.163,0.21899999999999997,0.564,0.21,2016-17 9467,Jeff Teague,IND,29.0,187.96,84.368112,Wake Forest,USA,2009,1,19,82,15.3,4.0,7.8,1.2,0.013999999999999999,0.12300000000000001,0.221,0.574,0.359,2016-17 9468,Jeff Withey,UTA,27.0,213.36,104.779752,Kansas,USA,2013,2,39,51,2.9,2.4,0.1,-0.2,0.135,0.18,0.145,0.588,0.025,2016-17 9469,Jerami Grant,OKC,23.0,205.74,95.25432,Syracuse,USA,2014,2,39,80,5.5,2.6,0.6,-5.4,0.027000000000000003,0.122,0.12300000000000001,0.556,0.044000000000000004,2016-17 9470,Jordan Crawford,NOP,28.0,195.58,88.45044,Xavier,USA,2010,1,27,19,14.1,1.8,3.0,0.2,0.01,0.077,0.259,0.5820000000000001,0.192,2016-17 9471,Jordan Clarkson,LAL,25.0,195.58,87.996848,Missouri,USA,2014,2,46,82,14.7,3.0,2.6,-8.9,0.022000000000000002,0.09300000000000001,0.23199999999999998,0.526,0.14300000000000002,2016-17 9472,Jonathon Simmons,SAS,27.0,198.12,88.45044,Houston,USA,Undrafted,Undrafted,Undrafted,78,6.2,2.1,1.6,8.8,0.017,0.111,0.179,0.504,0.13699999999999998,2016-17 9473,Jonathan Gibson,DAL,29.0,187.96,83.91452,New Mexico State,USA,Undrafted,Undrafted,Undrafted,17,6.2,1.3,1.5,-19.6,0.005,0.121,0.253,0.49200000000000005,0.215,2016-17 9474,Jonas Valanciunas,TOR,25.0,213.36,115.66596000000001,None,Lithuania,2011,1,5,80,12.0,9.5,0.7,2.5,0.124,0.297,0.195,0.601,0.043,2016-17 9475,Jonas Jerebko,BOS,30.0,208.28,104.779752,None,Sweden,2009,2,39,78,3.8,3.5,0.9,3.2,0.055,0.192,0.115,0.537,0.081,2016-17 9476,Jon Leuer,DET,28.0,208.28,103.418976,Wisconsin,USA,2011,2,40,75,10.2,5.4,1.5,-2.3,0.055,0.174,0.17300000000000001,0.551,0.08800000000000001,2016-17 9477,Johnny O'Bryant III,CHA,24.0,205.74,116.573144,Louisiana State,USA,2014,2,36,11,3.5,1.7,0.5,-15.2,0.13,0.161,0.21100000000000002,0.5820000000000001,0.125,2016-17 9478,John Wall,WAS,26.0,193.04,95.25432,Kentucky,USA,2010,1,1,78,23.1,4.2,10.7,3.9,0.023,0.105,0.302,0.541,0.45,2016-17 9479,John Lucas III,MIN,34.0,180.34,75.296272,Oklahoma State,USA,Undrafted,Undrafted,Undrafted,5,0.4,0.0,0.2,46.9,0.0,0.0,0.166,0.25,0.2,2016-17 9480,John Jenkins,PHX,26.0,193.04,97.52228000000001,Vanderbilt,USA,2012,1,23,4,1.8,0.3,0.3,21.6,0.0,0.111,0.182,0.595,0.083,2016-17 9481,John Henson,MIL,26.0,210.82,103.872568,North Carolina,USA,2012,1,14,58,6.8,5.1,1.0,-1.8,0.09300000000000001,0.20199999999999999,0.16399999999999998,0.55,0.076,2016-17 9482,Joffrey Lauvergne,CHI,25.0,210.82,99.79024,None,France,2013,2,55,70,5.4,3.6,1.0,-5.6,0.08199999999999999,0.205,0.188,0.509,0.11,2016-17 9483,Joel Embiid,PHI,23.0,213.36,113.398,Kansas,Cameroon,2014,1,3,31,20.2,7.8,2.1,3.2,0.092,0.247,0.363,0.584,0.174,2016-17 9484,Joel Bolomboy,UTA,23.0,205.74,106.59411999999999,Weber State,Ukraine,2016,2,52,12,1.8,1.4,0.2,11.3,0.083,0.255,0.18,0.59,0.065,2016-17 9485,Joel Anthony,SAS,34.0,205.74,111.13004,Nevada-Las Vegas,Canada,Undrafted,Undrafted,Undrafted,19,1.3,1.6,0.2,-7.3,0.068,0.19,0.08800000000000001,0.64,0.040999999999999995,2016-17 9486,Joe Young,IND,25.0,187.96,81.64656,Oregon,USA,2015,2,43,33,2.1,0.5,0.5,-26.1,0.006999999999999999,0.133,0.26,0.433,0.203,2016-17 9487,Joe Johnson,UTA,36.0,200.66,108.86208,Arkansas,USA,2001,1,10,78,9.2,3.1,1.8,4.2,0.022000000000000002,0.129,0.18600000000000003,0.542,0.125,2016-17 9488,Joe Ingles,UTA,29.0,203.2,102.511792,None,Australia,Undrafted,Undrafted,Undrafted,82,7.1,3.2,2.7,4.8,0.013999999999999999,0.139,0.139,0.604,0.168,2016-17 9489,Joe Harris,BKN,25.0,198.12,99.336648,Virginia,USA,2014,2,33,52,8.2,2.8,1.0,-10.5,0.013999999999999999,0.11699999999999999,0.161,0.5579999999999999,0.076,2016-17 9490,Jodie Meeks,ORL,29.0,193.04,95.25432,Kentucky,USA,2009,2,41,36,9.1,2.1,1.3,-5.4,0.006999999999999999,0.114,0.196,0.5670000000000001,0.08900000000000001,2016-17 9491,Joakim Noah,NYK,32.0,210.82,104.32616,Florida,USA,2007,1,9,46,5.0,8.8,2.2,-6.0,0.162,0.256,0.125,0.491,0.138,2016-17 9492,Jimmy Butler,CHI,27.0,200.66,104.779752,Marquette,USA,2011,1,30,76,23.9,6.2,5.5,3.0,0.05,0.131,0.265,0.586,0.243,2016-17 9493,Jerryd Bayless,PHI,28.0,190.5,90.7184,Arizona,USA,2008,1,11,3,11.0,4.0,4.3,-12.9,0.047,0.127,0.284,0.45299999999999996,0.361,2016-17 9494,Jerian Grant,CHI,24.0,193.04,89.811216,Notre Dame,USA,2015,1,19,63,5.9,1.8,1.9,2.6,0.018000000000000002,0.1,0.163,0.555,0.172,2016-17 9495,Jeremy Lin,BKN,28.0,190.5,90.7184,Harvard,USA,Undrafted,Undrafted,Undrafted,36,14.5,3.8,5.1,-2.9,0.013000000000000001,0.146,0.259,0.5660000000000001,0.33799999999999997,2016-17 9496,Jeremy Lamb,CHA,25.0,195.58,83.91452,Connecticut,USA,2012,1,12,62,9.7,4.3,1.2,-1.1,0.028999999999999998,0.22399999999999998,0.235,0.55,0.113,2016-17 9497,JR Smith,CLE,31.0,198.12,102.0582,None,USA,2004,1,18,41,8.6,2.8,1.5,3.3,0.016,0.086,0.145,0.484,0.071,2016-17 9498,Derrick Williams,CLE,26.0,203.2,108.86208,Arizona,USA,2011,1,2,50,6.1,2.6,0.6,-3.2,0.026000000000000002,0.15,0.177,0.537,0.054000000000000006,2016-17 9499,JJ Redick,LAC,33.0,193.04,86.18248,Duke,USA,2006,1,11,78,15.0,2.2,1.4,9.7,0.006,0.078,0.217,0.599,0.07400000000000001,2016-17 9500,Ivica Zubac,LAL,20.0,215.9,108.86208,None,Croatia,2016,2,32,38,7.5,4.2,0.8,-9.3,0.07200000000000001,0.21,0.204,0.547,0.078,2016-17 9501,Evan Fournier,ORL,24.0,200.66,92.98635999999999,None,France,2012,1,20,68,17.2,3.1,3.0,-4.9,0.021,0.081,0.233,0.555,0.14400000000000002,2016-17 9502,Ersan Ilyasova,ATL,30.0,208.28,106.59411999999999,None,Turkey,2005,2,36,82,13.1,5.9,1.7,-0.9,0.059000000000000004,0.184,0.22,0.546,0.107,2016-17 9503,Eric Gordon,HOU,28.0,193.04,97.52228000000001,Indiana,USA,2008,1,7,75,16.2,2.7,2.5,6.2,0.013999999999999999,0.078,0.22,0.557,0.125,2016-17 9504,Eric Bledsoe,PHX,27.0,185.42,92.98635999999999,Kentucky,USA,2010,1,18,66,21.1,4.8,6.3,-4.1,0.025,0.139,0.28,0.563,0.309,2016-17 9505,Enes Kanter,OKC,25.0,210.82,111.13004,Kentucky,Turkey,2011,1,3,72,14.3,6.7,0.9,-0.1,0.147,0.21,0.275,0.599,0.078,2016-17 9506,Emmanuel Mudiay,DEN,21.0,195.58,90.7184,None,Democratic Republic of the Congo,2015,1,7,55,11.0,3.2,3.9,-5.5,0.023,0.11599999999999999,0.22399999999999998,0.483,0.222,2016-17 9507,Elijah Millsap,PHX,29.0,200.66,97.52228000000001,Alabama-Birmingham,USA,Undrafted,Undrafted,Undrafted,2,1.5,3.0,0.5,-1.8,0.125,0.15,0.19899999999999998,0.19,0.067,2016-17 9508,Elfrid Payton,ORL,23.0,193.04,83.91452,Louisiana-Lafayette,USA,2014,1,10,82,12.8,4.7,6.5,-2.7,0.039,0.136,0.213,0.52,0.32899999999999996,2016-17 9509,Edy Tavares,CLE,25.0,220.98,120.20188,None,Cabo Verde,2014,2,43,2,4.0,5.5,0.5,15.2,0.16,0.24100000000000002,0.13699999999999998,0.633,0.071,2016-17 9510,Ed Davis,POR,28.0,208.28,111.13004,North Carolina,USA,2010,1,13,46,4.3,5.3,0.6,-5.9,0.128,0.213,0.11900000000000001,0.563,0.05,2016-17 9511,E'Twaun Moore,NOP,28.0,193.04,86.636072,Purdue,USA,2011,2,55,73,9.6,2.1,2.2,-2.4,0.019,0.07,0.174,0.537,0.138,2016-17 9512,Dwyane Wade,CHI,35.0,193.04,99.79024,Marquette,USA,2003,1,5,60,18.3,4.5,3.8,-2.4,0.037000000000000005,0.125,0.293,0.508,0.221,2016-17 9513,Evan Turner,POR,28.0,200.66,99.79024,Ohio State,USA,2010,1,2,65,9.0,3.8,3.2,-4.5,0.024,0.14400000000000002,0.18600000000000003,0.491,0.196,2016-17 9514,Dwight Powell,DAL,25.0,210.82,108.86208,Stanford,Canada,2014,2,45,77,6.7,4.0,0.6,-6.4,0.077,0.20199999999999999,0.166,0.588,0.062,2016-17 9515,Draymond Green,GSW,27.0,200.66,104.32616,Michigan State,USA,2012,2,35,76,10.2,7.9,7.0,15.9,0.046,0.205,0.16,0.522,0.272,2016-17 9516,Dragan Bender,PHX,19.0,215.9,102.0582,None,Croatia,2016,1,4,43,3.4,2.4,0.5,-2.0,0.043,0.155,0.14800000000000002,0.44,0.057,2016-17 9517,Doug McDermott,OKC,25.0,203.2,99.336648,Creighton,USA,2014,1,11,66,9.0,2.7,0.9,-3.1,0.015,0.11699999999999999,0.165,0.5539999999999999,0.06,2016-17 9518,Dorian Finney-Smith,DAL,24.0,203.2,99.79024,Florida,USA,Undrafted,Undrafted,Undrafted,81,4.3,2.7,0.8,-1.4,0.037000000000000005,0.124,0.11699999999999999,0.486,0.061,2016-17 9519,Donatas Motiejunas,NOP,26.0,213.36,100.697424,None,Lithuania,2011,1,20,34,4.4,3.0,0.9,-11.1,0.057,0.18,0.174,0.47,0.096,2016-17 9520,Domantas Sabonis,OKC,21.0,210.82,108.86208,Gonzaga,Lithuania,2016,1,11,81,5.9,3.6,1.0,0.2,0.032,0.16399999999999998,0.158,0.469,0.073,2016-17 9521,Dirk Nowitzki,DAL,39.0,213.36,111.13004,None,Germany,1998,1,9,54,14.2,6.5,1.5,-1.7,0.018000000000000002,0.267,0.255,0.529,0.099,2016-17 9522,Dion Waiters,MIA,25.0,193.04,99.79024,Syracuse,USA,2012,1,4,46,15.8,3.3,4.3,2.8,0.015,0.107,0.264,0.507,0.23399999999999999,2016-17 9523,Diamond Stone,LAC,20.0,210.82,115.66596000000001,Maryland,USA,2016,2,40,7,1.4,0.9,0.0,-58.7,0.037000000000000005,0.2,0.324,0.33899999999999997,0.0,2016-17 9524,Deyonta Davis,MEM,20.0,208.28,108.86208,Michigan State,USA,2016,2,31,36,1.6,1.7,0.1,-7.2,0.08800000000000001,0.185,0.11900000000000001,0.528,0.015,2016-17 9525,Dewayne Dedmon,SAS,27.0,213.36,111.13004,Southern California,USA,Undrafted,Undrafted,Undrafted,76,5.1,6.5,0.6,8.4,0.114,0.302,0.122,0.645,0.049,2016-17 9526,Devin Harris,DAL,34.0,190.5,83.91452,Wisconsin,USA,2004,1,5,65,6.7,2.0,2.1,2.1,0.011000000000000001,0.126,0.19399999999999998,0.5489999999999999,0.19699999999999998,2016-17 9527,Dwight Howard,ATL,31.0,210.82,120.20188,None,USA,2004,1,1,74,13.5,12.7,1.4,-2.0,0.153,0.31,0.191,0.627,0.076,2016-17 9528,Frank Kaminsky,CHA,24.0,213.36,108.86208,Wisconsin,USA,2015,1,9,75,11.7,4.5,2.2,0.9,0.033,0.158,0.22,0.502,0.131,2016-17 9529,Fred VanVleet,TOR,23.0,182.88,88.45044,Wichita State,USA,Undrafted,Undrafted,Undrafted,37,2.9,1.1,0.9,12.1,0.015,0.13,0.205,0.44299999999999995,0.18,2016-17 9530,Garrett Temple,SAC,31.0,198.12,88.45044,Louisiana State,USA,Undrafted,Undrafted,Undrafted,65,7.8,2.8,2.6,-5.1,0.022000000000000002,0.10099999999999999,0.142,0.545,0.146,2016-17 9531,Ish Smith,DET,28.0,182.88,79.3786,Wake Forest,USA,Undrafted,Undrafted,Undrafted,81,9.4,2.9,5.2,0.6,0.011000000000000001,0.121,0.204,0.47700000000000004,0.319,2016-17 9532,Isaiah Whitehead,BKN,22.0,193.04,96.615096,Seton Hall,USA,2016,2,42,73,7.4,2.5,2.6,-2.9,0.021,0.09300000000000001,0.183,0.48700000000000004,0.17300000000000001,2016-17 9533,Isaiah Thomas,BOS,28.0,175.26,83.91452,Washington,USA,2011,2,60,76,28.9,2.7,5.9,5.0,0.019,0.07,0.337,0.625,0.305,2016-17 9534,Isaiah Taylor,HOU,22.0,190.5,77.11064,Texas,USA,Undrafted,Undrafted,Undrafted,4,0.8,0.8,0.8,-14.6,0.021,0.040999999999999995,0.065,0.19,0.07,2016-17 9535,Isaiah Canaan,CHI,26.0,182.88,91.171992,Murray State,USA,2013,2,34,39,4.6,1.3,0.9,-6.8,0.01,0.08199999999999999,0.156,0.483,0.099,2016-17 9536,Iman Shumpert,CLE,27.0,195.58,99.79024,Georgia Tech,USA,2011,1,17,76,7.5,2.9,1.4,1.9,0.023,0.098,0.142,0.536,0.08,2016-17 9537,Ian Mahinmi,WAS,30.0,210.82,118.841104,None,France,2005,1,28,31,5.6,4.8,0.6,0.3,0.098,0.204,0.14,0.601,0.05,2016-17 9538,Ian Clark,GSW,26.0,190.5,79.3786,Belmont,USA,Undrafted,Undrafted,Undrafted,77,6.8,1.6,1.2,3.1,0.023,0.09,0.198,0.575,0.122,2016-17 9539,Hollis Thompson,NOP,26.0,203.2,93.439952,Georgetown,USA,Undrafted,Undrafted,Undrafted,40,5.1,2.8,0.9,-6.0,0.027999999999999997,0.128,0.133,0.48200000000000004,0.07200000000000001,2016-17 9540,Henry Ellenson,DET,20.0,210.82,111.13004,Marquette,USA,2016,1,18,19,3.2,2.2,0.4,-2.0,0.055999999999999994,0.23399999999999999,0.248,0.444,0.07400000000000001,2016-17 9541,Hassan Whiteside,MIA,28.0,213.36,120.20188,Marshall,USA,2010,2,33,77,17.0,14.1,0.7,1.3,0.129,0.349,0.226,0.579,0.037000000000000005,2016-17 9542,Harrison Barnes,DAL,25.0,203.2,102.0582,North Carolina,USA,2012,1,7,79,19.2,5.0,1.5,-2.1,0.037000000000000005,0.132,0.255,0.541,0.076,2016-17 9543,Greivis Vasquez,BKN,30.0,198.12,98.429464,Maryland,Venezuela,2010,1,28,3,2.3,0.7,1.7,-18.7,0.0,0.051,0.11,0.376,0.185,2016-17 9544,Greg Monroe,MIL,27.0,210.82,120.20188,Georgetown,USA,2010,1,7,81,11.7,6.6,2.3,3.7,0.11199999999999999,0.237,0.242,0.5720000000000001,0.165,2016-17 9545,Gorgui Dieng,MIN,27.0,210.82,108.86208,Louisville,Senegal,2013,1,21,82,10.0,7.9,1.9,0.2,0.08199999999999999,0.20199999999999999,0.141,0.555,0.086,2016-17 9546,Gordon Hayward,UTA,27.0,203.2,102.511792,Butler,USA,2010,1,9,73,21.9,5.4,3.5,7.1,0.023,0.152,0.276,0.595,0.179,2016-17 9547,Goran Dragic,MIA,31.0,190.5,86.18248,None,Slovenia,2008,2,45,73,20.3,3.8,5.8,0.6,0.027999999999999997,0.098,0.268,0.575,0.28300000000000003,2016-17 9548,Glenn Robinson III,IND,23.0,198.12,100.697424,Michigan,USA,2014,2,40,69,6.1,3.6,0.7,-1.9,0.046,0.14400000000000002,0.129,0.564,0.048,2016-17 9549,Giannis Antetokounmpo,MIL,22.0,210.82,100.697424,None,Greece,2013,1,15,80,22.9,8.8,5.4,1.5,0.057999999999999996,0.226,0.28300000000000003,0.599,0.26899999999999996,2016-17 9550,Gerald Henderson,PHI,29.0,195.58,97.52228000000001,Duke,USA,2009,1,12,72,9.2,2.6,1.6,-8.4,0.022000000000000002,0.10400000000000001,0.179,0.529,0.10800000000000001,2016-17 9551,Gerald Green,BOS,31.0,200.66,92.98635999999999,None,USA,2005,1,18,47,5.6,1.8,0.7,1.3,0.032,0.14,0.22899999999999998,0.524,0.1,2016-17 9552,Georgios Papagiannis,SAC,19.0,215.9,108.86208,None,Greece,2016,1,13,22,5.6,3.9,0.9,-6.2,0.09,0.183,0.16899999999999998,0.573,0.085,2016-17 9553,Georges Niang,IND,24.0,203.2,104.32616,Iowa State,USA,2016,2,50,23,0.9,0.7,0.2,-5.3,0.021,0.16899999999999998,0.18899999999999997,0.285,0.07400000000000001,2016-17 9554,George Hill,UTA,31.0,190.5,85.275296,Indiana Purdue-Indianapolis,USA,2008,1,26,49,16.9,3.4,4.2,8.6,0.017,0.105,0.23600000000000002,0.599,0.22699999999999998,2016-17 9555,Gary Payton II,MIL,24.0,190.5,86.18248,Oregon State,USA,Undrafted,Undrafted,Undrafted,6,3.3,2.0,2.2,-26.5,0.0,0.14800000000000002,0.162,0.413,0.22399999999999998,2016-17 9556,Gary Neal,ATL,32.0,193.04,95.25432,Towson,USA,Undrafted,Undrafted,Undrafted,2,2.0,0.5,0.5,-18.0,0.0,0.077,0.201,0.228,0.125,2016-17 9557,Gary Harris,DEN,22.0,193.04,95.25432,Michigan State,USA,2014,1,19,57,14.9,3.1,2.9,1.0,0.031,0.083,0.185,0.611,0.129,2016-17 9558,J.J. Barea,DAL,33.0,182.88,83.91452,Northeastern,Puerto Rico,Undrafted,Undrafted,Undrafted,35,10.9,2.4,5.5,1.8,0.013000000000000001,0.11699999999999999,0.261,0.521,0.42100000000000004,2016-17 9559,Zaza Pachulia,GSW,33.0,210.82,124.7378,None,Georgia,2003,2,42,70,6.1,5.9,1.9,15.8,0.13,0.225,0.151,0.588,0.131,2016-17 9560,Willy Hernangomez,NYK,23.0,210.82,108.86208,None,Spain,2015,2,35,72,8.2,7.0,1.3,-2.8,0.142,0.263,0.20199999999999999,0.564,0.11599999999999999,2016-17 9561,Briante Weber,MEM,25.0,187.96,74.84268,Virginia Commonwealth,USA,Undrafted,Undrafted,Undrafted,18,2.8,1.9,1.2,-21.6,0.03,0.13,0.111,0.527,0.139,2017-18 9562,Jae Crowder,UTA,27.0,198.12,106.59411999999999,Marquette,USA,2012,2,34,80,9.7,3.4,1.2,0.6,0.028999999999999998,0.10300000000000001,0.16899999999999998,0.525,0.071,2017-18 9563,Jahlil Okafor,BKN,22.0,210.82,117.93392,Duke,USA,2015,1,3,28,6.3,3.0,0.4,-22.6,0.057999999999999996,0.19,0.21600000000000003,0.584,0.07,2017-18 9564,Jake Layman,POR,24.0,205.74,95.25432,Maryland,USA,2016,2,47,35,1.0,0.5,0.3,-11.5,0.024,0.078,0.139,0.35200000000000004,0.099,2017-18 9565,Jakob Poeltl,TOR,22.0,213.36,104.32616,Utah,Austria,2016,1,9,82,6.9,4.8,0.7,8.3,0.107,0.15,0.14300000000000002,0.662,0.054000000000000006,2017-18 9566,Jalen Jones,DAL,25.0,200.66,99.79024,Texas A&M,USA,Undrafted,Undrafted,Undrafted,16,4.6,2.4,0.3,-6.6,0.063,0.154,0.193,0.485,0.032,2017-18 9567,Jamal Crawford,MIN,38.0,195.58,83.91452,Michigan,USA,2000,1,8,80,10.3,1.2,2.3,-4.5,0.013000000000000001,0.05,0.231,0.519,0.177,2017-18 9568,Jamal Murray,DEN,21.0,193.04,93.89354399999999,Kentucky,Canada,2016,1,7,81,16.7,3.7,3.4,3.7,0.033,0.087,0.223,0.5760000000000001,0.159,2017-18 9569,Jameel Warney,DAL,24.0,203.2,117.93392,"Stony Brook, N.Y.",USA,Undrafted,Undrafted,Undrafted,3,5.7,3.0,0.0,-7.4,0.138,0.2,0.23399999999999999,0.599,0.0,2017-18 9570,Jameer Nelson,DET,36.0,182.88,86.18248,None,USA,2004,1,20,50,4.9,2.1,3.6,-5.7,0.013000000000000001,0.08800000000000001,0.13699999999999998,0.489,0.255,2017-18 9571,Jamel Artis,ORL,25.0,200.66,96.615096,Pittsburgh,USA,Undrafted,Undrafted,Undrafted,15,5.1,2.5,1.2,-0.9,0.013000000000000001,0.11900000000000001,0.142,0.457,0.098,2017-18 9572,James Ennis III,DET,27.0,200.66,95.25432,Cal State-Long Beach,USA,2013,2,50,72,7.1,3.1,1.0,-5.6,0.045,0.096,0.134,0.588,0.069,2017-18 9573,James Harden,HOU,28.0,195.58,99.79024,Arizona State,USA,2009,1,3,72,30.4,5.4,8.8,10.0,0.017,0.13699999999999998,0.353,0.619,0.449,2017-18 9574,Jacob Wiley,BKN,23.0,203.2,101.151016,Eastern Washington,USA,Undrafted,Undrafted,Undrafted,5,0.8,2.2,0.4,18.1,0.053,0.225,0.063,0.41,0.091,2017-18 9575,James Johnson,MIA,31.0,203.2,108.86208,Wake Forest,USA,2009,1,16,73,10.8,4.9,3.8,0.1,0.032,0.14800000000000002,0.185,0.575,0.22,2017-18 9576,James Webb III,BKN,24.0,205.74,91.625584,Boise State,USA,Undrafted,Undrafted,Undrafted,10,1.6,2.4,0.4,-13.3,0.059000000000000004,0.138,0.099,0.33299999999999996,0.044000000000000004,2017-18 9577,James Young,PHI,22.0,198.12,97.52228000000001,Kentucky,USA,2014,1,17,6,2.8,0.3,0.3,-20.4,0.0,0.028999999999999998,0.131,0.511,0.053,2017-18 9578,Jamil Wilson,LAC,27.0,200.66,103.872568,Marquette,USA,Undrafted,Undrafted,Undrafted,15,7.0,2.1,0.7,0.8,0.01,0.1,0.145,0.634,0.055999999999999994,2017-18 9579,Jared Dudley,PHX,32.0,200.66,108.86208,Boston College,USA,2007,1,22,48,3.2,2.0,1.6,0.1,0.011000000000000001,0.126,0.102,0.5529999999999999,0.153,2017-18 9580,Jarell Eddie,CHI,26.0,200.66,98.88305600000001,Virginia Tech,USA,Undrafted,Undrafted,Undrafted,3,0.0,0.3,0.0,-10.0,0.0,0.16699999999999998,0.091,0.0,0.0,2017-18 9581,Jarell Martin,MEM,24.0,208.28,108.40848799999999,Louisiana State,USA,2015,1,25,73,7.7,4.4,1.0,-7.6,0.057,0.139,0.168,0.516,0.073,2017-18 9582,Jarrett Allen,BKN,20.0,210.82,106.140528,Texas,USA,2017,1,22,72,8.2,5.4,0.7,-4.1,0.096,0.157,0.162,0.636,0.055,2017-18 9583,Jarrett Jack,NYK,34.0,190.5,90.7184,Georgia Tech,USA,2005,1,22,62,7.5,3.1,5.6,-0.7,0.013999999999999999,0.106,0.16399999999999998,0.489,0.302,2017-18 9584,Jason Smith,WAS,32.0,213.36,108.86208,Colorado State,USA,2007,1,20,33,3.4,1.6,0.4,-15.8,0.06,0.122,0.204,0.455,0.084,2017-18 9585,Jason Terry,MIL,40.0,187.96,83.91452,Arizona,USA,1999,1,10,51,3.3,0.9,1.2,1.5,0.006,0.055999999999999994,0.09699999999999999,0.525,0.098,2017-18 9586,Jawun Evans,LAC,21.0,182.88,86.18248,Oklahoma State,USA,2017,2,39,48,4.8,1.8,2.1,2.1,0.011000000000000001,0.092,0.17,0.42100000000000004,0.177,2017-18 9587,Jaylen Brown,BOS,21.0,200.66,102.0582,California,USA,2016,1,3,70,14.5,4.9,1.6,7.7,0.03,0.124,0.20800000000000002,0.562,0.081,2017-18 9588,James Michael McAdoo,PHI,25.0,205.74,104.32616,North Carolina,USA,Undrafted,Undrafted,Undrafted,3,2.7,0.7,0.0,2.6,0.0,0.125,0.22,0.508,0.0,2017-18 9589,Jaylen Morris,ATL,22.0,195.58,83.91452,Molloy,USA,Undrafted,Undrafted,Undrafted,6,4.7,2.7,1.2,-17.9,0.018000000000000002,0.125,0.154,0.43799999999999994,0.13,2017-18 9590,Jacob Pullen,PHI,28.0,185.42,90.7184,Kansas State,USA,Undrafted,Undrafted,Undrafted,3,0.7,0.0,0.0,4.2,0.0,0.0,0.188,0.5,0.0,2017-18 9591,Jabari Parker,MIL,23.0,203.2,113.398,Duke,USA,2014,1,2,31,12.6,4.9,1.9,-3.9,0.055,0.145,0.228,0.55,0.129,2017-18 9592,Gordon Hayward,BOS,28.0,203.2,102.511792,Butler,USA,2010,1,9,1,2.0,1.0,0.0,27.3,0.0,0.2,0.154,0.5,0.0,2017-18 9593,Gorgui Dieng,MIN,28.0,210.82,113.851592,Louisville,Senegal,2013,1,21,79,5.9,4.6,0.9,-6.6,0.078,0.201,0.159,0.5429999999999999,0.08,2017-18 9594,Greg Monroe,BOS,28.0,210.82,120.20188,Georgetown,USA,2010,1,7,51,10.3,6.9,2.2,-9.6,0.10400000000000001,0.244,0.218,0.598,0.18899999999999997,2017-18 9595,Guerschon Yabusele,BOS,22.0,203.2,117.93392,None,France,2016,1,16,33,2.4,1.6,0.5,-0.8,0.065,0.152,0.146,0.5589999999999999,0.107,2017-18 9596,Harrison Barnes,DAL,26.0,203.2,102.0582,North Carolina,USA,2012,1,7,77,18.9,6.1,2.0,-6.1,0.027999999999999997,0.154,0.247,0.539,0.10099999999999999,2017-18 9597,Hassan Whiteside,MIA,29.0,213.36,120.20188,Marshall,USA,2010,2,33,54,14.0,11.4,1.0,-2.8,0.121,0.317,0.235,0.573,0.068,2017-18 9598,Henry Ellenson,DET,21.0,210.82,111.13004,Marquette,USA,2016,1,18,38,4.0,2.1,0.5,0.5,0.028999999999999998,0.20800000000000002,0.233,0.47600000000000003,0.098,2017-18 9599,Ian Clark,NOP,27.0,190.5,79.3786,Belmont,USA,Undrafted,Undrafted,Undrafted,74,7.4,1.7,1.5,1.0,0.006999999999999999,0.07400000000000001,0.168,0.529,0.107,2017-18 9600,Ian Mahinmi,WAS,31.0,210.82,118.841104,None,France,2005,1,28,77,4.8,4.1,0.7,1.4,0.11800000000000001,0.156,0.15,0.601,0.068,2017-18 9601,Ike Anigbogu,IND,19.0,208.28,118.841104,UCLA,USA,2017,2,47,11,1.2,0.8,0.0,-25.5,0.152,0.138,0.179,0.5579999999999999,0.0,2017-18 9602,Iman Shumpert,SAC,28.0,195.58,99.79024,Georgia Tech,USA,2011,1,17,14,4.4,2.9,1.2,5.4,0.026000000000000002,0.113,0.125,0.48,0.084,2017-18 9603,Isaiah Canaan,OKC,27.0,182.88,91.171992,Murray State,USA,2013,2,34,20,8.6,2.3,3.8,1.2,0.013999999999999999,0.094,0.193,0.539,0.276,2017-18 9604,Jack Cooley,SAC,27.0,208.28,124.284208,Notre Dame,USA,Undrafted,Undrafted,Undrafted,7,5.7,4.3,0.9,-4.6,0.131,0.184,0.185,0.5660000000000001,0.128,2017-18 9605,Isaiah Hicks,NYK,23.0,205.74,109.769264,North Carolina,USA,Undrafted,Undrafted,Undrafted,18,4.4,2.3,0.9,-7.7,0.040999999999999995,0.11800000000000001,0.175,0.501,0.098,2017-18 9606,Isaiah Thomas,LAL,29.0,175.26,83.91452,Washington,USA,2011,2,60,32,15.2,2.1,4.8,-6.9,0.019,0.055999999999999994,0.276,0.508,0.268,2017-18 9607,Isaiah Whitehead,BKN,23.0,193.04,96.615096,Seton Hall,USA,2016,2,42,16,6.3,1.6,1.3,-2.3,0.022000000000000002,0.113,0.27399999999999997,0.53,0.213,2017-18 9608,Ish Smith,DET,29.0,182.88,79.3786,Wake Forest,USA,Undrafted,Undrafted,Undrafted,82,10.9,2.7,4.4,0.8,0.013000000000000001,0.095,0.203,0.525,0.273,2017-18 9609,Ivan Rabb,MEM,21.0,208.28,99.79024,"University of California, Berkeley",USA,2017,2,35,36,5.6,4.4,0.9,-8.4,0.102,0.21600000000000003,0.16699999999999998,0.599,0.095,2017-18 9610,Ivica Zubac,LAL,21.0,215.9,108.86208,None,Croatia,2016,2,32,43,3.7,2.9,0.6,5.0,0.10099999999999999,0.168,0.172,0.557,0.095,2017-18 9611,J.J. Barea,DAL,34.0,182.88,83.91452,Northeastern,Puerto Rico,Undrafted,Undrafted,Undrafted,69,11.6,2.9,6.3,0.7,0.009000000000000001,0.12,0.243,0.545,0.426,2017-18 9612,JJ Redick,PHI,34.0,193.04,90.7184,Duke,USA,2006,1,11,70,17.1,2.5,3.0,7.0,0.004,0.071,0.20600000000000002,0.614,0.149,2017-18 9613,JR Smith,CLE,32.0,198.12,102.0582,None,USA,2004,1,18,80,8.3,2.9,1.8,-2.3,0.013000000000000001,0.092,0.136,0.534,0.087,2017-18 9614,JaKarr Sampson,SAC,25.0,205.74,93.89354399999999,"St. John's, N.Y.",USA,Undrafted,Undrafted,Undrafted,22,4.7,3.5,0.4,-0.1,0.057999999999999996,0.161,0.124,0.585,0.040999999999999995,2017-18 9615,JaMychal Green,MEM,28.0,205.74,102.965384,Alabama,USA,Undrafted,Undrafted,Undrafted,55,10.3,8.4,1.4,-8.0,0.096,0.218,0.17800000000000002,0.53,0.08199999999999999,2017-18 9616,JaVale McGee,GSW,30.0,213.36,122.46983999999999,Nevada-Reno,USA,2008,1,18,65,4.8,2.6,0.5,2.6,0.10099999999999999,0.166,0.183,0.6409999999999999,0.08,2017-18 9617,Jabari Bird,BOS,23.0,198.12,89.811216,California,USA,2017,2,56,13,3.0,1.5,0.6,6.6,0.055,0.105,0.141,0.615,0.099,2017-18 9618,Isaiah Taylor,ATL,23.0,190.5,77.11064,Texas,USA,Undrafted,Undrafted,Undrafted,67,6.6,1.4,3.1,-0.8,0.018000000000000002,0.057999999999999996,0.195,0.49200000000000005,0.272,2017-18 9619,Jayson Tatum,BOS,20.0,203.2,92.98635999999999,Duke,USA,2017,1,3,80,13.9,5.0,1.6,6.9,0.021,0.138,0.192,0.586,0.081,2017-18 9620,Jeff Green,CLE,31.0,205.74,106.59411999999999,Georgetown,USA,2007,1,5,78,10.8,3.2,1.3,3.7,0.034,0.095,0.19,0.5870000000000001,0.081,2017-18 9621,Jeff Teague,MIN,30.0,187.96,85.728888,Wake Forest,USA,2009,1,19,70,14.2,3.0,7.0,2.7,0.011000000000000001,0.081,0.201,0.5529999999999999,0.298,2017-18 9622,Jordan Crawford,NOP,29.0,195.58,88.45044,Xavier,USA,2010,1,27,5,6.6,0.8,2.6,-14.5,0.036000000000000004,0.036000000000000004,0.23,0.601,0.35100000000000003,2017-18 9623,Jordan Mickey,MIA,23.0,203.2,106.59411999999999,Louisiana State,USA,2015,2,33,23,4.0,3.5,0.4,-6.0,0.065,0.226,0.168,0.515,0.051,2017-18 9624,Jose Calderon,CLE,36.0,190.5,90.7184,None,Spain,Undrafted,Undrafted,Undrafted,57,4.5,1.5,2.1,3.2,0.017,0.079,0.11800000000000001,0.643,0.175,2017-18 9625,Josh Gray,PHX,24.0,185.42,81.64656,None,USA,Undrafted,Undrafted,Undrafted,5,6.4,2.0,2.4,-35.1,0.017,0.10400000000000001,0.243,0.349,0.24,2017-18 9626,Josh Hart,LAL,23.0,195.58,97.52228000000001,Villanova,USA,2017,1,30,63,7.9,4.2,1.3,-1.9,0.027999999999999997,0.14300000000000002,0.133,0.596,0.076,2017-18 9627,Josh Huestis,OKC,26.0,200.66,104.32616,Stanford,USA,2014,1,29,69,2.3,2.3,0.3,6.0,0.042,0.11699999999999999,0.095,0.41700000000000004,0.027000000000000003,2017-18 9628,Josh Jackson,PHX,21.0,203.2,90.7184,Kansas,USA,2017,1,4,77,13.1,4.6,1.5,-11.7,0.044000000000000004,0.12300000000000001,0.253,0.48,0.105,2017-18 9629,Josh Magette,ATL,28.0,185.42,72.57472,Alabama Huntsville,USA,Undrafted,Undrafted,Undrafted,18,2.6,1.1,3.2,-0.5,0.009000000000000001,0.079,0.11900000000000001,0.46399999999999997,0.37,2017-18 9630,Josh McRoberts,DAL,31.0,208.28,108.86208,Duke,USA,2007,2,37,2,0.0,0.0,0.0,-14.3,0.0,0.0,0.071,0.0,0.0,2017-18 9631,Josh Richardson,MIA,24.0,198.12,90.7184,Tennessee,USA,2015,2,40,81,12.9,3.5,2.9,0.8,0.025,0.08,0.17600000000000002,0.551,0.131,2017-18 9632,Josh Smith,NOP,32.0,205.74,102.0582,None,USA,2004,1,17,3,0.7,1.3,0.0,-34.3,0.136,0.1,0.11800000000000001,0.25,0.0,2017-18 9633,Jrue Holiday,NOP,28.0,193.04,92.98635999999999,UCLA,USA,2009,1,17,81,19.0,4.5,6.0,4.9,0.022000000000000002,0.095,0.225,0.57,0.243,2017-18 9634,Jordan Clarkson,CLE,26.0,195.58,87.996848,Missouri,USA,2014,2,46,81,13.9,2.7,2.7,-1.9,0.028999999999999998,0.08,0.253,0.542,0.193,2017-18 9635,Juancho Hernangomez,DEN,22.0,205.74,104.32616,None,Spain,2016,1,15,25,3.3,2.2,0.5,-4.2,0.062,0.139,0.134,0.511,0.06,2017-18 9636,Julyan Stone,CHA,29.0,198.12,90.7184,Texas-El Paso,USA,Undrafted,Undrafted,Undrafted,23,0.8,1.3,1.1,9.3,0.005,0.153,0.051,0.684,0.187,2017-18 9637,Justin Anderson,PHI,24.0,198.12,104.32616,Virginia,USA,2015,1,21,38,6.2,2.4,0.7,-7.2,0.046,0.12,0.188,0.54,0.078,2017-18 9638,Justin Holiday,CHI,29.0,198.12,83.91452,Washington,USA,Undrafted,Undrafted,Undrafted,72,12.2,4.0,2.1,-4.0,0.013000000000000001,0.114,0.177,0.513,0.09699999999999999,2017-18 9639,Justin Jackson,SAC,23.0,203.2,95.25432,North Carolina,USA,2017,1,15,68,6.7,2.8,1.1,-7.6,0.018000000000000002,0.109,0.139,0.521,0.071,2017-18 9640,Justin Patton,MIN,21.0,213.36,107.047712,Creighton,USA,2017,1,16,1,2.0,0.0,0.0,30.0,0.0,0.0,0.2,0.5,0.0,2017-18 9641,Justise Winslow,MIA,22.0,200.66,102.0582,Duke,USA,2015,1,10,68,7.8,5.4,2.2,1.0,0.037000000000000005,0.17800000000000002,0.158,0.496,0.134,2017-18 9642,Jusuf Nurkic,POR,23.0,213.36,127.00576000000001,None,Bosnia and Herzegovina,2014,1,16,79,14.3,9.0,1.8,3.6,0.087,0.237,0.257,0.528,0.115,2017-18 9643,Kadeem Allen,BOS,25.0,190.5,90.7184,Arizona,USA,2017,2,53,18,1.1,0.6,0.7,-8.4,0.034,0.067,0.132,0.366,0.16699999999999998,2017-18 9644,Karl-Anthony Towns,MIN,22.0,213.36,112.490816,Kentucky,USA,2015,1,1,82,21.3,12.3,2.4,6.1,0.085,0.272,0.225,0.6459999999999999,0.105,2017-18 9645,Kawhi Leonard,SAS,27.0,200.66,104.32616,San Diego State,USA,2011,1,15,9,16.2,4.7,2.3,3.9,0.028999999999999998,0.159,0.304,0.5720000000000001,0.191,2017-18 9646,Kay Felder,DET,23.0,175.26,79.83219199999998,None,USA,2016,2,54,16,3.6,1.1,1.3,-15.1,0.019,0.10800000000000001,0.28,0.379,0.247,2017-18 9647,Kelly Olynyk,MIA,27.0,213.36,111.13004,Gonzaga,Canada,2013,1,13,76,11.5,5.7,2.7,5.3,0.052000000000000005,0.2,0.213,0.612,0.18,2017-18 9648,Julius Randle,LAL,23.0,205.74,113.398,Kentucky,USA,2014,1,7,82,16.1,8.0,2.6,-1.4,0.08199999999999999,0.20199999999999999,0.251,0.606,0.158,2017-18 9649,Jordan Bell,GSW,23.0,205.74,101.604608,Oregon,USA,2017,2,38,57,4.6,3.6,1.8,8.9,0.08199999999999999,0.162,0.134,0.6409999999999999,0.166,2017-18 9650,Jonathon Simmons,ORL,28.0,198.12,88.45044,Houston,USA,Undrafted,Undrafted,Undrafted,69,13.9,3.5,2.5,-6.9,0.03,0.087,0.215,0.555,0.131,2017-18 9651,Jonathan Isaac,ORL,20.0,208.28,95.25432,Florida State,USA,2017,1,6,27,5.4,3.7,0.7,-8.6,0.028999999999999998,0.141,0.149,0.465,0.053,2017-18 9652,Jeff Withey,DAL,28.0,213.36,104.32616,Kansas,USA,2013,2,39,10,1.5,1.0,0.0,25.0,0.023,0.22,0.2,0.444,0.0,2017-18 9653,Jerami Grant,OKC,24.0,205.74,99.79024,Syracuse,USA,2014,2,39,81,8.4,3.9,0.7,1.7,0.05,0.14,0.161,0.607,0.055,2017-18 9654,Jeremy Evans,ATL,30.0,205.74,90.7184,Western Kentucky,USA,2010,2,55,1,2.0,1.0,0.0,-23.1,0.14300000000000002,0.0,0.14300000000000002,1.0,0.0,2017-18 9655,Jeremy Lamb,CHA,26.0,195.58,83.91452,Connecticut,USA,2012,1,12,80,12.9,4.1,2.3,1.3,0.024,0.14,0.22,0.5589999999999999,0.154,2017-18 9656,Jeremy Lin,BKN,29.0,190.5,90.7184,Harvard,USA,Undrafted,Undrafted,Undrafted,1,18.0,0.0,4.0,-9.5,0.0,0.0,0.254,0.597,0.235,2017-18 9657,Jerian Grant,CHI,25.0,193.04,89.811216,Notre Dame,USA,2015,1,19,74,8.4,2.3,4.6,-7.1,0.017,0.084,0.172,0.528,0.314,2017-18 9658,Jerryd Bayless,PHI,29.0,190.5,90.7184,Arizona,USA,2008,1,11,39,7.9,2.1,1.4,-3.4,0.016,0.066,0.146,0.546,0.085,2017-18 9659,Jimmy Butler,MIN,28.0,203.2,107.047712,Marquette,USA,2011,1,30,59,22.2,5.3,4.9,8.3,0.038,0.11199999999999999,0.245,0.59,0.204,2017-18 9660,Joakim Noah,NYK,33.0,210.82,104.32616,Florida,USA,2007,1,9,7,1.7,2.0,0.6,-1.9,0.128,0.2,0.162,0.51,0.2,2017-18 9661,Jodie Meeks,WAS,30.0,193.04,95.25432,Kentucky,USA,2009,2,41,77,6.3,1.6,0.9,-6.8,0.013000000000000001,0.102,0.179,0.5479999999999999,0.1,2017-18 9662,Joe Harris,BKN,26.0,198.12,99.336648,Virginia,USA,2014,2,33,78,10.8,3.3,1.6,-3.3,0.024,0.10099999999999999,0.161,0.634,0.10099999999999999,2017-18 9663,Joe Ingles,UTA,30.0,203.2,102.511792,None,Australia,Undrafted,Undrafted,Undrafted,82,11.5,4.2,4.8,5.3,0.01,0.125,0.156,0.623,0.222,2017-18 9664,Joe Johnson,HOU,37.0,200.66,108.86208,Arkansas,USA,2001,1,10,55,6.8,3.1,1.5,-3.6,0.011000000000000001,0.13,0.157,0.49,0.109,2017-18 9665,Joe Young,IND,26.0,187.96,83.91452,Oregon,USA,2015,2,43,53,3.9,1.2,0.7,-6.8,0.02,0.091,0.16899999999999998,0.521,0.10300000000000001,2017-18 9666,Joel Bolomboy,UTA,24.0,205.74,106.59411999999999,Weber State,Ukraine,2016,2,52,6,1.5,1.7,0.0,-18.1,0.133,0.121,0.115,0.521,0.0,2017-18 9667,Joel Embiid,PHI,24.0,213.36,113.398,Kansas,Cameroon,2014,1,3,63,22.9,11.0,3.2,11.7,0.078,0.255,0.33,0.573,0.182,2017-18 9668,Joffrey Lauvergne,SAS,26.0,210.82,117.93392,None,France,2013,2,55,55,4.1,3.1,0.7,-5.8,0.11800000000000001,0.207,0.192,0.536,0.121,2017-18 9669,John Collins,ATL,20.0,208.28,106.59411999999999,Wake Forest,USA,2017,1,19,74,10.5,7.3,1.3,-6.2,0.094,0.201,0.174,0.62,0.09,2017-18 9670,John Henson,MIL,27.0,210.82,103.872568,North Carolina,USA,2012,1,14,76,8.8,6.8,1.5,4.9,0.083,0.185,0.149,0.5820000000000001,0.083,2017-18 9671,John Holland,CLE,29.0,195.58,92.98635999999999,Boston U.,USA,Undrafted,Undrafted,Undrafted,24,2.3,1.0,0.2,-8.8,0.036000000000000004,0.10400000000000001,0.17800000000000002,0.41700000000000004,0.04,2017-18 9672,John Wall,WAS,27.0,193.04,95.25432,Kentucky,USA,2010,1,1,41,19.4,3.7,9.6,3.8,0.016,0.08800000000000001,0.281,0.515,0.425,2017-18 9673,Johnathan Motley,DAL,23.0,208.28,104.32616,Baylor,USA,Undrafted,Undrafted,Undrafted,11,8.7,4.5,0.6,-3.4,0.071,0.2,0.24,0.55,0.078,2017-18 9674,Johnny O'Bryant III,CHA,25.0,205.74,116.573144,Louisiana State,USA,2014,2,36,36,4.8,2.6,0.4,-10.7,0.063,0.17300000000000001,0.21899999999999997,0.47,0.067,2017-18 9675,Jon Leuer,DET,29.0,208.28,103.418976,Wisconsin,USA,2011,2,40,8,5.4,4.0,0.6,1.8,0.049,0.179,0.151,0.505,0.051,2017-18 9676,Jonas Jerebko,UTA,31.0,208.28,104.779752,None,Sweden,2009,2,39,74,5.8,3.3,0.6,1.7,0.048,0.175,0.151,0.586,0.057,2017-18 9677,Jonas Valanciunas,TOR,26.0,213.36,115.66596000000001,None,Lithuania,2011,1,5,77,12.7,8.6,1.1,5.6,0.106,0.263,0.222,0.628,0.075,2017-18 9678,Jonathan Gibson,BOS,30.0,187.96,83.91452,New Mexico State,USA,Undrafted,Undrafted,Undrafted,4,8.5,0.8,1.0,0.2,0.0,0.071,0.28,0.7390000000000001,0.14800000000000002,2017-18 9679,Goran Dragic,MIA,32.0,190.5,86.18248,None,Slovenia,2008,2,45,75,17.3,4.1,4.8,0.2,0.023,0.105,0.25,0.5429999999999999,0.245,2017-18 9680,Glenn Robinson III,IND,24.0,200.66,97.52228000000001,Michigan,USA,2014,2,40,23,4.1,1.6,0.7,-0.6,0.03,0.078,0.11900000000000001,0.529,0.068,2017-18 9681,Giannis Antetokounmpo,MIL,23.0,210.82,100.697424,None,Greece,2013,1,15,75,26.9,10.0,4.8,2.8,0.06,0.218,0.307,0.598,0.237,2017-18 9682,Gian Clavell,DAL,24.0,193.04,83.91452,Colorado State,Puerto Rico,Undrafted,Undrafted,Undrafted,7,2.9,1.0,0.4,14.8,0.016,0.102,0.147,0.53,0.071,2017-18 9683,Damian Jones,GSW,23.0,213.36,111.13004,Vanderbilt,USA,2016,1,30,15,1.7,0.9,0.1,0.5,0.06,0.09300000000000001,0.14300000000000002,0.517,0.037000000000000005,2017-18 9684,Damian Lillard,POR,27.0,190.5,88.45044,Weber State,USA,2012,1,6,73,26.9,4.5,6.6,6.1,0.022000000000000002,0.094,0.295,0.594,0.301,2017-18 9685,Damien Wilkins,IND,38.0,198.12,98.429464,Georgia,USA,Undrafted,Undrafted,Undrafted,19,1.7,0.8,0.5,7.0,0.031,0.07200000000000001,0.125,0.405,0.075,2017-18 9686,Damion Lee,ATL,25.0,198.12,95.25432,Louisville,USA,Undrafted,Undrafted,Undrafted,15,10.7,4.7,1.9,-3.6,0.024,0.138,0.182,0.489,0.109,2017-18 9687,Damyean Dotson,NYK,24.0,195.58,95.25432,Houston,USA,2017,2,44,44,4.1,1.9,0.7,-2.8,0.018000000000000002,0.142,0.16899999999999998,0.532,0.098,2017-18 9688,Daniel Hamilton,OKC,22.0,200.66,88.45044,Connecticut,USA,2016,2,56,6,2.0,0.8,1.3,-22.8,0.0,0.16699999999999998,0.2,0.545,0.615,2017-18 9689,Daniel Theis,BOS,26.0,205.74,110.22285600000001,None,Germany,Undrafted,Undrafted,Undrafted,63,5.3,4.3,0.9,1.2,0.092,0.18899999999999997,0.15,0.616,0.099,2017-18 9690,Danilo Gallinari,LAC,29.0,208.28,102.0582,None,Italy,2008,1,6,21,15.3,4.8,2.0,0.3,0.013000000000000001,0.133,0.205,0.545,0.09699999999999999,2017-18 9691,Danny Green,SAS,31.0,198.12,97.52228000000001,North Carolina,USA,2009,2,46,70,8.6,3.6,1.6,2.4,0.022000000000000002,0.115,0.163,0.509,0.08900000000000001,2017-18 9692,Dante Cunningham,BKN,31.0,203.2,104.32616,Villanova,USA,2009,2,33,73,5.7,4.1,0.7,-1.1,0.049,0.133,0.114,0.539,0.042,2017-18 9693,Dante Exum,UTA,22.0,198.12,86.18248,None,Australia,2014,1,5,14,8.1,1.9,3.1,8.1,0.018000000000000002,0.083,0.223,0.5660000000000001,0.27,2017-18 9694,Danuel House Jr.,PHX,25.0,200.66,99.79024,Texas A&M,USA,Undrafted,Undrafted,Undrafted,23,6.6,3.3,1.1,3.2,0.032,0.14,0.16,0.5329999999999999,0.092,2017-18 9695,Dakari Johnson,OKC,22.0,213.36,115.66596000000001,Kentucky,USA,2015,2,48,31,1.8,1.1,0.3,10.9,0.099,0.111,0.139,0.575,0.083,2017-18 9696,Dario Saric,PHI,24.0,208.28,101.151016,None,Croatia,2014,1,12,78,14.6,6.7,2.6,5.9,0.067,0.147,0.204,0.5820000000000001,0.129,2017-18 9697,Darrell Arthur,DEN,30.0,205.74,106.59411999999999,Kansas,USA,2008,1,27,19,2.8,0.8,0.5,-10.5,0.021,0.087,0.188,0.5589999999999999,0.10099999999999999,2017-18 9698,Darren Collison,IND,30.0,187.96,83.91452,UCLA,USA,2009,1,21,69,12.4,2.6,5.3,2.6,0.019,0.07200000000000001,0.17,0.61,0.257,2017-18 9699,Darrun Hilliard,SAS,25.0,198.12,99.79024,Villanova,USA,2015,2,38,14,1.1,0.5,0.8,5.6,0.0,0.08,0.11900000000000001,0.36200000000000004,0.147,2017-18 9700,David Nwaba,CHI,25.0,193.04,94.800728,None,USA,Undrafted,Undrafted,Undrafted,70,7.9,4.7,1.5,-5.8,0.05,0.142,0.153,0.542,0.094,2017-18 9701,David Stockton,UTA,27.0,180.34,74.84268,Gonzaga,USA,Undrafted,Undrafted,Undrafted,3,3.3,0.0,0.0,-46.3,0.0,0.0,0.25,1.05,0.0,2017-18 9702,David West,GSW,37.0,205.74,113.398,Xavier,USA,2003,1,18,73,6.8,3.3,1.9,1.9,0.07200000000000001,0.163,0.223,0.6,0.22,2017-18 9703,Davis Bertans,SAS,25.0,208.28,95.25432,None,Latvia,2011,2,42,77,5.9,2.0,1.0,3.5,0.017,0.122,0.168,0.588,0.102,2017-18 9704,Davon Reed,PHX,23.0,198.12,95.25432,Miami,USA,2017,2,32,21,3.0,1.9,0.6,-14.2,0.006999999999999999,0.149,0.158,0.38799999999999996,0.087,2017-18 9705,De'Aaron Fox,SAC,20.0,190.5,79.3786,Kentucky,USA,2017,1,5,73,11.6,2.8,4.4,-10.2,0.016,0.087,0.22699999999999998,0.478,0.24,2017-18 9706,DeAndre Jordan,LAC,29.0,210.82,120.20188,Texas A&M,USA,2008,2,35,77,12.0,15.2,1.5,-2.4,0.132,0.33899999999999997,0.151,0.648,0.07400000000000001,2017-18 9707,DeAndre Liggins,NOP,30.0,198.12,94.800728,Kentucky,USA,2011,2,53,58,1.7,1.3,0.8,-13.2,0.01,0.1,0.079,0.467,0.091,2017-18 9708,DeAndre' Bembry,ATL,23.0,198.12,95.25432,None,USA,2016,1,21,26,5.2,2.8,1.9,-7.5,0.017,0.142,0.179,0.47700000000000004,0.166,2017-18 9709,Darius Miller,NOP,28.0,203.2,102.0582,Kentucky,USA,2012,2,46,82,7.8,2.0,1.4,-0.6,0.009000000000000001,0.07,0.124,0.617,0.076,2017-18 9710,D.J. Wilson,MIL,22.0,208.28,107.047712,Michigan,USA,2017,1,17,22,1.0,0.5,0.1,-30.7,0.028999999999999998,0.157,0.127,0.622,0.075,2017-18 9711,D.J. Augustin,ORL,30.0,182.88,83.007336,Texas,USA,2008,1,9,75,10.2,2.1,3.8,-3.8,0.016,0.07200000000000001,0.182,0.615,0.251,2017-18 9712,D'Angelo Russell,BKN,22.0,195.58,88.45044,Ohio State,USA,2015,1,2,48,15.5,3.9,5.2,-7.2,0.023,0.122,0.295,0.509,0.348,2017-18 9713,Brook Lopez,LAL,30.0,213.36,121.562656,Stanford,USA,2008,1,10,74,13.0,4.0,1.7,-2.3,0.040999999999999995,0.12,0.23,0.557,0.113,2017-18 9714,Bruno Caboclo,SAC,22.0,205.74,92.98635999999999,None,Brazil,2014,1,20,12,2.2,1.8,0.3,2.4,0.062,0.146,0.152,0.386,0.055999999999999994,2017-18 9715,Bryn Forbes,SAS,24.0,190.5,86.18248,Michigan State,USA,Undrafted,Undrafted,Undrafted,80,6.9,1.4,1.0,3.5,0.008,0.065,0.159,0.525,0.077,2017-18 9716,Buddy Hield,SAC,25.0,193.04,97.068688,Oklahoma,Bahamas,2016,1,6,80,13.5,3.8,1.9,-4.1,0.027000000000000003,0.129,0.23600000000000002,0.557,0.127,2017-18 9717,C.J. Williams,LAC,28.0,195.58,104.32616,North Carolina State,USA,Undrafted,Undrafted,Undrafted,38,5.5,1.5,1.1,-1.2,0.017,0.057999999999999996,0.134,0.512,0.086,2017-18 9718,CJ McCollum,POR,26.0,190.5,86.18248,Lehigh,USA,2013,1,10,81,21.4,4.0,3.4,1.6,0.017,0.08900000000000001,0.259,0.536,0.156,2017-18 9719,CJ Miles,TOR,31.0,198.12,102.0582,None,USA,2005,2,34,70,10.0,2.2,0.8,8.0,0.013000000000000001,0.09699999999999999,0.214,0.545,0.061,2017-18 9720,Caleb Swanigan,POR,21.0,203.2,113.398,Purdue,USA,2017,1,26,27,2.3,2.0,0.5,-3.1,0.075,0.207,0.18899999999999997,0.449,0.124,2017-18 9721,Cameron Payne,CHI,23.0,190.5,83.91452,Murray State,USA,2015,1,14,25,8.8,2.8,4.5,-7.5,0.027000000000000003,0.08900000000000001,0.183,0.498,0.294,2017-18 9722,Caris LeVert,BKN,23.0,200.66,92.079176,Michigan,USA,2016,1,20,71,12.1,3.7,4.2,-6.4,0.026000000000000002,0.10400000000000001,0.21600000000000003,0.525,0.265,2017-18 9723,Carmelo Anthony,OKC,34.0,203.2,108.86208,Syracuse,USA,2003,1,3,78,16.2,5.8,1.3,5.2,0.025,0.158,0.223,0.503,0.061,2017-18 9724,Cedi Osman,CLE,23.0,203.2,97.52228000000001,None,Turkey,2015,2,31,61,3.9,2.0,0.7,3.9,0.027999999999999997,0.149,0.151,0.5770000000000001,0.084,2017-18 9725,Chandler Parsons,MEM,29.0,208.28,104.32616,Florida,USA,2011,2,38,36,7.9,2.5,1.9,-6.0,0.021,0.11699999999999999,0.18,0.578,0.158,2017-18 9726,Channing Frye,LAL,35.0,210.82,115.66596000000001,Arizona,USA,2005,1,8,53,5.0,2.5,0.7,8.2,0.019,0.16399999999999998,0.151,0.599,0.077,2017-18 9727,Charles Cooke,NOP,23.0,195.58,88.904032,University of Dayton,USA,Undrafted,Undrafted,Undrafted,13,0.5,0.2,0.1,-15.7,0.0,0.049,0.163,0.20199999999999999,0.038,2017-18 9728,Cheick Diallo,NOP,21.0,205.74,99.79024,Kansas,Mali,2016,2,33,52,4.9,4.1,0.4,-7.4,0.079,0.262,0.168,0.619,0.048,2017-18 9729,Chinanu Onuaku,HOU,21.0,208.28,111.13004,Louisville,USA,2016,2,37,1,4.0,4.0,1.0,-17.6,0.045,0.136,0.182,0.4,0.1,2017-18 9730,Chris Boucher,GSW,25.0,208.28,90.7184,Oregon,Canada,Undrafted,Undrafted,Undrafted,1,0.0,1.0,0.0,-100.0,0.0,1.0,0.33299999999999996,0.0,0.0,2017-18 9731,Chris McCullough,WAS,23.0,205.74,97.52228000000001,Syracuse,USA,2015,1,29,19,2.4,1.3,0.2,-12.2,0.07,0.187,0.21899999999999997,0.478,0.08199999999999999,2017-18 9732,Chris Paul,HOU,33.0,182.88,79.3786,Wake Forest,USA,2005,1,4,58,18.6,5.4,7.9,13.2,0.02,0.151,0.24100000000000002,0.604,0.389,2017-18 9733,Clint Capela,HOU,24.0,208.28,108.86208,None,Switzerland,2014,1,25,74,13.9,10.8,0.9,9.3,0.11900000000000001,0.278,0.19,0.65,0.055,2017-18 9734,Cody Zeller,CHA,25.0,213.36,108.86208,Indiana,USA,2013,1,4,33,7.1,5.4,0.9,2.1,0.09699999999999999,0.184,0.152,0.602,0.075,2017-18 9735,Cole Aldrich,MIN,29.0,210.82,114.758776,Kansas,USA,2010,1,11,21,0.6,0.7,0.1,-1.8,0.057,0.28600000000000003,0.151,0.34,0.081,2017-18 9736,Corey Brewer,OKC,32.0,205.74,84.368112,Florida,USA,2007,1,7,72,5.3,2.1,0.9,-2.3,0.033,0.08900000000000001,0.136,0.534,0.073,2017-18 9737,Cory Joseph,IND,26.0,190.5,86.18248,Texas,Canada,2011,1,29,82,7.9,3.2,3.2,-1.1,0.017,0.10099999999999999,0.14300000000000002,0.503,0.16399999999999998,2017-18 9738,Courtney Lee,NYK,32.0,195.58,90.7184,Western Kentucky,USA,2008,1,22,76,12.0,2.9,2.4,-5.5,0.013000000000000001,0.08199999999999999,0.165,0.564,0.113,2017-18 9739,Cristiano Felicio,CHI,25.0,205.74,127.00576000000001,None,Brazil,Undrafted,Undrafted,Undrafted,55,5.6,4.2,1.0,-16.4,0.076,0.158,0.133,0.614,0.09300000000000001,2017-18 9740,DeMar DeRozan,TOR,28.0,200.66,99.79024,USC,USA,2009,1,9,80,23.0,3.9,5.2,7.7,0.021,0.091,0.28600000000000003,0.555,0.245,2017-18 9741,Kelly Oubre Jr.,WAS,22.0,200.66,92.98635999999999,Kansas,USA,2015,1,15,81,11.8,4.5,1.2,-2.4,0.026000000000000002,0.136,0.188,0.534,0.067,2017-18 9742,DeMarcus Cousins,NOP,27.0,210.82,122.46983999999999,Kentucky,USA,2010,1,5,48,25.2,12.9,5.4,1.9,0.065,0.292,0.318,0.583,0.24100000000000002,2017-18 9743,Dejounte Murray,SAS,21.0,195.58,77.11064,Washington,USA,2016,1,29,81,8.1,5.7,2.9,4.3,0.061,0.196,0.201,0.485,0.20199999999999999,2017-18 9744,Ed Davis,POR,29.0,208.28,111.13004,North Carolina,USA,2010,1,13,78,5.3,7.4,0.5,4.1,0.121,0.254,0.12,0.607,0.039,2017-18 9745,Edmond Sumner,IND,22.0,195.58,85.275296,Xavier,USA,2017,2,52,1,2.0,1.0,0.0,-120.0,0.0,0.5,0.2,1.0,0.0,2017-18 9746,Ekpe Udoh,UTA,31.0,208.28,111.13004,Baylor,USA,2010,1,6,63,2.6,2.4,0.8,3.3,0.086,0.105,0.08900000000000001,0.56,0.09300000000000001,2017-18 9747,Elfrid Payton,PHX,24.0,193.04,83.91452,Louisana-Lafayette,USA,2014,1,10,63,12.7,4.3,6.2,-11.7,0.033,0.11699999999999999,0.21100000000000002,0.5379999999999999,0.32799999999999996,2017-18 9748,Emeka Okafor,NOP,35.0,208.28,115.66596000000001,Connecticut,USA,2004,1,2,26,4.4,4.6,0.3,0.3,0.12,0.175,0.133,0.545,0.027999999999999997,2017-18 9749,Emmanuel Mudiay,NYK,22.0,195.58,90.7184,None,Democratic Republic of the Congo,2015,1,7,64,8.6,2.4,3.2,-9.5,0.019,0.099,0.231,0.474,0.254,2017-18 9750,Enes Kanter,NYK,26.0,210.82,111.13004, ,Turkey,2011,1,3,71,14.1,11.0,1.5,-4.9,0.146,0.27899999999999997,0.212,0.63,0.091,2017-18 9751,Eric Bledsoe,MIL,28.0,185.42,92.98635999999999,Kentucky,USA,2010,1,18,74,17.7,3.8,5.0,2.7,0.023,0.1,0.254,0.5820000000000001,0.24600000000000002,2017-18 9752,Eric Gordon,HOU,29.0,193.04,97.52228000000001,Indiana,USA,2008,1,7,69,18.0,2.5,2.2,13.0,0.011000000000000001,0.065,0.23800000000000002,0.578,0.113,2017-18 9753,Eric Moreland,DET,26.0,208.28,107.95489599999999,Oregon State,USA,Undrafted,Undrafted,Undrafted,67,2.1,4.1,1.2,1.1,0.096,0.243,0.09699999999999999,0.531,0.141,2017-18 9754,Erik McCree,UTA,24.0,203.2,102.0582,Louisiana Tech,USA,Undrafted,Undrafted,Undrafted,4,0.0,0.3,0.0,-45.4,0.0,0.2,0.158,0.0,0.0,2017-18 9755,Ersan Ilyasova,PHI,31.0,208.28,106.59411999999999,None,Turkey,2005,2,36,69,10.9,5.9,1.3,0.9,0.067,0.161,0.183,0.5579999999999999,0.078,2017-18 9756,E'Twaun Moore,NOP,29.0,193.04,86.636072,Purdue,USA,2011,2,55,82,12.5,2.9,2.3,2.6,0.023,0.065,0.158,0.593,0.099,2017-18 9757,Evan Fournier,ORL,25.0,200.66,92.98635999999999,None,France,2012,1,20,57,17.8,3.2,2.9,-3.2,0.012,0.084,0.226,0.5770000000000001,0.138,2017-18 9758,Frank Kaminsky,CHA,25.0,213.36,109.769264,Wisconsin,USA,2015,1,9,79,11.1,3.6,1.6,-2.3,0.023,0.139,0.20199999999999999,0.545,0.113,2017-18 9759,Frank Mason,SAC,24.0,180.34,86.18248,Kansas,USA,2017,2,34,52,7.9,2.5,2.8,-1.7,0.03,0.107,0.226,0.48,0.233,2017-18 9760,Frank Ntilikina,NYK,19.0,195.58,86.18248,None,France,2017,1,8,78,5.9,2.3,3.2,-2.2,0.021,0.079,0.166,0.43700000000000006,0.21,2017-18 9761,Fred VanVleet,TOR,24.0,182.88,88.45044,Wichita State,USA,Undrafted,Undrafted,Undrafted,76,8.6,2.4,3.2,11.1,0.016,0.102,0.188,0.556,0.231,2017-18 9762,Furkan Korkmaz,PHI,20.0,200.66,86.18248,None,Turkey,2016,1,26,14,1.6,0.8,0.3,-29.3,0.02,0.12300000000000001,0.159,0.386,0.077,2017-18 9763,Garrett Temple,SAC,32.0,198.12,88.45044,Louisiana State,USA,Undrafted,Undrafted,Undrafted,65,8.4,2.3,1.9,-7.4,0.013000000000000001,0.084,0.16,0.536,0.115,2017-18 9764,Gary Harris,DEN,23.0,193.04,95.25432,Michigan State,USA,2014,1,19,67,17.5,2.6,2.9,3.5,0.016,0.061,0.204,0.597,0.128,2017-18 9765,Gary Payton II,LAL,25.0,190.5,86.18248,Oregon State,USA,Undrafted,Undrafted,Undrafted,23,3.0,1.9,0.9,4.9,0.055999999999999994,0.14400000000000002,0.162,0.44299999999999995,0.13,2017-18 9766,George Hill,CLE,32.0,190.5,85.275296,None,USA,2008,1,26,67,10.0,2.7,2.8,-3.3,0.023,0.081,0.161,0.58,0.145,2017-18 9767,Georges Niang,UTA,25.0,198.12,104.779752,Iowa State,USA,2016,2,50,9,1.0,1.0,0.3,-18.1,0.10300000000000001,0.182,0.19,0.379,0.16699999999999998,2017-18 9768,Georgios Papagiannis,POR,20.0,215.9,108.86208,None,Greece,2016,1,13,17,2.1,2.2,0.5,-3.7,0.1,0.21600000000000003,0.17,0.429,0.09699999999999999,2017-18 9769,Gerald Green,HOU,32.0,200.66,92.98635999999999,None,USA,2005,1,18,41,12.1,3.2,0.6,4.6,0.016,0.124,0.21899999999999997,0.5660000000000001,0.045,2017-18 9770,Evan Turner,POR,29.0,200.66,99.79024,Ohio State,USA,2010,1,2,79,8.2,3.1,2.2,-1.1,0.013999999999999999,0.1,0.153,0.52,0.128,2017-18 9771,Dwyane Wade,MIA,36.0,193.04,99.79024,Marquette,USA,2003,1,5,67,11.4,3.8,3.4,1.3,0.032,0.124,0.251,0.5,0.245,2017-18 9772,Dwight Powell,DAL,26.0,210.82,108.86208,Stanford,Canada,2014,2,45,79,8.5,5.6,1.2,0.9,0.08,0.19,0.151,0.6559999999999999,0.085,2017-18 9773,Dwight Howard,CHA,32.0,210.82,120.20188,None,USA,2004,1,1,81,16.6,12.5,1.3,1.4,0.10099999999999999,0.295,0.23800000000000002,0.5770000000000001,0.069,2017-18 9774,Delon Wright,TOR,26.0,195.58,86.18248,Utah,USA,2015,1,20,69,8.0,2.9,2.9,7.3,0.031,0.107,0.16899999999999998,0.574,0.20199999999999999,2017-18 9775,Demetrius Jackson,PHI,23.0,185.42,91.171992,Notre Dame,USA,2016,2,45,15,1.1,0.8,0.6,-24.1,0.06,0.086,0.156,0.424,0.188,2017-18 9776,Dennis Schroder,ATL,24.0,185.42,78.017824,None,Germany,2013,1,17,67,19.4,3.1,6.2,-6.7,0.021,0.081,0.299,0.515,0.35200000000000004,2017-18 9777,Dennis Smith Jr.,DAL,20.0,190.5,88.45044,North Carolina State,USA,2017,1,9,69,15.2,3.8,5.2,-7.6,0.023,0.106,0.28,0.473,0.301,2017-18 9778,Denzel Valentine,CHI,24.0,198.12,97.068688,Michigan State,USA,2016,1,14,77,10.2,5.1,3.2,-6.8,0.021,0.168,0.17,0.527,0.17800000000000002,2017-18 9779,Derrick Favors,UTA,26.0,208.28,120.20188,Georgia Tech,USA,2010,1,3,77,12.3,7.2,1.3,3.6,0.09699999999999999,0.16699999999999998,0.18100000000000002,0.593,0.075,2017-18 9780,Derrick Jones Jr.,MIA,21.0,200.66,90.7184,UNLV,USA,Undrafted,Undrafted,Undrafted,20,3.1,1.9,0.5,-6.5,0.077,0.066,0.124,0.48,0.055999999999999994,2017-18 9781,Derrick Rose,MIN,29.0,190.5,86.18248,Memphis,USA,2008,1,1,25,8.4,1.4,1.5,-6.2,0.033,0.053,0.245,0.507,0.136,2017-18 9782,Derrick Walton Jr.,MIA,23.0,185.42,83.91452,Michigan,USA,Undrafted,Undrafted,Undrafted,16,1.8,1.0,1.0,-10.5,0.013999999999999999,0.095,0.092,0.525,0.17,2017-18 9783,Derrick White,SAS,23.0,193.04,86.18248,Colorado,USA,2017,1,29,17,3.2,1.5,0.5,13.5,0.034,0.128,0.146,0.6459999999999999,0.098,2017-18 9784,Derrick Williams,LAL,27.0,203.2,108.86208,Arizona,USA,2011,1,2,2,1.0,0.5,0.0,-18.8,0.0,0.14300000000000002,0.16699999999999998,0.25,0.0,2017-18 9785,Devin Booker,PHX,21.0,198.12,95.25432,Kentucky,USA,2015,1,13,54,24.9,4.5,4.7,-9.3,0.013000000000000001,0.11199999999999999,0.301,0.561,0.233,2017-18 9786,Devin Harris,DEN,35.0,190.5,83.91452,Wisconsin,USA,2004,1,5,71,8.4,1.8,2.1,4.1,0.009000000000000001,0.085,0.19399999999999998,0.563,0.165,2017-18 9787,Devin Robinson,WAS,23.0,203.2,90.7184,Florida,USA,Undrafted,Undrafted,Undrafted,1,2.0,5.0,0.0,28.6,0.095,0.25,0.083,0.33299999999999996,0.0,2017-18 9788,Dewayne Dedmon,ATL,28.0,213.36,111.13004,USC,USA,Undrafted,Undrafted,Undrafted,62,10.0,7.9,1.5,-5.1,0.065,0.249,0.166,0.599,0.09,2017-18 9789,Deyonta Davis,MEM,21.0,210.82,107.501304,Michigan State,USA,2016,2,31,62,5.8,4.0,0.6,-8.3,0.078,0.182,0.14400000000000002,0.621,0.068,2017-18 9790,Dillon Brooks,MEM,22.0,198.12,99.79024,Oregon,Canada,2017,2,45,82,11.0,3.1,1.6,-5.0,0.021,0.092,0.184,0.531,0.092,2017-18 9791,Dion Waiters,MIA,26.0,193.04,97.52228000000001,Syracuse,USA,2012,1,4,30,14.3,2.6,3.8,-5.3,0.009000000000000001,0.078,0.25,0.48700000000000004,0.21,2017-18 9792,Dirk Nowitzki,DAL,40.0,213.36,111.13004,None,Germany,1998,1,9,77,12.0,5.7,1.6,-2.0,0.012,0.22699999999999998,0.19899999999999998,0.575,0.098,2017-18 9793,Domantas Sabonis,IND,22.0,208.28,114.30518400000001,Gonzaga,Lithuania,2016,1,11,74,11.6,7.7,2.0,1.4,0.09300000000000001,0.22699999999999998,0.214,0.5670000000000001,0.127,2017-18 9794,Donovan Mitchell,UTA,21.0,190.5,97.52228000000001,Louisville,USA,2017,1,13,79,20.5,3.7,3.7,6.8,0.02,0.09300000000000001,0.28300000000000003,0.541,0.18899999999999997,2017-18 9795,Dorian Finney-Smith,DAL,25.0,203.2,99.79024,Florida,USA,Undrafted,Undrafted,Undrafted,21,5.9,3.6,1.2,-2.7,0.043,0.121,0.14400000000000002,0.48200000000000004,0.086,2017-18 9796,Doug McDermott,DAL,26.0,203.2,99.336648,Creighton,USA,2014,1,11,81,7.8,2.5,1.0,-1.2,0.022000000000000002,0.087,0.14400000000000002,0.579,0.065,2017-18 9797,Dragan Bender,PHX,20.0,215.9,102.0582,None,Croatia,2016,1,4,82,6.5,4.4,1.6,-10.3,0.018000000000000002,0.149,0.125,0.524,0.08900000000000001,2017-18 9798,Draymond Green,GSW,28.0,200.66,104.32616,Michigan State,USA,2012,2,35,70,11.0,7.6,7.3,6.7,0.036000000000000004,0.183,0.168,0.556,0.28600000000000003,2017-18 9799,Dwayne Bacon,CHA,22.0,200.66,100.243832,Florida State,USA,2017,2,40,53,3.3,2.3,0.7,-0.2,0.005,0.158,0.13,0.431,0.077,2017-18 9800,Dwight Buycks,DET,29.0,190.5,86.18248,Marquette,USA,Undrafted,Undrafted,Undrafted,29,7.4,1.4,2.0,0.6,0.027999999999999997,0.067,0.266,0.498,0.24,2017-18 9801,DeMarre Carroll,BKN,31.0,203.2,97.52228000000001,Missouri,USA,2009,1,27,73,13.5,6.6,2.0,-1.2,0.045,0.165,0.19399999999999998,0.55,0.106,2017-18 9802,Kemba Walker,CHA,28.0,185.42,83.46092800000001,Connecticut,USA,2011,1,9,80,22.1,3.1,5.6,3.3,0.011000000000000001,0.077,0.267,0.5720000000000001,0.264,2017-18 9803,Kendrick Perkins,CLE,33.0,208.28,122.46983999999999,None,USA,2003,1,27,1,3.0,1.0,2.0,18.4,0.0,0.091,0.11800000000000001,0.521,0.182,2017-18 9804,Kenneth Faried,DEN,28.0,203.2,103.418976,Morehead State,USA,2011,1,22,32,5.9,4.8,0.6,-5.0,0.135,0.193,0.17300000000000001,0.552,0.064,2017-18 9805,Sean Kilpatrick,CHI,28.0,193.04,96.16150400000001,Cincinnati,USA,Undrafted,Undrafted,Undrafted,52,6.3,1.7,0.9,-8.6,0.006999999999999999,0.131,0.242,0.507,0.121,2017-18 9806,Semi Ojeleye,BOS,23.0,200.66,106.59411999999999,Southern Methodist,USA,2017,2,37,73,2.7,2.2,0.3,-6.5,0.031,0.106,0.08800000000000001,0.473,0.026000000000000002,2017-18 9807,Serge Ibaka,TOR,28.0,208.28,106.59411999999999,None,Democratic Republic of the Congo,2008,1,24,76,12.6,6.3,0.8,6.8,0.037000000000000005,0.183,0.18899999999999997,0.574,0.044000000000000004,2017-18 9808,Shabazz Muhammad,MIL,25.0,198.12,100.243832,California-Los Angeles,USA,2013,1,14,43,5.0,1.8,0.3,-12.7,0.057,0.136,0.225,0.51,0.055,2017-18 9809,Shabazz Napier,POR,26.0,185.42,79.3786,Connecticut,USA,2014,1,24,74,8.7,2.3,2.0,2.4,0.017,0.09,0.192,0.544,0.149,2017-18 9810,Shane Larkin,BOS,25.0,180.34,79.3786,Miami,USA,2013,1,18,54,4.3,1.7,1.8,0.5,0.019,0.10099999999999999,0.153,0.491,0.21,2017-18 9811,Shaquille Harrison,PHX,24.0,193.04,86.18248,Tulsa,USA,Undrafted,Undrafted,Undrafted,23,6.6,2.7,2.4,6.1,0.023,0.13,0.17300000000000001,0.54,0.19899999999999998,2017-18 9812,Shaun Livingston,GSW,32.0,200.66,87.089664,None,USA,2004,1,4,71,5.5,1.8,2.0,5.8,0.033,0.08,0.165,0.5329999999999999,0.16899999999999998,2017-18 9813,Shelvin Mack,ORL,28.0,190.5,92.079176,Butler,USA,2011,2,34,69,6.9,2.4,3.9,-2.7,0.016,0.102,0.175,0.518,0.308,2017-18 9814,Sindarius Thornwell,LAC,23.0,195.58,97.52228000000001,South Carolina,USA,2017,2,48,73,3.9,1.9,0.9,-2.4,0.027999999999999997,0.086,0.11800000000000001,0.519,0.081,2017-18 9815,Skal Labissiere,SAC,22.0,210.82,102.0582,Kentucky,Haiti,2016,1,28,60,8.7,4.8,1.2,-4.3,0.078,0.157,0.204,0.513,0.08800000000000001,2017-18 9816,Solomon Hill,NOP,27.0,200.66,102.0582,Arizona,USA,2013,1,23,12,2.4,3.0,1.8,-5.2,0.046,0.124,0.113,0.332,0.14,2017-18 9817,Scotty Hopson,DAL,28.0,200.66,92.532768,Tennessee,USA,Undrafted,Undrafted,Undrafted,1,1.0,0.0,1.0,-36.4,0.0,0.0,0.111,0.266,0.2,2017-18 9818,Spencer Dinwiddie,BKN,25.0,198.12,90.7184,Colorado,USA,2014,2,38,80,12.6,3.2,6.6,-1.3,0.016,0.094,0.201,0.527,0.349,2017-18 9819,Stephen Curry,GSW,30.0,190.5,86.18248,Davidson,USA,2009,1,7,51,26.4,5.1,6.1,13.0,0.024,0.124,0.29,0.675,0.272,2017-18 9820,Sterling Brown,MIL,23.0,198.12,104.32616,Southern Methodist,USA,2017,2,46,54,4.0,2.6,0.5,-2.5,0.035,0.147,0.135,0.503,0.049,2017-18 9821,Steven Adams,OKC,24.0,213.36,115.66596000000001,Pittsburgh,New Zealand,2013,1,12,76,13.9,9.0,1.2,6.4,0.142,0.12300000000000001,0.16,0.63,0.051,2017-18 9822,T.J. McConnell,PHI,26.0,187.96,86.18248,Arizona,USA,Undrafted,Undrafted,Undrafted,76,6.3,3.0,4.0,-1.4,0.021,0.1,0.134,0.545,0.258,2017-18 9823,T.J. Warren,PHX,24.0,203.2,97.52228000000001,North Carolina State,USA,2014,1,14,65,19.6,5.1,1.3,-9.0,0.055,0.09300000000000001,0.243,0.541,0.069,2017-18 9824,TJ Leaf,IND,21.0,208.28,104.32616,UCLA,USA,2017,1,18,53,2.9,1.5,0.2,-11.7,0.057999999999999996,0.11900000000000001,0.136,0.545,0.027999999999999997,2017-18 9825,Taj Gibson,MIN,33.0,205.74,106.59411999999999,USC,USA,2009,1,26,82,12.2,7.1,1.2,4.6,0.07200000000000001,0.146,0.14400000000000002,0.61,0.051,2017-18 9826,Tarik Black,HOU,26.0,205.74,113.398,Kansas,USA,Undrafted,Undrafted,Undrafted,51,3.5,3.2,0.3,-7.3,0.10800000000000001,0.18100000000000002,0.147,0.5820000000000001,0.042,2017-18 9827,Taurean Prince,ATL,24.0,203.2,99.79024,Baylor,USA,2016,1,12,82,14.1,4.7,2.6,-7.5,0.02,0.138,0.21600000000000003,0.5489999999999999,0.135,2017-18 9828,Terrance Ferguson,OKC,20.0,200.66,83.46092800000001,None,USA,2017,1,21,61,3.1,0.8,0.3,-4.5,0.023,0.038,0.10400000000000001,0.545,0.035,2017-18 9829,Terrence Ross,ORL,27.0,200.66,93.439952,Washington,USA,2012,1,8,24,8.7,3.0,1.6,-3.8,0.016,0.102,0.166,0.505,0.08800000000000001,2017-18 9830,Terry Rozier,BOS,24.0,187.96,86.18248,Louisville,USA,2015,1,16,80,11.3,4.7,2.9,2.6,0.028999999999999998,0.14400000000000002,0.19899999999999998,0.52,0.184,2017-18 9831,Stanley Johnson,DET,22.0,200.66,111.13004,Arizona,USA,2015,1,8,69,8.7,3.7,1.6,-0.6,0.017,0.115,0.161,0.48,0.086,2017-18 9832,Sam Dekker,LAC,24.0,205.74,104.32616,Wisconsin,USA,2015,1,18,73,4.2,2.4,0.5,4.2,0.05,0.136,0.14800000000000002,0.534,0.059000000000000004,2017-18 9833,Salah Mejri,DAL,32.0,218.44,106.59411999999999,None,Tunisia,Undrafted,Undrafted,Undrafted,61,3.5,4.0,0.6,2.0,0.113,0.21600000000000003,0.126,0.644,0.071,2017-18 9834,Ryan Arcidiacono,CHI,24.0,190.5,88.45044,Villanova,USA,Undrafted,Undrafted,Undrafted,24,2.0,1.0,1.5,-2.3,0.003,0.077,0.081,0.55,0.161,2017-18 9835,Quincy Acy,BKN,27.0,200.66,108.86208,Baylor,USA,2012,2,37,70,5.9,3.7,0.8,-1.9,0.027999999999999997,0.153,0.14300000000000002,0.525,0.061,2017-18 9836,Quincy Pondexter,CHI,30.0,200.66,102.0582,Washington,USA,2010,1,26,23,2.0,1.2,0.4,-20.8,0.035,0.10300000000000001,0.151,0.39799999999999996,0.078,2017-18 9837,Quinn Cook,GSW,25.0,187.96,81.19296800000001,Duke,USA,Undrafted,Undrafted,Undrafted,33,9.5,2.5,2.7,-2.2,0.013999999999999999,0.094,0.17600000000000002,0.593,0.179,2017-18 9838,RJ Hunter,HOU,24.0,195.58,83.91452,Georgia State,USA,2015,1,28,5,3.8,1.0,0.6,1.1,0.0,0.094,0.214,0.455,0.111,2017-18 9839,Rajon Rondo,NOP,32.0,185.42,84.368112,Kentucky,USA,2006,1,21,65,8.3,4.0,8.2,0.8,0.018000000000000002,0.124,0.16399999999999998,0.522,0.406,2017-18 9840,Ramon Sessions,WAS,32.0,190.5,86.18248,Nevada-Reno,USA,2007,2,56,28,4.9,1.4,2.8,-10.8,0.015,0.086,0.187,0.479,0.297,2017-18 9841,Rashad Vaughn,MIL,21.0,198.12,91.625584,Nevada-Las Vegas,USA,2015,1,17,28,2.3,0.8,0.5,-1.8,0.016,0.085,0.13699999999999998,0.546,0.09,2017-18 9842,Raul Neto,UTA,26.0,185.42,81.19296800000001,None,Brazil,2013,2,47,41,4.5,1.2,1.8,9.5,0.013999999999999999,0.079,0.17300000000000001,0.55,0.23,2017-18 9843,Raymond Felton,OKC,34.0,185.42,92.98635999999999,North Carolina,USA,2005,1,5,82,6.9,1.9,2.5,-1.3,0.018000000000000002,0.09699999999999999,0.21,0.494,0.255,2017-18 9844,Reggie Bullock,DET,27.0,200.66,92.98635999999999,North Carolina,USA,2013,1,25,62,11.3,2.5,1.5,0.6,0.015,0.07200000000000001,0.153,0.615,0.081,2017-18 9845,Reggie Hearn,DET,26.0,195.58,95.25432,Northwestern,USA,Undrafted,Undrafted,Undrafted,3,1.0,0.0,0.0,-35.7,0.0,0.0,0.105,0.75,0.0,2017-18 9846,Reggie Jackson,DET,28.0,190.5,94.34713599999999,Boston College,USA,2011,1,24,45,14.6,2.8,5.3,0.4,0.023,0.084,0.265,0.516,0.331,2017-18 9847,Richard Jefferson,DEN,38.0,200.66,105.68693600000002,Arizona,USA,2001,1,13,20,1.5,0.9,0.8,-13.2,0.011000000000000001,0.099,0.08900000000000001,0.499,0.135,2017-18 9848,Richaun Holmes,PHI,24.0,208.28,106.59411999999999,Bowling Green,USA,2015,2,37,48,6.5,4.4,1.3,-1.6,0.07400000000000001,0.182,0.159,0.585,0.122,2017-18 9849,Ricky Rubio,UTA,27.0,193.04,86.18248,None,Spain,2009,1,5,77,13.1,4.6,5.3,4.7,0.02,0.139,0.222,0.537,0.28300000000000003,2017-18 9850,Robert Covington,PHI,27.0,205.74,102.0582,Tennessee State,USA,Undrafted,Undrafted,Undrafted,80,12.6,5.4,2.0,9.9,0.022000000000000002,0.13699999999999998,0.168,0.563,0.084,2017-18 9851,Robin Lopez,CHI,30.0,213.36,125.64498400000001,Stanford,USA,2008,1,15,64,11.8,4.5,1.9,-6.1,0.07400000000000001,0.09300000000000001,0.203,0.552,0.11900000000000001,2017-18 9852,Rodney Hood,CLE,25.0,203.2,93.439952,Duke,USA,2014,1,23,60,14.7,2.8,1.6,-2.3,0.013999999999999999,0.091,0.24,0.546,0.09699999999999999,2017-18 9853,Rodney McGruder,MIA,26.0,193.04,90.7184,Kansas State,USA,Undrafted,Undrafted,Undrafted,18,5.1,1.8,0.9,5.5,0.035,0.078,0.114,0.595,0.075,2017-18 9854,Rodney Purvis,ORL,24.0,193.04,92.98635999999999,Connecticut,USA,Undrafted,Undrafted,Undrafted,16,6.0,1.7,1.1,-9.1,0.003,0.085,0.187,0.423,0.092,2017-18 9855,Ron Baker,NYK,25.0,193.04,99.79024,Wichita State,USA,Undrafted,Undrafted,Undrafted,29,2.4,1.0,1.6,3.2,0.013999999999999999,0.064,0.102,0.504,0.161,2017-18 9856,Rondae Hollis-Jefferson,BKN,23.0,200.66,97.068688,Arizona,USA,2015,1,23,68,13.9,6.8,2.5,-3.7,0.05,0.175,0.217,0.5479999999999999,0.14300000000000002,2017-18 9857,Royce O'Neale,UTA,25.0,198.12,102.511792,Baylor,USA,Undrafted,Undrafted,Undrafted,69,5.0,3.4,1.4,8.7,0.022000000000000002,0.175,0.14,0.54,0.122,2017-18 9858,Rudy Gay,SAS,31.0,203.2,104.32616,Connecticut,USA,2006,1,8,57,11.5,5.1,1.3,2.5,0.06,0.175,0.237,0.545,0.09699999999999999,2017-18 9859,Rudy Gobert,UTA,26.0,215.9,111.13004,None,France,2013,1,27,56,13.5,10.7,1.4,9.4,0.09300000000000001,0.23399999999999999,0.163,0.657,0.068,2017-18 9860,Russell Westbrook,OKC,29.0,190.5,90.7184,UCLA,USA,2008,1,4,80,25.4,10.1,10.3,6.6,0.048,0.226,0.326,0.524,0.46399999999999997,2017-18 9861,Ryan Anderson,HOU,30.0,208.28,108.86208,California,USA,2008,1,21,66,9.3,5.0,0.9,6.9,0.054000000000000006,0.139,0.141,0.5920000000000001,0.05,2017-18 9862,Thabo Sefolosha,UTA,34.0,200.66,99.79024,None,Switzerland,2006,1,13,38,8.2,4.2,0.9,3.8,0.038,0.17,0.162,0.591,0.066,2017-18 9863,Paul Zipser,CHI,24.0,203.2,102.511792,None,Germany,2016,2,48,54,4.0,2.4,0.9,-12.2,0.015,0.147,0.156,0.445,0.086,2017-18 9864,Thaddeus Young,IND,30.0,203.2,104.32616,Georgia Tech,USA,2007,1,12,81,11.8,6.3,1.9,3.7,0.07400000000000001,0.128,0.171,0.528,0.085,2017-18 9865,Thon Maker,MIL,21.0,215.9,101.151016,None,South Sudan,2016,1,10,74,4.8,3.0,0.6,-5.0,0.064,0.13,0.147,0.499,0.055,2017-18 9866,Tyson Chandler,PHX,35.0,215.9,108.86208,None,USA,2001,1,2,46,6.5,9.1,1.2,-10.2,0.109,0.24100000000000002,0.105,0.6579999999999999,0.065,2017-18 9867,Tyus Jones,MIN,22.0,187.96,83.46092800000001,Duke,USA,2015,1,24,82,5.1,1.6,2.8,5.6,0.011000000000000001,0.083,0.124,0.5720000000000001,0.215,2017-18 9868,Udonis Haslem,MIA,38.0,203.2,106.59411999999999,Florida,USA,Undrafted,Undrafted,Undrafted,14,0.6,0.7,0.4,-0.9,0.039,0.092,0.113,0.252,0.11900000000000001,2017-18 9869,Vander Blue,LAL,25.0,195.58,90.7184,Marquette,USA,Undrafted,Undrafted,Undrafted,5,0.6,0.2,0.6,17.6,0.0,0.022000000000000002,0.085,0.255,0.086,2017-18 9870,Victor Oladipo,IND,26.0,193.04,95.25432,Indiana,USA,2013,1,2,75,23.1,5.2,4.3,5.9,0.019,0.132,0.295,0.5770000000000001,0.209,2017-18 9871,Vince Carter,SAC,41.0,198.12,99.79024,North Carolina,USA,1998,1,5,58,5.4,2.6,1.2,-3.3,0.017,0.13,0.14400000000000002,0.523,0.099,2017-18 9872,Vincent Hunter,MEM,23.0,203.2,94.34713599999999,Texas-El Paso,USA,Undrafted,Undrafted,Undrafted,4,1.5,0.8,0.0,30.9,0.182,0.16699999999999998,0.25,0.6,0.0,2017-18 9873,Wade Baldwin IV,POR,22.0,193.04,91.625584,Vanderbilt,USA,2016,1,17,7,5.4,1.1,0.7,6.0,0.013999999999999999,0.09,0.159,0.748,0.09300000000000001,2017-18 9874,Walt Lemon Jr.,NOP,25.0,190.5,81.64656,None,USA,Undrafted,Undrafted,Undrafted,5,3.4,0.4,1.0,-14.5,0.0,0.065,0.256,0.491,0.172,2017-18 9875,Wayne Ellington,MIA,30.0,195.58,90.7184,North Carolina,USA,2009,1,28,77,11.2,2.8,1.0,2.2,0.011000000000000001,0.094,0.16699999999999998,0.588,0.06,2017-18 9876,Wayne Selden,MEM,23.0,195.58,104.32616,Kansas,USA,Undrafted,Undrafted,Undrafted,35,9.3,1.6,1.9,-8.4,0.023,0.06,0.212,0.551,0.154,2017-18 9877,Wes Iwundu,ORL,23.0,200.66,88.45044,Kansas State,USA,2017,2,33,62,3.7,2.2,0.9,-4.6,0.033,0.1,0.114,0.48,0.084,2017-18 9878,Tyrone Wallace,LAC,24.0,195.58,89.811216,California,USA,2016,2,60,30,9.7,3.5,2.4,-1.5,0.024,0.091,0.159,0.517,0.115,2017-18 9879,Wesley Johnson,LAC,30.0,200.66,97.52228000000001,Syracuse,USA,2010,1,4,74,5.4,2.9,0.8,-1.4,0.019,0.122,0.126,0.512,0.055999999999999994,2017-18 9880,Will Barton,DEN,27.0,198.12,86.18248,Memphis,USA,2012,2,40,81,15.7,5.0,4.1,2.1,0.026000000000000002,0.126,0.201,0.562,0.185,2017-18 9881,Willie Cauley-Stein,SAC,24.0,213.36,108.86208,Kentucky,USA,2015,1,6,73,12.8,7.0,2.4,-7.8,0.064,0.19699999999999998,0.215,0.529,0.135,2017-18 9882,Willie Reed,LAC,28.0,210.82,111.13004,St. Louis,USA,Undrafted,Undrafted,Undrafted,42,4.6,2.9,0.2,2.8,0.08,0.205,0.159,0.6709999999999999,0.035,2017-18 9883,Willy Hernangomez,CHA,24.0,210.82,108.86208,None,Spain,2015,2,35,48,5.1,3.8,0.7,0.1,0.115,0.248,0.203,0.604,0.109,2017-18 9884,Wilson Chandler,DEN,31.0,205.74,102.0582,DePaul,USA,2007,1,23,74,10.0,5.4,2.1,1.4,0.044000000000000004,0.127,0.142,0.542,0.094,2017-18 9885,Xavier Munford,MIL,26.0,193.04,78.471416,Rhode Island,USA,Undrafted,Undrafted,Undrafted,6,0.5,0.2,0.7,-23.2,0.05,0.0,0.184,0.218,0.364,2017-18 9886,Xavier Rathan-Mayes,NYK,24.0,193.04,94.34713599999999,Florida State,Canada,Undrafted,Undrafted,Undrafted,5,5.8,1.0,3.6,-24.2,0.0,0.053,0.207,0.315,0.247,2017-18 9887,Xavier Silas,BOS,30.0,195.58,92.98635999999999,Northern Illinois,USA,2011,Undrafted,Undrafted,2,0.0,1.0,0.0,5.9,0.091,0.125,0.136,0.0,0.0,2017-18 9888,Yogi Ferrell,DAL,25.0,182.88,81.64656,Indiana,USA,Undrafted,Undrafted,Undrafted,82,10.2,3.0,2.5,0.2,0.011000000000000001,0.09699999999999999,0.166,0.54,0.13699999999999998,2017-18 9889,Zach Collins,POR,20.0,213.36,104.32616,Gonzaga,USA,2017,1,10,66,4.4,3.3,0.8,1.3,0.044000000000000004,0.163,0.153,0.475,0.07,2017-18 9890,Zach LaVine,CHI,23.0,195.58,83.91452,UCLA,USA,2014,1,13,24,16.7,3.9,3.0,-12.1,0.013000000000000001,0.138,0.29,0.499,0.187,2017-18 9891,Zach Randolph,SAC,36.0,205.74,113.398,Michigan State,USA,2001,1,19,59,14.5,6.7,2.2,-12.2,0.063,0.215,0.27,0.529,0.146,2017-18 9892,Wesley Matthews,DAL,31.0,195.58,99.79024,Marquette,USA,Undrafted,Undrafted,Undrafted,63,12.7,3.1,2.7,-7.2,0.013000000000000001,0.085,0.17300000000000001,0.541,0.125,2017-18 9893,Tyreke Evans,MEM,28.0,198.12,99.79024,Memphis,USA,2009,1,4,52,19.4,5.1,5.2,0.1,0.027000000000000003,0.13699999999999998,0.27699999999999997,0.561,0.304,2017-18 9894,Tyler Zeller,MIL,28.0,213.36,113.398,North Carolina,USA,2012,1,17,66,6.7,4.6,0.7,0.8,0.094,0.168,0.157,0.598,0.063,2017-18 9895,Tyler Ulis,PHX,22.0,177.8,72.57472,Kentucky,USA,2016,2,34,71,7.8,1.8,4.4,-8.6,0.013999999999999999,0.061,0.184,0.465,0.282,2017-18 9896,Tim Frazier,WAS,27.0,185.42,77.11064,None,USA,Undrafted,Undrafted,Undrafted,59,3.0,1.9,3.3,-5.5,0.021,0.121,0.125,0.475,0.327,2017-18 9897,Tim Hardaway Jr.,NYK,26.0,198.12,92.98635999999999,Michigan,USA,2013,1,24,57,17.5,3.9,2.7,-1.9,0.016,0.099,0.22899999999999998,0.5329999999999999,0.12300000000000001,2017-18 9898,Tim Quarterman,HOU,23.0,198.12,86.18248,Louisiana State,USA,Undrafted,Undrafted,Undrafted,3,1.3,1.0,0.3,-36.9,0.0,0.188,0.16699999999999998,0.515,0.25,2017-18 9899,Timofey Mozgov,BKN,31.0,215.9,124.7378,None,Russia,Undrafted,Undrafted,Undrafted,31,4.2,3.2,0.4,-12.8,0.083,0.17800000000000002,0.161,0.617,0.05,2017-18 9900,Timothe Luwawu-Cabarrot,PHI,23.0,198.12,90.7184,None,France,2016,1,24,52,5.8,1.4,1.0,-0.1,0.017,0.064,0.168,0.511,0.098,2017-18 9901,Tobias Harris,LAC,25.0,205.74,106.59411999999999,Tennessee,USA,2011,1,19,80,18.6,5.5,2.4,-2.3,0.021,0.145,0.22699999999999998,0.565,0.115,2017-18 9902,Tomas Satoransky,WAS,26.0,200.66,95.25432,None,Czech Republic,2012,2,32,73,7.2,3.2,3.9,1.5,0.045,0.099,0.134,0.615,0.24600000000000002,2017-18 9903,Tony Allen,NOP,36.0,193.04,96.615096,Oklahoma State,USA,2004,1,25,22,4.7,2.1,0.4,-2.0,0.07400000000000001,0.091,0.18100000000000002,0.514,0.051,2017-18 9904,Tony Bradley,UTA,20.0,208.28,112.490816,North Carolina,USA,2017,1,28,9,0.9,1.2,0.1,-2.9,0.105,0.25,0.158,0.337,0.055999999999999994,2017-18 9905,Tony Parker,SAS,36.0,187.96,83.91452,None,France,2001,1,28,55,7.7,1.7,3.5,-1.2,0.006999999999999999,0.083,0.201,0.498,0.282,2017-18 9906,Tony Snell,MIL,26.0,200.66,100.243832, ,USA,2013,1,20,75,6.9,1.9,1.3,-0.9,0.005,0.066,0.105,0.578,0.064,2017-18 9907,Torrey Craig,DEN,27.0,198.12,97.52228000000001,South Carolina Upstate,USA,Undrafted,Undrafted,Undrafted,39,4.2,3.3,0.6,-2.9,0.064,0.134,0.11599999999999999,0.535,0.054000000000000006,2017-18 9908,Travis Wear,LAL,27.0,208.28,102.0582,UCLA,USA,Undrafted,Undrafted,Undrafted,17,4.4,2.2,0.4,2.1,0.0,0.163,0.152,0.49700000000000005,0.045,2017-18 9909,Treveon Graham,CHA,24.0,195.58,99.336648,Va Commonwealth,USA,Undrafted,Undrafted,Undrafted,63,4.3,1.9,0.9,-4.6,0.036000000000000004,0.079,0.11199999999999999,0.5529999999999999,0.08199999999999999,2017-18 9910,Trevor Ariza,HOU,33.0,203.2,97.52228000000001,UCLA,USA,2004,2,43,67,11.7,4.4,1.6,8.3,0.013999999999999999,0.11599999999999999,0.141,0.5670000000000001,0.066,2017-18 9911,Trevor Booker,IND,30.0,203.2,103.418976,Clemson,USA,2010,1,23,68,6.3,4.7,1.2,-0.7,0.09699999999999999,0.172,0.159,0.557,0.106,2017-18 9912,Trey Burke,NYK,25.0,185.42,86.636072,Michigan,USA,2013,1,9,36,12.8,2.0,4.7,-4.2,0.017,0.07400000000000001,0.249,0.563,0.32899999999999996,2017-18 9913,Trey Lyles,DEN,22.0,208.28,106.140528,Kentucky,USA,2015,1,12,73,9.9,4.8,1.2,-0.2,0.039,0.215,0.205,0.591,0.105,2017-18 9914,Trey McKinney-Jones,IND,27.0,195.58,99.79024,Miami (FL),USA,Undrafted,Undrafted,Undrafted,1,0.0,0.0,0.0,-33.3,0.0,0.0,0.0,0.0,0.0,2017-18 9915,Tristan Thompson,CLE,27.0,205.74,107.95489599999999,Texas,Canada,2011,1,4,53,5.8,6.6,0.6,-5.5,0.113,0.21,0.121,0.569,0.043,2017-18 9916,Troy Daniels,PHX,26.0,193.04,92.98635999999999,Va Commonwealth,USA,Undrafted,Undrafted,Undrafted,79,8.9,1.6,0.6,-12.2,0.006999999999999999,0.069,0.168,0.583,0.047,2017-18 9917,Troy Williams,NYK,23.0,200.66,98.88305600000001,Indiana,USA,Undrafted,Undrafted,Undrafted,21,6.3,3.0,0.8,-3.9,0.071,0.13699999999999998,0.192,0.544,0.071,2017-18 9918,Tyler Cavanaugh,ATL,24.0,205.74,107.95489599999999,George Washington,USA,Undrafted,Undrafted,Undrafted,39,4.7,3.3,0.7,-2.1,0.081,0.171,0.139,0.5670000000000001,0.076,2017-18 9919,Tyler Dorsey,ATL,22.0,195.58,83.007336,Oregon,USA,2017,2,41,56,7.2,2.3,1.4,-7.1,0.016,0.11199999999999999,0.193,0.494,0.128,2017-18 9920,Tyler Ennis,LAL,23.0,190.5,87.996848,Syracuse,Canada,2014,1,18,54,4.1,1.8,1.9,-1.7,0.026000000000000002,0.10099999999999999,0.16899999999999998,0.473,0.23399999999999999,2017-18 9921,Tyler Johnson,MIA,26.0,193.04,86.18248,Fresno State,USA,Undrafted,Undrafted,Undrafted,72,11.7,3.4,2.3,1.0,0.016,0.105,0.18,0.5489999999999999,0.12300000000000001,2017-18 9922,Tyler Lydon,DEN,22.0,205.74,99.79024,Syracuse,USA,2017,1,24,1,0.0,0.0,0.0,-150.0,0.0,0.0,0.0,0.0,0.0,2017-18 9923,Thomas Bryant,LAL,20.0,208.28,112.490816,Indiana,USA,2017,2,42,15,1.5,1.1,0.4,-5.9,0.040999999999999995,0.19699999999999998,0.161,0.441,0.128,2017-18 9924,Brice Johnson,LAC,24.0,208.28,104.32616,North Carolina,USA,2016,1,25,18,2.4,1.7,0.1,-2.3,0.08,0.22699999999999998,0.193,0.486,0.03,2017-18 9925,Paul Millsap,DEN,33.0,203.2,111.58363200000001,Louisiana Tech,USA,2006,2,47,38,14.6,6.4,2.8,3.9,0.057999999999999996,0.153,0.217,0.5489999999999999,0.139,2017-18 9926,Pau Gasol,SAS,37.0,213.36,113.398,None,Spain,2001,1,3,77,10.1,8.0,3.1,1.0,0.069,0.256,0.201,0.539,0.20800000000000002,2017-18 9927,Lou Williams,LAC,31.0,185.42,79.3786,None,USA,2005,2,45,79,22.6,2.5,5.3,1.6,0.015,0.059000000000000004,0.285,0.574,0.254,2017-18 9928,Luc Mbah a Moute,HOU,31.0,203.2,104.32616,California-Los Angeles,Cameroon,2008,2,37,61,7.5,3.0,0.9,9.7,0.015,0.102,0.128,0.595,0.052000000000000005,2017-18 9929,Lucas Nogueira,TOR,25.0,213.36,99.79024,None,Brazil,2013,1,16,49,2.5,1.8,0.4,9.3,0.044000000000000004,0.16,0.114,0.6609999999999999,0.07400000000000001,2017-18 9930,Luis Montero,DET,25.0,200.66,90.7184,Westchester CC NY,Dominican Republic,Undrafted,Undrafted,Undrafted,2,0.0,1.0,0.0,-29.4,0.0,0.222,0.16699999999999998,0.0,0.0,2017-18 9931,Luke Babbitt,MIA,29.0,205.74,102.0582,Nevada-Reno,USA,2010,1,16,50,5.2,1.9,0.6,-2.7,0.01,0.12300000000000001,0.147,0.5760000000000001,0.064,2017-18 9932,Luke Kennard,DET,22.0,195.58,90.7184,Duke,USA,2017,1,12,73,7.6,2.4,1.7,3.9,0.013999999999999999,0.10400000000000001,0.16899999999999998,0.56,0.127,2017-18 9933,Luke Kornet,NYK,22.0,215.9,113.398,Vanderbilt,USA,Undrafted,Undrafted,Undrafted,20,6.7,3.2,1.3,-9.3,0.032,0.158,0.18899999999999997,0.516,0.114,2017-18 9934,Luol Deng,LAL,33.0,205.74,99.79024,Duke,United Kingdom,2004,1,7,1,2.0,0.0,1.0,-20.3,0.0,0.0,0.091,0.5,0.111,2017-18 9935,Malachi Richardson,TOR,22.0,198.12,92.98635999999999,Syracuse,USA,2016,1,22,26,3.4,1.3,0.5,-7.8,0.015,0.09699999999999999,0.149,0.446,0.057999999999999996,2017-18 9936,Malcolm Brogdon,MIL,25.0,195.58,97.52228000000001,Virginia,USA,2016,2,36,48,13.0,3.3,3.2,-2.1,0.017,0.09699999999999999,0.18899999999999997,0.578,0.165,2017-18 9937,Malcolm Delaney,ATL,29.0,190.5,86.18248,Virginia Tech,USA,Undrafted,Undrafted,Undrafted,54,6.3,1.9,3.0,-4.5,0.009000000000000001,0.09,0.166,0.519,0.244,2017-18 9938,Malcolm Miller,TOR,25.0,200.66,95.25432,Holy Cross,USA,Undrafted,Undrafted,Undrafted,15,2.5,1.0,0.2,2.7,0.031,0.09,0.114,0.638,0.034,2017-18 9939,Lorenzo Brown,TOR,27.0,195.58,85.728888,North Carolina State,USA,2013,2,52,14,2.3,1.1,0.9,14.3,0.008,0.09699999999999999,0.12300000000000001,0.45899999999999996,0.125,2017-18 9940,Malik Beasley,DEN,21.0,195.58,88.904032,Florida State,USA,2016,1,19,62,3.2,1.1,0.5,-1.0,0.023,0.095,0.151,0.509,0.077,2017-18 9941,Mangok Mathiang,CHA,25.0,208.28,104.32616,Louisville,Australia,Undrafted,Undrafted,Undrafted,4,2.0,2.5,0.0,0.1,0.136,0.33299999999999996,0.13699999999999998,0.5379999999999999,0.0,2017-18 9942,Manu Ginobili,SAS,40.0,198.12,92.98635999999999,None,Argentina,1999,2,57,65,8.9,2.2,2.5,2.1,0.015,0.09300000000000001,0.205,0.5529999999999999,0.193,2017-18 9943,MarShon Brooks,MEM,29.0,195.58,90.7184,Providence,USA,2011,1,25,7,20.1,3.0,3.6,-0.4,0.039,0.077,0.271,0.629,0.205,2017-18 9944,Marc Gasol,MEM,33.0,215.9,115.66596000000001,None,Spain,2007,2,48,73,17.2,8.1,4.2,-6.9,0.033,0.225,0.255,0.532,0.225,2017-18 9945,Marcin Gortat,WAS,34.0,210.82,108.86208,None,Poland,2005,2,57,82,8.4,7.6,1.8,2.1,0.08900000000000001,0.213,0.153,0.546,0.10300000000000001,2017-18 9946,Marco Belinelli,PHI,32.0,195.58,95.25432,None,Italy,2007,1,18,80,12.1,1.9,1.9,-1.4,0.01,0.066,0.19699999999999998,0.581,0.115,2017-18 9947,Marcus Georges-Hunt,MIN,24.0,195.58,102.511792,Georgia Tech,USA,Undrafted,Undrafted,Undrafted,42,1.4,0.4,0.2,-4.4,0.03,0.043,0.111,0.515,0.045,2017-18 9948,Marcus Morris Sr.,BOS,28.0,205.74,106.59411999999999,Kansas,USA,2011,1,14,54,13.6,5.4,1.3,0.7,0.028999999999999998,0.166,0.222,0.541,0.08199999999999999,2017-18 9949,Marcus Paige,CHA,24.0,182.88,74.389088,North Carolina,USA,2016,2,55,5,2.4,0.8,0.6,15.9,0.0,0.16699999999999998,0.22399999999999998,0.40299999999999997,0.14300000000000002,2017-18 9950,Marcus Smart,BOS,24.0,193.04,99.79024,Oklahoma State,USA,2014,1,6,54,10.2,3.5,4.8,6.2,0.026000000000000002,0.085,0.187,0.479,0.23399999999999999,2017-18 9951,Mario Chalmers,MEM,32.0,187.96,86.18248,Kansas,USA,2008,2,34,66,7.7,2.4,3.0,-2.5,0.009000000000000001,0.10400000000000001,0.18600000000000003,0.503,0.214,2017-18 9952,Mario Hezonja,ORL,23.0,203.2,98.88305600000001,None,Croatia,2015,1,5,75,9.6,3.7,1.4,-6.0,0.024,0.14400000000000002,0.19699999999999998,0.544,0.10099999999999999,2017-18 9953,Malik Monk,CHA,20.0,190.5,90.7184,Kentucky,USA,2017,1,11,63,6.7,1.0,1.4,-11.8,0.008,0.069,0.24100000000000002,0.47700000000000004,0.17800000000000002,2017-18 9954,Lonzo Ball,LAL,20.0,198.12,86.18248,UCLA,USA,2017,1,2,52,10.2,6.9,7.2,-0.6,0.036000000000000004,0.153,0.16899999999999998,0.444,0.28800000000000003,2017-18 9955,London Perrantes,SAS,23.0,187.96,86.18248,Virginia,USA,Undrafted,Undrafted,Undrafted,14,0.5,0.3,0.4,-16.0,0.015,0.064,0.10099999999999999,0.23,0.102,2017-18 9956,LeBron James,CLE,33.0,203.2,113.398,None,USA,2003,1,1,82,27.5,8.6,9.1,1.6,0.033,0.201,0.31,0.621,0.43200000000000005,2017-18 9957,Kent Bazemore,ATL,28.0,195.58,91.171992,Old Dominion,USA,Undrafted,Undrafted,Undrafted,65,12.9,3.8,3.5,-4.5,0.013999999999999999,0.124,0.221,0.547,0.19899999999999998,2017-18 9958,Kentavious Caldwell-Pope,LAL,25.0,195.58,92.98635999999999,Georgia,USA,2013,1,8,74,13.4,5.2,2.2,-0.9,0.023,0.127,0.165,0.561,0.09300000000000001,2017-18 9959,Kevin Durant,GSW,29.0,205.74,108.86208,Texas,USA,2007,1,2,68,26.4,6.8,5.4,7.0,0.015,0.16899999999999998,0.293,0.64,0.243,2017-18 9960,Kevin Love,CLE,29.0,208.28,113.851592,UCLA,USA,2008,1,5,59,17.6,9.3,1.7,1.4,0.065,0.27399999999999997,0.248,0.614,0.099,2017-18 9961,Kevon Looney,GSW,22.0,205.74,99.79024,UCLA,USA,2015,1,30,66,4.0,3.3,0.6,6.1,0.094,0.135,0.121,0.588,0.062,2017-18 9962,Khem Birch,ORL,25.0,205.74,99.79024,UNLV,Canada,Undrafted,Undrafted,Undrafted,42,4.2,4.3,0.8,0.8,0.114,0.191,0.131,0.5820000000000001,0.08800000000000001,2017-18 9963,Khris Middleton,MIL,26.0,203.2,106.140528,Texas A&M,USA,2012,2,39,82,20.1,5.2,4.0,1.6,0.016,0.133,0.239,0.5770000000000001,0.172,2017-18 9964,Klay Thompson,GSW,28.0,200.66,97.52228000000001,Washington State,USA,2011,1,11,73,20.0,3.8,2.5,7.1,0.013999999999999999,0.08900000000000001,0.23199999999999998,0.599,0.10800000000000001,2017-18 9965,Kobi Simmons,MEM,20.0,193.04,77.11064,Arizona,USA,Undrafted,Undrafted,Undrafted,32,6.1,1.6,2.1,-17.0,0.021,0.062,0.163,0.49,0.157,2017-18 9966,Kosta Koufos,SAC,29.0,213.36,120.20188,Ohio State,USA,2008,1,23,71,6.7,6.6,1.2,-8.0,0.1,0.23600000000000002,0.15,0.5660000000000001,0.1,2017-18 9967,Kris Dunn,CHI,24.0,193.04,95.25432,Providence,USA,2016,1,5,52,13.4,4.3,6.0,-8.0,0.015,0.131,0.245,0.488,0.319,2017-18 9968,Kristaps Porzingis,NYK,22.0,220.98,108.86208,None,Latvia,2015,1,4,48,22.7,6.6,1.2,0.4,0.039,0.154,0.305,0.539,0.063,2017-18 9969,Kyle Anderson,SAS,24.0,205.74,104.32616,UCLA,USA,2014,1,30,74,7.9,5.4,2.7,3.3,0.043,0.158,0.133,0.5820000000000001,0.146,2017-18 9970,Kyle Collinsworth,DAL,26.0,198.12,95.25432,Brigham Young,USA,Undrafted,Undrafted,Undrafted,32,3.2,3.3,1.8,-2.1,0.06,0.162,0.124,0.433,0.163,2017-18 9971,Kyle Korver,CLE,37.0,200.66,96.16150400000001,Creighton,USA,2003,2,51,73,9.2,2.3,1.2,7.8,0.006,0.09300000000000001,0.154,0.652,0.079,2017-18 9972,Kyle Kuzma,LAL,22.0,205.74,99.79024,Utah,USA,2017,1,27,77,16.1,6.3,1.8,-2.2,0.035,0.154,0.21899999999999997,0.5489999999999999,0.091,2017-18 9973,Kyle Lowry,TOR,32.0,182.88,92.98635999999999,Villanova,USA,2006,1,24,78,16.2,5.6,6.9,7.6,0.026000000000000002,0.142,0.21100000000000002,0.598,0.307,2017-18 9974,Kyle O'Quinn,NYK,28.0,208.28,113.398,Norfolk State,USA,2012,2,49,77,7.1,6.1,2.1,-1.1,0.09,0.242,0.168,0.625,0.166,2017-18 9975,Kyle Singler,OKC,30.0,203.2,103.418976,Duke,USA,2011,2,33,12,1.9,0.8,0.2,0.7,0.016,0.14300000000000002,0.21899999999999997,0.43,0.057,2017-18 9976,Kyrie Irving,BOS,26.0,190.5,87.543256,Duke,Australia,2011,1,1,60,24.4,3.8,5.1,5.6,0.017,0.096,0.298,0.61,0.282,2017-18 9977,LaMarcus Aldridge,SAS,32.0,210.82,117.93392,Texas,USA,2006,1,2,75,23.1,8.5,2.0,5.4,0.098,0.156,0.28800000000000003,0.57,0.111,2017-18 9978,Lance Stephenson,IND,27.0,198.12,104.32616,Cincinnati,USA,2010,2,40,82,9.2,5.2,2.9,-3.2,0.033,0.203,0.20800000000000002,0.495,0.18600000000000003,2017-18 9979,Lance Thomas,NYK,30.0,203.2,106.59411999999999,Duke,USA,Undrafted,Undrafted,Undrafted,73,4.1,2.4,0.6,-5.9,0.033,0.098,0.106,0.513,0.044000000000000004,2017-18 9980,Langston Galloway,DET,26.0,187.96,90.7184,None,USA,Undrafted,Undrafted,Undrafted,58,6.2,1.6,1.0,4.2,0.013999999999999999,0.08900000000000001,0.188,0.503,0.105,2017-18 9981,Larry Drew II,NOP,28.0,187.96,81.64656,UCLA,USA,Undrafted,Undrafted,Undrafted,10,1.7,0.3,1.0,-9.1,0.045,0.0,0.17,0.354,0.196,2017-18 9982,Larry Nance Jr.,CLE,25.0,205.74,104.32616,Wyoming,USA,2015,1,27,66,8.7,6.8,1.2,1.0,0.107,0.19899999999999998,0.155,0.605,0.085,2017-18 9983,Lauri Markkanen,CHI,21.0,213.36,104.32616,Arizona,Finland,2017,1,7,68,15.2,7.5,1.2,-9.0,0.037000000000000005,0.217,0.215,0.552,0.064,2017-18 9984,Markel Brown,HOU,26.0,190.5,86.18248,Oklahoma State,USA,2014,2,44,4,1.3,1.3,0.5,-25.1,0.028999999999999998,0.10800000000000001,0.132,0.35700000000000004,0.105,2017-18 9985,Paul George,OKC,28.0,205.74,99.79024,Fresno State,USA,2010,1,10,79,21.9,5.7,3.3,3.7,0.023,0.132,0.248,0.57,0.14300000000000002,2017-18 9986,Markelle Fultz,PHI,20.0,193.04,90.7184,Washington,USA,2017,1,1,14,7.1,3.1,3.8,4.8,0.039,0.105,0.218,0.41600000000000004,0.294,2017-18 9987,Marquese Chriss,PHX,20.0,208.28,108.86208,Washington,USA,2016,1,8,72,7.7,5.5,1.2,-8.4,0.046,0.2,0.17600000000000002,0.509,0.081,2017-18 9988,Nerlens Noel,DAL,24.0,210.82,99.79024,Kentucky,USA,2013,1,6,30,4.4,5.6,0.7,-12.3,0.092,0.273,0.131,0.5579999999999999,0.07,2017-18 9989,Nick Collison,OKC,37.0,208.28,115.66596000000001,Kansas,USA,2003,1,12,15,2.1,1.3,0.3,-3.2,0.086,0.17600000000000002,0.18100000000000002,0.627,0.087,2017-18 9990,Nick Young,GSW,33.0,200.66,95.25432,USC,USA,2007,1,16,80,7.3,1.6,0.5,0.8,0.015,0.071,0.16899999999999998,0.562,0.038,2017-18 9991,Nicolas Batum,CHA,29.0,203.2,90.7184,None,France,2008,1,25,64,11.6,4.8,5.5,-0.4,0.027999999999999997,0.124,0.17800000000000002,0.523,0.255,2017-18 9992,Nicolas Brussino,ATL,25.0,203.2,88.45044,None,Argentina,Undrafted,Undrafted,Undrafted,4,0.0,0.8,0.0,88.6,0.0,0.2,0.083,0.0,0.0,2017-18 9993,Nigel Hayes,SAC,23.0,200.66,115.212368,Wisconsin,USA,Undrafted,Undrafted,Undrafted,9,3.0,2.4,0.7,3.8,0.03,0.145,0.131,0.39299999999999996,0.077,2017-18 9994,Nik Stauskas,BKN,24.0,198.12,92.98635999999999,Michigan,Canada,2014,1,8,41,4.4,1.6,1.0,-4.6,0.006999999999999999,0.107,0.159,0.5429999999999999,0.115,2017-18 9995,Nikola Jokic,DEN,23.0,208.28,113.398,None,Serbia,2014,2,41,75,18.5,10.7,6.1,6.2,0.081,0.254,0.23800000000000002,0.603,0.28600000000000003,2017-18 9996,Nikola Mirotic,NOP,27.0,208.28,107.95489599999999,None,Montenegro,2011,1,23,55,15.6,7.4,1.5,4.2,0.038,0.213,0.223,0.5770000000000001,0.079,2017-18 9997,Nikola Vucevic,ORL,27.0,213.36,117.93392,USC,Montenegro,2011,1,16,57,16.5,9.2,3.4,-1.3,0.059000000000000004,0.249,0.252,0.5329999999999999,0.184,2017-18 9998,Noah Vonleh,CHI,22.0,205.74,111.13004,Indiana,USA,2014,1,9,54,4.9,5.8,0.6,-2.1,0.07400000000000001,0.265,0.142,0.509,0.059000000000000004,2017-18 9999,Norman Powell,TOR,25.0,193.04,97.52228000000001,UCLA,USA,2015,2,46,70,5.5,1.7,1.3,-1.9,0.013000000000000001,0.1,0.185,0.49200000000000005,0.122,2017-18 10000,Nene,HOU,35.0,210.82,113.398,None,Brazil,2002,1,7,52,6.5,3.4,0.9,17.1,0.07400000000000001,0.156,0.183,0.594,0.09300000000000001,2017-18 10001,OG Anunoby,TOR,20.0,203.2,106.59411999999999,Indiana,United Kingdom,2017,1,23,74,5.9,2.5,0.7,10.0,0.03,0.09,0.121,0.5870000000000001,0.049,2017-18 10002,Omari Johnson,MEM,29.0,205.74,99.79024,Oregon State,Jamaica,Undrafted,Undrafted,Undrafted,4,5.5,2.8,1.8,10.5,0.06,0.10300000000000001,0.139,0.524,0.106,2017-18 10003,Omer Asik,CHI,31.0,213.36,115.66596000000001,None,Turkey,2008,2,36,18,1.2,2.6,0.2,-6.4,0.054000000000000006,0.20800000000000002,0.09,0.397,0.02,2017-18 10004,Omri Casspi,GSW,30.0,205.74,102.0582,None,Israel,2009,1,23,53,5.7,3.8,1.0,3.2,0.044000000000000004,0.205,0.157,0.632,0.099,2017-18 10005,Otto Porter Jr.,WAS,25.0,203.2,89.811216,Georgetown,USA,2013,1,3,77,14.7,6.4,2.0,5.1,0.044000000000000004,0.161,0.182,0.602,0.096,2017-18 10006,P.J. Tucker,HOU,33.0,198.12,111.13004,Texas,USA,2006,2,35,82,6.1,5.6,0.9,11.4,0.040999999999999995,0.16,0.10300000000000001,0.537,0.047,2017-18 10007,PJ Dozier,OKC,21.0,198.12,92.98635999999999,South Carolina,USA,Undrafted,Undrafted,Undrafted,2,1.0,0.5,0.0,-33.3,0.0,0.2,0.429,0.5,0.0,2017-18 10008,Pascal Siakam,TOR,24.0,205.74,104.32616,New Mexico State,Cameroon,2016,1,27,81,7.3,4.5,2.0,8.9,0.048,0.168,0.154,0.5489999999999999,0.133,2017-18 10009,Pat Connaughton,POR,25.0,195.58,95.25432,Notre Dame,USA,2015,2,41,82,5.4,2.0,1.1,4.3,0.023,0.08,0.128,0.539,0.085,2017-18 10010,Patrick Beverley,LAC,29.0,185.42,83.91452,None,USA,2009,2,42,11,12.2,4.1,2.9,6.0,0.047,0.092,0.198,0.53,0.15,2017-18 10011,Patrick McCaw,GSW,22.0,200.66,83.91452,UNLV,USA,2016,2,38,57,4.0,1.4,1.4,-3.5,0.017,0.065,0.125,0.47700000000000004,0.113,2017-18 10012,Patrick Patterson,OKC,29.0,205.74,104.32616,Kentucky,USA,2010,1,14,82,3.9,2.4,0.7,-3.1,0.024,0.128,0.11199999999999999,0.555,0.068,2017-18 10013,Patty Mills,SAS,29.0,182.88,83.91452,St. Mary's (CA),Australia,2009,2,55,82,10.0,1.9,2.8,2.6,0.012,0.061,0.172,0.5579999999999999,0.158,2017-18 10014,Okaro White,CLE,25.0,203.2,97.52228000000001,Florida State,USA,Undrafted,Undrafted,Undrafted,6,3.3,1.8,0.3,0.6,0.040999999999999995,0.099,0.10099999999999999,0.5770000000000001,0.034,2017-18 10015,Nemanja Bjelica,MIN,30.0,208.28,104.32616,None,Serbia,2010,2,35,67,6.8,4.1,1.3,0.0,0.039,0.16399999999999998,0.139,0.581,0.08800000000000001,2017-18 10016,Naz Mitrou-Long,UTA,24.0,193.04,98.88305600000001,Iowa State,Canada,Undrafted,Undrafted,Undrafted,1,3.0,0.0,0.0,250.0,0.0,0.0,0.5,1.5,0.0,2017-18 10017,Nate Wolters,UTA,27.0,193.04,86.18248,South Dakota State,USA,2013,2,38,5,0.4,0.4,0.2,-0.5,0.045,0.055999999999999994,0.125,0.16699999999999998,0.077,2017-18 10018,Marquis Teague,MEM,25.0,187.96,85.728888,Kentucky,USA,2012,1,29,3,3.7,2.0,4.3,-19.7,0.012,0.07200000000000001,0.121,0.302,0.24100000000000002,2017-18 10019,Marreese Speights,ORL,30.0,208.28,115.66596000000001,Florida,USA,2008,1,16,52,7.7,2.6,0.8,1.6,0.03,0.152,0.265,0.539,0.10400000000000001,2017-18 10020,Marshall Plumlee,MIL,25.0,213.36,113.398,Duke,USA,Undrafted,Undrafted,Undrafted,8,1.8,2.1,0.3,1.5,0.07400000000000001,0.245,0.111,0.6970000000000001,0.063,2017-18 10021,Marvin Williams,CHA,32.0,205.74,107.501304,North Carolina,USA,2005,1,2,78,9.5,4.7,1.2,1.6,0.036000000000000004,0.14,0.145,0.603,0.069,2017-18 10022,Mason Plumlee,DEN,28.0,210.82,115.66596000000001,Duke,USA,2013,1,22,74,7.1,5.4,1.9,-0.7,0.092,0.182,0.161,0.586,0.145,2017-18 10023,Matt Costello,SAS,24.0,208.28,108.86208,Michigan State,USA,Undrafted,Undrafted,Undrafted,4,1.0,2.3,0.5,26.6,0.04,0.276,0.071,0.5,0.071,2017-18 10024,Matt Williams Jr.,MIA,24.0,195.58,95.25432,Central Florida,USA,Undrafted,Undrafted,Undrafted,3,1.7,0.3,0.0,66.7,0.0,0.083,0.28,0.41700000000000004,0.0,2017-18 10025,Matthew Dellavedova,MIL,27.0,193.04,89.811216,St. Mary's (CA),Australia,Undrafted,Undrafted,Undrafted,38,4.3,1.7,3.8,-5.5,0.021,0.075,0.134,0.5,0.29600000000000004,2017-18 10026,Maurice Harkless,POR,25.0,205.74,99.79024,"St. John's, N.Y.",USA,2012,1,15,59,6.5,2.7,0.9,-0.2,0.036000000000000004,0.09,0.12300000000000001,0.596,0.061,2017-18 10027,Maxi Kleber,DAL,26.0,210.82,99.79024,None,Germany,Undrafted,Undrafted,Undrafted,72,5.4,3.3,0.7,-3.6,0.055,0.13699999999999998,0.135,0.5760000000000001,0.066,2017-18 10028,Meyers Leonard,POR,26.0,215.9,115.66596000000001,Illinois,USA,2012,1,11,33,3.4,2.1,0.5,-8.8,0.047,0.251,0.155,0.6759999999999999,0.11,2017-18 10029,Michael Beasley,NYK,29.0,205.74,106.59411999999999,Kansas State,USA,2008,1,2,74,13.2,5.6,1.7,-4.0,0.057,0.191,0.261,0.556,0.122,2017-18 10030,Michael Carter-Williams,CHA,26.0,198.12,86.18248,Syracuse,USA,2013,1,11,52,4.6,2.7,2.2,-3.5,0.04,0.131,0.166,0.446,0.214,2017-18 10031,Michael Kidd-Gilchrist,CHA,24.0,200.66,105.23334399999999,Kentucky,USA,2012,1,2,74,9.2,4.1,1.0,1.8,0.044000000000000004,0.115,0.159,0.536,0.057,2017-18 10032,Mike Conley,MEM,30.0,185.42,79.3786,Ohio State,USA,2007,1,4,12,17.1,2.3,4.1,-2.6,0.0,0.07,0.26,0.52,0.23399999999999999,2017-18 10033,Mike James,PHX,27.0,185.42,88.45044,Lamar,USA,Undrafted,Undrafted,Undrafted,36,9.3,2.5,3.5,-2.6,0.017,0.10400000000000001,0.237,0.469,0.27899999999999997,2017-18 10034,Mike Muscala,ATL,26.0,210.82,108.86208,Bucknell,USA,2013,2,44,53,7.6,4.3,1.0,-4.4,0.049,0.152,0.149,0.597,0.07400000000000001,2017-18 10035,Mike Scott,WAS,29.0,203.2,107.501304,Virginia,USA,2012,2,43,76,8.8,3.3,1.1,-2.0,0.036000000000000004,0.141,0.19399999999999998,0.599,0.09300000000000001,2017-18 10036,Miles Plumlee,ATL,29.0,210.82,112.94440800000001,Duke,USA,2012,1,26,55,4.3,4.1,0.8,-7.3,0.08199999999999999,0.16,0.127,0.574,0.07400000000000001,2017-18 10037,Milos Teodosic,LAC,31.0,195.58,88.904032,None,Serbia,Undrafted,Undrafted,Undrafted,45,9.5,2.8,4.6,2.4,0.013999999999999999,0.09,0.17800000000000002,0.564,0.252,2017-18 10038,Milton Doyle,BKN,24.0,193.04,81.64656,Loyola (IL),USA,Undrafted,Undrafted,Undrafted,10,3.4,1.8,1.0,-5.3,0.021,0.125,0.17300000000000001,0.337,0.122,2017-18 10039,Mindaugas Kuzminskas,NYK,28.0,205.74,97.52228000000001,None,Lithuania,Undrafted,Undrafted,Undrafted,1,0.0,0.0,0.0,0.0,0.0,0.0,0.5,0.0,0.0,2017-18 10040,Mirza Teletovic,MIL,32.0,205.74,109.769264,None,Bosnia and Herzegovina,Undrafted,Undrafted,Undrafted,10,7.1,2.3,1.0,-10.4,0.021,0.128,0.183,0.623,0.10300000000000001,2017-18 10041,Monte Morris,DEN,23.0,190.5,79.3786,Iowa State,USA,2017,2,51,3,3.3,0.7,2.3,-14.8,0.0,0.08,0.136,0.727,0.368,2017-18 10042,Montrezl Harrell,LAC,24.0,203.2,108.86208,Louisville,USA,2015,2,32,76,11.0,4.0,1.0,2.1,0.081,0.146,0.22699999999999998,0.647,0.09300000000000001,2017-18 10043,Myke Henry,MEM,25.0,198.12,95.25432,None,USA,Undrafted,Undrafted,Undrafted,20,5.4,1.9,1.1,-4.1,0.026000000000000002,0.081,0.14800000000000002,0.47200000000000003,0.083,2017-18 10044,Myles Turner,IND,22.0,210.82,115.66596000000001,Texas,USA,2015,1,11,65,12.7,6.4,1.3,3.0,0.052000000000000005,0.174,0.19899999999999998,0.5670000000000001,0.071,2017-18 10045,Markieff Morris,WAS,28.0,208.28,111.13004,Kansas,USA,2011,1,13,73,11.5,5.6,1.9,0.7,0.04,0.17300000000000001,0.19399999999999998,0.5660000000000001,0.107,2017-18 10046,Zaza Pachulia,GSW,34.0,210.82,122.46983999999999,None,Georgia,2003,2,42,69,5.4,4.7,1.6,9.4,0.1,0.223,0.165,0.612,0.141,2017-18 10047,Zhou Qi,HOU,22.0,215.9,95.25432,None,China,2016,2,43,18,1.2,1.2,0.1,-26.1,0.042,0.11599999999999999,0.163,0.295,0.027999999999999997,2017-18 10048,Alex Caruso,LAL,24.0,195.58,84.368112,Texas A&M,USA,Undrafted,Undrafted,Undrafted,37,3.6,1.8,2.0,-0.3,0.026000000000000002,0.086,0.128,0.519,0.185,2017-18 10049,Andrew Harrison,MEM,23.0,198.12,96.615096,Kentucky,USA,2015,2,44,56,9.5,2.3,3.2,-7.3,0.017,0.085,0.195,0.534,0.222,2017-18 10050,Andrew Bogut,LAL,33.0,213.36,117.93392,Utah,Australia,2005,1,1,24,1.5,3.3,0.6,-5.1,0.10400000000000001,0.223,0.085,0.696,0.099,2017-18 10051,Andre Roberson,OKC,26.0,200.66,95.25432,Colorado,USA,2013,1,26,39,5.0,4.7,1.2,9.4,0.068,0.109,0.085,0.5429999999999999,0.059000000000000004,2017-18 10052,Andre Iguodala,GSW,34.0,198.12,97.52228000000001,Arizona,USA,2004,1,9,64,6.0,3.8,3.3,7.9,0.033,0.109,0.11199999999999999,0.536,0.16899999999999998,2017-18 10053,Andre Drummond,DET,24.0,210.82,126.552168,Connecticut,USA,2012,1,9,78,15.0,16.0,3.0,-1.0,0.145,0.32899999999999996,0.207,0.555,0.14,2017-18 10054,Amir Johnson,PHI,31.0,205.74,108.86208,None,USA,2005,2,56,74,4.6,4.5,1.6,1.5,0.102,0.16899999999999998,0.125,0.575,0.13699999999999998,2017-18 10055,Allen Crabbe,BKN,26.0,198.12,97.52228000000001,California,USA,2013,2,31,75,13.2,4.3,1.6,-1.9,0.012,0.13,0.183,0.5579999999999999,0.08199999999999999,2017-18 10056,Alfonzo McKinnie,TOR,25.0,203.2,97.52228000000001,None,USA,Undrafted,Undrafted,Undrafted,14,1.5,0.5,0.1,-12.3,0.022000000000000002,0.098,0.158,0.643,0.027000000000000003,2017-18 10057,Alex Poythress,IND,24.0,205.74,106.59411999999999,Kentucky,USA,Undrafted,Undrafted,Undrafted,25,1.0,0.7,0.1,-13.0,0.061,0.102,0.11199999999999999,0.5,0.026000000000000002,2017-18 10058,Alex Len,PHX,25.0,215.9,113.398,Maryland,Ukraine,2013,1,5,69,8.5,7.5,1.2,-8.6,0.11599999999999999,0.228,0.16399999999999998,0.612,0.09300000000000001,2017-18 10059,Alex Abrines,OKC,24.0,198.12,86.18248,None,Spain,2013,2,32,75,4.7,1.5,0.4,1.2,0.021,0.079,0.126,0.5670000000000001,0.036000000000000004,2017-18 10060,Alec Peters,PHX,23.0,205.74,106.59411999999999,Valparaiso,USA,2017,2,54,20,4.1,1.9,0.6,7.3,0.032,0.12,0.151,0.523,0.073,2017-18 10061,Alec Burks,UTA,26.0,198.12,97.068688,Colorado,USA,2011,1,12,64,7.7,3.0,1.0,-1.0,0.019,0.168,0.221,0.527,0.10400000000000001,2017-18 10062,Alan Williams,PHX,25.0,203.2,120.20188,Cal-Santa Barbara,USA,Undrafted,Undrafted,Undrafted,5,4.0,4.4,1.6,0.1,0.039,0.26,0.184,0.455,0.195,2017-18 10063,Al-Farouq Aminu,POR,27.0,205.74,99.79024,Wake Forest,USA,2010,1,8,69,9.3,7.6,1.2,5.2,0.045,0.198,0.145,0.522,0.055999999999999994,2017-18 10064,Al Jefferson,IND,33.0,208.28,127.00576000000001,None,USA,2004,1,15,36,7.0,4.0,0.8,-1.8,0.061,0.22699999999999998,0.218,0.563,0.098,2017-18 10065,Al Horford,BOS,32.0,208.28,111.13004,Florida,Dominican Republic,2007,1,3,72,12.9,7.4,4.7,7.3,0.047,0.17800000000000002,0.183,0.575,0.225,2017-18 10066,Adreian Payne,ORL,27.0,208.28,107.501304,Michigan State,USA,2014,1,15,5,4.2,1.8,0.0,-12.4,0.044000000000000004,0.226,0.155,0.831,0.0,2017-18 10067,Abdel Nader,BOS,24.0,198.12,104.32616,Iowa State,Egypt,2016,2,58,48,3.0,1.5,0.5,-10.3,0.024,0.111,0.162,0.439,0.078,2017-18 10068,Aaron Jackson,HOU,32.0,190.5,83.007336,None,USA,Undrafted,Undrafted,Undrafted,1,8.0,3.0,1.0,-19.8,0.055999999999999994,0.031,0.149,0.405,0.053,2017-18 10069,Aaron Harrison,DAL,23.0,198.12,95.25432,Kentucky,USA,Undrafted,Undrafted,Undrafted,9,6.7,2.7,1.2,-14.1,0.015,0.091,0.147,0.392,0.07200000000000001,2017-18 10070,Aaron Gordon,ORL,22.0,205.74,99.79024,Arizona,USA,2014,1,4,58,17.6,7.9,2.3,-2.0,0.044000000000000004,0.191,0.23800000000000002,0.53,0.111,2017-18 10071,Aaron Brooks,MIN,33.0,182.88,73.028312,Oregon,USA,2007,1,26,32,2.3,0.5,0.6,-17.2,0.036000000000000004,0.057,0.192,0.508,0.161,2017-18 10072,Andrew White III,ATL,25.0,200.66,95.25432,Syracuse,USA,Undrafted,Undrafted,Undrafted,15,4.6,2.3,0.4,-18.6,0.016,0.133,0.16,0.461,0.05,2017-18 10073,Andrew Wiggins,MIN,23.0,203.2,91.625584,Kansas,Canada,2014,1,1,82,17.7,4.4,2.0,3.5,0.027999999999999997,0.094,0.228,0.505,0.08,2017-18 10074,Andre Ingram,LAL,32.0,190.5,86.18248,American University,USA,Undrafted,Undrafted,Undrafted,2,12.0,3.0,3.5,14.1,0.016,0.07200000000000001,0.136,0.655,0.149,2017-18 10075,Anthony Brown,MIN,25.0,200.66,101.604608,Stanford,USA,2015,2,34,1,3.0,0.0,1.0,30.0,0.0,0.0,0.1,1.5,0.33299999999999996,2017-18 10076,Brandon Paul,SAS,27.0,193.04,90.7184,None,USA,Undrafted,Undrafted,Undrafted,64,2.3,1.1,0.6,0.3,0.011000000000000001,0.109,0.131,0.504,0.096,2017-18 10077,Brandon Jennings,MIL,28.0,185.42,77.11064,None,USA,2009,1,10,14,5.2,2.2,3.1,-13.1,0.022000000000000002,0.131,0.191,0.478,0.331,2017-18 10078,Brandon Ingram,LAL,20.0,205.74,86.18248,Duke,USA,2016,1,2,59,16.1,5.3,3.9,-2.7,0.027000000000000003,0.121,0.218,0.536,0.177,2017-18 10079,Brandan Wright,MEM,30.0,208.28,106.59411999999999,North Carolina,USA,2007,1,8,28,5.0,3.4,0.5,5.3,0.086,0.161,0.14,0.596,0.055999999999999994,2017-18 10080,Bradley Beal,WAS,25.0,195.58,93.89354399999999,Florida,USA,2012,1,3,82,22.6,4.4,4.5,2.4,0.021,0.10099999999999999,0.268,0.564,0.20600000000000002,2017-18 10081,Bojan Bogdanovic,IND,29.0,203.2,104.32616,None,Croatia,2011,2,31,80,14.3,3.4,1.5,1.5,0.012,0.09699999999999999,0.185,0.605,0.071,2017-18 10082,Bogdan Bogdanovic,SAC,25.0,198.12,92.98635999999999,None,Serbia,2014,1,27,78,11.8,2.9,3.3,-8.6,0.013999999999999999,0.094,0.192,0.556,0.183,2017-18 10083,Ante Zizic,CLE,21.0,210.82,113.398,None,Croatia,2016,1,23,32,3.7,1.9,0.2,-9.1,0.11199999999999999,0.179,0.171,0.746,0.039,2017-18 10084,Bobby Brown,HOU,33.0,187.96,79.3786,Cal State-Fullerton,USA,Undrafted,Undrafted,Undrafted,20,2.5,0.4,0.6,-24.5,0.0,0.061,0.252,0.425,0.19,2017-18 10085,Boban Marjanovic,LAC,29.0,220.98,131.54168,None,Serbia,Undrafted,Undrafted,Undrafted,39,6.0,3.7,0.6,6.3,0.151,0.27399999999999997,0.276,0.616,0.1,2017-18 10086,Blake Griffin,DET,29.0,208.28,113.851592,Oklahoma,USA,2009,1,1,58,21.4,7.4,5.8,1.9,0.036000000000000004,0.175,0.285,0.544,0.28600000000000003,2017-18 10087,Bismack Biyombo,ORL,25.0,205.74,115.66596000000001,None,Democratic Republic of the Congo,2011,1,7,82,5.7,5.7,0.8,-13.6,0.091,0.209,0.146,0.556,0.07,2017-18 10088,Ben Simmons,PHI,21.0,208.28,104.32616,Louisiana State,Australia,2016,1,1,81,15.8,8.1,8.2,6.6,0.053,0.171,0.21899999999999997,0.557,0.36200000000000004,2017-18 10089,Bobby Portis,CHI,23.0,210.82,112.490816,Arkansas,USA,2015,1,22,73,13.2,6.8,1.7,-2.1,0.08900000000000001,0.207,0.25,0.5479999999999999,0.126,2017-18 10090,Ben Moore,IND,23.0,203.2,99.79024,Southern Methodist,USA,Undrafted,Undrafted,Undrafted,2,0.0,0.5,0.5,-79.8,0.0,0.16699999999999998,0.0,0.0,0.111,2017-18 10091,Anthony Tolliver,DET,33.0,203.2,108.86208,Creighton,USA,Undrafted,Undrafted,Undrafted,79,8.9,3.1,1.1,0.9,0.027000000000000003,0.109,0.14400000000000002,0.6629999999999999,0.076,2017-18 10092,Antonio Blakeney,CHI,21.0,193.04,89.357624,Louisiana State,USA,Undrafted,Undrafted,Undrafted,19,7.9,1.7,1.1,-1.3,0.011000000000000001,0.08900000000000001,0.22699999999999998,0.47100000000000003,0.096,2017-18 10093,Antonius Cleveland,ATL,24.0,198.12,88.45044,S.E. Missouri,USA,Undrafted,Undrafted,Undrafted,17,1.4,0.8,0.1,-13.9,0.022000000000000002,0.085,0.107,0.486,0.025,2017-18 10094,Aron Baynes,BOS,31.0,208.28,117.93392,Washington State,Australia,Undrafted,Undrafted,Undrafted,81,6.0,5.4,1.1,6.5,0.086,0.196,0.166,0.502,0.095,2017-18 10095,Anthony Davis,NOP,25.0,208.28,114.758776,Kentucky,USA,2012,1,1,75,28.1,11.1,2.3,5.0,0.07,0.213,0.29100000000000004,0.612,0.10400000000000001,2017-18 10096,Austin Rivers,LAC,25.0,193.04,90.7184,Duke,USA,2012,1,10,61,15.1,2.4,4.0,-1.7,0.013000000000000001,0.057999999999999996,0.20600000000000002,0.526,0.179,2017-18 10097,Avery Bradley,LAC,27.0,187.96,81.64656,Texas,USA,2010,1,19,46,14.3,2.5,2.0,-4.2,0.013999999999999999,0.068,0.22899999999999998,0.496,0.105,2017-18 10098,Bam Adebayo,MIA,20.0,208.28,115.66596000000001,Kentucky,USA,2017,1,14,69,6.9,5.5,1.5,-0.6,0.086,0.19399999999999998,0.157,0.57,0.115,2017-18 10099,Ben McLemore,MEM,25.0,195.58,88.45044,Kansas,USA,2013,1,7,56,7.5,2.5,0.9,-13.5,0.03,0.10099999999999999,0.182,0.526,0.078,2017-18 10100,Arron Afflalo,ORL,32.0,195.58,95.25432,UCLA,USA,2007,1,27,53,3.4,1.2,0.6,-6.8,0.006,0.08199999999999999,0.127,0.516,0.066,2017-18 10101,Mike Conley,MEM,31.0,185.42,79.3786,Ohio State,USA,2007,1,4,70,21.1,3.4,6.4,0.7,0.017,0.08800000000000001,0.262,0.569,0.327,2018-19 10102,Mike Muscala,LAL,27.0,210.82,108.86208,Bucknell,USA,2013,2,44,64,7.0,3.8,1.2,1.0,0.040999999999999995,0.133,0.138,0.564,0.081,2018-19 10103,Mike Scott,PHI,30.0,203.2,107.501304,Virginia,USA,2012,2,43,79,5.8,3.5,0.8,1.8,0.028999999999999998,0.147,0.139,0.528,0.064,2018-19 10104,Miles Bridges,CHA,21.0,200.66,102.0582,Michigan State,USA,2018,1,12,80,7.5,4.0,1.2,-3.7,0.037000000000000005,0.14800000000000002,0.147,0.5479999999999999,0.081,2018-19 10105,Miles Plumlee,ATL,30.0,210.82,112.94440800000001,Duke,USA,2012,1,26,18,4.4,2.2,0.9,-10.2,0.085,0.141,0.166,0.654,0.155,2018-19 10106,Mitchell Robinson,NYK,21.0,215.9,108.86208,None,USA,2018,2,36,66,7.3,6.4,0.6,-6.2,0.122,0.166,0.11900000000000001,0.6920000000000001,0.042,2018-19 10107,Mitchell Creek,MIN,27.0,198.12,102.0582,None,Australia,Undrafted,Undrafted,Undrafted,5,4.2,2.4,1.2,8.9,0.109,0.105,0.16899999999999998,0.55,0.188,2018-19 10108,Mo Bamba,ORL,21.0,213.36,100.243832,University of Texas at Austin,USA,2018,1,6,47,6.2,5.0,0.8,-14.9,0.07400000000000001,0.213,0.174,0.539,0.086,2018-19 10109,Monte Morris,DEN,24.0,190.5,79.3786,Iowa State,USA,2017,2,51,82,10.4,2.4,3.6,4.3,0.017,0.078,0.168,0.5770000000000001,0.221,2018-19 10110,Montrezl Harrell,LAC,25.0,203.2,108.86208,Louisville,USA,2015,2,32,82,16.6,6.5,2.0,1.9,0.085,0.146,0.22699999999999998,0.636,0.12300000000000001,2018-19 10111,Mikal Bridges,PHX,22.0,200.66,95.25432,Villanova,USA,2018,1,10,82,8.3,3.2,2.1,-6.8,0.023,0.085,0.11900000000000001,0.556,0.09699999999999999,2018-19 10112,Milos Teodosic,LAC,32.0,195.58,88.904032,None,Serbia,Undrafted,Undrafted,Undrafted,15,3.2,1.1,2.1,5.4,0.021,0.084,0.171,0.557,0.26,2018-19 10113,Michael Kidd-Gilchrist,CHA,25.0,200.66,105.23334399999999,Kentucky,USA,2012,1,2,64,6.7,3.8,1.0,-0.9,0.069,0.129,0.153,0.5529999999999999,0.077,2018-19 10114,Dante Cunningham,SAS,32.0,203.2,104.32616,Villanova,USA,2009,2,33,64,3.0,2.9,0.8,-8.2,0.049,0.14800000000000002,0.086,0.585,0.07200000000000001,2018-19 10115,Michael Beasley,LAL,30.0,205.74,106.59411999999999,Kansas State,USA,2008,1,2,26,7.0,2.3,1.0,-6.0,0.044000000000000004,0.153,0.28800000000000003,0.532,0.149,2018-19 10116,Meyers Leonard,POR,27.0,215.9,115.66596000000001,Illinois,USA,2012,1,11,61,5.9,3.8,1.2,-3.7,0.055,0.20600000000000002,0.149,0.675,0.12300000000000001,2018-19 10117,Melvin Frazier Jr.,ORL,22.0,198.12,90.7184,Tulane,USA,2018,2,35,10,1.5,0.5,0.1,-13.5,0.053,0.045,0.205,0.33,0.032,2018-19 10118,Maxi Kleber,DAL,27.0,210.82,108.86208,None,Germany,Undrafted,Undrafted,Undrafted,71,6.8,4.6,1.0,2.7,0.057,0.149,0.132,0.579,0.068,2018-19 10119,Maurice Harkless,POR,26.0,205.74,99.79024,"St. John's, N.Y.",USA,2012,1,15,60,7.7,4.5,1.2,7.9,0.052000000000000005,0.128,0.135,0.547,0.068,2018-19 10120,Matthew Dellavedova,CLE,28.0,193.04,90.7184,St. Mary's (CA),Australia,Undrafted,Undrafted,Undrafted,48,5.9,1.6,3.8,-3.8,0.006999999999999999,0.081,0.17300000000000001,0.532,0.32899999999999996,2018-19 10121,Mason Plumlee,DEN,29.0,210.82,106.59411999999999,Duke,USA,2013,1,22,82,7.8,6.4,3.0,3.2,0.091,0.198,0.159,0.602,0.19899999999999998,2018-19 10122,Marvin Williams,CHA,33.0,205.74,107.501304,North Carolina,USA,2005,1,2,75,10.1,5.4,1.2,-0.4,0.033,0.152,0.147,0.5479999999999999,0.061,2018-19 10123,Marvin Bagley III,SAC,20.0,210.82,106.140528,Duke,USA,2018,1,2,62,14.9,7.6,1.0,-3.2,0.092,0.18,0.237,0.562,0.06,2018-19 10124,Marquese Chriss,CLE,21.0,208.28,108.86208,Washington,USA,2016,1,8,43,4.2,3.3,0.5,-17.3,0.07200000000000001,0.21600000000000003,0.196,0.455,0.069,2018-19 10125,Markieff Morris,OKC,29.0,208.28,111.13004,Kansas,USA,2011,1,13,58,9.4,4.6,1.4,-5.9,0.045,0.161,0.191,0.521,0.092,2018-19 10126,Moritz Wagner,LAL,22.0,210.82,111.13004,Michigan,Germany,2018,1,25,43,4.8,2.0,0.6,-9.8,0.035,0.142,0.21,0.5329999999999999,0.084,2018-19 10127,Michael Carter-Williams,ORL,27.0,198.12,86.18248,Syracuse,USA,2013,1,11,28,4.8,2.5,2.5,0.2,0.043,0.14300000000000002,0.17600000000000002,0.45799999999999996,0.262,2018-19 10128,Myles Turner,IND,23.0,210.82,113.398,Texas,USA,2015,1,11,74,13.3,7.2,1.6,2.8,0.048,0.195,0.19899999999999998,0.5670000000000001,0.083,2018-19 10129,Paul George,OKC,29.0,205.74,99.79024,Fresno State,USA,2010,1,10,77,28.0,8.2,4.1,8.2,0.033,0.17300000000000001,0.285,0.583,0.17300000000000001,2018-19 10130,Nemanja Bjelica,SAC,31.0,208.28,106.140528,None,Serbia,2010,2,35,77,9.6,5.8,1.9,2.7,0.065,0.171,0.162,0.585,0.107,2018-19 10131,Paul Millsap,DEN,34.0,203.2,111.58363200000001,Louisiana Tech,USA,2006,2,47,70,12.6,7.2,2.0,8.6,0.078,0.182,0.191,0.57,0.10400000000000001,2018-19 10132,Markelle Fultz,ORL,21.0,193.04,90.7184,Washington,USA,2017,1,1,19,8.2,3.7,3.1,-0.4,0.055999999999999994,0.08800000000000001,0.18899999999999997,0.452,0.212,2018-19 10133,Pau Gasol,MIL,38.0,213.36,113.398,None,Spain,2001,1,3,30,3.9,4.6,1.7,-6.2,0.057999999999999996,0.304,0.151,0.529,0.209,2018-19 10134,Patty Mills,SAS,30.0,182.88,81.64656,St. Mary's (CA),Australia,2009,2,55,82,9.9,2.2,3.0,4.5,0.012,0.076,0.175,0.5720000000000001,0.174,2018-19 10135,Patrick Patterson,OKC,30.0,205.74,104.32616,Kentucky,USA,2010,1,14,63,3.6,2.3,0.5,-5.7,0.043,0.114,0.11800000000000001,0.493,0.049,2018-19 10136,Patrick McCaw,TOR,23.0,200.66,83.91452,UNLV,USA,2016,2,38,29,2.6,1.7,1.0,-6.4,0.017,0.105,0.09300000000000001,0.532,0.099,2018-19 10137,Patrick Beverley,LAC,30.0,185.42,83.91452,None,USA,2009,2,42,78,7.6,5.0,3.8,4.0,0.035,0.135,0.12,0.561,0.183,2018-19 10138,Pat Connaughton,MIL,26.0,193.04,94.800728,Notre Dame,USA,2015,2,41,61,6.9,4.2,2.0,5.0,0.046,0.135,0.13,0.573,0.128,2018-19 10139,Pascal Siakam,TOR,25.0,205.74,104.32616,New Mexico State,Cameroon,2016,1,27,80,16.9,6.9,3.1,10.6,0.05,0.154,0.205,0.628,0.141,2018-19 10140,PJ Dozier,BOS,22.0,198.12,92.98635999999999,South Carolina,USA,Undrafted,Undrafted,Undrafted,6,3.2,2.8,0.8,22.5,0.102,0.172,0.17300000000000001,0.434,0.125,2018-19 10141,P.J. Tucker,HOU,34.0,198.12,111.13004,Texas,USA,2006,2,35,82,7.3,5.8,1.2,4.5,0.040999999999999995,0.129,0.094,0.547,0.047,2018-19 10142,Otto Porter Jr.,CHI,26.0,203.2,89.811216,Georgetown,USA,2013,1,3,56,13.9,5.6,2.1,-0.4,0.031,0.153,0.185,0.569,0.1,2018-19 10143,Naz Mitrou-Long,UTA,25.0,193.04,98.88305600000001,Iowa State,Canada,Undrafted,Undrafted,Undrafted,14,1.1,0.4,1.1,-21.2,0.011000000000000001,0.057,0.139,0.38299999999999995,0.25,2018-19 10144,Omri Casspi,MEM,31.0,205.74,102.0582,None,Israel,2009,1,23,36,6.3,3.2,0.7,1.1,0.033,0.184,0.17,0.606,0.077,2018-19 10145,Okaro White,WAS,26.0,203.2,92.98635999999999,Florida State,USA,Undrafted,Undrafted,Undrafted,3,0.0,0.7,0.0,-26.2,0.091,0.14300000000000002,0.105,0.0,0.0,2018-19 10146,OG Anunoby,TOR,21.0,203.2,105.23334399999999,Indiana,United Kingdom,2017,1,23,67,7.0,2.9,0.7,-1.7,0.04,0.1,0.14800000000000002,0.544,0.05,2018-19 10147,Norman Powell,TOR,26.0,193.04,97.52228000000001,UCLA,USA,2015,2,46,60,8.6,2.3,1.5,0.2,0.013000000000000001,0.102,0.182,0.596,0.11900000000000001,2018-19 10148,Noah Vonleh,NYK,23.0,205.74,113.398,Indiana,USA,2014,1,9,68,8.4,7.8,1.9,-7.6,0.06,0.23399999999999999,0.14400000000000002,0.561,0.10800000000000001,2018-19 10149,Nikola Vucevic,ORL,28.0,213.36,117.93392,USC,Montenegro,2011,1,16,80,20.8,12.0,3.8,4.0,0.08800000000000001,0.28600000000000003,0.276,0.573,0.20800000000000002,2018-19 10150,Nikola Mirotic,MIL,28.0,208.28,113.398,None,Montenegro,2011,1,23,46,15.2,7.4,1.2,3.7,0.045,0.198,0.20600000000000002,0.584,0.061,2018-19 10151,Nikola Jokic,DEN,24.0,213.36,113.398,None,Serbia,2014,2,41,80,20.1,10.8,7.3,5.8,0.08900000000000001,0.249,0.271,0.589,0.361,2018-19 10152,Nik Stauskas,CLE,25.0,198.12,92.98635999999999,Michigan,Canada,2014,1,8,68,5.9,1.9,1.2,-12.9,0.016,0.10400000000000001,0.171,0.545,0.12300000000000001,2018-19 10153,Nicolas Batum,CHA,30.0,203.2,90.7184,None,France,2008,1,25,75,9.3,5.2,3.3,-0.5,0.027999999999999997,0.131,0.129,0.581,0.145,2018-19 10154,Nick Young,DEN,34.0,200.66,95.25432,USC,USA,2007,1,16,4,2.3,0.3,0.5,-5.1,0.0,0.026000000000000002,0.126,0.5,0.077,2018-19 10155,Nerlens Noel,OKC,25.0,210.82,99.79024,Kentucky,USA,2013,1,6,77,4.9,4.2,0.6,-2.6,0.105,0.17600000000000002,0.13699999999999998,0.608,0.067,2018-19 10156,Nene,HOU,36.0,210.82,113.398,None,Brazil,2002,1,7,42,3.6,2.9,0.6,9.2,0.057999999999999996,0.152,0.114,0.552,0.07,2018-19 10157,Omari Spellman,ATL,21.0,205.74,111.13004,Villanova,USA,2018,1,30,46,5.9,4.2,1.0,-10.3,0.08,0.14400000000000002,0.146,0.516,0.085,2018-19 10158,Mario Hezonja,NYK,24.0,203.2,102.0582,None,Croatia,2015,1,5,58,8.8,4.1,1.5,-10.0,0.021,0.168,0.20800000000000002,0.49700000000000005,0.11599999999999999,2018-19 10159,Lance Thomas,NYK,31.0,203.2,108.86208,Duke,USA,Undrafted,Undrafted,Undrafted,46,4.5,2.5,0.6,-10.9,0.023,0.115,0.127,0.48200000000000004,0.051,2018-19 10160,Marcus Morris Sr.,BOS,29.0,205.74,106.59411999999999,Kansas,USA,2011,1,14,75,13.9,6.1,1.5,1.4,0.035,0.17600000000000002,0.203,0.568,0.073,2018-19 10161,Kyle Kuzma,LAL,23.0,205.74,99.79024,Utah,USA,2017,1,27,70,18.7,5.5,2.5,-1.3,0.025,0.127,0.233,0.546,0.113,2018-19 10162,Kyle Korver,UTA,38.0,200.66,96.16150400000001,Creighton,USA,2003,2,51,70,8.6,2.3,1.2,3.6,0.006,0.105,0.174,0.5820000000000001,0.08800000000000001,2018-19 10163,Kyle Anderson,MEM,25.0,205.74,104.32616,UCLA,USA,2014,1,30,43,8.0,5.8,3.0,-2.1,0.038,0.161,0.127,0.569,0.155,2018-19 10164,Kris Dunn,CHI,25.0,193.04,92.98635999999999,Providence,USA,2016,1,5,46,11.3,4.1,6.0,-7.6,0.013000000000000001,0.11900000000000001,0.198,0.484,0.29,2018-19 10165,Kostas Antetokounmpo,DAL,21.0,208.28,90.7184,University of Dayton,Greece,2018,2,60,2,1.0,0.5,0.0,17.6,0.0,0.111,0.24,0.21,0.0,2018-19 10166,Kosta Koufos,SAC,30.0,213.36,111.13004,Ohio State,USA,2008,1,23,42,3.7,4.2,0.9,-1.3,0.08800000000000001,0.22899999999999998,0.15,0.47700000000000004,0.099,2018-19 10167,Kobi Simmons,CLE,21.0,193.04,77.11064,Arizona,USA,Undrafted,Undrafted,Undrafted,1,0.0,0.0,0.0,66.7,0.0,0.0,0.0,0.0,0.0,2018-19 10168,Klay Thompson,GSW,29.0,200.66,97.52228000000001,Washington State,USA,2011,1,11,78,21.5,3.8,2.4,6.5,0.015,0.08900000000000001,0.254,0.5710000000000001,0.10300000000000001,2018-19 10169,Khyri Thomas,DET,23.0,190.5,95.25432,Creighton,USA,2018,2,38,26,2.3,0.8,0.3,-8.0,0.017,0.08199999999999999,0.158,0.413,0.067,2018-19 10170,Khris Middleton,MIL,27.0,203.2,100.697424,Texas A&M,USA,2012,2,39,77,18.3,6.0,4.3,10.5,0.021,0.149,0.24600000000000002,0.5579999999999999,0.19399999999999998,2018-19 10171,Khem Birch,ORL,26.0,205.74,105.68693600000002,UNLV,Canada,Undrafted,Undrafted,Undrafted,50,4.8,3.8,0.8,3.2,0.11199999999999999,0.166,0.136,0.64,0.087,2018-19 10172,Kevon Looney,GSW,23.0,205.74,99.79024,UCLA,USA,2015,1,30,80,6.3,5.2,1.5,10.3,0.126,0.133,0.122,0.636,0.106,2018-19 10173,Kyle Lowry,TOR,33.0,185.42,88.904032,Villanova,USA,2006,1,24,65,14.2,4.8,8.7,10.7,0.019,0.114,0.191,0.562,0.32899999999999996,2018-19 10174,Kevin Love,CLE,30.0,208.28,113.851592,UCLA,USA,2008,1,5,22,17.0,10.9,2.2,-4.2,0.051,0.344,0.259,0.561,0.125,2018-19 10175,Kevin Huerter,ATL,20.0,200.66,86.18248,Maryland,USA,2018,1,19,75,9.7,3.3,2.9,-2.2,0.027000000000000003,0.087,0.153,0.5329999999999999,0.139,2018-19 10176,Kevin Durant,GSW,30.0,205.74,108.86208,Texas,USA,2007,1,2,78,26.0,6.4,5.9,11.4,0.013000000000000001,0.153,0.28300000000000003,0.631,0.251,2018-19 10177,Kentavious Caldwell-Pope,LAL,26.0,195.58,92.98635999999999,Georgia,USA,2013,1,8,82,11.4,2.9,1.3,-3.7,0.022000000000000002,0.08800000000000001,0.175,0.568,0.077,2018-19 10178,Kent Bazemore,ATL,29.0,195.58,91.171992,Old Dominion,USA,Undrafted,Undrafted,Undrafted,67,11.6,3.9,2.3,-7.7,0.02,0.126,0.215,0.507,0.14400000000000002,2018-19 10179,Kenrich Williams,NOP,24.0,200.66,95.25432,None,USA,Undrafted,Undrafted,Undrafted,46,6.1,4.8,1.8,-3.8,0.046,0.145,0.11900000000000001,0.485,0.094,2018-19 10180,Kenneth Faried,HOU,29.0,203.2,99.79024,Morehead State,USA,2011,1,22,37,10.4,6.8,0.5,4.0,0.12300000000000001,0.21,0.19399999999999998,0.622,0.043,2018-19 10181,Kemba Walker,CHA,29.0,185.42,83.46092800000001,Connecticut,USA,2011,1,9,82,25.6,4.4,5.9,0.4,0.017,0.106,0.308,0.5579999999999999,0.287,2018-19 10182,Kelly Oubre Jr.,PHX,23.0,200.66,92.98635999999999,Kansas,USA,2015,1,15,69,15.2,4.7,1.2,-6.0,0.035,0.126,0.223,0.551,0.067,2018-19 10183,Kelly Olynyk,MIA,28.0,213.36,108.86208,Gonzaga,Canada,2013,1,13,79,10.0,4.7,1.8,1.9,0.038,0.16,0.175,0.61,0.113,2018-19 10184,Keita Bates-Diop,MIN,23.0,205.74,103.872568,Ohio State,USA,2018,2,48,30,5.0,2.8,0.6,-5.1,0.028999999999999998,0.129,0.14,0.489,0.047,2018-19 10185,Kawhi Leonard,TOR,28.0,200.66,104.32616,San Diego State,USA,2011,1,15,60,26.6,7.3,3.3,7.9,0.039,0.165,0.3,0.606,0.159,2018-19 10186,Karl-Anthony Towns,MIN,23.0,213.36,112.490816,Kentucky,USA,2015,1,1,77,24.4,12.4,3.4,0.9,0.09699999999999999,0.257,0.28,0.622,0.16899999999999998,2018-19 10187,Kevin Knox II,NYK,19.0,205.74,97.52228000000001,Kentucky,USA,2018,1,9,75,12.8,4.5,1.1,-13.6,0.025,0.12,0.21899999999999997,0.475,0.06,2018-19 10188,Marcus Smart,BOS,25.0,193.04,99.79024,Oklahoma State,USA,2014,1,6,80,8.9,2.9,4.0,3.8,0.025,0.077,0.14400000000000002,0.568,0.19,2018-19 10189,Kyle O'Quinn,IND,29.0,208.28,113.398,Norfolk State,USA,2012,2,49,45,3.5,2.6,1.2,-0.3,0.078,0.21600000000000003,0.196,0.537,0.204,2018-19 10190,LaMarcus Aldridge,SAS,33.0,210.82,117.93392,Texas,USA,2006,1,2,81,21.3,9.2,2.4,1.5,0.096,0.18,0.268,0.5760000000000001,0.115,2018-19 10191,Marcus Derrickson,GSW,23.0,200.66,112.94440800000001,None,USA,Undrafted,Undrafted,Undrafted,11,4.2,1.2,0.1,-7.2,0.10400000000000001,0.063,0.235,0.653,0.026000000000000002,2018-19 10192,Marco Belinelli,SAS,33.0,195.58,95.25432,None,Italy,2007,1,18,79,10.5,2.5,1.7,0.8,0.009000000000000001,0.09300000000000001,0.187,0.557,0.102,2018-19 10193,Marcin Gortat,LAC,35.0,210.82,108.86208,None,Poland,2005,2,57,47,5.0,5.6,1.4,-6.5,0.08900000000000001,0.253,0.14800000000000002,0.562,0.12300000000000001,2018-19 10194,Marc Gasol,TOR,34.0,215.9,115.66596000000001,None,Spain,2007,2,48,79,13.6,7.9,4.4,3.5,0.034,0.22699999999999998,0.21,0.546,0.222,2018-19 10195,MarShon Brooks,MEM,30.0,195.58,90.7184,Providence,USA,2011,1,25,29,6.6,1.6,0.9,-2.8,0.03,0.08900000000000001,0.233,0.518,0.11199999999999999,2018-19 10196,Malik Monk,CHA,21.0,190.5,90.7184,Kentucky,USA,2017,1,11,73,8.9,1.9,1.6,-2.7,0.012,0.095,0.23600000000000002,0.518,0.14300000000000002,2018-19 10197,Malik Beasley,DEN,22.0,195.58,88.45044,Florida State,USA,2016,1,19,81,11.3,2.5,1.2,3.9,0.018000000000000002,0.085,0.18100000000000002,0.599,0.07400000000000001,2018-19 10198,Malcolm Miller,TOR,26.0,200.66,95.25432,Holy Cross,USA,Undrafted,Undrafted,Undrafted,10,3.5,0.5,0.1,-4.7,0.015,0.048,0.18,0.63,0.024,2018-19 10199,Malcolm Brogdon,MIL,26.0,195.58,103.872568,Virginia,USA,2016,2,36,64,15.6,4.5,3.2,10.7,0.035,0.107,0.20199999999999999,0.614,0.157,2018-19 10200,Malachi Richardson,TOR,23.0,198.12,92.98635999999999,Syracuse,USA,2016,1,22,22,1.4,0.6,0.0,-4.6,0.016,0.087,0.142,0.48100000000000004,0.0,2018-19 10201,Luol Deng,MIN,34.0,205.74,107.501304,Duke,United Kingdom,2004,1,7,22,7.1,3.3,0.8,10.0,0.049,0.125,0.155,0.588,0.062,2018-19 10202,Luke Kornet,NYK,23.0,215.9,113.398,Vanderbilt,USA,Undrafted,Undrafted,Undrafted,46,7.0,2.9,1.2,-3.5,0.033,0.12300000000000001,0.17800000000000002,0.531,0.10800000000000001,2018-19 10203,Kyrie Irving,BOS,27.0,190.5,87.543256,Duke,Australia,2011,1,1,67,23.8,5.0,6.9,6.2,0.031,0.113,0.28600000000000003,0.5920000000000001,0.33,2018-19 10204,Luke Kennard,DET,23.0,195.58,93.439952,Duke,USA,2017,1,12,63,9.7,2.9,1.8,0.3,0.008,0.121,0.179,0.56,0.122,2018-19 10205,Luc Mbah a Moute,LAC,32.0,203.2,104.32616,California-Los Angeles,Cameroon,2008,2,37,4,5.0,1.8,0.5,7.8,0.034,0.065,0.141,0.495,0.045,2018-19 10206,Lou Williams,LAC,32.0,185.42,79.3786,None,USA,2005,2,45,75,20.0,3.0,5.4,3.9,0.019,0.081,0.308,0.5539999999999999,0.318,2018-19 10207,Lorenzo Brown,TOR,28.0,195.58,85.728888,North Carolina State,USA,2013,2,52,26,2.1,1.2,1.1,-7.0,0.021,0.11,0.16699999999999998,0.38,0.19899999999999998,2018-19 10208,Lonzo Ball,LAL,21.0,198.12,86.18248,UCLA,USA,2017,1,2,47,9.9,5.3,5.4,-0.7,0.036000000000000004,0.124,0.16699999999999998,0.48700000000000004,0.23600000000000002,2018-19 10209,Lonnie Walker IV,SAS,20.0,195.58,92.98635999999999,Miami,USA,2018,1,18,17,2.6,1.0,0.5,-24.3,0.0,0.122,0.196,0.446,0.14300000000000002,2018-19 10210,LeBron James,LAL,34.0,203.2,113.398,None,USA,2003,1,1,55,27.4,8.5,8.3,2.0,0.028999999999999998,0.193,0.311,0.588,0.376,2018-19 10211,Lauri Markkanen,CHI,22.0,213.36,108.86208,Arizona,Finland,2017,1,7,52,18.7,9.0,1.4,-5.5,0.043,0.23399999999999999,0.245,0.5529999999999999,0.07,2018-19 10212,Larry Nance Jr.,CLE,26.0,205.74,104.32616,Wyoming,USA,2015,1,27,67,9.4,8.2,3.2,-8.8,0.09,0.22399999999999998,0.152,0.583,0.179,2018-19 10213,Langston Galloway,DET,27.0,187.96,90.7184,None,USA,Undrafted,Undrafted,Undrafted,80,8.4,2.1,1.1,0.1,0.025,0.07,0.153,0.534,0.07200000000000001,2018-19 10214,Landry Shamet,LAC,22.0,195.58,85.275296,Wichita State,USA,2018,1,26,79,9.1,1.7,1.5,1.7,0.011000000000000001,0.06,0.145,0.604,0.09,2018-19 10215,Quincy Acy,PHX,28.0,200.66,108.86208,Baylor,USA,2012,2,37,10,1.7,2.5,0.8,2.8,0.022000000000000002,0.153,0.08800000000000001,0.379,0.08800000000000001,2018-19 10216,Lance Stephenson,LAL,28.0,198.12,104.32616,Cincinnati,USA,2010,2,40,68,7.2,3.2,2.1,-4.5,0.026000000000000002,0.15,0.19699999999999998,0.529,0.175,2018-19 10217,Luka Doncic,DAL,20.0,200.66,98.88305600000001,None,Slovenia,2018,1,3,72,21.2,7.8,6.0,-3.1,0.036000000000000004,0.198,0.29600000000000004,0.545,0.317,2018-19 10218,Quincy Pondexter,SAS,31.0,200.66,104.32616,Washington,USA,2010,1,26,53,1.8,0.9,0.5,-2.2,0.027999999999999997,0.12300000000000001,0.129,0.6409999999999999,0.121,2018-19 10219,Salah Mejri,DAL,33.0,218.44,106.59411999999999,None,Tunisia,Undrafted,Undrafted,Undrafted,36,3.9,3.6,1.0,-4.4,0.081,0.21600000000000003,0.153,0.5589999999999999,0.13699999999999998,2018-19 10220,RJ Hunter,BOS,25.0,195.58,83.91452,Georgia State,USA,2015,1,28,1,17.0,3.0,3.0,52.8,0.037000000000000005,0.05,0.226,0.612,0.15,2018-19 10221,Tyler Johnson,PHX,27.0,193.04,86.18248,Fresno State,USA,Undrafted,Undrafted,Undrafted,57,10.9,3.0,2.9,-4.0,0.021,0.087,0.18,0.532,0.165,2018-19 10222,Tyler Dorsey,MEM,23.0,195.58,83.007336,Oregon,USA,2017,2,41,48,6.2,2.4,1.2,-2.0,0.036000000000000004,0.11800000000000001,0.182,0.509,0.11800000000000001,2018-19 10223,Tyler Davis,OKC,22.0,208.28,120.655472,None,USA,Undrafted,Undrafted,Undrafted,1,0.0,1.0,0.0,0.0,0.5,0.0,0.33299999999999996,0.0,0.0,2018-19 10224,Tyler Cavanaugh,UTA,25.0,205.74,107.95489599999999,George Washington,USA,Undrafted,Undrafted,Undrafted,11,0.8,0.7,0.1,-40.7,0.065,0.128,0.11800000000000001,0.414,0.043,2018-19 10225,Troy Williams,SAC,24.0,200.66,98.88305600000001,Indiana,USA,Undrafted,Undrafted,Undrafted,21,5.3,2.8,0.5,-9.5,0.034,0.14400000000000002,0.14400000000000002,0.531,0.051,2018-19 10226,Troy Daniels,PHX,27.0,193.04,92.98635999999999,Va Commonwealth,USA,Undrafted,Undrafted,Undrafted,51,6.2,1.4,0.5,-6.4,0.016,0.079,0.171,0.5579999999999999,0.052000000000000005,2018-19 10227,Troy Caupain,ORL,23.0,193.04,95.25432,Cincinnati,USA,Undrafted,Undrafted,Undrafted,4,2.5,0.8,1.0,25.0,0.071,0.154,0.21600000000000003,0.625,0.4,2018-19 10228,Troy Brown Jr.,WAS,19.0,200.66,97.52228000000001,Oregon,USA,2018,1,15,52,4.8,2.8,1.5,-0.3,0.045,0.149,0.158,0.48700000000000004,0.147,2018-19 10229,Tristan Thompson,CLE,28.0,208.28,107.95489599999999,Texas,Canada,2011,1,4,43,10.9,10.2,2.0,-12.3,0.13699999999999998,0.237,0.175,0.551,0.11,2018-19 10230,Trey Lyles,DEN,23.0,208.28,106.140528,Kentucky,USA,2015,1,12,64,8.5,3.8,1.4,0.0,0.036000000000000004,0.172,0.22899999999999998,0.5,0.11599999999999999,2018-19 10231,Trey Burke,DAL,26.0,185.42,79.3786,Michigan,USA,2013,1,9,58,10.9,1.7,2.7,-1.5,0.023,0.059000000000000004,0.242,0.524,0.22899999999999998,2018-19 10232,Trevor Ariza,WAS,33.0,203.2,97.52228000000001,UCLA,USA,2004,2,43,69,12.5,5.4,3.7,-6.8,0.021,0.139,0.16399999999999998,0.534,0.149,2018-19 10233,Trevon Duval,HOU,20.0,187.96,85.728888,None,USA,Undrafted,Undrafted,Undrafted,3,1.7,0.3,0.7,7.7,0.0,0.2,0.231,0.833,0.667,2018-19 10234,Treveon Graham,BKN,25.0,195.58,102.0582,Va Commonwealth,USA,Undrafted,Undrafted,Undrafted,35,5.3,3.1,1.0,2.3,0.027999999999999997,0.107,0.12300000000000001,0.45799999999999996,0.062,2018-19 10235,Trae Young,ATL,20.0,187.96,81.64656,Oklahoma,USA,2018,1,5,81,19.1,3.7,8.1,-6.3,0.024,0.091,0.27699999999999997,0.539,0.39,2018-19 10236,Torrey Craig,DEN,28.0,200.66,97.52228000000001,South Carolina Upstate,USA,Undrafted,Undrafted,Undrafted,75,5.7,3.5,1.0,3.3,0.057,0.11199999999999999,0.121,0.547,0.062,2018-19 10237,Tony Snell,MIL,27.0,200.66,96.615096, ,USA,2013,1,20,74,6.0,2.1,0.9,6.6,0.021,0.086,0.127,0.585,0.069,2018-19 10238,Tony Parker,CHA,37.0,187.96,83.91452,None,France,2001,1,28,56,9.5,1.5,3.7,-0.1,0.013000000000000001,0.067,0.247,0.512,0.331,2018-19 10239,Tony Bradley,UTA,21.0,208.28,112.490816,North Carolina,USA,2017,1,28,3,5.7,5.0,0.3,-18.9,0.196,0.188,0.2,0.504,0.042,2018-19 10240,Tomas Satoransky,WAS,27.0,200.66,95.25432,None,Czech Republic,2012,2,32,80,8.9,3.5,5.0,-0.4,0.036000000000000004,0.09,0.139,0.59,0.248,2018-19 10241,Tobias Harris,PHI,26.0,205.74,106.59411999999999,Tennessee,USA,2011,1,19,82,20.0,7.9,2.8,0.4,0.024,0.188,0.225,0.5920000000000001,0.126,2018-19 10242,Timothe Luwawu-Cabarrot,CHI,24.0,198.12,95.25432,None,France,2016,1,24,50,4.6,1.9,0.5,-14.4,0.015,0.125,0.156,0.489,0.057,2018-19 10243,Tim Hardaway Jr.,DAL,27.0,198.12,92.98635999999999,Michigan,USA,2013,1,24,65,18.1,3.4,2.4,-9.1,0.015,0.09,0.24600000000000002,0.527,0.125,2018-19 10244,Tim Frazier,MIL,28.0,185.42,77.11064,None,USA,Undrafted,Undrafted,Undrafted,59,5.3,2.8,4.2,-2.7,0.035,0.106,0.132,0.544,0.28600000000000003,2018-19 10245,Thon Maker,DET,22.0,215.9,100.243832,None,South Sudan,2016,1,10,64,5.0,3.2,0.7,0.9,0.039,0.149,0.14800000000000002,0.53,0.066,2018-19 10246,Tyler Lydon,DEN,23.0,208.28,102.0582,Syracuse,USA,2017,1,24,25,0.9,0.7,0.2,-8.3,0.062,0.133,0.09699999999999999,0.595,0.087,2018-19 10247,Tyler Ulis,CHI,23.0,177.8,72.57472,Kentucky,USA,2016,2,34,1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2018-19 10248,Tyler Zeller,MEM,29.0,213.36,114.758776,North Carolina,USA,2012,1,17,6,7.7,4.0,0.7,6.7,0.105,0.12300000000000001,0.191,0.607,0.069,2018-19 10249,Tyreke Evans,IND,29.0,198.12,99.79024,Memphis,USA,2009,1,4,69,10.2,2.9,2.4,1.9,0.023,0.114,0.255,0.483,0.17600000000000002,2018-19 10250,Zaza Pachulia,DET,35.0,210.82,122.46983999999999,None,Georgia,2003,2,42,68,3.9,3.9,1.3,-4.6,0.10099999999999999,0.184,0.147,0.539,0.161,2018-19 10251,Zach Lofton,DET,26.0,193.04,81.64656,New Mexico State,USA,Undrafted,Undrafted,Undrafted,1,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.0,0.0,2018-19 10252,Zach LaVine,CHI,24.0,195.58,90.7184,UCLA,USA,2014,1,13,63,23.7,4.7,4.5,-6.5,0.018000000000000002,0.113,0.298,0.574,0.22399999999999998,2018-19 10253,Zach Collins,POR,21.0,213.36,106.59411999999999,Gonzaga,USA,2017,1,10,77,6.6,4.2,0.9,0.1,0.078,0.14400000000000002,0.166,0.562,0.076,2018-19 10254,Yuta Watanabe,MEM,24.0,205.74,92.98635999999999,George Washington,Japan,Undrafted,Undrafted,Undrafted,15,2.6,2.1,0.5,5.5,0.022000000000000002,0.152,0.14800000000000002,0.35200000000000004,0.063,2018-19 10255,Yogi Ferrell,SAC,26.0,182.88,81.64656,Indiana,USA,Undrafted,Undrafted,Undrafted,71,5.9,1.5,1.9,-2.6,0.011000000000000001,0.085,0.16,0.55,0.17600000000000002,2018-19 10256,Yante Maten,MIA,22.0,203.2,108.86208,None,USA,Undrafted,Undrafted,Undrafted,2,1.0,1.5,0.0,14.8,0.071,0.095,0.133,0.25,0.0,2018-19 10257,Wilson Chandler,LAC,32.0,205.74,102.0582,DePaul,USA,2007,1,23,51,6.0,4.2,1.6,4.2,0.040999999999999995,0.132,0.115,0.537,0.08900000000000001,2018-19 10258,Willy Hernangomez,CHA,25.0,210.82,108.86208,None,Spain,2015,2,35,58,7.3,5.4,1.0,-6.2,0.13,0.24,0.20600000000000002,0.5870000000000001,0.11199999999999999,2018-19 10259,Willie Cauley-Stein,SAC,25.0,213.36,108.86208,Kentucky,USA,2015,1,6,81,11.9,8.4,2.4,1.2,0.07400000000000001,0.213,0.17300000000000001,0.5660000000000001,0.121,2018-19 10260,Will Barton,DEN,28.0,198.12,86.18248,Memphis,USA,2012,2,40,43,11.5,4.6,2.9,0.6,0.026000000000000002,0.13699999999999998,0.195,0.501,0.146,2018-19 10261,Wesley Matthews,IND,32.0,195.58,99.79024,Marquette,USA,Undrafted,Undrafted,Undrafted,69,12.2,2.5,2.3,-2.0,0.015,0.063,0.175,0.546,0.113,2018-19 10262,Thomas Welsh,DEN,23.0,213.36,115.66596000000001,UCLA,USA,2018,2,58,11,1.6,0.4,0.5,2.3,0.0,0.114,0.153,0.648,0.2,2018-19 10263,Wesley Johnson,WAS,31.0,200.66,97.52228000000001,Syracuse,USA,2010,1,4,38,3.4,1.9,0.6,-7.3,0.02,0.10400000000000001,0.115,0.469,0.054000000000000006,2018-19 10264,Wendell Carter Jr.,CHI,20.0,208.28,115.66596000000001,Duke,USA,2018,1,7,44,10.3,7.0,1.8,-11.7,0.075,0.198,0.192,0.541,0.11800000000000001,2018-19 10265,Wayne Selden,CHI,24.0,195.58,104.32616,Kansas,USA,Undrafted,Undrafted,Undrafted,75,6.9,2.4,1.5,-9.6,0.024,0.098,0.17800000000000002,0.491,0.11199999999999999,2018-19 10266,Wayne Ellington,DET,31.0,195.58,90.7184,North Carolina,USA,2009,1,28,53,10.3,2.0,1.4,-0.5,0.01,0.073,0.16699999999999998,0.569,0.086,2018-19 10267,Walt Lemon Jr.,CHI,26.0,190.5,81.64656,None,USA,Undrafted,Undrafted,Undrafted,6,14.3,4.5,5.0,-7.8,0.021,0.136,0.253,0.46799999999999997,0.28300000000000003,2018-19 10268,Wade Baldwin IV,POR,23.0,193.04,90.7184,Vanderbilt,USA,2016,1,17,16,1.9,0.9,0.8,-36.8,0.018000000000000002,0.12300000000000001,0.22699999999999998,0.396,0.24,2018-19 10269,Vincent Edwards,HOU,23.0,203.2,102.0582,Purdue,USA,2018,2,52,2,1.5,1.0,0.0,-6.1,0.059000000000000004,0.059000000000000004,0.111,0.375,0.0,2018-19 10270,Vince Carter,ATL,42.0,198.12,99.79024,North Carolina,USA,1998,1,5,76,7.4,2.6,1.1,-6.3,0.021,0.114,0.16399999999999998,0.565,0.09699999999999999,2018-19 10271,Victor Oladipo,IND,27.0,193.04,95.25432,Indiana,USA,2013,1,2,36,18.8,5.6,5.2,5.6,0.018000000000000002,0.154,0.278,0.519,0.25,2018-19 10272,Udonis Haslem,MIA,39.0,203.2,106.59411999999999,Florida,USA,Undrafted,Undrafted,Undrafted,10,2.5,2.7,0.2,-21.3,0.031,0.24,0.196,0.36,0.048,2018-19 10273,Tyus Jones,MIN,23.0,187.96,88.904032,Duke,USA,2015,1,24,68,6.9,2.0,4.8,-0.3,0.013999999999999999,0.069,0.139,0.491,0.284,2018-19 10274,Tyson Chandler,LAL,36.0,215.9,108.86208,None,USA,2001,1,2,55,3.1,5.6,0.7,-1.9,0.094,0.213,0.084,0.63,0.057,2018-19 10275,Tyrone Wallace,LAC,25.0,195.58,89.811216,California,USA,2016,2,60,62,3.5,1.6,0.7,3.7,0.03,0.111,0.174,0.45,0.09,2018-19 10276,Wes Iwundu,ORL,24.0,200.66,88.45044,Kansas State,USA,2017,2,33,68,5.0,2.7,1.1,1.7,0.027000000000000003,0.10800000000000001,0.125,0.531,0.08,2018-19 10277,Thomas Bryant,WAS,21.0,210.82,112.490816,Indiana,USA,2017,2,42,72,10.5,6.3,1.3,-3.6,0.07200000000000001,0.21899999999999997,0.17,0.674,0.09,2018-19 10278,Theo Pinson,BKN,23.0,198.12,98.88305600000001,None,USA,Undrafted,Undrafted,Undrafted,18,4.5,2.0,1.2,-0.6,0.015,0.126,0.191,0.49,0.16699999999999998,2018-19 10279,Thaddeus Young,IND,31.0,203.2,100.243832,Georgia Tech,USA,2007,1,12,81,12.6,6.5,2.5,2.5,0.078,0.132,0.179,0.569,0.12,2018-19 10280,Sam Dekker,WAS,25.0,205.74,104.32616,Wisconsin,USA,2015,1,18,47,6.1,3.1,1.0,-5.3,0.064,0.12300000000000001,0.157,0.519,0.081,2018-19 10281,Kalin Lucas,DET,30.0,185.42,88.45044,Michigan State,USA,Undrafted,Undrafted,Undrafted,1,2.0,3.0,1.0,-25.0,0.0,0.5,0.154,0.532,0.5,2018-19 10282,Ryan Broekhoff,DAL,28.0,200.66,97.52228000000001,None,Australia,Undrafted,Undrafted,Undrafted,42,4.0,1.5,0.5,8.3,0.017,0.113,0.14,0.621,0.069,2018-19 10283,Ryan Arcidiacono,CHI,25.0,190.5,90.7184,Villanova,USA,Undrafted,Undrafted,Undrafted,81,6.7,2.7,3.3,-5.8,0.013000000000000001,0.096,0.11699999999999999,0.588,0.191,2018-19 10284,Ryan Anderson,MIA,31.0,208.28,108.86208,California,USA,2008,1,21,25,2.5,2.2,0.8,-12.8,0.055,0.11199999999999999,0.12,0.414,0.08800000000000001,2018-19 10285,Russell Westbrook,OKC,30.0,190.5,90.7184,UCLA,USA,2008,1,4,73,22.9,11.1,10.7,5.0,0.036000000000000004,0.255,0.301,0.501,0.44,2018-19 10286,Rudy Gobert,UTA,27.0,215.9,111.13004,None,France,2013,1,27,81,15.9,12.9,2.0,6.9,0.11699999999999999,0.27,0.175,0.682,0.095,2018-19 10287,Rudy Gay,SAS,32.0,203.2,104.32616,Connecticut,USA,2006,1,8,69,13.7,6.8,2.6,4.1,0.034,0.209,0.21600000000000003,0.583,0.145,2018-19 10288,Royce O'Neale,UTA,26.0,198.12,102.511792,Baylor,USA,Undrafted,Undrafted,Undrafted,82,5.2,3.5,1.5,4.8,0.013000000000000001,0.146,0.10800000000000001,0.589,0.102,2018-19 10289,Rondae Hollis-Jefferson,BKN,24.0,200.66,98.429464,Arizona,USA,2015,1,23,59,8.9,5.3,1.6,0.7,0.06,0.17,0.21,0.46399999999999997,0.11900000000000001,2018-19 10290,Ron Baker,WAS,26.0,193.04,99.79024,Wichita State,USA,Undrafted,Undrafted,Undrafted,15,0.9,0.7,1.0,-5.2,0.006,0.069,0.075,0.309,0.139,2018-19 10291,Rodney McGruder,LAC,27.0,193.04,90.7184,Kansas State,USA,Undrafted,Undrafted,Undrafted,66,7.6,3.6,1.7,-1.4,0.035,0.106,0.147,0.51,0.10300000000000001,2018-19 10292,Scott Machado,LAL,29.0,185.42,92.98635999999999,Iona,USA,Undrafted,Undrafted,Undrafted,4,2.5,0.0,0.8,0.0,0.0,0.0,0.13,0.7759999999999999,0.214,2018-19 10293,Rodney Hood,POR,26.0,203.2,93.439952,Duke,USA,2014,1,23,72,11.2,2.2,1.8,-7.4,0.012,0.071,0.17800000000000002,0.545,0.10099999999999999,2018-19 10294,Robin Lopez,CHI,31.0,213.36,124.7378,Stanford,USA,2008,1,15,74,9.5,3.9,1.2,-4.4,0.085,0.085,0.183,0.598,0.084,2018-19 10295,Robert Williams III,BOS,21.0,208.28,108.86208,Texas A&M,USA,2018,1,27,32,2.5,2.5,0.2,-5.9,0.086,0.16399999999999998,0.10099999999999999,0.703,0.04,2018-19 10296,Robert Covington,MIN,28.0,205.74,102.0582,Tennessee State,USA,Undrafted,Undrafted,Undrafted,35,13.3,5.5,1.3,2.3,0.022000000000000002,0.127,0.154,0.58,0.055,2018-19 10297,Ricky Rubio,UTA,28.0,193.04,86.18248,None,Spain,2009,1,5,68,12.7,3.6,6.1,6.3,0.017,0.107,0.221,0.52,0.313,2018-19 10298,Richaun Holmes,PHX,25.0,208.28,106.59411999999999,Bowling Green,USA,2015,2,37,70,8.2,4.7,0.9,-5.4,0.095,0.17300000000000001,0.174,0.647,0.08199999999999999,2018-19 10299,Reggie Jackson,DET,29.0,190.5,94.34713599999999,Boston College,USA,2011,1,24,82,15.4,2.6,4.2,0.5,0.019,0.076,0.237,0.547,0.24100000000000002,2018-19 10300,Reggie Bullock,LAL,28.0,200.66,92.98635999999999,North Carolina,USA,2013,1,25,63,11.3,2.7,2.0,-1.3,0.011000000000000001,0.08199999999999999,0.154,0.563,0.096,2018-19 10301,Raymond Felton,OKC,35.0,185.42,92.98635999999999,North Carolina,USA,2005,1,5,33,4.3,1.0,1.6,2.6,0.009000000000000001,0.07400000000000001,0.165,0.505,0.209,2018-19 10302,Ray Spalding,PHX,22.0,208.28,97.52228000000001,Louisville,USA,2018,2,56,14,3.9,3.4,0.4,-6.8,0.091,0.19,0.16399999999999998,0.516,0.052000000000000005,2018-19 10303,Rawle Alkins,CHI,21.0,195.58,102.0582,None,USA,Undrafted,Undrafted,Undrafted,10,3.7,2.6,1.3,-5.5,0.077,0.12,0.17300000000000001,0.418,0.13699999999999998,2018-19 10304,Raul Neto,UTA,27.0,185.42,81.19296800000001,None,Brazil,2013,2,47,37,5.3,1.7,2.5,17.5,0.013999999999999999,0.105,0.184,0.5579999999999999,0.251,2018-19 10305,Rajon Rondo,LAL,33.0,185.42,84.368112,Kentucky,USA,2006,1,21,46,9.2,5.3,8.0,-8.6,0.023,0.142,0.172,0.473,0.36,2018-19 10306,Rodions Kurucs,BKN,21.0,205.74,95.25432,None,Latvia,2018,2,40,63,8.5,3.9,0.8,-0.4,0.04,0.131,0.175,0.545,0.057,2018-19 10307,Quinn Cook,GSW,26.0,187.96,81.19296800000001,Duke,USA,Undrafted,Undrafted,Undrafted,74,6.9,2.1,1.6,-6.3,0.021,0.12300000000000001,0.2,0.565,0.16699999999999998,2018-19 10308,Semi Ojeleye,BOS,24.0,200.66,109.315672,Southern Methodist,USA,2017,2,37,56,3.3,1.5,0.4,6.0,0.038,0.09300000000000001,0.13699999999999998,0.531,0.054000000000000006,2018-19 10309,Seth Curry,POR,28.0,187.96,83.91452,Duke,USA,Undrafted,Undrafted,Undrafted,74,7.9,1.6,0.9,4.3,0.019,0.062,0.16399999999999998,0.595,0.068,2018-19 10310,Thabo Sefolosha,UTA,35.0,200.66,99.79024,None,Switzerland,2006,1,13,50,3.8,2.5,0.5,8.8,0.013999999999999999,0.18100000000000002,0.129,0.599,0.059000000000000004,2018-19 10311,Terry Rozier,BOS,25.0,185.42,86.18248,Louisville,USA,2015,1,16,79,9.0,3.9,2.9,-1.1,0.016,0.145,0.18100000000000002,0.501,0.193,2018-19 10312,Terrence Ross,ORL,28.0,200.66,93.439952,Washington,USA,2012,1,8,81,15.1,3.5,1.7,-0.5,0.012,0.113,0.23,0.561,0.10300000000000001,2018-19 10313,Terrence Jones,HOU,27.0,205.74,114.30518400000001,Kentucky,USA,2012,1,18,2,1.0,2.0,0.0,-95.6,0.0,0.5710000000000001,0.33299999999999996,0.225,0.0,2018-19 10314,Terrance Ferguson,OKC,21.0,200.66,86.18248,None,USA,2017,1,21,74,6.9,1.9,1.0,3.9,0.015,0.055,0.10400000000000001,0.5660000000000001,0.046,2018-19 10315,Taurean Prince,ATL,25.0,203.2,99.79024,Baylor,USA,2016,1,12,55,13.5,3.6,2.1,-6.9,0.013000000000000001,0.11,0.19,0.575,0.107,2018-19 10316,Taj Gibson,MIN,34.0,205.74,105.23334399999999,USC,USA,2009,1,26,70,10.8,6.5,1.2,-2.1,0.095,0.161,0.16699999999999998,0.612,0.07200000000000001,2018-19 10317,Tahjere McCall,BKN,24.0,195.58,86.18248,Tennessee State,USA,Undrafted,Undrafted,Undrafted,1,4.0,1.0,0.0,63.9,0.0,0.2,0.136,0.581,0.0,2018-19 10318,TJ Leaf,IND,22.0,208.28,102.0582,UCLA,USA,2017,1,18,58,3.9,2.2,0.4,3.6,0.077,0.145,0.158,0.5720000000000001,0.063,2018-19 10319,T.J. Warren,PHX,25.0,203.2,97.52228000000001,North Carolina State,USA,2014,1,14,43,18.0,4.0,1.5,-7.7,0.022000000000000002,0.10800000000000001,0.221,0.58,0.073,2018-19 10320,T.J. McConnell,PHI,27.0,187.96,86.18248,Arizona,USA,Undrafted,Undrafted,Undrafted,76,6.4,2.3,3.4,-0.7,0.018000000000000002,0.094,0.14800000000000002,0.555,0.249,2018-19 10321,Svi Mykhailiuk,DET,22.0,203.2,92.98635999999999,Kansas,Ukraine,2018,2,47,42,3.2,0.9,0.9,-0.5,0.019,0.055,0.157,0.447,0.11,2018-19 10322,Serge Ibaka,TOR,29.0,208.28,106.59411999999999,None,Democratic Republic of the Congo,2008,1,24,74,15.0,8.1,1.3,6.2,0.078,0.204,0.22699999999999998,0.5820000000000001,0.076,2018-19 10323,Steven Adams,OKC,25.0,213.36,120.20188,Pittsburgh,New Zealand,2013,1,12,80,13.9,9.5,1.6,6.7,0.129,0.133,0.16,0.591,0.063,2018-19 10324,Stephen Curry,GSW,31.0,190.5,86.18248,Davidson,USA,2009,1,7,69,27.3,5.3,5.2,13.7,0.02,0.122,0.292,0.6409999999999999,0.225,2018-19 10325,Stanley Johnson,NOP,23.0,200.66,111.13004,Arizona,USA,2015,1,8,66,6.9,3.3,1.3,-7.9,0.025,0.142,0.18600000000000003,0.485,0.11800000000000001,2018-19 10326,Spencer Dinwiddie,BKN,26.0,198.12,95.25432,Colorado,USA,2014,2,38,68,16.8,2.4,4.6,-2.7,0.013000000000000001,0.069,0.242,0.58,0.272,2018-19 10327,Solomon Hill,NOP,28.0,200.66,102.0582,Arizona,USA,2013,1,23,44,4.3,3.0,1.3,-6.5,0.036000000000000004,0.102,0.10400000000000001,0.49700000000000005,0.08,2018-19 10328,Skal Labissiere,POR,23.0,210.82,106.59411999999999,Kentucky,Haiti,2016,1,28,22,3.0,2.0,0.5,-8.3,0.051,0.185,0.154,0.593,0.078,2018-19 10329,Sindarius Thornwell,LAC,24.0,195.58,97.52228000000001,South Carolina,USA,2017,2,48,64,1.0,0.7,0.3,-0.8,0.015,0.10800000000000001,0.105,0.485,0.079,2018-19 10330,Shelvin Mack,CHA,29.0,190.5,92.079176,Butler,USA,2011,2,34,57,7.5,1.8,3.2,-9.1,0.013999999999999999,0.069,0.179,0.489,0.24100000000000002,2018-19 10331,Shaun Livingston,GSW,33.0,200.66,87.089664,None,USA,2004,1,4,64,4.0,1.8,1.8,3.2,0.043,0.071,0.11800000000000001,0.555,0.154,2018-19 10332,Shaquille Harrison,CHI,25.0,193.04,86.18248,Tulsa,USA,Undrafted,Undrafted,Undrafted,73,6.5,3.0,1.9,-10.2,0.022000000000000002,0.132,0.16,0.494,0.142,2018-19 10333,Shake Milton,PHI,22.0,198.12,93.89354399999999,Southern Methodist,USA,2018,2,54,20,4.4,1.8,0.9,-1.1,0.031,0.096,0.147,0.483,0.086,2018-19 10334,Shai Gilgeous-Alexander,LAC,20.0,198.12,82.10015200000001,Kentucky,Canada,2018,1,11,82,10.8,2.8,3.3,-2.0,0.026000000000000002,0.078,0.182,0.5539999999999999,0.179,2018-19 10335,Shabazz Napier,BKN,27.0,185.42,81.64656,Connecticut,USA,2014,1,24,56,9.4,1.8,2.6,1.3,0.017,0.079,0.23399999999999999,0.534,0.235,2018-19 10336,Sterling Brown,MIL,24.0,198.12,105.23334399999999,Southern Methodist,USA,2017,2,46,58,6.4,3.2,1.4,0.2,0.026000000000000002,0.13,0.149,0.563,0.115,2018-19 10337,Dante Exum,UTA,23.0,198.12,86.18248,None,Australia,2014,1,5,42,6.9,1.6,2.6,3.2,0.024,0.077,0.207,0.516,0.251,2018-19 10338,Kadeem Allen,NYK,26.0,190.5,90.7184,Arizona,USA,2017,2,53,19,9.9,2.7,4.0,-4.1,0.019,0.1,0.195,0.574,0.27699999999999997,2018-19 10339,Justise Winslow,MIA,23.0,200.66,102.0582,Duke,USA,2015,1,10,66,12.6,5.4,4.3,3.4,0.031,0.141,0.20600000000000002,0.513,0.213,2018-19 10340,Abdel Nader,OKC,25.0,198.12,102.0582,Iowa State,Egypt,2016,2,58,61,4.0,1.9,0.3,-9.5,0.017,0.139,0.14800000000000002,0.522,0.044000000000000004,2018-19 10341,Aaron Holiday,IND,22.0,185.42,83.91452,UCLA,USA,2018,1,23,50,5.9,1.3,1.7,7.0,0.008,0.08800000000000001,0.20600000000000002,0.518,0.18,2018-19 10342,Aaron Gordon,ORL,23.0,205.74,99.79024,Arizona,USA,2014,1,4,78,16.0,7.4,3.7,1.5,0.047,0.165,0.213,0.5379999999999999,0.166,2018-19 10343,Dario Saric,MIN,25.0,208.28,101.151016,None,Croatia,2014,1,12,81,10.6,5.6,1.6,-2.0,0.057999999999999996,0.153,0.172,0.563,0.08900000000000001,2018-19 10344,Darius Miller,NOP,29.0,203.2,102.0582,Kentucky,USA,2012,2,46,69,8.2,1.9,2.1,-0.2,0.006999999999999999,0.059000000000000004,0.131,0.55,0.107,2018-19 10345,Darren Collison,IND,31.0,182.88,79.3786,UCLA,USA,2009,1,21,76,11.2,3.1,6.0,2.2,0.017,0.08900000000000001,0.17600000000000002,0.574,0.302,2018-19 10346,Al Horford,BOS,33.0,208.28,111.13004,Florida,Dominican Republic,2007,1,3,68,13.6,6.7,4.2,6.1,0.062,0.161,0.188,0.605,0.203,2018-19 10347,Daryl Macon,DAL,23.0,190.5,83.91452,Arkansas,USA,Undrafted,Undrafted,Undrafted,8,3.6,1.5,0.9,-2.1,0.019,0.099,0.16699999999999998,0.48200000000000004,0.12300000000000001,2018-19 10348,Davis Bertans,SAS,26.0,208.28,102.0582,None,Latvia,2011,2,42,76,8.0,3.5,1.3,7.6,0.015,0.139,0.135,0.632,0.079,2018-19 10349,Davon Reed,IND,24.0,195.58,94.34713599999999,Miami,USA,2017,2,32,10,1.2,0.6,0.3,18.7,0.033,0.073,0.10400000000000001,0.5,0.068,2018-19 10350,De'Aaron Fox,SAC,21.0,190.5,79.3786,Kentucky,USA,2017,1,5,81,17.3,3.8,7.3,0.9,0.015,0.095,0.23800000000000002,0.544,0.322,2018-19 10351,De'Anthony Melton,PHX,21.0,193.04,90.7184,USC,USA,2018,2,46,50,5.0,2.7,3.2,-7.9,0.025,0.114,0.147,0.466,0.214,2018-19 10352,DeAndre Jordan,NYK,30.0,210.82,120.20188,Texas A&M,USA,2008,2,35,69,11.0,13.1,2.3,-5.1,0.105,0.315,0.14800000000000002,0.674,0.11900000000000001,2018-19 10353,DeAndre' Bembry,ATL,24.0,198.12,95.25432,None,USA,2016,1,21,82,8.4,4.4,2.5,-5.0,0.026000000000000002,0.14800000000000002,0.168,0.508,0.15,2018-19 10354,David Nwaba,CLE,26.0,193.04,99.336648,None,USA,Undrafted,Undrafted,Undrafted,51,6.5,3.2,1.1,-3.8,0.039,0.128,0.141,0.5579999999999999,0.077,2018-19 10355,DeMar DeRozan,SAS,29.0,200.66,99.79024,USC,USA,2009,1,9,77,21.2,6.0,6.2,0.0,0.02,0.147,0.27699999999999997,0.542,0.27699999999999997,2018-19 10356,Al-Farouq Aminu,POR,28.0,205.74,99.79024,Wake Forest,USA,2010,1,8,81,9.4,7.5,1.3,8.2,0.048,0.204,0.134,0.568,0.057,2018-19 10357,Alec Burks,SAC,27.0,198.12,97.068688,Colorado,USA,2011,1,12,64,8.8,3.7,2.0,-11.1,0.021,0.151,0.185,0.523,0.142,2018-19 10358,Andrew Bogut,GSW,34.0,213.36,117.93392,Utah,Australia,2005,1,1,11,3.5,5.0,1.0,3.9,0.1,0.297,0.14800000000000002,0.523,0.10400000000000001,2018-19 10359,Andre Ingram,LAL,33.0,190.5,86.18248,American University,USA,Undrafted,Undrafted,Undrafted,4,0.0,0.5,0.0,9.6,0.059000000000000004,0.053,0.184,0.0,0.0,2018-19 10360,Andre Iguodala,GSW,35.0,198.12,97.52228000000001,Arizona,USA,2004,1,9,68,5.7,3.7,3.2,9.0,0.031,0.11699999999999999,0.10099999999999999,0.5870000000000001,0.17300000000000001,2018-19 10361,Andre Drummond,DET,25.0,210.82,126.552168,Connecticut,USA,2012,1,9,79,17.3,15.6,1.4,3.3,0.151,0.311,0.226,0.555,0.068,2018-19 10362,Amir Johnson,PHI,32.0,205.74,108.86208,None,USA,2005,2,56,51,3.9,2.9,1.2,-5.0,0.084,0.185,0.16899999999999998,0.574,0.156,2018-19 10363,Amile Jefferson,ORL,26.0,205.74,100.697424,Duke,USA,Undrafted,Undrafted,Undrafted,12,2.3,1.8,0.3,8.8,0.08199999999999999,0.25,0.125,0.6920000000000001,0.052000000000000005,2018-19 10364,Alan Williams,BKN,26.0,203.2,120.20188,Cal-Santa Barbara,USA,Undrafted,Undrafted,Undrafted,5,3.6,3.8,0.6,27.1,0.114,0.405,0.222,0.61,0.17600000000000002,2018-19 10365,Allonzo Trier,NYK,23.0,195.58,90.7184,Arizona,USA,Undrafted,Undrafted,Undrafted,64,10.9,3.1,1.9,-7.2,0.02,0.107,0.207,0.564,0.131,2018-19 10366,Alize Johnson,IND,23.0,205.74,96.16150400000001,Missouri State,USA,2018,2,50,14,0.9,1.4,0.1,-1.6,0.051,0.192,0.11599999999999999,0.33299999999999996,0.018000000000000002,2018-19 10367,Alfonzo McKinnie,GSW,26.0,203.2,97.52228000000001,None,USA,Undrafted,Undrafted,Undrafted,72,4.7,3.4,0.4,0.9,0.075,0.152,0.131,0.569,0.040999999999999995,2018-19 10368,Alex Poythress,ATL,25.0,205.74,106.59411999999999,Kentucky,USA,Undrafted,Undrafted,Undrafted,21,5.1,3.6,0.8,-10.0,0.085,0.151,0.14,0.5710000000000001,0.085,2018-19 10369,Alex Len,ATL,26.0,215.9,113.398,Maryland,Ukraine,2013,1,5,77,11.1,5.5,1.1,-4.4,0.09,0.159,0.214,0.575,0.086,2018-19 10370,Alex Caruso,LAL,25.0,195.58,84.368112,Texas A&M,USA,Undrafted,Undrafted,Undrafted,25,9.2,2.7,3.1,3.2,0.035,0.079,0.184,0.569,0.205,2018-19 10371,Alex Abrines,OKC,25.0,198.12,90.7184,None,Spain,2013,2,32,31,5.3,1.5,0.6,1.6,0.006999999999999999,0.067,0.12,0.507,0.047,2018-19 10372,Allen Crabbe,BKN,27.0,198.12,96.16150400000001,California,USA,2013,2,31,43,9.6,3.4,1.1,0.3,0.013000000000000001,0.10800000000000001,0.159,0.519,0.059000000000000004,2018-19 10373,Andrew Harrison,NOP,24.0,198.12,96.615096,Kentucky,USA,2015,2,44,17,3.2,1.2,1.4,-5.5,0.032,0.07400000000000001,0.171,0.44299999999999995,0.19399999999999998,2018-19 10374,DeMarcus Cousins,GSW,28.0,210.82,122.46983999999999,Kentucky,USA,2010,1,5,30,16.3,8.2,3.6,4.5,0.059000000000000004,0.23199999999999998,0.281,0.562,0.20600000000000002,2018-19 10375,DeVaughn Akoon-Purcell,DEN,26.0,198.12,90.7184,Illinois State,Trinidad and Tobago,Undrafted,Undrafted,Undrafted,7,1.0,0.6,0.9,4.2,0.043,0.15,0.228,0.322,0.375,2018-19 10376,Dion Waiters,MIA,27.0,193.04,97.52228000000001,Syracuse,USA,2012,1,4,44,12.0,2.6,2.8,-2.0,0.006,0.094,0.213,0.53,0.16399999999999998,2018-19 10377,Dirk Nowitzki,DAL,41.0,213.36,111.13004,None,Germany,1998,1,9,51,7.3,3.1,0.7,-4.8,0.006,0.18,0.217,0.469,0.068,2018-19 10378,Domantas Sabonis,IND,23.0,210.82,108.86208,Gonzaga,Lithuania,2016,1,11,74,14.1,9.3,2.9,5.2,0.099,0.26899999999999996,0.226,0.63,0.18,2018-19 10379,Donatas Motiejunas,SAS,28.0,213.36,99.79024,None,Lithuania,2011,1,20,3,2.0,1.0,0.3,-61.8,0.154,0.077,0.32299999999999995,0.436,0.2,2018-19 10380,Donovan Mitchell,UTA,22.0,190.5,97.52228000000001,Louisville,USA,2017,1,13,77,23.8,4.1,4.2,6.8,0.022000000000000002,0.09300000000000001,0.309,0.537,0.209,2018-19 10381,Donte DiVincenzo,MIL,22.0,193.04,92.079176,Villanova,USA,2018,1,17,27,4.9,2.4,1.1,12.6,0.036000000000000004,0.099,0.145,0.507,0.102,2018-19 10382,Dillon Brooks,MEM,23.0,198.12,99.79024,Oregon,Canada,2017,2,45,18,7.5,1.7,0.9,-1.6,0.027999999999999997,0.076,0.207,0.499,0.079,2018-19 10383,Donte Grantham,OKC,24.0,203.2,97.52228000000001,Clemson,USA,Undrafted,Undrafted,Undrafted,3,0.0,0.0,0.0,-53.3,0.0,0.0,0.33299999999999996,0.0,0.0,2018-19 10384,Doug McDermott,IND,27.0,203.2,102.0582,Creighton,USA,2014,1,11,77,7.3,1.4,0.9,3.6,0.012,0.066,0.152,0.617,0.07,2018-19 10385,Dragan Bender,PHX,21.0,215.9,102.0582,None,Croatia,2016,1,4,46,5.0,4.0,1.2,-8.1,0.04,0.168,0.13,0.521,0.094,2018-19 10386,Draymond Green,GSW,29.0,200.66,104.32616,Michigan State,USA,2012,2,35,66,7.4,7.3,6.9,10.7,0.031,0.18,0.128,0.526,0.261,2018-19 10387,Drew Eubanks,SAS,22.0,208.28,111.13004,None,USA,Undrafted,Undrafted,Undrafted,23,1.8,1.5,0.3,-10.0,0.055999999999999994,0.214,0.14800000000000002,0.6459999999999999,0.1,2018-19 10388,Duncan Robinson,MIA,25.0,203.2,95.25432,Michigan,USA,Undrafted,Undrafted,Undrafted,15,3.3,1.3,0.3,-10.9,0.011000000000000001,0.091,0.134,0.514,0.045,2018-19 10389,Dusty Hannahs,MEM,25.0,193.04,88.45044,Arkansas,USA,Undrafted,Undrafted,Undrafted,2,4.0,0.5,2.5,-17.5,0.0,0.036000000000000004,0.222,0.311,0.35700000000000004,2018-19 10390,Dorian Finney-Smith,DAL,26.0,203.2,99.79024,Florida,USA,Undrafted,Undrafted,Undrafted,81,7.5,4.8,1.2,-1.9,0.064,0.11900000000000001,0.135,0.53,0.07,2018-19 10391,DeMarre Carroll,BKN,32.0,203.2,97.52228000000001,Missouri,USA,2009,1,27,67,11.1,5.2,1.3,1.9,0.037000000000000005,0.151,0.18100000000000002,0.546,0.075,2018-19 10392,Deyonta Davis,ATL,22.0,210.82,107.501304,Michigan State,USA,2016,2,31,9,4.0,4.0,0.6,-9.8,0.063,0.193,0.099,0.682,0.063,2018-19 10393,Devonte' Graham,CHA,24.0,187.96,83.91452,Kansas,USA,2018,2,34,46,4.7,1.4,2.6,-7.3,0.013000000000000001,0.078,0.166,0.45899999999999996,0.266,2018-19 10394,Deandre Ayton,PHX,20.0,215.9,113.398,Arizona,Bahamas,2018,1,1,71,16.3,10.3,1.8,-8.1,0.10099999999999999,0.24,0.21,0.608,0.094,2018-19 10395,Delon Wright,MEM,27.0,195.58,83.007336,Utah,USA,2015,1,20,75,8.7,3.5,3.3,-0.1,0.037000000000000005,0.113,0.172,0.523,0.217,2018-19 10396,Demetrius Jackson,PHI,24.0,185.42,91.171992,Notre Dame,USA,2016,2,45,6,3.7,0.5,0.8,-14.8,0.045,0.024,0.182,0.6559999999999999,0.185,2018-19 10397,Deng Adel,CLE,22.0,200.66,90.7184,None,South Sudan,Undrafted,Undrafted,Undrafted,19,1.7,1.0,0.3,-9.5,0.013999999999999999,0.08900000000000001,0.09699999999999999,0.424,0.038,2018-19 10398,Dennis Schroder,OKC,25.0,185.42,78.017824,None,Germany,2013,1,17,79,15.5,3.6,4.1,3.6,0.015,0.102,0.23800000000000002,0.508,0.209,2018-19 10399,Dennis Smith Jr.,NYK,21.0,190.5,88.45044,North Carolina State,USA,2017,1,9,53,13.6,2.9,4.8,-5.3,0.02,0.075,0.242,0.502,0.278,2018-19 10400,Dewayne Dedmon,ATL,29.0,213.36,111.13004,USC,USA,Undrafted,Undrafted,Undrafted,64,10.8,7.5,1.4,-4.1,0.063,0.22899999999999998,0.166,0.602,0.079,2018-19 10401,Deonte Burton,OKC,25.0,195.58,111.13004,Iowa State,USA,Undrafted,Undrafted,Undrafted,32,2.6,0.9,0.3,4.3,0.013999999999999999,0.09,0.159,0.47,0.057,2018-19 10402,Derrick Jones Jr.,MIA,22.0,200.66,90.7184,UNLV,USA,Undrafted,Undrafted,Undrafted,60,7.0,4.0,0.6,-1.2,0.076,0.11900000000000001,0.151,0.5589999999999999,0.049,2018-19 10403,Derrick Rose,MIN,30.0,190.5,90.7184,Memphis,USA,2008,1,1,51,18.0,2.7,4.3,0.7,0.022000000000000002,0.07,0.261,0.557,0.244,2018-19 10404,Derrick White,SAS,24.0,193.04,86.18248,Colorado,USA,2017,1,29,67,9.9,3.7,3.9,4.8,0.022000000000000002,0.11599999999999999,0.17800000000000002,0.555,0.20600000000000002,2018-19 10405,Devin Booker,PHX,22.0,198.12,95.25432,Kentucky,USA,2015,1,13,64,26.6,4.1,6.8,-6.9,0.017,0.099,0.32,0.584,0.327,2018-19 10406,Devin Harris,DAL,36.0,190.5,83.91452,Wisconsin,USA,2004,1,5,68,6.3,1.6,1.8,-4.2,0.01,0.09,0.18,0.527,0.172,2018-19 10407,Devin Robinson,WAS,24.0,203.2,90.7184,Florida,USA,Undrafted,Undrafted,Undrafted,7,6.7,2.9,0.9,-1.7,0.057999999999999996,0.14300000000000002,0.17600000000000002,0.616,0.095,2018-19 10408,Derrick Favors,UTA,27.0,208.28,120.20188,Georgia Tech,USA,2010,1,3,76,11.8,7.4,1.2,4.6,0.115,0.188,0.188,0.624,0.079,2018-19 10409,Andrew Wiggins,MIN,24.0,203.2,87.996848,Kansas,Canada,2014,1,1,73,18.1,4.8,2.5,-1.2,0.031,0.099,0.24,0.493,0.10800000000000001,2018-19 10410,Anfernee Simons,POR,20.0,193.04,83.91452,None,USA,2018,1,24,20,3.8,0.7,0.7,-17.6,0.022000000000000002,0.067,0.24,0.535,0.135,2018-19 10411,Angel Delgado,LAC,24.0,208.28,111.13004,None,Dominican Republic,Undrafted,Undrafted,Undrafted,2,1.5,2.0,0.0,7.0,0.083,0.14300000000000002,0.15,0.255,0.0,2018-19 10412,Cody Zeller,CHA,26.0,213.36,108.86208,Indiana,USA,2013,1,4,49,10.1,6.8,2.1,1.4,0.084,0.171,0.159,0.611,0.114,2018-19 10413,Clint Capela,HOU,25.0,208.28,108.86208,None,Switzerland,2014,1,25,67,16.6,12.7,1.4,5.4,0.13,0.24100000000000002,0.18,0.6579999999999999,0.07,2018-19 10414,Christian Wood,NOP,23.0,208.28,97.068688,UNLV,USA,Undrafted,Undrafted,Undrafted,21,8.2,4.0,0.4,-9.4,0.061,0.231,0.247,0.607,0.051,2018-19 10415,Chris Paul,HOU,34.0,182.88,79.3786,Wake Forest,USA,2005,1,4,58,15.6,4.6,8.2,8.3,0.019,0.12300000000000001,0.22,0.56,0.382,2018-19 10416,Chris Chiozza,HOU,23.0,182.88,79.3786,None,USA,Undrafted,Undrafted,Undrafted,7,0.9,0.6,0.6,-25.0,0.021,0.111,0.10800000000000001,0.375,0.19,2018-19 10417,Chris Boucher,TOR,26.0,208.28,90.7184,Oregon,Canada,Undrafted,Undrafted,Undrafted,28,3.3,2.0,0.1,-4.2,0.086,0.209,0.214,0.563,0.02,2018-19 10418,Collin Sexton,CLE,20.0,187.96,86.18248,Alabama,USA,2018,1,8,82,16.7,2.9,3.0,-12.5,0.021,0.07200000000000001,0.247,0.52,0.154,2018-19 10419,Chimezie Metu,SAS,22.0,208.28,102.0582,USC,USA,2018,2,49,29,1.8,1.2,0.4,-1.3,0.061,0.179,0.223,0.389,0.14,2018-19 10420,Chasson Randle,WAS,26.0,187.96,83.91452,Stanford,USA,Undrafted,Undrafted,Undrafted,49,5.5,1.1,2.0,-5.8,0.013000000000000001,0.062,0.16,0.555,0.182,2018-19 10421,Channing Frye,CLE,36.0,213.36,115.66596000000001,Arizona,USA,2005,1,8,36,3.6,1.4,0.6,-22.7,0.01,0.158,0.174,0.524,0.1,2018-19 10422,Chandler Parsons,MEM,30.0,208.28,104.32616,Florida,USA,2011,2,38,25,7.5,2.8,1.7,-5.4,0.006999999999999999,0.126,0.192,0.484,0.14300000000000002,2018-19 10423,Chandler Hutchison,CHI,23.0,200.66,89.357624,Boise State,USA,2018,1,22,44,5.2,4.2,0.8,-5.6,0.033,0.16699999999999998,0.121,0.507,0.055,2018-19 10424,Cedi Osman,CLE,24.0,203.2,97.52228000000001,None,Turkey,2015,2,31,76,13.0,4.7,2.6,-12.8,0.018000000000000002,0.134,0.182,0.536,0.12,2018-19 10425,Carmelo Anthony,HOU,35.0,203.2,108.86208,Syracuse,USA,2003,1,3,10,13.4,5.4,0.5,-9.9,0.027000000000000003,0.158,0.19899999999999998,0.513,0.027999999999999997,2018-19 10426,Cheick Diallo,NOP,22.0,205.74,99.79024,Kansas,Mali,2016,2,33,64,6.0,5.2,0.5,-4.7,0.079,0.26,0.155,0.644,0.051,2018-19 10427,Caris LeVert,BKN,24.0,200.66,92.532768,Michigan,USA,2016,1,20,40,13.7,3.8,3.9,-0.2,0.03,0.1,0.235,0.509,0.231,2018-19 10428,Corey Brewer,SAC,33.0,205.74,84.368112,Florida,USA,2007,1,7,31,4.9,2.5,1.3,0.0,0.045,0.098,0.13,0.532,0.107,2018-19 10429,Courtney Lee,DAL,33.0,195.58,97.52228000000001,Western Kentucky,USA,2008,1,22,34,4.0,1.6,1.1,-6.4,0.019,0.105,0.15,0.49200000000000005,0.13,2018-19 10430,Danny Green,TOR,32.0,198.12,97.52228000000001,North Carolina,USA,2009,2,46,80,10.3,4.0,1.6,13.4,0.027999999999999997,0.107,0.139,0.632,0.073,2018-19 10431,Danilo Gallinari,LAC,30.0,208.28,102.0582,None,Italy,2008,1,6,68,19.8,6.1,2.6,2.3,0.027000000000000003,0.171,0.237,0.633,0.134,2018-19 10432,Daniel Theis,BOS,27.0,203.2,110.22285600000001,None,Germany,Undrafted,Undrafted,Undrafted,66,5.7,3.4,1.0,7.4,0.08800000000000001,0.145,0.15,0.624,0.10800000000000001,2018-19 10433,Daniel Hamilton,ATL,23.0,200.66,88.45044,Connecticut,USA,2016,2,56,19,3.0,2.5,1.2,-4.9,0.043,0.161,0.153,0.455,0.157,2018-19 10434,Damyean Dotson,NYK,25.0,198.12,95.25432,Houston,USA,2017,2,44,73,10.7,3.6,1.8,-8.0,0.016,0.10800000000000001,0.16899999999999998,0.526,0.10400000000000001,2018-19 10435,Damion Lee,GSW,26.0,198.12,95.25432,Louisville,USA,Undrafted,Undrafted,Undrafted,32,4.9,2.0,0.4,-5.4,0.02,0.134,0.16399999999999998,0.578,0.051,2018-19 10436,Cory Joseph,IND,27.0,190.5,87.543256,Texas,Canada,2011,1,29,82,6.5,3.4,3.9,5.2,0.019,0.111,0.134,0.474,0.20800000000000002,2018-19 10437,Damian Lillard,POR,28.0,190.5,88.45044,Weber State,USA,2012,1,6,80,25.8,4.6,6.9,8.2,0.023,0.1,0.281,0.588,0.299,2018-19 10438,Dairis Bertans,NOP,29.0,193.04,90.7184,None,Latvia,Undrafted,Undrafted,Undrafted,12,2.8,0.8,0.8,-15.0,0.011000000000000001,0.036000000000000004,0.12,0.36200000000000004,0.078,2018-19 10439,DJ Stephens,MEM,28.0,195.58,85.275296,Memphis,USA,Undrafted,Undrafted,Undrafted,1,2.0,0.0,0.0,-23.2,0.0,0.0,0.13,0.5,0.0,2018-19 10440,D.J. Wilson,MIL,23.0,208.28,104.779752,Michigan,USA,2017,1,17,48,5.8,4.6,1.1,4.9,0.047,0.174,0.141,0.515,0.08,2018-19 10441,D.J. Augustin,ORL,31.0,182.88,83.007336,Texas,USA,2008,1,9,81,11.7,2.5,5.3,3.2,0.018000000000000002,0.071,0.16899999999999998,0.616,0.258,2018-19 10442,D'Angelo Russell,BKN,23.0,195.58,89.811216,Ohio State,USA,2015,1,2,81,21.1,3.9,7.0,0.2,0.02,0.099,0.311,0.5329999999999999,0.392,2018-19 10443,Cristiano Felicio,CHI,26.0,208.28,120.20188,None,Brazil,Undrafted,Undrafted,Undrafted,60,4.0,3.6,0.6,-8.0,0.10099999999999999,0.187,0.138,0.568,0.07,2018-19 10444,Damian Jones,GSW,24.0,213.36,111.13004,Vanderbilt,USA,2016,1,30,24,5.4,3.1,1.2,3.0,0.086,0.099,0.113,0.72,0.084,2018-19 10445,Cameron Reynolds,MIN,24.0,203.2,102.0582,None,USA,Undrafted,Undrafted,Undrafted,19,5.0,1.6,0.7,-4.9,0.013999999999999999,0.102,0.141,0.58,0.073,2018-19 10446,Cameron Payne,CLE,24.0,190.5,86.18248,Murray State,USA,2015,1,14,40,6.3,1.8,2.7,-15.2,0.017,0.083,0.16899999999999998,0.519,0.225,2018-19 10447,Caleb Swanigan,SAC,22.0,205.74,113.398,Purdue,USA,2017,1,26,21,2.0,3.0,0.5,-16.8,0.081,0.23600000000000002,0.17,0.377,0.098,2018-19 10448,Blake Griffin,DET,30.0,208.28,113.398,Oklahoma,USA,2009,1,1,75,24.5,7.5,5.4,0.5,0.036000000000000004,0.182,0.29600000000000004,0.581,0.268,2018-19 10449,Bismack Biyombo,CHA,26.0,205.74,115.66596000000001,None,Democratic Republic of the Congo,2011,1,7,54,4.4,4.6,0.6,-7.7,0.099,0.205,0.128,0.602,0.064,2018-19 10450,Billy Garrett,NYK,24.0,198.12,97.52228000000001,DePaul,USA,Undrafted,Undrafted,Undrafted,4,6.5,0.8,1.8,-8.6,0.0,0.040999999999999995,0.215,0.452,0.18899999999999997,2018-19 10451,Ben Simmons,PHI,22.0,208.28,104.32616,Louisiana State,Australia,2016,1,1,79,16.9,8.8,7.7,2.4,0.062,0.179,0.215,0.5820000000000001,0.341,2018-19 10452,Ben McLemore,SAC,26.0,195.58,91.171992,Kansas,USA,2013,1,7,19,3.9,0.9,0.2,-3.5,0.018000000000000002,0.08900000000000001,0.185,0.541,0.035,2018-19 10453,Bam Adebayo,MIA,21.0,208.28,115.66596000000001,Kentucky,USA,2017,1,14,82,8.9,7.3,2.2,0.5,0.083,0.221,0.157,0.623,0.146,2018-19 10454,Boban Marjanovic,PHI,30.0,220.98,131.54168,None,Serbia,Undrafted,Undrafted,Undrafted,58,7.3,4.6,0.9,0.1,0.124,0.23199999999999998,0.222,0.664,0.128,2018-19 10455,BJ Johnson,SAC,23.0,200.66,90.7184,None,USA,Undrafted,Undrafted,Undrafted,7,3.3,1.1,0.0,-12.6,0.038,0.15,0.17800000000000002,0.609,0.0,2018-19 10456,Austin Rivers,HOU,26.0,193.04,90.7184,Duke,USA,2012,1,10,76,8.1,2.1,2.2,2.5,0.012,0.065,0.142,0.503,0.12,2018-19 10457,Aron Baynes,BOS,32.0,208.28,117.93392,Washington State,Australia,Undrafted,Undrafted,Undrafted,51,5.6,4.7,1.1,7.7,0.10300000000000001,0.175,0.147,0.5670000000000001,0.092,2018-19 10458,Antonio Blakeney,CHI,22.0,193.04,87.089664,Louisiana State,USA,Undrafted,Undrafted,Undrafted,57,7.3,1.9,0.7,-7.8,0.008,0.114,0.24,0.48700000000000004,0.079,2018-19 10459,Anthony Tolliver,MIN,34.0,203.2,113.398,Creighton,USA,Undrafted,Undrafted,Undrafted,65,5.0,2.7,0.7,-4.1,0.012,0.14300000000000002,0.121,0.5710000000000001,0.059000000000000004,2018-19 10460,Anthony Davis,NOP,26.0,208.28,114.758776,Kentucky,USA,2012,1,1,56,25.9,12.0,3.9,3.4,0.08900000000000001,0.249,0.28800000000000003,0.597,0.18600000000000003,2018-19 10461,Ante Zizic,CLE,22.0,210.82,115.212368,None,Croatia,2016,1,23,59,7.8,5.4,0.9,-3.9,0.09699999999999999,0.193,0.17800000000000002,0.59,0.075,2018-19 10462,Avery Bradley,MEM,28.0,187.96,81.64656,Texas,USA,2010,1,19,63,9.9,2.8,2.4,-1.5,0.022000000000000002,0.065,0.16,0.496,0.114,2018-19 10463,Bobby Portis,WAS,24.0,210.82,113.398,Arkansas,USA,2015,1,22,50,14.2,8.1,1.4,-4.4,0.083,0.226,0.24100000000000002,0.529,0.085,2018-19 10464,Bogdan Bogdanovic,SAC,26.0,198.12,92.98635999999999,None,Serbia,2014,1,27,70,14.1,3.5,3.8,-1.1,0.019,0.098,0.22,0.53,0.19899999999999998,2018-19 10465,Bojan Bogdanovic,IND,30.0,203.2,97.975872,None,Croatia,2011,2,31,81,18.0,4.1,2.0,2.9,0.013000000000000001,0.113,0.21899999999999997,0.613,0.095,2018-19 10466,CJ Miles,MEM,32.0,198.12,99.79024,None,USA,2005,2,34,53,6.4,1.8,0.7,-1.7,0.013999999999999999,0.09,0.17300000000000001,0.504,0.061,2018-19 10467,CJ McCollum,POR,27.0,190.5,86.18248,Lehigh,USA,2013,1,10,70,21.0,4.0,3.0,6.5,0.025,0.087,0.248,0.5529999999999999,0.133,2018-19 10468,C.J. Williams,MIN,29.0,195.58,102.511792,North Carolina State,USA,Undrafted,Undrafted,Undrafted,15,2.6,0.5,0.8,-17.5,0.006999999999999999,0.053,0.138,0.55,0.158,2018-19 10469,Buddy Hield,SAC,26.0,193.04,97.068688,Oklahoma,Bahamas,2016,1,6,82,20.7,5.0,2.5,-0.6,0.036000000000000004,0.11,0.243,0.5870000000000001,0.11699999999999999,2018-19 10470,Bryn Forbes,SAS,25.0,190.5,86.18248,Michigan State,USA,Undrafted,Undrafted,Undrafted,82,11.8,2.9,2.1,-0.3,0.008,0.096,0.171,0.586,0.105,2018-19 10471,Bruno Caboclo,MEM,23.0,205.74,98.88305600000001,None,Brazil,2014,1,20,34,8.3,4.6,1.5,0.9,0.05,0.13699999999999998,0.15,0.5710000000000001,0.091,2018-19 10472,Bruce Brown,DET,22.0,195.58,91.625584,Miami,USA,2018,2,42,74,4.3,2.5,1.2,0.7,0.032,0.092,0.113,0.469,0.087,2018-19 10473,Brook Lopez,MIL,31.0,213.36,122.46983999999999,Stanford,USA,2008,1,10,81,12.5,4.9,1.2,11.5,0.013999999999999999,0.135,0.165,0.597,0.055,2018-19 10474,Brandon Sampson,CHI,22.0,195.58,83.46092800000001,None,USA,Undrafted,Undrafted,Undrafted,14,5.1,1.1,0.7,-6.0,0.013999999999999999,0.063,0.154,0.5670000000000001,0.063,2018-19 10475,Danuel House Jr.,HOU,26.0,200.66,99.79024,Texas A&M,USA,Undrafted,Undrafted,Undrafted,39,9.4,3.6,1.0,8.9,0.025,0.11199999999999999,0.13699999999999998,0.6459999999999999,0.057999999999999996,2018-19 10476,Brandon Ingram,LAL,21.0,205.74,86.18248,Duke,USA,2016,1,2,52,18.3,5.1,3.0,-1.5,0.022000000000000002,0.113,0.22699999999999998,0.555,0.127,2018-19 10477,Brandon Goodwin,DEN,23.0,187.96,81.64656,None,USA,Undrafted,Undrafted,Undrafted,16,1.4,0.2,0.9,8.0,0.016,0.038,0.22,0.413,0.298,2018-19 10478,Bradley Beal,WAS,26.0,195.58,93.89354399999999,Florida,USA,2012,1,3,82,25.6,5.0,5.5,-1.8,0.027999999999999997,0.10400000000000001,0.27699999999999997,0.581,0.233,2018-19 10479,Brad Wanamaker,BOS,29.0,193.04,95.25432,Pittsburgh,USA,Undrafted,Undrafted,Undrafted,36,3.9,1.1,1.6,8.8,0.008,0.096,0.162,0.597,0.225,2018-19 10480,Bonzie Colson,MIL,23.0,198.12,102.0582,Notre Dame,USA,Undrafted,Undrafted,Undrafted,8,4.9,3.8,0.4,-9.2,0.065,0.182,0.174,0.45399999999999996,0.04,2018-19 10481,Dwayne Bacon,CHA,23.0,200.66,100.243832,Florida State,USA,2017,2,40,43,7.3,2.1,1.1,-2.0,0.01,0.105,0.16699999999999998,0.57,0.092,2018-19 10482,Dwight Howard,WAS,33.0,210.82,120.20188,None,USA,2004,1,1,9,12.8,9.2,0.4,-9.1,0.1,0.258,0.193,0.638,0.026000000000000002,2018-19 10483,Dwight Powell,DAL,27.0,210.82,108.86208,Stanford,Canada,2014,2,45,77,10.6,5.3,1.5,0.9,0.081,0.16,0.16699999999999998,0.682,0.10099999999999999,2018-19 10484,Dwyane Wade,MIA,37.0,193.04,99.79024,Marquette,USA,2003,1,5,72,15.0,4.0,4.2,-1.8,0.033,0.106,0.26899999999999996,0.51,0.264,2018-19 10485,Jaylen Morris,MIL,23.0,195.58,83.91452,Molloy,USA,Undrafted,Undrafted,Undrafted,4,2.5,1.3,1.0,22.5,0.0,0.147,0.15,0.46,0.174,2018-19 10486,Jayson Tatum,BOS,21.0,203.2,94.34713599999999,Duke,USA,2017,1,3,79,15.7,6.0,2.1,6.8,0.027999999999999997,0.157,0.218,0.547,0.098,2018-19 10487,Jeff Green,WAS,32.0,205.74,106.59411999999999,Georgetown,USA,2007,1,5,77,12.3,4.0,1.8,-2.0,0.027000000000000003,0.11699999999999999,0.174,0.608,0.09300000000000001,2018-19 10488,Jeff Teague,MIN,31.0,187.96,88.45044,Wake Forest,USA,2009,1,19,42,12.1,2.5,8.2,-0.1,0.012,0.067,0.18600000000000003,0.528,0.366,2018-19 10489,Jemerrio Jones,LAL,24.0,195.58,78.92500799999999,None,USA,Undrafted,Undrafted,Undrafted,6,4.5,8.2,2.2,10.7,0.1,0.198,0.10800000000000001,0.39799999999999996,0.115,2018-19 10490,Jerami Grant,OKC,25.0,205.74,99.79024,Syracuse,USA,2014,2,39,80,13.6,5.2,1.0,5.4,0.032,0.11800000000000001,0.15,0.5920000000000001,0.04,2018-19 10491,Jaylen Brown,BOS,22.0,200.66,99.79024,California,USA,2016,1,3,74,13.0,4.2,1.4,2.4,0.032,0.122,0.215,0.547,0.079,2018-19 10492,Jeremy Lamb,CHA,27.0,195.58,83.91452,Connecticut,USA,2012,1,12,79,15.3,5.5,2.2,0.7,0.027000000000000003,0.159,0.22,0.552,0.11900000000000001,2018-19 10493,Jerian Grant,ORL,26.0,193.04,92.98635999999999,Notre Dame,USA,2015,1,19,60,4.2,1.6,2.6,-7.3,0.019,0.083,0.13,0.526,0.242,2018-19 10494,Jerome Robinson,LAC,22.0,195.58,86.18248,Boston College,USA,2018,1,13,33,3.4,1.2,0.6,-3.4,0.009000000000000001,0.109,0.159,0.491,0.08,2018-19 10495,Jerryd Bayless,MIN,30.0,190.5,90.7184,Arizona,USA,2008,1,11,34,6.1,1.8,3.5,-12.4,0.015,0.08,0.172,0.431,0.262,2018-19 10496,Jevon Carter,MEM,23.0,187.96,88.904032,West Virginia,USA,2018,2,32,39,4.4,1.7,1.8,-6.8,0.023,0.09,0.172,0.43200000000000005,0.184,2018-19 10497,Jimmer Fredette,PHX,30.0,187.96,88.45044,Brigham Young,USA,2011,1,10,6,3.7,1.2,1.3,-25.5,0.013000000000000001,0.08800000000000001,0.242,0.348,0.2,2018-19 10498,Jimmy Butler,PHI,29.0,203.2,105.23334399999999,Marquette,USA,2011,1,30,65,18.7,5.3,4.0,3.6,0.054000000000000006,0.094,0.218,0.5710000000000001,0.179,2018-19 10499,Jeremy Lin,TOR,30.0,190.5,90.7184,Harvard,USA,Undrafted,Undrafted,Undrafted,74,9.6,2.4,3.1,-5.1,0.013999999999999999,0.102,0.213,0.5579999999999999,0.249,2018-19 10500,Joakim Noah,MEM,34.0,210.82,104.32616,Florida,USA,2007,1,9,42,7.1,5.7,2.1,1.8,0.078,0.247,0.191,0.5710000000000001,0.20199999999999999,2018-19 10501,Jaylen Adams,ATL,23.0,187.96,86.18248,St. Bonaventure,USA,Undrafted,Undrafted,Undrafted,34,3.2,1.8,1.9,-6.5,0.022000000000000002,0.109,0.131,0.474,0.201,2018-19 10502,Jason Smith,NOP,33.0,213.36,108.86208,Colorado State,USA,2007,1,20,20,3.3,2.6,0.7,-12.1,0.077,0.174,0.16899999999999998,0.49200000000000005,0.11199999999999999,2018-19 10503,Jalen Jones,CLE,26.0,200.66,99.79024,Texas A&M,USA,Undrafted,Undrafted,Undrafted,16,5.1,2.1,0.4,-6.7,0.05,0.113,0.162,0.5479999999999999,0.05,2018-19 10504,Jamal Crawford,PHX,39.0,195.58,83.91452,Michigan,USA,2000,1,8,64,7.9,1.3,3.6,-15.1,0.006,0.061,0.198,0.522,0.28300000000000003,2018-19 10505,Jamal Murray,DEN,22.0,193.04,93.89354399999999,Kentucky,Canada,2016,1,7,75,18.2,4.2,4.8,4.8,0.026000000000000002,0.10099999999999999,0.24100000000000002,0.5379999999999999,0.22,2018-19 10506,James Ennis III,PHI,28.0,200.66,95.25432,Cal State-Long Beach,USA,2013,2,50,58,6.7,3.1,0.7,0.7,0.048,0.099,0.125,0.59,0.047,2018-19 10507,James Harden,HOU,29.0,195.58,99.79024,Arizona State,USA,2009,1,3,78,36.1,6.6,7.5,6.3,0.023,0.157,0.396,0.616,0.39399999999999996,2018-19 10508,James Johnson,MIA,32.0,203.2,108.86208,Wake Forest,USA,2009,1,16,55,7.8,3.2,2.5,-4.6,0.018000000000000002,0.12300000000000001,0.177,0.522,0.16699999999999998,2018-19 10509,Jawun Evans,OKC,22.0,182.88,86.18248,Oklahoma State,USA,2017,2,39,8,0.8,1.5,1.3,-38.0,0.015,0.172,0.142,0.214,0.23800000000000002,2018-19 10510,James Nunnally,HOU,28.0,200.66,94.34713599999999,Cal-Santa Barbara,USA,Undrafted,Undrafted,Undrafted,15,2.4,0.3,0.5,-11.0,0.0,0.053,0.153,0.503,0.09699999999999999,2018-19 10511,Jared Terrell,MIN,24.0,190.5,102.965384,Rhode Island,USA,Undrafted,Undrafted,Undrafted,14,2.2,0.4,0.9,-12.3,0.008,0.044000000000000004,0.19699999999999998,0.37200000000000005,0.182,2018-19 10512,Jarell Martin,ORL,25.0,208.28,108.40848799999999,Louisiana State,USA,2015,1,25,42,2.7,1.7,0.4,4.4,0.031,0.185,0.153,0.528,0.078,2018-19 10513,Jaren Jackson Jr.,MEM,19.0,210.82,109.769264,Michigan State,USA,2018,1,4,58,13.8,4.7,1.1,-2.3,0.049,0.132,0.231,0.591,0.07400000000000001,2018-19 10514,Jaron Blossomgame,CLE,25.0,203.2,99.79024,Clemson,USA,2017,2,59,27,4.2,3.6,0.5,-6.0,0.055,0.162,0.12,0.51,0.043,2018-19 10515,Jarred Vanderbilt,DEN,20.0,205.74,97.068688,Kentucky,USA,2018,2,41,17,1.4,1.4,0.2,4.5,0.084,0.205,0.179,0.513,0.064,2018-19 10516,Jarrett Allen,BKN,21.0,210.82,107.501304,Texas,USA,2017,1,22,80,10.9,8.4,1.4,-2.4,0.08800000000000001,0.20800000000000002,0.158,0.632,0.076,2018-19 10517,Jared Dudley,BKN,33.0,200.66,107.501304,Boston College,USA,2007,1,22,59,4.9,2.6,1.4,0.8,0.027000000000000003,0.096,0.10400000000000001,0.5539999999999999,0.09300000000000001,2018-19 10518,Jodie Meeks,TOR,31.0,193.04,95.25432,Kentucky,USA,2009,2,41,8,6.4,1.5,1.0,5.8,0.01,0.09300000000000001,0.16899999999999998,0.647,0.096,2018-19 10519,Joe Chealey,CHA,23.0,190.5,86.18248,College of Charleston,USA,Undrafted,Undrafted,Undrafted,1,2.0,0.0,1.0,-25.8,0.0,0.0,0.17600000000000002,0.33299999999999996,0.25,2018-19 10520,Joe Harris,BKN,27.0,198.12,98.88305600000001,Virginia,USA,2014,2,33,76,13.7,3.8,2.4,-1.6,0.022000000000000002,0.096,0.16699999999999998,0.645,0.114,2018-19 10521,Jordan Sibert,ATL,26.0,193.04,84.821704,University of Dayton,USA,Undrafted,Undrafted,Undrafted,1,3.0,0.0,0.0,-36.7,0.0,0.0,0.083,1.5,0.0,2018-19 10522,Jose Calderon,DET,37.0,190.5,90.7184,None,Spain,Undrafted,Undrafted,Undrafted,49,2.3,1.2,2.3,-14.0,0.015,0.078,0.10400000000000001,0.45299999999999996,0.282,2018-19 10523,Josh Hart,LAL,24.0,195.58,97.52228000000001,Villanova,USA,2017,1,30,67,7.8,3.7,1.4,0.4,0.019,0.109,0.13,0.526,0.07200000000000001,2018-19 10524,Josh Jackson,PHX,22.0,203.2,90.7184,Kansas,USA,2017,1,4,79,11.5,4.4,2.3,-9.6,0.032,0.136,0.23399999999999999,0.48700000000000004,0.142,2018-19 10525,Josh Okogie,MIN,20.0,193.04,96.16150400000001,Georgia Institute of Technology,Nigeria,2018,1,20,74,7.7,2.9,1.2,-1.0,0.021,0.098,0.14800000000000002,0.49200000000000005,0.068,2018-19 10526,Josh Richardson,MIA,25.0,198.12,90.7184,Tennessee,USA,2015,2,40,73,16.6,3.6,4.1,1.0,0.02,0.078,0.203,0.536,0.177,2018-19 10527,Jordan McRae,WAS,28.0,195.58,81.19296800000001,Tennessee,USA,2014,2,58,27,5.9,1.5,1.1,-3.3,0.017,0.095,0.191,0.55,0.131,2018-19 10528,Jrue Holiday,NOP,29.0,193.04,92.98635999999999,UCLA,USA,2009,1,17,67,21.2,5.0,7.7,4.4,0.03,0.099,0.25,0.555,0.308,2018-19 10529,Julian Washburn,MEM,27.0,203.2,94.800728,Texas-El Paso,USA,Undrafted,Undrafted,Undrafted,18,2.2,2.3,0.8,-2.0,0.027000000000000003,0.128,0.096,0.402,0.083,2018-19 10530,Julius Randle,NOP,24.0,205.74,113.398,Kentucky,USA,2014,1,7,73,21.4,8.7,3.1,-0.2,0.069,0.198,0.273,0.6,0.158,2018-19 10531,Justin Anderson,ATL,25.0,198.12,104.32616,Virginia,USA,2015,1,21,48,3.7,1.8,0.5,-5.7,0.046,0.11900000000000001,0.166,0.516,0.073,2018-19 10532,Justin Holiday,MEM,30.0,198.12,82.10015200000001,Washington,USA,Undrafted,Undrafted,Undrafted,82,10.5,3.9,1.8,-7.7,0.017,0.10300000000000001,0.153,0.52,0.084,2018-19 10533,Justin Jackson,DAL,24.0,203.2,95.25432,North Carolina,USA,2017,1,15,81,7.2,2.6,1.2,-0.9,0.025,0.096,0.141,0.561,0.081,2018-19 10534,Justin Patton,PHI,22.0,213.36,109.315672,Creighton,USA,2017,1,16,3,1.7,2.0,1.0,-12.9,0.065,0.174,0.14,0.317,0.25,2018-19 10535,Juancho Hernangomez,DEN,23.0,205.74,104.32616,None,Spain,2016,1,15,70,5.8,3.8,0.8,1.3,0.044000000000000004,0.14400000000000002,0.11900000000000001,0.58,0.054000000000000006,2018-19 10536,Jordan Loyd,TOR,25.0,193.04,95.25432,None,USA,Undrafted,Undrafted,Undrafted,12,2.4,0.8,0.5,-15.7,0.017,0.133,0.159,0.635,0.182,2018-19 10537,Jordan Clarkson,CLE,27.0,195.58,87.996848,Missouri,USA,2014,2,46,81,16.8,3.3,2.4,-8.0,0.035,0.087,0.266,0.539,0.153,2018-19 10538,Jordan Bell,GSW,24.0,205.74,101.604608,Oregon,USA,2017,2,38,68,3.3,2.7,1.1,-5.3,0.068,0.154,0.133,0.531,0.134,2018-19 10539,Joe Ingles,UTA,31.0,203.2,102.511792,None,Australia,Undrafted,Undrafted,Undrafted,82,12.1,4.0,5.7,7.7,0.013000000000000001,0.10800000000000001,0.17,0.581,0.262,2018-19 10540,Joel Embiid,PHI,25.0,213.36,113.398,Kansas,Cameroon,2014,1,3,64,27.5,13.6,3.7,7.6,0.075,0.292,0.327,0.593,0.185,2018-19 10541,John Collins,ATL,21.0,208.28,106.59411999999999,Wake Forest,USA,2017,1,19,61,19.5,9.8,2.0,-1.4,0.11199999999999999,0.196,0.23,0.627,0.102,2018-19 10542,John Henson,CLE,28.0,210.82,99.336648,North Carolina,USA,2012,1,14,14,5.6,5.1,1.0,1.7,0.07400000000000001,0.233,0.17300000000000001,0.5529999999999999,0.10800000000000001,2018-19 10543,John Holland,CLE,30.0,195.58,92.98635999999999,Boston U.,USA,Undrafted,Undrafted,Undrafted,1,0.0,0.0,0.0,50.0,0.0,0.0,0.0,0.0,0.0,2018-19 10544,John Jenkins,NYK,28.0,193.04,97.52228000000001,Vanderbilt,USA,2012,1,23,26,4.7,1.4,0.8,-6.5,0.018000000000000002,0.083,0.16,0.536,0.105,2018-19 10545,John Wall,WAS,28.0,193.04,95.25432,Kentucky,USA,2010,1,1,32,20.7,3.6,8.7,-6.2,0.013000000000000001,0.087,0.28600000000000003,0.527,0.391,2018-19 10546,Johnathan Motley,LAC,24.0,208.28,104.32616,Baylor,USA,Undrafted,Undrafted,Undrafted,22,4.6,2.3,0.5,-8.9,0.10400000000000001,0.213,0.266,0.563,0.129,2018-19 10547,Johnathan Williams,LAL,24.0,205.74,103.418976,Gonzaga,USA,Undrafted,Undrafted,Undrafted,24,6.5,4.1,0.5,7.6,0.11599999999999999,0.13,0.158,0.599,0.051,2018-19 10548,Jon Leuer,DET,30.0,208.28,103.418976,Wisconsin,USA,2011,2,40,41,3.8,2.4,0.3,-13.3,0.062,0.182,0.157,0.616,0.06,2018-19 10549,Jonah Bolden,PHI,23.0,208.28,99.79024,None,Australia,2017,2,36,44,4.7,3.8,0.9,-1.8,0.067,0.17300000000000001,0.131,0.595,0.085,2018-19 10550,Jonas Jerebko,GSW,32.0,208.28,104.779752,None,Sweden,2009,2,39,73,6.3,3.9,1.3,1.5,0.055,0.168,0.14400000000000002,0.588,0.106,2018-19 10551,Jonas Valanciunas,MEM,27.0,213.36,120.20188,None,Lithuania,2011,1,5,49,15.6,8.6,1.4,2.7,0.096,0.268,0.27399999999999997,0.616,0.109,2018-19 10552,Jonathan Isaac,ORL,21.0,208.28,95.25432,Florida State,USA,2017,1,6,75,9.6,5.5,1.1,1.0,0.048,0.152,0.16,0.537,0.055,2018-19 10553,Jonathon Simmons,PHI,29.0,198.12,88.45044,Houston,USA,Undrafted,Undrafted,Undrafted,56,6.5,2.3,2.3,-5.3,0.024,0.09,0.182,0.466,0.175,2018-19 10554,Jalen Brunson,DAL,22.0,190.5,86.18248,Villanova,USA,2018,2,33,73,9.3,2.3,3.2,-2.8,0.015,0.087,0.18600000000000003,0.5489999999999999,0.223,2018-19 10555,Jusuf Nurkic,POR,24.0,213.36,124.7378,None,Bosnia and Herzegovina,2014,1,16,72,15.6,10.4,3.2,10.5,0.11900000000000001,0.24100000000000002,0.24100000000000002,0.57,0.168,2018-19 10556,Jakob Poeltl,SAS,23.0,213.36,104.32616,Utah,Austria,2016,1,9,77,5.5,5.3,1.2,3.9,0.136,0.171,0.125,0.64,0.099,2018-19 10557,Jahlil Okafor,NOP,23.0,210.82,124.7378,Duke,USA,2015,1,3,59,8.2,4.7,0.7,-5.5,0.084,0.196,0.198,0.603,0.064,2018-19 10558,Frank Mason,SAC,25.0,180.34,86.18248,Kansas,USA,2017,2,34,38,5.1,1.1,2.2,-14.5,0.013000000000000001,0.083,0.213,0.502,0.28,2018-19 10559,Frank Ntilikina,NYK,20.0,198.12,90.7184,None,France,2017,1,8,43,5.7,2.0,2.8,-8.5,0.012,0.08,0.163,0.41700000000000004,0.195,2018-19 10560,Fred VanVleet,TOR,25.0,182.88,88.45044,Wichita State,USA,Undrafted,Undrafted,Undrafted,64,11.0,2.6,4.8,8.1,0.012,0.078,0.177,0.539,0.243,2018-19 10561,Furkan Korkmaz,PHI,21.0,200.66,86.18248,None,Turkey,2016,1,26,48,5.8,2.2,1.1,3.7,0.023,0.13,0.174,0.528,0.107,2018-19 10562,Garrett Temple,LAC,33.0,198.12,88.45044,Louisiana State,USA,Undrafted,Undrafted,Undrafted,75,7.8,2.9,1.4,-1.6,0.013999999999999999,0.092,0.131,0.5429999999999999,0.075,2018-19 10563,Gary Clark,HOU,24.0,203.2,102.0582,None,USA,Undrafted,Undrafted,Undrafted,51,2.9,2.3,0.4,2.0,0.035,0.14400000000000002,0.106,0.48,0.04,2018-19 10564,Frank Kaminsky,CHA,26.0,213.36,109.769264,Wisconsin,USA,2015,1,9,47,8.6,3.5,1.3,0.9,0.048,0.16399999999999998,0.21600000000000003,0.5870000000000001,0.129,2018-19 10565,Gary Harris,DEN,24.0,193.04,95.25432,Michigan State,USA,2014,1,19,57,12.9,2.8,2.2,6.2,0.024,0.07,0.195,0.526,0.11,2018-19 10566,Gary Trent Jr.,POR,20.0,198.12,92.98635999999999,None,USA,Undrafted,Undrafted,Undrafted,15,2.7,0.7,0.3,-4.7,0.01,0.08,0.213,0.377,0.057,2018-19 10567,George Hill,MIL,33.0,190.5,85.275296,None,USA,2008,1,26,60,7.6,2.5,2.3,5.6,0.027999999999999997,0.075,0.147,0.5539999999999999,0.146,2018-19 10568,George King,PHX,25.0,198.12,99.79024,University of Colorado Boulder,USA,2018,2,59,1,0.0,1.0,0.0,-75.0,0.0,0.25,0.0,0.0,0.0,2018-19 10569,Georges Niang,UTA,26.0,203.2,104.32616,Iowa State,USA,2016,2,50,59,4.0,1.5,0.6,-7.7,0.022000000000000002,0.135,0.17,0.613,0.107,2018-19 10570,Gerald Green,HOU,33.0,200.66,92.98635999999999,None,USA,2005,1,18,73,9.2,2.5,0.5,4.6,0.019,0.1,0.19,0.555,0.040999999999999995,2018-19 10571,Giannis Antetokounmpo,MIL,24.0,210.82,109.769264,None,Greece,2013,1,15,72,27.7,12.5,5.9,12.5,0.066,0.273,0.314,0.644,0.294,2018-19 10572,Gary Payton II,WAS,26.0,190.5,86.18248,Oregon State,USA,Undrafted,Undrafted,Undrafted,3,3.7,0.7,1.3,25.8,0.067,0.05,0.214,0.688,0.33299999999999996,2018-19 10573,Glenn Robinson III,DET,25.0,198.12,100.697424,Michigan,USA,2014,2,40,47,4.2,1.5,0.4,-0.8,0.026000000000000002,0.08900000000000001,0.146,0.511,0.053,2018-19 10574,Frank Jackson,NOP,21.0,190.5,92.98635999999999,Duke,USA,2017,2,31,61,8.1,2.2,1.1,-5.0,0.019,0.085,0.17800000000000002,0.517,0.08,2018-19 10575,Evan Fournier,ORL,26.0,200.66,92.98635999999999,None,France,2012,1,20,81,15.1,3.2,3.6,1.7,0.013999999999999999,0.086,0.217,0.536,0.17,2018-19 10576,Dzanan Musa,BKN,20.0,205.74,94.34713599999999,None,Bosnia and Herzegovina,2018,1,29,9,2.1,0.6,0.2,10.6,0.019,0.105,0.25,0.415,0.083,2018-19 10577,E'Twaun Moore,NOP,30.0,193.04,86.636072,Purdue,USA,2011,2,55,53,11.9,2.4,1.9,-0.3,0.023,0.057999999999999996,0.17,0.5670000000000001,0.09300000000000001,2018-19 10578,Ed Davis,BKN,30.0,208.28,102.0582,North Carolina,USA,2010,1,13,81,5.8,8.6,0.8,4.3,0.135,0.307,0.125,0.632,0.064,2018-19 10579,Edmond Sumner,IND,23.0,198.12,79.83219199999998,Xavier,USA,2017,2,52,23,2.9,1.0,0.4,-7.8,0.038,0.065,0.157,0.44299999999999995,0.063,2018-19 10580,Ekpe Udoh,UTA,32.0,208.28,111.13004,Baylor,USA,2010,1,6,51,2.3,1.8,0.5,-7.7,0.09,0.18899999999999997,0.128,0.698,0.131,2018-19 10581,Elfrid Payton,NOP,25.0,193.04,83.91452,Louisana-Lafayette,USA,2014,1,10,42,10.6,5.2,7.6,-2.2,0.037000000000000005,0.129,0.177,0.502,0.318,2018-19 10582,Evan Turner,POR,30.0,200.66,99.79024,Ohio State,USA,2010,1,2,73,6.8,4.5,3.9,1.3,0.022000000000000002,0.16699999999999998,0.158,0.504,0.242,2018-19 10583,Elie Okobo,PHX,21.0,190.5,86.18248,None,France,2018,2,31,53,5.7,1.8,2.4,-9.9,0.012,0.092,0.168,0.489,0.198,2018-19 10584,Emmanuel Mudiay,NYK,23.0,195.58,90.7184,None,Democratic Republic of the Congo,2015,1,7,59,14.8,3.3,3.9,-10.8,0.019,0.098,0.248,0.531,0.242,2018-19 10585,Enes Kanter,POR,27.0,210.82,113.398, ,Turkey,2011,1,3,67,13.7,9.8,1.7,-6.2,0.138,0.245,0.21899999999999997,0.594,0.12,2018-19 10586,Eric Bledsoe,MIL,29.0,185.42,92.98635999999999,Kentucky,USA,2010,1,18,78,15.9,4.6,5.5,11.1,0.035,0.10800000000000001,0.225,0.5770000000000001,0.26,2018-19 10587,Eric Gordon,HOU,30.0,193.04,97.52228000000001,Indiana,USA,2008,1,7,68,16.2,2.2,1.9,8.1,0.006999999999999999,0.059000000000000004,0.215,0.5489999999999999,0.09,2018-19 10588,Eric Moreland,TOR,27.0,208.28,107.95489599999999,Oregon State,USA,Undrafted,Undrafted,Undrafted,5,1.4,4.0,0.8,-21.9,0.10800000000000001,0.348,0.11699999999999999,0.5,0.154,2018-19 10589,Ersan Ilyasova,MIL,32.0,208.28,106.59411999999999,None,Turkey,2005,2,36,67,6.8,4.5,0.8,9.7,0.071,0.151,0.151,0.5479999999999999,0.055999999999999994,2018-19 10590,Emanuel Terry,MIA,22.0,205.74,99.79024,None,USA,Undrafted,Undrafted,Undrafted,3,3.3,2.3,0.7,5.6,0.14300000000000002,0.235,0.183,0.5710000000000001,0.125,2018-19 10591,Goran Dragic,MIA,33.0,190.5,86.18248,None,Slovenia,2008,2,45,36,13.7,3.1,4.8,1.3,0.019,0.087,0.22399999999999998,0.517,0.259,2018-19 10592,Gordon Hayward,BOS,29.0,203.2,102.0582,Butler,USA,2010,1,9,72,11.5,4.5,3.4,5.1,0.026000000000000002,0.141,0.183,0.575,0.185,2018-19 10593,Gorgui Dieng,MIN,29.0,210.82,114.30518400000001,Louisville,Senegal,2013,1,21,76,6.4,4.1,0.9,-3.8,0.07200000000000001,0.225,0.19399999999999998,0.5720000000000001,0.106,2018-19 10594,Isaiah Thomas,DEN,30.0,175.26,83.91452,Washington,USA,2011,2,60,12,8.1,1.1,1.9,-5.5,0.023,0.04,0.27399999999999997,0.43700000000000006,0.198,2018-19 10595,Ish Smith,DET,30.0,182.88,79.3786,Wake Forest,USA,Undrafted,Undrafted,Undrafted,56,8.9,2.6,3.6,2.7,0.017,0.09699999999999999,0.193,0.485,0.243,2018-19 10596,Ivan Rabb,MEM,22.0,208.28,99.79024,"University of California, Berkeley",USA,2017,2,35,49,5.8,4.2,1.1,-6.2,0.09699999999999999,0.19699999999999998,0.166,0.586,0.12300000000000001,2018-19 10597,Ivica Zubac,LAC,22.0,215.9,108.86208,None,Croatia,2016,2,32,59,8.9,6.1,1.1,1.8,0.10800000000000001,0.21600000000000003,0.19899999999999998,0.604,0.09300000000000001,2018-19 10598,J.J. Barea,DAL,35.0,182.88,83.91452,Northeastern,Puerto Rico,Undrafted,Undrafted,Undrafted,38,10.9,2.5,5.6,3.2,0.016,0.106,0.263,0.495,0.45399999999999996,2018-19 10599,J.P. Macura,CHA,24.0,195.58,92.98635999999999,Xavier,USA,Undrafted,Undrafted,Undrafted,2,3.0,1.5,1.0,-2.2,0.0,0.14300000000000002,0.209,0.33299999999999996,0.2,2018-19 10600,Isaiah Hicks,NYK,24.0,205.74,104.32616,North Carolina,USA,Undrafted,Undrafted,Undrafted,3,4.0,2.3,0.7,-4.5,0.059000000000000004,0.147,0.153,0.588,0.11800000000000001,2018-19 10601,JJ Redick,PHI,35.0,193.04,90.7184,Duke,USA,2006,1,11,76,18.1,2.4,2.7,5.6,0.008,0.062,0.209,0.602,0.129,2018-19 10602,JaKarr Sampson,CHI,26.0,205.74,97.52228000000001,"St. John's, N.Y.",USA,Undrafted,Undrafted,Undrafted,4,20.0,8.0,1.0,-2.3,0.037000000000000005,0.196,0.23399999999999999,0.633,0.052000000000000005,2018-19 10603,JaMychal Green,LAC,29.0,205.74,102.965384,Alabama,USA,Undrafted,Undrafted,Undrafted,65,9.4,6.3,0.8,-5.8,0.071,0.218,0.185,0.5870000000000001,0.057999999999999996,2018-19 10604,JaVale McGee,LAL,31.0,213.36,122.46983999999999,Nevada-Reno,USA,2008,1,18,75,12.0,7.5,0.7,-4.4,0.11199999999999999,0.203,0.19699999999999998,0.634,0.045,2018-19 10605,Jabari Parker,WAS,24.0,203.2,111.13004,Duke,USA,2014,1,2,64,14.5,6.6,2.4,-6.2,0.045,0.187,0.23600000000000002,0.56,0.14,2018-19 10606,Jacob Evans,GSW,22.0,198.12,95.25432,Cincinnati,USA,2018,1,28,30,1.3,0.8,0.8,-5.9,0.028999999999999998,0.084,0.134,0.374,0.15,2018-19 10607,Jae Crowder,UTA,28.0,198.12,106.59411999999999,Marquette,USA,2012,2,34,80,11.9,4.8,1.7,4.4,0.027000000000000003,0.139,0.183,0.5379999999999999,0.09,2018-19 10608,JR Smith,CLE,33.0,198.12,102.0582,None,USA,2004,1,18,11,6.7,1.6,1.9,-3.4,0.0,0.08,0.17600000000000002,0.444,0.133,2018-19 10609,Isaiah Hartenstein,HOU,21.0,213.36,112.94440800000001,None,Germany,2017,2,43,28,1.9,1.7,0.5,9.6,0.08900000000000001,0.11800000000000001,0.11199999999999999,0.562,0.1,2018-19 10610,Isaiah Canaan,MIL,28.0,182.88,90.7184,Murray State,USA,2013,2,34,30,6.0,1.9,2.8,-12.3,0.01,0.086,0.147,0.518,0.19399999999999998,2018-19 10611,Isaiah Briscoe,ORL,23.0,190.5,97.52228000000001,None,USA,Undrafted,Undrafted,Undrafted,39,3.5,1.9,2.2,2.0,0.008,0.111,0.139,0.455,0.226,2018-19 10612,Grayson Allen,UTA,23.0,195.58,89.811216,Duke,USA,2018,1,21,38,5.6,0.6,0.7,-13.6,0.006999999999999999,0.047,0.23800000000000002,0.516,0.102,2018-19 10613,Greg Monroe,PHI,29.0,210.82,120.20188,Georgetown,USA,2010,1,7,43,5.3,4.0,0.6,-6.7,0.11900000000000001,0.218,0.21100000000000002,0.521,0.079,2018-19 10614,Guerschon Yabusele,BOS,23.0,203.2,117.93392,None,France,2016,1,16,41,2.3,1.3,0.4,-3.6,0.084,0.10400000000000001,0.168,0.542,0.08800000000000001,2018-19 10615,Hamidou Diallo,OKC,20.0,195.58,89.811216,Kentucky,USA,2018,2,45,51,3.7,1.9,0.3,-6.8,0.065,0.11,0.16,0.49700000000000005,0.044000000000000004,2018-19 10616,Harrison Barnes,SAC,27.0,203.2,102.0582,North Carolina,USA,2012,1,7,77,16.4,4.7,1.5,-1.5,0.021,0.111,0.20199999999999999,0.55,0.069,2018-19 10617,Harry Giles III,SAC,21.0,208.28,108.86208,Duke,USA,2017,1,20,58,7.0,3.8,1.5,-5.0,0.076,0.171,0.22699999999999998,0.526,0.155,2018-19 10618,Hassan Whiteside,MIA,30.0,213.36,120.20188,Marshall,USA,2010,2,33,72,12.3,11.3,0.8,0.8,0.139,0.305,0.215,0.564,0.054000000000000006,2018-19 10619,Haywood Highsmith,PHI,22.0,200.66,99.79024,None,USA,Undrafted,Undrafted,Undrafted,5,1.8,1.0,0.4,-27.6,0.0,0.14300000000000002,0.115,0.414,0.067,2018-19 10620,Henry Ellenson,NYK,22.0,210.82,111.13004,Marquette,USA,2016,1,18,19,6.0,3.5,0.8,-0.7,0.018000000000000002,0.214,0.18600000000000003,0.5379999999999999,0.096,2018-19 10621,Ian Clark,NOP,28.0,190.5,79.3786,Belmont,USA,Undrafted,Undrafted,Undrafted,60,6.7,1.5,1.6,-3.4,0.012,0.071,0.185,0.502,0.132,2018-19 10622,Ian Mahinmi,WAS,32.0,210.82,118.841104,None,France,2005,1,28,34,4.1,3.8,0.7,-3.2,0.08800000000000001,0.161,0.128,0.531,0.073,2018-19 10623,Ike Anigbogu,IND,20.0,208.28,113.398,UCLA,USA,2017,2,47,3,0.0,1.0,0.3,-14.3,0.14300000000000002,0.25,0.267,0.0,0.2,2018-19 10624,Iman Shumpert,HOU,29.0,195.58,97.52228000000001,Georgia Tech,USA,2011,1,17,62,7.5,3.0,1.8,-1.4,0.016,0.10099999999999999,0.14300000000000002,0.499,0.098,2018-19 10625,Isaac Bonga,LAL,19.0,203.2,81.64656,None,Germany,2018,2,39,22,0.9,1.1,0.7,7.0,0.064,0.113,0.151,0.24,0.163,2018-19 10626,Isaac Humphries,ATL,21.0,213.36,117.93392,Kentucky,Australia,Undrafted,Undrafted,Undrafted,5,3.0,2.2,0.0,-17.1,0.055,0.12300000000000001,0.142,0.35700000000000004,0.0,2018-19 10627,Jake Layman,POR,25.0,205.74,97.52228000000001,Maryland,USA,2016,2,47,71,7.6,3.1,0.7,2.0,0.040999999999999995,0.115,0.156,0.594,0.055999999999999994,2018-19 10628,Brandon Knight,CLE,27.0,190.5,88.45044,Kentucky,USA,2011,1,8,39,6.8,1.5,1.8,-12.0,0.012,0.07,0.17800000000000002,0.484,0.147,2018-19 10629,Zhou Qi,HOU,23.0,215.9,95.25432,None,China,2016,2,43,1,2.0,0.0,0.0,-66.7,0.0,0.0,0.33299999999999996,1.0,0.0,2018-19 10630,Zhaire Smith,PHI,20.0,193.04,90.264808,Texas Tech,USA,2018,1,16,6,6.7,2.2,1.7,7.3,0.027999999999999997,0.087,0.166,0.5329999999999999,0.10099999999999999,2018-19 10631,Fred VanVleet,TOR,26.0,185.42,89.357624,Wichita State,USA,Undrafted,Undrafted,Undrafted,54,17.6,3.8,6.6,4.8,0.009000000000000001,0.08800000000000001,0.218,0.5529999999999999,0.281,2019-20 10632,Furkan Korkmaz,PHI,22.0,200.66,91.625584,None,Turkey,2016,1,26,72,9.8,2.3,1.1,2.7,0.011000000000000001,0.09300000000000001,0.177,0.579,0.073,2019-20 10633,Gabe Vincent,MIA,24.0,190.5,90.7184,California-Santa Barbara,USA,Undrafted,Undrafted,Undrafted,9,2.4,0.6,0.7,-15.9,0.0,0.053,0.196,0.297,0.12,2019-20 10634,Garrett Temple,BKN,34.0,195.58,88.45044,Louisiana State,USA,Undrafted,Undrafted,Undrafted,62,10.3,3.5,2.5,-1.4,0.015,0.096,0.162,0.513,0.132,2019-20 10635,Garrison Mathews,WAS,23.0,195.58,97.52228000000001,Lipscomb,USA,Undrafted,Undrafted,Undrafted,18,5.4,1.3,0.6,7.1,0.025,0.075,0.13699999999999998,0.691,0.063,2019-20 10636,Gary Clark,ORL,25.0,198.12,102.0582,Cincinnati,USA,Undrafted,Undrafted,Undrafted,42,3.7,2.6,0.4,-5.1,0.057999999999999996,0.11599999999999999,0.105,0.568,0.043,2019-20 10637,Gary Harris,DEN,25.0,193.04,95.25432,Michigan State,USA,2014,1,19,56,10.4,2.9,2.1,3.4,0.015,0.077,0.15,0.519,0.091,2019-20 10638,Gary Payton II,WAS,27.0,190.5,88.45044,Oregon State,USA,Undrafted,Undrafted,Undrafted,29,3.9,2.8,1.7,-14.3,0.053,0.127,0.129,0.473,0.158,2019-20 10639,Gary Trent Jr.,POR,21.0,195.58,94.800728,Duke,USA,2018,2,37,61,8.9,1.6,1.0,-1.4,0.017,0.052000000000000005,0.15,0.5870000000000001,0.064,2019-20 10640,George Hill,MIL,34.0,190.5,85.275296,Indiana-Purdue Indianapolis,USA,2008,1,26,59,9.4,3.0,3.1,10.6,0.038,0.086,0.152,0.659,0.196,2019-20 10641,Georges Niang,UTA,27.0,200.66,104.32616,Iowa State,USA,2016,2,50,66,5.9,1.9,0.7,-1.1,0.015,0.11699999999999999,0.163,0.589,0.069,2019-20 10642,Giannis Antetokounmpo,MIL,25.0,210.82,109.769264,None,Greece,2013,1,15,63,29.5,13.6,5.6,15.4,0.068,0.307,0.363,0.613,0.32799999999999996,2019-20 10643,Glenn Robinson III,PHI,26.0,198.12,100.697424,Michigan,USA,2014,2,40,62,11.7,4.4,1.5,-7.8,0.043,0.106,0.16,0.5770000000000001,0.081,2019-20 10644,Goga Bitadze,IND,20.0,210.82,113.398,None,Georgia,2019,1,18,54,3.2,2.0,0.4,-1.4,0.052000000000000005,0.146,0.17,0.523,0.066,2019-20 10645,Goran Dragic,MIA,34.0,190.5,86.18248,None,Slovenia,2008,2,45,59,16.2,3.2,5.1,3.5,0.017,0.09,0.248,0.573,0.297,2019-20 10646,Gordon Hayward,BOS,30.0,200.66,102.0582,Butler,USA,2010,1,9,52,17.5,6.7,4.1,8.5,0.031,0.159,0.20600000000000002,0.595,0.17800000000000002,2019-20 10647,Gorgui Dieng,MEM,30.0,208.28,114.30518400000001,Louisville,Senegal,2013,1,21,63,7.4,5.6,1.2,-3.6,0.07400000000000001,0.221,0.175,0.568,0.107,2019-20 10648,Grant Williams,BOS,21.0,198.12,107.047712,Tennessee,USA,2019,1,22,69,3.4,2.6,1.0,6.3,0.053,0.106,0.11199999999999999,0.505,0.085,2019-20 10649,Grayson Allen,MEM,24.0,193.04,89.811216,Duke,USA,2018,1,21,38,8.7,2.2,1.4,-6.0,0.01,0.10300000000000001,0.171,0.609,0.10400000000000001,2019-20 10650,Hamidou Diallo,OKC,21.0,195.58,91.625584,Kentucky,USA,2018,2,45,46,6.9,3.6,0.8,0.9,0.046,0.124,0.17300000000000001,0.491,0.06,2019-20 10651,Harrison Barnes,SAC,28.0,203.2,102.0582,North Carolina,USA,2012,1,7,72,14.5,4.9,2.2,-2.5,0.03,0.111,0.172,0.574,0.092,2019-20 10652,Harry Giles III,SAC,22.0,210.82,108.86208,Duke,USA,2017,1,20,46,6.9,4.1,1.3,-8.2,0.065,0.24100000000000002,0.20600000000000002,0.58,0.135,2019-20 10653,Hassan Whiteside,POR,31.0,213.36,120.20188,Marshall,USA,2010,2,33,67,15.5,13.5,1.2,2.7,0.12300000000000001,0.294,0.192,0.644,0.057999999999999996,2019-20 10654,Henry Ellenson,BKN,23.0,208.28,108.86208,Marquette,USA,2016,1,18,5,0.4,1.2,0.2,27.3,0.111,0.19,0.159,0.14300000000000002,0.125,2019-20 10655,Ian Mahinmi,WAS,33.0,210.82,118.841104,None,France,2005,1,28,38,7.4,5.7,1.3,-4.5,0.08900000000000001,0.17600000000000002,0.154,0.545,0.084,2019-20 10656,Ignas Brazdeikis,NYK,21.0,198.12,100.243832,Michigan,Canada,2019,2,47,9,1.9,0.6,0.4,-7.1,0.036000000000000004,0.068,0.218,0.35100000000000003,0.114,2019-20 10657,Iman Shumpert,BKN,30.0,195.58,96.16150400000001,Georgia Tech,USA,2011,1,17,13,4.2,2.6,0.9,-9.0,0.035,0.092,0.134,0.40299999999999997,0.078,2019-20 10658,Isaac Bonga,WAS,20.0,203.2,81.64656,None,Germany,2018,2,39,66,5.0,3.4,1.2,-0.4,0.052000000000000005,0.121,0.106,0.608,0.081,2019-20 10659,Isaiah Hartenstein,HOU,22.0,213.36,113.398,None,Germany,2017,2,43,23,4.7,3.9,0.8,8.7,0.107,0.2,0.14400000000000002,0.674,0.095,2019-20 10660,Frank Ntilikina,NYK,21.0,193.04,90.7184,None,France,2017,1,8,57,6.3,2.1,3.0,-3.9,0.018000000000000002,0.08199999999999999,0.152,0.49700000000000005,0.209,2019-20 10661,Isaiah Roby,OKC,22.0,203.2,104.32616,Nebraska-Lincoln,USA,2019,2,45,3,0.0,0.7,0.0,-11.5,0.0,0.16699999999999998,0.071,0.0,0.0,2019-20 10662,Frank Mason,MIL,26.0,180.34,86.18248,Kansas,USA,2017,2,34,9,6.9,2.1,3.2,-1.8,0.034,0.09699999999999999,0.228,0.53,0.37200000000000005,2019-20 10663,Frank Jackson,NOP,22.0,190.5,92.98635999999999,Duke,USA,2017,2,31,59,6.3,1.4,1.0,-3.4,0.025,0.07,0.203,0.51,0.107,2019-20 10664,Domantas Sabonis,IND,24.0,210.82,108.86208,Gonzaga,Lithuania,2016,1,11,62,18.5,12.4,5.0,3.1,0.08900000000000001,0.262,0.22899999999999998,0.586,0.215,2019-20 10665,Donovan Mitchell,UTA,23.0,185.42,97.52228000000001,Louisville,USA,2017,1,13,69,24.0,4.4,4.3,2.6,0.023,0.10099999999999999,0.303,0.5579999999999999,0.214,2019-20 10666,Donta Hall,BKN,22.0,205.74,103.872568,Alabama,USA,Undrafted,Undrafted,Undrafted,9,4.3,4.2,0.4,-12.0,0.09300000000000001,0.19699999999999998,0.109,0.652,0.048,2019-20 10667,Donte DiVincenzo,MIL,23.0,193.04,92.079176,Villanova,USA,2018,1,17,66,9.2,4.8,2.3,12.2,0.040999999999999995,0.14,0.168,0.557,0.134,2019-20 10668,Dorian Finney-Smith,DAL,27.0,200.66,99.79024,Florida,USA,Undrafted,Undrafted,Undrafted,71,9.5,5.7,1.6,6.5,0.066,0.113,0.128,0.595,0.073,2019-20 10669,Doug McDermott,IND,28.0,200.66,102.0582,Creighton,USA,2014,1,11,69,10.3,2.5,1.1,3.2,0.018000000000000002,0.098,0.18600000000000003,0.62,0.081,2019-20 10670,Dragan Bender,GSW,22.0,213.36,112.94440800000001,None,Croatia,2016,1,4,16,6.7,4.6,1.8,1.1,0.06,0.183,0.18,0.545,0.142,2019-20 10671,Draymond Green,GSW,30.0,198.12,104.32616,Michigan State,USA,2012,2,35,43,8.0,6.2,6.2,-7.2,0.018000000000000002,0.192,0.156,0.489,0.31,2019-20 10672,Drew Eubanks,SAS,23.0,205.74,111.13004,Oregon State,USA,Undrafted,Undrafted,Undrafted,22,4.9,3.9,0.7,-11.0,0.099,0.203,0.15,0.682,0.08900000000000001,2019-20 10673,Duncan Robinson,MIA,26.0,200.66,97.52228000000001,Michigan,USA,Undrafted,Undrafted,Undrafted,73,13.5,3.2,1.4,7.5,0.005,0.099,0.157,0.684,0.068,2019-20 10674,Dusty Hannahs,MEM,26.0,190.5,95.25432,Arkansas,USA,2017,Undrafted,Undrafted,2,6.0,0.5,0.0,17.2,0.0,0.063,0.28600000000000003,0.607,0.0,2019-20 10675,Dwayne Bacon,CHA,24.0,198.12,100.243832,Florida State,USA,2017,2,40,39,5.7,2.6,1.3,-8.2,0.02,0.124,0.18899999999999997,0.419,0.121,2019-20 10676,Dwight Howard,LAL,34.0,208.28,120.20188,None,USA,2004,1,1,69,7.5,7.3,0.7,5.9,0.128,0.257,0.146,0.696,0.048,2019-20 10677,Dwight Powell,DAL,28.0,208.28,108.86208,Stanford,Canada,2014,2,45,40,9.4,5.7,1.5,8.9,0.071,0.132,0.126,0.677,0.076,2019-20 10678,Dzanan Musa,BKN,21.0,205.74,98.429464,None,Bosnia and Herzegovina,2018,1,29,40,4.8,2.2,1.1,-2.5,0.039,0.11699999999999999,0.193,0.484,0.131,2019-20 10679,E'Twaun Moore,NOP,31.0,190.5,86.636072,Purdue,USA,2011,2,55,56,8.3,2.3,1.4,-2.2,0.027000000000000003,0.095,0.196,0.51,0.11,2019-20 10680,Ed Davis,UTA,31.0,205.74,98.88305600000001,North Carolina,USA,2010,1,13,28,1.8,3.8,0.4,-15.2,0.107,0.23399999999999999,0.092,0.489,0.062,2019-20 10681,Edmond Sumner,IND,24.0,193.04,88.904032,Xavier,USA,2017,2,52,31,4.9,1.5,1.8,-2.6,0.024,0.073,0.16699999999999998,0.491,0.16699999999999998,2019-20 10682,Elfrid Payton,NYK,26.0,190.5,88.45044,Louisana-Lafayette,USA,2014,1,10,45,10.0,4.7,7.2,-3.0,0.039,0.126,0.19,0.47,0.34700000000000003,2019-20 10683,Elie Okobo,PHX,22.0,190.5,86.18248,None,France,2018,2,31,55,4.0,1.6,2.1,-3.2,0.022000000000000002,0.102,0.147,0.516,0.22699999999999998,2019-20 10684,Emmanuel Mudiay,UTA,24.0,190.5,90.7184,None,DRC,2015,1,7,54,7.3,2.3,2.1,-2.0,0.021,0.11699999999999999,0.218,0.5429999999999999,0.212,2019-20 10685,Enes Kanter,BOS,28.0,208.28,113.398,None,Turkey,2011,1,3,58,8.1,7.4,1.0,9.9,0.158,0.257,0.18600000000000003,0.599,0.084,2019-20 10686,Eric Bledsoe,MIL,30.0,185.42,97.068688,Kentucky,USA,2010,1,18,61,14.9,4.6,5.4,11.8,0.025,0.121,0.233,0.5710000000000001,0.275,2019-20 10687,Eric Gordon,HOU,31.0,190.5,97.52228000000001,Indiana,USA,2008,1,7,36,14.4,2.0,1.5,0.4,0.008,0.055999999999999994,0.215,0.51,0.08,2019-20 10688,Eric Mika,SAC,25.0,208.28,105.68693600000002,Brigham Young,USA,2017,Undrafted,Undrafted,1,6.0,7.0,0.0,19.5,0.111,0.263,0.08900000000000001,0.773,0.0,2019-20 10689,Eric Paschall,GSW,23.0,198.12,115.66596000000001,Villanova,USA,2019,2,41,60,14.0,4.6,2.1,-10.6,0.047,0.11599999999999999,0.207,0.5710000000000001,0.126,2019-20 10690,Ersan Ilyasova,MIL,33.0,205.74,106.59411999999999,None,Turkey,2005,2,36,63,6.6,4.8,0.8,4.2,0.059000000000000004,0.212,0.158,0.589,0.065,2019-20 10691,Evan Fournier,ORL,27.0,200.66,92.98635999999999,None,France,2012,1,20,66,18.5,2.6,3.2,-1.8,0.008,0.07400000000000001,0.237,0.595,0.16,2019-20 10692,Evan Turner,MIN,31.0,198.12,99.79024,Ohio State,USA,2010,1,2,19,3.3,2.0,2.0,-11.4,0.027999999999999997,0.107,0.154,0.424,0.235,2019-20 10693,Frank Kaminsky,PHX,27.0,213.36,108.86208,Wisconsin,USA,2015,1,9,39,9.7,4.5,1.9,-1.0,0.043,0.179,0.204,0.545,0.14400000000000002,2019-20 10694,Dion Waiters,LAL,28.0,190.5,95.25432,Syracuse,USA,2012,1,4,10,11.1,2.4,2.0,7.8,0.009000000000000001,0.102,0.243,0.521,0.156,2019-20 10695,Isaiah Thomas,WAS,31.0,175.26,83.91452,Washington,USA,2011,2,60,40,12.2,1.7,3.7,-10.4,0.011000000000000001,0.063,0.23600000000000002,0.531,0.22399999999999998,2019-20 10696,Ivica Zubac,LAC,23.0,213.36,108.86208,None,Croatia,2016,2,32,72,8.3,7.5,1.1,8.9,0.14,0.24,0.163,0.6509999999999999,0.091,2019-20 10697,Jaylen Hoard,POR,21.0,203.2,97.975872,Wake Forest,France,Undrafted,Undrafted,Undrafted,13,2.9,2.5,0.3,3.0,0.111,0.158,0.153,0.504,0.054000000000000006,2019-20 10698,Jaylen Nowell,MIN,20.0,193.04,91.171992,Washington,USA,2019,2,43,15,3.8,0.9,1.3,1.2,0.016,0.065,0.165,0.47100000000000003,0.19399999999999998,2019-20 10699,Jayson Tatum,BOS,22.0,203.2,95.25432,Duke,USA,2017,1,3,66,23.4,7.0,3.0,10.6,0.027000000000000003,0.165,0.28,0.5670000000000001,0.14300000000000002,2019-20 10700,Jeff Green,HOU,33.0,203.2,106.59411999999999,Georgetown,USA,2007,1,5,48,9.4,2.8,1.0,-3.8,0.024,0.10800000000000001,0.188,0.59,0.08199999999999999,2019-20 10701,Jeff Teague,ATL,32.0,190.5,88.45044,Wake Forest,USA,2009,1,19,59,10.9,2.4,5.2,-5.7,0.017,0.07400000000000001,0.192,0.557,0.306,2019-20 10702,Jerami Grant,DEN,26.0,203.2,95.25432,Syracuse,USA,2014,2,39,71,12.0,3.5,1.2,-2.1,0.031,0.099,0.177,0.591,0.068,2019-20 10703,Jeremiah Martin,BKN,24.0,187.96,83.91452,Memphis,USA,Undrafted,Undrafted,Undrafted,9,7.1,1.1,2.0,-8.4,0.01,0.08900000000000001,0.268,0.541,0.3,2019-20 10704,Jeremy Lamb,IND,28.0,195.58,81.64656,Connecticut,USA,2012,1,12,46,12.5,4.3,2.1,-0.9,0.019,0.135,0.195,0.547,0.107,2019-20 10705,Jeremy Pargo,GSW,34.0,187.96,99.336648,Gonzaga,USA,2009,0,0,3,8.3,1.0,2.7,2.4,0.024,0.048,0.268,0.557,0.308,2019-20 10706,Jerian Grant,WAS,27.0,193.04,89.811216,Notre Dame,USA,2015,1,19,6,4.5,1.0,1.5,-3.6,0.022000000000000002,0.055999999999999994,0.166,0.449,0.161,2019-20 10707,Jerome Robinson,WAS,23.0,193.04,86.18248,Boston College,USA,2018,1,13,63,5.1,2.0,1.4,-1.0,0.012,0.11,0.155,0.47600000000000003,0.12300000000000001,2019-20 10708,Jevon Carter,PHX,24.0,185.42,90.7184,West Virginia,USA,2018,2,32,58,4.9,2.0,1.4,0.7,0.031,0.09,0.127,0.563,0.129,2019-20 10709,Jimmy Butler,MIA,30.0,200.66,104.32616,Marquette,USA,2011,1,30,58,19.9,6.7,6.0,5.2,0.055,0.139,0.24600000000000002,0.585,0.28300000000000003,2019-20 10710,Joakim Noah,LAC,35.0,210.82,105.23334399999999,Florida,USA,2007,1,9,5,2.8,3.2,1.4,-14.6,0.091,0.16899999999999998,0.14,0.608,0.259,2019-20 10711,Joe Chealey,CHA,24.0,193.04,86.18248,College of Charleston,USA,2018,Undrafted,Undrafted,4,0.5,0.0,0.3,-23.4,0.0,0.0,0.128,0.127,0.063,2019-20 10712,Joe Harris,BKN,28.0,198.12,99.79024,Virginia,USA,2014,2,33,69,14.5,4.3,2.1,0.9,0.027999999999999997,0.102,0.179,0.606,0.1,2019-20 10713,Joe Ingles,UTA,32.0,200.66,99.79024,None,Australia,Undrafted,Undrafted,Undrafted,72,9.8,3.9,5.2,5.1,0.013000000000000001,0.11199999999999999,0.14800000000000002,0.595,0.244,2019-20 10714,Joel Embiid,PHI,26.0,213.36,127.00576000000001,Kansas,Cameroon,2014,1,3,51,23.0,11.6,3.0,5.2,0.091,0.27899999999999997,0.315,0.59,0.17800000000000002,2019-20 10715,John Collins,ATL,22.0,205.74,106.59411999999999,Wake Forest,USA,2017,1,19,41,21.6,10.1,1.5,-5.1,0.08,0.20800000000000002,0.22399999999999998,0.659,0.075,2019-20 10716,John Henson,DET,29.0,205.74,99.336648,North Carolina,USA,2012,1,14,40,5.5,4.1,1.4,-0.7,0.077,0.191,0.16,0.578,0.133,2019-20 10717,John Konchar,MEM,24.0,195.58,95.25432,Indiana-Purdue Fort Wayne,USA,Undrafted,Undrafted,Undrafted,19,2.8,2.5,1.2,4.9,0.09300000000000001,0.152,0.09699999999999999,0.713,0.161,2019-20 10718,Johnathan Motley,LAC,25.0,203.2,104.32616,Baylor,USA,Undrafted,Undrafted,Undrafted,13,2.2,0.8,0.6,5.7,0.077,0.18899999999999997,0.235,0.774,0.308,2019-20 10719,Johnathan Williams,WAS,25.0,205.74,103.418976,Gonzaga,USA,Undrafted,Undrafted,Undrafted,15,3.0,4.3,0.5,-11.6,0.11900000000000001,0.215,0.1,0.5660000000000001,0.064,2019-20 10720,Jonah Bolden,PHX,24.0,203.2,102.0582,UCLA,Australia,2017,2,36,7,1.4,1.3,0.0,-3.2,0.064,0.14,0.13,0.392,0.0,2019-20 10721,Jonas Valanciunas,MEM,28.0,210.82,120.20188,None,Lithuania,2011,1,5,70,14.9,11.3,1.9,0.3,0.11,0.27899999999999997,0.21100000000000002,0.631,0.109,2019-20 10722,Jonathan Isaac,ORL,22.0,210.82,104.32616,Florida State,USA,2017,1,6,34,11.9,6.8,1.4,0.7,0.055999999999999994,0.177,0.18100000000000002,0.552,0.07400000000000001,2019-20 10723,Jordan Bell,CLE,25.0,203.2,97.975872,Oregon,USA,2017,2,38,29,3.2,2.8,0.6,-1.6,0.11,0.187,0.159,0.5770000000000001,0.09,2019-20 10724,Jordan Bone,DET,22.0,190.5,81.64656,Tennessee,USA,2019,2,57,10,1.2,0.4,0.8,-2.9,0.0,0.091,0.171,0.3,0.235,2019-20 10725,Jordan Clarkson,UTA,28.0,193.04,87.996848,Missouri,USA,2014,2,46,71,15.2,2.6,1.9,-0.5,0.027999999999999997,0.078,0.254,0.574,0.13,2019-20 10726,Jaylen Brown,BOS,23.0,198.12,101.151016,California,USA,2016,1,3,57,20.3,6.4,2.1,6.9,0.031,0.149,0.245,0.583,0.095,2019-20 10727,Ish Smith,WAS,31.0,182.88,79.3786,Wake Forest,USA,Undrafted,Undrafted,Undrafted,68,10.9,3.2,4.9,-3.9,0.015,0.10300000000000001,0.18600000000000003,0.509,0.266,2019-20 10728,Jaxson Hayes,NOP,20.0,210.82,99.79024,Texas-Austin,USA,2019,1,8,64,7.4,4.0,0.9,-1.8,0.085,0.14,0.146,0.6890000000000001,0.07400000000000001,2019-20 10729,Jarrod Uthoff,WAS,27.0,205.74,99.79024,Iowa,USA,Undrafted,Undrafted,Undrafted,7,2.7,0.9,0.0,8.1,0.032,0.07400000000000001,0.141,0.503,0.0,2019-20 10730,J.J. Barea,DAL,36.0,177.8,81.64656,Northeastern,Puerto Rico,Undrafted,Undrafted,Undrafted,29,7.7,1.8,3.9,2.9,0.022000000000000002,0.09699999999999999,0.245,0.512,0.365,2019-20 10731,J.P. Macura,CLE,25.0,193.04,92.079176,Xavier,USA,2018,Undrafted,Undrafted,1,0.0,0.0,0.0,150.0,0.0,0.0,0.0,0.0,0.0,2019-20 10732,JJ Redick,NOP,36.0,190.5,90.7184,Duke,USA,2006,1,11,60,15.3,2.5,2.0,-1.0,0.006,0.083,0.19699999999999998,0.644,0.107,2019-20 10733,JR Smith,LAL,34.0,198.12,99.79024,No College,USA,2004,1,18,6,2.8,0.8,0.5,-16.7,0.0,0.06,0.14400000000000002,0.37200000000000005,0.055999999999999994,2019-20 10734,Ja Morant,MEM,20.0,190.5,78.92500799999999,Murray State,USA,2019,1,2,67,17.8,3.9,7.3,-0.6,0.024,0.09,0.256,0.556,0.354,2019-20 10735,JaKarr Sampson,IND,27.0,200.66,97.068688,St. John's,USA,Undrafted,Undrafted,Undrafted,34,4.6,2.6,0.6,1.9,0.042,0.141,0.126,0.615,0.057999999999999996,2019-20 10736,JaMychal Green,LAC,30.0,203.2,102.965384,Alabama,USA,Undrafted,Undrafted,Undrafted,63,6.8,6.2,0.8,5.0,0.055,0.209,0.132,0.5760000000000001,0.051,2019-20 10737,JaVale McGee,LAL,32.0,213.36,122.46983999999999,Nevada-Reno,USA,2008,1,18,68,6.6,5.7,0.5,5.8,0.111,0.218,0.145,0.652,0.044000000000000004,2019-20 10738,Jabari Parker,SAC,25.0,203.2,111.13004,Duke,USA,2014,1,2,38,14.0,5.6,1.8,-4.9,0.065,0.17,0.233,0.5710000000000001,0.11,2019-20 10739,Jacob Evans,MIN,23.0,193.04,95.25432,Cincinnati,USA,2018,1,28,29,4.4,1.4,1.1,-11.0,0.019,0.077,0.16699999999999998,0.436,0.12,2019-20 10740,Jae Crowder,MIA,29.0,198.12,106.59411999999999,Marquette,USA,2012,2,34,65,10.5,5.9,2.5,-2.9,0.026000000000000002,0.16899999999999998,0.152,0.5529999999999999,0.11699999999999999,2019-20 10741,Jahlil Okafor,NOP,24.0,208.28,122.46983999999999,Duke,USA,2015,1,3,30,8.1,4.2,1.2,-10.1,0.094,0.16399999999999998,0.195,0.642,0.121,2019-20 10742,Jake Layman,MIN,26.0,203.2,94.800728,Maryland,USA,2016,2,47,23,9.1,2.5,0.7,2.0,0.03,0.075,0.165,0.544,0.040999999999999995,2019-20 10743,Jakob Poeltl,SAS,24.0,215.9,111.13004,Utah,Austria,2016,1,9,66,5.6,5.7,1.8,5.7,0.10800000000000001,0.19399999999999998,0.125,0.612,0.126,2019-20 10744,Jalen Brunson,DAL,23.0,185.42,86.18248,Villanova,USA,2018,2,33,57,8.2,2.4,3.3,7.6,0.021,0.1,0.19899999999999998,0.5529999999999999,0.265,2019-20 10745,Jalen Lecque,PHX,20.0,193.04,83.91452,None,USA,Undrafted,Undrafted,Undrafted,5,2.0,0.4,0.4,-20.2,0.0,0.057,0.18600000000000003,0.46,0.11800000000000001,2019-20 10746,Jalen McDaniels,CHA,22.0,208.28,92.98635999999999,San Diego State,USA,2019,2,52,16,5.6,4.1,0.8,-3.6,0.05,0.172,0.131,0.574,0.069,2019-20 10747,Jamal Crawford,BKN,40.0,195.58,90.7184,Michigan,USA,2000,1,8,1,5.0,0.0,3.0,26.7,0.0,0.0,0.235,0.625,0.5,2019-20 10748,Jamal Murray,DEN,23.0,193.04,97.52228000000001,Kentucky,Canada,2016,1,7,59,18.5,4.0,4.8,5.3,0.024,0.10099999999999999,0.248,0.5589999999999999,0.228,2019-20 10749,James Ennis III,ORL,29.0,198.12,97.52228000000001,California State-Long Beach,USA,2013,2,50,69,6.6,3.6,0.9,0.1,0.055,0.13699999999999998,0.151,0.565,0.067,2019-20 10750,James Harden,HOU,30.0,195.58,99.79024,Arizona State,USA,2009,1,3,68,34.3,6.6,7.5,5.8,0.026000000000000002,0.139,0.35600000000000004,0.626,0.366,2019-20 10751,James Johnson,MIN,33.0,200.66,108.86208,Wake Forest,USA,2009,1,16,32,8.4,3.7,2.3,-4.6,0.038,0.145,0.18600000000000003,0.5720000000000001,0.177,2019-20 10752,Jared Dudley,LAL,34.0,198.12,107.501304,Boston College,USA,2007,1,22,45,1.5,1.2,0.6,3.3,0.017,0.11900000000000001,0.081,0.5579999999999999,0.10400000000000001,2019-20 10753,Jared Harper,NYK,22.0,177.8,79.3786,Auburn,USA,Undrafted,Undrafted,Undrafted,3,0.7,0.0,0.0,-61.1,0.0,0.0,0.222,0.25,0.0,2019-20 10754,Jaren Jackson Jr.,MEM,20.0,210.82,109.769264,Michigan State,USA,2018,1,4,57,17.4,4.6,1.4,-2.6,0.033,0.12,0.23800000000000002,0.593,0.073,2019-20 10755,Jarred Vanderbilt,MIN,21.0,205.74,97.068688,Kentucky,USA,2018,2,41,11,1.1,0.8,0.2,-23.4,0.065,0.14300000000000002,0.133,0.6759999999999999,0.057,2019-20 10756,Jarrell Brantley,UTA,24.0,195.58,113.398,College of Charleston,USA,2019,2,50,9,2.7,2.2,1.2,-17.0,0.019,0.18899999999999997,0.155,0.41600000000000004,0.193,2019-20 10757,Jarrett Allen,BKN,22.0,210.82,110.22285600000001,Texas-Austin,USA,2017,1,22,70,11.1,9.6,1.6,0.9,0.10800000000000001,0.226,0.14800000000000002,0.664,0.086,2019-20 10758,Jarrett Culver,MIN,21.0,198.12,88.45044,Texas Tech,USA,2019,1,6,63,9.2,3.4,1.7,-3.3,0.040999999999999995,0.092,0.187,0.467,0.105,2019-20 10759,Javonte Green,BOS,26.0,193.04,92.98635999999999,Radford,USA,Undrafted,Undrafted,Undrafted,48,3.4,1.9,0.5,-2.6,0.051,0.134,0.149,0.564,0.079,2019-20 10760,Dillon Brooks,MEM,24.0,200.66,102.0582,Oregon,Canada,2017,2,45,73,16.2,3.3,2.1,-0.3,0.03,0.076,0.247,0.51,0.10400000000000001,2019-20 10761,Dewayne Dedmon,ATL,30.0,213.36,111.13004,Southern California,USA,Undrafted,Undrafted,Undrafted,44,5.8,5.7,0.5,-0.7,0.075,0.24100000000000002,0.179,0.473,0.040999999999999995,2019-20 10762,Dewan Hernandez,TOR,23.0,208.28,106.59411999999999,Miami,USA,2019,2,59,6,2.3,2.3,0.5,17.2,0.172,0.265,0.257,0.43200000000000005,0.125,2019-20 10763,Bismack Biyombo,CHA,27.0,203.2,115.66596000000001,None,DRC,2011,1,7,53,7.4,5.8,0.9,-6.6,0.11199999999999999,0.17800000000000002,0.168,0.57,0.079,2019-20 10764,Blake Griffin,DET,31.0,205.74,113.398,Oklahoma,USA,2009,1,1,18,15.5,4.7,3.3,-2.6,0.032,0.128,0.27699999999999997,0.47600000000000003,0.184,2019-20 10765,Boban Marjanovic,DAL,31.0,223.52,131.54168,None,Serbia,Undrafted,Undrafted,Undrafted,44,6.6,4.5,0.5,5.5,0.158,0.298,0.258,0.612,0.073,2019-20 10766,Bobby Portis,NYK,25.0,208.28,113.398,Arkansas,USA,2015,1,22,66,10.1,5.1,1.5,-7.9,0.053,0.18,0.207,0.53,0.11199999999999999,2019-20 10767,Bogdan Bogdanovic,SAC,27.0,198.12,99.79024,None,Serbia,2014,1,27,61,15.1,3.4,3.4,-1.7,0.013999999999999999,0.105,0.221,0.565,0.184,2019-20 10768,Bojan Bogdanovic,UTA,31.0,203.2,102.511792,None,Croatia,2011,2,31,63,20.2,4.1,2.1,5.5,0.02,0.1,0.252,0.603,0.099,2019-20 10769,Bol Bol,DEN,20.0,218.44,99.79024,Oregon,Sudan,2019,2,44,7,5.7,2.7,0.9,-9.8,0.057,0.171,0.20600000000000002,0.617,0.10300000000000001,2019-20 10770,Brad Wanamaker,BOS,30.0,190.5,95.25432,Pittsburgh,USA,Undrafted,Undrafted,Undrafted,71,6.9,2.0,2.5,5.0,0.016,0.08199999999999999,0.152,0.5770000000000001,0.18100000000000002,2019-20 10771,Bradley Beal,WAS,27.0,190.5,93.89354399999999,Florida,USA,2012,1,3,57,30.5,4.2,6.1,-4.5,0.024,0.095,0.33799999999999997,0.579,0.285,2019-20 10772,Brandon Clarke,MEM,23.0,203.2,97.52228000000001,Gonzaga,Canada,2019,1,21,58,12.1,5.9,1.4,-0.1,0.067,0.177,0.18,0.6629999999999999,0.092,2019-20 10773,Brandon Goodwin,ATL,24.0,182.88,81.64656,Florida Gulf Coast,USA,Undrafted,Undrafted,Undrafted,34,6.1,2.1,1.5,-13.8,0.023,0.132,0.22,0.507,0.20800000000000002,2019-20 10774,Brandon Ingram,NOP,22.0,200.66,86.18248,Duke,USA,2016,1,2,62,23.8,6.1,4.2,-1.3,0.023,0.14400000000000002,0.275,0.5870000000000001,0.192,2019-20 10775,Brandon Knight,DET,28.0,187.96,82.553744,Kentucky,USA,2011,1,8,25,7.3,1.6,2.8,-7.6,0.009000000000000001,0.09300000000000001,0.207,0.503,0.21600000000000003,2019-20 10776,Brian Bowen II,IND,21.0,198.12,86.18248,None,USA,Undrafted,Undrafted,Undrafted,6,1.0,1.2,0.0,15.7,0.032,0.162,0.14300000000000002,0.3,0.0,2019-20 10777,Brook Lopez,MIL,32.0,213.36,127.912944,Stanford,USA,2008,1,10,68,12.0,4.6,1.5,12.0,0.031,0.11800000000000001,0.18100000000000002,0.551,0.073,2019-20 10778,Bruce Brown,DET,23.0,193.04,91.625584,Miami,USA,2018,2,42,58,8.9,4.7,4.0,-4.3,0.038,0.131,0.159,0.518,0.20800000000000002,2019-20 10779,Bruno Caboclo,HOU,24.0,205.74,98.88305600000001,None,Brazil,2014,1,20,30,3.0,2.0,0.4,-5.1,0.081,0.145,0.17,0.484,0.076,2019-20 10780,Bruno Fernando,ATL,21.0,205.74,108.86208,Maryland,Angola,2019,2,34,56,4.3,3.5,0.9,-5.6,0.085,0.179,0.147,0.542,0.10099999999999999,2019-20 10781,Bryn Forbes,SAS,26.0,187.96,92.98635999999999,Michigan State,USA,Undrafted,Undrafted,Undrafted,63,11.2,2.0,1.7,-6.8,0.006999999999999999,0.071,0.185,0.57,0.09699999999999999,2019-20 10782,Buddy Hield,SAC,27.0,193.04,99.79024,Oklahoma,Bahamas,2016,1,6,72,19.2,4.6,3.0,-3.1,0.025,0.124,0.263,0.5660000000000001,0.153,2019-20 10783,CJ McCollum,POR,28.0,190.5,86.18248,Lehigh,USA,2013,1,10,70,22.2,4.2,4.4,0.5,0.017,0.09,0.257,0.541,0.185,2019-20 10784,CJ Miles,WAS,33.0,198.12,99.79024,None,USA,2005,2,34,10,6.4,1.2,1.2,-1.3,0.021,0.05,0.16899999999999998,0.47200000000000003,0.091,2019-20 10785,Caleb Martin,CHA,24.0,195.58,92.98635999999999,Nevada-Reno,USA,Undrafted,Undrafted,Undrafted,18,6.2,2.1,1.3,0.8,0.03,0.086,0.152,0.595,0.122,2019-20 10786,Caleb Swanigan,POR,23.0,205.74,117.93392,Purdue,USA,2017,1,26,27,2.4,3.7,1.1,-6.5,0.099,0.248,0.132,0.597,0.138,2019-20 10787,Cam Reddish,ATL,20.0,203.2,98.88305600000001,Duke,USA,2019,1,10,58,10.5,3.7,1.5,-6.3,0.021,0.11,0.185,0.5,0.079,2019-20 10788,Cameron Johnson,PHX,24.0,203.2,95.25432,North Carolina,USA,2019,1,11,57,8.8,3.3,1.2,1.0,0.037000000000000005,0.109,0.151,0.586,0.078,2019-20 10789,Cameron Payne,PHX,25.0,185.42,83.007336,Murray State,USA,2015,1,14,8,10.9,3.9,3.0,23.1,0.023,0.131,0.182,0.612,0.182,2019-20 10790,Caris LeVert,BKN,25.0,198.12,92.98635999999999,Michigan,USA,2016,1,20,45,18.7,4.2,4.4,0.2,0.034,0.096,0.284,0.514,0.242,2019-20 10791,Carmelo Anthony,POR,36.0,203.2,107.95489599999999,Syracuse,USA,2003,1,3,58,15.4,6.3,1.5,0.6,0.036000000000000004,0.145,0.214,0.525,0.063,2019-20 10792,Ben Simmons,PHI,23.0,208.28,108.86208,Louisiana State,Australia,2016,1,1,57,16.4,7.8,8.0,1.7,0.054000000000000006,0.159,0.20600000000000002,0.602,0.335,2019-20 10793,Carsen Edwards,BOS,22.0,180.34,90.7184,Purdue,USA,2019,2,33,37,3.3,1.3,0.6,-5.5,0.013999999999999999,0.107,0.171,0.444,0.111,2019-20 10794,Ben McLemore,HOU,27.0,190.5,88.45044,Kansas,USA,2013,1,7,71,10.1,2.2,0.8,5.0,0.012,0.079,0.157,0.622,0.05,2019-20 10795,BJ Johnson,ORL,24.0,200.66,90.7184,La Salle,USA,Undrafted,Undrafted,Undrafted,10,3.0,1.5,0.3,-8.1,0.033,0.136,0.201,0.41200000000000003,0.059000000000000004,2019-20 10796,Aaron Holiday,IND,23.0,182.88,83.91452,UCLA,USA,2018,1,23,66,9.5,2.4,3.4,2.2,0.013000000000000001,0.077,0.182,0.521,0.188,2019-20 10797,Abdel Nader,OKC,26.0,195.58,102.0582,Iowa State,Egypt,2016,2,58,55,6.3,1.8,0.7,-4.2,0.016,0.095,0.16399999999999998,0.591,0.068,2019-20 10798,Adam Mokoka,CHI,21.0,195.58,86.18248,None,France,Undrafted,Undrafted,Undrafted,11,2.9,0.9,0.4,17.1,0.057,0.028999999999999998,0.11,0.5379999999999999,0.043,2019-20 10799,Admiral Schofield,WAS,23.0,195.58,109.315672,Tennessee,United Kingdom,2019,2,42,33,3.0,1.4,0.5,-7.1,0.017,0.106,0.11800000000000001,0.502,0.057,2019-20 10800,Al Horford,PHI,34.0,205.74,108.86208,Florida,Dominican Republic,2007,1,3,67,11.9,6.8,4.0,3.3,0.051,0.171,0.17300000000000001,0.536,0.187,2019-20 10801,Al-Farouq Aminu,ORL,29.0,203.2,99.79024,Wake Forest,USA,2010,1,8,18,4.3,4.8,1.2,-5.4,0.053,0.158,0.127,0.395,0.08800000000000001,2019-20 10802,Alec Burks,PHI,28.0,198.12,97.068688,Colorado,USA,2011,1,12,66,15.0,4.3,2.9,-6.3,0.025,0.131,0.23,0.561,0.179,2019-20 10803,Alen Smailagic,GSW,19.0,208.28,97.52228000000001,None,Serbia,2019,2,39,14,4.2,1.9,0.9,-3.0,0.077,0.11,0.175,0.61,0.133,2019-20 10804,Alex Caruso,LAL,26.0,195.58,84.368112,Texas A&M,USA,Undrafted,Undrafted,Undrafted,64,5.5,1.9,1.9,9.8,0.013999999999999999,0.085,0.136,0.525,0.138,2019-20 10805,Alex Len,SAC,27.0,213.36,113.398,Maryland,Ukraine,2013,1,5,55,8.0,5.8,0.9,-5.4,0.094,0.20199999999999999,0.17600000000000002,0.6,0.083,2019-20 10806,Alfonzo McKinnie,CLE,27.0,200.66,97.52228000000001,Wisconsin-Green Bay,USA,Undrafted,Undrafted,Undrafted,40,4.6,2.8,0.4,-7.4,0.061,0.131,0.147,0.493,0.032,2019-20 10807,Alize Johnson,IND,24.0,200.66,96.16150400000001,Missouri State,USA,2018,2,50,17,2.0,2.8,0.4,8.9,0.122,0.24100000000000002,0.133,0.509,0.075,2019-20 10808,Allen Crabbe,MIN,28.0,195.58,96.16150400000001,California,USA,2013,2,31,37,4.6,2.1,0.9,-15.0,0.013999999999999999,0.098,0.122,0.47,0.073,2019-20 10809,Allonzo Trier,NYK,24.0,193.04,90.7184,Arizona,USA,2018,Undrafted,Undrafted,24,6.5,1.2,1.2,-11.1,0.018000000000000002,0.078,0.20800000000000002,0.62,0.16399999999999998,2019-20 10810,Amile Jefferson,ORL,27.0,205.74,100.697424,Duke,USA,2017,Undrafted,Undrafted,18,0.8,1.3,0.2,8.5,0.11199999999999999,0.163,0.129,0.37200000000000005,0.078,2019-20 10811,Amir Coffey,LAC,23.0,200.66,95.25432,Minnesota,USA,Undrafted,Undrafted,Undrafted,18,3.2,0.9,0.8,-0.5,0.025,0.066,0.174,0.493,0.139,2019-20 10812,Andre Drummond,CLE,26.0,208.28,126.552168,Connecticut,USA,2012,1,9,57,17.7,15.2,2.7,-5.0,0.129,0.336,0.253,0.5529999999999999,0.133,2019-20 10813,Andre Iguodala,MIA,36.0,198.12,97.52228000000001,Arizona,USA,2004,1,9,21,4.6,3.7,2.4,-1.9,0.04,0.132,0.121,0.507,0.18100000000000002,2019-20 10814,Andre Roberson,OKC,28.0,200.66,95.25432,Colorado,USA,2013,1,26,7,2.9,3.9,0.6,-1.1,0.065,0.204,0.145,0.335,0.07400000000000001,2019-20 10815,Andrew Wiggins,GSW,25.0,200.66,89.357624,Kansas,Canada,2014,1,1,54,21.8,5.1,3.7,-5.1,0.033,0.11,0.26899999999999996,0.536,0.18,2019-20 10816,Anfernee Simons,POR,21.0,190.5,82.10015200000001,None,USA,2018,1,24,70,8.3,2.2,1.4,-7.6,0.015,0.08,0.18,0.502,0.098,2019-20 10817,Ante Zizic,CLE,23.0,208.28,120.655472,None,Croatia,2016,1,23,22,4.4,3.0,0.3,1.3,0.084,0.21100000000000002,0.168,0.597,0.038,2019-20 10818,Anthony Davis,LAL,27.0,208.28,114.758776,Kentucky,USA,2012,1,1,62,26.1,9.3,3.2,5.0,0.065,0.19699999999999998,0.284,0.61,0.153,2019-20 10819,Anthony Tolliver,MEM,35.0,203.2,108.86208,Creighton,USA,Undrafted,Undrafted,Undrafted,55,3.6,2.8,0.8,-6.0,0.035,0.13,0.10800000000000001,0.513,0.064,2019-20 10820,Antonius Cleveland,DAL,26.0,195.58,88.45044,S.E. Missouri,USA,Undrafted,Undrafted,Undrafted,11,1.0,0.6,0.1,-7.8,0.037000000000000005,0.122,0.159,0.34,0.034,2019-20 10821,Anzejs Pasecniks,WAS,24.0,218.44,103.872568,None,Latvia,2017,1,25,27,5.8,4.0,0.7,0.2,0.086,0.153,0.151,0.551,0.057999999999999996,2019-20 10822,Aron Baynes,PHX,33.0,208.28,117.93392,Washington State,Australia,Undrafted,Undrafted,Undrafted,42,11.5,5.6,1.6,-1.5,0.075,0.17800000000000002,0.205,0.581,0.10800000000000001,2019-20 10823,Austin Rivers,HOU,27.0,190.5,90.7184,Duke,USA,2012,1,10,68,8.8,2.6,1.7,2.6,0.016,0.08900000000000001,0.153,0.542,0.098,2019-20 10824,Avery Bradley,LAL,29.0,190.5,81.64656,Texas-Austin,USA,2010,1,19,49,8.6,2.3,1.3,7.4,0.015,0.077,0.153,0.537,0.07,2019-20 10825,Bam Adebayo,MIA,22.0,205.74,115.66596000000001,Kentucky,USA,2017,1,14,72,15.9,10.2,5.1,5.0,0.077,0.22399999999999998,0.212,0.598,0.23800000000000002,2019-20 10826,Cedi Osman,CLE,25.0,200.66,104.32616,None,Turkey,2015,2,31,65,11.0,3.6,2.4,-9.0,0.02,0.10300000000000001,0.162,0.552,0.115,2019-20 10827,Chandler Hutchison,CHI,24.0,200.66,95.25432,Boise State,USA,2018,1,22,28,7.8,3.9,0.9,-11.9,0.032,0.18,0.183,0.521,0.077,2019-20 10828,Chandler Parsons,ATL,31.0,205.74,104.32616,Florida,USA,2011,2,38,5,2.8,1.4,0.6,-29.0,0.015,0.12,0.15,0.389,0.1,2019-20 10829,Darius Bazley,OKC,20.0,203.2,94.34713599999999,None,USA,2019,1,23,61,5.6,4.0,0.7,-3.2,0.025,0.172,0.146,0.49700000000000005,0.054000000000000006,2019-20 10830,Darius Garland,CLE,20.0,185.42,87.089664,Vanderbilt,USA,2019,1,5,59,12.3,1.9,3.9,-8.7,0.013999999999999999,0.046,0.201,0.498,0.182,2019-20 10831,Daryl Macon,MIA,24.0,187.96,83.91452,Arkansas,USA,2018,Undrafted,Undrafted,4,0.8,0.0,0.3,7.6,0.0,0.0,0.16699999999999998,0.5,0.14300000000000002,2019-20 10832,David Nwaba,HOU,27.0,195.58,99.336648,Cal Poly,USA,Undrafted,Undrafted,Undrafted,20,5.2,2.3,0.4,7.2,0.027000000000000003,0.109,0.139,0.627,0.046,2019-20 10833,Davis Bertans,WAS,27.0,208.28,102.0582,None,Latvia,2011,2,42,54,15.4,4.5,1.7,-0.3,0.021,0.13,0.183,0.628,0.081,2019-20 10834,De'Aaron Fox,SAC,22.0,190.5,83.91452,Kentucky,USA,2017,1,5,51,21.1,3.8,6.8,-4.0,0.021,0.099,0.29,0.5579999999999999,0.336,2019-20 10835,De'Andre Hunter,ATL,22.0,200.66,102.0582,Virginia,USA,2019,1,4,63,12.3,4.5,1.8,-5.5,0.021,0.11599999999999999,0.17300000000000001,0.521,0.079,2019-20 10836,De'Anthony Melton,MEM,22.0,187.96,90.7184,Southern California,USA,2018,2,46,60,7.6,3.7,2.9,5.1,0.035,0.13699999999999998,0.185,0.501,0.196,2019-20 10837,DeAndre Jordan,BKN,31.0,210.82,120.20188,Texas A&M,USA,2008,2,35,56,8.3,10.0,1.9,-1.8,0.105,0.293,0.136,0.682,0.132,2019-20 10838,DeAndre' Bembry,ATL,25.0,195.58,95.25432,St. Joseph's (PA),USA,2016,1,21,43,5.8,3.5,1.9,-11.8,0.034,0.12300000000000001,0.13699999999999998,0.5,0.13,2019-20 10839,DeMar DeRozan,SAS,30.0,198.12,99.79024,Southern California,USA,2009,1,9,68,22.1,5.5,5.6,-1.8,0.019,0.139,0.262,0.603,0.261,2019-20 10840,DeMarre Carroll,HOU,33.0,198.12,97.52228000000001,Missouri,USA,2009,1,27,24,3.6,2.3,1.0,0.0,0.042,0.138,0.14800000000000002,0.515,0.11599999999999999,2019-20 10841,Dean Wade,CLE,23.0,205.74,103.418976,Kansas State,USA,Undrafted,Undrafted,Undrafted,12,1.7,1.6,0.2,-6.5,0.038,0.213,0.091,0.7440000000000001,0.039,2019-20 10842,Deandre Ayton,PHX,21.0,210.82,113.398,Arizona,Bahamas,2018,1,1,38,18.2,11.5,1.9,4.0,0.12,0.225,0.231,0.568,0.091,2019-20 10843,Dejounte Murray,SAS,23.0,193.04,81.64656,Washington,USA,2016,1,29,66,10.9,5.8,4.1,-4.2,0.04,0.184,0.207,0.524,0.23199999999999998,2019-20 10844,Delon Wright,DAL,28.0,195.58,83.91452,Utah,USA,2015,1,20,73,6.9,3.8,3.3,1.7,0.04,0.124,0.14,0.5539999999999999,0.215,2019-20 10845,Dennis Schroder,OKC,26.0,185.42,78.017824,None,Germany,2013,1,17,65,18.9,3.6,4.0,5.5,0.01,0.099,0.262,0.575,0.222,2019-20 10846,Dennis Smith Jr.,NYK,22.0,187.96,92.98635999999999,North Carolina State,USA,2017,1,9,34,5.5,2.3,2.9,-17.1,0.034,0.102,0.223,0.39899999999999997,0.297,2019-20 10847,Denzel Valentine,CHI,26.0,193.04,99.79024,Michigan State,USA,2016,1,14,36,6.8,2.1,1.2,-5.0,0.016,0.138,0.22899999999999998,0.511,0.147,2019-20 10848,Deonte Burton,OKC,26.0,193.04,108.86208,Iowa State,USA,Undrafted,Undrafted,Undrafted,39,2.7,1.5,0.4,-12.7,0.017,0.11900000000000001,0.17300000000000001,0.396,0.076,2019-20 10849,Derrick Favors,NOP,28.0,205.74,120.20188,Georgia Tech,USA,2010,1,3,51,9.0,9.8,1.6,4.2,0.121,0.249,0.135,0.62,0.087,2019-20 10850,Derrick Jones Jr.,MIA,23.0,198.12,95.25432,UNLV,USA,Undrafted,Undrafted,Undrafted,59,8.5,3.9,1.1,-0.5,0.049,0.115,0.135,0.62,0.068,2019-20 10851,Derrick Rose,DET,31.0,187.96,90.7184,Memphis,USA,2008,1,1,50,18.1,2.4,5.6,-3.4,0.021,0.071,0.303,0.555,0.373,2019-20 10852,Derrick Walton Jr.,DET,25.0,182.88,83.91452,Michigan,USA,Undrafted,Undrafted,Undrafted,26,2.0,0.6,1.0,-0.9,0.006999999999999999,0.054000000000000006,0.079,0.617,0.155,2019-20 10853,Derrick White,SAS,25.0,193.04,86.18248,Colorado,USA,2017,1,29,68,11.3,3.3,3.5,1.0,0.02,0.105,0.183,0.593,0.203,2019-20 10854,Devin Booker,PHX,23.0,195.58,93.439952,Kentucky,USA,2015,1,13,70,26.6,4.2,6.5,2.7,0.012,0.106,0.294,0.618,0.28800000000000003,2019-20 10855,Devon Hall,OKC,24.0,195.58,97.52228000000001,Virginia,USA,2018,2,53,11,1.8,0.6,1.2,3.8,0.019,0.06,0.182,0.298,0.217,2019-20 10856,Devontae Cacok,LAL,23.0,203.2,108.86208,North Carolina-Wilmington,USA,Undrafted,Undrafted,Undrafted,1,6.0,5.0,1.0,22.7,0.16699999999999998,0.33299999999999996,0.222,0.5,0.125,2019-20 10857,Devonte' Graham,CHA,25.0,185.42,88.45044,Kansas,USA,2018,2,34,63,18.2,3.4,7.5,-4.5,0.018000000000000002,0.078,0.243,0.537,0.345,2019-20 10858,Dario Saric,PHX,26.0,208.28,102.0582,None,Croatia,2014,1,12,66,10.7,6.2,1.9,-1.2,0.06,0.18600000000000003,0.174,0.5920000000000001,0.105,2019-20 10859,Danuel House Jr.,HOU,27.0,198.12,99.79024,Texas A&M,USA,Undrafted,Undrafted,Undrafted,63,10.5,4.2,1.3,3.3,0.027000000000000003,0.10099999999999999,0.135,0.5720000000000001,0.061,2019-20 10860,Dante Exum,CLE,24.0,195.58,97.068688,None,Australia,2014,1,5,35,4.5,1.9,1.1,-8.8,0.024,0.109,0.145,0.5760000000000001,0.124,2019-20 10861,Danny Green,LAL,33.0,198.12,97.52228000000001,North Carolina,USA,2009,2,46,68,8.0,3.3,1.3,6.4,0.03,0.1,0.135,0.552,0.069,2019-20 10862,Charlie Brown Jr.,ATL,23.0,198.12,90.264808,St. Joseph's (PA),USA,Undrafted,Undrafted,Undrafted,10,2.0,0.4,0.2,33.9,0.04,0.048,0.231,0.47200000000000003,0.077,2019-20 10863,Chasson Randle,GSW,27.0,187.96,83.91452,Stanford,USA,2015,Undrafted,Undrafted,3,1.7,0.7,1.7,-2.0,0.0,0.053,0.08,0.377,0.161,2019-20 10864,Cheick Diallo,PHX,23.0,203.2,99.336648,Kansas,Mali,2016,2,33,47,4.7,2.8,0.5,-3.8,0.063,0.20800000000000002,0.16899999999999998,0.688,0.076,2019-20 10865,Chimezie Metu,SAS,23.0,205.74,102.0582,Southern California,USA,2018,2,49,18,3.2,1.8,0.6,-6.7,0.10300000000000001,0.18600000000000003,0.218,0.608,0.16399999999999998,2019-20 10866,Chris Boucher,TOR,27.0,205.74,90.7184,Oregon,Saint Lucia,Undrafted,Undrafted,Undrafted,62,6.6,4.5,0.4,5.7,0.121,0.185,0.185,0.5870000000000001,0.049,2019-20 10867,Chris Chiozza,BKN,24.0,180.34,79.3786,Florida,USA,Undrafted,Undrafted,Undrafted,28,5.1,1.9,3.0,9.3,0.02,0.102,0.175,0.499,0.295,2019-20 10868,Chris Clemons,HOU,22.0,175.26,81.64656,Campbell University,USA,Undrafted,Undrafted,Undrafted,33,4.9,0.9,0.8,-8.8,0.012,0.08,0.235,0.5479999999999999,0.162,2019-20 10869,Chris Paul,OKC,35.0,185.42,79.3786,Wake Forest,USA,2005,1,4,70,17.6,5.0,6.7,6.9,0.012,0.14300000000000002,0.228,0.61,0.324,2019-20 10870,Chris Silva,MIA,23.0,203.2,106.140528,South Carolina,Gabon,Undrafted,Undrafted,Undrafted,44,3.0,2.9,0.5,-6.0,0.162,0.184,0.155,0.6509999999999999,0.10300000000000001,2019-20 10871,Christian Wood,DET,24.0,208.28,97.068688,UNLV,USA,Undrafted,Undrafted,Undrafted,62,13.1,6.3,1.0,2.0,0.079,0.214,0.223,0.659,0.07400000000000001,2019-20 10872,Clint Capela,ATL,26.0,208.28,108.86208,None,Switzerland,2014,1,25,39,13.9,13.8,1.2,2.5,0.11800000000000001,0.265,0.156,0.626,0.055999999999999994,2019-20 10873,Coby White,CHI,20.0,193.04,88.45044,North Carolina,USA,2019,1,7,65,13.2,3.5,2.7,-4.4,0.015,0.128,0.235,0.506,0.162,2019-20 10874,Cody Martin,CHA,24.0,195.58,92.98635999999999,Nevada-Reno,USA,2019,2,36,48,5.0,3.3,2.0,-3.2,0.039,0.14,0.131,0.505,0.154,2019-20 10875,Cody Zeller,CHA,27.0,213.36,108.86208,Indiana,USA,2013,1,4,58,11.1,7.1,1.5,-8.3,0.11,0.19699999999999998,0.201,0.5760000000000001,0.111,2019-20 10876,Jordan McRae,DET,29.0,195.58,81.19296800000001,Tennessee,USA,2014,2,58,37,11.5,3.4,2.5,-4.1,0.022000000000000002,0.139,0.239,0.515,0.174,2019-20 10877,Collin Sexton,CLE,21.0,185.42,86.18248,Alabama,USA,2018,1,8,65,20.8,3.1,3.0,-9.2,0.027999999999999997,0.069,0.264,0.56,0.146,2019-20 10878,Cory Joseph,SAC,28.0,190.5,90.7184,University of Texas at Austin,Canada,2011,1,29,72,6.4,2.6,3.5,-0.3,0.024,0.08199999999999999,0.127,0.517,0.19899999999999998,2019-20 10879,Courtney Lee,DAL,34.0,195.58,97.52228000000001,Western Kentucky,USA,2008,1,22,24,4.5,1.3,0.5,6.7,0.019,0.07,0.11599999999999999,0.629,0.044000000000000004,2019-20 10880,Cristiano Felicio,CHI,27.0,208.28,122.46983999999999,None,Brazil,Undrafted,Undrafted,Undrafted,22,3.9,4.6,0.7,-7.7,0.14400000000000002,0.139,0.08800000000000001,0.6709999999999999,0.053,2019-20 10881,D'Angelo Russell,MIN,24.0,193.04,87.543256,Ohio State,USA,2015,1,2,45,23.1,3.9,6.3,-8.1,0.011000000000000001,0.107,0.305,0.556,0.327,2019-20 10882,D.J. Augustin,ORL,32.0,180.34,83.007336,Texas-Austin,USA,2008,1,9,57,10.5,2.1,4.6,1.5,0.015,0.067,0.184,0.5539999999999999,0.281,2019-20 10883,D.J. Wilson,MIL,24.0,208.28,104.779752,Michigan,USA,2017,1,17,37,3.6,2.5,0.7,-6.3,0.031,0.18100000000000002,0.175,0.475,0.10400000000000001,2019-20 10884,DaQuan Jeffries,SAC,22.0,195.58,104.32616,Tulsa,USA,Undrafted,Undrafted,Undrafted,13,3.8,1.4,0.5,3.0,0.021,0.105,0.129,0.586,0.06,2019-20 10885,Damian Jones,ATL,25.0,210.82,111.13004,Vanderbilt,USA,2016,1,30,55,5.6,3.7,0.6,-12.6,0.08,0.153,0.113,0.7120000000000001,0.057,2019-20 10886,Damian Lillard,POR,29.0,187.96,88.45044,Weber State,USA,2012,1,6,66,30.0,4.3,8.0,1.4,0.013000000000000001,0.092,0.294,0.627,0.335,2019-20 10887,Damion Lee,GSW,27.0,195.58,95.25432,Drexel,USA,Undrafted,Undrafted,Undrafted,49,12.7,4.9,2.7,-4.1,0.021,0.14400000000000002,0.184,0.5479999999999999,0.139,2019-20 10888,Damyean Dotson,NYK,26.0,195.58,95.25432,Houston,USA,2017,2,44,48,6.7,1.9,1.2,-5.3,0.011000000000000001,0.091,0.158,0.527,0.105,2019-20 10889,Daniel Gafford,CHI,21.0,208.28,106.140528,Arkansas,USA,2019,2,38,43,5.1,2.5,0.5,-1.9,0.081,0.092,0.131,0.6859999999999999,0.051,2019-20 10890,Daniel Theis,BOS,28.0,203.2,111.13004,None,Germany,Undrafted,Undrafted,Undrafted,65,9.2,6.6,1.7,7.0,0.086,0.172,0.14400000000000002,0.631,0.10400000000000001,2019-20 10891,Danilo Gallinari,OKC,31.0,208.28,105.68693600000002,None,Italy,2008,1,6,62,18.7,5.2,1.9,5.7,0.02,0.157,0.242,0.612,0.099,2019-20 10892,Corey Brewer,SAC,34.0,205.74,85.275296,Florida,USA,2007,1,7,5,1.0,1.6,0.4,11.2,0.061,0.2,0.085,0.47,0.063,2019-20 10893,Jordan Poole,GSW,21.0,193.04,87.996848,Michigan,USA,2019,1,28,57,8.8,2.1,2.4,-8.2,0.006999999999999999,0.087,0.2,0.45399999999999996,0.16,2019-20 10894,Aaron Gordon,ORL,24.0,203.2,106.59411999999999,Arizona,USA,2014,1,4,62,14.4,7.7,3.7,-1.2,0.05,0.18100000000000002,0.205,0.516,0.165,2019-20 10895,Josh Hart,NOP,25.0,195.58,97.52228000000001,Villanova,USA,2017,1,30,65,10.1,6.5,1.7,-3.1,0.032,0.195,0.15,0.563,0.084,2019-20 10896,Rondae Hollis-Jefferson,TOR,25.0,198.12,98.429464,Arizona,USA,2015,1,23,60,7.0,4.7,1.8,4.2,0.08900000000000001,0.14300000000000002,0.16399999999999998,0.5329999999999999,0.141,2019-20 10897,Royce O'Neale,UTA,27.0,193.04,102.511792,Baylor,USA,Undrafted,Undrafted,Undrafted,71,6.3,5.5,2.5,5.2,0.013999999999999999,0.165,0.095,0.578,0.11599999999999999,2019-20 10898,Rudy Gay,SAS,33.0,203.2,113.398,Connecticut,USA,2006,1,8,67,10.8,5.4,1.7,0.2,0.04,0.19399999999999998,0.21100000000000002,0.5529999999999999,0.11599999999999999,2019-20 10899,Rudy Gobert,UTA,28.0,215.9,117.02673600000001,None,France,2013,1,27,68,15.1,13.5,1.5,6.2,0.10400000000000001,0.276,0.162,0.6990000000000001,0.065,2019-20 10900,Rui Hachimura,WAS,22.0,203.2,104.32616,Gonzaga,Japan,2019,1,9,48,13.5,6.1,1.8,-8.2,0.051,0.155,0.18899999999999997,0.535,0.08800000000000001,2019-20 10901,Russell Westbrook,HOU,31.0,190.5,90.7184,UCLA,USA,2008,1,4,57,27.2,7.9,7.0,3.1,0.044000000000000004,0.157,0.33,0.536,0.34,2019-20 10902,Ryan Anderson,HOU,32.0,205.74,108.86208,California,USA,2008,1,21,2,2.5,3.5,1.0,21.2,0.0,0.467,0.242,0.35700000000000004,0.16699999999999998,2019-20 10903,Ryan Arcidiacono,CHI,26.0,190.5,88.45044,Villanova,USA,Undrafted,Undrafted,Undrafted,58,4.5,1.9,1.7,-4.0,0.019,0.098,0.121,0.551,0.14300000000000002,2019-20 10904,Ryan Broekhoff,PHI,29.0,198.12,97.52228000000001,Valparaiso,Australia,Undrafted,Undrafted,Undrafted,17,4.2,2.5,0.6,2.1,0.025,0.20199999999999999,0.155,0.568,0.083,2019-20 10905,Sekou Doumbouya,DET,19.0,203.2,104.32616,None,France,2019,1,15,38,6.4,3.1,0.5,-10.8,0.026000000000000002,0.13699999999999998,0.16399999999999998,0.474,0.037000000000000005,2019-20 10906,Semi Ojeleye,BOS,25.0,198.12,108.86208,Southern Methodist,USA,2017,2,37,69,3.4,2.1,0.5,-1.5,0.024,0.109,0.094,0.562,0.051,2019-20 10907,Serge Ibaka,TOR,30.0,213.36,106.59411999999999,None,Republic of the Congo,2008,1,24,55,15.4,8.2,1.4,3.1,0.075,0.205,0.23600000000000002,0.583,0.086,2019-20 10908,Seth Curry,DAL,29.0,187.96,83.91452,Duke,USA,Undrafted,Undrafted,Undrafted,64,12.4,2.3,1.9,3.4,0.016,0.07,0.17600000000000002,0.643,0.11699999999999999,2019-20 10909,Shabazz Napier,WAS,28.0,182.88,79.3786,Connecticut,USA,2014,1,24,56,10.3,2.8,4.7,-3.6,0.018000000000000002,0.1,0.19699999999999998,0.552,0.295,2019-20 10910,Shai Gilgeous-Alexander,OKC,21.0,195.58,81.64656,Kentucky,Canada,2018,1,11,70,19.0,5.9,3.3,3.5,0.02,0.146,0.235,0.568,0.14800000000000002,2019-20 10911,Shake Milton,PHI,23.0,195.58,92.98635999999999,Southern Methodist,USA,2018,2,54,40,9.4,2.2,2.6,0.1,0.018000000000000002,0.09300000000000001,0.18600000000000003,0.617,0.182,2019-20 10912,Shamorie Ponds,TOR,22.0,182.88,79.3786,"St. John's, N.Y.",USA,Undrafted,Undrafted,Undrafted,4,2.3,0.3,0.5,-5.5,0.0,0.16699999999999998,0.222,0.765,0.4,2019-20 10913,Shaquille Harrison,CHI,26.0,200.66,86.18248,Tulsa,USA,Undrafted,Undrafted,Undrafted,43,4.9,2.0,1.1,6.8,0.042,0.139,0.17600000000000002,0.5589999999999999,0.147,2019-20 10914,Sindarius Thornwell,NOP,25.0,193.04,97.52228000000001,South Carolina,USA,2017,2,48,2,8.0,2.0,2.0,-7.4,0.0,0.133,0.17600000000000002,0.627,0.14300000000000002,2019-20 10915,Skal Labissiere,ATL,24.0,208.28,106.59411999999999,Kentucky,Haiti,2016,1,28,33,5.8,5.1,1.3,1.3,0.105,0.155,0.139,0.588,0.106,2019-20 10916,Solomon Hill,MIA,29.0,198.12,102.511792,Arizona,USA,2013,1,23,59,5.5,2.8,1.8,-2.1,0.026000000000000002,0.11800000000000001,0.135,0.535,0.124,2019-20 10917,Spencer Dinwiddie,BKN,27.0,195.58,97.52228000000001,Colorado,USA,2014,2,38,64,20.6,3.5,6.8,1.1,0.015,0.085,0.287,0.541,0.344,2019-20 10918,Stanley Johnson,TOR,24.0,198.12,109.769264,Arizona,USA,2015,1,8,25,2.4,1.5,0.8,4.8,0.040999999999999995,0.165,0.214,0.45399999999999996,0.2,2019-20 10919,Stanton Kidd,UTA,28.0,198.12,97.975872,Colorado State,USA,Undrafted,Undrafted,Undrafted,4,0.0,0.8,0.3,2.3,0.0,0.158,0.139,0.0,0.1,2019-20 10920,Stephen Curry,GSW,32.0,190.5,83.91452,Davidson,USA,2009,1,7,5,20.8,5.2,6.6,-15.3,0.023,0.162,0.28600000000000003,0.557,0.355,2019-20 10921,Sterling Brown,MIL,25.0,195.58,99.336648,Southern Methodist,USA,2017,2,46,52,5.1,3.5,1.0,2.4,0.037000000000000005,0.168,0.162,0.486,0.094,2019-20 10922,Steven Adams,OKC,26.0,210.82,120.20188,Pittsburgh,New Zealand,2013,1,12,63,10.9,9.3,2.3,4.4,0.128,0.214,0.168,0.604,0.128,2019-20 10923,Svi Mykhailiuk,DET,23.0,200.66,92.98635999999999,Kansas,Ukraine,2018,2,47,56,9.0,1.9,1.9,-0.6,0.013000000000000001,0.071,0.165,0.578,0.12,2019-20 10924,T.J. Leaf,IND,23.0,208.28,100.697424,UCLA,USA,2017,1,18,28,3.0,2.5,0.3,0.2,0.094,0.174,0.18,0.451,0.057,2019-20 10925,Romeo Langford,BOS,20.0,193.04,97.975872,Indiana,USA,2019,1,14,32,2.5,1.3,0.4,8.9,0.038,0.065,0.113,0.434,0.045,2019-20 10926,T.J. McConnell,IND,28.0,185.42,86.18248,Arizona,USA,2015,0,Undrafted,71,6.5,2.7,5.0,1.1,0.027999999999999997,0.107,0.16699999999999998,0.54,0.354,2019-20 10927,Rodney McGruder,LAC,28.0,193.04,92.98635999999999,Kansas State,USA,Undrafted,Undrafted,Undrafted,56,3.3,2.7,0.6,0.8,0.032,0.12300000000000001,0.10099999999999999,0.47700000000000004,0.055,2019-20 10928,Rodions Kurucs,BKN,22.0,205.74,103.418976,None,Latvia,2018,2,40,47,4.6,2.9,1.1,-1.4,0.033,0.141,0.142,0.555,0.105,2019-20 10929,OG Anunoby,TOR,22.0,200.66,105.23334399999999,Indiana,United Kingdom,2017,1,23,69,10.6,5.3,1.6,6.2,0.038,0.129,0.142,0.6,0.07400000000000001,2019-20 10930,Omari Spellman,MIN,22.0,203.2,111.13004,Villanova,USA,2018,1,30,49,7.6,4.5,1.0,-8.5,0.076,0.155,0.177,0.551,0.086,2019-20 10931,Oshae Brissett,TOR,22.0,200.66,95.25432,Syracuse,Canada,Undrafted,Undrafted,Undrafted,19,1.9,1.4,0.4,11.6,0.063,0.109,0.145,0.45799999999999996,0.07400000000000001,2019-20 10932,Otto Porter Jr.,CHI,27.0,203.2,89.811216,Georgetown,USA,2013,1,3,14,11.9,3.4,1.8,3.2,0.036000000000000004,0.10800000000000001,0.201,0.55,0.113,2019-20 10933,P.J. Tucker,HOU,35.0,195.58,111.13004,Texas-Austin,USA,2006,2,35,72,6.9,6.6,1.6,3.0,0.042,0.13699999999999998,0.087,0.5589999999999999,0.061,2019-20 10934,P.J. Washington,CHA,21.0,200.66,104.32616,Kentucky,USA,2019,1,12,58,12.2,5.4,2.1,-6.3,0.032,0.145,0.184,0.547,0.115,2019-20 10935,PJ Dozier,DEN,23.0,198.12,92.98635999999999,South Carolina,USA,Undrafted,Undrafted,Undrafted,29,5.8,1.9,2.2,-5.7,0.024,0.10800000000000001,0.19899999999999998,0.495,0.21600000000000003,2019-20 10936,Pascal Siakam,TOR,26.0,205.74,104.32616,New Mexico State,Cameroon,2016,1,27,60,22.9,7.3,3.5,8.8,0.03,0.162,0.278,0.5539999999999999,0.161,2019-20 10937,Pat Connaughton,MIL,27.0,195.58,94.800728,Notre Dame,USA,2015,2,41,67,5.4,4.2,1.6,3.5,0.044000000000000004,0.151,0.11800000000000001,0.565,0.115,2019-20 10938,Patrick Beverley,LAC,31.0,185.42,81.64656,Arkansas,USA,2009,2,42,51,7.9,5.2,3.6,10.2,0.04,0.145,0.131,0.56,0.18,2019-20 10939,Patrick McCaw,TOR,24.0,200.66,82.10015200000001,UNLV,USA,2016,2,38,37,4.6,2.3,2.1,0.6,0.02,0.068,0.09300000000000001,0.5,0.11800000000000001,2019-20 10940,Patrick Patterson,LAC,31.0,203.2,106.59411999999999,Kentucky,USA,2010,1,14,59,4.9,2.6,0.7,2.5,0.042,0.136,0.14300000000000002,0.58,0.075,2019-20 10941,Patty Mills,SAS,31.0,185.42,81.64656,St.Mary's College of California,Australia,2009,2,55,66,11.6,1.6,1.8,4.1,0.013999999999999999,0.054000000000000006,0.193,0.5920000000000001,0.11199999999999999,2019-20 10942,Paul George,LAC,30.0,203.2,99.79024,Fresno State,USA,2010,1,10,48,21.5,5.7,3.9,8.7,0.017,0.161,0.292,0.589,0.205,2019-20 10943,Paul Millsap,DEN,35.0,200.66,116.573144,Louisiana Tech,USA,2006,2,47,51,11.6,5.7,1.6,9.3,0.079,0.157,0.19699999999999998,0.591,0.09300000000000001,2019-20 10944,Paul Watson,TOR,25.0,198.12,95.25432,Fresno State,USA,Undrafted,Undrafted,Undrafted,10,3.1,1.7,0.8,16.3,0.02,0.163,0.142,0.517,0.107,2019-20 10945,Quinn Cook,LAL,27.0,185.42,81.64656,Duke,USA,Undrafted,Undrafted,Undrafted,44,5.1,1.2,1.1,4.5,0.02,0.071,0.201,0.509,0.139,2019-20 10946,Quinndary Weatherspoon,SAS,23.0,190.5,92.98635999999999,Mississippi State,USA,2019,2,49,11,1.1,0.6,1.0,-13.7,0.011000000000000001,0.07400000000000001,0.107,0.336,0.183,2019-20 10947,RJ Barrett,NYK,20.0,198.12,97.068688,Duke,Canada,2019,1,3,56,14.3,5.0,2.6,-9.1,0.027000000000000003,0.134,0.23399999999999999,0.479,0.127,2019-20 10948,Rajon Rondo,LAL,34.0,185.42,81.64656,Kentucky,USA,2006,1,21,48,7.1,3.0,5.0,1.4,0.022000000000000002,0.11900000000000001,0.184,0.494,0.34,2019-20 10949,Raul Neto,PHI,28.0,185.42,81.64656,None,Brazil,2013,2,47,54,5.1,1.1,1.8,2.8,0.016,0.07200000000000001,0.18100000000000002,0.5670000000000001,0.218,2019-20 10950,Rayjon Tucker,UTA,22.0,190.5,94.800728,Arkansas-Little Rock,USA,Undrafted,Undrafted,Undrafted,20,3.1,1.0,0.3,-6.9,0.017,0.113,0.152,0.584,0.043,2019-20 10951,Reggie Bullock,NYK,29.0,198.12,92.98635999999999,North Carolina,USA,2013,1,25,29,8.1,2.3,1.4,-5.8,0.018000000000000002,0.08199999999999999,0.153,0.502,0.087,2019-20 10952,Reggie Jackson,LAC,30.0,190.5,94.34713599999999,Boston College,USA,2011,1,24,31,11.9,3.0,4.1,6.7,0.023,0.094,0.22899999999999998,0.529,0.263,2019-20 10953,Richaun Holmes,SAC,26.0,208.28,106.59411999999999,Bowling Green,USA,2015,2,37,44,12.3,8.1,1.0,1.2,0.10099999999999999,0.191,0.156,0.6809999999999999,0.05,2019-20 10954,Ricky Rubio,PHX,29.0,190.5,86.18248,None,Spain,2009,1,5,65,13.0,4.7,8.8,4.0,0.023,0.128,0.19899999999999998,0.535,0.377,2019-20 10955,Robert Covington,HOU,29.0,200.66,94.800728,Tennessee State,USA,Undrafted,Undrafted,Undrafted,70,12.4,6.6,1.3,0.9,0.027000000000000003,0.18,0.16899999999999998,0.5589999999999999,0.059000000000000004,2019-20 10956,Robert Williams III,BOS,22.0,203.2,107.501304,Texas A&M,USA,2018,1,27,29,5.2,4.4,0.9,6.1,0.10300000000000001,0.209,0.135,0.728,0.099,2019-20 10957,Robin Lopez,MIL,32.0,213.36,127.459352,Stanford,USA,2008,1,15,66,5.4,2.4,0.7,0.6,0.054000000000000006,0.092,0.161,0.5539999999999999,0.068,2019-20 10958,Rodney Hood,POR,27.0,203.2,94.34713599999999,Duke,USA,2014,1,23,21,11.0,3.4,1.5,0.6,0.015,0.092,0.13699999999999998,0.625,0.068,2019-20 10959,T.J. Warren,IND,26.0,203.2,99.79024,North Carolina State,USA,2014,1,14,67,19.8,4.2,1.5,2.7,0.031,0.092,0.22899999999999998,0.61,0.07200000000000001,2019-20 10960,Tacko Fall,BOS,24.0,226.06,141.067112,Central Florida,Senegal,Undrafted,Undrafted,Undrafted,7,3.3,2.1,0.1,12.7,0.036000000000000004,0.326,0.25,0.7509999999999999,0.067,2019-20 10961,Taj Gibson,NYK,35.0,205.74,105.23334399999999,Southern California,USA,2009,1,26,62,6.1,4.3,0.8,-12.5,0.098,0.158,0.145,0.61,0.077,2019-20 10962,Tyler Johnson,BKN,28.0,190.5,84.368112,Fresno State,USA,Undrafted,Undrafted,Undrafted,39,7.0,1.9,1.9,-5.7,0.023,0.076,0.177,0.504,0.153,2019-20 10963,Tyler Zeller,SAS,30.0,210.82,113.398,North Carolina,USA,2012,1,17,2,1.0,2.0,0.0,33.3,0.3,0.33299999999999996,0.267,0.25,0.0,2019-20 10964,Tyrone Wallace,ATL,26.0,195.58,89.811216,California,USA,2016,2,60,14,2.9,1.6,0.9,-8.3,0.016,0.12300000000000001,0.154,0.389,0.12300000000000001,2019-20 10965,Tyson Chandler,HOU,37.0,213.36,106.59411999999999,None,USA,2001,1,2,26,1.3,2.5,0.2,5.7,0.09699999999999999,0.172,0.057,0.7170000000000001,0.037000000000000005,2019-20 10966,Tyus Jones,MEM,24.0,182.88,88.904032,Duke,USA,2015,1,24,65,7.4,1.6,4.4,-2.3,0.006999999999999999,0.071,0.165,0.532,0.314,2019-20 10967,Udonis Haslem,MIA,40.0,203.2,106.59411999999999,Florida,USA,Undrafted,Undrafted,Undrafted,4,3.0,4.0,0.3,-20.2,0.02,0.349,0.147,0.47,0.048,2019-20 10968,Vic Law,ORL,24.0,200.66,91.171992,Northwestern,USA,Undrafted,Undrafted,Undrafted,8,1.9,1.4,0.4,-9.7,0.028999999999999998,0.145,0.15,0.363,0.086,2019-20 10969,Victor Oladipo,IND,28.0,193.04,96.615096,Indiana,USA,2013,1,2,19,14.5,3.9,2.9,-1.1,0.017,0.11599999999999999,0.259,0.506,0.159,2019-20 10970,Vince Carter,ATL,43.0,198.12,99.79024,North Carolina,USA,1998,1,5,60,5.0,2.1,0.8,-8.1,0.019,0.114,0.163,0.47,0.081,2019-20 10971,Vincent Poirier,BOS,26.0,213.36,106.59411999999999,None,France,Undrafted,Undrafted,Undrafted,22,1.9,2.0,0.4,-6.5,0.09,0.195,0.141,0.525,0.08800000000000001,2019-20 10972,Vlatko Cancar,DEN,23.0,203.2,107.047712,None,Slovenia,2017,2,49,14,1.2,0.7,0.2,-6.0,0.109,0.11900000000000001,0.177,0.507,0.086,2019-20 10973,Wayne Ellington,NYK,32.0,193.04,93.89354399999999,North Carolina,USA,2009,1,28,36,5.1,1.8,1.2,-3.1,0.006999999999999999,0.10400000000000001,0.146,0.509,0.11699999999999999,2019-20 10974,Wendell Carter Jr.,CHI,21.0,205.74,122.46983999999999,Duke,USA,2018,1,7,43,11.3,9.4,1.2,-0.5,0.102,0.21600000000000003,0.162,0.59,0.062,2019-20 10975,Wenyen Gabriel,POR,23.0,205.74,92.98635999999999,Kentucky,South Sudan,Undrafted,Undrafted,Undrafted,30,2.1,1.7,0.3,-7.2,0.08,0.14800000000000002,0.124,0.546,0.046,2019-20 10976,Wes Iwundu,ORL,25.0,198.12,88.45044,Kansas State,USA,2017,2,33,52,5.8,2.5,1.2,-0.5,0.023,0.109,0.134,0.544,0.08900000000000001,2019-20 10977,Wesley Matthews,MIL,33.0,193.04,99.79024,Marquette,USA,Undrafted,Undrafted,Undrafted,67,7.4,2.5,1.4,12.2,0.013000000000000001,0.073,0.12300000000000001,0.547,0.07,2019-20 10978,Will Barton,DEN,29.0,195.58,82.10015200000001,Memphis,USA,2012,2,40,58,15.1,6.3,3.7,5.8,0.04,0.147,0.19699999999999998,0.5489999999999999,0.157,2019-20 10979,William Howard,HOU,26.0,203.2,93.89354399999999,None,France,Undrafted,Undrafted,Undrafted,2,0.0,1.0,0.5,-51.3,0.0,0.25,0.152,0.0,0.2,2019-20 10980,Willie Cauley-Stein,DAL,26.0,213.36,108.86208,Kentucky,USA,2015,1,6,54,7.2,5.8,1.3,-5.5,0.07200000000000001,0.20199999999999999,0.14400000000000002,0.589,0.098,2019-20 10981,Willy Hernangomez,CHA,26.0,210.82,113.398,None,Spain,2015,2,35,31,6.1,4.3,0.9,-2.6,0.105,0.243,0.222,0.5760000000000001,0.136,2019-20 10982,Wilson Chandler,BKN,33.0,203.2,106.59411999999999,DePaul,USA,2007,1,23,35,5.9,4.1,1.1,-6.4,0.013999999999999999,0.16399999999999998,0.128,0.531,0.08,2019-20 10983,Yogi Ferrell,SAC,27.0,182.88,80.73937600000001,Indiana,USA,Undrafted,Undrafted,Undrafted,50,4.4,1.0,1.4,-1.8,0.011000000000000001,0.085,0.185,0.528,0.196,2019-20 10984,Yuta Watanabe,MEM,25.0,203.2,97.52228000000001,George Washington,Japan,Undrafted,Undrafted,Undrafted,18,2.0,1.1,0.3,4.0,0.059000000000000004,0.11800000000000001,0.149,0.48,0.066,2019-20 10985,Zach Collins,POR,22.0,210.82,113.398,Gonzaga,USA,2017,1,10,11,7.0,6.3,1.5,6.5,0.095,0.149,0.126,0.5379999999999999,0.067,2019-20 10986,Zach LaVine,CHI,25.0,198.12,90.7184,UCLA,USA,2014,1,13,60,25.5,4.8,4.2,-4.4,0.019,0.125,0.312,0.568,0.218,2019-20 10987,Zach Norvell Jr.,GSW,22.0,195.58,92.98635999999999,Gonzaga,USA,2019,Undrafted,Undrafted,5,2.0,1.2,0.6,-32.3,0.0,0.207,0.147,0.402,0.091,2019-20 10988,Zhaire Smith,PHI,21.0,190.5,92.98635999999999,Texas Tech,USA,2018,1,16,7,1.1,0.3,0.3,-12.3,0.0,0.08,0.165,0.313,0.083,2019-20 10989,Zion Williamson,NOP,19.0,198.12,128.820128,Duke,USA,2019,1,1,24,22.5,6.3,2.1,5.1,0.092,0.114,0.29100000000000004,0.616,0.11900000000000001,2019-20 10990,Zylan Cheatham,NOP,24.0,195.58,99.79024,Arizona State,USA,Undrafted,Undrafted,Undrafted,4,3.0,2.3,0.8,-23.9,0.062,0.128,0.10300000000000001,0.667,0.094,2019-20 10991,Tyler Herro,MIA,20.0,195.58,88.45044,Kentucky,USA,2019,1,13,55,13.5,4.1,2.2,-1.7,0.011000000000000001,0.131,0.213,0.55,0.131,2019-20 10992,Tyler Cook,DEN,22.0,203.2,115.66596000000001,Iowa,USA,Undrafted,Undrafted,Undrafted,13,1.8,1.1,0.1,-9.8,0.10300000000000001,0.14800000000000002,0.15,0.741,0.031,2019-20 10993,Ty Jerome,PHX,22.0,195.58,88.45044,Virginia,USA,2019,1,24,31,3.3,1.5,1.4,-13.5,0.019,0.12,0.17,0.425,0.222,2019-20 10994,Troy Daniels,DEN,28.0,193.04,90.7184,Virginia Commonwealth,USA,Undrafted,Undrafted,Undrafted,47,4.3,1.1,0.4,0.4,0.02,0.068,0.155,0.518,0.047,2019-20 10995,Talen Horton-Tucker,LAL,19.0,193.04,106.140528,Iowa State,USA,2019,2,46,6,5.7,1.2,1.0,-9.5,0.022000000000000002,0.055999999999999994,0.18,0.535,0.107,2019-20 10996,Tariq Owens,PHX,25.0,208.28,92.98635999999999,Texas Tech,USA,Undrafted,Undrafted,Undrafted,3,1.3,1.0,0.0,-43.4,0.105,0.067,0.171,0.34,0.0,2019-20 10997,Taurean Prince,BKN,26.0,200.66,98.88305600000001,Baylor,USA,2016,1,12,64,12.1,6.0,1.8,1.3,0.024,0.162,0.2,0.49700000000000005,0.09,2019-20 10998,Terance Mann,LAC,23.0,195.58,97.52228000000001,Florida State,USA,2019,2,48,41,2.4,1.3,1.3,0.1,0.026000000000000002,0.11199999999999999,0.12300000000000001,0.545,0.209,2019-20 10999,Terence Davis,TOR,23.0,193.04,91.171992,Mississippi,USA,Undrafted,Undrafted,Undrafted,72,7.5,3.3,1.6,7.9,0.039,0.13699999999999998,0.18100000000000002,0.588,0.14,2019-20 11000,Terrance Ferguson,OKC,22.0,198.12,86.18248,None,USA,2017,1,21,56,3.9,1.3,0.9,-4.0,0.019,0.039,0.092,0.48100000000000004,0.055,2019-20 11001,Terrence Ross,ORL,29.0,198.12,93.439952,Washington,USA,2012,1,8,69,14.7,3.2,1.2,-2.5,0.006,0.10800000000000001,0.21600000000000003,0.5479999999999999,0.07200000000000001,2019-20 11002,Terry Rozier,CHA,26.0,185.42,86.18248,Louisville,USA,2015,1,16,63,18.0,4.4,4.1,-9.0,0.022000000000000002,0.107,0.23199999999999998,0.5529999999999999,0.209,2019-20 11003,Thabo Sefolosha,HOU,36.0,198.12,97.52228000000001,None,Switzerland,2006,1,13,41,2.2,2.3,0.6,3.9,0.043,0.152,0.1,0.48700000000000004,0.07400000000000001,2019-20 11004,Thaddeus Young,CHI,32.0,203.2,106.59411999999999,Georgia Tech,USA,2007,1,12,64,10.3,4.9,1.8,-6.2,0.054000000000000006,0.145,0.192,0.521,0.113,2019-20 11005,Thanasis Antetokounmpo,MIL,27.0,198.12,99.336648,None,Greece,2014,2,51,20,2.8,1.2,0.8,-6.8,0.085,0.081,0.20199999999999999,0.496,0.174,2019-20 11006,Theo Pinson,NYK,24.0,195.58,96.16150400000001,North Carolina,USA,Undrafted,Undrafted,Undrafted,33,3.6,1.6,1.7,-4.6,0.024,0.10099999999999999,0.218,0.37,0.24,2019-20 11007,Thomas Bryant,WAS,22.0,208.28,112.490816,Indiana,USA,2017,2,42,46,13.2,7.2,1.8,-6.6,0.081,0.198,0.185,0.649,0.107,2019-20 11008,Thon Maker,DET,23.0,213.36,100.243832,None,South Sudan,2016,1,10,60,4.7,2.8,0.7,-8.0,0.069,0.152,0.16,0.5820000000000001,0.08800000000000001,2019-20 11009,Josh Gray,NOP,26.0,182.88,81.64656,Louisiana State,USA,Undrafted,Undrafted,Undrafted,2,1.0,1.0,1.0,-14.9,0.053,0.04,0.13699999999999998,0.5,0.154,2019-20 11010,Tim Frazier,DET,29.0,182.88,77.11064,Penn State,USA,Undrafted,Undrafted,Undrafted,27,3.6,1.2,3.4,-6.9,0.024,0.071,0.171,0.46399999999999997,0.391,2019-20 11011,Timothe Luwawu-Cabarrot,BKN,25.0,200.66,99.79024,None,France,2016,1,24,47,7.8,2.7,0.6,-1.3,0.03,0.099,0.162,0.599,0.052000000000000005,2019-20 11012,Tobias Harris,PHI,27.0,203.2,102.511792,Tennessee,USA,2011,1,19,72,19.6,6.9,3.2,3.1,0.027000000000000003,0.172,0.23600000000000002,0.556,0.145,2019-20 11013,Tomas Satoransky,CHI,28.0,200.66,95.25432,None,Czech Republic,2012,2,32,65,9.9,3.9,5.4,-1.5,0.04,0.10099999999999999,0.165,0.5329999999999999,0.26899999999999996,2019-20 11014,Tony Bradley,UTA,22.0,208.28,112.490816,North Carolina,USA,2017,1,28,58,4.9,4.6,0.4,0.1,0.158,0.226,0.147,0.6809999999999999,0.051,2019-20 11015,Tony Snell,DET,28.0,198.12,96.615096,New Mexico,USA,2013,1,20,59,8.0,1.9,2.2,-5.5,0.005,0.064,0.11,0.598,0.11,2019-20 11016,Torrey Craig,DEN,29.0,200.66,100.243832,South Carolina Upstate,USA,Undrafted,Undrafted,Undrafted,58,5.4,3.3,0.8,-5.7,0.057999999999999996,0.11800000000000001,0.12300000000000001,0.5529999999999999,0.061,2019-20 11017,Trae Young,ATL,21.0,185.42,81.64656,Oklahoma,USA,2018,1,5,60,29.6,4.3,9.3,-4.9,0.013999999999999999,0.1,0.33899999999999997,0.595,0.423,2019-20 11018,Tremont Waters,BOS,22.0,177.8,79.3786,Louisiana State,USA,2019,2,51,11,3.6,1.1,1.5,8.4,0.0,0.08900000000000001,0.23199999999999998,0.381,0.195,2019-20 11019,Treveon Graham,ATL,26.0,195.58,99.336648,Va Commonwealth,USA,Undrafted,Undrafted,Undrafted,55,4.4,2.7,0.8,-6.2,0.05,0.099,0.13,0.456,0.069,2019-20 11020,Trevor Ariza,POR,35.0,203.2,97.52228000000001,UCLA,USA,2004,2,43,53,8.0,4.6,1.7,-0.3,0.022000000000000002,0.13699999999999998,0.11699999999999999,0.593,0.081,2019-20 11021,Trey Burke,DAL,27.0,182.88,83.91452,Michigan,USA,2013,1,9,33,7.4,1.5,2.5,2.0,0.03,0.066,0.196,0.5479999999999999,0.23399999999999999,2019-20 11022,Trey Lyles,SAS,24.0,205.74,106.140528,Kentucky,Canada,2015,1,12,63,6.4,5.7,1.1,-2.4,0.055999999999999994,0.228,0.136,0.557,0.07200000000000001,2019-20 11023,Tristan Thompson,CLE,29.0,205.74,115.212368,Texas-Austin,Canada,2011,1,4,57,12.0,10.1,2.1,-10.1,0.126,0.207,0.18100000000000002,0.54,0.106,2019-20 11024,Troy Brown Jr.,WAS,20.0,198.12,97.52228000000001,Oregon,USA,2018,1,15,69,10.4,5.6,2.6,-5.5,0.04,0.171,0.174,0.524,0.142,2019-20 11025,Tim Hardaway Jr.,DAL,28.0,195.58,92.98635999999999,Michigan,USA,2013,1,24,71,15.8,3.3,1.9,5.9,0.011000000000000001,0.09,0.204,0.581,0.096,2019-20 11026,Norman Powell,TOR,27.0,190.5,97.52228000000001,UCLA,USA,2015,2,46,52,16.0,3.7,1.8,4.6,0.017,0.098,0.21,0.624,0.095,2019-20 11027,Norvel Pelle,PHI,27.0,208.28,104.779752,Iona,USA,Undrafted,Undrafted,Undrafted,24,2.4,3.0,0.3,-15.7,0.081,0.22,0.131,0.526,0.049,2019-20 11028,Nikola Vucevic,ORL,29.0,210.82,117.93392,Southern California,Montenegro,2011,1,16,62,19.6,10.9,3.6,0.9,0.068,0.27,0.258,0.5489999999999999,0.182,2019-20 11029,Kevin Hervey,OKC,23.0,205.74,104.32616,Texas-Arlington,USA,2018,2,57,10,1.7,1.2,0.5,-28.9,0.012,0.21600000000000003,0.18899999999999997,0.315,0.192,2019-20 11030,Kevin Huerter,ATL,21.0,200.66,86.18248,Maryland,USA,2018,1,19,56,12.2,4.1,3.8,-6.1,0.019,0.106,0.16899999999999998,0.536,0.171,2019-20 11031,Kevin Knox II,NYK,20.0,200.66,97.52228000000001,Kentucky,USA,2018,1,9,65,6.4,2.8,0.9,-7.3,0.021,0.128,0.172,0.47,0.076,2019-20 11032,Kevin Love,CLE,31.0,203.2,113.851592,UCLA,USA,2008,1,5,56,17.6,9.8,3.2,-8.0,0.03,0.28600000000000003,0.225,0.599,0.15,2019-20 11033,Kevin Porter Jr.,CLE,20.0,193.04,92.079176,Southern California,USA,2019,1,30,50,10.0,3.2,2.2,-11.2,0.018000000000000002,0.121,0.20199999999999999,0.535,0.147,2019-20 11034,Kevon Looney,GSW,24.0,205.74,100.697424,UCLA,USA,2015,1,30,20,3.4,3.3,1.0,-18.3,0.098,0.151,0.147,0.40299999999999997,0.12,2019-20 11035,Khem Birch,ORL,27.0,205.74,105.68693600000002,UNLV,Canada,Undrafted,Undrafted,Undrafted,48,4.4,4.6,1.0,-7.1,0.08900000000000001,0.14400000000000002,0.10099999999999999,0.5660000000000001,0.079,2019-20 11036,Khris Middleton,MIL,28.0,200.66,100.697424,Texas A&M,USA,2012,2,39,62,20.9,6.2,4.3,12.4,0.023,0.157,0.26,0.619,0.212,2019-20 11037,Khyri Thomas,DET,24.0,190.5,95.25432,Creighton,USA,2018,2,38,8,2.1,0.1,0.4,-28.7,0.012,0.0,0.149,0.45299999999999996,0.09699999999999999,2019-20 11038,Kostas Antetokounmpo,LAL,22.0,208.28,90.7184,Dayton,Greece,2018,2,60,5,1.4,0.6,0.4,19.6,0.095,0.05,0.096,0.902,0.1,2019-20 11039,Kris Dunn,CHI,26.0,190.5,92.98635999999999,Providence,USA,2016,1,5,51,7.3,3.6,3.4,-0.1,0.017,0.132,0.145,0.51,0.198,2019-20 11040,Kristaps Porzingis,DAL,24.0,220.98,108.86208,None,Latvia,2015,1,4,57,20.4,9.5,1.8,6.9,0.052000000000000005,0.221,0.263,0.551,0.08800000000000001,2019-20 11041,Ky Bowman,GSW,23.0,185.42,84.821704,Boston College,USA,Undrafted,Undrafted,Undrafted,45,7.4,2.7,2.9,-8.4,0.022000000000000002,0.09300000000000001,0.168,0.494,0.20199999999999999,2019-20 11042,Kyle Alexander,MIA,23.0,208.28,97.975872,Tennessee,Canada,Undrafted,Undrafted,Undrafted,2,1.0,1.5,0.0,-6.7,0.111,0.067,0.079,0.5,0.0,2019-20 11043,Kyle Anderson,MEM,26.0,205.74,104.32616,UCLA,USA,2014,1,30,67,5.8,4.3,2.4,-3.0,0.042,0.151,0.134,0.534,0.163,2019-20 11044,Kyle Guy,SAC,22.0,185.42,75.749864,Virginia,USA,2019,2,55,3,1.3,0.3,0.3,-45.8,0.0,0.091,0.2,0.4,0.125,2019-20 11045,Kyle Korver,MIL,39.0,200.66,96.16150400000001,Creighton,USA,2003,2,51,58,6.7,2.1,1.2,5.4,0.013999999999999999,0.091,0.145,0.62,0.092,2019-20 11046,Kyle Kuzma,LAL,24.0,203.2,100.243832,Utah,USA,2017,1,27,61,12.8,4.5,1.3,4.9,0.033,0.135,0.221,0.531,0.076,2019-20 11047,Kyle Lowry,TOR,34.0,182.88,88.904032,Villanova,USA,2006,1,24,58,19.4,5.0,7.5,6.0,0.015,0.115,0.225,0.59,0.309,2019-20 11048,Kyle O'Quinn,PHI,30.0,205.74,113.398,Norfolk State,USA,2012,2,49,29,3.5,4.0,1.8,-4.9,0.099,0.265,0.14800000000000002,0.544,0.225,2019-20 11049,Kyrie Irving,BKN,28.0,187.96,88.45044,Duke,Australia,2011,1,1,20,27.4,5.2,6.4,-0.4,0.032,0.12,0.318,0.595,0.331,2019-20 11050,LaMarcus Aldridge,SAS,34.0,210.82,113.398,University of Texas at Austin,USA,2006,1,2,53,18.9,7.4,2.4,-3.2,0.057999999999999996,0.162,0.23600000000000002,0.5710000000000001,0.11699999999999999,2019-20 11051,Lance Thomas,BKN,32.0,203.2,102.0582,Duke,USA,Undrafted,Undrafted,Undrafted,7,3.4,1.9,0.9,-24.2,0.019,0.141,0.13,0.485,0.078,2019-20 11052,Landry Shamet,LAC,23.0,193.04,86.18248,Wichita State,USA,2018,1,26,53,9.3,1.9,1.9,4.3,0.004,0.057999999999999996,0.132,0.58,0.09,2019-20 11053,Langston Galloway,DET,28.0,185.42,90.7184,St. Joseph's (PA),USA,Undrafted,Undrafted,Undrafted,66,10.3,2.3,1.5,-4.4,0.019,0.068,0.149,0.584,0.08900000000000001,2019-20 11054,Larry Nance Jr.,CLE,27.0,200.66,111.13004,Wyoming,USA,2015,1,27,56,10.1,7.3,2.2,-5.1,0.068,0.209,0.15,0.608,0.126,2019-20 11055,Lauri Markkanen,CHI,23.0,213.36,108.86208,Arizona,Finland,2017,1,7,50,14.7,6.3,1.5,-2.0,0.038,0.174,0.209,0.56,0.077,2019-20 11056,LeBron James,LAL,35.0,205.74,113.398,None,USA,2003,1,1,67,25.3,7.8,10.2,8.5,0.027999999999999997,0.191,0.308,0.5770000000000001,0.47700000000000004,2019-20 11057,Noah Vonleh,DEN,24.0,208.28,116.573144,Indiana,USA,2014,1,9,36,3.7,3.4,0.8,-5.0,0.084,0.205,0.135,0.622,0.115,2019-20 11058,Kentavious Caldwell-Pope,LAL,27.0,195.58,92.532768,Georgia,USA,2013,1,8,69,9.3,2.1,1.6,3.5,0.021,0.055999999999999994,0.142,0.584,0.085,2019-20 11059,Lonzo Ball,NOP,22.0,198.12,86.18248,UCLA,USA,2017,1,2,63,11.8,6.1,7.0,-0.7,0.032,0.142,0.18100000000000002,0.517,0.292,2019-20 11060,Kent Bazemore,SAC,30.0,193.04,88.45044,Old Dominion,USA,Undrafted,Undrafted,Undrafted,68,8.8,4.3,1.4,0.8,0.015,0.14400000000000002,0.171,0.499,0.077,2019-20 11061,Kendrick Nunn,MIA,24.0,187.96,86.18248,Oakland,USA,Undrafted,Undrafted,Undrafted,67,15.3,2.7,3.3,1.2,0.011000000000000001,0.079,0.23600000000000002,0.534,0.182,2019-20 11062,Josh Jackson,MEM,23.0,203.2,93.89354399999999,Kansas,USA,2017,1,4,22,9.0,3.0,1.6,2.5,0.027000000000000003,0.128,0.214,0.547,0.125,2019-20 11063,Josh Magette,ORL,30.0,185.42,72.57472,Alabama Huntsville,USA,2012,0,0,8,1.5,0.8,0.6,2.4,0.022000000000000002,0.128,0.226,0.37799999999999995,0.23800000000000002,2019-20 11064,Josh Okogie,MIN,21.0,193.04,96.615096,Georgia Tech,Nigeria,2018,1,20,62,8.6,4.3,1.6,-4.7,0.05,0.114,0.14800000000000002,0.5529999999999999,0.08900000000000001,2019-20 11065,Josh Reaves,DAL,23.0,193.04,97.068688,Penn State,USA,Undrafted,Undrafted,Undrafted,4,2.0,0.8,0.8,15.5,0.03,0.063,0.161,0.405,0.158,2019-20 11066,Josh Richardson,PHI,26.0,195.58,90.7184,Tennessee,USA,2015,2,40,55,13.7,3.2,2.9,3.3,0.023,0.075,0.2,0.5329999999999999,0.138,2019-20 11067,Jrue Holiday,NOP,30.0,190.5,92.98635999999999,UCLA,USA,2009,1,17,61,19.1,4.8,6.7,0.5,0.034,0.095,0.24100000000000002,0.537,0.284,2019-20 11068,Juan Toscano-Anderson,GSW,27.0,198.12,94.800728,Marquette,USA,Undrafted,Undrafted,Undrafted,13,5.3,4.0,2.0,-12.0,0.031,0.163,0.125,0.529,0.14400000000000002,2019-20 11069,Juancho Hernangomez,MIN,24.0,205.74,97.068688,None,Spain,2016,1,15,48,6.0,4.1,0.8,-2.3,0.046,0.184,0.149,0.518,0.063,2019-20 11070,Julius Randle,NYK,25.0,203.2,113.398,Kentucky,USA,2014,1,7,64,19.5,9.7,3.1,-5.9,0.067,0.223,0.271,0.5379999999999999,0.158,2019-20 11071,Justin Anderson,BKN,26.0,195.58,104.779752,Virginia,USA,2015,1,21,10,2.8,2.1,0.8,-0.1,0.008,0.16699999999999998,0.162,0.35200000000000004,0.099,2019-20 11072,Justin Holiday,IND,31.0,198.12,81.64656,Washington,USA,Undrafted,Undrafted,Undrafted,73,8.3,3.3,1.3,1.3,0.017,0.10400000000000001,0.13,0.585,0.068,2019-20 11073,Justin Jackson,DAL,25.0,200.66,99.79024,North Carolina,USA,2017,1,15,65,5.5,2.4,0.8,0.5,0.024,0.11900000000000001,0.15,0.496,0.067,2019-20 11074,Justin James,SAC,23.0,200.66,86.18248,Wyoming,USA,2019,2,40,36,2.5,0.9,0.5,-2.4,0.024,0.111,0.18100000000000002,0.47700000000000004,0.11800000000000001,2019-20 11075,Justin Patton,DET,23.0,210.82,109.315672,Creighton,USA,2017,1,16,5,1.8,1.0,0.4,-32.0,0.042,0.174,0.19399999999999998,0.45,0.111,2019-20 11076,Justin Robinson,WAS,22.0,185.42,88.45044,Virginia Tech ,USA,2019,Undrafted,Undrafted,9,1.4,0.6,0.8,29.9,0.022000000000000002,0.098,0.133,0.542,0.19399999999999998,2019-20 11077,Justin Wright-Foreman,UTA,22.0,182.88,86.18248,Hofstra,USA,2019,2,53,4,4.8,1.3,1.8,-32.5,0.0,0.125,0.225,0.43700000000000006,0.292,2019-20 11078,Justise Winslow,MEM,24.0,198.12,100.697424,Duke,USA,2015,1,10,11,11.3,6.6,4.0,6.4,0.043,0.154,0.19,0.44,0.183,2019-20 11079,Jusuf Nurkic,POR,25.0,213.36,131.54168,None,Bosnia and Herzegovina,2014,1,16,8,17.6,10.3,4.0,-0.5,0.087,0.243,0.23199999999999998,0.5670000000000001,0.179,2019-20 11080,Juwan Morgan,UTA,23.0,200.66,105.23334399999999,Indiana,USA,Undrafted,Undrafted,Undrafted,21,1.7,1.4,0.3,12.0,0.07,0.128,0.10099999999999999,0.648,0.053,2019-20 11081,KZ Okpala,MIA,21.0,203.2,97.52228000000001,Stanford,USA,2019,2,32,5,1.4,1.0,0.2,-31.7,0.038,0.16,0.102,0.595,0.077,2019-20 11082,Kadeem Allen,NYK,27.0,185.42,90.7184,Arizona,USA,2017,2,53,10,5.0,0.9,2.1,-10.1,0.016,0.065,0.191,0.512,0.259,2019-20 11083,Karl-Anthony Towns,MIN,24.0,210.82,112.490816,Kentucky,USA,2015,1,1,35,26.5,10.8,4.4,-1.5,0.075,0.24,0.278,0.642,0.21,2019-20 11084,Kawhi Leonard,LAC,29.0,200.66,102.0582,San Diego State,USA,2011,1,15,57,27.1,7.1,4.9,12.2,0.027999999999999997,0.175,0.327,0.589,0.255,2019-20 11085,Keita Bates-Diop,DEN,24.0,203.2,103.872568,Ohio State,USA,2018,2,48,44,6.5,2.9,0.7,-10.6,0.03,0.131,0.156,0.539,0.064,2019-20 11086,Kelan Martin,MIN,24.0,195.58,104.32616,Butler,USA,Undrafted,Undrafted,Undrafted,31,6.4,3.1,0.7,-1.7,0.021,0.154,0.171,0.506,0.071,2019-20 11087,Keldon Johnson,SAS,20.0,195.58,99.79024,Kentucky,USA,2019,1,29,17,9.1,3.4,0.9,11.3,0.033,0.146,0.16399999999999998,0.711,0.066,2019-20 11088,Kelly Olynyk,MIA,29.0,210.82,108.86208,Gonzaga,Canada,2013,1,13,67,8.2,4.6,1.7,1.5,0.034,0.191,0.165,0.621,0.131,2019-20 11089,Kelly Oubre Jr.,PHX,24.0,200.66,92.079176,Kansas,USA,2015,1,15,56,18.7,6.4,1.5,0.2,0.034,0.151,0.21899999999999997,0.56,0.066,2019-20 11090,Kemba Walker,BOS,30.0,182.88,83.46092800000001,Connecticut,USA,2011,1,9,56,20.4,3.9,4.8,7.1,0.02,0.1,0.268,0.575,0.23199999999999998,2019-20 11091,Kenrich Williams,NOP,25.0,198.12,95.25432,TCU,USA,Undrafted,Undrafted,Undrafted,39,3.5,4.8,1.5,-1.0,0.055,0.157,0.087,0.429,0.087,2019-20 11092,Lou Williams,LAC,33.0,185.42,79.3786,None,USA,2005,2,45,65,18.2,3.1,5.6,4.0,0.016,0.081,0.271,0.546,0.294,2019-20 11093,Lonnie Walker IV,SAS,21.0,195.58,92.532768,Miami,USA,2018,1,18,61,6.4,2.3,1.1,-0.4,0.023,0.11,0.183,0.507,0.099,2019-20 11094,Luc Mbah a Moute,HOU,33.0,203.2,104.32616,UCLA,Cameroon,2008,2,37,3,1.7,0.7,0.0,-11.3,0.033,0.037000000000000005,0.10800000000000001,0.425,0.0,2019-20 11095,Louis King,DET,21.0,200.66,92.98635999999999,Oregon,USA,Undrafted,Undrafted,Undrafted,10,2.0,1.0,0.5,11.0,0.015,0.141,0.163,0.44799999999999995,0.125,2019-20 11096,Michael Frazier II,HOU,26.0,190.5,90.7184,Florida,USA,Undrafted,Undrafted,Undrafted,13,2.1,0.8,0.2,-16.0,0.006,0.067,0.115,0.384,0.021,2019-20 11097,Michael Kidd-Gilchrist,DAL,26.0,198.12,105.23334399999999,Kentucky,USA,2012,1,2,25,2.4,2.7,0.6,4.2,0.045,0.16899999999999998,0.134,0.41600000000000004,0.077,2019-20 11098,Michael Porter Jr.,DEN,22.0,208.28,98.88305600000001,Missouri,USA,2018,1,14,55,9.3,4.7,0.8,0.7,0.07,0.214,0.21100000000000002,0.617,0.07400000000000001,2019-20 11099,Mikal Bridges,PHX,23.0,198.12,94.800728,Villanova,USA,2018,1,10,73,9.1,4.0,1.8,2.9,0.032,0.107,0.125,0.62,0.086,2019-20 11100,Mike Conley,UTA,32.0,185.42,79.3786,Ohio State,USA,2007,1,4,47,14.4,3.2,4.4,2.1,0.024,0.083,0.223,0.537,0.23600000000000002,2019-20 11101,Mike Muscala,OKC,28.0,208.28,108.86208,Bucknell,USA,2013,2,44,47,4.8,2.3,0.9,-2.3,0.027000000000000003,0.156,0.16,0.569,0.106,2019-20 11102,Mike Scott,PHI,31.0,200.66,107.501304,Virginia,USA,2012,2,43,68,6.0,3.6,0.8,5.7,0.051,0.14800000000000002,0.132,0.557,0.064,2019-20 11103,Miles Bridges,CHA,22.0,198.12,102.0582,Michigan State,USA,2018,1,12,65,13.0,5.6,1.8,-9.7,0.042,0.138,0.196,0.52,0.092,2019-20 11104,Mitchell Robinson,NYK,22.0,213.36,108.86208,Western Kentucky,USA,2018,2,36,61,9.7,7.0,0.6,-2.9,0.122,0.16,0.129,0.726,0.039,2019-20 11105,Miye Oni,UTA,22.0,195.58,93.439952,Yale,USA,2019,2,58,10,3.5,1.7,0.4,-8.6,0.044000000000000004,0.121,0.146,0.512,0.051,2019-20 11106,Mo Bamba,ORL,22.0,213.36,104.779752,Texas-Austin,USA,2018,1,6,62,5.4,4.9,0.7,0.5,0.099,0.21600000000000003,0.163,0.542,0.077,2019-20 11107,Monte Morris,DEN,25.0,187.96,83.007336,Iowa State,USA,2017,2,51,73,9.0,1.9,3.5,0.8,0.013999999999999999,0.067,0.168,0.545,0.21899999999999997,2019-20 11108,Montrezl Harrell,LAC,26.0,200.66,108.86208,Louisville,USA,2015,2,32,63,18.6,7.1,1.7,6.5,0.08900000000000001,0.141,0.245,0.607,0.102,2019-20 11109,Moritz Wagner,WAS,23.0,210.82,111.13004,Michigan,Germany,2018,1,25,45,8.7,4.9,1.2,-4.2,0.063,0.20199999999999999,0.179,0.638,0.1,2019-20 11110,Moses Brown,POR,20.0,218.44,111.13004,UCLA,USA,Undrafted,Undrafted,Undrafted,9,1.2,1.6,0.1,-50.9,0.073,0.324,0.2,0.40700000000000003,0.048,2019-20 11111,Mychal Mulder,GSW,26.0,190.5,83.46092800000001,Kentucky,Canada,Undrafted,Undrafted,Undrafted,7,11.0,3.3,1.1,6.2,0.016,0.09300000000000001,0.165,0.5329999999999999,0.053,2019-20 11112,Myles Turner,IND,24.0,210.82,113.398,Texas-Austin,USA,2015,1,11,62,12.1,6.6,1.2,0.4,0.047,0.168,0.18,0.5660000000000001,0.057,2019-20 11113,Nassir Little,POR,20.0,195.58,99.79024,North Carolina,USA,2019,1,25,48,3.6,2.3,0.5,-3.2,0.048,0.12,0.131,0.505,0.05,2019-20 11114,Naz Mitrou-Long,IND,26.0,190.5,98.88305600000001,Iowa State,Canada,Undrafted,Undrafted,Undrafted,5,2.8,1.4,1.6,20.2,0.0,0.11900000000000001,0.177,0.41200000000000003,0.25,2019-20 11115,Naz Reid,MIN,20.0,205.74,119.74828799999999,Louisiana State,USA,Undrafted,Undrafted,Undrafted,30,9.0,4.1,1.2,0.7,0.06,0.17600000000000002,0.23399999999999999,0.505,0.106,2019-20 11116,Nemanja Bjelica,SAC,32.0,208.28,106.140528,None,Serbia,2010,2,35,72,11.5,6.4,2.8,-1.0,0.054000000000000006,0.177,0.16699999999999998,0.602,0.141,2019-20 11117,Nerlens Noel,OKC,26.0,208.28,99.79024,Kentucky,USA,2013,1,6,61,7.4,4.9,0.9,1.3,0.08199999999999999,0.174,0.14800000000000002,0.711,0.079,2019-20 11118,Nickeil Alexander-Walker,NOP,21.0,195.58,92.98635999999999,Virginia Tech,Canada,2019,1,17,47,5.7,1.8,1.9,-3.6,0.015,0.122,0.233,0.473,0.212,2019-20 11119,Nicolas Batum,CHA,31.0,205.74,104.32616,None,France,2008,1,25,22,3.6,4.5,3.0,-3.3,0.049,0.146,0.09300000000000001,0.46299999999999997,0.17300000000000001,2019-20 11120,Nicolas Claxton,BKN,21.0,210.82,97.52228000000001,Georgia,USA,2019,2,31,15,4.4,2.9,1.1,-15.6,0.09,0.11199999999999999,0.14400000000000002,0.5770000000000001,0.142,2019-20 11121,Nicolo Melli,NOP,29.0,205.74,107.047712,None,Italy,Undrafted,Undrafted,Undrafted,60,6.6,3.0,1.4,-4.3,0.034,0.132,0.158,0.556,0.11199999999999999,2019-20 11122,Nigel Williams-Goss,UTA,25.0,187.96,86.18248,Gonzaga,USA,2017,2,55,10,1.4,0.6,0.6,4.5,0.037000000000000005,0.07,0.161,0.415,0.158,2019-20 11123,Nikola Jokic,DEN,25.0,213.36,128.820128,None,Serbia,2014,2,41,73,19.9,9.7,7.0,4.5,0.073,0.237,0.266,0.605,0.35,2019-20 11124,Mfiondu Kabengele,LAC,22.0,205.74,113.398,Florida State,Canada,2019,1,27,12,3.5,0.9,0.2,0.8,0.017,0.159,0.242,0.614,0.05,2019-20 11125,Meyers Leonard,MIA,28.0,213.36,117.93392,Illinois,USA,2012,1,11,51,6.1,5.1,1.1,4.5,0.03,0.214,0.121,0.627,0.075,2019-20 11126,Michael Carter-Williams,ORL,28.0,195.58,86.18248,Syracuse,USA,2013,1,11,45,7.2,3.3,2.4,1.4,0.05,0.121,0.175,0.535,0.192,2019-20 11127,Maxi Kleber,DAL,28.0,208.28,108.86208,None,Germany,Undrafted,Undrafted,Undrafted,74,9.1,5.2,1.2,3.4,0.054000000000000006,0.136,0.134,0.605,0.065,2019-20 11128,Luguentz Dort,OKC,21.0,190.5,97.52228000000001,Arizona State,Canada,Undrafted,Undrafted,Undrafted,36,6.8,2.3,0.8,4.4,0.03,0.066,0.139,0.506,0.045,2019-20 11129,Luka Doncic,DAL,21.0,200.66,104.32616,None,Slovenia,2018,1,3,61,28.8,9.4,8.8,5.3,0.036000000000000004,0.22399999999999998,0.355,0.585,0.45399999999999996,2019-20 11130,Luka Samanic,SAS,20.0,208.28,102.965384,None,Croatia,2019,1,19,3,5.3,3.3,2.0,8.8,0.02,0.16699999999999998,0.179,0.45,0.182,2019-20 11131,Luke Kennard,DET,24.0,195.58,93.439952,Duke,USA,2017,1,12,28,15.8,3.5,4.1,-2.1,0.01,0.095,0.193,0.589,0.188,2019-20 11132,Luke Kornet,CHI,24.0,218.44,113.398,Vanderbilt,USA,Undrafted,Undrafted,Undrafted,36,6.0,2.3,0.9,-3.6,0.037000000000000005,0.11800000000000001,0.163,0.539,0.08199999999999999,2019-20 11133,Malcolm Brogdon,IND,27.0,195.58,103.872568,Virginia,USA,2016,2,36,54,16.5,4.9,7.1,2.3,0.027999999999999997,0.124,0.249,0.541,0.35,2019-20 11134,Malcolm Miller,TOR,27.0,200.66,95.25432,Holy Cross,USA,Undrafted,Undrafted,Undrafted,28,1.3,0.6,0.4,15.9,0.013000000000000001,0.077,0.09,0.5379999999999999,0.08199999999999999,2019-20 11135,Malik Beasley,MIN,23.0,193.04,84.821704,Florida State,USA,2016,1,19,55,11.2,2.7,1.4,-1.9,0.013999999999999999,0.107,0.20800000000000002,0.546,0.09300000000000001,2019-20 11136,Malik Monk,CHA,22.0,190.5,90.7184,Kentucky,USA,2017,1,11,55,10.3,2.9,2.1,-10.5,0.021,0.10800000000000001,0.22,0.53,0.168,2019-20 11137,Malik Newman,CLE,23.0,190.5,86.18248,Kansas,USA,2018,Undrafted,Undrafted,1,2.0,0.0,0.0,-30.4,0.0,0.0,0.5710000000000001,0.34700000000000003,0.0,2019-20 11138,Marc Gasol,TOR,35.0,210.82,115.66596000000001,None,Spain,2007,2,48,44,7.5,6.3,3.3,10.1,0.027000000000000003,0.187,0.133,0.551,0.17300000000000001,2019-20 11139,Marco Belinelli,SAS,34.0,195.58,99.79024,None,Italy,2007,1,18,57,6.3,1.7,1.2,1.5,0.008,0.09699999999999999,0.166,0.532,0.102,2019-20 11140,Melvin Frazier Jr.,ORL,23.0,195.58,97.52228000000001,Tulane,USA,2018,2,35,19,2.1,0.5,0.2,-15.0,0.013999999999999999,0.067,0.129,0.5589999999999999,0.039,2019-20 11141,Marcus Smart,BOS,26.0,190.5,99.79024,Oklahoma State,USA,2014,1,6,60,12.9,3.8,4.9,7.3,0.02,0.08900000000000001,0.183,0.518,0.214,2019-20 11142,Marial Shayok,PHI,24.0,195.58,89.811216,Iowa State,Canada,2019,2,54,4,2.8,1.8,0.3,-23.2,0.033,0.19399999999999998,0.243,0.4,0.053,2019-20 11143,Marcus Morris Sr.,LAC,30.0,203.2,98.88305600000001,Kansas,USA,2011,1,14,62,16.7,5.0,1.4,1.5,0.028999999999999998,0.128,0.21600000000000003,0.57,0.066,2019-20 11144,Markelle Fultz,ORL,22.0,190.5,94.800728,Washington,USA,2017,1,1,72,12.1,3.3,5.1,-1.7,0.02,0.1,0.21,0.517,0.273,2019-20 11145,Max Strus,CHI,24.0,195.58,97.52228000000001,DePaul,USA,Undrafted,Undrafted,Undrafted,2,2.5,0.5,0.0,105.8,0.16699999999999998,0.0,0.158,0.727,0.0,2019-20 11146,Maurice Harkless,NYK,27.0,200.66,99.79024,St. John's,USA,2012,1,15,62,5.8,3.9,1.1,1.2,0.038,0.11699999999999999,0.105,0.5720000000000001,0.062,2019-20 11147,Matthew Dellavedova,CLE,29.0,190.5,90.7184,St.Mary's College of California,Australia,Undrafted,Undrafted,Undrafted,57,3.1,1.3,3.2,-1.2,0.022000000000000002,0.067,0.128,0.46299999999999997,0.297,2019-20 11148,Mario Hezonja,POR,25.0,203.2,99.79024,None,Croatia,2015,1,5,53,4.8,3.5,0.9,-9.5,0.032,0.158,0.135,0.525,0.08,2019-20 11149,Matt Mooney,CLE,23.0,187.96,90.264808,Texas Tech,USA,Undrafted,Undrafted,Undrafted,4,0.5,0.8,0.3,17.5,0.0,0.158,0.08,0.25,0.071,2019-20 11150,Matisse Thybulle,PHI,23.0,195.58,91.171992,Washington,USA,2019,1,20,65,4.7,1.6,1.2,2.4,0.033,0.049,0.10800000000000001,0.539,0.081,2019-20 11151,Matt Thomas,TOR,25.0,193.04,86.18248,Iowa State,USA,Undrafted,Undrafted,Undrafted,41,4.9,1.5,0.5,4.2,0.018000000000000002,0.1,0.152,0.65,0.076,2019-20 11152,Marvin Williams,MIL,34.0,203.2,107.501304,North Carolina,USA,2005,1,2,58,5.9,3.2,1.0,-2.8,0.025,0.132,0.12,0.5870000000000001,0.076,2019-20 11153,Marvin Bagley III,SAC,21.0,210.82,106.59411999999999,Duke,USA,2018,1,2,13,14.2,7.5,0.8,-12.6,0.08199999999999999,0.201,0.248,0.512,0.05,2019-20 11154,Marquese Chriss,GSW,22.0,205.74,108.86208,Washington,USA,2016,1,8,59,9.3,6.2,1.9,-9.5,0.08900000000000001,0.212,0.184,0.604,0.15,2019-20 11155,Marques Bolden,CLE,22.0,208.28,112.94440800000001,Duke,USA,2019,Undrafted,Undrafted,1,0.0,2.0,0.0,57.1,0.0,0.5,0.0,0.0,0.0,2019-20 11156,Marko Guduric,MEM,25.0,198.12,91.171992,None,Serbia,Undrafted,Undrafted,Undrafted,44,3.9,1.7,1.0,-2.6,0.027999999999999997,0.115,0.168,0.514,0.127,2019-20 11157,Markieff Morris,LAL,30.0,203.2,111.13004,Kansas,USA,2011,1,13,58,9.7,3.8,1.3,-5.8,0.033,0.14400000000000002,0.20199999999999999,0.565,0.1,2019-20 11158,Mason Plumlee,DEN,30.0,210.82,115.212368,Duke,USA,2013,1,22,61,7.2,5.2,2.5,-1.0,0.087,0.195,0.17300000000000001,0.613,0.21,2019-20 11159,Jordan McLaughlin,MIN,24.0,180.34,83.91452,Southern California,USA,Undrafted,Undrafted,Undrafted,30,7.6,1.6,4.2,-5.8,0.01,0.079,0.151,0.5870000000000001,0.303,2019-20 11160,Yogi Ferrell,LAC,28.0,182.88,80.73937600000001,Indiana,USA,Undrafted,Undrafted,Undrafted,10,5.6,1.9,2.2,-0.4,0.034,0.095,0.193,0.45899999999999996,0.22899999999999998,2020-21 11161,Zion Williamson,NOP,20.0,200.66,128.820128,Duke,USA,2019,1,1,61,27.0,7.2,3.7,2.1,0.081,0.131,0.287,0.649,0.188,2020-21 11162,Zeke Nnaji,DEN,20.0,205.74,108.86208,Arizona,USA,2020,1,22,42,3.2,1.5,0.2,-10.5,0.034,0.129,0.126,0.615,0.037000000000000005,2020-21 11163,Zach LaVine,CHI,26.0,195.58,90.7184,UCLA,USA,2014,1,13,58,27.4,5.0,4.9,-0.8,0.018000000000000002,0.121,0.302,0.634,0.225,2020-21 11164,Yuta Watanabe,TOR,26.0,205.74,97.52228000000001,George Washington,Japan,Undrafted,Undrafted,Undrafted,50,4.4,3.2,0.8,-2.7,0.046,0.171,0.121,0.565,0.079,2020-21 11165,Xavier Tillman,MEM,22.0,203.2,111.13004,Michigan State,USA,2020,2,35,59,6.6,4.3,1.3,2.9,0.065,0.163,0.142,0.605,0.096,2020-21 11166,Willie Cauley-Stein,DAL,27.0,213.36,108.86208,Kentucky,USA,2015,1,6,53,5.3,4.5,0.7,9.4,0.073,0.175,0.12,0.647,0.053,2020-21 11167,Frank Kaminsky,PHX,28.0,213.36,108.86208,Wisconsin,USA,2015,1,9,47,6.6,4.0,1.7,4.6,0.051,0.20800000000000002,0.185,0.547,0.154,2020-21 11168,Frank Mason,ORL,27.0,180.34,86.18248,Kansas,USA,2017,2,34,4,6.3,3.0,3.0,-11.1,0.033,0.10300000000000001,0.17,0.462,0.218,2020-21 11169,Frank Ntilikina,NYK,22.0,193.04,90.7184,None,France,2017,1,8,33,2.7,0.9,0.6,-3.6,0.019,0.077,0.134,0.512,0.095,2020-21 11170,Fred VanVleet,TOR,27.0,185.42,89.357624,Wichita State,USA,Undrafted,Undrafted,Undrafted,52,19.6,4.2,6.3,3.3,0.016,0.10099999999999999,0.237,0.534,0.264,2020-21 11171,Freddie Gillespie,TOR,24.0,205.74,111.13004,Baylor,USA,Undrafted,Undrafted,Undrafted,20,5.6,4.9,0.5,-9.6,0.1,0.142,0.12,0.563,0.034,2020-21 11172,Furkan Korkmaz,PHI,23.0,200.66,91.625584,None,Turkey,2016,1,26,55,9.1,2.1,1.5,6.0,0.015,0.09,0.195,0.544,0.111,2020-21 11173,Gabe Vincent,MIA,25.0,190.5,90.7184,California-Santa Barbara,USA,Undrafted,Undrafted,Undrafted,50,4.8,1.1,1.3,-5.9,0.016,0.068,0.184,0.498,0.161,2020-21 11174,Gabriel Deck,OKC,26.0,198.12,104.779752,None,Argentina,Undrafted,Undrafted,Undrafted,10,8.4,4.0,2.4,-12.7,0.067,0.11800000000000001,0.159,0.5479999999999999,0.16,2020-21 11175,Garrett Temple,CHI,35.0,195.58,88.45044,Louisiana State,USA,Undrafted,Undrafted,Undrafted,56,7.6,2.9,2.2,1.5,0.019,0.08199999999999999,0.126,0.525,0.10400000000000001,2020-21 11176,Garrison Mathews,WAS,24.0,195.58,97.52228000000001,Lipscomb,USA,Undrafted,Undrafted,Undrafted,64,5.5,1.4,0.4,-5.6,0.015,0.065,0.111,0.635,0.032,2020-21 11177,Gary Clark,PHI,26.0,198.12,102.0582,Cincinnati,USA,Undrafted,Undrafted,Undrafted,39,3.1,2.9,0.8,-7.7,0.044000000000000004,0.125,0.09699999999999999,0.436,0.064,2020-21 11178,Gary Harris,ORL,26.0,193.04,95.25432,Michigan State,USA,2014,1,19,39,9.9,2.0,2.0,-4.2,0.019,0.054000000000000006,0.16399999999999998,0.511,0.102,2020-21 11179,Gary Payton II,GSW,28.0,190.5,88.45044,Oregon State,USA,Undrafted,Undrafted,Undrafted,10,2.5,1.1,0.1,2.2,0.051,0.17600000000000002,0.153,0.847,0.037000000000000005,2020-21 11180,Gary Trent Jr.,TOR,22.0,195.58,94.800728,Duke,USA,2018,2,37,58,15.3,2.6,1.4,-1.8,0.013999999999999999,0.069,0.204,0.534,0.067,2020-21 11181,George Hill,PHI,35.0,193.04,85.275296,Indiana-Purdue Indianapolis,USA,2008,1,26,30,8.7,2.0,2.4,-0.4,0.023,0.063,0.161,0.596,0.156,2020-21 11182,Georges Niang,UTA,28.0,200.66,104.32616,Iowa State,USA,2016,2,50,72,6.9,2.4,0.8,14.6,0.024,0.11699999999999999,0.16899999999999998,0.602,0.071,2020-21 11183,Giannis Antetokounmpo,MIL,26.0,210.82,109.769264,None,Greece,2013,1,15,61,28.1,11.0,5.9,9.8,0.048,0.264,0.32,0.633,0.282,2020-21 11184,Glenn Robinson III,SAC,27.0,198.12,100.697424,Michigan,USA,2014,2,40,23,5.3,2.0,0.9,-17.3,0.027999999999999997,0.094,0.135,0.5539999999999999,0.075,2020-21 11185,Goga Bitadze,IND,21.0,210.82,113.398,None,Georgia,2019,1,18,45,5.1,3.3,0.8,-0.8,0.095,0.14800000000000002,0.16899999999999998,0.523,0.087,2020-21 11186,Goran Dragic,MIA,35.0,190.5,86.18248,None,Slovenia,2008,2,45,50,13.4,3.4,4.4,1.5,0.019,0.107,0.239,0.552,0.26,2020-21 11187,Gordon Hayward,CHA,31.0,200.66,102.0582,Butler,USA,2010,1,9,44,19.6,5.9,4.1,0.7,0.024,0.14300000000000002,0.235,0.584,0.18899999999999997,2020-21 11188,Gorgui Dieng,SAS,31.0,208.28,114.30518400000001,Louisville,Senegal,2013,1,21,38,6.8,3.7,1.3,-6.7,0.068,0.18100000000000002,0.16899999999999998,0.67,0.13,2020-21 11189,Grant Riller,CHA,24.0,187.96,86.18248,College of Charleston,USA,2020,2,56,7,2.6,0.1,0.4,-5.4,0.0,0.04,0.22,0.75,0.3,2020-21 11190,Grant Williams,BOS,22.0,198.12,107.047712,Tennessee,USA,2019,1,22,63,4.7,2.8,1.0,-1.9,0.04,0.113,0.12,0.546,0.079,2020-21 11191,Grayson Allen,MEM,25.0,193.04,89.811216,Duke,USA,2018,1,21,50,10.6,3.2,2.2,0.5,0.013999999999999999,0.106,0.16399999999999998,0.586,0.11599999999999999,2020-21 11192,Greg Whittington,DEN,28.0,203.2,95.25432,Georgetown,USA,Undrafted,Undrafted,Undrafted,4,0.0,0.0,0.0,33.3,0.0,0.0,0.10300000000000001,0.0,0.0,2020-21 11193,Hamidou Diallo,DET,22.0,195.58,91.625584,Kentucky,USA,2018,2,45,52,11.6,5.2,1.9,-8.6,0.046,0.161,0.218,0.541,0.133,2020-21 11194,Harrison Barnes,SAC,29.0,203.2,102.0582,North Carolina,USA,2012,1,7,58,16.1,6.6,3.5,-1.8,0.031,0.152,0.16899999999999998,0.626,0.128,2020-21 11195,Harry Giles III,POR,23.0,210.82,108.86208,Duke,USA,2017,1,20,38,2.8,3.5,0.8,-10.4,0.079,0.254,0.154,0.496,0.125,2020-21 11196,Frank Jackson,DET,23.0,190.5,92.98635999999999,Duke,USA,2017,2,31,40,9.8,2.2,0.9,-1.0,0.021,0.092,0.207,0.598,0.079,2020-21 11197,Hassan Whiteside,SAC,32.0,213.36,120.20188,Marshall,USA,2010,2,33,36,8.1,6.0,0.6,-8.1,0.109,0.26899999999999996,0.22699999999999998,0.5660000000000001,0.057999999999999996,2020-21 11198,Facundo Campazzo,DEN,30.0,177.8,88.45044,None,Argentina,Undrafted,Undrafted,Undrafted,65,6.1,2.1,3.6,2.8,0.015,0.081,0.128,0.5579999999999999,0.215,2020-21 11199,Ersan Ilyasova,UTA,34.0,205.74,106.59411999999999,None,Turkey,2005,2,36,17,3.8,1.7,0.2,6.7,0.047,0.14300000000000002,0.19,0.578,0.04,2020-21 11200,Devon Dotson,CHI,21.0,187.96,83.91452,Kansas,USA,Undrafted,Undrafted,Undrafted,11,2.1,0.5,0.6,21.7,0.039,0.061,0.16,0.5479999999999999,0.2,2020-21 11201,Devontae Cacok,LAL,24.0,200.66,108.86208,North Carolina-Wilmington,USA,Undrafted,Undrafted,Undrafted,20,2.0,1.6,0.1,18.1,0.11699999999999999,0.183,0.154,0.5760000000000001,0.013000000000000001,2020-21 11202,Devonte' Graham,CHA,26.0,185.42,88.45044,Kansas,USA,2018,2,34,55,14.8,2.7,5.4,2.1,0.013000000000000001,0.075,0.21100000000000002,0.552,0.272,2020-21 11203,Dewayne Dedmon,MIA,31.0,213.36,111.13004,Southern California,USA,Undrafted,Undrafted,Undrafted,16,7.1,5.4,0.8,17.1,0.13699999999999998,0.282,0.183,0.735,0.083,2020-21 11204,Didi Louzada,NOP,21.0,195.58,85.275296,None,Brazil,2019,2,35,3,2.7,1.0,1.0,-7.3,0.015,0.032,0.114,0.308,0.073,2020-21 11205,Dillon Brooks,MEM,25.0,200.66,102.0582,Oregon,Canada,2017,2,45,67,17.2,2.9,2.3,4.5,0.026000000000000002,0.069,0.256,0.515,0.11199999999999999,2020-21 11206,Domantas Sabonis,IND,25.0,210.82,108.86208,Gonzaga,Lithuania,2016,1,11,62,20.3,12.0,6.7,-1.9,0.066,0.259,0.239,0.601,0.28300000000000003,2020-21 11207,Donovan Mitchell,UTA,24.0,185.42,97.52228000000001,Louisville,USA,2017,1,13,53,26.4,4.4,5.2,7.9,0.027999999999999997,0.095,0.327,0.569,0.266,2020-21 11208,Donta Hall,ORL,23.0,208.28,104.32616,Alabama,USA,Undrafted,Undrafted,Undrafted,13,5.6,4.8,0.8,-6.5,0.126,0.193,0.135,0.731,0.102,2020-21 11209,Donte DiVincenzo,MIL,24.0,193.04,92.079176,Villanova,USA,2018,1,17,66,10.4,5.8,3.1,8.1,0.043,0.155,0.163,0.542,0.13699999999999998,2020-21 11210,Dorian Finney-Smith,DAL,28.0,200.66,99.79024,Florida,USA,Undrafted,Undrafted,Undrafted,60,9.8,5.4,1.7,5.1,0.052000000000000005,0.11599999999999999,0.12,0.609,0.07,2020-21 11211,Doug McDermott,IND,29.0,200.66,102.0582,Creighton,USA,2014,1,11,66,13.6,3.3,1.3,-1.8,0.036000000000000004,0.096,0.19399999999999998,0.635,0.075,2020-21 11212,Draymond Green,GSW,31.0,198.12,104.32616,Michigan State,USA,2012,2,35,63,7.0,7.1,8.9,5.4,0.027999999999999997,0.184,0.128,0.53,0.345,2020-21 11213,Drew Eubanks,SAS,24.0,205.74,111.13004,Oregon State,USA,Undrafted,Undrafted,Undrafted,54,5.8,4.5,0.8,-4.6,0.09,0.207,0.166,0.618,0.086,2020-21 11214,Duncan Robinson,MIA,27.0,200.66,97.52228000000001,Michigan,USA,Undrafted,Undrafted,Undrafted,72,13.1,3.5,1.8,2.3,0.003,0.109,0.162,0.628,0.08199999999999999,2020-21 11215,Dwayne Bacon,ORL,25.0,198.12,100.243832,Florida State,USA,2017,2,40,72,10.9,3.1,1.3,-11.4,0.015,0.102,0.193,0.49,0.08,2020-21 11216,Dwight Howard,PHI,35.0,208.28,120.20188,None,USA,2004,1,1,69,7.0,8.4,0.9,-2.4,0.14800000000000002,0.309,0.17300000000000001,0.61,0.076,2020-21 11217,Dwight Powell,DAL,29.0,208.28,108.86208,Stanford,Canada,2014,2,45,58,5.9,4.0,1.1,4.0,0.086,0.158,0.129,0.688,0.09,2020-21 11218,Dylan Windler,CLE,24.0,198.12,88.904032,Belmont,USA,2019,1,26,31,5.2,3.5,1.1,-6.5,0.039,0.171,0.14,0.5670000000000001,0.08900000000000001,2020-21 11219,E'Twaun Moore,PHX,32.0,190.5,86.636072,Purdue,USA,2011,2,55,27,4.9,1.7,1.5,0.5,0.035,0.08,0.16399999999999998,0.523,0.14,2020-21 11220,Ed Davis,MIN,32.0,205.74,98.88305600000001,North Carolina,USA,2010,1,13,23,2.1,5.0,0.9,-7.6,0.127,0.235,0.078,0.48700000000000004,0.1,2020-21 11221,Edmond Sumner,IND,25.0,193.04,88.904032,Xavier,USA,2017,2,52,53,7.5,1.8,0.9,-0.4,0.02,0.083,0.17600000000000002,0.626,0.075,2020-21 11222,Elfrid Payton,NYK,27.0,190.5,88.45044,Louisana-Lafayette,USA,2014,1,10,63,10.1,3.4,3.2,-3.0,0.040999999999999995,0.098,0.22399999999999998,0.478,0.209,2020-21 11223,Elijah Bryant,MIL,26.0,195.58,95.25432,Brigham Young,USA,Undrafted,Undrafted,Undrafted,1,16.0,6.0,3.0,14.0,0.065,0.133,0.231,0.5589999999999999,0.13,2020-21 11224,Elijah Hughes,UTA,23.0,195.58,97.52228000000001,Syracuse,USA,2020,2,39,18,1.7,0.5,0.3,-28.8,0.013999999999999999,0.11900000000000001,0.242,0.488,0.158,2020-21 11225,Enes Kanter,POR,29.0,208.28,113.398,None,Turkey,2011,1,3,72,11.2,11.0,1.2,4.9,0.14800000000000002,0.281,0.16899999999999998,0.636,0.069,2020-21 11226,Eric Bledsoe,NOP,31.0,185.42,97.068688,Kentucky,USA,2010,1,18,71,12.2,3.4,3.8,-1.8,0.013000000000000001,0.1,0.18100000000000002,0.5329999999999999,0.17,2020-21 11227,Eric Gordon,HOU,32.0,190.5,97.52228000000001,Indiana,USA,2008,1,7,27,17.8,2.1,2.6,-3.3,0.009000000000000001,0.062,0.24600000000000002,0.5770000000000001,0.147,2020-21 11228,Eric Paschall,GSW,24.0,198.12,115.66596000000001,Villanova,USA,2019,2,41,40,9.5,3.2,1.3,-6.8,0.038,0.138,0.23399999999999999,0.561,0.125,2020-21 11229,Evan Fournier,BOS,28.0,200.66,92.98635999999999,None,France,2012,1,20,42,17.1,3.0,3.4,-1.4,0.006999999999999999,0.094,0.222,0.598,0.17,2020-21 11230,Henry Ellenson,TOR,24.0,208.28,108.86208,Marquette,USA,2016,1,18,2,7.5,6.0,2.5,10.6,0.061,0.205,0.16699999999999998,0.47600000000000003,0.20800000000000002,2020-21 11231,Ignas Brazdeikis,ORL,22.0,198.12,100.243832,Michigan,Canada,2019,2,47,13,7.0,3.5,1.3,-4.3,0.040999999999999995,0.129,0.171,0.51,0.1,2020-21 11232,Iman Shumpert,BKN,31.0,195.58,96.16150400000001,Georgia Tech,USA,2011,1,17,2,1.0,0.5,0.0,-4.3,0.077,0.0,0.185,0.25,0.0,2020-21 11233,Jared Dudley,LAL,35.0,198.12,107.501304,Boston College,USA,2007,1,22,12,0.5,1.8,0.4,-1.7,0.047,0.213,0.055999999999999994,0.33299999999999996,0.081,2020-21 11234,Jared Harper,NYK,23.0,177.8,79.3786,Auburn,USA,Undrafted,Undrafted,Undrafted,8,0.4,0.3,0.1,-16.4,0.0,0.091,0.2,0.26,0.125,2020-21 11235,Jaren Jackson Jr.,MEM,21.0,210.82,109.769264,Michigan State,USA,2018,1,4,11,14.4,5.6,1.1,-10.5,0.06,0.16399999999999998,0.252,0.551,0.07400000000000001,2020-21 11236,Jarred Vanderbilt,MIN,22.0,205.74,97.068688,Kentucky,USA,2018,2,41,64,5.4,5.8,1.2,-1.1,0.096,0.21100000000000002,0.11800000000000001,0.612,0.091,2020-21 11237,Jarrell Brantley,UTA,25.0,195.58,113.398,College of Charleston,USA,2019,2,50,28,2.3,1.0,0.5,-9.1,0.059000000000000004,0.125,0.182,0.605,0.17,2020-21 11238,Jarrett Allen,CLE,23.0,210.82,110.22285600000001,Texas-Austin,USA,2017,1,22,63,12.8,10.0,1.7,-5.6,0.106,0.23199999999999998,0.163,0.6609999999999999,0.087,2020-21 11239,Jarrett Culver,MIN,22.0,198.12,88.45044,Texas Tech,USA,2019,1,6,34,5.3,3.1,0.7,-10.7,0.059000000000000004,0.132,0.179,0.47600000000000003,0.079,2020-21 11240,Javonte Green,CHI,27.0,193.04,92.98635999999999,Radford,USA,Undrafted,Undrafted,Undrafted,41,3.6,1.7,0.4,1.8,0.055999999999999994,0.1,0.122,0.61,0.048,2020-21 11241,Jaxson Hayes,NOP,21.0,210.82,99.79024,Texas-Austin,USA,2019,1,8,60,7.5,4.3,0.6,-0.9,0.087,0.161,0.156,0.675,0.057,2020-21 11242,Jay Scrubb,LAC,20.0,195.58,99.79024, ,USA,2020,2,55,4,8.8,3.5,0.3,-2.8,0.022000000000000002,0.14,0.217,0.45799999999999996,0.015,2020-21 11243,Jaylen Adams,MIL,25.0,182.88,102.0582,St. Bonaventure,USA,Undrafted,Undrafted,Undrafted,7,0.3,0.4,0.3,-31.0,0.0,0.14300000000000002,0.17800000000000002,0.125,0.2,2020-21 11244,Jaylen Brown,BOS,24.0,198.12,101.151016,California,USA,2016,1,3,58,24.7,6.0,3.4,1.8,0.035,0.136,0.29,0.586,0.162,2020-21 11245,Jaylen Hoard,OKC,22.0,203.2,97.975872,Wake Forest,France,Undrafted,Undrafted,Undrafted,19,6.1,3.4,1.3,-9.1,0.061,0.128,0.156,0.547,0.11,2020-21 11246,Jaylen Nowell,MIN,21.0,193.04,91.171992,Washington,USA,2019,2,43,42,9.0,2.3,1.5,-6.6,0.022000000000000002,0.098,0.20600000000000002,0.528,0.13,2020-21 11247,Jayson Tatum,BOS,23.0,203.2,95.25432,Duke,USA,2017,1,3,64,26.4,7.4,4.3,3.0,0.021,0.188,0.298,0.5760000000000001,0.196,2020-21 11248,Jeff Green,BKN,34.0,203.2,106.59411999999999,Georgetown,USA,2007,1,5,68,11.0,3.9,1.6,3.3,0.019,0.11599999999999999,0.154,0.624,0.08,2020-21 11249,Jeff Teague,MIL,33.0,190.5,88.45044,Wake Forest,USA,2009,1,19,55,6.7,1.6,2.4,2.8,0.016,0.07400000000000001,0.174,0.562,0.182,2020-21 11250,Jerami Grant,DET,27.0,203.2,95.25432,Syracuse,USA,2014,2,39,54,22.3,4.6,2.8,-3.2,0.018000000000000002,0.11800000000000001,0.278,0.556,0.145,2020-21 11251,Jeremiah Martin,CLE,25.0,187.96,83.91452,Memphis,USA,Undrafted,Undrafted,Undrafted,9,2.4,0.8,0.4,-16.7,0.021,0.065,0.22,0.313,0.091,2020-21 11252,Jeremy Lamb,IND,29.0,195.58,81.64656,Connecticut,USA,2012,1,12,36,10.1,3.6,1.5,-0.3,0.032,0.13699999999999998,0.18,0.5870000000000001,0.094,2020-21 11253,Jerome Robinson,WAS,24.0,193.04,86.18248,Boston College,USA,2018,1,13,17,4.9,2.2,1.5,-13.1,0.011000000000000001,0.105,0.161,0.4,0.114,2020-21 11254,Jevon Carter,PHX,25.0,185.42,90.7184,West Virginia,USA,2018,2,32,60,4.1,1.5,1.2,3.3,0.022000000000000002,0.107,0.146,0.5479999999999999,0.136,2020-21 11255,Jimmy Butler,MIA,31.0,200.66,104.32616,Marquette,USA,2011,1,30,52,21.5,6.9,7.1,5.2,0.055999999999999994,0.153,0.259,0.607,0.345,2020-21 11256,Joe Harris,BKN,29.0,198.12,99.79024,Virginia,USA,2014,2,33,69,14.1,3.6,1.9,6.9,0.021,0.09,0.157,0.6629999999999999,0.081,2020-21 11257,Joe Ingles,UTA,33.0,203.2,99.79024,None,Australia,Undrafted,Undrafted,Undrafted,67,12.1,3.6,4.7,11.8,0.013999999999999999,0.10800000000000001,0.162,0.672,0.23800000000000002,2020-21 11258,Joel Embiid,PHI,27.0,213.36,127.00576000000001,Kansas,Cameroon,2014,1,3,51,28.5,10.6,2.8,12.0,0.078,0.254,0.35200000000000004,0.636,0.156,2020-21 11259,John Collins,ATL,23.0,205.74,106.59411999999999,Wake Forest,USA,2017,1,19,63,17.6,7.4,1.2,4.3,0.064,0.183,0.214,0.645,0.065,2020-21 11260,John Konchar,MEM,25.0,195.58,95.25432,Indiana-Purdue Fort Wayne,USA,Undrafted,Undrafted,Undrafted,43,4.3,3.0,1.1,2.1,0.057,0.161,0.124,0.608,0.111,2020-21 11261,John Wall,HOU,30.0,190.5,95.25432,Kentucky,USA,2010,1,1,40,20.6,3.2,6.9,-5.7,0.012,0.084,0.316,0.503,0.365,2020-21 11262,James Wiseman,GSW,20.0,213.36,108.86208,Memphis,USA,2020,1,2,39,11.5,5.8,0.7,-8.8,0.063,0.19,0.231,0.552,0.05,2020-21 11263,James Nunnally,NOP,30.0,200.66,92.98635999999999,California-Santa Barbara,USA,Undrafted,Undrafted,Undrafted,9,1.7,1.0,0.3,-4.8,0.033,0.149,0.129,0.54,0.094,2020-21 11264,James Johnson,NOP,34.0,200.66,108.86208,Wake Forest,USA,2009,1,16,51,7.2,3.5,1.9,-5.0,0.028999999999999998,0.131,0.166,0.51,0.134,2020-21 11265,James Harden,BKN,31.0,195.58,99.79024,Arizona State,USA,2009,1,3,44,24.6,7.9,10.8,2.9,0.023,0.191,0.28300000000000003,0.618,0.442,2020-21 11266,Immanuel Quickley,NYK,22.0,190.5,86.18248,Kentucky,USA,2020,1,25,64,11.4,2.1,2.0,7.1,0.02,0.086,0.24600000000000002,0.557,0.16399999999999998,2020-21 11267,Isaac Bonga,WAS,21.0,203.2,81.64656,None,Germany,2018,2,39,40,2.0,1.7,0.6,-3.3,0.042,0.1,0.10099999999999999,0.461,0.07200000000000001,2020-21 11268,Isaac Okoro,CLE,20.0,195.58,102.0582,Auburn,USA,2020,1,5,67,9.6,3.1,1.9,-8.7,0.031,0.066,0.142,0.514,0.086,2020-21 11269,Isaiah Hartenstein,CLE,23.0,213.36,113.398,None,Germany,2017,2,43,46,5.1,3.9,1.2,2.1,0.114,0.207,0.187,0.583,0.147,2020-21 11270,Isaiah Joe,PHI,21.0,193.04,74.84268,Arkansas,USA,2020,2,49,41,3.7,0.9,0.5,1.8,0.013999999999999999,0.083,0.163,0.5329999999999999,0.07200000000000001,2020-21 11271,Isaiah Roby,OKC,23.0,203.2,104.32616,Nebraska-Lincoln,USA,2019,2,45,61,8.7,5.6,1.8,-14.1,0.057,0.16899999999999998,0.171,0.555,0.11800000000000001,2020-21 11272,Isaiah Stewart,DET,20.0,203.2,113.398,Washington,USA,2020,1,16,68,7.9,6.7,0.9,-2.0,0.105,0.193,0.15,0.597,0.064,2020-21 11273,Isaiah Thomas,NOP,32.0,175.26,83.91452,Washington,USA,2011,2,60,3,7.7,1.3,1.7,6.7,0.019,0.052000000000000005,0.27399999999999997,0.41200000000000003,0.16699999999999998,2020-21 11274,Ish Smith,WAS,32.0,182.88,79.3786,Wake Forest,USA,Undrafted,Undrafted,Undrafted,44,6.7,3.4,3.9,2.3,0.022000000000000002,0.131,0.155,0.473,0.242,2020-21 11275,Ivica Zubac,LAC,24.0,213.36,108.86208,None,Croatia,2016,2,32,72,9.0,7.2,1.3,5.0,0.121,0.2,0.147,0.693,0.079,2020-21 11276,JJ Redick,DAL,37.0,190.5,90.7184,Duke,USA,2006,1,11,44,7.4,1.5,1.2,-1.3,0.006,0.08199999999999999,0.184,0.564,0.098,2020-21 11277,Ja Morant,MEM,21.0,190.5,78.92500799999999,Murray State,USA,2019,1,2,63,19.1,4.0,7.4,2.6,0.027000000000000003,0.091,0.267,0.537,0.321,2020-21 11278,JaKarr Sampson,IND,28.0,200.66,97.068688,St. John's,USA,Undrafted,Undrafted,Undrafted,29,4.6,2.7,0.1,1.1,0.08,0.145,0.177,0.5329999999999999,0.017,2020-21 11279,JaMychal Green,DEN,31.0,203.2,102.965384,Alabama,USA,Undrafted,Undrafted,Undrafted,58,8.1,4.8,0.9,4.1,0.07200000000000001,0.177,0.172,0.59,0.07,2020-21 11280,Devin Vassell,SAS,20.0,195.58,90.7184,Florida State,USA,2020,1,11,62,5.5,2.8,0.9,-2.4,0.021,0.138,0.138,0.524,0.071,2020-21 11281,JaVale McGee,DEN,33.0,213.36,122.46983999999999,Nevada-Reno,USA,2008,1,18,46,7.3,5.2,0.8,-6.1,0.105,0.231,0.228,0.541,0.098,2020-21 11282,Jaden McDaniels,MIN,20.0,205.74,83.91452,Washington,USA,2020,1,28,63,6.8,3.7,1.1,-3.4,0.032,0.11800000000000001,0.11800000000000001,0.552,0.064,2020-21 11283,Jae Crowder,PHX,30.0,198.12,106.59411999999999,Marquette,USA,2012,2,34,60,10.1,4.7,2.1,6.3,0.02,0.146,0.152,0.574,0.102,2020-21 11284,Jae'Sean Tate,HOU,25.0,193.04,104.32616,Ohio State,USA,Undrafted,Undrafted,Undrafted,70,11.3,5.3,2.5,-3.8,0.06,0.11800000000000001,0.161,0.5760000000000001,0.127,2020-21 11285,Jahlil Okafor,DET,25.0,208.28,122.46983999999999,Duke,USA,2015,1,3,27,5.4,2.4,0.5,-10.2,0.07,0.11900000000000001,0.17,0.644,0.066,2020-21 11286,Jahmi'us Ramsey,SAC,20.0,190.5,86.18248,Texas Tech,USA,2020,2,43,13,3.1,0.8,0.5,2.4,0.019,0.08,0.183,0.498,0.08800000000000001,2020-21 11287,Jake Layman,MIN,27.0,203.2,94.800728,Maryland,USA,2016,2,47,45,5.1,1.5,0.6,-5.8,0.019,0.083,0.147,0.5770000000000001,0.067,2020-21 11288,Jakob Poeltl,SAS,25.0,215.9,111.13004,Utah,Austria,2016,1,9,69,8.6,7.9,1.9,3.2,0.114,0.17300000000000001,0.13,0.612,0.096,2020-21 11289,Jalen Brunson,DAL,24.0,185.42,86.18248,Villanova,USA,2018,2,33,68,12.6,3.4,3.5,4.9,0.016,0.11699999999999999,0.196,0.618,0.215,2020-21 11290,Jalen Harris,TOR,22.0,195.58,88.45044,Nevada,USA,2020,2,59,13,7.4,1.4,1.3,0.3,0.017,0.091,0.21899999999999997,0.632,0.153,2020-21 11291,Jalen Lecque,IND,21.0,193.04,83.91452,None,USA,Undrafted,Undrafted,Undrafted,4,1.3,1.3,0.5,-14.8,0.083,0.2,0.263,0.242,0.33299999999999996,2020-21 11292,Jalen McDaniels,CHA,23.0,205.74,92.98635999999999,San Diego State,USA,2019,2,52,47,7.4,3.6,1.1,-9.4,0.047,0.138,0.16899999999999998,0.5539999999999999,0.09,2020-21 11293,Jalen Smith,PHX,21.0,208.28,97.52228000000001,Maryland,USA,2020,1,10,27,2.0,1.4,0.1,-4.4,0.044000000000000004,0.174,0.161,0.499,0.037000000000000005,2020-21 11294,Jamal Murray,DEN,24.0,190.5,97.52228000000001,Kentucky,Canada,2016,1,7,48,21.2,4.0,4.8,8.0,0.023,0.095,0.244,0.5920000000000001,0.19699999999999998,2020-21 11295,James Ennis III,ORL,30.0,198.12,97.52228000000001,California State-Long Beach,USA,2013,2,50,41,8.4,4.0,1.5,-3.8,0.042,0.12300000000000001,0.13699999999999998,0.613,0.087,2020-21 11296,Jabari Parker,BOS,26.0,203.2,111.13004,Duke,USA,2014,1,2,13,5.5,3.2,0.8,-5.5,0.055999999999999994,0.18,0.175,0.593,0.105,2020-21 11297,Devin Cannady,ORL,25.0,187.96,83.007336,Princeton,USA,2019,Undrafted,Undrafted,8,4.3,0.6,0.1,-13.7,0.0,0.065,0.18100000000000002,0.547,0.023,2020-21 11298,Devin Booker,PHX,24.0,195.58,93.439952,Kentucky,USA,2015,1,13,67,25.6,4.2,4.3,7.2,0.016,0.10800000000000001,0.319,0.5870000000000001,0.2,2020-21 11299,Desmond Bane,MEM,23.0,195.58,97.52228000000001,TCU,USA,2020,1,30,68,9.2,3.1,1.7,0.4,0.019,0.11599999999999999,0.155,0.6,0.105,2020-21 11300,Ben McLemore,LAL,28.0,190.5,88.45044,Kansas,USA,2013,1,7,53,7.7,1.9,0.7,-4.2,0.015,0.091,0.192,0.523,0.064,2020-21 11301,Ben Simmons,PHI,24.0,210.82,108.86208,Louisiana State,Australia,2016,1,1,58,14.3,7.2,6.9,8.0,0.051,0.166,0.2,0.584,0.308,2020-21 11302,Bismack Biyombo,CHA,28.0,203.2,115.66596000000001,None,DRC,2011,1,7,66,5.0,5.3,1.2,-8.9,0.094,0.15,0.113,0.574,0.087,2020-21 11303,Blake Griffin,BKN,32.0,205.74,113.398,Oklahoma,USA,2009,1,1,46,11.0,4.9,3.0,2.1,0.028999999999999998,0.159,0.191,0.546,0.171,2020-21 11304,Boban Marjanovic,DAL,32.0,223.52,131.54168,None,Serbia,Undrafted,Undrafted,Undrafted,33,4.7,3.9,0.3,5.9,0.159,0.29100000000000004,0.231,0.562,0.06,2020-21 11305,Bobby Portis,MIL,26.0,208.28,113.398,Arkansas,USA,2015,1,22,66,11.4,7.1,1.1,5.1,0.085,0.22899999999999998,0.20199999999999999,0.598,0.075,2020-21 11306,Bogdan Bogdanovic,ATL,28.0,198.12,99.79024,None,Serbia,2014,1,27,44,16.4,3.6,3.3,3.9,0.016,0.10400000000000001,0.21,0.616,0.16899999999999998,2020-21 11307,Bojan Bogdanovic,UTA,32.0,200.66,102.511792,None,Croatia,2011,2,31,72,17.0,3.9,1.9,9.5,0.018000000000000002,0.099,0.225,0.588,0.091,2020-21 11308,Bol Bol,DEN,21.0,218.44,99.79024,Oregon,Sudan,2019,2,44,32,2.2,0.8,0.2,-24.9,0.0,0.154,0.191,0.534,0.067,2020-21 11309,Brad Wanamaker,CHA,31.0,190.5,95.25432,Pittsburgh,USA,Undrafted,Undrafted,Undrafted,61,5.5,1.7,2.9,-5.7,0.016,0.08,0.166,0.489,0.251,2020-21 11310,Bradley Beal,WAS,28.0,190.5,93.89354399999999,Florida,USA,2012,1,3,60,31.3,4.7,4.4,-0.4,0.033,0.094,0.331,0.593,0.20199999999999999,2020-21 11311,Brandon Clarke,MEM,24.0,203.2,97.52228000000001,Gonzaga,Canada,2019,1,21,59,10.3,5.6,1.6,0.2,0.064,0.16,0.16699999999999998,0.56,0.094,2020-21 11312,Brandon Goodwin,ATL,25.0,182.88,81.64656,Florida Gulf Coast,USA,Undrafted,Undrafted,Undrafted,47,4.9,1.5,2.0,-4.4,0.012,0.09699999999999999,0.19,0.47100000000000003,0.24600000000000002,2020-21 11313,Brandon Ingram,NOP,23.0,203.2,86.18248,Duke,USA,2016,1,2,61,23.8,4.9,4.9,1.0,0.016,0.126,0.27899999999999997,0.584,0.218,2020-21 11314,Brian Bowen II,IND,22.0,198.12,86.18248,None,USA,Undrafted,Undrafted,Undrafted,6,0.5,0.5,0.0,9.4,0.0,0.158,0.098,0.33799999999999997,0.0,2020-21 11315,Brodric Thomas,CLE,24.0,195.58,83.91452,Truman State,USA,Undrafted,Undrafted,Undrafted,32,3.9,1.7,0.9,-4.5,0.019,0.107,0.158,0.48700000000000004,0.115,2020-21 11316,Brook Lopez,MIL,33.0,213.36,127.912944,Stanford,USA,2008,1,10,70,12.3,5.0,0.7,6.8,0.054000000000000006,0.115,0.166,0.611,0.033,2020-21 11317,Bruce Brown,BKN,24.0,193.04,91.625584,Miami,USA,2018,2,42,65,8.8,5.4,1.6,3.5,0.081,0.154,0.157,0.604,0.099,2020-21 11318,Bruno Caboclo,HOU,25.0,205.74,98.88305600000001,None,Brazil,2014,1,20,6,2.8,2.3,0.2,2.3,0.064,0.268,0.23199999999999998,0.475,0.048,2020-21 11319,Bruno Fernando,ATL,22.0,205.74,108.86208,Maryland,Angola,2019,2,34,33,1.5,2.4,0.3,-6.0,0.066,0.256,0.133,0.475,0.069,2020-21 11320,Bryn Forbes,MIL,27.0,187.96,92.98635999999999,Michigan State,USA,Undrafted,Undrafted,Undrafted,70,10.0,1.6,0.6,2.7,0.008,0.069,0.18,0.631,0.045,2020-21 11321,Buddy Hield,SAC,28.0,193.04,99.79024,Oklahoma,Bahamas,2016,1,6,71,16.6,4.7,3.6,-1.8,0.012,0.126,0.201,0.5670000000000001,0.141,2020-21 11322,CJ Elleby,POR,21.0,198.12,90.7184,Washington State,USA,2020,2,46,30,2.3,1.1,0.3,-5.3,0.049,0.08900000000000001,0.16,0.46799999999999997,0.076,2020-21 11323,CJ McCollum,POR,29.0,190.5,86.18248,Lehigh,USA,2013,1,10,47,23.1,3.9,4.7,6.2,0.018000000000000002,0.099,0.265,0.5770000000000001,0.22,2020-21 11324,Caleb Martin,CHA,25.0,195.58,92.98635999999999,Nevada-Reno,USA,Undrafted,Undrafted,Undrafted,53,5.0,2.7,1.3,-4.9,0.036000000000000004,0.125,0.16399999999999998,0.465,0.12300000000000001,2020-21 11325,Cam Reddish,ATL,21.0,203.2,98.88305600000001,Duke,USA,2019,1,10,26,11.2,4.0,1.3,-4.0,0.027999999999999997,0.109,0.183,0.488,0.066,2020-21 11326,Cameron Johnson,PHX,25.0,203.2,95.25432,North Carolina,USA,2019,1,11,60,9.6,3.3,1.4,5.7,0.023,0.11800000000000001,0.16399999999999998,0.563,0.083,2020-21 11327,Cameron Oliver,HOU,24.0,203.2,102.0582,Nevada,USA,Undrafted,Undrafted,Undrafted,4,10.8,5.3,1.3,-5.2,0.05,0.188,0.174,0.619,0.086,2020-21 11328,Cameron Payne,PHX,26.0,185.42,83.007336,Murray State,USA,2015,1,14,60,8.4,2.4,3.6,7.8,0.016,0.11900000000000001,0.193,0.602,0.281,2020-21 11329,Bam Adebayo,MIA,23.0,205.74,115.66596000000001,Kentucky,USA,2017,1,14,64,18.7,9.0,5.4,0.6,0.07,0.204,0.233,0.626,0.267,2020-21 11330,Axel Toupane,MIL,28.0,200.66,95.25432,None,France,Undrafted,Undrafted,Undrafted,8,1.8,0.8,0.5,-2.2,0.0,0.08199999999999999,0.092,0.49700000000000005,0.098,2020-21 11331,Avery Bradley,HOU,30.0,190.5,81.64656,Texas-Austin,USA,2010,1,19,27,6.4,2.1,1.7,-10.2,0.013000000000000001,0.078,0.146,0.48700000000000004,0.10800000000000001,2020-21 11332,Austin Rivers,DEN,28.0,193.04,90.7184,Duke,USA,2012,1,10,36,7.9,2.3,2.3,0.0,0.009000000000000001,0.08800000000000001,0.15,0.551,0.136,2020-21 11333,Aaron Holiday,IND,24.0,182.88,83.91452,UCLA,USA,2018,1,23,66,7.2,1.3,1.9,-0.2,0.012,0.06,0.18899999999999997,0.503,0.139,2020-21 11334,Aaron Nesmith,BOS,21.0,195.58,97.52228000000001,Vanderbilt,USA,2020,1,14,46,4.7,2.8,0.5,-0.5,0.040999999999999995,0.146,0.133,0.573,0.047,2020-21 11335,Abdel Nader,PHX,27.0,195.58,102.0582,Iowa State,Egypt,2016,2,58,24,6.7,2.6,0.8,5.0,0.02,0.151,0.183,0.605,0.078,2020-21 11336,Adam Mokoka,CHI,22.0,193.04,86.18248,None,France,Undrafted,Undrafted,Undrafted,14,1.1,0.4,0.4,-7.1,0.017,0.077,0.171,0.386,0.179,2020-21 11337,Al Horford,BOS,35.0,205.74,108.86208,Florida,Dominican Republic,2007,1,3,28,14.2,6.7,3.4,-6.9,0.034,0.195,0.221,0.5379999999999999,0.20600000000000002,2020-21 11338,Al-Farouq Aminu,CHI,30.0,203.2,99.79024,Wake Forest,USA,2010,1,8,23,4.4,4.8,1.3,-6.2,0.05,0.2,0.138,0.469,0.10099999999999999,2020-21 11339,Alec Burks,NYK,29.0,198.12,97.068688,Colorado,USA,2011,1,12,49,12.7,4.6,2.2,5.0,0.016,0.156,0.20800000000000002,0.564,0.135,2020-21 11340,Aleksej Pokusevski,OKC,19.0,213.36,86.18248,None,Serbia,2020,1,17,45,8.2,4.7,2.2,-16.7,0.025,0.155,0.19699999999999998,0.43,0.133,2020-21 11341,Alen Smailagic,GSW,20.0,208.28,97.52228000000001,None,Serbia,2019,2,39,15,1.9,1.1,0.3,-17.6,0.065,0.111,0.165,0.47200000000000003,0.078,2020-21 11342,Alex Caruso,LAL,27.0,193.04,84.368112,Texas A&M,USA,Undrafted,Undrafted,Undrafted,58,6.4,2.9,2.8,5.5,0.025,0.114,0.14400000000000002,0.547,0.19,2020-21 11343,Alex Len,WAS,28.0,213.36,113.398,Maryland,Ukraine,2013,1,5,64,6.6,4.1,0.8,-4.0,0.077,0.174,0.161,0.643,0.069,2020-21 11344,Alfonzo McKinnie,LAL,28.0,200.66,97.52228000000001,Wisconsin-Green Bay,USA,Undrafted,Undrafted,Undrafted,39,3.1,1.4,0.2,0.7,0.076,0.113,0.16399999999999998,0.604,0.036000000000000004,2020-21 11345,Alize Johnson,BKN,25.0,200.66,96.16150400000001,Missouri State,USA,2018,2,50,18,5.2,5.0,0.8,-4.5,0.127,0.32,0.175,0.638,0.11,2020-21 11346,Amida Brimah,IND,27.0,208.28,104.32616,Connecticut,USA,Undrafted,Undrafted,Undrafted,5,2.6,1.6,0.2,32.8,0.077,0.15,0.17600000000000002,0.6970000000000001,0.042,2020-21 11347,Cameron Reynolds,HOU,26.0,200.66,102.0582,Tulane,USA,Undrafted,Undrafted,Undrafted,5,3.0,1.0,0.4,-28.3,0.037000000000000005,0.079,0.182,0.41700000000000004,0.095,2020-21 11348,Amir Coffey,LAC,24.0,200.66,95.25432,Minnesota,USA,Undrafted,Undrafted,Undrafted,44,3.2,1.0,0.5,-1.2,0.023,0.081,0.145,0.585,0.09,2020-21 11349,Andre Drummond,LAL,27.0,208.28,126.552168,Connecticut,USA,2012,1,9,46,14.9,12.0,2.0,-3.9,0.132,0.336,0.26899999999999996,0.519,0.124,2020-21 11350,Andre Iguodala,MIA,37.0,198.12,97.52228000000001,Arizona,USA,2004,1,9,63,4.4,3.5,2.3,-2.5,0.03,0.134,0.109,0.519,0.153,2020-21 11351,Andre Roberson,BKN,29.0,200.66,95.25432,Colorado,USA,2013,1,26,5,1.2,3.0,0.8,-18.4,0.10300000000000001,0.136,0.11699999999999999,0.20199999999999999,0.098,2020-21 11352,Andrew Wiggins,GSW,26.0,200.66,89.357624,Kansas,Canada,2014,1,1,71,18.6,4.9,2.4,-0.2,0.034,0.106,0.22899999999999998,0.568,0.11,2020-21 11353,Anfernee Simons,POR,22.0,190.5,82.10015200000001,None,USA,2018,1,24,64,7.8,2.2,1.4,0.8,0.012,0.109,0.18,0.589,0.11699999999999999,2020-21 11354,Anthony Davis,LAL,28.0,208.28,114.758776,Kentucky,USA,2012,1,1,36,21.8,7.9,3.1,5.2,0.054000000000000006,0.198,0.287,0.556,0.154,2020-21 11355,Anthony Edwards,MIN,19.0,193.04,102.0582,Georgia,USA,2020,1,1,72,19.3,4.7,2.9,-5.0,0.023,0.121,0.264,0.523,0.142,2020-21 11356,Anthony Gill,WAS,28.0,200.66,104.32616,Virginia,USA,Undrafted,Undrafted,Undrafted,26,3.1,2.0,0.4,-1.6,0.07400000000000001,0.151,0.14300000000000002,0.597,0.073,2020-21 11357,Anthony Lamb,HOU,23.0,198.12,102.965384,Vermont,USA,Undrafted,Undrafted,Undrafted,24,5.5,2.9,1.0,-9.2,0.055,0.109,0.14400000000000002,0.523,0.08,2020-21 11358,Anthony Tolliver,PHI,36.0,203.2,108.86208,Creighton,USA,Undrafted,Undrafted,Undrafted,11,1.5,0.9,0.2,16.6,0.027999999999999997,0.071,0.09,0.433,0.025,2020-21 11359,Anzejs Pasecniks,WAS,25.0,215.9,103.872568,None,Latvia,2017,1,25,1,0.0,1.0,1.0,-104.4,0.14300000000000002,0.0,0.375,0.0,0.33299999999999996,2020-21 11360,Armoni Brooks,HOU,23.0,190.5,88.45044,Houston,USA,2019,Undrafted,Undrafted,20,11.2,3.4,1.5,-11.7,0.017,0.11199999999999999,0.175,0.565,0.09,2020-21 11361,Aron Baynes,TOR,34.0,208.28,117.93392,Washington State,Australia,Undrafted,Undrafted,Undrafted,53,6.1,5.2,0.9,-4.4,0.08199999999999999,0.192,0.157,0.503,0.07,2020-21 11362,Ashton Hagans,MIN,21.0,190.5,86.18248,Kentucky,USA,Undrafted,Undrafted,Undrafted,2,0.0,0.0,0.0,-21.8,0.0,0.0,0.083,0.0,0.0,2020-21 11363,Anderson Varejao,CLE,38.0,210.82,117.93392,None,Brazil,2004,2,30,5,2.6,4.0,0.6,-37.6,0.146,0.342,0.228,0.326,0.15,2020-21 11364,Jonas Valanciunas,MEM,29.0,210.82,120.20188,None,Lithuania,2011,1,5,62,17.1,12.5,1.8,3.8,0.134,0.289,0.217,0.636,0.09699999999999999,2020-21 11365,Caris LeVert,IND,26.0,198.12,92.98635999999999,Michigan,USA,2016,1,20,47,20.2,4.6,5.2,-0.2,0.022000000000000002,0.111,0.27899999999999997,0.531,0.255,2020-21 11366,Carsen Edwards,BOS,23.0,180.34,90.7184,Purdue,USA,2019,2,33,31,4.0,0.8,0.5,-4.1,0.01,0.084,0.187,0.527,0.075,2020-21 11367,Danny Green,PHI,34.0,198.12,97.52228000000001,North Carolina,USA,2009,2,46,69,9.5,3.8,1.7,7.1,0.028999999999999998,0.1,0.138,0.5820000000000001,0.08,2020-21 11368,Dante Exum,HOU,25.0,195.58,97.068688,None,Australia,2014,1,5,6,3.8,2.8,2.2,3.6,0.015,0.129,0.11900000000000001,0.428,0.155,2020-21 11369,Danuel House Jr.,HOU,28.0,198.12,99.79024,Texas A&M,USA,Undrafted,Undrafted,Undrafted,36,8.8,3.7,1.9,-11.2,0.018000000000000002,0.121,0.153,0.525,0.11,2020-21 11370,Dario Saric,PHX,27.0,208.28,102.0582,None,Croatia,2014,1,12,50,8.7,3.8,1.3,11.5,0.055,0.168,0.218,0.5670000000000001,0.10400000000000001,2020-21 11371,Darius Bazley,OKC,21.0,203.2,94.34713599999999,None,USA,2019,1,23,55,13.7,7.2,1.8,-13.1,0.027000000000000003,0.193,0.218,0.491,0.091,2020-21 11372,Darius Garland,CLE,21.0,185.42,87.089664,Vanderbilt,USA,2019,1,5,54,17.4,2.4,6.1,-6.6,0.013000000000000001,0.062,0.245,0.547,0.298,2020-21 11373,Darius Miller,OKC,31.0,198.12,102.0582,Kentucky,USA,2012,2,46,18,4.1,1.3,1.2,7.2,0.011000000000000001,0.10300000000000001,0.127,0.685,0.151,2020-21 11374,David Nwaba,HOU,28.0,195.58,99.336648,Cal Poly,USA,Undrafted,Undrafted,Undrafted,30,9.2,3.9,1.0,-1.3,0.055,0.10800000000000001,0.163,0.557,0.07,2020-21 11375,Davis Bertans,WAS,28.0,208.28,102.0582,None,Latvia,2011,2,42,57,11.5,2.9,0.9,2.1,0.011000000000000001,0.095,0.14800000000000002,0.62,0.043,2020-21 11376,De'Aaron Fox,SAC,23.0,190.5,83.91452,Kentucky,USA,2017,1,5,58,25.2,3.5,7.2,-4.5,0.016,0.085,0.304,0.565,0.326,2020-21 11377,De'Andre Hunter,ATL,23.0,203.2,102.0582,Virginia,USA,2019,1,4,23,15.0,4.8,1.9,5.5,0.024,0.125,0.19399999999999998,0.603,0.098,2020-21 11378,De'Anthony Melton,MEM,23.0,187.96,90.7184,Southern California,USA,2018,2,46,52,9.1,3.1,2.5,6.0,0.026000000000000002,0.11800000000000001,0.18899999999999997,0.568,0.172,2020-21 11379,DeAndre Jordan,BKN,32.0,210.82,120.20188,Texas A&M,USA,2008,2,35,57,7.5,7.5,1.6,-1.9,0.09699999999999999,0.231,0.128,0.736,0.099,2020-21 11380,DeAndre' Bembry,TOR,26.0,195.58,95.25432,St. Joseph's (PA),USA,2016,1,21,51,5.7,2.9,2.1,0.4,0.033,0.11199999999999999,0.142,0.57,0.157,2020-21 11381,DeMar DeRozan,SAS,31.0,198.12,99.79024,Southern California,USA,2009,1,9,61,21.6,4.2,6.9,-2.5,0.019,0.106,0.255,0.591,0.309,2020-21 11382,DeMarcus Cousins,LAC,30.0,208.28,122.46983999999999,Kentucky,USA,2010,1,5,41,8.9,6.4,1.9,-3.2,0.07,0.293,0.239,0.537,0.174,2020-21 11383,Dean Wade,CLE,24.0,205.74,103.418976,Kansas State,USA,Undrafted,Undrafted,Undrafted,63,6.0,3.4,1.2,-9.0,0.031,0.154,0.128,0.573,0.094,2020-21 11384,Deandre Ayton,PHX,22.0,210.82,113.398,Arizona,Bahamas,2018,1,1,69,14.4,10.5,1.4,6.3,0.11699999999999999,0.23600000000000002,0.179,0.653,0.066,2020-21 11385,Deividas Sirvydis,DET,21.0,203.2,86.18248,None,Lithuania,2019,2,37,20,2.1,1.5,0.3,-9.7,0.0,0.225,0.15,0.48100000000000004,0.062,2020-21 11386,Dejounte Murray,SAS,24.0,193.04,81.64656,Washington,USA,2016,1,29,67,15.7,7.1,5.4,2.3,0.026000000000000002,0.19,0.231,0.509,0.24600000000000002,2020-21 11387,Delon Wright,SAC,29.0,195.58,83.91452,Utah,USA,2015,1,20,63,10.2,4.3,4.4,-3.5,0.036000000000000004,0.122,0.163,0.562,0.237,2020-21 11388,Deni Avdija,WAS,20.0,205.74,95.25432,None,Israel,2020,1,9,54,6.3,4.9,1.2,-2.1,0.017,0.18100000000000002,0.11800000000000001,0.515,0.064,2020-21 11389,Dennis Schroder,LAL,27.0,190.5,78.017824,None,Germany,2013,1,17,61,15.4,3.5,5.8,2.2,0.016,0.09300000000000001,0.22699999999999998,0.5429999999999999,0.262,2020-21 11390,Dennis Smith Jr.,DET,23.0,187.96,92.98635999999999,North Carolina State,USA,2017,1,9,23,6.7,2.4,3.3,-2.2,0.028999999999999998,0.099,0.191,0.49200000000000005,0.276,2020-21 11391,Denzel Valentine,CHI,27.0,193.04,99.79024,Michigan State,USA,2016,1,14,62,6.5,3.2,1.7,1.0,0.022000000000000002,0.168,0.19,0.479,0.14400000000000002,2020-21 11392,Derrick Favors,UTA,29.0,205.74,120.20188,Georgia Tech,USA,2010,1,3,68,5.4,5.5,0.6,2.6,0.13,0.22699999999999998,0.125,0.6629999999999999,0.059000000000000004,2020-21 11393,Derrick Jones Jr.,POR,24.0,195.58,95.25432,UNLV,USA,Undrafted,Undrafted,Undrafted,58,6.8,3.5,0.8,-0.8,0.055,0.094,0.122,0.5760000000000001,0.049,2020-21 11394,Derrick Rose,NYK,32.0,187.96,90.7184,Memphis,USA,2008,1,1,50,14.7,2.6,4.2,4.9,0.015,0.081,0.252,0.55,0.276,2020-21 11395,Derrick White,SAS,26.0,193.04,86.18248,Colorado,USA,2017,1,29,36,15.4,3.0,3.5,5.1,0.012,0.086,0.223,0.55,0.168,2020-21 11396,Danilo Gallinari,ATL,32.0,208.28,105.68693600000002,None,Italy,2008,1,6,51,13.3,4.1,1.5,2.7,0.015,0.155,0.21100000000000002,0.613,0.099,2020-21 11397,Daniel Theis,CHI,29.0,203.2,111.13004,None,Germany,Undrafted,Undrafted,Undrafted,65,9.6,5.5,1.7,-1.3,0.057,0.16399999999999998,0.154,0.609,0.09699999999999999,2020-21 11398,Daniel Oturu,LAC,21.0,203.2,108.86208,Minnesota,USA,2020,2,33,30,1.8,1.6,0.3,1.8,0.11900000000000001,0.157,0.174,0.47100000000000003,0.092,2020-21 11399,Daniel Gafford,WAS,22.0,208.28,106.140528,Arkansas,USA,2019,2,38,54,7.0,4.3,0.5,4.1,0.11800000000000001,0.16,0.161,0.6970000000000001,0.051,2020-21 11400,Cassius Stanley,IND,21.0,195.58,86.18248,Duke,USA,2020,2,54,24,1.5,0.8,0.0,9.4,0.067,0.11,0.198,0.38299999999999995,0.017,2020-21 11401,Cassius Winston,WAS,23.0,185.42,83.91452,Michigan State,USA,2020,2,53,22,1.9,0.4,0.5,-21.4,0.0,0.087,0.182,0.575,0.222,2020-21 11402,Cedi Osman,CLE,26.0,200.66,104.32616,None,Turkey,2015,2,31,59,10.4,3.4,2.9,-11.0,0.024,0.113,0.198,0.488,0.17300000000000001,2020-21 11403,Chandler Hutchison,WAS,25.0,198.12,95.25432,Boise State,USA,2018,1,22,25,4.3,3.1,0.7,-5.2,0.016,0.195,0.155,0.469,0.061,2020-21 11404,Charlie Brown Jr.,OKC,24.0,198.12,90.264808,St. Joseph's (PA),USA,Undrafted,Undrafted,Undrafted,9,4.4,1.9,1.0,-12.7,0.017,0.091,0.14,0.42200000000000004,0.08,2020-21 11405,Chasson Randle,ORL,28.0,187.96,83.91452,Stanford,USA,2015,Undrafted,Undrafted,41,6.5,2.0,1.8,-15.0,0.008,0.084,0.154,0.515,0.14300000000000002,2020-21 11406,Chimezie Metu,SAC,24.0,205.74,102.0582,Southern California,USA,2018,2,49,36,6.3,3.1,0.8,-7.8,0.064,0.175,0.19399999999999998,0.5710000000000001,0.08,2020-21 11407,Chris Boucher,TOR,28.0,205.74,90.7184,Oregon,Saint Lucia,Undrafted,Undrafted,Undrafted,60,13.6,6.7,1.1,3.8,0.078,0.192,0.20199999999999999,0.634,0.068,2020-21 11408,Chris Chiozza,BKN,25.0,180.34,79.3786,Florida,USA,Undrafted,Undrafted,Undrafted,22,4.0,1.1,3.0,3.0,0.012,0.08800000000000001,0.2,0.461,0.382,2020-21 11409,Chris Paul,PHX,36.0,182.88,79.3786,Wake Forest,USA,2005,1,4,70,16.4,4.5,8.9,6.5,0.012,0.131,0.221,0.599,0.405,2020-21 11410,Chris Silva,SAC,24.0,203.2,106.140528,South Carolina,Gabon,Undrafted,Undrafted,Undrafted,15,2.1,1.8,0.4,-0.5,0.08199999999999999,0.217,0.151,0.708,0.102,2020-21 11411,Christian Wood,HOU,25.0,208.28,97.068688,UNLV,USA,Undrafted,Undrafted,Undrafted,41,21.0,9.6,1.7,-3.8,0.055,0.228,0.255,0.591,0.08900000000000001,2020-21 11412,Chuma Okeke,ORL,22.0,198.12,103.872568,Auburn,USA,2019,1,16,45,7.8,4.0,2.2,-7.2,0.033,0.11699999999999999,0.142,0.511,0.132,2020-21 11413,Clint Capela,ATL,27.0,208.28,108.86208,None,Switzerland,2014,1,25,63,15.2,14.3,0.8,6.6,0.155,0.301,0.193,0.601,0.039,2020-21 11414,Carmelo Anthony,POR,37.0,200.66,107.95489599999999,Syracuse,USA,2003,1,3,69,13.4,3.1,1.5,-0.6,0.017,0.107,0.228,0.547,0.09699999999999999,2020-21 11415,Coby White,CHI,21.0,195.58,88.45044,North Carolina,USA,2019,1,7,69,15.1,4.1,4.8,-2.7,0.013000000000000001,0.11599999999999999,0.21899999999999997,0.54,0.218,2020-21 11416,Cody Zeller,CHA,28.0,210.82,108.86208,Indiana,USA,2013,1,4,48,9.4,6.8,1.8,2.0,0.115,0.21,0.177,0.599,0.125,2020-21 11417,Cole Anthony,ORL,21.0,187.96,83.91452,North Carolina,USA,2020,1,15,47,12.9,4.7,4.1,-12.8,0.027000000000000003,0.142,0.235,0.496,0.24100000000000002,2020-21 11418,Collin Sexton,CLE,22.0,185.42,86.18248,Alabama,USA,2018,1,8,60,24.3,3.1,4.4,-9.2,0.027000000000000003,0.063,0.28600000000000003,0.573,0.222,2020-21 11419,Cory Joseph,DET,29.0,190.5,90.7184,University of Texas at Austin,Canada,2011,1,29,63,8.2,2.5,3.4,-5.5,0.024,0.085,0.159,0.556,0.204,2020-21 11420,Cristiano Felicio,CHI,28.0,210.82,122.46983999999999,None,Brazil,Undrafted,Undrafted,Undrafted,18,1.3,1.4,0.5,7.1,0.11199999999999999,0.205,0.11699999999999999,0.574,0.155,2020-21 11421,D'Angelo Russell,MIN,25.0,193.04,87.543256,Ohio State,USA,2015,1,2,42,19.0,2.6,5.8,-7.0,0.012,0.077,0.28300000000000003,0.555,0.32299999999999995,2020-21 11422,D.J. Augustin,HOU,33.0,180.34,83.007336,Texas-Austin,USA,2008,1,9,57,7.7,1.6,3.3,-1.8,0.017,0.063,0.16399999999999998,0.57,0.223,2020-21 11423,D.J. Wilson,HOU,25.0,208.28,104.779752,Michigan,USA,2017,1,17,35,5.2,3.2,0.7,-11.3,0.042,0.19899999999999998,0.195,0.511,0.08800000000000001,2020-21 11424,DaQuan Jeffries,SAS,23.0,195.58,104.32616,Tulsa,USA,Undrafted,Undrafted,Undrafted,31,4.1,2.3,0.7,-4.5,0.036000000000000004,0.10300000000000001,0.114,0.514,0.059000000000000004,2020-21 11425,Dakota Mathias,PHI,25.0,193.04,90.7184,Purdue,USA,2018,Undrafted,Undrafted,8,6.0,0.9,1.6,-10.6,0.006999999999999999,0.040999999999999995,0.166,0.474,0.157,2020-21 11426,Damian Jones,SAC,26.0,210.82,111.13004,Vanderbilt,USA,2016,1,30,39,4.7,3.1,0.7,-5.1,0.064,0.156,0.12,0.7120000000000001,0.075,2020-21 11427,Damian Lillard,POR,30.0,187.96,88.45044,Weber State,USA,2012,1,6,67,28.8,4.2,7.5,4.0,0.012,0.10400000000000001,0.306,0.623,0.33399999999999996,2020-21 11428,Damion Lee,GSW,28.0,195.58,95.25432,Drexel,USA,Undrafted,Undrafted,Undrafted,57,6.5,3.2,1.3,1.6,0.02,0.142,0.127,0.636,0.094,2020-21 11429,Damyean Dotson,CLE,27.0,195.58,95.25432,Houston,USA,2017,2,44,46,6.7,2.0,2.0,-12.5,0.005,0.095,0.162,0.499,0.161,2020-21 11430,Cody Martin,CHA,25.0,195.58,92.98635999999999,Nevada-Reno,USA,2019,2,36,52,4.0,3.1,1.7,1.0,0.059000000000000004,0.126,0.12300000000000001,0.5,0.138,2020-21 11431,Jontay Porter,MEM,21.0,210.82,108.86208,Missouri,USA,Undrafted,Undrafted,Undrafted,11,2.0,1.3,0.1,0.9,0.065,0.149,0.182,0.64,0.033,2020-21 11432,Jordan Bell,GSW,26.0,203.2,97.975872,Oregon,USA,2017,2,38,6,2.5,4.0,1.2,-17.0,0.069,0.18899999999999997,0.14,0.32799999999999996,0.13,2020-21 11433,Jordan Bone,ORL,23.0,187.96,81.64656,Tennessee,USA,2019,2,57,14,4.0,1.7,1.3,-14.3,0.018000000000000002,0.102,0.121,0.519,0.14300000000000002,2020-21 11434,Richaun Holmes,SAC,27.0,208.28,106.59411999999999,Bowling Green,USA,2015,2,37,61,14.2,8.3,1.7,0.3,0.081,0.196,0.17300000000000001,0.669,0.08199999999999999,2020-21 11435,Ricky Rubio,MIN,30.0,190.5,86.18248,None,Spain,2009,1,5,68,8.6,3.3,6.4,-5.0,0.013999999999999999,0.11,0.155,0.516,0.33,2020-21 11436,Robert Covington,POR,30.0,200.66,94.800728,Tennessee State,USA,Undrafted,Undrafted,Undrafted,70,8.5,6.7,1.7,4.8,0.026000000000000002,0.183,0.114,0.5529999999999999,0.066,2020-21 11437,Robert Franks,ORL,24.0,200.66,102.0582,Washington State,USA,2019,Undrafted,Undrafted,7,6.1,2.0,0.7,-14.4,0.053,0.08199999999999999,0.14800000000000002,0.638,0.07,2020-21 11438,Robert Williams III,BOS,23.0,203.2,107.501304,Texas A&M,USA,2018,1,27,52,8.0,6.9,1.8,0.4,0.136,0.23199999999999998,0.145,0.7190000000000001,0.13699999999999998,2020-21 11439,Robert Woodard II,SAC,21.0,198.12,106.59411999999999,Mississippi State,USA,2020,2,40,13,1.5,1.2,0.2,6.6,0.08,0.235,0.21,0.425,0.055999999999999994,2020-21 11440,Robin Lopez,WAS,33.0,213.36,127.459352,Stanford,USA,2008,1,15,71,9.0,3.8,0.8,-1.1,0.09699999999999999,0.092,0.16899999999999998,0.6609999999999999,0.06,2020-21 11441,Rodions Kurucs,MIL,23.0,205.74,103.418976,None,Latvia,2018,2,40,21,1.5,1.1,0.5,-0.3,0.037000000000000005,0.134,0.145,0.45899999999999996,0.115,2020-21 11442,Rodney Hood,TOR,28.0,203.2,94.34713599999999,Duke,USA,2014,1,23,55,4.5,1.9,1.0,-6.6,0.023,0.084,0.139,0.452,0.083,2020-21 11443,Rodney McGruder,DET,29.0,193.04,92.98635999999999,Kansas State,USA,Undrafted,Undrafted,Undrafted,16,5.7,1.4,1.0,-4.0,0.042,0.078,0.179,0.619,0.128,2020-21 11444,Romeo Langford,BOS,21.0,193.04,97.975872,Indiana,USA,2019,1,14,18,3.1,1.9,0.7,-10.1,0.04,0.077,0.111,0.436,0.069,2020-21 11445,Rondae Hollis-Jefferson,POR,26.0,198.12,98.429464,Arizona,USA,2015,1,23,11,2.5,2.4,1.2,-1.1,0.08,0.14,0.105,0.539,0.16899999999999998,2020-21 11446,Royce O'Neale,UTA,28.0,193.04,102.511792,Baylor,USA,Undrafted,Undrafted,Undrafted,71,7.0,6.8,2.5,10.4,0.039,0.162,0.095,0.599,0.10300000000000001,2020-21 11447,Rudy Gay,SAS,34.0,203.2,113.398,Connecticut,USA,2006,1,8,63,11.4,4.8,1.4,4.5,0.027999999999999997,0.17600000000000002,0.23,0.532,0.1,2020-21 11448,Rudy Gobert,UTA,29.0,215.9,117.02673600000001,None,France,2013,1,27,71,14.3,13.5,1.3,15.9,0.11,0.28800000000000003,0.166,0.6829999999999999,0.059000000000000004,2020-21 11449,Rui Hachimura,WAS,23.0,203.2,104.32616,Gonzaga,Japan,2019,1,9,57,13.8,5.5,1.4,-2.8,0.026000000000000002,0.139,0.18,0.5489999999999999,0.062,2020-21 11450,Russell Westbrook,WAS,32.0,190.5,90.7184,UCLA,USA,2008,1,4,65,22.2,11.5,11.7,-1.2,0.043,0.249,0.295,0.509,0.47700000000000004,2020-21 11451,Ryan Arcidiacono,CHI,27.0,190.5,88.45044,Villanova,USA,Undrafted,Undrafted,Undrafted,44,3.1,1.5,1.3,0.0,0.011000000000000001,0.135,0.128,0.541,0.17600000000000002,2020-21 11452,Saben Lee,DET,22.0,187.96,83.007336,Vanderbilt,USA,2020,2,38,48,5.6,2.0,3.6,-6.3,0.026000000000000002,0.099,0.171,0.536,0.33299999999999996,2020-21 11453,Saddiq Bey,DET,22.0,200.66,97.52228000000001,Villanova,USA,2020,1,19,70,12.2,4.5,1.4,-5.6,0.022000000000000002,0.145,0.182,0.5670000000000001,0.077,2020-21 11454,Sam Merrill,MIL,25.0,193.04,92.98635999999999,Utah State,USA,2020,2,60,30,3.0,1.0,0.7,-8.5,0.024,0.094,0.146,0.603,0.135,2020-21 11455,Sean McDermott,MEM,24.0,198.12,88.45044,Butler,USA,Undrafted,Undrafted,Undrafted,18,2.2,1.1,0.2,-17.7,0.031,0.087,0.10099999999999999,0.534,0.043,2020-21 11456,Sekou Doumbouya,DET,20.0,203.2,104.32616,None,France,2019,1,15,56,5.1,2.6,0.8,-6.9,0.045,0.11699999999999999,0.17600000000000002,0.45899999999999996,0.08,2020-21 11457,Semi Ojeleye,BOS,26.0,198.12,108.86208,Southern Methodist,USA,2017,2,37,56,4.6,2.6,0.7,-0.2,0.032,0.121,0.114,0.5529999999999999,0.054000000000000006,2020-21 11458,Serge Ibaka,LAC,31.0,208.28,106.59411999999999,None,Republic of the Congo,2008,1,24,41,11.1,6.7,1.8,7.4,0.08,0.217,0.2,0.585,0.11,2020-21 11459,Seth Curry,PHI,30.0,187.96,83.91452,Duke,USA,Undrafted,Undrafted,Undrafted,57,12.5,2.4,2.7,8.2,0.006,0.07400000000000001,0.16899999999999998,0.607,0.131,2020-21 11460,Shai Gilgeous-Alexander,OKC,22.0,198.12,81.64656,Kentucky,Canada,2018,1,11,35,23.7,4.7,5.9,-7.7,0.015,0.11900000000000001,0.28300000000000003,0.623,0.311,2020-21 11461,Shake Milton,PHI,24.0,195.58,92.98635999999999,Southern Methodist,USA,2018,2,54,63,13.0,2.3,3.1,4.3,0.022000000000000002,0.076,0.239,0.5489999999999999,0.21,2020-21 11462,Shaquille Harrison,DEN,27.0,200.66,86.18248,Tulsa,USA,Undrafted,Undrafted,Undrafted,34,2.1,1.4,0.7,-10.1,0.02,0.11699999999999999,0.124,0.41600000000000004,0.109,2020-21 11463,Reggie Perry,BKN,21.0,203.2,113.398,Mississippi State,USA,2020,2,57,26,3.0,2.8,0.5,-7.3,0.11699999999999999,0.204,0.19,0.466,0.09699999999999999,2020-21 11464,Reggie Jackson,LAC,31.0,187.96,94.34713599999999,Boston College,USA,2011,1,24,67,10.7,2.9,3.1,7.4,0.016,0.107,0.195,0.5760000000000001,0.185,2020-21 11465,Reggie Bullock,NYK,30.0,198.12,92.98635999999999,North Carolina,USA,2013,1,25,65,10.9,3.4,1.5,2.5,0.008,0.102,0.14,0.606,0.07200000000000001,2020-21 11466,Rayjon Tucker,PHI,23.0,190.5,94.800728,Arkansas-Little Rock,USA,Undrafted,Undrafted,Undrafted,14,2.4,0.8,0.4,-5.2,0.012,0.16399999999999998,0.17600000000000002,0.645,0.154,2020-21 11467,Norman Powell,POR,28.0,190.5,97.52228000000001,UCLA,USA,2015,2,46,69,18.6,3.1,1.9,1.8,0.018000000000000002,0.079,0.221,0.618,0.08900000000000001,2020-21 11468,Norvel Pelle,NYK,28.0,208.28,104.779752,Iona,USA,Undrafted,Undrafted,Undrafted,13,1.5,1.5,0.2,12.2,0.077,0.153,0.106,0.5670000000000001,0.032,2020-21 11469,OG Anunoby,TOR,23.0,200.66,105.23334399999999,Indiana,United Kingdom,2017,1,23,43,15.9,5.5,2.2,3.3,0.037000000000000005,0.125,0.193,0.605,0.098,2020-21 11470,Obi Toppin,NYK,23.0,205.74,99.79024,Dayton,USA,2020,1,8,62,4.1,2.2,0.5,2.7,0.037000000000000005,0.155,0.157,0.574,0.065,2020-21 11471,Onyeka Okongwu,ATL,20.0,203.2,106.59411999999999,Southern California,USA,2020,1,6,50,4.6,3.3,0.4,-6.3,0.1,0.172,0.141,0.655,0.047,2020-21 11472,Oshae Brissett,IND,23.0,200.66,95.25432,Syracuse,Canada,Undrafted,Undrafted,Undrafted,21,10.9,5.5,0.9,6.0,0.054000000000000006,0.149,0.149,0.638,0.042,2020-21 11473,Otto Porter Jr.,ORL,28.0,203.2,89.811216,Georgetown,USA,2013,1,3,28,9.7,5.4,2.0,-3.0,0.044000000000000004,0.198,0.184,0.552,0.133,2020-21 11474,P.J. Tucker,MIL,36.0,195.58,111.13004,Texas-Austin,USA,2006,2,35,52,3.7,3.9,1.2,-5.5,0.035,0.113,0.07200000000000001,0.51,0.057,2020-21 11475,P.J. Washington,CHA,22.0,200.66,104.32616,Kentucky,USA,2019,1,12,64,12.9,6.5,2.5,0.6,0.045,0.163,0.191,0.5489999999999999,0.12,2020-21 11476,PJ Dozier,DEN,24.0,198.12,92.98635999999999,South Carolina,USA,Undrafted,Undrafted,Undrafted,50,7.7,3.6,1.8,9.5,0.031,0.133,0.166,0.501,0.11599999999999999,2020-21 11477,Pascal Siakam,TOR,27.0,205.74,104.32616,New Mexico State,Cameroon,2016,1,27,56,21.4,7.2,4.5,3.0,0.045,0.156,0.261,0.547,0.195,2020-21 11478,Pat Connaughton,MIL,28.0,195.58,94.800728,Notre Dame,USA,2015,2,41,69,6.8,4.8,1.2,6.9,0.039,0.152,0.113,0.578,0.064,2020-21 11479,Patrick Beverley,LAC,32.0,185.42,81.64656,Arkansas,USA,2009,2,42,37,7.5,3.2,2.1,9.0,0.037000000000000005,0.10800000000000001,0.146,0.58,0.12300000000000001,2020-21 11480,Patrick McCaw,TOR,25.0,200.66,82.10015200000001,UNLV,USA,2016,2,38,5,1.0,0.6,0.8,-33.0,0.027000000000000003,0.071,0.026000000000000002,1.078,0.19,2020-21 11481,Sindarius Thornwell,ORL,26.0,193.04,97.52228000000001,South Carolina,USA,2017,2,48,21,2.0,0.9,1.0,-2.0,0.013000000000000001,0.067,0.11,0.414,0.135,2020-21 11482,Patrick Patterson,LAC,32.0,203.2,106.59411999999999,Kentucky,USA,2010,1,14,38,5.2,2.0,0.8,2.1,0.032,0.09300000000000001,0.135,0.5710000000000001,0.069,2020-21 11483,Patty Mills,SAS,32.0,185.42,81.64656,St.Mary's College of California,Australia,2009,2,55,68,10.8,1.7,2.4,1.4,0.01,0.053,0.177,0.57,0.142,2020-21 11484,Paul George,LAC,31.0,203.2,99.79024,Fresno State,USA,2010,1,10,54,23.3,6.6,5.2,11.3,0.026000000000000002,0.171,0.29600000000000004,0.598,0.239,2020-21 11485,Paul Millsap,DEN,36.0,200.66,116.573144,Louisiana Tech,USA,2006,2,47,56,9.0,4.7,1.8,4.7,0.067,0.16699999999999998,0.184,0.565,0.113,2020-21 11486,Paul Reed,PHI,22.0,205.74,95.25432,DePaul,USA,2020,2,58,26,3.4,2.3,0.5,11.2,0.147,0.172,0.20800000000000002,0.54,0.107,2020-21 11487,Paul Watson,TOR,26.0,198.12,95.25432,Fresno State,USA,Undrafted,Undrafted,Undrafted,27,4.1,1.7,0.6,-1.7,0.012,0.129,0.133,0.649,0.081,2020-21 11488,Payton Pritchard,BOS,23.0,185.42,88.45044,Oregon,USA,2020,1,26,66,7.7,2.4,1.8,0.6,0.025,0.099,0.162,0.5820000000000001,0.136,2020-21 11489,Precious Achiuwa,MIA,21.0,203.2,102.0582,Memphis,Nigeria,2020,1,20,61,5.0,3.4,0.5,-7.2,0.09699999999999999,0.174,0.184,0.55,0.064,2020-21 11490,Quinn Cook,CLE,28.0,185.42,81.64656,Duke,USA,Undrafted,Undrafted,Undrafted,23,3.3,0.7,0.8,-3.9,0.012,0.084,0.204,0.531,0.184,2020-21 11491,Quinndary Weatherspoon,SAS,24.0,190.5,92.98635999999999,Mississippi State,USA,2019,2,49,20,2.3,0.6,0.4,-22.6,0.024,0.07,0.18,0.547,0.107,2020-21 11492,R.J. Hampton,ORL,20.0,193.04,79.3786,None,USA,2020,1,24,51,6.9,3.5,1.7,-14.2,0.03,0.162,0.191,0.507,0.155,2020-21 11493,RJ Barrett,NYK,21.0,198.12,97.068688,Duke,Canada,2019,1,3,72,17.6,5.8,3.0,2.7,0.027000000000000003,0.13,0.228,0.535,0.134,2020-21 11494,Rajon Rondo,LAC,35.0,185.42,81.64656,Kentucky,USA,2006,1,21,45,5.4,2.4,4.4,1.0,0.023,0.113,0.166,0.544,0.375,2020-21 11495,Raul Neto,WAS,29.0,185.42,81.64656,None,Brazil,2013,2,47,64,8.7,2.4,2.3,-1.0,0.019,0.087,0.155,0.575,0.141,2020-21 11496,Ray Spalding,HOU,24.0,205.74,102.0582,Louisville,USA,2018,2,56,2,2.0,2.0,0.0,-15.9,0.083,0.083,0.157,0.41,0.0,2020-21 11497,Patrick Williams,CHI,19.0,200.66,97.52228000000001,Florida State,USA,2020,1,4,71,9.2,4.6,1.4,-7.1,0.033,0.131,0.146,0.562,0.068,2020-21 11498,Noah Vonleh,BKN,25.0,208.28,116.573144,Indiana,USA,2014,1,9,4,0.0,0.3,0.3,-63.2,0.0,0.14300000000000002,0.217,0.0,0.14300000000000002,2020-21 11499,Skylar Mays,ATL,23.0,193.04,92.98635999999999,Louisiana State,USA,2020,2,50,33,3.8,1.1,0.9,1.4,0.037000000000000005,0.095,0.18600000000000003,0.569,0.18,2020-21 11500,Spencer Dinwiddie,BKN,28.0,195.58,97.52228000000001,Colorado,USA,2014,2,38,3,6.7,4.3,3.0,29.8,0.0,0.151,0.154,0.536,0.17300000000000001,2020-21 11501,Trent Forrest,UTA,23.0,193.04,95.25432,Florida State,USA,Undrafted,Undrafted,Undrafted,30,2.9,1.5,1.5,-7.7,0.038,0.111,0.14400000000000002,0.5539999999999999,0.205,2020-21 11502,Trevor Ariza,MIA,36.0,203.2,97.52228000000001,UCLA,USA,2004,2,43,30,9.4,4.8,1.8,2.8,0.033,0.15,0.149,0.542,0.08900000000000001,2020-21 11503,Trey Burke,DAL,28.0,182.88,83.91452,Michigan,USA,2013,1,9,62,6.6,0.9,1.3,1.3,0.011000000000000001,0.047,0.193,0.544,0.129,2020-21 11504,Trey Lyles,SAS,25.0,205.74,106.140528,Kentucky,Canada,2015,1,12,23,5.0,3.7,0.6,-14.5,0.022000000000000002,0.213,0.128,0.574,0.06,2020-21 11505,Tristan Thompson,BOS,30.0,205.74,115.212368,Texas-Austin,Canada,2011,1,4,54,7.6,8.1,1.2,1.0,0.124,0.212,0.14400000000000002,0.54,0.073,2020-21 11506,Troy Brown Jr.,CHI,21.0,198.12,97.52228000000001,Oregon,USA,2018,1,15,34,4.7,3.1,0.9,3.1,0.039,0.158,0.141,0.525,0.076,2020-21 11507,Ty Jerome,OKC,23.0,195.58,88.45044,Virginia,USA,2019,1,24,33,10.7,2.8,3.6,-8.5,0.012,0.1,0.18100000000000002,0.585,0.22899999999999998,2020-21 11508,Ty-Shon Alexander,PHX,22.0,190.5,88.45044,Creighton,USA,Undrafted,Undrafted,Undrafted,15,0.6,0.7,0.4,-6.0,0.038,0.157,0.14300000000000002,0.349,0.2,2020-21 11509,Tyler Bey,DAL,23.0,200.66,97.52228000000001,Colorado,USA,2020,2,36,18,1.0,1.1,0.2,-27.0,0.09,0.177,0.14300000000000002,0.37200000000000005,0.063,2020-21 11510,Tyler Cook,DET,23.0,203.2,115.66596000000001,Iowa,USA,Undrafted,Undrafted,Undrafted,32,4.9,3.0,0.5,-4.2,0.065,0.149,0.136,0.659,0.057,2020-21 11511,Tyler Herro,MIA,21.0,195.58,88.45044,Kentucky,USA,2019,1,13,54,15.1,5.0,3.4,-2.9,0.015,0.14400000000000002,0.225,0.5429999999999999,0.184,2020-21 11512,Tyler Johnson,BKN,29.0,190.5,84.368112,Fresno State,USA,Undrafted,Undrafted,Undrafted,39,5.4,2.0,1.2,3.3,0.009000000000000001,0.096,0.132,0.546,0.091,2020-21 11513,Tyrell Terry,DAL,20.0,187.96,72.57472,Stanford,USA,2020,2,31,11,1.0,0.5,0.5,0.0,0.0,0.11800000000000001,0.135,0.318,0.158,2020-21 11514,Tyrese Haliburton,SAC,21.0,195.58,83.91452,Iowa State,USA,2020,1,12,58,13.0,3.0,5.3,-5.6,0.022000000000000002,0.076,0.175,0.585,0.247,2020-21 11515,Tyrese Maxey,PHI,20.0,187.96,90.7184,Kentucky,USA,2020,1,21,61,8.0,1.7,2.0,-1.6,0.011000000000000001,0.098,0.222,0.531,0.207,2020-21 11516,Tyus Jones,MEM,25.0,182.88,88.904032,Duke,USA,2015,1,24,70,6.3,2.0,3.7,-2.8,0.016,0.09300000000000001,0.165,0.511,0.305,2020-21 11517,Udoka Azubuike,UTA,21.0,208.28,127.00576000000001,Kansas,Nigeria,2020,1,27,15,1.1,0.9,0.0,-54.5,0.063,0.15,0.11900000000000001,0.597,0.0,2020-21 11518,Udonis Haslem,MIA,41.0,203.2,106.59411999999999,Florida,USA,Undrafted,Undrafted,Undrafted,1,4.0,1.0,0.0,66.7,0.0,0.25,0.28600000000000003,1.0,0.0,2020-21 11519,Vernon Carey Jr.,CHA,20.0,205.74,122.46983999999999,Duke,USA,2020,2,32,19,2.4,1.4,0.1,-3.2,0.054000000000000006,0.174,0.17800000000000002,0.563,0.027999999999999997,2020-21 11520,Victor Oladipo,MIA,29.0,193.04,96.615096,Indiana,USA,2013,1,2,33,19.8,4.8,4.6,-2.3,0.01,0.13699999999999998,0.28600000000000003,0.512,0.233,2020-21 11521,Vincent Poirier,PHI,27.0,213.36,106.59411999999999,None,France,Undrafted,Undrafted,Undrafted,10,0.8,1.4,0.2,-19.4,0.13,0.222,0.19399999999999998,0.273,0.08,2020-21 11522,Vlatko Cancar,DEN,24.0,203.2,107.047712,None,Slovenia,2017,2,49,41,2.1,1.2,0.3,-17.5,0.035,0.136,0.132,0.547,0.073,2020-21 11523,Wayne Ellington,DET,33.0,193.04,93.89354399999999,North Carolina,USA,2009,1,28,46,9.6,1.8,1.5,-4.3,0.012,0.073,0.162,0.625,0.09699999999999999,2020-21 11524,Wendell Carter Jr.,ORL,22.0,208.28,122.46983999999999,Duke,USA,2018,1,7,54,11.2,8.2,1.9,-9.0,0.091,0.21899999999999997,0.188,0.5660000000000001,0.11599999999999999,2020-21 11525,Wenyen Gabriel,NOP,24.0,205.74,92.98635999999999,Kentucky,South Sudan,Undrafted,Undrafted,Undrafted,21,3.4,2.6,0.5,0.8,0.069,0.135,0.135,0.5329999999999999,0.063,2020-21 11526,Wes Iwundu,NOP,26.0,198.12,88.45044,Kansas State,USA,2017,2,33,41,2.4,2.2,0.4,-6.6,0.025,0.13,0.10300000000000001,0.428,0.045,2020-21 11527,Wesley Matthews,LAL,34.0,193.04,99.79024,Marquette,USA,Undrafted,Undrafted,Undrafted,58,4.8,1.6,0.9,1.9,0.018000000000000002,0.064,0.111,0.517,0.065,2020-21 11528,Will Barton,DEN,30.0,198.12,82.10015200000001,Memphis,USA,2012,2,40,56,12.7,4.0,3.2,6.0,0.024,0.109,0.187,0.5379999999999999,0.135,2020-21 11529,Will Magnay,NOP,23.0,208.28,106.140528,None,Australia,Undrafted,Undrafted,Undrafted,1,0.0,0.0,0.0,-148.2,0.0,0.0,0.2,0.0,0.0,2020-21 11530,Tremont Waters,BOS,23.0,177.8,79.3786,Louisiana State,USA,2019,2,51,26,3.8,0.8,2.4,-2.0,0.021,0.062,0.204,0.541,0.38,2020-21 11531,Tre Jones,SAS,21.0,185.42,83.91452,Duke,USA,2020,2,41,37,2.5,0.6,1.1,-13.8,0.027999999999999997,0.049,0.159,0.544,0.228,2020-21 11532,Trae Young,ATL,22.0,185.42,81.64656,Oklahoma,USA,2018,1,5,63,25.3,3.9,9.4,5.2,0.018000000000000002,0.094,0.32,0.589,0.426,2020-21 11533,Torrey Craig,PHX,30.0,200.66,100.243832,South Carolina Upstate,USA,Undrafted,Undrafted,Undrafted,50,5.5,3.9,1.0,-3.7,0.07,0.185,0.141,0.579,0.084,2020-21 11534,Stanley Johnson,TOR,25.0,198.12,109.769264,Arizona,USA,2015,1,8,61,4.4,2.5,1.5,-6.4,0.027000000000000003,0.128,0.13,0.519,0.127,2020-21 11535,Stephen Curry,GSW,33.0,190.5,83.91452,Davidson,USA,2009,1,7,63,32.0,5.5,5.8,4.6,0.013000000000000001,0.135,0.331,0.655,0.28300000000000003,2020-21 11536,Sterling Brown,HOU,26.0,195.58,99.336648,Southern Methodist,USA,2017,2,46,51,8.2,4.4,1.4,-5.4,0.028999999999999998,0.147,0.133,0.597,0.08800000000000001,2020-21 11537,Steven Adams,NOP,27.0,210.82,120.20188,Pittsburgh,New Zealand,2013,1,12,58,7.6,8.9,1.9,-0.1,0.132,0.187,0.11800000000000001,0.596,0.08800000000000001,2020-21 11538,Svi Mykhailiuk,OKC,24.0,200.66,92.98635999999999,Kansas,Ukraine,2018,2,47,66,8.5,2.5,1.7,-8.2,0.017,0.10400000000000001,0.19,0.529,0.127,2020-21 11539,T.J. Leaf,POR,24.0,208.28,100.697424,UCLA,USA,2017,1,18,7,1.7,0.7,0.1,-24.8,0.0,0.106,0.138,0.551,0.038,2020-21 11540,T.J. McConnell,IND,29.0,185.42,86.18248,Arizona,USA,2015,0,Undrafted,69,8.6,3.7,6.6,2.5,0.03,0.106,0.149,0.583,0.337,2020-21 11541,T.J. Warren,IND,27.0,203.2,99.79024,North Carolina State,USA,2014,1,14,4,15.5,3.5,1.3,2.6,0.017,0.106,0.213,0.56,0.06,2020-21 11542,Tacko Fall,BOS,25.0,226.06,141.067112,Central Florida,Senegal,Undrafted,Undrafted,Undrafted,19,2.5,2.7,0.2,6.3,0.12300000000000001,0.237,0.127,0.66,0.027999999999999997,2020-21 11543,Taj Gibson,NYK,36.0,205.74,105.23334399999999,Southern California,USA,2009,1,26,45,5.4,5.6,0.8,7.3,0.102,0.151,0.095,0.6609999999999999,0.054000000000000006,2020-21 11544,Talen Horton-Tucker,LAL,20.0,193.04,106.140528,Iowa State,USA,2019,2,46,65,9.0,2.6,2.8,1.0,0.019,0.10400000000000001,0.21,0.536,0.209,2020-21 11545,Taurean Prince,CLE,27.0,200.66,98.88305600000001,Baylor,USA,2016,1,12,41,9.5,3.5,1.9,-6.1,0.021,0.132,0.18899999999999997,0.54,0.121,2020-21 11546,Terance Mann,LAC,24.0,195.58,97.52228000000001,Florida State,USA,2019,2,48,67,7.0,3.6,1.6,2.7,0.044000000000000004,0.14,0.14400000000000002,0.603,0.114,2020-21 11547,Terence Davis,SAC,24.0,193.04,91.171992,Mississippi,USA,Undrafted,Undrafted,Undrafted,61,8.7,2.5,1.4,-2.8,0.018000000000000002,0.125,0.213,0.555,0.122,2020-21 11548,Solomon Hill,ATL,30.0,198.12,102.511792,Arizona,USA,2013,1,23,71,4.5,3.0,1.1,1.0,0.027999999999999997,0.111,0.102,0.498,0.065,2020-21 11549,Terrance Ferguson,PHI,23.0,198.12,86.18248,None,USA,2017,1,21,13,0.2,0.1,0.2,-17.8,0.0,0.024,0.094,0.14300000000000002,0.057,2020-21 11550,Terry Rozier,CHA,27.0,185.42,86.18248,Louisville,USA,2015,1,16,69,20.4,4.4,4.2,-2.0,0.019,0.105,0.23800000000000002,0.575,0.193,2020-21 11551,Thaddeus Young,CHI,33.0,203.2,106.59411999999999,Georgia Tech,USA,2007,1,12,68,12.1,6.2,4.3,4.1,0.105,0.154,0.21600000000000003,0.578,0.253,2020-21 11552,Thanasis Antetokounmpo,MIL,28.0,198.12,99.336648,None,Greece,2014,2,51,57,2.9,2.2,0.8,2.5,0.09300000000000001,0.113,0.147,0.523,0.113,2020-21 11553,Theo Maledon,OKC,20.0,193.04,79.3786,None,France,2020,2,34,65,10.1,3.2,3.5,-16.5,0.012,0.10099999999999999,0.188,0.489,0.19699999999999998,2020-21 11554,Theo Pinson,NYK,25.0,195.58,96.16150400000001,North Carolina,USA,Undrafted,Undrafted,Undrafted,17,0.1,0.3,0.1,-16.0,0.0,0.114,0.11800000000000001,0.111,0.063,2020-21 11555,Thomas Bryant,WAS,23.0,208.28,112.490816,Indiana,USA,2017,2,42,10,14.3,6.1,1.5,-2.1,0.063,0.163,0.163,0.7040000000000001,0.079,2020-21 11556,Thon Maker,CLE,24.0,213.36,100.243832,None,South Sudan,2016,1,10,8,3.8,2.3,0.5,-10.9,0.09300000000000001,0.11800000000000001,0.145,0.657,0.1,2020-21 11557,Tim Frazier,MEM,30.0,182.88,77.11064,Penn State,USA,Undrafted,Undrafted,Undrafted,5,1.6,1.6,3.2,7.8,0.0,0.107,0.17800000000000002,0.177,0.33299999999999996,2020-21 11558,Tim Hardaway Jr.,DAL,29.0,195.58,92.98635999999999,Michigan,USA,2013,1,24,70,16.6,3.3,1.8,2.1,0.01,0.10099999999999999,0.23,0.589,0.098,2020-21 11559,Timothe Luwawu-Cabarrot,BKN,26.0,200.66,99.79024,None,France,2016,1,24,58,6.4,2.2,1.2,-0.4,0.026000000000000002,0.092,0.165,0.493,0.08800000000000001,2020-21 11560,Tobias Harris,PHI,28.0,203.2,102.511792,Tennessee,USA,2011,1,19,62,19.5,6.8,3.5,7.2,0.032,0.17,0.237,0.597,0.175,2020-21 11561,Tomas Satoransky,CHI,29.0,200.66,95.25432,None,Czech Republic,2012,2,32,58,7.7,2.4,4.7,-0.8,0.024,0.087,0.15,0.614,0.278,2020-21 11562,Tony Bradley,OKC,23.0,208.28,112.490816,North Carolina,USA,2017,1,28,42,7.1,5.7,0.9,-1.8,0.121,0.22399999999999998,0.154,0.6779999999999999,0.077,2020-21 11563,Tony Snell,ATL,29.0,198.12,96.615096,New Mexico,USA,2013,1,20,47,5.3,2.4,1.3,2.2,0.019,0.09,0.084,0.708,0.08,2020-21 11564,Terrence Ross,ORL,30.0,198.12,93.439952,Washington,USA,2012,1,8,46,15.6,3.4,2.3,-8.8,0.01,0.10400000000000001,0.23,0.53,0.133,2020-21 11565,Willy Hernangomez,NOP,27.0,210.82,113.398,None,Spain,2015,2,35,47,7.8,7.1,1.1,0.0,0.134,0.247,0.166,0.591,0.08199999999999999,2020-21 11566,Nikola Vucevic,CHI,30.0,210.82,117.93392,Southern California,Montenegro,2011,1,16,70,23.4,11.7,3.8,-7.0,0.059000000000000004,0.289,0.292,0.56,0.207,2020-21 11567,Nicolo Melli,DAL,30.0,205.74,107.047712,None,Italy,Undrafted,Undrafted,Undrafted,45,3.0,2.7,1.0,1.1,0.046,0.166,0.12300000000000001,0.441,0.10800000000000001,2020-21 11568,Kenrich Williams,OKC,26.0,198.12,95.25432,TCU,USA,Undrafted,Undrafted,Undrafted,66,8.0,4.1,2.3,-6.3,0.055999999999999994,0.129,0.14800000000000002,0.599,0.153,2020-21 11569,Kent Bazemore,GSW,31.0,193.04,88.45044,Old Dominion,USA,Undrafted,Undrafted,Undrafted,67,7.2,3.4,1.6,5.9,0.019,0.14,0.159,0.564,0.10800000000000001,2020-21 11570,Kentavious Caldwell-Pope,LAL,28.0,195.58,92.532768,Georgia,USA,2013,1,8,67,9.7,2.7,1.9,3.3,0.015,0.081,0.139,0.588,0.091,2020-21 11571,Kenyon Martin Jr.,HOU,20.0,198.12,97.52228000000001,None,USA,2020,2,52,45,9.3,5.4,1.1,-11.5,0.063,0.159,0.154,0.59,0.068,2020-21 11572,Kevin Durant,BKN,32.0,208.28,108.86208,Texas-Austin,USA,2007,1,2,35,26.9,7.1,5.6,10.7,0.012,0.18,0.303,0.6659999999999999,0.252,2020-21 11573,Kevin Huerter,ATL,22.0,200.66,86.18248,Maryland,USA,2018,1,19,69,11.9,3.3,3.5,1.7,0.017,0.09,0.16699999999999998,0.541,0.161,2020-21 11574,Kevin Knox II,NYK,21.0,200.66,97.52228000000001,Kentucky,USA,2018,1,9,42,3.9,1.5,0.5,-3.5,0.02,0.10099999999999999,0.152,0.537,0.064,2020-21 11575,Kevin Love,CLE,32.0,203.2,113.851592,UCLA,USA,2008,1,5,25,12.2,7.4,2.5,-6.5,0.026000000000000002,0.272,0.21100000000000002,0.556,0.153,2020-21 11576,Kevin Porter Jr.,HOU,21.0,193.04,92.079176,Southern California,USA,2019,1,30,26,16.6,3.8,6.3,-12.6,0.022000000000000002,0.098,0.247,0.528,0.293,2020-21 11577,Kevon Looney,GSW,25.0,205.74,100.697424,UCLA,USA,2015,1,30,61,4.1,5.3,2.0,6.0,0.098,0.165,0.092,0.575,0.132,2020-21 11578,Khem Birch,TOR,28.0,205.74,105.68693600000002,UNLV,Canada,Undrafted,Undrafted,Undrafted,67,7.2,5.8,1.3,-3.6,0.10099999999999999,0.138,0.133,0.552,0.085,2020-21 11579,Khris Middleton,MIL,29.0,200.66,100.697424,Texas A&M,USA,2012,2,39,68,20.4,6.0,5.4,6.2,0.023,0.14300000000000002,0.245,0.588,0.22699999999999998,2020-21 11580,Khyri Thomas,HOU,25.0,190.5,95.25432,Creighton,USA,2018,2,38,5,16.4,3.6,5.0,7.3,0.047,0.07200000000000001,0.20800000000000002,0.586,0.21,2020-21 11581,Killian Hayes,DET,19.0,195.58,88.45044,None,France,2020,1,7,26,6.8,2.7,5.3,-10.1,0.009000000000000001,0.092,0.185,0.42200000000000004,0.299,2020-21 11582,Killian Tillie,MEM,23.0,205.74,99.79024,Gonzaga,France,Undrafted,Undrafted,Undrafted,18,3.2,1.3,0.4,9.6,0.031,0.08199999999999999,0.14800000000000002,0.461,0.063,2020-21 11583,Kira Lewis Jr.,NOP,20.0,185.42,77.11064,Alabama,USA,2020,1,13,54,6.4,1.3,2.3,0.8,0.012,0.064,0.17600000000000002,0.47700000000000004,0.191,2020-21 11584,Kostas Antetokounmpo,LAL,23.0,208.28,90.7184,Dayton,Greece,2018,2,60,15,0.8,1.3,0.1,22.1,0.059000000000000004,0.21100000000000002,0.172,0.382,0.023,2020-21 11585,Kris Dunn,ATL,27.0,190.5,92.98635999999999,Providence,USA,2016,1,5,4,1.3,1.5,0.5,-31.4,0.0,0.125,0.157,0.182,0.08,2020-21 11586,Kristaps Porzingis,DAL,25.0,220.98,108.86208,None,Latvia,2015,1,4,43,20.1,8.9,1.6,0.7,0.062,0.21899999999999997,0.259,0.5820000000000001,0.081,2020-21 11587,Kyle Anderson,MEM,27.0,205.74,104.32616,UCLA,USA,2014,1,30,69,12.4,5.7,3.6,1.6,0.026000000000000002,0.17300000000000001,0.18100000000000002,0.578,0.182,2020-21 11588,Kyle Guy,SAC,23.0,185.42,75.749864,Virginia,USA,2019,2,55,31,2.8,1.1,1.0,-4.2,0.019,0.128,0.185,0.449,0.184,2020-21 11589,Kyle Kuzma,LAL,25.0,208.28,100.243832,Utah,USA,2017,1,27,68,12.9,6.1,1.9,-0.6,0.054000000000000006,0.157,0.198,0.546,0.1,2020-21 11590,Kyle Lowry,TOR,35.0,182.88,88.904032,Villanova,USA,2006,1,24,46,17.2,5.4,7.3,-0.3,0.021,0.133,0.209,0.593,0.311,2020-21 11591,Kyrie Irving,BKN,29.0,187.96,88.45044,Duke,Australia,2011,1,1,54,26.9,4.8,6.0,5.6,0.028999999999999998,0.10099999999999999,0.297,0.614,0.26899999999999996,2020-21 11592,LaMarcus Aldridge,BKN,35.0,210.82,113.398,University of Texas at Austin,USA,2006,1,2,26,13.5,4.5,1.9,-2.8,0.027000000000000003,0.14800000000000002,0.22399999999999998,0.556,0.109,2020-21 11593,LaMelo Ball,CHA,19.0,198.12,81.64656,None,USA,2020,1,3,51,15.7,5.9,6.1,-3.1,0.040999999999999995,0.161,0.247,0.539,0.322,2020-21 11594,Lamar Stevens,CLE,23.0,198.12,104.32616,Penn State,USA,Undrafted,Undrafted,Undrafted,40,4.1,2.4,0.6,-10.4,0.044000000000000004,0.145,0.152,0.521,0.079,2020-21 11595,Landry Shamet,BKN,24.0,193.04,86.18248,Wichita State,USA,2018,1,26,61,9.3,1.8,1.6,1.1,0.008,0.067,0.16399999999999998,0.578,0.09699999999999999,2020-21 11596,Langston Galloway,PHX,29.0,185.42,90.7184,St. Joseph's (PA),USA,Undrafted,Undrafted,Undrafted,40,4.8,1.1,0.7,3.2,0.017,0.08,0.163,0.605,0.08,2020-21 11597,Kendrick Nunn,MIA,25.0,187.96,86.18248,Oakland,USA,Undrafted,Undrafted,Undrafted,56,14.6,3.2,2.6,-0.4,0.013000000000000001,0.096,0.205,0.596,0.14,2020-21 11598,Kemba Walker,OKC,31.0,182.88,83.46092800000001,Connecticut,USA,2011,1,9,43,19.3,4.0,4.9,3.1,0.012,0.113,0.256,0.5589999999999999,0.233,2020-21 11599,Kelly Oubre Jr.,GSW,25.0,200.66,92.079176,Kansas,USA,2015,1,15,55,15.4,6.0,1.3,-4.6,0.046,0.135,0.215,0.529,0.067,2020-21 11600,Kelly Olynyk,HOU,30.0,210.82,108.86208,Gonzaga,Canada,2013,1,13,70,13.5,7.0,2.9,-2.5,0.043,0.196,0.19,0.61,0.151,2020-21 11601,Jordan Clarkson,UTA,29.0,193.04,87.996848,Missouri,USA,2014,2,46,68,18.4,4.0,2.5,7.8,0.025,0.11699999999999999,0.28600000000000003,0.5489999999999999,0.149,2020-21 11602,Jordan McLaughlin,MIN,25.0,180.34,83.91452,Southern California,USA,Undrafted,Undrafted,Undrafted,51,5.0,2.1,3.8,-6.3,0.02,0.09,0.133,0.502,0.292,2020-21 11603,Jordan Nwora,MIL,22.0,203.2,102.0582,Louisville,USA,2020,2,45,30,5.7,2.0,0.2,-0.3,0.033,0.162,0.254,0.586,0.04,2020-21 11604,Jordan Poole,GSW,22.0,193.04,87.996848,Michigan,USA,2019,1,28,51,12.0,1.8,1.9,0.7,0.015,0.07400000000000001,0.24600000000000002,0.581,0.161,2020-21 11605,Josh Green,DAL,20.0,195.58,90.7184,Arizona,Australia,2020,1,18,39,2.6,2.0,0.7,1.9,0.059000000000000004,0.11,0.11199999999999999,0.49,0.083,2020-21 11606,Josh Hall,OKC,20.0,205.74,86.18248,None,USA,Undrafted,Undrafted,Undrafted,21,4.1,2.8,1.3,-13.2,0.016,0.151,0.174,0.363,0.11800000000000001,2020-21 11607,Josh Hart,NOP,26.0,195.58,97.52228000000001,Villanova,USA,2017,1,30,47,9.2,8.0,2.3,-0.2,0.039,0.23399999999999999,0.133,0.5660000000000001,0.109,2020-21 11608,Josh Jackson,DET,24.0,203.2,93.89354399999999,Kansas,USA,2017,1,4,62,13.4,4.1,2.3,-3.4,0.035,0.12300000000000001,0.254,0.516,0.15,2020-21 11609,Josh Okogie,MIN,22.0,193.04,96.615096,Georgia Tech,Nigeria,2018,1,20,59,5.4,2.6,1.1,-6.6,0.048,0.079,0.11900000000000001,0.524,0.07200000000000001,2020-21 11610,Josh Richardson,DAL,27.0,195.58,90.7184,Tennessee,USA,2015,2,40,59,12.1,3.3,2.6,-0.2,0.027999999999999997,0.079,0.18100000000000002,0.537,0.12300000000000001,2020-21 11611,Jrue Holiday,MIL,31.0,190.5,92.98635999999999,UCLA,USA,2009,1,17,59,17.7,4.5,6.1,9.2,0.037000000000000005,0.09300000000000001,0.217,0.5920000000000001,0.253,2020-21 11612,Juan Toscano-Anderson,GSW,28.0,198.12,94.800728,Marquette,USA,Undrafted,Undrafted,Undrafted,53,5.7,4.4,2.8,3.8,0.026000000000000002,0.172,0.10800000000000001,0.6759999999999999,0.18100000000000002,2020-21 11613,Juancho Hernangomez,MIN,25.0,205.74,97.068688,None,Spain,2016,1,15,52,7.2,3.9,0.7,-4.9,0.047,0.177,0.16699999999999998,0.5489999999999999,0.055,2020-21 11614,Julius Randle,NYK,26.0,203.2,113.398,Kentucky,USA,2014,1,7,71,24.1,10.2,6.0,3.0,0.031,0.22699999999999998,0.285,0.5670000000000001,0.26899999999999996,2020-21 11615,Larry Nance Jr.,CLE,28.0,200.66,111.13004,Wyoming,USA,2015,1,27,35,9.3,6.7,3.1,-5.6,0.049,0.16899999999999998,0.139,0.557,0.145,2020-21 11616,Justin Holiday,IND,32.0,198.12,81.64656,Washington,USA,Undrafted,Undrafted,Undrafted,72,10.5,3.6,1.7,-0.6,0.013999999999999999,0.098,0.138,0.5710000000000001,0.07,2020-21 11617,Justin James,SAC,24.0,200.66,86.18248,Wyoming,USA,2019,2,40,36,3.9,0.8,0.6,-8.5,0.027000000000000003,0.067,0.192,0.5479999999999999,0.109,2020-21 11618,Justin Patton,HOU,24.0,210.82,109.315672,Creighton,USA,2017,1,16,13,5.4,3.8,1.1,-14.1,0.047,0.142,0.128,0.488,0.084,2020-21 11619,Justin Robinson,OKC,23.0,185.42,88.45044,Virginia Tech ,USA,2019,Undrafted,Undrafted,9,2.3,0.8,1.0,-22.0,0.011000000000000001,0.067,0.111,0.45299999999999996,0.15,2020-21 11620,Justise Winslow,MEM,25.0,198.12,100.697424,Duke,USA,2015,1,10,26,6.8,4.5,1.9,-6.1,0.032,0.187,0.212,0.395,0.14,2020-21 11621,Jusuf Nurkic,POR,26.0,210.82,131.54168,None,Bosnia and Herzegovina,2014,1,16,37,11.5,9.0,3.4,6.9,0.094,0.28300000000000003,0.217,0.5539999999999999,0.20600000000000002,2020-21 11622,Juwan Morgan,UTA,24.0,200.66,105.23334399999999,Indiana,USA,Undrafted,Undrafted,Undrafted,29,1.2,1.0,0.3,-34.1,0.051,0.133,0.102,0.529,0.10099999999999999,2020-21 11623,KZ Okpala,MIA,22.0,203.2,97.52228000000001,Stanford,USA,2019,2,32,37,2.5,1.8,0.5,-6.8,0.047,0.10400000000000001,0.115,0.44799999999999995,0.06,2020-21 11624,Karim Mane,ORL,21.0,190.5,86.18248,None,Senegal,Undrafted,Undrafted,Undrafted,10,1.1,1.4,0.4,-12.0,0.01,0.151,0.085,0.36200000000000004,0.061,2020-21 11625,Karl-Anthony Towns,MIN,25.0,210.82,112.490816,Kentucky,USA,2015,1,1,50,24.8,10.6,4.5,-0.1,0.075,0.237,0.28600000000000003,0.612,0.21600000000000003,2020-21 11626,Kawhi Leonard,LAC,30.0,200.66,102.0582,San Diego State,USA,2011,1,15,52,24.8,6.5,5.2,12.2,0.034,0.161,0.282,0.622,0.23800000000000002,2020-21 11627,Keita Bates-Diop,SAS,25.0,203.2,103.872568,Ohio State,USA,2018,2,48,30,2.6,1.6,0.4,-7.7,0.037000000000000005,0.154,0.14400000000000002,0.518,0.075,2020-21 11628,Kelan Martin,IND,25.0,195.58,104.32616,Butler,USA,Undrafted,Undrafted,Undrafted,35,4.5,2.2,0.5,15.6,0.052000000000000005,0.159,0.19899999999999998,0.551,0.071,2020-21 11629,Keldon Johnson,SAS,21.0,195.58,99.79024,Kentucky,USA,2019,1,29,69,12.8,6.0,1.8,-3.8,0.045,0.163,0.18899999999999997,0.557,0.087,2020-21 11630,Keljin Blevins,POR,25.0,193.04,90.7184,Montana State,USA,2019,Undrafted,Undrafted,17,0.7,0.6,0.2,-22.2,0.031,0.071,0.126,0.3,0.083,2020-21 11631,Justin Jackson,MIL,26.0,203.2,99.79024,North Carolina,USA,2017,1,15,34,7.2,2.3,1.5,-3.0,0.026000000000000002,0.1,0.195,0.516,0.136,2020-21 11632,Nikola Jokic,DEN,26.0,210.82,128.820128,None,Serbia,2014,2,41,72,26.4,10.8,8.3,7.7,0.087,0.237,0.293,0.647,0.377,2020-21 11633,Lauri Markkanen,CHI,24.0,213.36,108.86208,Arizona,Finland,2017,1,7,51,13.6,5.3,0.9,-2.8,0.027000000000000003,0.17300000000000001,0.19699999999999998,0.619,0.051,2020-21 11634,Lonnie Walker IV,SAS,22.0,193.04,92.532768,Miami,USA,2018,1,18,60,11.2,2.6,1.7,-6.3,0.009000000000000001,0.09300000000000001,0.19899999999999998,0.523,0.095,2020-21 11635,Michael Porter Jr.,DEN,23.0,208.28,98.88305600000001,Missouri,USA,2018,1,14,61,19.0,7.3,1.1,8.3,0.051,0.18899999999999997,0.214,0.6629999999999999,0.052000000000000005,2020-21 11636,Mikal Bridges,PHX,24.0,198.12,94.800728,Villanova,USA,2018,1,10,72,13.5,4.3,2.1,7.4,0.035,0.099,0.147,0.667,0.085,2020-21 11637,Mike Conley,UTA,33.0,185.42,79.3786,Ohio State,USA,2007,1,4,51,16.2,3.5,6.0,16.7,0.024,0.08199999999999999,0.22399999999999998,0.589,0.303,2020-21 11638,Mike James,BKN,30.0,185.42,79.3786,Lamar,USA,Undrafted,Undrafted,Undrafted,13,7.7,2.5,4.2,4.1,0.013000000000000001,0.11199999999999999,0.231,0.48100000000000004,0.303,2020-21 11639,Mike Muscala,OKC,29.0,208.28,108.86208,Bucknell,USA,2013,2,44,35,9.7,3.8,0.8,0.6,0.027999999999999997,0.157,0.19399999999999998,0.599,0.069,2020-21 11640,Mike Scott,PHI,32.0,200.66,107.501304,Virginia,USA,2012,2,43,51,4.2,2.4,0.8,-0.2,0.012,0.129,0.11599999999999999,0.49200000000000005,0.064,2020-21 11641,Miles Bridges,CHA,23.0,198.12,102.0582,Michigan State,USA,2018,1,12,66,12.7,6.0,2.2,0.3,0.040999999999999995,0.158,0.17,0.625,0.113,2020-21 11642,Mitchell Robinson,NYK,23.0,213.36,108.86208,Western Kentucky,USA,2018,2,36,31,8.3,8.1,0.5,-0.4,0.124,0.155,0.114,0.642,0.03,2020-21 11643,Miye Oni,UTA,23.0,195.58,93.439952,Yale,USA,2019,2,58,54,1.9,1.6,0.5,8.8,0.043,0.106,0.095,0.517,0.071,2020-21 11644,Mo Bamba,ORL,23.0,213.36,104.779752,Texas-Austin,USA,2018,1,6,46,8.0,5.8,0.8,-12.9,0.091,0.24,0.21,0.556,0.08199999999999999,2020-21 11645,Monte Morris,DEN,26.0,187.96,83.007336,Iowa State,USA,2017,2,51,47,10.2,2.0,3.2,6.2,0.009000000000000001,0.071,0.161,0.574,0.172,2020-21 11646,Montrezl Harrell,LAL,27.0,200.66,108.86208,Louisville,USA,2015,2,32,69,13.5,6.2,1.1,1.4,0.1,0.16699999999999998,0.21100000000000002,0.65,0.078,2020-21 11647,Moritz Wagner,ORL,24.0,210.82,111.13004,Michigan,Germany,2018,1,25,45,6.9,3.2,1.1,-7.9,0.035,0.149,0.17800000000000002,0.58,0.107,2020-21 11648,Moses Brown,BOS,21.0,218.44,111.13004,UCLA,USA,Undrafted,Undrafted,Undrafted,43,8.6,8.9,0.2,-18.3,0.14300000000000002,0.23800000000000002,0.157,0.5720000000000001,0.017,2020-21 11649,Mychal Mulder,GSW,27.0,190.5,83.46092800000001,Kentucky,Canada,Undrafted,Undrafted,Undrafted,60,5.6,1.0,0.4,2.9,0.01,0.062,0.157,0.613,0.047,2020-21 11650,Myles Turner,IND,25.0,210.82,113.398,Texas-Austin,USA,2015,1,11,47,12.6,6.5,1.0,1.3,0.043,0.159,0.16699999999999998,0.599,0.047,2020-21 11651,Naji Marshall,NOP,23.0,200.66,99.79024,Xavier,USA,Undrafted,Undrafted,Undrafted,32,7.7,4.6,2.8,-1.5,0.02,0.182,0.16,0.508,0.165,2020-21 11652,Nassir Little,POR,21.0,195.58,99.79024,North Carolina,USA,2019,1,25,48,4.6,2.7,0.5,-2.2,0.046,0.14400000000000002,0.135,0.589,0.049,2020-21 11653,Nate Darling,CHA,22.0,198.12,90.7184,Delaware,Canada,Undrafted,Undrafted,Undrafted,7,1.3,0.1,0.1,-54.3,0.032,0.0,0.133,0.541,0.111,2020-21 11654,Nate Hinton,DAL,22.0,195.58,95.25432,Houston,USA,Undrafted,Undrafted,Undrafted,21,2.0,0.4,0.4,-28.2,0.009000000000000001,0.091,0.217,0.442,0.151,2020-21 11655,Nathan Knight,ATL,23.0,208.28,114.758776,William & Mary,USA,Undrafted,Undrafted,Undrafted,33,3.8,2.2,0.2,-4.3,0.09300000000000001,0.155,0.207,0.499,0.045,2020-21 11656,Naz Reid,MIN,21.0,205.74,119.74828799999999,Louisiana State,USA,Undrafted,Undrafted,Undrafted,70,11.2,4.6,1.0,-9.7,0.054000000000000006,0.17300000000000001,0.218,0.599,0.08800000000000001,2020-21 11657,Nemanja Bjelica,MIA,33.0,208.28,106.140528,None,Serbia,2010,2,35,37,6.5,3.4,1.9,-6.7,0.049,0.172,0.179,0.5539999999999999,0.16,2020-21 11658,Nerlens Noel,NYK,27.0,210.82,99.79024,Kentucky,USA,2013,1,6,64,5.1,6.4,0.7,0.7,0.094,0.16399999999999998,0.092,0.638,0.040999999999999995,2020-21 11659,Nick Richards,CHA,23.0,213.36,111.13004,Kentucky,Jamaica,2020,2,42,18,0.8,0.6,0.1,-10.5,0.055999999999999994,0.096,0.111,0.542,0.054000000000000006,2020-21 11660,Nickeil Alexander-Walker,NOP,22.0,198.12,92.98635999999999,Virginia Tech,Canada,2019,1,17,46,11.0,3.1,2.2,-3.3,0.012,0.127,0.228,0.522,0.155,2020-21 11661,Nico Mannion,GSW,20.0,187.96,86.18248,Arizona,Italy,2020,2,48,30,4.1,1.5,2.3,-9.4,0.016,0.107,0.18600000000000003,0.48700000000000004,0.27,2020-21 11662,Nicolas Batum,LAC,32.0,203.2,104.32616,None,France,2008,1,25,67,8.1,4.7,2.2,8.9,0.028999999999999998,0.14300000000000002,0.11599999999999999,0.617,0.105,2020-21 11663,Nicolas Claxton,BKN,22.0,210.82,97.52228000000001,Georgia,USA,2019,2,31,32,6.6,5.2,0.9,12.3,0.07400000000000001,0.187,0.136,0.612,0.068,2020-21 11664,Michael Carter-Williams,ORL,29.0,195.58,86.18248,Syracuse,USA,2013,1,11,31,8.8,4.5,4.2,-2.5,0.044000000000000004,0.12300000000000001,0.198,0.449,0.23800000000000002,2020-21 11665,Mfiondu Kabengele,CLE,23.0,205.74,113.398,Florida State,Canada,2019,1,27,39,2.4,1.5,0.4,-14.2,0.039,0.151,0.168,0.486,0.099,2020-21 11666,Meyers Leonard,MIA,29.0,213.36,117.93392,Illinois,USA,2012,1,11,3,3.3,2.3,0.7,-1.4,0.0,0.24100000000000002,0.152,0.635,0.105,2020-21 11667,Maxi Kleber,DAL,29.0,208.28,108.86208,None,Germany,Undrafted,Undrafted,Undrafted,50,7.1,5.2,1.4,4.6,0.035,0.151,0.10300000000000001,0.606,0.066,2020-21 11668,Lonzo Ball,NOP,23.0,198.12,86.18248,UCLA,USA,2017,1,2,55,14.6,4.8,5.7,0.5,0.018000000000000002,0.129,0.20199999999999999,0.551,0.24600000000000002,2020-21 11669,Lou Williams,ATL,34.0,185.42,79.3786,None,USA,2005,2,45,66,11.3,2.1,3.4,1.8,0.015,0.08,0.244,0.519,0.233,2020-21 11670,Louis King,SAC,22.0,200.66,92.98635999999999,Oregon,USA,Undrafted,Undrafted,Undrafted,6,7.3,3.0,1.5,-3.3,0.051,0.135,0.191,0.6,0.18,2020-21 11671,Luguentz Dort,OKC,22.0,190.5,97.52228000000001,Arizona State,Canada,Undrafted,Undrafted,Undrafted,52,14.0,3.6,1.7,-7.2,0.023,0.092,0.218,0.513,0.09,2020-21 11672,Luka Doncic,DAL,22.0,200.66,104.32616,None,Slovenia,2018,1,3,66,27.7,8.0,8.6,3.9,0.024,0.20199999999999999,0.35,0.5870000000000001,0.425,2020-21 11673,Luka Samanic,SAS,21.0,208.28,102.965384,None,Croatia,2019,1,19,33,3.7,2.1,0.5,-2.0,0.049,0.158,0.187,0.518,0.073,2020-21 11674,Luke Kennard,LAC,25.0,195.58,93.439952,Duke,USA,2017,1,12,63,8.3,2.6,1.7,-0.4,0.013000000000000001,0.11800000000000001,0.166,0.608,0.12,2020-21 11675,Luke Kornet,BOS,25.0,218.44,113.398,Vanderbilt,USA,Undrafted,Undrafted,Undrafted,31,3.4,2.2,0.8,5.8,0.040999999999999995,0.14400000000000002,0.135,0.511,0.095,2020-21 11676,Malachi Flynn,TOR,23.0,185.42,79.3786,San Diego State,USA,2020,1,29,47,7.5,2.5,2.9,-5.6,0.01,0.114,0.183,0.484,0.225,2020-21 11677,Malcolm Brogdon,IND,28.0,195.58,103.872568,Virginia,USA,2016,2,36,56,21.2,5.3,5.9,-0.5,0.028999999999999998,0.11800000000000001,0.257,0.561,0.271,2020-21 11678,Malik Beasley,MIN,24.0,193.04,84.821704,Florida State,USA,2016,1,19,37,19.6,4.4,2.4,-7.2,0.021,0.11199999999999999,0.235,0.57,0.114,2020-21 11679,Malik Fitts,LAC,23.0,203.2,104.32616,None,USA,Undrafted,Undrafted,Undrafted,3,1.0,1.0,0.0,-27.3,0.0,0.3,0.12,0.5,0.0,2020-21 11680,Malik Monk,CHA,23.0,190.5,90.7184,Kentucky,USA,2017,1,11,42,11.7,2.4,2.1,0.8,0.015,0.096,0.22699999999999998,0.569,0.155,2020-21 11681,Mamadi Diakite,MIL,24.0,205.74,103.418976,Virginia,Guinea,Undrafted,Undrafted,Undrafted,14,3.1,2.4,0.6,3.8,0.052000000000000005,0.16,0.142,0.47700000000000004,0.079,2020-21 11682,LeBron James,LAL,36.0,205.74,113.398,None,USA,2003,1,1,45,25.0,7.7,7.8,9.2,0.02,0.20199999999999999,0.31,0.602,0.39399999999999996,2020-21 11683,Marc Gasol,LAL,36.0,210.82,115.66596000000001,None,Spain,2007,2,48,52,5.0,4.1,2.1,4.3,0.039,0.174,0.11699999999999999,0.606,0.145,2020-21 11684,Marcus Smart,BOS,27.0,190.5,99.79024,Oklahoma State,USA,2014,1,6,48,13.1,3.5,5.7,2.8,0.022000000000000002,0.084,0.179,0.539,0.22699999999999998,2020-21 11685,Markelle Fultz,ORL,23.0,190.5,94.800728,Washington,USA,2017,1,1,8,12.9,3.1,5.4,-6.5,0.021,0.095,0.25,0.45799999999999996,0.293,2020-21 11686,Markieff Morris,LAL,31.0,205.74,111.13004,Kansas,USA,2011,1,13,61,6.7,4.4,1.2,0.8,0.04,0.17600000000000002,0.16,0.509,0.08800000000000001,2020-21 11687,Markus Howard,DEN,22.0,177.8,79.3786,Marquette,USA,Undrafted,Undrafted,Undrafted,37,2.8,0.6,0.5,-17.0,0.004,0.095,0.25,0.47700000000000004,0.145,2020-21 11688,Marques Bolden,CLE,23.0,208.28,112.94440800000001,Duke,USA,2019,Undrafted,Undrafted,6,1.2,1.0,0.0,12.3,0.083,0.08800000000000001,0.136,0.537,0.0,2020-21 11689,Marquese Chriss,GSW,23.0,205.74,108.86208,Washington,USA,2016,1,8,2,6.5,6.5,1.0,-40.3,0.075,0.385,0.25,0.41200000000000003,0.2,2020-21 11690,Marvin Bagley III,SAC,22.0,210.82,106.59411999999999,Duke,USA,2018,1,2,43,14.1,7.4,1.0,-3.7,0.092,0.188,0.22899999999999998,0.5539999999999999,0.057,2020-21 11691,Mason Jones,PHI,22.0,193.04,90.7184,Arkansas,USA,Undrafted,Undrafted,Undrafted,32,5.3,1.7,1.3,-9.9,0.018000000000000002,0.145,0.217,0.556,0.21100000000000002,2020-21 11692,Mason Plumlee,DET,31.0,210.82,115.212368,Duke,USA,2013,1,22,56,10.4,9.3,3.6,-4.9,0.095,0.264,0.163,0.638,0.205,2020-21 11693,Matisse Thybulle,PHI,24.0,195.58,91.171992,Washington,USA,2019,1,20,65,3.9,1.9,1.0,4.6,0.023,0.07,0.09,0.508,0.064,2020-21 11694,Matt Thomas,UTA,26.0,193.04,86.18248,Iowa State,USA,Undrafted,Undrafted,Undrafted,45,3.1,1.0,0.4,-9.3,0.02,0.11199999999999999,0.187,0.522,0.096,2020-21 11695,Matthew Dellavedova,CLE,30.0,190.5,90.7184,St.Mary's College of California,Australia,Undrafted,Undrafted,Undrafted,13,2.8,1.8,4.5,-3.1,0.028999999999999998,0.085,0.125,0.312,0.337,2020-21 11696,Maurice Harkless,SAC,28.0,200.66,99.79024,St. John's,USA,2012,1,15,37,5.2,2.4,1.2,-2.9,0.017,0.09699999999999999,0.114,0.527,0.071,2020-21 11697,Max Strus,MIA,25.0,195.58,97.52228000000001,DePaul,USA,Undrafted,Undrafted,Undrafted,39,6.1,1.1,0.6,-4.2,0.011000000000000001,0.073,0.179,0.597,0.07400000000000001,2020-21 11698,Marcus Morris Sr.,LAC,31.0,203.2,98.88305600000001,Kansas,USA,2011,1,14,57,13.4,4.1,1.0,4.2,0.025,0.133,0.19399999999999998,0.614,0.055999999999999994,2020-21 11699,Aaron Gordon,DEN,25.0,203.2,106.59411999999999,Arizona,USA,2014,1,4,50,12.4,5.7,3.2,2.1,0.055,0.15,0.204,0.547,0.165,2020-21 ================================================ FILE: docs/third-party/data-science/files/matplotlib/pokemon.csv ================================================ #,Name,Type 1,Type 2,Total,HP,Attack,Defense,Sp. Atk,Sp. Def,Speed,Generation,Legendary 1,Bulbasaur,Grass,Poison,318,45,49,49,65,65,45,1,False 2,Ivysaur,Grass,Poison,405,60,62,63,80,80,60,1,False 3,Venusaur,Grass,Poison,525,80,82,83,100,100,80,1,False 3,VenusaurMega Venusaur,Grass,Poison,625,80,100,123,122,120,80,1,False 4,Charmander,Fire,,309,39,52,43,60,50,65,1,False 5,Charmeleon,Fire,,405,58,64,58,80,65,80,1,False 6,Charizard,Fire,Flying,534,78,84,78,109,85,100,1,False 6,CharizardMega Charizard X,Fire,Dragon,634,78,130,111,130,85,100,1,False 6,CharizardMega Charizard Y,Fire,Flying,634,78,104,78,159,115,100,1,False 7,Squirtle,Water,,314,44,48,65,50,64,43,1,False 8,Wartortle,Water,,405,59,63,80,65,80,58,1,False 9,Blastoise,Water,,530,79,83,100,85,105,78,1,False 9,BlastoiseMega Blastoise,Water,,630,79,103,120,135,115,78,1,False 10,Caterpie,Bug,,195,45,30,35,20,20,45,1,False 11,Metapod,Bug,,205,50,20,55,25,25,30,1,False 12,Butterfree,Bug,Flying,395,60,45,50,90,80,70,1,False 13,Weedle,Bug,Poison,195,40,35,30,20,20,50,1,False 14,Kakuna,Bug,Poison,205,45,25,50,25,25,35,1,False 15,Beedrill,Bug,Poison,395,65,90,40,45,80,75,1,False 15,BeedrillMega Beedrill,Bug,Poison,495,65,150,40,15,80,145,1,False 16,Pidgey,Normal,Flying,251,40,45,40,35,35,56,1,False 17,Pidgeotto,Normal,Flying,349,63,60,55,50,50,71,1,False 18,Pidgeot,Normal,Flying,479,83,80,75,70,70,101,1,False 18,PidgeotMega Pidgeot,Normal,Flying,579,83,80,80,135,80,121,1,False 19,Rattata,Normal,,253,30,56,35,25,35,72,1,False 20,Raticate,Normal,,413,55,81,60,50,70,97,1,False 21,Spearow,Normal,Flying,262,40,60,30,31,31,70,1,False 22,Fearow,Normal,Flying,442,65,90,65,61,61,100,1,False 23,Ekans,Poison,,288,35,60,44,40,54,55,1,False 24,Arbok,Poison,,438,60,85,69,65,79,80,1,False 25,Pikachu,Electric,,320,35,55,40,50,50,90,1,False 26,Raichu,Electric,,485,60,90,55,90,80,110,1,False 27,Sandshrew,Ground,,300,50,75,85,20,30,40,1,False 28,Sandslash,Ground,,450,75,100,110,45,55,65,1,False 29,Nidoran♀,Poison,,275,55,47,52,40,40,41,1,False 30,Nidorina,Poison,,365,70,62,67,55,55,56,1,False 31,Nidoqueen,Poison,Ground,505,90,92,87,75,85,76,1,False 32,Nidoran♂,Poison,,273,46,57,40,40,40,50,1,False 33,Nidorino,Poison,,365,61,72,57,55,55,65,1,False 34,Nidoking,Poison,Ground,505,81,102,77,85,75,85,1,False 35,Clefairy,Fairy,,323,70,45,48,60,65,35,1,False 36,Clefable,Fairy,,483,95,70,73,95,90,60,1,False 37,Vulpix,Fire,,299,38,41,40,50,65,65,1,False 38,Ninetales,Fire,,505,73,76,75,81,100,100,1,False 39,Jigglypuff,Normal,Fairy,270,115,45,20,45,25,20,1,False 40,Wigglytuff,Normal,Fairy,435,140,70,45,85,50,45,1,False 41,Zubat,Poison,Flying,245,40,45,35,30,40,55,1,False 42,Golbat,Poison,Flying,455,75,80,70,65,75,90,1,False 43,Oddish,Grass,Poison,320,45,50,55,75,65,30,1,False 44,Gloom,Grass,Poison,395,60,65,70,85,75,40,1,False 45,Vileplume,Grass,Poison,490,75,80,85,110,90,50,1,False 46,Paras,Bug,Grass,285,35,70,55,45,55,25,1,False 47,Parasect,Bug,Grass,405,60,95,80,60,80,30,1,False 48,Venonat,Bug,Poison,305,60,55,50,40,55,45,1,False 49,Venomoth,Bug,Poison,450,70,65,60,90,75,90,1,False 50,Diglett,Ground,,265,10,55,25,35,45,95,1,False 51,Dugtrio,Ground,,405,35,80,50,50,70,120,1,False 52,Meowth,Normal,,290,40,45,35,40,40,90,1,False 53,Persian,Normal,,440,65,70,60,65,65,115,1,False 54,Psyduck,Water,,320,50,52,48,65,50,55,1,False 55,Golduck,Water,,500,80,82,78,95,80,85,1,False 56,Mankey,Fighting,,305,40,80,35,35,45,70,1,False 57,Primeape,Fighting,,455,65,105,60,60,70,95,1,False 58,Growlithe,Fire,,350,55,70,45,70,50,60,1,False 59,Arcanine,Fire,,555,90,110,80,100,80,95,1,False 60,Poliwag,Water,,300,40,50,40,40,40,90,1,False 61,Poliwhirl,Water,,385,65,65,65,50,50,90,1,False 62,Poliwrath,Water,Fighting,510,90,95,95,70,90,70,1,False 63,Abra,Psychic,,310,25,20,15,105,55,90,1,False 64,Kadabra,Psychic,,400,40,35,30,120,70,105,1,False 65,Alakazam,Psychic,,500,55,50,45,135,95,120,1,False 65,AlakazamMega Alakazam,Psychic,,590,55,50,65,175,95,150,1,False 66,Machop,Fighting,,305,70,80,50,35,35,35,1,False 67,Machoke,Fighting,,405,80,100,70,50,60,45,1,False 68,Machamp,Fighting,,505,90,130,80,65,85,55,1,False 69,Bellsprout,Grass,Poison,300,50,75,35,70,30,40,1,False 70,Weepinbell,Grass,Poison,390,65,90,50,85,45,55,1,False 71,Victreebel,Grass,Poison,490,80,105,65,100,70,70,1,False 72,Tentacool,Water,Poison,335,40,40,35,50,100,70,1,False 73,Tentacruel,Water,Poison,515,80,70,65,80,120,100,1,False 74,Geodude,Rock,Ground,300,40,80,100,30,30,20,1,False 75,Graveler,Rock,Ground,390,55,95,115,45,45,35,1,False 76,Golem,Rock,Ground,495,80,120,130,55,65,45,1,False 77,Ponyta,Fire,,410,50,85,55,65,65,90,1,False 78,Rapidash,Fire,,500,65,100,70,80,80,105,1,False 79,Slowpoke,Water,Psychic,315,90,65,65,40,40,15,1,False 80,Slowbro,Water,Psychic,490,95,75,110,100,80,30,1,False 80,SlowbroMega Slowbro,Water,Psychic,590,95,75,180,130,80,30,1,False 81,Magnemite,Electric,Steel,325,25,35,70,95,55,45,1,False 82,Magneton,Electric,Steel,465,50,60,95,120,70,70,1,False 83,Farfetch'd,Normal,Flying,352,52,65,55,58,62,60,1,False 84,Doduo,Normal,Flying,310,35,85,45,35,35,75,1,False 85,Dodrio,Normal,Flying,460,60,110,70,60,60,100,1,False 86,Seel,Water,,325,65,45,55,45,70,45,1,False 87,Dewgong,Water,Ice,475,90,70,80,70,95,70,1,False 88,Grimer,Poison,,325,80,80,50,40,50,25,1,False 89,Muk,Poison,,500,105,105,75,65,100,50,1,False 90,Shellder,Water,,305,30,65,100,45,25,40,1,False 91,Cloyster,Water,Ice,525,50,95,180,85,45,70,1,False 92,Gastly,Ghost,Poison,310,30,35,30,100,35,80,1,False 93,Haunter,Ghost,Poison,405,45,50,45,115,55,95,1,False 94,Gengar,Ghost,Poison,500,60,65,60,130,75,110,1,False 94,GengarMega Gengar,Ghost,Poison,600,60,65,80,170,95,130,1,False 95,Onix,Rock,Ground,385,35,45,160,30,45,70,1,False 96,Drowzee,Psychic,,328,60,48,45,43,90,42,1,False 97,Hypno,Psychic,,483,85,73,70,73,115,67,1,False 98,Krabby,Water,,325,30,105,90,25,25,50,1,False 99,Kingler,Water,,475,55,130,115,50,50,75,1,False 100,Voltorb,Electric,,330,40,30,50,55,55,100,1,False 101,Electrode,Electric,,480,60,50,70,80,80,140,1,False 102,Exeggcute,Grass,Psychic,325,60,40,80,60,45,40,1,False 103,Exeggutor,Grass,Psychic,520,95,95,85,125,65,55,1,False 104,Cubone,Ground,,320,50,50,95,40,50,35,1,False 105,Marowak,Ground,,425,60,80,110,50,80,45,1,False 106,Hitmonlee,Fighting,,455,50,120,53,35,110,87,1,False 107,Hitmonchan,Fighting,,455,50,105,79,35,110,76,1,False 108,Lickitung,Normal,,385,90,55,75,60,75,30,1,False 109,Koffing,Poison,,340,40,65,95,60,45,35,1,False 110,Weezing,Poison,,490,65,90,120,85,70,60,1,False 111,Rhyhorn,Ground,Rock,345,80,85,95,30,30,25,1,False 112,Rhydon,Ground,Rock,485,105,130,120,45,45,40,1,False 113,Chansey,Normal,,450,250,5,5,35,105,50,1,False 114,Tangela,Grass,,435,65,55,115,100,40,60,1,False 115,Kangaskhan,Normal,,490,105,95,80,40,80,90,1,False 115,KangaskhanMega Kangaskhan,Normal,,590,105,125,100,60,100,100,1,False 116,Horsea,Water,,295,30,40,70,70,25,60,1,False 117,Seadra,Water,,440,55,65,95,95,45,85,1,False 118,Goldeen,Water,,320,45,67,60,35,50,63,1,False 119,Seaking,Water,,450,80,92,65,65,80,68,1,False 120,Staryu,Water,,340,30,45,55,70,55,85,1,False 121,Starmie,Water,Psychic,520,60,75,85,100,85,115,1,False 122,Mr. Mime,Psychic,Fairy,460,40,45,65,100,120,90,1,False 123,Scyther,Bug,Flying,500,70,110,80,55,80,105,1,False 124,Jynx,Ice,Psychic,455,65,50,35,115,95,95,1,False 125,Electabuzz,Electric,,490,65,83,57,95,85,105,1,False 126,Magmar,Fire,,495,65,95,57,100,85,93,1,False 127,Pinsir,Bug,,500,65,125,100,55,70,85,1,False 127,PinsirMega Pinsir,Bug,Flying,600,65,155,120,65,90,105,1,False 128,Tauros,Normal,,490,75,100,95,40,70,110,1,False 129,Magikarp,Water,,200,20,10,55,15,20,80,1,False 130,Gyarados,Water,Flying,540,95,125,79,60,100,81,1,False 130,GyaradosMega Gyarados,Water,Dark,640,95,155,109,70,130,81,1,False 131,Lapras,Water,Ice,535,130,85,80,85,95,60,1,False 132,Ditto,Normal,,288,48,48,48,48,48,48,1,False 133,Eevee,Normal,,325,55,55,50,45,65,55,1,False 134,Vaporeon,Water,,525,130,65,60,110,95,65,1,False 135,Jolteon,Electric,,525,65,65,60,110,95,130,1,False 136,Flareon,Fire,,525,65,130,60,95,110,65,1,False 137,Porygon,Normal,,395,65,60,70,85,75,40,1,False 138,Omanyte,Rock,Water,355,35,40,100,90,55,35,1,False 139,Omastar,Rock,Water,495,70,60,125,115,70,55,1,False 140,Kabuto,Rock,Water,355,30,80,90,55,45,55,1,False 141,Kabutops,Rock,Water,495,60,115,105,65,70,80,1,False 142,Aerodactyl,Rock,Flying,515,80,105,65,60,75,130,1,False 142,AerodactylMega Aerodactyl,Rock,Flying,615,80,135,85,70,95,150,1,False 143,Snorlax,Normal,,540,160,110,65,65,110,30,1,False 144,Articuno,Ice,Flying,580,90,85,100,95,125,85,1,True 145,Zapdos,Electric,Flying,580,90,90,85,125,90,100,1,True 146,Moltres,Fire,Flying,580,90,100,90,125,85,90,1,True 147,Dratini,Dragon,,300,41,64,45,50,50,50,1,False 148,Dragonair,Dragon,,420,61,84,65,70,70,70,1,False 149,Dragonite,Dragon,Flying,600,91,134,95,100,100,80,1,False 150,Mewtwo,Psychic,,680,106,110,90,154,90,130,1,True 150,MewtwoMega Mewtwo X,Psychic,Fighting,780,106,190,100,154,100,130,1,True 150,MewtwoMega Mewtwo Y,Psychic,,780,106,150,70,194,120,140,1,True 151,Mew,Psychic,,600,100,100,100,100,100,100,1,False 152,Chikorita,Grass,,318,45,49,65,49,65,45,2,False 153,Bayleef,Grass,,405,60,62,80,63,80,60,2,False 154,Meganium,Grass,,525,80,82,100,83,100,80,2,False 155,Cyndaquil,Fire,,309,39,52,43,60,50,65,2,False 156,Quilava,Fire,,405,58,64,58,80,65,80,2,False 157,Typhlosion,Fire,,534,78,84,78,109,85,100,2,False 158,Totodile,Water,,314,50,65,64,44,48,43,2,False 159,Croconaw,Water,,405,65,80,80,59,63,58,2,False 160,Feraligatr,Water,,530,85,105,100,79,83,78,2,False 161,Sentret,Normal,,215,35,46,34,35,45,20,2,False 162,Furret,Normal,,415,85,76,64,45,55,90,2,False 163,Hoothoot,Normal,Flying,262,60,30,30,36,56,50,2,False 164,Noctowl,Normal,Flying,442,100,50,50,76,96,70,2,False 165,Ledyba,Bug,Flying,265,40,20,30,40,80,55,2,False 166,Ledian,Bug,Flying,390,55,35,50,55,110,85,2,False 167,Spinarak,Bug,Poison,250,40,60,40,40,40,30,2,False 168,Ariados,Bug,Poison,390,70,90,70,60,60,40,2,False 169,Crobat,Poison,Flying,535,85,90,80,70,80,130,2,False 170,Chinchou,Water,Electric,330,75,38,38,56,56,67,2,False 171,Lanturn,Water,Electric,460,125,58,58,76,76,67,2,False 172,Pichu,Electric,,205,20,40,15,35,35,60,2,False 173,Cleffa,Fairy,,218,50,25,28,45,55,15,2,False 174,Igglybuff,Normal,Fairy,210,90,30,15,40,20,15,2,False 175,Togepi,Fairy,,245,35,20,65,40,65,20,2,False 176,Togetic,Fairy,Flying,405,55,40,85,80,105,40,2,False 177,Natu,Psychic,Flying,320,40,50,45,70,45,70,2,False 178,Xatu,Psychic,Flying,470,65,75,70,95,70,95,2,False 179,Mareep,Electric,,280,55,40,40,65,45,35,2,False 180,Flaaffy,Electric,,365,70,55,55,80,60,45,2,False 181,Ampharos,Electric,,510,90,75,85,115,90,55,2,False 181,AmpharosMega Ampharos,Electric,Dragon,610,90,95,105,165,110,45,2,False 182,Bellossom,Grass,,490,75,80,95,90,100,50,2,False 183,Marill,Water,Fairy,250,70,20,50,20,50,40,2,False 184,Azumarill,Water,Fairy,420,100,50,80,60,80,50,2,False 185,Sudowoodo,Rock,,410,70,100,115,30,65,30,2,False 186,Politoed,Water,,500,90,75,75,90,100,70,2,False 187,Hoppip,Grass,Flying,250,35,35,40,35,55,50,2,False 188,Skiploom,Grass,Flying,340,55,45,50,45,65,80,2,False 189,Jumpluff,Grass,Flying,460,75,55,70,55,95,110,2,False 190,Aipom,Normal,,360,55,70,55,40,55,85,2,False 191,Sunkern,Grass,,180,30,30,30,30,30,30,2,False 192,Sunflora,Grass,,425,75,75,55,105,85,30,2,False 193,Yanma,Bug,Flying,390,65,65,45,75,45,95,2,False 194,Wooper,Water,Ground,210,55,45,45,25,25,15,2,False 195,Quagsire,Water,Ground,430,95,85,85,65,65,35,2,False 196,Espeon,Psychic,,525,65,65,60,130,95,110,2,False 197,Umbreon,Dark,,525,95,65,110,60,130,65,2,False 198,Murkrow,Dark,Flying,405,60,85,42,85,42,91,2,False 199,Slowking,Water,Psychic,490,95,75,80,100,110,30,2,False 200,Misdreavus,Ghost,,435,60,60,60,85,85,85,2,False 201,Unown,Psychic,,336,48,72,48,72,48,48,2,False 202,Wobbuffet,Psychic,,405,190,33,58,33,58,33,2,False 203,Girafarig,Normal,Psychic,455,70,80,65,90,65,85,2,False 204,Pineco,Bug,,290,50,65,90,35,35,15,2,False 205,Forretress,Bug,Steel,465,75,90,140,60,60,40,2,False 206,Dunsparce,Normal,,415,100,70,70,65,65,45,2,False 207,Gligar,Ground,Flying,430,65,75,105,35,65,85,2,False 208,Steelix,Steel,Ground,510,75,85,200,55,65,30,2,False 208,SteelixMega Steelix,Steel,Ground,610,75,125,230,55,95,30,2,False 209,Snubbull,Fairy,,300,60,80,50,40,40,30,2,False 210,Granbull,Fairy,,450,90,120,75,60,60,45,2,False 211,Qwilfish,Water,Poison,430,65,95,75,55,55,85,2,False 212,Scizor,Bug,Steel,500,70,130,100,55,80,65,2,False 212,ScizorMega Scizor,Bug,Steel,600,70,150,140,65,100,75,2,False 213,Shuckle,Bug,Rock,505,20,10,230,10,230,5,2,False 214,Heracross,Bug,Fighting,500,80,125,75,40,95,85,2,False 214,HeracrossMega Heracross,Bug,Fighting,600,80,185,115,40,105,75,2,False 215,Sneasel,Dark,Ice,430,55,95,55,35,75,115,2,False 216,Teddiursa,Normal,,330,60,80,50,50,50,40,2,False 217,Ursaring,Normal,,500,90,130,75,75,75,55,2,False 218,Slugma,Fire,,250,40,40,40,70,40,20,2,False 219,Magcargo,Fire,Rock,410,50,50,120,80,80,30,2,False 220,Swinub,Ice,Ground,250,50,50,40,30,30,50,2,False 221,Piloswine,Ice,Ground,450,100,100,80,60,60,50,2,False 222,Corsola,Water,Rock,380,55,55,85,65,85,35,2,False 223,Remoraid,Water,,300,35,65,35,65,35,65,2,False 224,Octillery,Water,,480,75,105,75,105,75,45,2,False 225,Delibird,Ice,Flying,330,45,55,45,65,45,75,2,False 226,Mantine,Water,Flying,465,65,40,70,80,140,70,2,False 227,Skarmory,Steel,Flying,465,65,80,140,40,70,70,2,False 228,Houndour,Dark,Fire,330,45,60,30,80,50,65,2,False 229,Houndoom,Dark,Fire,500,75,90,50,110,80,95,2,False 229,HoundoomMega Houndoom,Dark,Fire,600,75,90,90,140,90,115,2,False 230,Kingdra,Water,Dragon,540,75,95,95,95,95,85,2,False 231,Phanpy,Ground,,330,90,60,60,40,40,40,2,False 232,Donphan,Ground,,500,90,120,120,60,60,50,2,False 233,Porygon2,Normal,,515,85,80,90,105,95,60,2,False 234,Stantler,Normal,,465,73,95,62,85,65,85,2,False 235,Smeargle,Normal,,250,55,20,35,20,45,75,2,False 236,Tyrogue,Fighting,,210,35,35,35,35,35,35,2,False 237,Hitmontop,Fighting,,455,50,95,95,35,110,70,2,False 238,Smoochum,Ice,Psychic,305,45,30,15,85,65,65,2,False 239,Elekid,Electric,,360,45,63,37,65,55,95,2,False 240,Magby,Fire,,365,45,75,37,70,55,83,2,False 241,Miltank,Normal,,490,95,80,105,40,70,100,2,False 242,Blissey,Normal,,540,255,10,10,75,135,55,2,False 243,Raikou,Electric,,580,90,85,75,115,100,115,2,True 244,Entei,Fire,,580,115,115,85,90,75,100,2,True 245,Suicune,Water,,580,100,75,115,90,115,85,2,True 246,Larvitar,Rock,Ground,300,50,64,50,45,50,41,2,False 247,Pupitar,Rock,Ground,410,70,84,70,65,70,51,2,False 248,Tyranitar,Rock,Dark,600,100,134,110,95,100,61,2,False 248,TyranitarMega Tyranitar,Rock,Dark,700,100,164,150,95,120,71,2,False 249,Lugia,Psychic,Flying,680,106,90,130,90,154,110,2,True 250,Ho-oh,Fire,Flying,680,106,130,90,110,154,90,2,True 251,Celebi,Psychic,Grass,600,100,100,100,100,100,100,2,False 252,Treecko,Grass,,310,40,45,35,65,55,70,3,False 253,Grovyle,Grass,,405,50,65,45,85,65,95,3,False 254,Sceptile,Grass,,530,70,85,65,105,85,120,3,False 254,SceptileMega Sceptile,Grass,Dragon,630,70,110,75,145,85,145,3,False 255,Torchic,Fire,,310,45,60,40,70,50,45,3,False 256,Combusken,Fire,Fighting,405,60,85,60,85,60,55,3,False 257,Blaziken,Fire,Fighting,530,80,120,70,110,70,80,3,False 257,BlazikenMega Blaziken,Fire,Fighting,630,80,160,80,130,80,100,3,False 258,Mudkip,Water,,310,50,70,50,50,50,40,3,False 259,Marshtomp,Water,Ground,405,70,85,70,60,70,50,3,False 260,Swampert,Water,Ground,535,100,110,90,85,90,60,3,False 260,SwampertMega Swampert,Water,Ground,635,100,150,110,95,110,70,3,False 261,Poochyena,Dark,,220,35,55,35,30,30,35,3,False 262,Mightyena,Dark,,420,70,90,70,60,60,70,3,False 263,Zigzagoon,Normal,,240,38,30,41,30,41,60,3,False 264,Linoone,Normal,,420,78,70,61,50,61,100,3,False 265,Wurmple,Bug,,195,45,45,35,20,30,20,3,False 266,Silcoon,Bug,,205,50,35,55,25,25,15,3,False 267,Beautifly,Bug,Flying,395,60,70,50,100,50,65,3,False 268,Cascoon,Bug,,205,50,35,55,25,25,15,3,False 269,Dustox,Bug,Poison,385,60,50,70,50,90,65,3,False 270,Lotad,Water,Grass,220,40,30,30,40,50,30,3,False 271,Lombre,Water,Grass,340,60,50,50,60,70,50,3,False 272,Ludicolo,Water,Grass,480,80,70,70,90,100,70,3,False 273,Seedot,Grass,,220,40,40,50,30,30,30,3,False 274,Nuzleaf,Grass,Dark,340,70,70,40,60,40,60,3,False 275,Shiftry,Grass,Dark,480,90,100,60,90,60,80,3,False 276,Taillow,Normal,Flying,270,40,55,30,30,30,85,3,False 277,Swellow,Normal,Flying,430,60,85,60,50,50,125,3,False 278,Wingull,Water,Flying,270,40,30,30,55,30,85,3,False 279,Pelipper,Water,Flying,430,60,50,100,85,70,65,3,False 280,Ralts,Psychic,Fairy,198,28,25,25,45,35,40,3,False 281,Kirlia,Psychic,Fairy,278,38,35,35,65,55,50,3,False 282,Gardevoir,Psychic,Fairy,518,68,65,65,125,115,80,3,False 282,GardevoirMega Gardevoir,Psychic,Fairy,618,68,85,65,165,135,100,3,False 283,Surskit,Bug,Water,269,40,30,32,50,52,65,3,False 284,Masquerain,Bug,Flying,414,70,60,62,80,82,60,3,False 285,Shroomish,Grass,,295,60,40,60,40,60,35,3,False 286,Breloom,Grass,Fighting,460,60,130,80,60,60,70,3,False 287,Slakoth,Normal,,280,60,60,60,35,35,30,3,False 288,Vigoroth,Normal,,440,80,80,80,55,55,90,3,False 289,Slaking,Normal,,670,150,160,100,95,65,100,3,False 290,Nincada,Bug,Ground,266,31,45,90,30,30,40,3,False 291,Ninjask,Bug,Flying,456,61,90,45,50,50,160,3,False 292,Shedinja,Bug,Ghost,236,1,90,45,30,30,40,3,False 293,Whismur,Normal,,240,64,51,23,51,23,28,3,False 294,Loudred,Normal,,360,84,71,43,71,43,48,3,False 295,Exploud,Normal,,490,104,91,63,91,73,68,3,False 296,Makuhita,Fighting,,237,72,60,30,20,30,25,3,False 297,Hariyama,Fighting,,474,144,120,60,40,60,50,3,False 298,Azurill,Normal,Fairy,190,50,20,40,20,40,20,3,False 299,Nosepass,Rock,,375,30,45,135,45,90,30,3,False 300,Skitty,Normal,,260,50,45,45,35,35,50,3,False 301,Delcatty,Normal,,380,70,65,65,55,55,70,3,False 302,Sableye,Dark,Ghost,380,50,75,75,65,65,50,3,False 302,SableyeMega Sableye,Dark,Ghost,480,50,85,125,85,115,20,3,False 303,Mawile,Steel,Fairy,380,50,85,85,55,55,50,3,False 303,MawileMega Mawile,Steel,Fairy,480,50,105,125,55,95,50,3,False 304,Aron,Steel,Rock,330,50,70,100,40,40,30,3,False 305,Lairon,Steel,Rock,430,60,90,140,50,50,40,3,False 306,Aggron,Steel,Rock,530,70,110,180,60,60,50,3,False 306,AggronMega Aggron,Steel,,630,70,140,230,60,80,50,3,False 307,Meditite,Fighting,Psychic,280,30,40,55,40,55,60,3,False 308,Medicham,Fighting,Psychic,410,60,60,75,60,75,80,3,False 308,MedichamMega Medicham,Fighting,Psychic,510,60,100,85,80,85,100,3,False 309,Electrike,Electric,,295,40,45,40,65,40,65,3,False 310,Manectric,Electric,,475,70,75,60,105,60,105,3,False 310,ManectricMega Manectric,Electric,,575,70,75,80,135,80,135,3,False 311,Plusle,Electric,,405,60,50,40,85,75,95,3,False 312,Minun,Electric,,405,60,40,50,75,85,95,3,False 313,Volbeat,Bug,,400,65,73,55,47,75,85,3,False 314,Illumise,Bug,,400,65,47,55,73,75,85,3,False 315,Roselia,Grass,Poison,400,50,60,45,100,80,65,3,False 316,Gulpin,Poison,,302,70,43,53,43,53,40,3,False 317,Swalot,Poison,,467,100,73,83,73,83,55,3,False 318,Carvanha,Water,Dark,305,45,90,20,65,20,65,3,False 319,Sharpedo,Water,Dark,460,70,120,40,95,40,95,3,False 319,SharpedoMega Sharpedo,Water,Dark,560,70,140,70,110,65,105,3,False 320,Wailmer,Water,,400,130,70,35,70,35,60,3,False 321,Wailord,Water,,500,170,90,45,90,45,60,3,False 322,Numel,Fire,Ground,305,60,60,40,65,45,35,3,False 323,Camerupt,Fire,Ground,460,70,100,70,105,75,40,3,False 323,CameruptMega Camerupt,Fire,Ground,560,70,120,100,145,105,20,3,False 324,Torkoal,Fire,,470,70,85,140,85,70,20,3,False 325,Spoink,Psychic,,330,60,25,35,70,80,60,3,False 326,Grumpig,Psychic,,470,80,45,65,90,110,80,3,False 327,Spinda,Normal,,360,60,60,60,60,60,60,3,False 328,Trapinch,Ground,,290,45,100,45,45,45,10,3,False 329,Vibrava,Ground,Dragon,340,50,70,50,50,50,70,3,False 330,Flygon,Ground,Dragon,520,80,100,80,80,80,100,3,False 331,Cacnea,Grass,,335,50,85,40,85,40,35,3,False 332,Cacturne,Grass,Dark,475,70,115,60,115,60,55,3,False 333,Swablu,Normal,Flying,310,45,40,60,40,75,50,3,False 334,Altaria,Dragon,Flying,490,75,70,90,70,105,80,3,False 334,AltariaMega Altaria,Dragon,Fairy,590,75,110,110,110,105,80,3,False 335,Zangoose,Normal,,458,73,115,60,60,60,90,3,False 336,Seviper,Poison,,458,73,100,60,100,60,65,3,False 337,Lunatone,Rock,Psychic,440,70,55,65,95,85,70,3,False 338,Solrock,Rock,Psychic,440,70,95,85,55,65,70,3,False 339,Barboach,Water,Ground,288,50,48,43,46,41,60,3,False 340,Whiscash,Water,Ground,468,110,78,73,76,71,60,3,False 341,Corphish,Water,,308,43,80,65,50,35,35,3,False 342,Crawdaunt,Water,Dark,468,63,120,85,90,55,55,3,False 343,Baltoy,Ground,Psychic,300,40,40,55,40,70,55,3,False 344,Claydol,Ground,Psychic,500,60,70,105,70,120,75,3,False 345,Lileep,Rock,Grass,355,66,41,77,61,87,23,3,False 346,Cradily,Rock,Grass,495,86,81,97,81,107,43,3,False 347,Anorith,Rock,Bug,355,45,95,50,40,50,75,3,False 348,Armaldo,Rock,Bug,495,75,125,100,70,80,45,3,False 349,Feebas,Water,,200,20,15,20,10,55,80,3,False 350,Milotic,Water,,540,95,60,79,100,125,81,3,False 351,Castform,Normal,,420,70,70,70,70,70,70,3,False 352,Kecleon,Normal,,440,60,90,70,60,120,40,3,False 353,Shuppet,Ghost,,295,44,75,35,63,33,45,3,False 354,Banette,Ghost,,455,64,115,65,83,63,65,3,False 354,BanetteMega Banette,Ghost,,555,64,165,75,93,83,75,3,False 355,Duskull,Ghost,,295,20,40,90,30,90,25,3,False 356,Dusclops,Ghost,,455,40,70,130,60,130,25,3,False 357,Tropius,Grass,Flying,460,99,68,83,72,87,51,3,False 358,Chimecho,Psychic,,425,65,50,70,95,80,65,3,False 359,Absol,Dark,,465,65,130,60,75,60,75,3,False 359,AbsolMega Absol,Dark,,565,65,150,60,115,60,115,3,False 360,Wynaut,Psychic,,260,95,23,48,23,48,23,3,False 361,Snorunt,Ice,,300,50,50,50,50,50,50,3,False 362,Glalie,Ice,,480,80,80,80,80,80,80,3,False 362,GlalieMega Glalie,Ice,,580,80,120,80,120,80,100,3,False 363,Spheal,Ice,Water,290,70,40,50,55,50,25,3,False 364,Sealeo,Ice,Water,410,90,60,70,75,70,45,3,False 365,Walrein,Ice,Water,530,110,80,90,95,90,65,3,False 366,Clamperl,Water,,345,35,64,85,74,55,32,3,False 367,Huntail,Water,,485,55,104,105,94,75,52,3,False 368,Gorebyss,Water,,485,55,84,105,114,75,52,3,False 369,Relicanth,Water,Rock,485,100,90,130,45,65,55,3,False 370,Luvdisc,Water,,330,43,30,55,40,65,97,3,False 371,Bagon,Dragon,,300,45,75,60,40,30,50,3,False 372,Shelgon,Dragon,,420,65,95,100,60,50,50,3,False 373,Salamence,Dragon,Flying,600,95,135,80,110,80,100,3,False 373,SalamenceMega Salamence,Dragon,Flying,700,95,145,130,120,90,120,3,False 374,Beldum,Steel,Psychic,300,40,55,80,35,60,30,3,False 375,Metang,Steel,Psychic,420,60,75,100,55,80,50,3,False 376,Metagross,Steel,Psychic,600,80,135,130,95,90,70,3,False 376,MetagrossMega Metagross,Steel,Psychic,700,80,145,150,105,110,110,3,False 377,Regirock,Rock,,580,80,100,200,50,100,50,3,True 378,Regice,Ice,,580,80,50,100,100,200,50,3,True 379,Registeel,Steel,,580,80,75,150,75,150,50,3,True 380,Latias,Dragon,Psychic,600,80,80,90,110,130,110,3,True 380,LatiasMega Latias,Dragon,Psychic,700,80,100,120,140,150,110,3,True 381,Latios,Dragon,Psychic,600,80,90,80,130,110,110,3,True 381,LatiosMega Latios,Dragon,Psychic,700,80,130,100,160,120,110,3,True 382,Kyogre,Water,,670,100,100,90,150,140,90,3,True 382,KyogrePrimal Kyogre,Water,,770,100,150,90,180,160,90,3,True 383,Groudon,Ground,,670,100,150,140,100,90,90,3,True 383,GroudonPrimal Groudon,Ground,Fire,770,100,180,160,150,90,90,3,True 384,Rayquaza,Dragon,Flying,680,105,150,90,150,90,95,3,True 384,RayquazaMega Rayquaza,Dragon,Flying,780,105,180,100,180,100,115,3,True 385,Jirachi,Steel,Psychic,600,100,100,100,100,100,100,3,True 386,DeoxysNormal Forme,Psychic,,600,50,150,50,150,50,150,3,True 386,DeoxysAttack Forme,Psychic,,600,50,180,20,180,20,150,3,True 386,DeoxysDefense Forme,Psychic,,600,50,70,160,70,160,90,3,True 386,DeoxysSpeed Forme,Psychic,,600,50,95,90,95,90,180,3,True 387,Turtwig,Grass,,318,55,68,64,45,55,31,4,False 388,Grotle,Grass,,405,75,89,85,55,65,36,4,False 389,Torterra,Grass,Ground,525,95,109,105,75,85,56,4,False 390,Chimchar,Fire,,309,44,58,44,58,44,61,4,False 391,Monferno,Fire,Fighting,405,64,78,52,78,52,81,4,False 392,Infernape,Fire,Fighting,534,76,104,71,104,71,108,4,False 393,Piplup,Water,,314,53,51,53,61,56,40,4,False 394,Prinplup,Water,,405,64,66,68,81,76,50,4,False 395,Empoleon,Water,Steel,530,84,86,88,111,101,60,4,False 396,Starly,Normal,Flying,245,40,55,30,30,30,60,4,False 397,Staravia,Normal,Flying,340,55,75,50,40,40,80,4,False 398,Staraptor,Normal,Flying,485,85,120,70,50,60,100,4,False 399,Bidoof,Normal,,250,59,45,40,35,40,31,4,False 400,Bibarel,Normal,Water,410,79,85,60,55,60,71,4,False 401,Kricketot,Bug,,194,37,25,41,25,41,25,4,False 402,Kricketune,Bug,,384,77,85,51,55,51,65,4,False 403,Shinx,Electric,,263,45,65,34,40,34,45,4,False 404,Luxio,Electric,,363,60,85,49,60,49,60,4,False 405,Luxray,Electric,,523,80,120,79,95,79,70,4,False 406,Budew,Grass,Poison,280,40,30,35,50,70,55,4,False 407,Roserade,Grass,Poison,515,60,70,65,125,105,90,4,False 408,Cranidos,Rock,,350,67,125,40,30,30,58,4,False 409,Rampardos,Rock,,495,97,165,60,65,50,58,4,False 410,Shieldon,Rock,Steel,350,30,42,118,42,88,30,4,False 411,Bastiodon,Rock,Steel,495,60,52,168,47,138,30,4,False 412,Burmy,Bug,,224,40,29,45,29,45,36,4,False 413,WormadamPlant Cloak,Bug,Grass,424,60,59,85,79,105,36,4,False 413,WormadamSandy Cloak,Bug,Ground,424,60,79,105,59,85,36,4,False 413,WormadamTrash Cloak,Bug,Steel,424,60,69,95,69,95,36,4,False 414,Mothim,Bug,Flying,424,70,94,50,94,50,66,4,False 415,Combee,Bug,Flying,244,30,30,42,30,42,70,4,False 416,Vespiquen,Bug,Flying,474,70,80,102,80,102,40,4,False 417,Pachirisu,Electric,,405,60,45,70,45,90,95,4,False 418,Buizel,Water,,330,55,65,35,60,30,85,4,False 419,Floatzel,Water,,495,85,105,55,85,50,115,4,False 420,Cherubi,Grass,,275,45,35,45,62,53,35,4,False 421,Cherrim,Grass,,450,70,60,70,87,78,85,4,False 422,Shellos,Water,,325,76,48,48,57,62,34,4,False 423,Gastrodon,Water,Ground,475,111,83,68,92,82,39,4,False 424,Ambipom,Normal,,482,75,100,66,60,66,115,4,False 425,Drifloon,Ghost,Flying,348,90,50,34,60,44,70,4,False 426,Drifblim,Ghost,Flying,498,150,80,44,90,54,80,4,False 427,Buneary,Normal,,350,55,66,44,44,56,85,4,False 428,Lopunny,Normal,,480,65,76,84,54,96,105,4,False 428,LopunnyMega Lopunny,Normal,Fighting,580,65,136,94,54,96,135,4,False 429,Mismagius,Ghost,,495,60,60,60,105,105,105,4,False 430,Honchkrow,Dark,Flying,505,100,125,52,105,52,71,4,False 431,Glameow,Normal,,310,49,55,42,42,37,85,4,False 432,Purugly,Normal,,452,71,82,64,64,59,112,4,False 433,Chingling,Psychic,,285,45,30,50,65,50,45,4,False 434,Stunky,Poison,Dark,329,63,63,47,41,41,74,4,False 435,Skuntank,Poison,Dark,479,103,93,67,71,61,84,4,False 436,Bronzor,Steel,Psychic,300,57,24,86,24,86,23,4,False 437,Bronzong,Steel,Psychic,500,67,89,116,79,116,33,4,False 438,Bonsly,Rock,,290,50,80,95,10,45,10,4,False 439,Mime Jr.,Psychic,Fairy,310,20,25,45,70,90,60,4,False 440,Happiny,Normal,,220,100,5,5,15,65,30,4,False 441,Chatot,Normal,Flying,411,76,65,45,92,42,91,4,False 442,Spiritomb,Ghost,Dark,485,50,92,108,92,108,35,4,False 443,Gible,Dragon,Ground,300,58,70,45,40,45,42,4,False 444,Gabite,Dragon,Ground,410,68,90,65,50,55,82,4,False 445,Garchomp,Dragon,Ground,600,108,130,95,80,85,102,4,False 445,GarchompMega Garchomp,Dragon,Ground,700,108,170,115,120,95,92,4,False 446,Munchlax,Normal,,390,135,85,40,40,85,5,4,False 447,Riolu,Fighting,,285,40,70,40,35,40,60,4,False 448,Lucario,Fighting,Steel,525,70,110,70,115,70,90,4,False 448,LucarioMega Lucario,Fighting,Steel,625,70,145,88,140,70,112,4,False 449,Hippopotas,Ground,,330,68,72,78,38,42,32,4,False 450,Hippowdon,Ground,,525,108,112,118,68,72,47,4,False 451,Skorupi,Poison,Bug,330,40,50,90,30,55,65,4,False 452,Drapion,Poison,Dark,500,70,90,110,60,75,95,4,False 453,Croagunk,Poison,Fighting,300,48,61,40,61,40,50,4,False 454,Toxicroak,Poison,Fighting,490,83,106,65,86,65,85,4,False 455,Carnivine,Grass,,454,74,100,72,90,72,46,4,False 456,Finneon,Water,,330,49,49,56,49,61,66,4,False 457,Lumineon,Water,,460,69,69,76,69,86,91,4,False 458,Mantyke,Water,Flying,345,45,20,50,60,120,50,4,False 459,Snover,Grass,Ice,334,60,62,50,62,60,40,4,False 460,Abomasnow,Grass,Ice,494,90,92,75,92,85,60,4,False 460,AbomasnowMega Abomasnow,Grass,Ice,594,90,132,105,132,105,30,4,False 461,Weavile,Dark,Ice,510,70,120,65,45,85,125,4,False 462,Magnezone,Electric,Steel,535,70,70,115,130,90,60,4,False 463,Lickilicky,Normal,,515,110,85,95,80,95,50,4,False 464,Rhyperior,Ground,Rock,535,115,140,130,55,55,40,4,False 465,Tangrowth,Grass,,535,100,100,125,110,50,50,4,False 466,Electivire,Electric,,540,75,123,67,95,85,95,4,False 467,Magmortar,Fire,,540,75,95,67,125,95,83,4,False 468,Togekiss,Fairy,Flying,545,85,50,95,120,115,80,4,False 469,Yanmega,Bug,Flying,515,86,76,86,116,56,95,4,False 470,Leafeon,Grass,,525,65,110,130,60,65,95,4,False 471,Glaceon,Ice,,525,65,60,110,130,95,65,4,False 472,Gliscor,Ground,Flying,510,75,95,125,45,75,95,4,False 473,Mamoswine,Ice,Ground,530,110,130,80,70,60,80,4,False 474,Porygon-Z,Normal,,535,85,80,70,135,75,90,4,False 475,Gallade,Psychic,Fighting,518,68,125,65,65,115,80,4,False 475,GalladeMega Gallade,Psychic,Fighting,618,68,165,95,65,115,110,4,False 476,Probopass,Rock,Steel,525,60,55,145,75,150,40,4,False 477,Dusknoir,Ghost,,525,45,100,135,65,135,45,4,False 478,Froslass,Ice,Ghost,480,70,80,70,80,70,110,4,False 479,Rotom,Electric,Ghost,440,50,50,77,95,77,91,4,False 479,RotomHeat Rotom,Electric,Fire,520,50,65,107,105,107,86,4,False 479,RotomWash Rotom,Electric,Water,520,50,65,107,105,107,86,4,False 479,RotomFrost Rotom,Electric,Ice,520,50,65,107,105,107,86,4,False 479,RotomFan Rotom,Electric,Flying,520,50,65,107,105,107,86,4,False 479,RotomMow Rotom,Electric,Grass,520,50,65,107,105,107,86,4,False 480,Uxie,Psychic,,580,75,75,130,75,130,95,4,True 481,Mesprit,Psychic,,580,80,105,105,105,105,80,4,True 482,Azelf,Psychic,,580,75,125,70,125,70,115,4,True 483,Dialga,Steel,Dragon,680,100,120,120,150,100,90,4,True 484,Palkia,Water,Dragon,680,90,120,100,150,120,100,4,True 485,Heatran,Fire,Steel,600,91,90,106,130,106,77,4,True 486,Regigigas,Normal,,670,110,160,110,80,110,100,4,True 487,GiratinaAltered Forme,Ghost,Dragon,680,150,100,120,100,120,90,4,True 487,GiratinaOrigin Forme,Ghost,Dragon,680,150,120,100,120,100,90,4,True 488,Cresselia,Psychic,,600,120,70,120,75,130,85,4,False 489,Phione,Water,,480,80,80,80,80,80,80,4,False 490,Manaphy,Water,,600,100,100,100,100,100,100,4,False 491,Darkrai,Dark,,600,70,90,90,135,90,125,4,True 492,ShayminLand Forme,Grass,,600,100,100,100,100,100,100,4,True 492,ShayminSky Forme,Grass,Flying,600,100,103,75,120,75,127,4,True 493,Arceus,Normal,,720,120,120,120,120,120,120,4,True 494,Victini,Psychic,Fire,600,100,100,100,100,100,100,5,True 495,Snivy,Grass,,308,45,45,55,45,55,63,5,False 496,Servine,Grass,,413,60,60,75,60,75,83,5,False 497,Serperior,Grass,,528,75,75,95,75,95,113,5,False 498,Tepig,Fire,,308,65,63,45,45,45,45,5,False 499,Pignite,Fire,Fighting,418,90,93,55,70,55,55,5,False 500,Emboar,Fire,Fighting,528,110,123,65,100,65,65,5,False 501,Oshawott,Water,,308,55,55,45,63,45,45,5,False 502,Dewott,Water,,413,75,75,60,83,60,60,5,False 503,Samurott,Water,,528,95,100,85,108,70,70,5,False 504,Patrat,Normal,,255,45,55,39,35,39,42,5,False 505,Watchog,Normal,,420,60,85,69,60,69,77,5,False 506,Lillipup,Normal,,275,45,60,45,25,45,55,5,False 507,Herdier,Normal,,370,65,80,65,35,65,60,5,False 508,Stoutland,Normal,,500,85,110,90,45,90,80,5,False 509,Purrloin,Dark,,281,41,50,37,50,37,66,5,False 510,Liepard,Dark,,446,64,88,50,88,50,106,5,False 511,Pansage,Grass,,316,50,53,48,53,48,64,5,False 512,Simisage,Grass,,498,75,98,63,98,63,101,5,False 513,Pansear,Fire,,316,50,53,48,53,48,64,5,False 514,Simisear,Fire,,498,75,98,63,98,63,101,5,False 515,Panpour,Water,,316,50,53,48,53,48,64,5,False 516,Simipour,Water,,498,75,98,63,98,63,101,5,False 517,Munna,Psychic,,292,76,25,45,67,55,24,5,False 518,Musharna,Psychic,,487,116,55,85,107,95,29,5,False 519,Pidove,Normal,Flying,264,50,55,50,36,30,43,5,False 520,Tranquill,Normal,Flying,358,62,77,62,50,42,65,5,False 521,Unfezant,Normal,Flying,488,80,115,80,65,55,93,5,False 522,Blitzle,Electric,,295,45,60,32,50,32,76,5,False 523,Zebstrika,Electric,,497,75,100,63,80,63,116,5,False 524,Roggenrola,Rock,,280,55,75,85,25,25,15,5,False 525,Boldore,Rock,,390,70,105,105,50,40,20,5,False 526,Gigalith,Rock,,515,85,135,130,60,80,25,5,False 527,Woobat,Psychic,Flying,313,55,45,43,55,43,72,5,False 528,Swoobat,Psychic,Flying,425,67,57,55,77,55,114,5,False 529,Drilbur,Ground,,328,60,85,40,30,45,68,5,False 530,Excadrill,Ground,Steel,508,110,135,60,50,65,88,5,False 531,Audino,Normal,,445,103,60,86,60,86,50,5,False 531,AudinoMega Audino,Normal,Fairy,545,103,60,126,80,126,50,5,False 532,Timburr,Fighting,,305,75,80,55,25,35,35,5,False 533,Gurdurr,Fighting,,405,85,105,85,40,50,40,5,False 534,Conkeldurr,Fighting,,505,105,140,95,55,65,45,5,False 535,Tympole,Water,,294,50,50,40,50,40,64,5,False 536,Palpitoad,Water,Ground,384,75,65,55,65,55,69,5,False 537,Seismitoad,Water,Ground,509,105,95,75,85,75,74,5,False 538,Throh,Fighting,,465,120,100,85,30,85,45,5,False 539,Sawk,Fighting,,465,75,125,75,30,75,85,5,False 540,Sewaddle,Bug,Grass,310,45,53,70,40,60,42,5,False 541,Swadloon,Bug,Grass,380,55,63,90,50,80,42,5,False 542,Leavanny,Bug,Grass,500,75,103,80,70,80,92,5,False 543,Venipede,Bug,Poison,260,30,45,59,30,39,57,5,False 544,Whirlipede,Bug,Poison,360,40,55,99,40,79,47,5,False 545,Scolipede,Bug,Poison,485,60,100,89,55,69,112,5,False 546,Cottonee,Grass,Fairy,280,40,27,60,37,50,66,5,False 547,Whimsicott,Grass,Fairy,480,60,67,85,77,75,116,5,False 548,Petilil,Grass,,280,45,35,50,70,50,30,5,False 549,Lilligant,Grass,,480,70,60,75,110,75,90,5,False 550,Basculin,Water,,460,70,92,65,80,55,98,5,False 551,Sandile,Ground,Dark,292,50,72,35,35,35,65,5,False 552,Krokorok,Ground,Dark,351,60,82,45,45,45,74,5,False 553,Krookodile,Ground,Dark,519,95,117,80,65,70,92,5,False 554,Darumaka,Fire,,315,70,90,45,15,45,50,5,False 555,DarmanitanStandard Mode,Fire,,480,105,140,55,30,55,95,5,False 555,DarmanitanZen Mode,Fire,Psychic,540,105,30,105,140,105,55,5,False 556,Maractus,Grass,,461,75,86,67,106,67,60,5,False 557,Dwebble,Bug,Rock,325,50,65,85,35,35,55,5,False 558,Crustle,Bug,Rock,475,70,95,125,65,75,45,5,False 559,Scraggy,Dark,Fighting,348,50,75,70,35,70,48,5,False 560,Scrafty,Dark,Fighting,488,65,90,115,45,115,58,5,False 561,Sigilyph,Psychic,Flying,490,72,58,80,103,80,97,5,False 562,Yamask,Ghost,,303,38,30,85,55,65,30,5,False 563,Cofagrigus,Ghost,,483,58,50,145,95,105,30,5,False 564,Tirtouga,Water,Rock,355,54,78,103,53,45,22,5,False 565,Carracosta,Water,Rock,495,74,108,133,83,65,32,5,False 566,Archen,Rock,Flying,401,55,112,45,74,45,70,5,False 567,Archeops,Rock,Flying,567,75,140,65,112,65,110,5,False 568,Trubbish,Poison,,329,50,50,62,40,62,65,5,False 569,Garbodor,Poison,,474,80,95,82,60,82,75,5,False 570,Zorua,Dark,,330,40,65,40,80,40,65,5,False 571,Zoroark,Dark,,510,60,105,60,120,60,105,5,False 572,Minccino,Normal,,300,55,50,40,40,40,75,5,False 573,Cinccino,Normal,,470,75,95,60,65,60,115,5,False 574,Gothita,Psychic,,290,45,30,50,55,65,45,5,False 575,Gothorita,Psychic,,390,60,45,70,75,85,55,5,False 576,Gothitelle,Psychic,,490,70,55,95,95,110,65,5,False 577,Solosis,Psychic,,290,45,30,40,105,50,20,5,False 578,Duosion,Psychic,,370,65,40,50,125,60,30,5,False 579,Reuniclus,Psychic,,490,110,65,75,125,85,30,5,False 580,Ducklett,Water,Flying,305,62,44,50,44,50,55,5,False 581,Swanna,Water,Flying,473,75,87,63,87,63,98,5,False 582,Vanillite,Ice,,305,36,50,50,65,60,44,5,False 583,Vanillish,Ice,,395,51,65,65,80,75,59,5,False 584,Vanilluxe,Ice,,535,71,95,85,110,95,79,5,False 585,Deerling,Normal,Grass,335,60,60,50,40,50,75,5,False 586,Sawsbuck,Normal,Grass,475,80,100,70,60,70,95,5,False 587,Emolga,Electric,Flying,428,55,75,60,75,60,103,5,False 588,Karrablast,Bug,,315,50,75,45,40,45,60,5,False 589,Escavalier,Bug,Steel,495,70,135,105,60,105,20,5,False 590,Foongus,Grass,Poison,294,69,55,45,55,55,15,5,False 591,Amoonguss,Grass,Poison,464,114,85,70,85,80,30,5,False 592,Frillish,Water,Ghost,335,55,40,50,65,85,40,5,False 593,Jellicent,Water,Ghost,480,100,60,70,85,105,60,5,False 594,Alomomola,Water,,470,165,75,80,40,45,65,5,False 595,Joltik,Bug,Electric,319,50,47,50,57,50,65,5,False 596,Galvantula,Bug,Electric,472,70,77,60,97,60,108,5,False 597,Ferroseed,Grass,Steel,305,44,50,91,24,86,10,5,False 598,Ferrothorn,Grass,Steel,489,74,94,131,54,116,20,5,False 599,Klink,Steel,,300,40,55,70,45,60,30,5,False 600,Klang,Steel,,440,60,80,95,70,85,50,5,False 601,Klinklang,Steel,,520,60,100,115,70,85,90,5,False 602,Tynamo,Electric,,275,35,55,40,45,40,60,5,False 603,Eelektrik,Electric,,405,65,85,70,75,70,40,5,False 604,Eelektross,Electric,,515,85,115,80,105,80,50,5,False 605,Elgyem,Psychic,,335,55,55,55,85,55,30,5,False 606,Beheeyem,Psychic,,485,75,75,75,125,95,40,5,False 607,Litwick,Ghost,Fire,275,50,30,55,65,55,20,5,False 608,Lampent,Ghost,Fire,370,60,40,60,95,60,55,5,False 609,Chandelure,Ghost,Fire,520,60,55,90,145,90,80,5,False 610,Axew,Dragon,,320,46,87,60,30,40,57,5,False 611,Fraxure,Dragon,,410,66,117,70,40,50,67,5,False 612,Haxorus,Dragon,,540,76,147,90,60,70,97,5,False 613,Cubchoo,Ice,,305,55,70,40,60,40,40,5,False 614,Beartic,Ice,,485,95,110,80,70,80,50,5,False 615,Cryogonal,Ice,,485,70,50,30,95,135,105,5,False 616,Shelmet,Bug,,305,50,40,85,40,65,25,5,False 617,Accelgor,Bug,,495,80,70,40,100,60,145,5,False 618,Stunfisk,Ground,Electric,471,109,66,84,81,99,32,5,False 619,Mienfoo,Fighting,,350,45,85,50,55,50,65,5,False 620,Mienshao,Fighting,,510,65,125,60,95,60,105,5,False 621,Druddigon,Dragon,,485,77,120,90,60,90,48,5,False 622,Golett,Ground,Ghost,303,59,74,50,35,50,35,5,False 623,Golurk,Ground,Ghost,483,89,124,80,55,80,55,5,False 624,Pawniard,Dark,Steel,340,45,85,70,40,40,60,5,False 625,Bisharp,Dark,Steel,490,65,125,100,60,70,70,5,False 626,Bouffalant,Normal,,490,95,110,95,40,95,55,5,False 627,Rufflet,Normal,Flying,350,70,83,50,37,50,60,5,False 628,Braviary,Normal,Flying,510,100,123,75,57,75,80,5,False 629,Vullaby,Dark,Flying,370,70,55,75,45,65,60,5,False 630,Mandibuzz,Dark,Flying,510,110,65,105,55,95,80,5,False 631,Heatmor,Fire,,484,85,97,66,105,66,65,5,False 632,Durant,Bug,Steel,484,58,109,112,48,48,109,5,False 633,Deino,Dark,Dragon,300,52,65,50,45,50,38,5,False 634,Zweilous,Dark,Dragon,420,72,85,70,65,70,58,5,False 635,Hydreigon,Dark,Dragon,600,92,105,90,125,90,98,5,False 636,Larvesta,Bug,Fire,360,55,85,55,50,55,60,5,False 637,Volcarona,Bug,Fire,550,85,60,65,135,105,100,5,False 638,Cobalion,Steel,Fighting,580,91,90,129,90,72,108,5,True 639,Terrakion,Rock,Fighting,580,91,129,90,72,90,108,5,True 640,Virizion,Grass,Fighting,580,91,90,72,90,129,108,5,True 641,TornadusIncarnate Forme,Flying,,580,79,115,70,125,80,111,5,True 641,TornadusTherian Forme,Flying,,580,79,100,80,110,90,121,5,True 642,ThundurusIncarnate Forme,Electric,Flying,580,79,115,70,125,80,111,5,True 642,ThundurusTherian Forme,Electric,Flying,580,79,105,70,145,80,101,5,True 643,Reshiram,Dragon,Fire,680,100,120,100,150,120,90,5,True 644,Zekrom,Dragon,Electric,680,100,150,120,120,100,90,5,True 645,LandorusIncarnate Forme,Ground,Flying,600,89,125,90,115,80,101,5,True 645,LandorusTherian Forme,Ground,Flying,600,89,145,90,105,80,91,5,True 646,Kyurem,Dragon,Ice,660,125,130,90,130,90,95,5,True 646,KyuremBlack Kyurem,Dragon,Ice,700,125,170,100,120,90,95,5,True 646,KyuremWhite Kyurem,Dragon,Ice,700,125,120,90,170,100,95,5,True 647,KeldeoOrdinary Forme,Water,Fighting,580,91,72,90,129,90,108,5,False 647,KeldeoResolute Forme,Water,Fighting,580,91,72,90,129,90,108,5,False 648,MeloettaAria Forme,Normal,Psychic,600,100,77,77,128,128,90,5,False 648,MeloettaPirouette Forme,Normal,Fighting,600,100,128,90,77,77,128,5,False 649,Genesect,Bug,Steel,600,71,120,95,120,95,99,5,False 650,Chespin,Grass,,313,56,61,65,48,45,38,6,False 651,Quilladin,Grass,,405,61,78,95,56,58,57,6,False 652,Chesnaught,Grass,Fighting,530,88,107,122,74,75,64,6,False 653,Fennekin,Fire,,307,40,45,40,62,60,60,6,False 654,Braixen,Fire,,409,59,59,58,90,70,73,6,False 655,Delphox,Fire,Psychic,534,75,69,72,114,100,104,6,False 656,Froakie,Water,,314,41,56,40,62,44,71,6,False 657,Frogadier,Water,,405,54,63,52,83,56,97,6,False 658,Greninja,Water,Dark,530,72,95,67,103,71,122,6,False 659,Bunnelby,Normal,,237,38,36,38,32,36,57,6,False 660,Diggersby,Normal,Ground,423,85,56,77,50,77,78,6,False 661,Fletchling,Normal,Flying,278,45,50,43,40,38,62,6,False 662,Fletchinder,Fire,Flying,382,62,73,55,56,52,84,6,False 663,Talonflame,Fire,Flying,499,78,81,71,74,69,126,6,False 664,Scatterbug,Bug,,200,38,35,40,27,25,35,6,False 665,Spewpa,Bug,,213,45,22,60,27,30,29,6,False 666,Vivillon,Bug,Flying,411,80,52,50,90,50,89,6,False 667,Litleo,Fire,Normal,369,62,50,58,73,54,72,6,False 668,Pyroar,Fire,Normal,507,86,68,72,109,66,106,6,False 669,Flabébé,Fairy,,303,44,38,39,61,79,42,6,False 670,Floette,Fairy,,371,54,45,47,75,98,52,6,False 671,Florges,Fairy,,552,78,65,68,112,154,75,6,False 672,Skiddo,Grass,,350,66,65,48,62,57,52,6,False 673,Gogoat,Grass,,531,123,100,62,97,81,68,6,False 674,Pancham,Fighting,,348,67,82,62,46,48,43,6,False 675,Pangoro,Fighting,Dark,495,95,124,78,69,71,58,6,False 676,Furfrou,Normal,,472,75,80,60,65,90,102,6,False 677,Espurr,Psychic,,355,62,48,54,63,60,68,6,False 678,MeowsticMale,Psychic,,466,74,48,76,83,81,104,6,False 678,MeowsticFemale,Psychic,,466,74,48,76,83,81,104,6,False 679,Honedge,Steel,Ghost,325,45,80,100,35,37,28,6,False 680,Doublade,Steel,Ghost,448,59,110,150,45,49,35,6,False 681,AegislashBlade Forme,Steel,Ghost,520,60,150,50,150,50,60,6,False 681,AegislashShield Forme,Steel,Ghost,520,60,50,150,50,150,60,6,False 682,Spritzee,Fairy,,341,78,52,60,63,65,23,6,False 683,Aromatisse,Fairy,,462,101,72,72,99,89,29,6,False 684,Swirlix,Fairy,,341,62,48,66,59,57,49,6,False 685,Slurpuff,Fairy,,480,82,80,86,85,75,72,6,False 686,Inkay,Dark,Psychic,288,53,54,53,37,46,45,6,False 687,Malamar,Dark,Psychic,482,86,92,88,68,75,73,6,False 688,Binacle,Rock,Water,306,42,52,67,39,56,50,6,False 689,Barbaracle,Rock,Water,500,72,105,115,54,86,68,6,False 690,Skrelp,Poison,Water,320,50,60,60,60,60,30,6,False 691,Dragalge,Poison,Dragon,494,65,75,90,97,123,44,6,False 692,Clauncher,Water,,330,50,53,62,58,63,44,6,False 693,Clawitzer,Water,,500,71,73,88,120,89,59,6,False 694,Helioptile,Electric,Normal,289,44,38,33,61,43,70,6,False 695,Heliolisk,Electric,Normal,481,62,55,52,109,94,109,6,False 696,Tyrunt,Rock,Dragon,362,58,89,77,45,45,48,6,False 697,Tyrantrum,Rock,Dragon,521,82,121,119,69,59,71,6,False 698,Amaura,Rock,Ice,362,77,59,50,67,63,46,6,False 699,Aurorus,Rock,Ice,521,123,77,72,99,92,58,6,False 700,Sylveon,Fairy,,525,95,65,65,110,130,60,6,False 701,Hawlucha,Fighting,Flying,500,78,92,75,74,63,118,6,False 702,Dedenne,Electric,Fairy,431,67,58,57,81,67,101,6,False 703,Carbink,Rock,Fairy,500,50,50,150,50,150,50,6,False 704,Goomy,Dragon,,300,45,50,35,55,75,40,6,False 705,Sliggoo,Dragon,,452,68,75,53,83,113,60,6,False 706,Goodra,Dragon,,600,90,100,70,110,150,80,6,False 707,Klefki,Steel,Fairy,470,57,80,91,80,87,75,6,False 708,Phantump,Ghost,Grass,309,43,70,48,50,60,38,6,False 709,Trevenant,Ghost,Grass,474,85,110,76,65,82,56,6,False 710,PumpkabooAverage Size,Ghost,Grass,335,49,66,70,44,55,51,6,False 710,PumpkabooSmall Size,Ghost,Grass,335,44,66,70,44,55,56,6,False 710,PumpkabooLarge Size,Ghost,Grass,335,54,66,70,44,55,46,6,False 710,PumpkabooSuper Size,Ghost,Grass,335,59,66,70,44,55,41,6,False 711,GourgeistAverage Size,Ghost,Grass,494,65,90,122,58,75,84,6,False 711,GourgeistSmall Size,Ghost,Grass,494,55,85,122,58,75,99,6,False 711,GourgeistLarge Size,Ghost,Grass,494,75,95,122,58,75,69,6,False 711,GourgeistSuper Size,Ghost,Grass,494,85,100,122,58,75,54,6,False 712,Bergmite,Ice,,304,55,69,85,32,35,28,6,False 713,Avalugg,Ice,,514,95,117,184,44,46,28,6,False 714,Noibat,Flying,Dragon,245,40,30,35,45,40,55,6,False 715,Noivern,Flying,Dragon,535,85,70,80,97,80,123,6,False 716,Xerneas,Fairy,,680,126,131,95,131,98,99,6,True 717,Yveltal,Dark,Flying,680,126,131,95,131,98,99,6,True 718,Zygarde50% Forme,Dragon,Ground,600,108,100,121,81,95,95,6,True 719,Diancie,Rock,Fairy,600,50,100,150,100,150,50,6,True 719,DiancieMega Diancie,Rock,Fairy,700,50,160,110,160,110,110,6,True 720,HoopaHoopa Confined,Psychic,Ghost,600,80,110,60,150,130,70,6,True 720,HoopaHoopa Unbound,Psychic,Dark,680,80,160,60,170,130,80,6,True 721,Volcanion,Fire,Water,600,80,110,120,130,90,70,6,True ================================================ FILE: docs/third-party/data-science/files/matplotlib/pokemon_speed.py ================================================ import matplotlib.pyplot as plt import pandas as pd df = pd.read_csv('pypi/datascience/files/pokemon.csv') fig, ax = plt.subplots(figsize=(6, 4), dpi=100) bins = range(0, 161, 10) ax.hist(df['Speed'], rwidth=0.8, color='tomato', bins=bins, zorder=2) ax.yaxis.grid(color='mistyrose') ================================================ FILE: docs/third-party/data-science/files/matplotlib/soften_wave.py ================================================ import matplotlib.pyplot as plt import numpy as np x = np.linspace(0, 2 * np.pi, 1000) alpha = 0.7 beta = 10 y = np.e ** (-alpha * x) * np.sin(beta * x) fig, ax = plt.subplots(figsize=(8, 4), dpi=100) ax.plot(x, y, color='olivedrab', linewidth=3) ax.grid(color='lightgray') fig.tight_layout() ================================================ FILE: docs/third-party/data-science/files/matplotlib/tiobe-2020-clean.csv ================================================ Language,Ratings C,17.38 Java,11.96 Python,11.72 C++,7.56 C#,3.95 Visual Basic,3.84 JavaScript,2.2 PHP,1.99 R,1.9 Groovy,1.84 Assembly language,1.64 SQL,1.61 Swift,1.43 Go,1.41 Ruby,1.3 MATLAB,1.15 Perl,1.02 Objective-C,1.0 Delphi/Object Pascal,0.79 Classic Visual Basic,0.79 ================================================ FILE: docs/third-party/data-science/files/matplotlib/tiobe_2020.py ================================================ import matplotlib.pyplot as plt import numpy as np import pandas as pd df = pd.read_csv('pypi/datascience/files/tiobe-2020-clean.csv', index_col='Language') fig, ax = plt.subplots(figsize=(6, 4), dpi=100) bar_width = 0.30 x = np.arange(df.index.size) barplot = ax.bar(x, df['Ratings'], zorder=2, color='turquoise', alpha=0.7) ax.set_xticks(x) ax.set_xticklabels(df.index, rotation=90) ax.yaxis.grid(color='lightgray') ax.set_ylabel('Rating TIOBE (%)') ax.spines['right'].set_visible(False) ax.spines['top'].set_visible(False) fig.tight_layout() ================================================ FILE: docs/third-party/data-science/files/numpy/diag.py ================================================ import numpy as np np.diag(range(50)) ================================================ FILE: docs/third-party/data-science/files/numpy/diag_transform.py ================================================ import numpy as np matrix = np.random.randint(0, 100, size=(10, 10)) matrix[np.diag_indices(matrix.shape[0])] = 50 matrix[matrix > 50] = 100 matrix[matrix < 50] = 0 print(matrix) ================================================ FILE: docs/third-party/data-science/files/numpy/euler_product.py ================================================ import math import numpy as np theta = 2 * math.pi k = 20 values = np.arange(1, k, dtype='float64') z = np.cos(theta / np.power(2, values)) lhs = np.sin(theta) / theta rhs = np.prod(z) print(math.isclose(lhs, rhs)) ================================================ FILE: docs/third-party/data-science/files/numpy/flip_powers.py ================================================ import numpy as np A = np.array([[4, 5, -1], [-3, -4, 1], [-3, -4, 0]]) for power in range(2, 129): print(np.linalg.matrix_power(A, power)) ================================================ FILE: docs/third-party/data-science/files/numpy/identity_equation.py ================================================ import numpy as np matrix = np.array([[1, 2], [3, 5]]) identity = np.identity(2) zeros = np.zeros((2, 2)) result = np.linalg.matrix_power(matrix, 2) - 6 * matrix - identity np.array_equal(result, zeros) ================================================ FILE: docs/third-party/data-science/files/numpy/lineq.py ================================================ import numpy as np # AX = B A = np.array([[1, 4, -1], [5, -2, 1], [2, -2, 1]]) B = np.array([8, 4, 1]).reshape(3, -1) np.linalg.solve(A, B) ================================================ FILE: docs/third-party/data-science/files/numpy/np_matrix.py ================================================ import numpy as np array1 = np.array([88, 23, 39, 41]) array2 = np.array([[76.4, 21.7, 38.4], [41.2, 52.8, 68.9]]) array3 = np.array([[12], [4], [9], [8]]) ================================================ FILE: docs/third-party/data-science/files/numpy/np_odds.py ================================================ import numpy as np values = np.arange(10, 22).reshape(3, 4) print(values[values % 2 != 0]) ================================================ FILE: docs/third-party/data-science/files/numpy/np_random.py ================================================ import numpy as np float_values = np.linspace(1, 10, 100).reshape(20, 5) normal_dist = np.random.normal(1, 2, size=128) quiniela = np.random.choice(list('1X2'), size=15, p=[0.5, 0.3, 0.2]) ================================================ FILE: docs/third-party/data-science/files/numpy/np_transform.py ================================================ import numpy as np matrix = np.array([[17, 12, 31], [49, 11, 51], [21, 31, 62], [63, 75, 22]]) print('Matrix:') print(matrix) print() last_row = matrix[-1] matrix2 = np.delete(matrix, -1, axis=0) last_row_as_column = last_row.reshape(3, -1) matrix2 = np.append(matrix2, last_row_as_column, axis=1) print('Matrix 2:') print(matrix2) print() matrix3 = matrix2 matrix3[1] = matrix3[1, 0] matrix3[:, -1] = matrix3[0, -1] print('Matrix 3:') print(matrix3) ================================================ FILE: docs/third-party/data-science/files/numpy/transpose.py ================================================ import numpy as np A = np.array([[-1, 2, 1], [3, 0, 1]]) B = np.array([[4, 0, -1], [-2, 1, 0]]) print('(A + B)^T = A^T + B^T??', np.array_equal((A + B).T, A.T + B.T)) print('(3A)^T = 3A^T??', np.array_equal((3 * A).T, 3 * A.T)) ================================================ FILE: docs/third-party/data-science/files/numpy/vectorize.py ================================================ import numpy as np vect_avg = np.vectorize(lambda a, b: (a + b) / 2) A = np.random.uniform(0, 1000, size=(20, 20)) B = np.random.uniform(0, 1000, size=(20, 20)) %timeit vect_avg(A, B) %timeit (A + B) / 2 ================================================ FILE: docs/third-party/data-science/files/pandas/above_mean.py ================================================ import pandas as pd democan = pd.read_csv('democan.csv', index_col='Island') mean_population = democan['Population'].mean() mask = democan['Population'] > mean_population islands = democan[mask].index.to_list() ================================================ FILE: docs/third-party/data-science/files/pandas/comunidades.py ================================================ import pandas as pd URL = 'https://es.wikipedia.org/wiki/Comunidad_aut%C3%B3noma' tables = pd.read_html(URL) df_area = tables[3] df_area = df_area.iloc[:-1, 1:3] df_area.columns = ('Comunidad', 'Superficie') df_area['Superficie'] = ( df_area['Superficie'].str.replace(r'\s+', '', regex=True).astype('int') ) df_population = tables[4] df_population = df_population.iloc[:-1, 1:3] df_population.columns = ('Comunidad', 'Población') df_population['Población'] = ( df_population['Población'].str.replace(r'\s+', '', regex=True).astype('int') ) df = pd.merge(df_area, df_population) df['Densidad'] = df['Población'] / df['Superficie'] print(df.sort_values('Densidad', ascending=False)) ================================================ FILE: docs/third-party/data-science/files/pandas/create_dataframe.py ================================================ import pandas as pd islands = [ 'El Hierro', 'Fuerteventura', 'Gran Canaria', 'La Gomera', 'Lanzarote', 'La Palma', 'Tenerife', ] populations = [11423, 120021, 853262, 21798, 156112, 83439, 931646] areas = [268.71, 1665.74, 1560.10, 369.76, 888.07, 708.32, 2034.38] provinces = ['TF', 'LP', 'LP', 'TF', 'LP', 'TF', 'TF'] data = dict(Island=islands, Population=populations, Area=areas, Province=provinces) democan = pd.DataFrame(data) ================================================ FILE: docs/third-party/data-science/files/pandas/create_series.py ================================================ import string import pandas as pd pd.Series(range(1, 27), list(string.ascii_uppercase)) ================================================ FILE: docs/third-party/data-science/files/pandas/democan.csv ================================================ Island,Population,Area,Province El Hierro,11423,268.71,TF Fuerteventura,120021,1665.74,LP Gran Canaria,853262,1560.10,LP La Gomera,21798,369.76,TF Lanzarote,156112,888.07,LP La Palma,83439,708.32,TF Tenerife,931646,2034.38,TF ================================================ FILE: docs/third-party/data-science/files/pandas/df_access.py ================================================ import pandas as pd democan = pd.read_csv('democan.csv', index_col='Island') ds1 = democan.loc[['El Hierro', 'La Gomera']] ds2 = democan.loc[:, 'Province'] ds3 = democan.iloc[::2, 1] ds4 = democan[democan['Area'] > 1000] ================================================ FILE: docs/third-party/data-science/files/pandas/df_oasis.py ================================================ import pandas as pd df = pd.read_csv('oasis.csv') df['album_release_date'] = pd.to_datetime(df['album_release_date']) album_names = df.query('2000 <= album_release_date <= 2005')['album_name'] print(album_names.unique()) ================================================ FILE: docs/third-party/data-science/files/pandas/grants.py ================================================ import pandas as pd democan = pd.read_csv('democan.csv', index_col='Island') def handle_grants(row): area, population = row['Area'], row['Population'] if area < 1000: grant = 0.3 * population else: grant = 0.2 * population return grant democan['Grant'] = democan.apply(handle_grants, axis=1) ================================================ FILE: docs/third-party/data-science/files/pandas/index_dataframe.py ================================================ import pandas as pd # ============================================================================== # Creación del DataFrame # ============================================================================== islands = [ 'El Hierro', 'Fuerteventura', 'Gran Canaria', 'La Gomera', 'Lanzarote', 'La Palma', 'Tenerife', ] populations = [11423, 120021, 853262, 21798, 156112, 83439, 931646] areas = [268.71, 1665.74, 1560.10, 369.76, 888.07, 708.32, 2034.38] provinces = ['TF', 'LP', 'LP', 'TF', 'LP', 'TF', 'TF'] data = dict(Island=islands, Population=populations, Area=areas, Province=provinces) democan = pd.DataFrame(data) # ============================================================================== # Ejercicio # ============================================================================== democan.set_index('Island') ================================================ FILE: docs/third-party/data-science/files/pandas/load_dataframe.py ================================================ import pandas as pd democan = pd.read_csv('democan.csv', index_col=0) ================================================ FILE: docs/third-party/data-science/files/pandas/oasis.csv ================================================ album_release_date,album_release_year,danceability,energy,key,loudness,mode,speechiness,acousticness,instrumentalness,liveness,valence,tempo,time_signature,disc_number,duration_ms,explicit,is_local,track_name,track_number,album_name,key_name,mode_name,key_mode 2016-10-14,2016,0.297,0.861,11,-3.41,0,0.0448,0.000164,0.000211,0.112,0.226,80.013,4,1,463213,FALSE,FALSE,D'You Know What I Mean? - Remastered,1,Be Here Now(Remastered),B,minor,B minor 2016-10-14,2016,0.354,0.971,9,-1.897,0,0.0705,0.00249,0.00545,0.673,0.226,135.174,4,1,311333,FALSE,FALSE,My Big Mouth - Remastered,2,Be Here Now(Remastered),A,minor,A minor 2016-10-14,2016,0.3,0.879,0,-2.899,1,0.054,0.221,0.0332,0.262,0.258,148.323,4,1,430373,FALSE,FALSE,Magic Pie - Remastered,3,Be Here Now(Remastered),C,major,C major 2016-10-14,2016,0.197,0.821,7,-2.596,1,0.0412,0.0822,0.00301,0.259,0.35,170.015,4,1,355866,FALSE,FALSE,Stand by Me - Remastered,4,Be Here Now(Remastered),G,major,G major 2016-10-14,2016,0.342,0.977,2,-2.115,1,0.0571,0.00389,0.000393,0.628,0.197,137.402,4,1,262400,FALSE,FALSE,"I Hope, I Think, I Know - Remastered",5,Be Here Now(Remastered),D,major,D major 2016-10-14,2016,0.344,0.911,7,-2.615,1,0.037,0.123,0,0.07,0.319,166.146,4,1,349640,FALSE,FALSE,The Girl in the Dirty Shirt - Remastered,6,Be Here Now(Remastered),G,major,G major 2016-10-14,2016,0.382,0.781,7,-4.122,1,0.0425,0.0901,0.0198,0.416,0.195,86.21,4,1,411360,FALSE,FALSE,Fade In-Out - Remastered,7,Be Here Now(Remastered),G,major,G major 2016-10-14,2016,0.399,0.826,0,-4.925,1,0.0369,0.0372,4.32e-05,0.0756,0.193,81.142,4,1,288666,FALSE,FALSE,Don't Go Away - Remastered,8,Be Here Now(Remastered),C,major,C major 2016-10-14,2016,0.46,0.944,9,-1.945,1,0.0458,0.0795,0.477,0.546,0.287,112.201,4,1,312906,FALSE,FALSE,Be Here Now - Remastered,9,Be Here Now(Remastered),A,major,A major 2016-10-14,2016,0.333,0.831,9,-3.149,1,0.0506,0.135,0.000478,0.696,0.326,82.101,4,1,559200,FALSE,FALSE,All Around the World - Remastered,10,Be Here Now(Remastered),A,major,A major 2016-10-14,2016,0.323,0.775,2,-1.693,1,0.0652,0.00203,0.0189,0.898,0.204,126.251,4,1,423373,FALSE,FALSE,It's Gettin' Better (Man!!) - Remastered,11,Be Here Now(Remastered),D,major,D major 2016-10-14,2016,0.303,0.823,2,-5.115,1,0.0499,0.00279,0.825,0.312,0.219,82.006,4,1,129639,FALSE,FALSE,All Around the World (Reprise) - Remastered,12,Be Here Now(Remastered),D,major,D major 2016-10-05,2016,0.297,0.861,11,-3.41,0,0.0448,0.000164,0.000211,0.112,0.226,80.013,4,1,463213,FALSE,FALSE,D'You Know What I Mean? - Remastered,1,Be Here Now(Remastered)(Deluxe Edition),B,minor,B minor 2016-10-05,2016,0.354,0.971,9,-1.897,0,0.0705,0.00249,0.00545,0.673,0.226,135.174,4,1,311333,FALSE,FALSE,My Big Mouth - Remastered,2,Be Here Now(Remastered)(Deluxe Edition),A,minor,A minor 2016-10-05,2016,0.3,0.879,0,-2.899,1,0.054,0.221,0.0332,0.262,0.258,148.323,4,1,430373,FALSE,FALSE,Magic Pie - Remastered,3,Be Here Now(Remastered)(Deluxe Edition),C,major,C major 2016-10-05,2016,0.197,0.821,7,-2.596,1,0.0412,0.0822,0.00301,0.259,0.35,170.015,4,1,355866,FALSE,FALSE,Stand by Me - Remastered,4,Be Here Now(Remastered)(Deluxe Edition),G,major,G major 2016-10-05,2016,0.342,0.977,2,-2.115,1,0.0571,0.00389,0.000393,0.628,0.197,137.402,4,1,262400,FALSE,FALSE,"I Hope, I Think, I Know - Remastered",5,Be Here Now(Remastered)(Deluxe Edition),D,major,D major 2016-10-05,2016,0.344,0.911,7,-2.615,1,0.037,0.123,0,0.07,0.319,166.146,4,1,349640,FALSE,FALSE,The Girl in the Dirty Shirt - Remastered,6,Be Here Now(Remastered)(Deluxe Edition),G,major,G major 2016-10-05,2016,0.382,0.781,7,-4.122,1,0.0425,0.0901,0.0198,0.416,0.195,86.21,4,1,411360,FALSE,FALSE,Fade In-Out - Remastered,7,Be Here Now(Remastered)(Deluxe Edition),G,major,G major 2016-10-05,2016,0.399,0.826,0,-4.925,1,0.0369,0.0372,4.32e-05,0.0756,0.193,81.142,4,1,288666,FALSE,FALSE,Don't Go Away - Remastered,8,Be Here Now(Remastered)(Deluxe Edition),C,major,C major 2016-10-05,2016,0.46,0.944,9,-1.945,1,0.0458,0.0795,0.477,0.546,0.287,112.201,4,1,312906,FALSE,FALSE,Be Here Now - Remastered,9,Be Here Now(Remastered)(Deluxe Edition),A,major,A major 2016-10-05,2016,0.333,0.831,9,-3.149,1,0.0506,0.135,0.000478,0.696,0.326,82.101,4,1,559200,FALSE,FALSE,All Around the World - Remastered,10,Be Here Now(Remastered)(Deluxe Edition),A,major,A major 2016-10-05,2016,0.323,0.775,2,-1.693,1,0.0652,0.00203,0.0189,0.898,0.204,126.251,4,1,423373,FALSE,FALSE,It's Gettin' Better (Man!!) - Remastered,11,Be Here Now(Remastered)(Deluxe Edition),D,major,D major 2016-10-05,2016,0.303,0.823,2,-5.115,1,0.0499,0.00279,0.825,0.312,0.219,82.006,4,1,129639,FALSE,FALSE,All Around the World (Reprise) - Remastered,12,Be Here Now(Remastered)(Deluxe Edition),D,major,D major 2016-10-05,2016,0.372,0.981,2,-2.707,1,0.0757,0.00512,0.000921,0.337,0.225,126.032,4,1,308173,FALSE,FALSE,Stay Young - Remastered,13,Be Here Now(Remastered)(Deluxe Edition),D,major,D major 2016-10-05,2016,0.363,0.938,2,-2.938,1,0.0535,5.67e-05,3.99e-05,0.485,0.464,135.01,4,1,275626,FALSE,FALSE,The Fame - Remastered,14,Be Here Now(Remastered)(Deluxe Edition),D,major,D major 2016-10-05,2016,0.419,0.809,4,-3.283,1,0.0335,0.00712,2.94e-05,0.137,0.234,129.009,4,1,309413,FALSE,FALSE,Flashbax - Remastered,15,Be Here Now(Remastered)(Deluxe Edition),E,major,E major 2016-10-05,2016,0.335,0.858,0,-2.032,1,0.0574,0.00589,0.0145,0.408,0.403,126.054,4,1,315026,FALSE,FALSE,(I Got) The Fever - Remastered,16,Be Here Now(Remastered)(Deluxe Edition),C,major,C major 2016-10-05,2016,0.366,0.976,4,-2.468,1,0.0617,0.00313,0.00465,0.0756,0.222,134.079,4,1,359546,FALSE,FALSE,My Sister Lover - Remastered,17,Be Here Now(Remastered)(Deluxe Edition),E,major,E major 2016-10-05,2016,0.482,0.735,2,-3.681,0,0.0303,0.279,0,0.263,0.117,107.06,4,1,281626,FALSE,FALSE,Going Nowhere - Remastered,18,Be Here Now(Remastered)(Deluxe Edition),D,minor,D minor 2016-10-05,2016,0.576,0.543,9,-5.855,0,0.0259,0.229,0,0.114,0.644,81.074,4,1,362640,FALSE,FALSE,Stand by Me - Live at Bonehead's Outtake,19,Be Here Now(Remastered)(Deluxe Edition),A,minor,A minor 2016-10-05,2016,0.516,0.368,2,-7.198,1,0.028,0.781,0.000175,0.147,0.41,100.511,4,1,277840,FALSE,FALSE,Untitled - Demo,20,Be Here Now(Remastered)(Deluxe Edition),D,major,D major 2016-10-05,2016,0.39,0.307,11,-6.889,0,0.03,0.701,0,0.733,0.19,123.911,4,1,225040,FALSE,FALSE,Help! - Live in LA,21,Be Here Now(Remastered)(Deluxe Edition),B,minor,B minor 2016-10-05,2016,0.567,0.373,7,-5.743,1,0.0251,0.439,0,0.0936,0.29,99.651,4,1,235853,FALSE,FALSE,Setting Sun - Live Radio Broadcast,22,Be Here Now(Remastered)(Deluxe Edition),G,major,G major 2016-10-05,2016,0.422,0.258,9,-9.616,0,0.0261,0.741,0.000195,0.0737,0.269,141.461,4,1,293213,FALSE,FALSE,If We Shadows - Demo,23,Be Here Now(Remastered)(Deluxe Edition),A,minor,A minor 2016-10-05,2016,0.482,0.526,0,-7.515,1,0.0308,0.781,0,0.174,0.513,84.75,4,1,222546,FALSE,FALSE,Don't Go Away - Demo,24,Be Here Now(Remastered)(Deluxe Edition),C,major,C major 2016-10-05,2016,0.186,0.936,5,-5.386,1,0.0747,0.000131,0.186,0.907,0.361,140.254,4,1,322680,TRUE,FALSE,My Big Mouth - Live at Knebworth Park,25,Be Here Now(Remastered)(Deluxe Edition),F,major,F major 2016-10-05,2016,0.321,0.832,4,-3.872,1,0.0384,0.000134,0.024,0.196,0.311,79.991,4,1,445466,FALSE,FALSE,D'You Know What I Mean? - NG's 2016 Rethink,26,Be Here Now(Remastered)(Deluxe Edition),E,major,E major 2016-10-05,2016,0.451,0.63,11,-8.379,0,0.0294,0.00636,0.000697,0.174,0.146,79.997,4,1,436373,FALSE,FALSE,D'You Know What I Mean? - Mustique Demo,27,Be Here Now(Remastered)(Deluxe Edition),B,minor,B minor 2016-10-05,2016,0.467,0.865,0,-7.625,1,0.047,9.78e-06,0.000287,0.171,0.695,134.005,4,1,317426,FALSE,FALSE,My Big Mouth - Mustique Demo,28,Be Here Now(Remastered)(Deluxe Edition),C,major,C major 2016-10-05,2016,0.444,0.888,11,-7.18,0,0.0323,4.47e-05,0.000974,0.332,0.552,134.003,4,1,369040,FALSE,FALSE,My Sister Lover - Mustique Demo,29,Be Here Now(Remastered)(Deluxe Edition),B,minor,B minor 2016-10-05,2016,0.364,0.801,7,-7.966,1,0.0319,0.00112,0.000471,0.607,0.454,168.017,4,1,360920,FALSE,FALSE,Stand by Me - Mustique Demo,30,Be Here Now(Remastered)(Deluxe Edition),G,major,G major 2016-10-05,2016,0.405,0.922,2,-7.529,1,0.0466,5.21e-06,4.51e-05,0.72,0.564,136.98,4,1,250680,FALSE,FALSE,"I Hope, I Think, I Know - Mustique Demo",31,Be Here Now(Remastered)(Deluxe Edition),D,major,D major 2016-10-05,2016,0.35,0.781,7,-8.019,1,0.0352,0.0183,3.52e-06,0.327,0.547,165.94,4,1,323266,FALSE,FALSE,The Girl in the Dirty Shirt - Mustique Demo,32,Be Here Now(Remastered)(Deluxe Edition),G,major,G major 2016-10-05,2016,0.421,0.783,9,-8.846,0,0.0361,0.021,2.59e-06,0.124,0.536,161.772,4,1,258293,FALSE,FALSE,Don't Go Away - Mustique Demo,33,Be Here Now(Remastered)(Deluxe Edition),A,minor,A minor 2016-10-05,2016,0.178,0.272,7,-20.608,1,0.0294,0.974,0.996,0.21,0.102,164.816,4,1,215000,FALSE,FALSE,Trip Inside (Be Here Now) - Mustique Demo,34,Be Here Now(Remastered)(Deluxe Edition),G,major,G major 2016-10-05,2016,0.467,0.566,7,-10.033,1,0.0271,0.0755,0.00169,0.45,0.279,85.948,4,1,362880,FALSE,FALSE,Fade In-Out - Mustique Demo,35,Be Here Now(Remastered)(Deluxe Edition),G,major,G major 2016-10-05,2016,0.381,0.832,2,-6.603,1,0.0423,5.56e-06,0.0118,0.574,0.383,128.956,4,1,296480,FALSE,FALSE,Stay Young - Mustique Demo,36,Be Here Now(Remastered)(Deluxe Edition),D,major,D major 2016-10-05,2016,0.298,0.397,4,-12.687,0,0.0302,0.376,5.18e-06,0.171,0.181,96.021,4,1,268373,FALSE,FALSE,Angel Child - Mustique Demo,37,Be Here Now(Remastered)(Deluxe Edition),E,minor,E minor 2016-10-05,2016,0.409,0.917,2,-6.864,1,0.043,2.7e-05,0.000437,0.192,0.666,134.959,4,1,285360,FALSE,FALSE,The Fame - Mustique Demo,38,Be Here Now(Remastered)(Deluxe Edition),D,major,D major 2016-10-05,2016,0.471,0.743,11,-7.96,1,0.0301,0.00594,0.0597,0.673,0.457,82.023,4,1,390893,FALSE,FALSE,All Around the World - Mustique Demo,39,Be Here Now(Remastered)(Deluxe Edition),B,major,B major 2016-10-05,2016,0.438,0.926,2,-7.535,1,0.0437,9.66e-05,0.000404,0.204,0.378,125.005,4,1,399586,FALSE,FALSE,It's Gettin' Better (Man!!) - Mustique Demo,40,Be Here Now(Remastered)(Deluxe Edition),D,major,D major 2014-09-24,2014,0.161,0.948,9,-3.174,0,0.113,0.0141,0.0433,0.166,0.0567,132.3,4,1,203186,FALSE,FALSE,Hello - Remastered,1,"(What's The Story) Morning Glory (Remastered, Deluxe)",A,minor,A minor 2014-09-24,2014,0.233,0.986,9,-1.896,0,0.0947,0.0325,0.000311,0.117,0.145,126.56,4,1,240093,FALSE,FALSE,Roll with It - Remastered,2,"(What's The Story) Morning Glory (Remastered, Deluxe)",A,minor,A minor 2014-09-24,2014,0.376,0.896,2,-4.065,1,0.0395,0.000452,0,0.194,0.472,174.379,4,1,258773,FALSE,FALSE,Wonderwall - Remastered,3,"(What's The Story) Morning Glory (Remastered, Deluxe)",D,major,D major 2014-09-24,2014,0.327,0.938,0,-3.237,1,0.0636,0.0707,3.79e-06,0.148,0.327,162.933,4,1,289560,FALSE,FALSE,Don't Look Back in Anger - Remastered,4,"(What's The Story) Morning Glory (Remastered, Deluxe)",C,major,C major 2014-09-24,2014,0.147,0.933,2,-2.478,1,0.0658,0.000305,0.00134,0.382,0.206,202.197,4,1,341906,FALSE,FALSE,Hey Now - Remastered,5,"(What's The Story) Morning Glory (Remastered, Deluxe)",D,major,D major 2014-09-24,2014,0.279,0.748,10,-5.655,1,0.0484,3.93e-05,0.92,0.254,0.201,143.121,4,1,44626,FALSE,FALSE,Untitled - Remastered,6,"(What's The Story) Morning Glory (Remastered, Deluxe)",A#,major,A# major 2014-09-24,2014,0.262,0.932,0,-2.281,0,0.0925,0.173,0.0206,0.288,0.0733,110.129,4,1,327920,FALSE,FALSE,Some Might Say - Remastered,7,"(What's The Story) Morning Glory (Remastered, Deluxe)",C,minor,C minor 2014-09-24,2014,0.418,0.84,7,-4.321,1,0.0285,0.00192,0,0.163,0.627,158.373,4,1,294813,FALSE,FALSE,Cast No Shadow - Remastered,8,"(What's The Story) Morning Glory (Remastered, Deluxe)",G,major,G major 2014-09-24,2014,0.487,0.909,9,-3.484,1,0.0463,0.159,1.27e-06,0.304,0.51,125.422,4,1,220920,FALSE,FALSE,She's Electric - Remastered,9,"(What's The Story) Morning Glory (Remastered, Deluxe)",A,major,A major 2014-09-24,2014,0.33,0.983,0,-3.038,1,0.0932,0.0664,4.68e-05,0.491,0.0968,136.952,4,1,303320,FALSE,FALSE,Morning Glory - Remastered,10,"(What's The Story) Morning Glory (Remastered, Deluxe)",C,major,C major 2014-09-24,2014,0.154,0.991,5,-13.27,1,0.0791,0.849,0.92,0.721,0.0176,133.72,4,1,39360,FALSE,FALSE,Untitled - Remastered,11,"(What's The Story) Morning Glory (Remastered, Deluxe)",F,major,F major 2014-09-24,2014,0.297,0.825,2,-3.771,1,0.0394,0.464,0.0833,0.358,0.123,150.339,4,1,454000,FALSE,FALSE,Champagne Supernova - Remastered,12,"(What's The Story) Morning Glory (Remastered, Deluxe)",D,major,D major 2014-09-24,2014,0.428,0.428,4,-8.405,0,0.0247,0.52,7.84e-06,0.365,0.319,84.612,4,1,263746,FALSE,FALSE,Talk Tonight - Remastered,13,"(What's The Story) Morning Glory (Remastered, Deluxe)",E,minor,E minor 2014-09-24,2014,0.19,0.928,7,-3.274,1,0.0803,0.00978,0.000719,0.334,0.215,112.961,4,1,267986,FALSE,FALSE,Acquiesce - Remastered,14,"(What's The Story) Morning Glory (Remastered, Deluxe)",G,major,G major 2014-09-24,2014,0.202,0.875,7,-1.844,1,0.0571,0.00298,0.000336,0.368,0.273,78.882,4,1,281840,FALSE,FALSE,Headshrinker - Remastered,15,"(What's The Story) Morning Glory (Remastered, Deluxe)",G,major,G major 2014-09-24,2014,0.476,0.805,4,-6.126,1,0.0321,0.000461,3.99e-05,0.0983,0.881,101.378,4,1,240146,FALSE,FALSE,It's Better People - Remastered,16,"(What's The Story) Morning Glory (Remastered, Deluxe)",E,major,E major 2014-09-24,2014,0.509,0.911,9,-4.121,0,0.0353,0.000589,8.21e-06,0.0384,0.278,126.425,4,1,279200,FALSE,FALSE,Rockin' Chair - Remastered,17,"(What's The Story) Morning Glory (Remastered, Deluxe)",A,minor,A minor 2014-09-24,2014,0.334,0.98,7,-1.874,1,0.0774,0.00982,0.00437,0.35,0.182,139.6,4,1,224426,FALSE,FALSE,Step Out - Remastered,18,"(What's The Story) Morning Glory (Remastered, Deluxe)",G,major,G major 2014-09-24,2014,0.442,0.955,11,-2.231,0,0.0519,0.00135,0,0.347,0.743,124.233,4,1,204653,FALSE,FALSE,Underneath the Sky - Remastered,19,"(What's The Story) Morning Glory (Remastered, Deluxe)",B,minor,B minor 2014-09-24,2014,0.373,0.9,9,-1.578,0,0.046,1.49e-05,0.374,0.379,0.558,133.138,4,1,312160,FALSE,FALSE,Cum On Feel The Noize - Remastered,20,"(What's The Story) Morning Glory (Remastered, Deluxe)",A,minor,A minor 2014-09-24,2014,0.334,0.915,0,-2.1,1,0.0436,1.58e-05,0.000232,0.0748,0.38,138.026,4,1,344440,FALSE,FALSE,Round Are Way - Remastered,21,"(What's The Story) Morning Glory (Remastered, Deluxe)",C,major,C major 2014-09-24,2014,0.21,0.942,7,-2.865,0,0.0623,3.06e-05,0.945,0.106,0.196,142.872,4,1,262400,FALSE,FALSE,The Swamp Song - Remastered,22,"(What's The Story) Morning Glory (Remastered, Deluxe)",G,minor,G minor 2014-09-24,2014,0.383,0.584,7,-6.707,1,0.0294,0.013,8.46e-05,0.0725,0.145,148.508,4,1,325200,FALSE,FALSE,The Masterplan - Remastered,23,"(What's The Story) Morning Glory (Remastered, Deluxe)",G,major,G major 2014-09-24,2014,0.378,0.815,7,-3.987,1,0.106,0.296,0,0.336,0.501,166.582,4,1,242920,FALSE,FALSE,Bonehead's Bank Holiday - Remastered,24,"(What's The Story) Morning Glory (Remastered, Deluxe)",G,major,G major 2014-09-24,2014,0.477,0.785,2,-5.941,1,0.0315,0.0167,0.000676,0.103,0.417,150.661,4,1,417960,FALSE,FALSE,Champagne Supernova - Remastered,25,"(What's The Story) Morning Glory (Remastered, Deluxe)",D,major,D major 2014-09-24,2014,0.248,0.594,7,-7.74,1,0.0287,0.106,0,0.366,0.693,95.898,3,1,137200,FALSE,FALSE,You've Got to Hide Your Love Away - Remastered,26,"(What's The Story) Morning Glory (Remastered, Deluxe)",G,major,G major 2014-09-24,2014,0.321,0.832,0,-2.354,1,0.0567,4.96e-05,0.145,0.547,0.364,121.183,4,1,234440,FALSE,FALSE,Acquiesce - Live at Earls Court,27,"(What's The Story) Morning Glory (Remastered, Deluxe)",C,major,C major 2014-09-24,2014,0.594,0.681,2,-5.441,1,0.0284,0.79,2.28e-06,0.102,0.611,108.546,4,1,243866,FALSE,FALSE,Some Might Say - Demo,28,"(What's The Story) Morning Glory (Remastered, Deluxe)",D,major,D major 2014-09-24,2014,0.169,0.741,2,-2.652,1,0.062,0.00145,0.00291,0.38,0.374,122.687,4,1,306066,FALSE,FALSE,Some Might Say - Live at Roskilde,29,"(What's The Story) Morning Glory (Remastered, Deluxe)",D,major,D major 2014-09-24,2014,0.5,0.55,9,-6.195,1,0.0286,0.238,6.97e-06,0.0962,0.21,146.66,4,1,182906,FALSE,FALSE,She's Electric - Demo,30,"(What's The Story) Morning Glory (Remastered, Deluxe)",A,major,A major 2014-09-24,2014,0.284,0.588,0,-6.296,1,0.0282,0.227,0,0.136,0.428,92.74,4,1,222186,FALSE,FALSE,Talk Tonight - Live at Bath Pavilion,31,"(What's The Story) Morning Glory (Remastered, Deluxe)",C,major,C major 2014-09-24,2014,0.535,0.417,9,-6.654,0,0.026,0.11,0.00101,0.0968,0.193,129.215,4,1,244560,FALSE,FALSE,Rockin' Chair - Demo,32,"(What's The Story) Morning Glory (Remastered, Deluxe)",A,minor,A minor 2014-09-24,2014,0.131,0.859,2,-3.826,1,0.0954,0.000757,0.0234,0.614,0.123,144.245,4,1,203866,FALSE,FALSE,Hello - Live at Roskilde,33,"(What's The Story) Morning Glory (Remastered, Deluxe)",D,major,D major 2014-09-24,2014,0.205,0.774,9,-3.728,0,0.0527,0.000115,0.667,0.378,0.376,127.703,4,1,247693,FALSE,FALSE,Roll with It - Live at Roskilde,34,"(What's The Story) Morning Glory (Remastered, Deluxe)",A,minor,A minor 2014-09-24,2014,0.183,0.812,0,-4.398,1,0.0703,5e-04,0.185,0.123,0.185,135.906,4,1,287253,FALSE,FALSE,Morning Glory - Live at Roskilde,35,"(What's The Story) Morning Glory (Remastered, Deluxe)",C,major,C major 2014-09-24,2014,0.556,0.613,7,-6.291,1,0.0291,0.871,0.000122,0.157,0.359,98.765,4,1,187920,FALSE,FALSE,Hey Now - Demo,36,"(What's The Story) Morning Glory (Remastered, Deluxe)",G,major,G major 2014-09-24,2014,0.52,0.672,7,-6.465,1,0.0264,0.749,0.00416,0.182,0.626,88.331,4,1,128705,FALSE,FALSE,Bonehead's Bank Holiday - Demo,37,"(What's The Story) Morning Glory (Remastered, Deluxe)",G,major,G major 2014-09-24,2014,0.376,0.889,7,-5.004,1,0.0899,0.0254,1.07e-05,0.732,0.369,145.986,4,1,291293,FALSE,FALSE,Round Are Way - MTV Unplugged,38,"(What's The Story) Morning Glory (Remastered, Deluxe)",G,major,G major 2014-09-24,2014,0.308,0.842,0,-4.87,1,0.0412,0.00559,0,0.369,0.287,96.635,4,1,245506,FALSE,FALSE,Cast No Shadow - Live at Maine Road,39,"(What's The Story) Morning Glory (Remastered, Deluxe)",C,major,C major 2014-09-24,2014,0.246,0.725,9,-4.436,0,0.0417,0.247,0.0148,0.894,0.288,82.859,4,1,295160,FALSE,FALSE,The Masterplan - Live at Knebworth Park,40,"(What's The Story) Morning Glory (Remastered, Deluxe)",A,minor,A minor 2014-09-24,2014,0.161,0.948,9,-3.174,0,0.113,0.0141,0.0433,0.166,0.0567,132.3,4,1,203186,FALSE,FALSE,Hello - Remastered,1,(What's The Story) Morning Glory (Remastered),A,minor,A minor 2014-09-24,2014,0.233,0.986,9,-1.896,0,0.0947,0.0325,0.000311,0.117,0.145,126.56,4,1,240093,FALSE,FALSE,Roll with It - Remastered,2,(What's The Story) Morning Glory (Remastered),A,minor,A minor 2014-09-24,2014,0.376,0.896,2,-4.065,1,0.0395,0.000452,0,0.194,0.472,174.379,4,1,258773,FALSE,FALSE,Wonderwall - Remastered,3,(What's The Story) Morning Glory (Remastered),D,major,D major 2014-09-24,2014,0.327,0.938,0,-3.237,1,0.0636,0.0707,3.79e-06,0.148,0.327,162.933,4,1,289560,FALSE,FALSE,Don't Look Back in Anger - Remastered,4,(What's The Story) Morning Glory (Remastered),C,major,C major 2014-09-24,2014,0.147,0.933,2,-2.478,1,0.0658,0.000305,0.00134,0.382,0.206,202.197,4,1,341906,FALSE,FALSE,Hey Now - Remastered,5,(What's The Story) Morning Glory (Remastered),D,major,D major 2014-09-24,2014,0.279,0.748,10,-5.655,1,0.0484,3.93e-05,0.92,0.254,0.201,143.121,4,1,44626,FALSE,FALSE,Untitled - Remastered,6,(What's The Story) Morning Glory (Remastered),A#,major,A# major 2014-09-24,2014,0.262,0.932,0,-2.281,0,0.0925,0.173,0.0206,0.288,0.0733,110.129,4,1,327920,FALSE,FALSE,Some Might Say - Remastered,7,(What's The Story) Morning Glory (Remastered),C,minor,C minor 2014-09-24,2014,0.418,0.84,7,-4.321,1,0.0285,0.00192,0,0.163,0.627,158.373,4,1,294813,FALSE,FALSE,Cast No Shadow - Remastered,8,(What's The Story) Morning Glory (Remastered),G,major,G major 2014-09-24,2014,0.487,0.909,9,-3.484,1,0.0463,0.159,1.27e-06,0.304,0.51,125.422,4,1,220920,FALSE,FALSE,She's Electric - Remastered,9,(What's The Story) Morning Glory (Remastered),A,major,A major 2014-09-24,2014,0.33,0.983,0,-3.038,1,0.0932,0.0664,4.68e-05,0.491,0.0968,136.952,4,1,303320,FALSE,FALSE,Morning Glory - Remastered,10,(What's The Story) Morning Glory (Remastered),C,major,C major 2014-09-24,2014,0.154,0.991,5,-13.27,1,0.0791,0.849,0.92,0.721,0.0176,133.72,4,1,39360,FALSE,FALSE,Untitled - Remastered,11,(What's The Story) Morning Glory (Remastered),F,major,F major 2014-09-24,2014,0.297,0.825,2,-3.771,1,0.0394,0.464,0.0833,0.358,0.123,150.339,4,1,454000,FALSE,FALSE,Champagne Supernova - Remastered,12,(What's The Story) Morning Glory (Remastered),D,major,D major 2014-05-14,2014,0.315,0.975,4,-3.21,1,0.0685,0.000567,0.00137,0.467,0.436,138.197,4,1,322946,FALSE,FALSE,Rock 'n' Roll Star - Remastered,1,Definitely Maybe (Remastered),E,major,E major 2014-05-14,2014,0.317,0.931,4,-2.661,1,0.0569,0.0136,0.12,0.687,0.16,95.919,4,1,308280,FALSE,FALSE,Shakermaker - Remastered,2,Definitely Maybe (Remastered),E,major,E major 2014-05-14,2014,0.192,0.828,9,-3.382,0,0.0452,2.74e-05,1.97e-05,0.362,0.189,118.935,5,1,276666,FALSE,FALSE,Live Forever - Remastered,3,Definitely Maybe (Remastered),A,minor,A minor 2014-05-14,2014,0.268,0.905,0,-3.543,1,0.0397,1.41e-05,0.0214,0.38,0.328,140.571,4,1,268000,FALSE,FALSE,Up in the Sky - Remastered,4,Definitely Maybe (Remastered),C,major,C major 2014-05-14,2014,0.314,0.835,7,-5.106,1,0.0498,2.01e-06,0.617,0.392,0.0412,100.138,4,1,377400,FALSE,FALSE,Columbia - Remastered,5,Definitely Maybe (Remastered),G,major,G major 2014-05-14,2014,0.361,0.911,9,-2.853,1,0.0405,6.06e-05,0.00752,0.0891,0.643,103.999,4,1,283786,FALSE,FALSE,Supersonic - Remastered,6,Definitely Maybe (Remastered),A,major,A major 2014-05-14,2014,0.113,0.938,9,-2.741,1,0.0771,1.13e-05,0.801,0.446,0.192,153.625,4,1,257812,FALSE,FALSE,Bring It on Down - Remastered,7,Definitely Maybe (Remastered),A,major,A major 2014-05-14,2014,0.292,0.759,2,-2.311,1,0.046,1.53e-05,0.037,0.16,0.451,114.758,4,1,289146,FALSE,FALSE,Cigarettes & Alcohol - Remastered,8,Definitely Maybe (Remastered),D,major,D major 2014-05-14,2014,0.301,0.987,2,-2.865,1,0.111,0.000895,0.537,0.066,0.057,139.495,4,1,152266,FALSE,FALSE,Digsy's Dinner - Remastered,9,Definitely Maybe (Remastered),D,major,D major 2014-05-14,2014,0.0668,0.941,8,-2.699,1,0.137,9.49e-05,0.000343,0.253,0.236,188.529,4,1,392306,FALSE,FALSE,Slide Away - Remastered,10,Definitely Maybe (Remastered),G#,major,G# major 2014-05-14,2014,0.585,0.427,4,-10.907,1,0.0278,0.808,0,0.0984,0.313,87.615,4,1,196480,FALSE,FALSE,Married with Children - Remastered,11,Definitely Maybe (Remastered),E,major,E major 2014-05-14,2014,0.116,0.89,2,-1.9,1,0.0504,0.00203,0.812,0.648,0.309,199.833,4,1,328666,FALSE,FALSE,Columbia - Remastered White Label Demo,12,Definitely Maybe (Remastered),D,major,D major 2014-05-14,2014,0.361,0.932,9,-1.727,1,0.0449,0.000182,0.000252,0.0917,0.33,110.979,4,1,277986,FALSE,FALSE,Cigarettes & Alcohol - Remastered Demo,13,Definitely Maybe (Remastered),A,major,A major 2014-05-14,2014,0.515,0.575,8,-6.36,0,0.0309,0.537,0,0.391,0.162,118.484,4,1,269213,FALSE,FALSE,Sad Song - Remastered,14,Definitely Maybe (Remastered),G#,minor,G# minor 2014-05-14,2014,0.344,0.979,2,-3.294,1,0.0762,0.000615,1.37e-06,0.0872,0.53,128.608,4,1,228880,FALSE,FALSE,I Will Believe - Remastered Live,15,Definitely Maybe (Remastered),D,major,D major 2014-05-14,2014,0.453,0.332,2,-10.886,1,0.0286,0.651,0,0.217,0.115,112.192,4,1,272773,FALSE,FALSE,Take Me Away - Remastered,16,Definitely Maybe (Remastered),D,major,D major 2014-05-14,2014,0.257,0.912,9,-4.515,1,0.0488,7.29e-06,0.00418,0.144,0.219,147.711,4,1,238226,FALSE,FALSE,Alive - Remastered Demo,17,Definitely Maybe (Remastered),A,major,A major 2014-05-14,2014,0.402,0.51,7,-9.073,1,0.0261,0.365,0,0.0866,0.611,139.168,4,1,161013,FALSE,FALSE,D'Yer Wanna Be a Spaceman? - Remastered,18,Definitely Maybe (Remastered),G,major,G major 2014-05-14,2014,0.216,0.965,6,-3.494,0,0.0984,0.00269,0.44,0.685,0.118,108.737,4,1,315026,FALSE,FALSE,Supersonic - Remastered Live,19,Definitely Maybe (Remastered),F#,minor,F# minor 2014-05-14,2014,0.164,0.784,0,-4.125,1,0.0392,0.172,0,0.0863,0.387,142.508,4,1,214320,FALSE,FALSE,Up in the Sky - Remastered Acoustic,20,Definitely Maybe (Remastered),C,major,C major 2014-05-14,2014,0.297,0.876,9,-5.483,1,0.0489,2.85e-06,0.48,0.189,0.288,102.484,4,1,323146,FALSE,FALSE,Cloudburst - Remastered,21,Definitely Maybe (Remastered),A,major,A major 2014-05-14,2014,0.101,0.593,2,-3.467,1,0.0481,1.5e-05,0.0655,0.391,0.336,91.34,5,1,256853,FALSE,FALSE,Fade Away - Remastered,22,Definitely Maybe (Remastered),D,major,D major 2014-05-14,2014,0.136,0.833,9,-1.751,1,0.0701,0.0215,0.0746,0.379,0.372,101.241,4,1,402360,FALSE,FALSE,Listen Up - Remastered,23,Definitely Maybe (Remastered),A,major,A major 2014-05-14,2014,0.08,0.975,4,-3.738,1,0.171,5.1e-06,0.743,0.417,0.0427,82.949,3,1,498333,FALSE,FALSE,I Am the Walrus - Remastered Live Glasgow Cathouse June '94,24,Definitely Maybe (Remastered),E,major,E major 2014-05-14,2014,0.244,0.913,7,-2.437,1,0.0392,0.042,0.008,0.257,0.34,90.501,4,1,382266,FALSE,FALSE,Whatever - Remastered,25,Definitely Maybe (Remastered),G,major,G major 2014-05-14,2014,0.303,0.901,4,-2.036,0,0.0511,0.00189,0.0117,0.379,0.305,98.127,5,1,263533,FALSE,FALSE,(It's Good) To Be Free - Remastered,26,Definitely Maybe (Remastered),E,minor,E minor 2014-05-14,2014,0.338,0.459,0,-8.652,1,0.0305,0.305,0,0.0909,0.229,171.917,3,1,267333,FALSE,FALSE,Half the World Away - Remastered,27,Definitely Maybe (Remastered),C,major,C major 2014-05-14,2014,0.161,0.929,4,-2.515,1,0.0749,0.000108,0.943,0.901,0.293,109.415,4,1,331360,FALSE,FALSE,Supersonic - Remastered Live At Glasgow Tramshed,28,Definitely Maybe (Remastered),E,major,E major 2014-05-14,2014,0.31,0.915,4,-1.98,1,0.0534,0.000122,0.123,0.147,0.387,136.269,4,1,346226,FALSE,FALSE,Rock 'n' Roll Star - Remastered Demo,29,Definitely Maybe (Remastered),E,major,E major 2014-05-14,2014,0.514,0.737,4,-5.371,1,0.0311,0.139,4.38e-05,0.128,0.254,104.601,4,1,245253,FALSE,FALSE,Shakermaker - Remastered Live Paris Instore,30,Definitely Maybe (Remastered),E,major,E major 2014-05-14,2014,0.342,0.922,2,-2.111,1,0.0395,0.000264,0.599,0.403,0.523,99.152,4,1,337133,FALSE,FALSE,Columbia - Remastered Eden Studios Mix,31,Definitely Maybe (Remastered),D,major,D major 2014-05-14,2014,0.408,0.958,9,-2.966,1,0.0439,0.000424,0.000243,0.0341,0.617,101.851,4,1,310373,FALSE,FALSE,Cloudburst - Remastered Demo,32,Definitely Maybe (Remastered),A,major,A major 2014-05-14,2014,0.297,0.985,11,-1.874,0,0.0625,0.000277,0.0019,0.265,0.39,103.103,4,1,314866,FALSE,FALSE,Strange Thing - Remastered Demo,33,Definitely Maybe (Remastered),B,minor,B minor 2014-05-14,2014,0.289,0.62,9,-4.808,0,0.0312,0.176,1.11e-05,0.142,0.277,172.305,4,1,282120,FALSE,FALSE,Live Forever - Remastered Live Paris Instore,34,Definitely Maybe (Remastered),A,minor,A minor 2014-05-14,2014,0.346,0.998,2,-1.435,1,0.0887,0.0187,0.00107,0.396,0.0489,128.6,4,1,238560,FALSE,FALSE,Cigarettes & Alcohol - Remastered Live At Manchester Academy,35,Definitely Maybe (Remastered),D,major,D major 2014-05-14,2014,0.297,0.636,7,-6.954,1,0.0318,0.697,0,0.923,0.542,142.86,4,1,166213,FALSE,FALSE,D'Yer Wanna Be a Spaceman? - Remastered Live At Manchester Academy,36,Definitely Maybe (Remastered),G,major,G major 2014-05-14,2014,0.275,0.898,9,-2.288,1,0.0521,0.000159,0,0.316,0.396,143.309,4,1,263200,FALSE,FALSE,Fade Away - Remastered Demo,37,Definitely Maybe (Remastered),A,major,A major 2014-05-14,2014,0.285,0.364,2,-7.235,1,0.0283,0.685,1.73e-05,0.785,0.168,111.15,4,1,255160,FALSE,FALSE,Take Me Away - Remastered Live At Manchester Academy,38,Definitely Maybe (Remastered),D,major,D major 2014-05-14,2014,0.43,0.411,9,-8.817,0,0.0273,0.678,0,0.938,0.282,116.472,4,1,269280,FALSE,FALSE,Sad Song - Remastered Live At Manchester Academy,39,Definitely Maybe (Remastered),A,minor,A minor 2014-05-14,2014,0.437,0.417,11,-6.651,1,0.0328,0.786,1.46e-05,0.167,0.155,111.477,4,1,233373,FALSE,FALSE,"Half the World Away - Remastered Live, Tokyo Hotel Room",40,Definitely Maybe (Remastered),B,major,B major 2014-05-14,2014,0.458,0.5,9,-5.43,1,0.0276,0.133,0,0.113,0.541,134.402,4,1,156866,FALSE,FALSE,Digsy's Dinner - Remastered Live Paris Instore,41,Definitely Maybe (Remastered),A,major,A major 2014-05-14,2014,0.621,0.477,4,-7.691,1,0.0252,0.647,0,0.104,0.55,87.684,4,1,196066,FALSE,FALSE,Married with Children - Remastered Demo,42,Definitely Maybe (Remastered),E,major,E major 2014-05-14,2014,0.337,0.689,0,-5.993,1,0.0328,0.064,0,0.0951,0.55,134.825,4,1,199320,FALSE,FALSE,Up in the Sky - Remastered Live Paris Instore,43,Definitely Maybe (Remastered),C,major,C major 2014-05-14,2014,0.559,0.323,7,-7.969,1,0.0297,0.923,0.95,0.312,0.723,92.838,4,1,293960,FALSE,FALSE,Whatever - Remastered Strings,44,Definitely Maybe (Remastered),G,major,G major 2014-05-14,2014,0.315,0.975,4,-3.21,1,0.0685,0.000567,0.00137,0.467,0.436,138.197,4,1,322946,FALSE,FALSE,Rock 'n' Roll Star - Remastered,1,Definitely Maybe (Remastered),E,major,E major 2014-05-14,2014,0.317,0.931,4,-2.661,1,0.0569,0.0136,0.12,0.687,0.16,95.919,4,1,308280,FALSE,FALSE,Shakermaker - Remastered,2,Definitely Maybe (Remastered),E,major,E major 2014-05-14,2014,0.192,0.828,9,-3.382,0,0.0452,2.74e-05,1.97e-05,0.362,0.189,118.935,5,1,276666,FALSE,FALSE,Live Forever - Remastered,3,Definitely Maybe (Remastered),A,minor,A minor 2014-05-14,2014,0.268,0.905,0,-3.543,1,0.0397,1.41e-05,0.0214,0.38,0.328,140.571,4,1,268000,FALSE,FALSE,Up in the Sky - Remastered,4,Definitely Maybe (Remastered),C,major,C major 2014-05-14,2014,0.314,0.835,7,-5.106,1,0.0498,2.01e-06,0.617,0.392,0.0412,100.138,4,1,377400,FALSE,FALSE,Columbia - Remastered,5,Definitely Maybe (Remastered),G,major,G major 2014-05-14,2014,0.361,0.911,9,-2.853,1,0.0405,6.06e-05,0.00752,0.0891,0.643,103.999,4,1,283786,FALSE,FALSE,Supersonic - Remastered,6,Definitely Maybe (Remastered),A,major,A major 2014-05-14,2014,0.113,0.938,9,-2.741,1,0.0771,1.13e-05,0.801,0.446,0.192,153.625,4,1,257812,FALSE,FALSE,Bring It on Down - Remastered,7,Definitely Maybe (Remastered),A,major,A major 2014-05-14,2014,0.292,0.759,2,-2.311,1,0.046,1.53e-05,0.037,0.16,0.451,114.758,4,1,289146,FALSE,FALSE,Cigarettes & Alcohol - Remastered,8,Definitely Maybe (Remastered),D,major,D major 2014-05-14,2014,0.301,0.987,2,-2.865,1,0.111,0.000895,0.537,0.066,0.057,139.495,4,1,152266,FALSE,FALSE,Digsy's Dinner - Remastered,9,Definitely Maybe (Remastered),D,major,D major 2014-05-14,2014,0.0668,0.941,8,-2.699,1,0.137,9.49e-05,0.000343,0.253,0.236,188.529,4,1,392306,FALSE,FALSE,Slide Away - Remastered,10,Definitely Maybe (Remastered),G#,major,G# major 2014-05-14,2014,0.585,0.427,4,-10.907,1,0.0278,0.808,0,0.0984,0.313,87.615,4,1,196480,FALSE,FALSE,Married with Children - Remastered,11,Definitely Maybe (Remastered),E,major,E major 2010-06-14,2010,0.39,0.877,9,-4.829,1,0.0347,4.9e-05,0.00241,0.265,0.689,103.94,4,1,283744,FALSE,FALSE,Supersonic,1,Time Flies… (1994 - 2009),A,major,A major 2010-06-14,2010,0.244,0.985,9,-1.816,0,0.107,0.00302,0.000204,0.318,0.228,126.734,4,1,239826,FALSE,FALSE,Roll With It,2,Time Flies… (1994 - 2009),A,minor,A minor 2010-06-14,2010,0.29,0.769,9,-5.578,0,0.0329,1.44e-05,8.35e-06,0.375,0.198,90.248,4,1,276866,FALSE,FALSE,Live Forever,3,Time Flies… (1994 - 2009),A,minor,A minor 2010-06-14,2010,0.41,0.854,2,-5.609,1,0.0366,0.00236,0,0.133,0.456,174.584,4,1,258906,FALSE,FALSE,Wonderwall,4,Time Flies… (1994 - 2009),D,major,D major 2010-06-14,2010,0.331,0.558,2,-5.506,1,0.031,0.0689,1.96e-06,0.124,0.0985,150.19,4,1,303120,FALSE,FALSE,Stop Crying Your Heart Out,5,Time Flies… (1994 - 2009),D,major,D major 2010-06-14,2010,0.3,0.865,2,-2.473,1,0.0497,3.26e-05,0.055,0.162,0.466,114.661,4,1,289373,FALSE,FALSE,Cigarettes & Alcohol,6,Time Flies… (1994 - 2009),D,major,D major 2010-06-14,2010,0.491,0.561,2,-6.396,1,0.0279,0.274,2.16e-06,0.23,0.543,134.881,4,1,127600,FALSE,FALSE,Songbird,7,Time Flies… (1994 - 2009),D,major,D major 2010-06-14,2010,0.349,0.917,0,-3.645,1,0.071,0.026,7.25e-06,0.0968,0.206,164.036,4,1,287826,FALSE,FALSE,Don't Look Back In Anger,8,Time Flies… (1994 - 2009),C,major,C major 2010-06-14,2010,0.416,0.939,11,-3.247,1,0.0473,1.09e-05,1.05e-05,0.753,0.36,113.926,4,1,226400,FALSE,FALSE,The Hindu Times,9,Time Flies… (1994 - 2009),B,major,B major 2010-06-14,2010,0.229,0.848,7,-2.633,1,0.039,0.0126,1.7e-06,0.146,0.362,169.878,4,1,356626,FALSE,FALSE,Stand By Me,10,Time Flies… (1994 - 2009),G,major,G major 2010-06-14,2010,0.479,0.87,6,-3.057,1,0.039,0.00423,0.000233,0.11,0.48,133.164,4,1,199960,FALSE,FALSE,Lord Don't Slow Me Down,11,Time Flies… (1994 - 2009),F#,major,F# major 2010-06-14,2010,0.117,0.911,4,-5.951,1,0.067,0.00893,0.145,0.765,0.197,191.724,4,1,308453,FALSE,FALSE,Shakermaker,12,Time Flies… (1994 - 2009),E,major,E major 2010-06-14,2010,0.365,0.842,6,-3.446,0,0.0425,0.0054,0.00114,0.422,0.377,82.038,4,1,560040,FALSE,FALSE,All Around the World,13,Time Flies… (1994 - 2009),F#,minor,F# minor 2010-06-14,2010,0.263,0.935,0,-2.289,0,0.0933,0.181,0.013,0.331,0.0688,110.138,4,1,327920,FALSE,FALSE,Some Might Say,14,Time Flies… (1994 - 2009),C,minor,C minor 2010-06-14,2010,0.568,0.87,9,-2.258,0,0.0332,0.0459,0,0.12,0.585,109.819,4,1,219826,FALSE,FALSE,The Importance Of Being Idle,15,Time Flies… (1994 - 2009),A,minor,A minor 2010-06-14,2010,0.139,0.885,11,-3.247,0,0.0473,6.98e-05,0.000109,0.0972,0.216,80.063,4,1,462493,FALSE,FALSE,D'You Know What I Mean?,16,Time Flies… (1994 - 2009),B,minor,B minor 2010-06-14,2010,0.401,0.951,11,-2.57,1,0.0483,0.00014,0.000117,0.147,0.332,120.879,4,1,310440,FALSE,FALSE,Lyla,17,Time Flies… (1994 - 2009),B,major,B major 2010-06-14,2010,0.475,0.468,5,-4.774,1,0.0288,0.272,0,0.343,0.13,74.04,4,1,331693,FALSE,FALSE,Let There Be Love,18,Time Flies… (1994 - 2009),F,major,F major 2010-06-14,2010,0.408,0.857,2,-5.71,1,0.034,0.0131,7.44e-05,0.528,0.622,84.197,4,1,278693,FALSE,FALSE,Go Let It Out,19,Time Flies… (1994 - 2009),D,major,D major 2010-06-14,2010,0.31,0.801,0,-5.824,1,0.038,0.176,0.0797,0.182,0.312,153.088,4,1,344493,FALSE,FALSE,Who Feels Love?,20,Time Flies… (1994 - 2009),C,major,C major 2010-06-14,2010,0.405,0.632,2,-5.132,1,0.0273,0.0316,0.00251,0.112,0.141,145.936,4,1,292853,FALSE,FALSE,Little By Little,21,Time Flies… (1994 - 2009),D,major,D major 2010-06-14,2010,0.329,0.953,11,-2.416,0,0.0874,4.47e-05,0.558,0.302,0.0374,136.922,4,1,299946,FALSE,FALSE,The Shock Of The Lightning,22,Time Flies… (1994 - 2009),B,minor,B minor 2010-06-14,2010,0.463,0.642,0,-6.39,1,0.0299,0.43,1.31e-06,0.14,0.506,90.009,4,1,189373,FALSE,FALSE,She Is Love,23,Time Flies… (1994 - 2009),C,major,C major 2010-06-14,2010,0.268,0.887,7,-3.056,1,0.0342,0.0125,0.0378,0.591,0.344,91.191,4,1,381266,FALSE,FALSE,Whatever,24,Time Flies… (1994 - 2009),G,major,G major 2010-06-14,2010,0.428,0.618,4,-5.471,0,0.0276,0.000944,0.0232,0.435,0.0839,77.406,4,1,250013,FALSE,FALSE,I'm Outta Time,25,Time Flies… (1994 - 2009),E,minor,E minor 2010-06-14,2010,0.437,0.964,6,-3.031,0,0.0597,0.00103,0.0733,0.149,0.236,130.963,4,1,260079,FALSE,FALSE,Falling Down,26,Time Flies… (1994 - 2009),F#,minor,F# minor 2010,2010,0.39,0.88,9,-4.662,1,0.0358,3.67e-05,0.00799,0.0788,0.658,104.065,4,1,284693,FALSE,FALSE,Supersonic,1,Time Flies...1994-2009,A,major,A major 2010,2010,0.248,0.984,9,-1.784,0,0.113,0.00336,0.000165,0.218,0.215,126.596,4,1,239746,FALSE,FALSE,Roll with It,2,Time Flies...1994-2009,A,minor,A minor 2010,2010,0.107,0.862,5,-2.706,0,0.0448,8.82e-06,4.25e-05,0.325,0.139,91.54,4,1,276133,FALSE,FALSE,Live Forever,3,Time Flies...1994-2009,F,minor,F minor 2010,2010,0.405,0.894,2,-4.336,1,0.0343,0.000801,0,0.226,0.642,174.502,4,1,259838,FALSE,FALSE,Wonderwall,4,Time Flies...1994-2009,D,major,D major 2010,2010,0.38,0.589,2,-5.363,1,0.0298,0.0725,1.61e-06,0.122,0.0976,74.961,4,1,303026,FALSE,FALSE,Stop Crying Your Heart Out,5,Time Flies...1994-2009,D,major,D major 2010,2010,0.302,0.866,2,-2.332,1,0.0477,2.79e-05,0.222,0.0882,0.47,114.736,4,1,291893,FALSE,FALSE,Cigarettes & Alcohol,6,Time Flies...1994-2009,D,major,D major 2010,2010,0.485,0.571,2,-6.219,1,0.0284,0.263,2.44e-06,0.175,0.485,134.924,4,1,128919,FALSE,FALSE,Songbird,7,Time Flies...1994-2009,D,major,D major 2010,2010,0.348,0.914,0,-3.586,1,0.0666,0.0301,7.68e-06,0.0955,0.231,163.98,4,1,290253,FALSE,FALSE,Don't Look Back in Anger,8,Time Flies...1994-2009,C,major,C major 2010,2010,0.416,0.949,11,-3.051,1,0.0486,9.86e-06,1.94e-05,0.166,0.376,113.917,4,1,232786,FALSE,FALSE,The Hindu Times,9,Time Flies...1994-2009,B,major,B major 2010,2010,0.222,0.817,7,-2.643,1,0.0368,0.0109,2.25e-06,0.143,0.436,169.84,4,1,359586,FALSE,FALSE,Stand by Me,10,Time Flies...1994-2009,G,major,G major 2010,2010,0.481,0.873,6,-3.068,1,0.0384,0.00547,6.59e-05,0.116,0.46,133.156,4,1,199880,FALSE,FALSE,Lord Don't Slow Me Down,11,Time Flies...1994-2009,F#,major,F# major 2010,2010,0.114,0.901,4,-5.734,1,0.0699,0.00717,0.148,0.428,0.193,191.919,4,1,310813,FALSE,FALSE,Shakermaker,12,Time Flies...1994-2009,E,major,E major 2010,2010,0.119,0.838,6,-3.669,0,0.0508,0.0057,0.000984,0.0959,0.346,80.836,4,1,581120,FALSE,FALSE,All Around the World,13,Time Flies...1994-2009,F#,minor,F# minor 2010,2010,0.239,0.935,0,-2.215,0,0.0829,0.0404,0.0272,0.122,0.132,110.248,4,1,329133,FALSE,FALSE,Some Might Say,14,Time Flies...1994-2009,C,minor,C minor 2010,2010,0.578,0.87,9,-2.103,0,0.0322,0.0463,0,0.0609,0.592,109.873,4,1,222360,FALSE,FALSE,The Importance of Being Idle,15,Time Flies...1994-2009,A,minor,A minor 2010,2010,0.318,0.878,4,-3.24,1,0.0418,6.85e-05,6.74e-05,0.11,0.253,80.02,4,1,464520,FALSE,FALSE,D'You Know What I Mean?,16,Time Flies...1994-2009,E,major,E major 2010,2010,0.376,0.947,11,-1.649,1,0.0521,7.51e-05,0.00216,0.137,0.302,120.906,4,1,312026,FALSE,FALSE,Lyla,17,Time Flies...1994-2009,B,major,B major 2010,2010,0.485,0.479,5,-4.593,1,0.0277,0.26,1.16e-06,0.382,0.134,74.056,4,1,326813,FALSE,FALSE,Let There Be Love,18,Time Flies...1994-2009,F,major,F major 2010,2010,0.412,0.846,2,-5.617,1,0.0336,0.0118,3.03e-05,0.584,0.586,84.201,4,1,278893,FALSE,FALSE,Go Let It Out,19,Time Flies...1994-2009,D,major,D major 2010,2010,0.365,0.802,0,-5.698,1,0.0361,0.196,0.0466,0.25,0.351,76.532,4,1,344626,FALSE,FALSE,Who Feels Love?,20,Time Flies...1994-2009,C,major,C major 2010,2010,0.406,0.632,2,-4.903,1,0.027,0.0298,0.00331,0.121,0.0832,145.851,4,1,293746,FALSE,FALSE,Little By Little,21,Time Flies...1994-2009,D,major,D major 2010,2010,0.331,0.953,11,-2.415,0,0.0853,4.48e-05,0.583,0.253,0.0393,136.913,4,1,304346,FALSE,FALSE,The Shock Of The Lightning,22,Time Flies...1994-2009,B,minor,B minor 2010,2010,0.452,0.624,0,-6.529,1,0.0315,0.427,2.1e-06,0.117,0.514,89.841,4,1,193546,FALSE,FALSE,She Is Love,23,Time Flies...1994-2009,C,major,C major 2010,2010,0.264,0.898,7,-2.911,1,0.0362,0.0135,0.0323,0.589,0.314,90.707,4,1,380480,FALSE,FALSE,Whatever,24,Time Flies...1994-2009,G,major,G major 2010,2010,0.429,0.624,4,-5.39,0,0.0281,0.000892,0.0396,0.219,0.0928,77.405,4,1,248760,FALSE,FALSE,I'm Outta Time,25,Time Flies...1994-2009,E,minor,E minor 2010,2010,0.445,0.96,1,-3.27,0,0.0698,0.00118,0.138,0.336,0.182,130.968,4,1,267586,FALSE,FALSE,Falling Down,26,Time Flies...1994-2009,C#,minor,C# minor 2010,2010,0.201,0.178,0,-5.012,1,0.0355,0.0391,0.00045,0.139,0.222,77.994,4,1,723373,FALSE,FALSE,Don't Go Away,27,Time Flies...1994-2009,C,major,C major 2008-10-06,2008,0.419,0.894,7,-2.677,1,0.0379,0.000381,0.0274,0.596,0.33,90.913,4,1,280413,FALSE,FALSE,Bag It Up,1,Dig Out Your Soul,G,major,G major 2008-10-06,2008,0.444,0.936,7,-3.239,1,0.0735,0.00872,0.0117,0.138,0.194,119.812,4,1,304840,FALSE,FALSE,The Turning,2,Dig Out Your Soul,G,major,G major 2008-10-06,2008,0.409,0.837,0,-3.676,1,0.0494,0.00798,0.0017,0.176,0.316,169.736,4,1,182986,FALSE,FALSE,Waiting For The Rapture,3,Dig Out Your Soul,C,major,C major 2008-10-06,2008,0.336,0.956,11,-2.38,0,0.0889,4.13e-05,0.598,0.374,0.0375,136.909,4,1,299946,FALSE,FALSE,The Shock Of The Lightning,4,Dig Out Your Soul,B,minor,B minor 2008-10-06,2008,0.427,0.622,4,-5.467,0,0.028,0.00107,0.0467,0.431,0.0775,77.407,4,1,250013,FALSE,FALSE,I'm Outta Time,5,Dig Out Your Soul,E,minor,E minor 2008-10-06,2008,0.463,0.837,0,-5.207,1,0.0292,0.0298,0.442,0.605,0.499,78.054,4,1,246786,FALSE,FALSE,(Get Off Your) High Horse Lady,6,Dig Out Your Soul,C,major,C major 2008-10-06,2008,0.442,0.965,6,-3.003,0,0.0598,0.00107,0.107,0.146,0.252,130.961,4,1,260079,FALSE,FALSE,Falling Down,7,Dig Out Your Soul,F#,minor,F# minor 2008-10-06,2008,0.49,0.849,7,-3.784,1,0.0329,0.000366,0.206,0.221,0.635,100.675,4,1,275746,FALSE,FALSE,To Be Where There's Life,8,Dig Out Your Soul,G,major,G major 2008-10-06,2008,0.376,0.975,11,-3.504,1,0.0797,0.00382,0.00316,0.123,0.0847,112.759,3,1,134813,FALSE,FALSE,Ain't Got Nothin',9,Dig Out Your Soul,B,major,B major 2008-10-06,2008,0.189,0.835,2,-5.285,1,0.0543,0.00132,0.00524,0.324,0.0542,104.459,4,1,227866,FALSE,FALSE,The Nature Of Reality,10,Dig Out Your Soul,D,major,D major 2008-10-06,2008,0.416,0.753,1,-4.413,0,0.0328,0.00102,0.715,0.12,0.654,75.926,4,1,290746,FALSE,FALSE,Soldier On,11,Dig Out Your Soul,C#,minor,C# minor 2008-10-06,2008,0.482,0.942,11,-3.184,0,0.0304,0.000328,0.828,0.0966,0.309,130.943,4,1,268133,FALSE,FALSE,Falling Down - The Chemical Brothers remix,12,Dig Out Your Soul,B,minor,B minor 2008-10-06,2008,0.419,0.894,7,-2.677,1,0.0379,0.000381,0.0274,0.596,0.33,90.913,4,1,280413,FALSE,FALSE,Bag It Up,1,Dig Out Your Soul,G,major,G major 2008-10-06,2008,0.444,0.936,7,-3.239,1,0.0735,0.00872,0.0117,0.138,0.194,119.812,4,1,304840,FALSE,FALSE,The Turning,2,Dig Out Your Soul,G,major,G major 2008-10-06,2008,0.409,0.837,0,-3.676,1,0.0494,0.00798,0.0017,0.176,0.316,169.736,4,1,182986,FALSE,FALSE,Waiting For The Rapture,3,Dig Out Your Soul,C,major,C major 2008-10-06,2008,0.336,0.956,11,-2.38,0,0.0889,4.13e-05,0.598,0.374,0.0375,136.909,4,1,299946,FALSE,FALSE,The Shock Of The Lightning,4,Dig Out Your Soul,B,minor,B minor 2008-10-06,2008,0.427,0.622,4,-5.467,0,0.028,0.00107,0.0467,0.431,0.0775,77.407,4,1,250013,FALSE,FALSE,I'm Outta Time,5,Dig Out Your Soul,E,minor,E minor 2008-10-06,2008,0.463,0.837,0,-5.207,1,0.0292,0.0298,0.442,0.605,0.499,78.054,4,1,246786,FALSE,FALSE,(Get Off Your) High Horse Lady,6,Dig Out Your Soul,C,major,C major 2008-10-06,2008,0.442,0.965,6,-3.003,0,0.0598,0.00107,0.107,0.146,0.252,130.961,4,1,260079,FALSE,FALSE,Falling Down,7,Dig Out Your Soul,F#,minor,F# minor 2008-10-06,2008,0.49,0.849,7,-3.784,1,0.0329,0.000366,0.206,0.221,0.635,100.675,4,1,275746,FALSE,FALSE,To Be Where There's Life,8,Dig Out Your Soul,G,major,G major 2008-10-06,2008,0.376,0.975,11,-3.504,1,0.0797,0.00382,0.00316,0.123,0.0847,112.759,3,1,134813,FALSE,FALSE,Ain't Got Nothin',9,Dig Out Your Soul,B,major,B major 2008-10-06,2008,0.189,0.835,2,-5.285,1,0.0543,0.00132,0.00524,0.324,0.0542,104.459,4,1,227866,FALSE,FALSE,The Nature Of Reality,10,Dig Out Your Soul,D,major,D major 2008-10-06,2008,0.416,0.753,1,-4.413,0,0.0328,0.00102,0.715,0.12,0.654,75.926,4,1,290746,FALSE,FALSE,Soldier On,11,Dig Out Your Soul,C#,minor,C# minor 2008-10-06,2008,0.579,0.716,9,-6.704,0,0.031,2.25e-05,0.743,0.086,0.0703,126.019,4,1,266040,FALSE,FALSE,The Shock Of The Lightning - Primal Scream Remix,12,Dig Out Your Soul,A,minor,A minor 2008-10-06,2008,0.419,0.893,7,-2.677,1,0.0378,0.000374,0.027,0.596,0.33,90.913,4,1,280413,FALSE,FALSE,Bag It Up,1,Dig Out Your Soul,G,major,G major 2008-10-06,2008,0.447,0.936,7,-3.239,1,0.0748,0.00888,0.0114,0.138,0.193,119.809,4,1,304840,FALSE,FALSE,The Turning,2,Dig Out Your Soul,G,major,G major 2008-10-06,2008,0.41,0.837,0,-3.676,1,0.0494,0.00798,0.00167,0.176,0.316,169.731,4,1,182986,FALSE,FALSE,Waiting For The Rapture,3,Dig Out Your Soul,C,major,C major 2008-10-06,2008,0.335,0.956,11,-2.375,0,0.089,4.13e-05,0.595,0.374,0.0375,136.904,4,1,299946,FALSE,FALSE,The Shock Of The Lightning,4,Dig Out Your Soul,B,minor,B minor 2008-10-06,2008,0.427,0.622,4,-5.467,0,0.028,0.00107,0.0458,0.431,0.0775,77.406,4,1,250013,FALSE,FALSE,I'm Outta Time,5,Dig Out Your Soul,E,minor,E minor 2008-10-06,2008,0.464,0.837,0,-5.207,1,0.0286,0.0298,0.439,0.605,0.505,78.05,4,1,246786,FALSE,FALSE,(Get Off Your) High Horse Lady,6,Dig Out Your Soul,C,major,C major 2008-10-06,2008,0.441,0.965,6,-3.003,0,0.0599,0.00105,0.108,0.146,0.253,130.959,4,1,260079,FALSE,FALSE,Falling Down,7,Dig Out Your Soul,F#,minor,F# minor 2008-10-06,2008,0.49,0.849,7,-3.785,1,0.0329,0.000366,0.199,0.221,0.635,100.674,4,1,275746,FALSE,FALSE,To Be Where There's Life,8,Dig Out Your Soul,G,major,G major 2008-10-06,2008,0.378,0.975,11,-3.504,1,0.0797,0.00382,0.00316,0.123,0.0847,112.749,3,1,134813,FALSE,FALSE,Ain't Got Nothin',9,Dig Out Your Soul,B,major,B major 2008-10-06,2008,0.281,0.835,2,-5.285,1,0.0522,0.00132,0.00524,0.324,0.0551,104.663,4,1,227866,FALSE,FALSE,The Nature Of Reality,10,Dig Out Your Soul,D,major,D major 2008-10-06,2008,0.416,0.753,1,-4.413,0,0.0328,0.00102,0.714,0.12,0.651,75.926,4,1,290746,FALSE,FALSE,Soldier On,11,Dig Out Your Soul,C#,minor,C# minor 2008-10-06,2008,0.414,0.893,7,-2.69,1,0.0377,0.000356,0.0949,0.602,0.345,90.902,4,1,280413,FALSE,FALSE,Bag It Up,1,Dig Out Your Soul,G,major,G major 2008-10-06,2008,0.444,0.937,7,-3.259,1,0.0714,0.00898,0.00705,0.138,0.191,119.805,4,1,304840,FALSE,FALSE,The Turning,2,Dig Out Your Soul,G,major,G major 2008-10-06,2008,0.403,0.849,0,-3.688,1,0.0515,0.00975,0.0012,0.182,0.338,169.761,4,1,182986,FALSE,FALSE,Waiting For The Rapture,3,Dig Out Your Soul,C,major,C major 2008-10-06,2008,0.329,0.953,11,-2.416,0,0.0874,4.47e-05,0.558,0.302,0.0374,136.922,4,1,299946,FALSE,FALSE,The Shock Of The Lightning,4,Dig Out Your Soul,B,minor,B minor 2008-10-06,2008,0.428,0.618,4,-5.471,0,0.0276,0.000944,0.0232,0.435,0.0839,77.406,4,1,250013,FALSE,FALSE,I'm Outta Time,5,Dig Out Your Soul,E,minor,E minor 2008-10-06,2008,0.465,0.836,7,-5.172,1,0.028,0.033,0.478,0.593,0.476,78.051,4,1,246786,FALSE,FALSE,(Get Off Your) High Horse Lady,6,Dig Out Your Soul,G,major,G major 2008-10-06,2008,0.437,0.964,6,-3.031,0,0.0597,0.00103,0.0733,0.149,0.236,130.963,4,1,260079,FALSE,FALSE,Falling Down,7,Dig Out Your Soul,F#,minor,F# minor 2008-10-06,2008,0.487,0.848,7,-3.808,1,0.0332,0.000411,0.244,0.214,0.623,100.729,4,1,275746,FALSE,FALSE,To Be Where There's Life,8,Dig Out Your Soul,G,major,G major 2008-10-06,2008,0.378,0.977,11,-3.518,1,0.0757,0.00352,0.00379,0.118,0.0893,112.782,3,1,134813,FALSE,FALSE,Ain't Got Nothin',9,Dig Out Your Soul,B,major,B major 2008-10-06,2008,0.308,0.836,2,-5.215,1,0.0509,0.00178,0.0112,0.323,0.0529,104.742,4,1,227866,FALSE,FALSE,The Nature Of Reality,10,Dig Out Your Soul,D,major,D major 2008-10-06,2008,0.415,0.752,1,-4.442,0,0.0335,0.000857,0.725,0.126,0.633,75.918,4,1,290746,FALSE,FALSE,Soldier On,11,Dig Out Your Soul,C#,minor,C# minor 2008-10-04,2008,0.419,0.894,7,-2.677,1,0.0379,0.000381,0.0274,0.596,0.33,90.913,4,1,280413,FALSE,FALSE,Bag It Up,1,Dig Out Your Soul,G,major,G major 2008-10-04,2008,0.444,0.936,7,-3.239,1,0.0735,0.00872,0.0117,0.138,0.194,119.812,4,1,304840,FALSE,FALSE,The Turning,2,Dig Out Your Soul,G,major,G major 2008-10-04,2008,0.409,0.837,0,-3.676,1,0.0494,0.00798,0.0017,0.176,0.316,169.736,4,1,182986,FALSE,FALSE,Waiting For The Rapture,3,Dig Out Your Soul,C,major,C major 2008-10-04,2008,0.336,0.956,11,-2.38,0,0.0889,4.13e-05,0.598,0.374,0.0375,136.909,4,1,299946,FALSE,FALSE,The Shock Of The Lightning,4,Dig Out Your Soul,B,minor,B minor 2008-10-04,2008,0.427,0.622,4,-5.467,0,0.028,0.00107,0.0467,0.431,0.0775,77.407,4,1,250013,FALSE,FALSE,I'm Outta Time,5,Dig Out Your Soul,E,minor,E minor 2008-10-04,2008,0.463,0.837,0,-5.207,1,0.0292,0.0298,0.442,0.605,0.499,78.054,4,1,246786,FALSE,FALSE,(Get Off Your) High Horse Lady,6,Dig Out Your Soul,C,major,C major 2008-10-04,2008,0.442,0.965,6,-3.003,0,0.0598,0.00107,0.107,0.146,0.252,130.961,4,1,260079,FALSE,FALSE,Falling Down,7,Dig Out Your Soul,F#,minor,F# minor 2008-10-04,2008,0.49,0.849,7,-3.784,1,0.0329,0.000366,0.206,0.221,0.635,100.675,4,1,275746,FALSE,FALSE,To Be Where There's Life,8,Dig Out Your Soul,G,major,G major 2008-10-04,2008,0.376,0.975,11,-3.504,1,0.0797,0.00382,0.00316,0.123,0.0847,112.759,3,1,134813,FALSE,FALSE,Ain't Got Nothin',9,Dig Out Your Soul,B,major,B major 2008-10-04,2008,0.189,0.835,2,-5.285,1,0.0543,0.00132,0.00524,0.324,0.0542,104.459,4,1,227866,FALSE,FALSE,The Nature Of Reality,10,Dig Out Your Soul,D,major,D major 2008-10-04,2008,0.416,0.753,1,-4.413,0,0.0328,0.00102,0.715,0.12,0.654,75.926,4,1,290746,FALSE,FALSE,Soldier On,11,Dig Out Your Soul,C#,minor,C# minor 2008-10-03,2008,0.419,0.894,7,-2.677,1,0.0379,0.000381,0.0274,0.596,0.33,90.913,4,1,280413,FALSE,FALSE,Bag It Up,1,Dig Out Your Soul,G,major,G major 2008-10-03,2008,0.444,0.936,7,-3.239,1,0.0735,0.00872,0.0117,0.138,0.194,119.812,4,1,304840,FALSE,FALSE,The Turning,2,Dig Out Your Soul,G,major,G major 2008-10-03,2008,0.409,0.837,0,-3.676,1,0.0494,0.00798,0.0017,0.176,0.316,169.736,4,1,182986,FALSE,FALSE,Waiting For The Rapture,3,Dig Out Your Soul,C,major,C major 2008-10-03,2008,0.336,0.956,11,-2.38,0,0.0889,4.13e-05,0.598,0.374,0.0375,136.909,4,1,299946,FALSE,FALSE,The Shock Of The Lightning,4,Dig Out Your Soul,B,minor,B minor 2008-10-03,2008,0.427,0.622,4,-5.467,0,0.028,0.00107,0.0467,0.431,0.0775,77.407,4,1,250013,FALSE,FALSE,I'm Outta Time,5,Dig Out Your Soul,E,minor,E minor 2008-10-03,2008,0.463,0.837,0,-5.207,1,0.0292,0.0298,0.442,0.605,0.499,78.054,4,1,246786,FALSE,FALSE,(Get Off Your) High Horse Lady,6,Dig Out Your Soul,C,major,C major 2008-10-03,2008,0.442,0.965,6,-3.003,0,0.0598,0.00107,0.107,0.146,0.252,130.961,4,1,260079,FALSE,FALSE,Falling Down,7,Dig Out Your Soul,F#,minor,F# minor 2008-10-03,2008,0.49,0.849,7,-3.784,1,0.0329,0.000366,0.206,0.221,0.635,100.675,4,1,275746,FALSE,FALSE,To Be Where There's Life,8,Dig Out Your Soul,G,major,G major 2008-10-03,2008,0.376,0.975,11,-3.504,1,0.0797,0.00382,0.00316,0.123,0.0847,112.759,3,1,134813,FALSE,FALSE,Ain't Got Nothin',9,Dig Out Your Soul,B,major,B major 2008-10-03,2008,0.189,0.835,2,-5.285,1,0.0543,0.00132,0.00524,0.324,0.0542,104.459,4,1,227866,FALSE,FALSE,The Nature Of Reality,10,Dig Out Your Soul,D,major,D major 2008-10-03,2008,0.416,0.753,1,-4.413,0,0.0328,0.00102,0.715,0.12,0.654,75.926,4,1,290746,FALSE,FALSE,Soldier On,11,Dig Out Your Soul,C#,minor,C# minor 2008-10-01,2008,0.419,0.893,7,-2.677,1,0.0378,0.000374,0.027,0.596,0.33,90.913,4,1,280413,FALSE,FALSE,Bag It Up,1,Dig Out Your Soul,G,major,G major 2008-10-01,2008,0.447,0.936,7,-3.239,1,0.0748,0.00888,0.0114,0.138,0.193,119.809,4,1,304840,FALSE,FALSE,The Turning,2,Dig Out Your Soul,G,major,G major 2008-10-01,2008,0.41,0.837,0,-3.676,1,0.0494,0.00798,0.00167,0.176,0.316,169.731,4,1,182986,FALSE,FALSE,Waiting For The Rapture,3,Dig Out Your Soul,C,major,C major 2008-10-01,2008,0.335,0.956,11,-2.375,0,0.089,4.13e-05,0.595,0.374,0.0375,136.904,4,1,299946,FALSE,FALSE,The Shock Of The Lightning,4,Dig Out Your Soul,B,minor,B minor 2008-10-01,2008,0.427,0.622,4,-5.467,0,0.028,0.00107,0.0458,0.431,0.0775,77.406,4,1,250013,FALSE,FALSE,I'm Outta Time,5,Dig Out Your Soul,E,minor,E minor 2008-10-01,2008,0.464,0.837,0,-5.207,1,0.0286,0.0298,0.439,0.605,0.505,78.05,4,1,246786,FALSE,FALSE,(Get Off Your) High Horse Lady,6,Dig Out Your Soul,C,major,C major 2008-10-01,2008,0.441,0.965,6,-3.003,0,0.0599,0.00105,0.108,0.146,0.253,130.959,4,1,260079,FALSE,FALSE,Falling Down,7,Dig Out Your Soul,F#,minor,F# minor 2008-10-01,2008,0.49,0.849,7,-3.785,1,0.0329,0.000366,0.199,0.221,0.635,100.674,4,1,275746,FALSE,FALSE,To Be Where There's Life,8,Dig Out Your Soul,G,major,G major 2008-10-01,2008,0.378,0.975,11,-3.504,1,0.0797,0.00382,0.00316,0.123,0.0847,112.749,3,1,134813,FALSE,FALSE,Ain't Got Nothin',9,Dig Out Your Soul,B,major,B major 2008-10-01,2008,0.281,0.835,2,-5.285,1,0.0522,0.00132,0.00524,0.324,0.0551,104.663,4,1,227866,FALSE,FALSE,The Nature Of Reality,10,Dig Out Your Soul,D,major,D major 2008-10-01,2008,0.416,0.753,1,-4.413,0,0.0328,0.00102,0.714,0.12,0.651,75.926,4,1,289026,FALSE,FALSE,Soldier On,11,Dig Out Your Soul,C#,minor,C# minor 2008-10-01,2008,0.558,0.924,11,-2.928,0,0.0384,0.00135,0.00583,0.0888,0.884,97.07,4,1,163840,FALSE,FALSE,I Believe In All,12,Dig Out Your Soul,B,minor,B minor 2008-10-01,2008,0.447,0.945,7,-2.809,1,0.0657,0.0054,0.107,0.0796,0.211,127.189,4,1,309080,FALSE,FALSE,The Turning (Alt Version # 4),13,Dig Out Your Soul,G,major,G major 2006-11-20,2006,0.309,0.973,4,-2.664,1,0.0722,0.000652,0.00117,0.551,0.431,138.096,4,1,320920,FALSE,FALSE,Rock 'n' Roll Star,1,Stop The Clocks,E,major,E major 2006-11-20,2006,0.277,0.96,0,-1.456,0,0.0953,0.183,0.0206,0.283,0.0498,110.299,4,1,310840,FALSE,FALSE,Some Might Say,2,Stop The Clocks,C,minor,C minor 2006-11-20,2006,0.35,0.46,4,-8.397,0,0.0265,0.465,2.07e-05,0.361,0.354,84.559,4,1,259786,FALSE,FALSE,Talk Tonight,3,Stop The Clocks,E,minor,E minor 2006-11-20,2006,0.379,0.947,11,-1.63,1,0.0505,0.000109,0.00227,0.131,0.288,120.876,4,1,311000,FALSE,FALSE,Lyla,4,Stop The Clocks,B,major,B major 2006-11-20,2006,0.576,0.874,9,-2.13,0,0.0331,0.0473,0,0.0703,0.578,109.843,4,1,221386,FALSE,FALSE,The Importance Of Being Idle,5,Stop The Clocks,A,minor,A minor 2006-11-20,2006,0.409,0.896,2,-4.36,1,0.0335,0.000785,0,0.209,0.678,174.624,4,1,258613,FALSE,FALSE,Wonderwall,6,Stop The Clocks,D,major,D major 2006-11-20,2006,0.0664,0.947,5,-2.467,0,0.16,0.00163,0.000206,0.376,0.177,186.898,4,1,374333,FALSE,FALSE,Slide Away,7,Stop The Clocks,F,minor,F minor 2006-11-20,2006,0.294,0.817,2,-2.33,1,0.0493,5.51e-05,0.0804,0.184,0.454,114.671,4,1,288093,FALSE,FALSE,Cigarettes & Alcohol,8,Stop The Clocks,D,major,D major 2006-11-20,2006,0.349,0.633,7,-5.124,1,0.031,0.1,3.82e-05,0.115,0.187,149.707,4,1,320920,FALSE,FALSE,The Masterplan,9,Stop The Clocks,G,major,G major 2006-11-20,2006,0.108,0.864,10,-2.711,1,0.0451,8.71e-06,7.96e-05,0.307,0.12,90.955,4,1,276666,FALSE,FALSE,Live Forever,10,Stop The Clocks,A#,major,A# major 2006-11-20,2006,0.208,0.938,7,-1.806,1,0.0777,0.0206,0.00133,0.594,0.174,113.35,4,1,263640,FALSE,FALSE,Acquiesce,11,Stop The Clocks,G,major,G major 2006-11-20,2006,0.381,0.915,9,-2.887,1,0.037,5.17e-05,0.00466,0.0873,0.641,103.925,4,1,275160,FALSE,FALSE,Supersonic,12,Stop The Clocks,A,major,A major 2006-11-20,2006,0.337,0.438,0,-9.045,1,0.031,0.307,0,0.102,0.238,171.718,3,1,255080,FALSE,FALSE,Half The World Away,13,Stop The Clocks,C,major,C major 2006-11-20,2006,0.381,0.916,2,-3.041,1,0.043,0.00849,7.06e-06,0.617,0.534,84.058,4,1,281640,FALSE,FALSE,Go Let It Out,14,Stop The Clocks,D,major,D major 2006-11-20,2006,0.487,0.543,2,-7.066,1,0.0279,0.26,0,0.284,0.504,134.835,4,1,125986,FALSE,FALSE,Songbird,15,Stop The Clocks,D,major,D major 2006-11-20,2006,0.33,0.99,0,-2.127,1,0.107,0.069,0.00118,0.686,0.0966,136.862,4,1,301933,FALSE,FALSE,Morning Glory,16,Stop The Clocks,C,major,C major 2006-11-20,2006,0.304,0.867,2,-2.299,1,0.0398,0.202,0.00409,0.358,0.116,150.474,4,1,449333,FALSE,FALSE,Champagne Supernova,17,Stop The Clocks,D,major,D major 2006-11-20,2006,0.32,0.94,0,-2.433,1,0.0556,0.0655,0,0.0845,0.311,162.844,4,1,293573,FALSE,FALSE,Don't Look Back In Anger,18,Stop The Clocks,C,major,C major 2006,2006,0.312,0.977,4,-2.694,1,0.0644,0.000639,0.0026,0.579,0.444,138.04,4,1,320920,FALSE,FALSE,Rock 'n' Roll Star,1,Stop The Clocks,E,major,E major 2006,2006,0.284,0.945,0,-1.408,0,0.094,0.179,0.013,0.334,0.0589,109.847,4,1,310840,FALSE,FALSE,Some Might Say,2,Stop The Clocks,C,minor,C minor 2006,2006,0.442,0.448,4,-8.407,0,0.0262,0.448,3.15e-05,0.359,0.357,84.595,4,1,259786,FALSE,FALSE,Talk Tonight,3,Stop The Clocks,E,minor,E minor 2006,2006,0.379,0.952,11,-1.648,1,0.0519,1e-04,0.0016,0.133,0.268,121.001,4,1,311000,FALSE,FALSE,Lyla,4,Stop The Clocks,B,major,B major 2006,2006,0.575,0.869,9,-2.123,0,0.0325,0.0426,0,0.0767,0.599,109.838,4,1,221386,FALSE,FALSE,The Importance of Being Idle,5,Stop The Clocks,A,minor,A minor 2006,2006,0.406,0.889,6,-4.364,0,0.0325,0.000682,0,0.205,0.706,174.593,4,1,258613,FALSE,FALSE,Wonderwall,6,Stop The Clocks,F#,minor,F# minor 2006,2006,0.0662,0.949,5,-2.463,0,0.159,0.00198,0.000757,0.389,0.188,187.11,4,1,374333,FALSE,FALSE,Slide Away,7,Stop The Clocks,F,minor,F minor 2006,2006,0.296,0.822,2,-2.337,1,0.0493,4.28e-05,0.0611,0.173,0.483,114.695,4,1,288093,FALSE,FALSE,Cigarettes & Alcohol,8,Stop The Clocks,D,major,D major 2006,2006,0.363,0.633,7,-5.138,1,0.031,0.0881,2.96e-05,0.129,0.17,148.382,4,1,320920,FALSE,FALSE,The Masterplan,9,Stop The Clocks,G,major,G major 2006,2006,0.211,0.856,10,-2.713,1,0.0432,7.21e-06,4.13e-05,0.341,0.115,125.521,5,1,275733,FALSE,FALSE,Live Forever,10,Stop The Clocks,A#,major,A# major 2006,2006,0.191,0.936,7,-1.804,1,0.0726,0.025,0.000655,0.555,0.172,111.721,4,1,263680,FALSE,FALSE,Acquiesce,11,Stop The Clocks,G,major,G major 2006,2006,0.381,0.912,9,-2.899,1,0.0376,5.04e-05,0.00292,0.082,0.581,103.971,4,1,275120,FALSE,FALSE,Supersonic,12,Stop The Clocks,A,major,A major 2006,2006,0.342,0.434,0,-9.076,1,0.0325,0.289,0,0.113,0.233,172.165,3,1,255080,FALSE,FALSE,Half the World Away,13,Stop The Clocks,C,major,C major 2006,2006,0.384,0.915,2,-3.037,1,0.0425,0.0075,9.06e-06,0.555,0.53,84.041,4,1,281640,FALSE,FALSE,Go Let It Out,14,Stop The Clocks,D,major,D major 2006,2006,0.485,0.526,2,-7.04,1,0.0283,0.248,0,0.27,0.512,134.859,4,1,125986,FALSE,FALSE,Songbird,15,Stop The Clocks,D,major,D major 2006,2006,0.322,0.986,0,-2.247,1,0.102,0.0716,0.000576,0.673,0.102,136.788,4,1,301933,FALSE,FALSE,Morning Glory,16,Stop The Clocks,C,major,C major 2006,2006,0.301,0.863,2,-2.274,1,0.0392,0.222,0.00184,0.357,0.114,150.445,4,1,449333,FALSE,FALSE,Champagne Supernova,17,Stop The Clocks,D,major,D major 2006,2006,0.321,0.936,0,-2.434,1,0.0578,0.0527,0,0.0776,0.306,162.692,4,1,306440,FALSE,FALSE,Don't Look Back in Anger,18,Stop The Clocks,C,major,C major 2006,2006,0.246,0.982,9,-1.63,0,0.115,0.00349,0.000148,0.19,0.225,126.608,4,1,240533,FALSE,FALSE,Roll With It,19,Stop The Clocks,A,minor,A minor 2006,2006,0.484,0.464,5,-4.628,1,0.0283,0.282,0,0.343,0.137,74.032,4,1,330080,FALSE,FALSE,Let There Be Love,20,Stop The Clocks,F,major,F major 2005-05-31,2005,0.382,0.871,7,-2.983,1,0.0417,0.00413,0.664,0.0913,0.111,119.806,4,1,239240,FALSE,FALSE,Turn Up The Sun,1,Don't Believe The Truth,G,major,G major 2005-05-31,2005,0.408,0.977,9,-1.631,1,0.05,0.000396,0.0455,0.248,0.238,110.735,4,1,235960,FALSE,FALSE,Mucky Fingers,2,Don't Believe The Truth,A,major,A major 2005-05-31,2005,0.399,0.949,11,-2.431,1,0.0474,0.000153,0.000127,0.141,0.269,120.948,4,1,310440,FALSE,FALSE,Lyla,3,Don't Believe The Truth,B,major,B major 2005-05-31,2005,0.283,0.918,9,-2.471,1,0.0464,0.00869,9.87e-05,0.153,0.667,176.834,3,1,172880,FALSE,FALSE,Love Like A Bomb,4,Don't Believe The Truth,A,major,A major 2005-05-31,2005,0.593,0.88,9,-2.113,0,0.0311,0.0494,0,0.106,0.588,109.9,4,1,219826,FALSE,FALSE,The Importance of Being Idle,5,Don't Believe The Truth,A,minor,A minor 2005-05-31,2005,0.413,0.999,9,-2.857,1,0.0499,0.0438,0.008,0.587,0.354,154.927,4,1,102826,FALSE,FALSE,The Meaning Of Soul,6,Don't Believe The Truth,A,major,A major 2005-05-31,2005,0.605,0.707,6,-6.498,1,0.028,0.345,1.73e-05,0.389,0.206,103.832,4,1,204746,FALSE,FALSE,Guess God Thinks I'm Abel,7,Don't Believe The Truth,F#,major,F# major 2005-05-31,2005,0.398,0.986,9,-2.821,0,0.0613,0.0254,0.00252,0.372,0.652,88.905,3,1,228120,FALSE,FALSE,Part Of The Queue,8,Don't Believe The Truth,A,minor,A minor 2005-05-31,2005,0.147,0.853,4,-2.151,1,0.064,0.043,0.000647,0.22,0.132,191.793,4,1,345706,FALSE,FALSE,Keep The Dream Alive,9,Don't Believe The Truth,E,major,E major 2005-05-31,2005,0.375,0.71,6,-2.024,1,0.0502,0.117,0.00639,0.244,0.231,114.937,4,1,187640,FALSE,FALSE,A Bell Will Ring,10,Don't Believe The Truth,F#,major,F# major 2005-05-31,2005,0.442,0.477,5,-4.668,1,0.0292,0.28,0,0.344,0.147,148.006,4,1,331653,FALSE,FALSE,Let There Be Love,11,Don't Believe The Truth,F,major,F major 2005-05-30,2005,0.386,0.864,7,-3.033,1,0.0417,0.00466,0.671,0.0911,0.113,119.8,4,1,239240,FALSE,FALSE,Turn Up The Sun,1,Don't Believe The Truth,G,major,G major 2005-05-30,2005,0.412,0.977,9,-1.621,1,0.0503,0.000397,0.0501,0.262,0.235,110.729,4,1,235960,FALSE,FALSE,Mucky Fingers,2,Don't Believe The Truth,A,major,A major 2005-05-30,2005,0.399,0.953,11,-2.424,1,0.0482,0.000176,0.000101,0.145,0.307,120.945,4,1,310440,FALSE,FALSE,Lyla,3,Don't Believe The Truth,B,major,B major 2005-05-30,2005,0.36,0.921,9,-2.47,1,0.045,0.0069,9.65e-05,0.156,0.643,88.449,4,1,172880,FALSE,FALSE,Love Like A Bomb,4,Don't Believe The Truth,A,major,A major 2005-05-30,2005,0.572,0.875,9,-2.111,0,0.0337,0.0517,0,0.111,0.595,109.851,4,1,219826,FALSE,FALSE,The Importance of Being Idle,5,Don't Believe The Truth,A,minor,A minor 2005-05-30,2005,0.407,0.999,9,-2.851,1,0.0508,0.0423,0.019,0.548,0.325,154.891,4,1,102826,FALSE,FALSE,The Meaning Of Soul,6,Don't Believe The Truth,A,major,A major 2005-05-30,2005,0.604,0.693,6,-6.53,1,0.0289,0.321,1.07e-05,0.456,0.207,103.833,4,1,204746,FALSE,FALSE,Guess God Thinks I'm Abel,7,Don't Believe The Truth,F#,major,F# major 2005-05-30,2005,0.403,0.985,9,-2.836,0,0.0574,0.0213,0.00328,0.37,0.675,88.934,3,1,228120,FALSE,FALSE,Part Of The Queue,8,Don't Believe The Truth,A,minor,A minor 2005-05-30,2005,0.15,0.871,4,-2.162,1,0.0686,0.048,0.00059,0.387,0.116,191.835,4,1,345706,FALSE,FALSE,Keep The Dream Alive,9,Don't Believe The Truth,E,major,E major 2005-05-30,2005,0.373,0.778,11,-2.049,1,0.0517,0.148,0.00288,0.237,0.239,114.906,4,1,187640,FALSE,FALSE,A Bell Will Ring,10,Don't Believe The Truth,B,major,B major 2005-05-30,2005,0.484,0.457,5,-4.684,1,0.0286,0.276,0,0.338,0.132,74.041,4,1,331653,FALSE,FALSE,Let There Be Love,11,Don't Believe The Truth,F,major,F major 2005-05-30,2005,0.379,0.857,7,-3.169,1,0.0413,0.00519,0.729,0.089,0.123,119.814,4,1,239240,FALSE,FALSE,Turn Up The Sun,1,Don't Believe The Truth,G,major,G major 2005-05-30,2005,0.404,0.974,9,-1.746,1,0.0497,0.000419,0.0417,0.268,0.234,110.733,4,1,235946,FALSE,FALSE,Mucky Fingers,2,Don't Believe The Truth,A,major,A major 2005-05-30,2005,0.401,0.951,11,-2.57,1,0.0483,0.00014,0.000117,0.147,0.332,120.879,4,1,310440,FALSE,FALSE,Lyla,3,Don't Believe The Truth,B,major,B major 2005-05-30,2005,0.105,0.929,9,-2.606,1,0.0581,0.00555,4.34e-05,0.139,0.632,176.945,3,1,172920,FALSE,FALSE,Love Like A Bomb,4,Don't Believe The Truth,A,major,A major 2005-05-30,2005,0.568,0.87,9,-2.258,0,0.0332,0.0459,0,0.12,0.585,109.819,4,1,219826,FALSE,FALSE,The Importance Of Being Idle,5,Don't Believe The Truth,A,minor,A minor 2005-05-30,2005,0.405,0.999,9,-3.07,1,0.0506,0.0531,0.00167,0.53,0.366,154.905,4,1,102813,FALSE,FALSE,The Meaning Of Soul,6,Don't Believe The Truth,A,major,A major 2005-05-30,2005,0.603,0.684,6,-6.636,1,0.0276,0.326,1.79e-05,0.391,0.28,103.816,4,1,204733,FALSE,FALSE,Guess God Thinks I'm Abel,7,Don't Believe The Truth,F#,major,F# major 2005-05-30,2005,0.403,0.987,9,-3.02,0,0.0613,0.0204,0.00144,0.373,0.599,88.94,3,1,228120,FALSE,FALSE,Part Of The Queue,8,Don't Believe The Truth,A,minor,A minor 2005-05-30,2005,0.127,0.846,4,-2.297,1,0.0623,0.0494,0.000932,0.383,0.107,191.729,4,1,345706,FALSE,FALSE,Keep The Dream Alive,9,Don't Believe The Truth,E,major,E major 2005-05-30,2005,0.371,0.706,6,-2.173,1,0.0497,0.16,0.00172,0.193,0.291,114.925,4,1,187626,FALSE,FALSE,A Bell Will Ring,10,Don't Believe The Truth,F#,major,F# major 2005-05-30,2005,0.475,0.468,5,-4.774,1,0.0288,0.272,0,0.343,0.13,74.04,4,1,331693,FALSE,FALSE,Let There Be Love,11,Don't Believe The Truth,F,major,F major 2005-05-25,2005,0.384,0.857,7,-3.015,1,0.0405,0.00362,0.721,0.092,0.116,119.822,4,1,239280,FALSE,FALSE,Turn Up The Sun,1,Don't Believe The Truth,G,major,G major 2005-05-25,2005,0.416,0.979,9,-1.62,1,0.0501,0.000446,0.0458,0.261,0.242,110.722,4,1,236200,FALSE,FALSE,Mucky Fingers,2,Don't Believe The Truth,A,major,A major 2005-05-25,2005,0.393,0.948,11,-2.397,1,0.0488,0.000148,8.54e-05,0.118,0.301,120.914,4,1,310213,FALSE,FALSE,Lyla,3,Don't Believe The Truth,B,major,B major 2005-05-25,2005,0.278,0.923,9,-2.438,1,0.0455,0.00799,6.37e-05,0.144,0.69,176.629,3,1,172933,FALSE,FALSE,Love Like A Bomb,4,Don't Believe The Truth,A,major,A major 2005-05-25,2005,0.583,0.877,9,-2.119,0,0.0334,0.049,0,0.118,0.606,109.927,4,1,219706,FALSE,FALSE,The Importance of Being Idle,5,Don't Believe The Truth,A,minor,A minor 2005-05-25,2005,0.41,0.999,9,-2.884,1,0.0494,0.0524,0.0139,0.475,0.366,154.918,4,1,102960,FALSE,FALSE,The Meaning Of Soul,6,Don't Believe The Truth,A,major,A major 2005-05-25,2005,0.602,0.708,6,-6.502,1,0.028,0.326,2.81e-05,0.411,0.181,103.839,4,1,204773,FALSE,FALSE,Guess God Thinks I'm Abel,7,Don't Believe The Truth,F#,major,F# major 2005-05-25,2005,0.388,0.986,9,-2.821,0,0.0618,0.0222,0.00399,0.376,0.671,88.812,3,1,227973,FALSE,FALSE,Part Of The Queue,8,Don't Believe The Truth,A,minor,A minor 2005-05-25,2005,0.142,0.879,4,-2.174,1,0.0686,0.0478,0.000594,0.353,0.126,191.852,4,1,345786,FALSE,FALSE,Keep The Dream Alive,9,Don't Believe The Truth,E,major,E major 2005-05-25,2005,0.369,0.719,11,-1.991,1,0.0506,0.159,0.000995,0.173,0.282,114.856,4,1,187653,FALSE,FALSE,A Bell Will Ring,10,Don't Believe The Truth,B,major,B major 2005-05-25,2005,0.48,0.463,5,-4.651,1,0.0278,0.308,0,0.342,0.134,74.06,4,1,336586,FALSE,FALSE,Let There Be Love,11,Don't Believe The Truth,F,major,F major 2005-05-25,2005,0.295,0.603,9,-2.566,1,0.0389,0.00483,0.853,0.135,0.246,81.9,4,1,259359,FALSE,FALSE,Can Y'See It Now? (I Can See It Now!!),12,Don't Believe The Truth,A,major,A major 2005-05-25,2005,0.523,0.434,7,-7.679,1,0.0321,0.409,0.0212,0.0694,0.308,62.429,3,1,120106,FALSE,FALSE,Sitting Here In Silence (On My Own),13,Don't Believe The Truth,G,major,G major 2005-05-20,2005,0.386,0.864,7,-3.033,1,0.0417,0.00466,0.671,0.0911,0.113,119.8,4,1,239240,FALSE,FALSE,Turn Up The Sun,1,Don't Believe The Truth,G,major,G major 2005-05-20,2005,0.412,0.977,9,-1.621,1,0.0503,0.000397,0.0501,0.262,0.235,110.729,4,1,235960,FALSE,FALSE,Mucky Fingers,2,Don't Believe The Truth,A,major,A major 2005-05-20,2005,0.399,0.953,11,-2.424,1,0.0482,0.000176,0.000101,0.145,0.307,120.945,4,1,310440,FALSE,FALSE,Lyla,3,Don't Believe The Truth,B,major,B major 2005-05-20,2005,0.36,0.921,9,-2.47,1,0.045,0.0069,9.65e-05,0.156,0.643,88.449,4,1,172880,FALSE,FALSE,Love Like A Bomb,4,Don't Believe The Truth,A,major,A major 2005-05-20,2005,0.572,0.875,9,-2.111,0,0.0337,0.0517,0,0.111,0.595,109.851,4,1,219826,FALSE,FALSE,The Importance of Being Idle,5,Don't Believe The Truth,A,minor,A minor 2005-05-20,2005,0.407,0.999,9,-2.851,1,0.0508,0.0423,0.019,0.548,0.325,154.891,4,1,102826,FALSE,FALSE,The Meaning Of Soul,6,Don't Believe The Truth,A,major,A major 2005-05-20,2005,0.604,0.693,6,-6.53,1,0.0289,0.321,1.07e-05,0.456,0.207,103.833,4,1,204746,FALSE,FALSE,Guess God Thinks I'm Abel,7,Don't Believe The Truth,F#,major,F# major 2005-05-20,2005,0.403,0.985,9,-2.836,0,0.0574,0.0213,0.00328,0.37,0.675,88.934,3,1,228120,FALSE,FALSE,Part Of The Queue,8,Don't Believe The Truth,A,minor,A minor 2005-05-20,2005,0.15,0.871,4,-2.162,1,0.0686,0.048,0.00059,0.387,0.116,191.835,4,1,345706,FALSE,FALSE,Keep The Dream Alive,9,Don't Believe The Truth,E,major,E major 2005-05-20,2005,0.373,0.778,11,-2.049,1,0.0517,0.148,0.00288,0.237,0.239,114.906,4,1,187640,FALSE,FALSE,A Bell Will Ring,10,Don't Believe The Truth,B,major,B major 2005-05-20,2005,0.484,0.457,5,-4.684,1,0.0286,0.276,0,0.338,0.132,74.041,4,1,331653,FALSE,FALSE,Let There Be Love,11,Don't Believe The Truth,F,major,F major 2002-07-01,2002,0.416,0.939,11,-3.247,1,0.0473,1.09e-05,1.05e-05,0.753,0.36,113.926,4,1,226400,FALSE,FALSE,The Hindu Times,1,Heathen Chemistry,B,major,B major 2002-07-01,2002,0.48,0.791,11,-3.827,0,0.0364,0.000227,1.33e-06,0.328,0.626,104.001,4,1,291693,FALSE,FALSE,Force Of Nature,2,Heathen Chemistry,B,minor,B minor 2002-07-01,2002,0.298,0.967,11,-2.589,1,0.0687,0.0109,0.000168,0.119,0.274,127.057,4,1,208666,FALSE,FALSE,Hung In A Bad Place,3,Heathen Chemistry,B,major,B major 2002-07-01,2002,0.331,0.558,2,-5.506,1,0.031,0.0689,1.96e-06,0.124,0.0985,150.19,4,1,303120,FALSE,FALSE,Stop Crying Your Heart Out,4,Heathen Chemistry,D,major,D major 2002-07-01,2002,0.491,0.561,2,-6.396,1,0.0279,0.274,2.16e-06,0.23,0.543,134.881,4,1,127600,FALSE,FALSE,Songbird,5,Heathen Chemistry,D,major,D major 2002-07-01,2002,0.405,0.632,2,-5.132,1,0.0273,0.0316,0.00251,0.112,0.141,145.936,4,1,292853,FALSE,FALSE,Little By Little,6,Heathen Chemistry,D,major,D major 2002-07-01,2002,0.4,0.738,7,-6.574,0,0.0332,0.000628,0.954,0.314,0.358,191.827,3,1,77333,FALSE,FALSE,A Quick Peep,7,Heathen Chemistry,G,minor,G minor 2002-07-01,2002,0.365,0.737,7,-4.652,1,0.0421,0.00206,5.74e-05,0.71,0.214,114.929,4,1,242000,FALSE,FALSE,(Probably) All In My Mind,8,Heathen Chemistry,G,major,G major 2002-07-01,2002,0.463,0.642,0,-6.39,1,0.0299,0.43,1.31e-06,0.14,0.506,90.009,4,1,189373,FALSE,FALSE,She Is Love,9,Heathen Chemistry,C,major,C major 2002-07-01,2002,0.386,0.69,9,-6.363,0,0.0283,0.00171,0.00931,0.134,0.173,72.936,4,1,368973,FALSE,FALSE,Born On A Different Cloud,10,Heathen Chemistry,A,minor,A minor 2002-07-01,2002,0.354,2.01e-05,6,-4.866,1,0.0506,0.00068,0.506,0.26,0.224,113.878,3,1,2282786,FALSE,FALSE,Better Man,11,Heathen Chemistry,F#,major,F# major 2002-06-26,2002,0.418,0.954,11,-3.062,1,0.0501,9.58e-06,8.28e-06,0.776,0.336,113.923,4,1,226400,FALSE,FALSE,The Hindu Times,1,Heathen Chemistry,B,major,B major 2002-06-26,2002,0.484,0.805,11,-3.689,0,0.0353,0.000207,0,0.363,0.571,103.965,4,1,291706,FALSE,FALSE,Force Of Nature,2,Heathen Chemistry,B,minor,B minor 2002-06-26,2002,0.328,0.97,11,-2.452,1,0.0669,0.00875,0.000113,0.119,0.268,127.066,4,1,208626,FALSE,FALSE,Hung In A Bad Place,3,Heathen Chemistry,B,major,B major 2002-06-26,2002,0.38,0.586,2,-5.324,1,0.0304,0.0754,0,0.0782,0.0804,74.95,4,1,303133,FALSE,FALSE,Stop Crying Your Heart Out,4,Heathen Chemistry,D,major,D major 2002-06-26,2002,0.489,0.578,2,-6.199,1,0.0282,0.276,5.54e-06,0.228,0.561,134.906,4,1,127573,FALSE,FALSE,Songbird,5,Heathen Chemistry,D,major,D major 2002-06-26,2002,0.41,0.655,2,-5.033,1,0.0271,0.0302,0.00203,0.12,0.114,145.902,4,1,292866,FALSE,FALSE,Little By Little,6,Heathen Chemistry,D,major,D major 2002-06-26,2002,0.39,0.736,0,-6.359,1,0.0335,0.000316,0.926,0.308,0.354,191.593,3,1,77333,FALSE,FALSE,A Quick Peep,7,Heathen Chemistry,C,major,C major 2002-06-26,2002,0.367,0.729,7,-4.51,1,0.0447,0.00181,2.24e-05,0.734,0.189,114.954,4,1,242000,FALSE,FALSE,(Probably) All In The Mind,8,Heathen Chemistry,G,major,G major 2002-06-26,2002,0.49,0.654,0,-6.247,1,0.0288,0.416,1.19e-06,0.14,0.478,89.972,4,1,189360,FALSE,FALSE,She Is Love,9,Heathen Chemistry,C,major,C major 2002-06-26,2002,0.381,0.701,9,-6.2,0,0.0281,0.00117,0.00597,0.137,0.192,145.996,4,1,368933,FALSE,FALSE,Born On A Different Cloud,10,Heathen Chemistry,A,minor,A minor 2002-06-26,2002,0.241,0.927,1,-3.595,0,0.0565,0.00107,0.0502,0.282,0.44,183.911,4,1,267786,FALSE,FALSE,Better Man,11,Heathen Chemistry,C#,minor,C# minor 2002-06-26,2002,0,2.01e-05,7,-5.835,1,0,0.0273,0.000229,0.103,0,0,0,1,2060679,FALSE,FALSE,You've Got the Heart of a Star,12,Heathen Chemistry,G,major,G major 2002-06-20,2002,0.418,0.948,11,-3.077,1,0.0517,8.48e-06,7.27e-06,0.736,0.325,113.876,4,1,226733,FALSE,FALSE,The Hindu Times,1,Heathen Chemistry,B,major,B major 2002-06-20,2002,0.477,0.793,11,-3.662,0,0.0352,0.000224,1.21e-06,0.342,0.559,104.014,4,1,291693,FALSE,FALSE,Force Of Nature,2,Heathen Chemistry,B,minor,B minor 2002-06-20,2002,0.326,0.966,11,-2.524,1,0.0658,0.0092,0.000237,0.124,0.239,127.051,4,1,208640,FALSE,FALSE,Hung In A Bad Place,3,Heathen Chemistry,B,major,B major 2002-06-20,2002,0.38,0.573,2,-5.334,1,0.03,0.077,2.38e-06,0.0776,0.0901,74.988,4,1,303133,FALSE,FALSE,Stop Crying Your Heart Out,4,Heathen Chemistry,D,major,D major 2002-06-20,2002,0.491,0.566,2,-6.208,1,0.0285,0.266,1.1e-05,0.24,0.547,134.93,4,1,127560,FALSE,FALSE,Songbird,5,Heathen Chemistry,D,major,D major 2002-06-20,2002,0.405,0.63,2,-4.996,1,0.0277,0.029,0.00321,0.117,0.136,145.91,4,1,292866,FALSE,FALSE,Little By Little,6,Heathen Chemistry,D,major,D major 2002-06-20,2002,0.555,0.737,9,-6.374,0,0.0328,0.000533,0.933,0.356,0.382,127.558,4,1,77333,FALSE,FALSE,A Quick Peep,7,Heathen Chemistry,A,minor,A minor 2002-06-20,2002,0.373,0.732,7,-4.529,1,0.0418,0.00259,5.39e-05,0.766,0.221,114.969,4,1,242000,FALSE,FALSE,(Probably) All In The Mind,8,Heathen Chemistry,G,major,G major 2002-06-20,2002,0.476,0.654,0,-6.255,1,0.029,0.476,2e-06,0.14,0.48,89.91,4,1,189373,FALSE,FALSE,She Is Love,9,Heathen Chemistry,C,major,C major 2002-06-20,2002,0.389,0.692,9,-6.136,0,0.0283,0.0012,0.0115,0.0876,0.158,72.967,4,1,368933,FALSE,FALSE,Born On A Different Cloud,10,Heathen Chemistry,A,minor,A minor 2002-06-20,2002,0.218,0.934,1,-3.586,0,0.0547,0.000868,0.0835,0.347,0.431,90.843,4,1,260493,FALSE,FALSE,Better Man,11,Heathen Chemistry,C#,minor,C# minor 2002-06-20,2002,0.4,0.521,7,-7.099,1,0.0351,0.000356,0.803,0.338,0.134,113.877,3,1,289093,FALSE,FALSE,The Cage,12,Heathen Chemistry,G,major,G major 2002-02-03,2002,0.418,0.948,11,-3.077,1,0.0517,8.48e-06,7.27e-06,0.736,0.325,113.876,4,1,226733,FALSE,FALSE,The Hindu Times,1,Heathen Chemistry,B,major,B major 2002-02-03,2002,0.477,0.793,11,-3.662,0,0.0352,0.000224,1.21e-06,0.342,0.559,104.014,4,1,291693,FALSE,FALSE,Force Of Nature,2,Heathen Chemistry,B,minor,B minor 2002-02-03,2002,0.326,0.966,11,-2.524,1,0.0658,0.0092,0.000237,0.124,0.239,127.051,4,1,208640,FALSE,FALSE,Hung In A Bad Place,3,Heathen Chemistry,B,major,B major 2002-02-03,2002,0.38,0.573,2,-5.334,1,0.03,0.077,2.38e-06,0.0776,0.0901,74.988,4,1,303133,FALSE,FALSE,Stop Crying Your Heart Out,4,Heathen Chemistry,D,major,D major 2002-02-03,2002,0.491,0.566,2,-6.208,1,0.0285,0.266,1.1e-05,0.24,0.547,134.93,4,1,127560,FALSE,FALSE,Songbird,5,Heathen Chemistry,D,major,D major 2002-02-03,2002,0.405,0.63,2,-4.996,1,0.0277,0.029,0.00321,0.117,0.136,145.91,4,1,292866,FALSE,FALSE,Little By Little,6,Heathen Chemistry,D,major,D major 2002-02-03,2002,0.555,0.737,9,-6.374,0,0.0328,0.000533,0.933,0.356,0.382,127.558,4,1,77333,FALSE,FALSE,A Quick Peep,7,Heathen Chemistry,A,minor,A minor 2002-02-03,2002,0.373,0.732,7,-4.529,1,0.0418,0.00259,5.39e-05,0.766,0.221,114.969,4,1,242000,FALSE,FALSE,(Probably) All In The Mind,8,Heathen Chemistry,G,major,G major 2002-02-03,2002,0.476,0.654,0,-6.255,1,0.029,0.476,2e-06,0.14,0.48,89.91,4,1,189373,FALSE,FALSE,She Is Love,9,Heathen Chemistry,C,major,C major 2002-02-03,2002,0.389,0.692,9,-6.136,0,0.0283,0.0012,0.0115,0.0876,0.158,72.967,4,1,368933,FALSE,FALSE,Born On A Different Cloud,10,Heathen Chemistry,A,minor,A minor 2002-02-03,2002,0.218,0.934,1,-3.586,0,0.0547,0.000868,0.0835,0.347,0.431,90.843,4,1,260493,FALSE,FALSE,Better Man,11,Heathen Chemistry,C#,minor,C# minor 2002-02-03,2002,0.4,0.521,7,-7.099,1,0.0351,0.000356,0.803,0.338,0.134,113.877,3,1,289093,FALSE,FALSE,The Cage,12,Heathen Chemistry,G,major,G major 2000-11-14,2000,0.361,0.962,0,-6.427,1,0.09,0.00201,0.0318,0.982,0.131,100.421,4,1,184333,FALSE,FALSE,"Fuckin' In the Bushes - Live at Wembley Stadium, 2000",1,Familiar To Millions,C,major,C major 2000-11-14,2000,0.293,0.931,2,-4.388,1,0.0447,0.000156,0.0526,0.899,0.488,85.175,4,1,332266,FALSE,FALSE,"Go Let It Out - Live from Wembley Stadium, 2000",2,Familiar To Millions,D,major,D major 2000-11-14,2000,0.332,0.879,9,-5.393,0,0.0365,0.000917,0.00479,0.951,0.163,79.983,4,1,359760,FALSE,FALSE,"Who Feels Love? - Live at Wembley Stadium, 2000",3,Familiar To Millions,A,minor,A minor 2000-11-14,2000,0.305,0.99,6,-4.479,0,0.0633,6.01e-05,0.289,0.988,0.199,119.466,4,1,270333,FALSE,FALSE,"Supersonic - Live at Wembley Stadium, 2000",4,Familiar To Millions,F#,minor,F# minor 2000-11-14,2000,0.252,0.953,4,-4.393,1,0.0927,0.0043,0.0182,0.985,0.12,104.991,4,1,313000,FALSE,FALSE,"Shakermaker - Live at Wembley Stadium, 2000",5,Familiar To Millions,E,major,E major 2000-11-14,2000,0.303,0.99,5,-4.1,1,0.146,0.000488,0.00976,0.975,0.109,125.21,4,1,258440,FALSE,FALSE,"Acquiesce - Live at Wembley Stadium, 2000",6,Familiar To Millions,F,major,F major 2000-11-14,2000,0.259,0.98,4,-3.855,0,0.0768,0.000122,0.235,0.992,0.297,137.657,4,1,245493,FALSE,FALSE,"Step Out - Live at Wembley Stadium, 2000",7,Familiar To Millions,E,minor,E minor 2000-11-14,2000,0.258,0.951,5,-3.893,0,0.0591,0.000593,0.117,0.986,0.37,148.105,4,1,481533,FALSE,FALSE,"Gas Panic! - Live at Wembley Stadium, 2000",8,Familiar To Millions,F,minor,F minor 2000-11-14,2000,0.25,0.983,9,-4.454,0,0.0866,0.00201,3.47e-05,0.944,0.27,131.568,4,1,283706,FALSE,FALSE,"Roll With It - Live at Wembley Stadium, 2000",9,Familiar To Millions,A,minor,A minor 2000-11-14,2000,0.275,0.904,7,-4.824,1,0.0404,0.000378,0.0161,0.991,0.221,91.673,4,1,349000,FALSE,FALSE,"Stand by Me - Live at Wembley Stadium, 2000",10,Familiar To Millions,G,major,G major 2000-11-14,2000,0.146,0.924,6,-5.066,0,0.0524,0.0216,0.017,0.982,0.438,92.776,4,2,286466,FALSE,FALSE,"Wonderwall - Live at Wembley Stadium, 2000",1,Familiar To Millions,F#,minor,F# minor 2000-11-14,2000,0.165,0.959,9,-4.082,1,0.07,0.000549,0.011,0.974,0.147,130.082,4,2,412026,FALSE,FALSE,"Cigarettes & Alcohol - Live at Wembley Stadium, 2000",2,Familiar To Millions,A,major,A major 2000-11-14,2000,0.279,0.942,0,-5.115,1,0.0721,0.0235,0.0245,0.966,0.218,86.366,4,2,327600,FALSE,FALSE,"Don't Look Back In Anger - Live at Wembley Stadium, 2000",3,Familiar To Millions,C,major,C major 2000-11-14,2000,0.232,0.946,9,-4.079,0,0.0781,0.0107,0.0681,0.983,0.196,90.387,4,2,309906,FALSE,FALSE,"Live Forever - Live at Wembley Stadium, 2000",4,Familiar To Millions,A,minor,A minor 2000-11-14,2000,0.385,0.955,9,-5.254,0,0.0603,0.000676,0.645,0.984,0.229,128.439,4,2,225426,FALSE,FALSE,"Hey Hey, My, My (Into The Black) - Live at Wembley Stadium, 2000",5,Familiar To Millions,A,minor,A minor 2000-11-14,2000,0.114,0.89,2,-4.645,1,0.0547,0.00394,0.00882,0.982,0.107,82.179,4,2,392066,FALSE,FALSE,"Champagne Supernova - Live at Wembley Stadium, 2000",6,Familiar To Millions,D,major,D major 2000-11-14,2000,0.142,0.996,4,-3.444,1,0.262,0.00853,0.562,0.978,0.0772,140.109,4,2,446866,FALSE,FALSE,"Rock 'n' Roll Star - Live at Wembley Stadium, 2000",7,Familiar To Millions,E,major,E major 2000-11-14,2000,0.0864,0.979,9,-3.934,0,0.12,0.000118,0.357,0.979,0.158,81.061,4,2,392573,FALSE,FALSE,"Helter Skelter - Live for SFX Radio, 2000",8,Familiar To Millions,A,minor,A minor 2000-11-13,2000,0.337,0.926,2,-4.776,1,0.0424,0.00018,0.0434,0.921,0.56,85.183,4,1,350960,FALSE,FALSE,"Go Let It Out - Live from Wembley Stadium, 2000",1,Familiar To Millions - The Highlights,D,major,D major 2000-11-13,2000,0.33,0.878,0,-5.529,1,0.0371,0.00131,0.0033,0.956,0.135,79.959,4,1,360266,FALSE,FALSE,"Who Feels Love? - Live at Wembley Stadium, 2000",2,Familiar To Millions - The Highlights,C,major,C major 2000-11-13,2000,0.303,0.99,6,-4.516,0,0.0775,6.55e-05,0.208,0.99,0.196,119.477,4,1,269773,FALSE,FALSE,"Supersonic - Live at Wembley Stadium, 2000",3,Familiar To Millions - The Highlights,F#,minor,F# minor 2000-11-13,2000,0.254,0.959,4,-4.507,1,0.0868,0.00416,0.0186,0.985,0.118,104.592,4,1,313226,FALSE,FALSE,"Shakermaker - Live at Wembley Stadium, 2000",4,Familiar To Millions - The Highlights,E,major,E major 2000-11-13,2000,0.305,0.989,5,-4.159,1,0.161,0.00021,0.00218,0.981,0.118,125.352,4,1,246666,FALSE,FALSE,"Acquiesce - Live at Wembley Stadium, 2000",5,Familiar To Millions - The Highlights,F,major,F major 2000-11-13,2000,0.263,0.943,5,-3.999,0,0.0597,0.000575,0.0752,0.986,0.348,147.876,4,1,481280,FALSE,FALSE,"Gas Panic! - Live at Wembley Stadium, 2000",6,Familiar To Millions - The Highlights,F,minor,F minor 2000-11-13,2000,0.243,0.983,9,-4.504,0,0.101,0.00149,2.98e-05,0.938,0.284,131.639,4,1,283320,FALSE,FALSE,"Roll With It - Live at Wembley Stadium, 2000",7,Familiar To Millions - The Highlights,A,minor,A minor 2000-11-13,2000,0.142,0.903,6,-4.806,0,0.05,0.018,0.00682,0.978,0.383,93.183,4,1,273920,FALSE,FALSE,"Wonderwall - Live at Wembley Stadium, 2000",8,Familiar To Millions - The Highlights,F#,minor,F# minor 2000-11-13,2000,0.163,0.949,9,-4.117,1,0.0681,0.00055,0.0155,0.974,0.156,131.029,4,1,412546,FALSE,FALSE,"Cigarettes & Alcohol - Live at Wembley Stadium, 2000",9,Familiar To Millions - The Highlights,A,major,A major 2000-11-13,2000,0.271,0.932,0,-4.892,1,0.0584,0.0209,0.011,0.977,0.245,85.267,4,1,309266,FALSE,FALSE,"Don't Look Back In Anger - Live at Wembley Stadium, 2000",10,Familiar To Millions - The Highlights,C,major,C major 2000-11-13,2000,0.222,0.929,9,-4.051,0,0.063,0.00967,0.127,0.962,0.219,91.172,4,1,292600,FALSE,FALSE,"Live Forever - Live at Wembley Stadium, 2000",11,Familiar To Millions - The Highlights,A,minor,A minor 2000-11-13,2000,0.164,0.894,2,-4.7,1,0.0494,0.00511,0.00219,0.986,0.127,82.707,4,1,391306,FALSE,FALSE,"Champagne Supernova - Live at Wembley Stadium, 2000",12,Familiar To Millions - The Highlights,D,major,D major 2000-11-13,2000,0.146,0.989,4,-3.234,1,0.121,0.00289,0.427,0.955,0.136,138.856,4,1,384173,FALSE,FALSE,"Rock 'n' Roll Star - Live at Wembley Stadium, 2000",13,Familiar To Millions - The Highlights,E,major,E major 2000-11-13,2000,0.328,0.939,2,-4.358,1,0.0447,0.000154,0.0464,0.886,0.511,85.163,4,1,332266,FALSE,FALSE,"Go Let It Out - Live at Wembley Stadium, July 2000",1,Familiar To Millions (Live),D,major,D major 2000-11-13,2000,0.333,0.878,9,-5.403,0,0.039,0.00109,0.00335,0.945,0.158,79.987,4,1,359760,TRUE,FALSE,"Who Feels Love? - Live at Wembley Stadium, July 2000",2,Familiar To Millions (Live),A,minor,A minor 2000-11-13,2000,0.305,0.99,6,-4.466,0,0.0638,7.08e-05,0.244,0.989,0.192,119.529,4,1,270333,FALSE,FALSE,"Supersonic - Live at Wembley Stadium, July 2000",3,Familiar To Millions (Live),F#,minor,F# minor 2000-11-13,2000,0.226,0.951,4,-4.38,1,0.082,0.00383,0.052,0.985,0.147,104.883,4,1,313000,TRUE,FALSE,"Shakermaker - Live at Wembley Stadium, July 2000",4,Familiar To Millions (Live),E,major,E major 2000-11-13,2000,0.28,0.991,5,-4.097,1,0.147,0.000419,0.0079,0.97,0.12,125.112,4,1,258440,FALSE,FALSE,"Acquiesce - Live at Wembley Stadium, July 2000",5,Familiar To Millions (Live),F,major,F major 2000-11-13,2000,0.256,0.951,5,-3.914,0,0.0639,0.000605,0.0978,0.988,0.355,147.949,4,1,481533,FALSE,FALSE,"Gas Panic! - Live at Wembley Stadium, July 2000",6,Familiar To Millions (Live),F,minor,F minor 2000-11-13,2000,0.228,0.987,9,-4.468,0,0.0867,0.0013,7.48e-05,0.953,0.282,131.554,4,1,283706,TRUE,FALSE,"Roll With It - Live at Wembley Stadium, July 2000",7,Familiar To Millions (Live),A,minor,A minor 2000-11-13,2000,0.14,0.91,6,-5.096,0,0.0518,0.0216,0.0164,0.982,0.415,92.403,4,1,286466,FALSE,FALSE,"Wonderwall - Live at Wembley Stadium, July 2000",8,Familiar To Millions (Live),F#,minor,F# minor 2000-11-13,2000,0.165,0.952,9,-4.08,1,0.0674,0.000618,0.00754,0.974,0.175,130.247,4,1,412026,TRUE,FALSE,"Cigarettes & Alcohol - Live at Wembley Stadium, July 2000",9,Familiar To Millions (Live),A,major,A major 2000-11-13,2000,0.285,0.94,0,-5.137,1,0.0643,0.0321,0.00985,0.97,0.232,86.175,4,1,327600,TRUE,FALSE,"Don't Look Back In Anger - Live at Wembley Stadium, July 2000",10,Familiar To Millions (Live),C,major,C major 2000-11-13,2000,0.112,0.946,9,-4.056,0,0.0773,0.0106,0.0428,0.982,0.223,91.862,4,1,309906,FALSE,FALSE,"Live Forever - Live at Wembley Stadium, July 2000",11,Familiar To Millions (Live),A,minor,A minor 2000-11-13,2000,0.151,0.888,2,-4.648,1,0.0496,0.00385,0.00802,0.982,0.112,82.034,4,1,392066,FALSE,FALSE,"Champagne Supernova - Live at Wembley Stadium, July 2000",12,Familiar To Millions (Live),D,major,D major 2000-11-13,2000,0.142,0.996,6,-3.431,0,0.268,0.00842,0.709,0.978,0.0643,140.205,4,1,446866,FALSE,FALSE,"Rock 'n' Roll Star - Live at Wembley Stadium, July 2000",13,Familiar To Millions (Live),F#,minor,F# minor 2000-11-01,2000,0.361,0.962,0,-6.427,1,0.09,0.00201,0.0318,0.982,0.131,100.421,4,1,184333,FALSE,FALSE,"Fuckin' In the Bushes - Live at Wembley Stadium, 2000",1,Familiar To Millions,C,major,C major 2000-11-01,2000,0.292,0.931,2,-4.388,1,0.0443,0.000155,0.0518,0.899,0.495,85.177,4,1,332266,FALSE,FALSE,"Go Let It Out - Live from Wembley Stadium, 2000",2,Familiar To Millions,D,major,D major 2000-11-01,2000,0.332,0.879,9,-5.393,0,0.0364,0.000917,0.00479,0.951,0.163,79.983,4,1,359760,FALSE,FALSE,"Who Feels Love? - Live at Wembley Stadium, 2000",3,Familiar To Millions,A,minor,A minor 2000-11-01,2000,0.307,0.99,6,-4.479,0,0.0619,5.9e-05,0.289,0.987,0.204,119.476,4,1,270333,FALSE,FALSE,"Supersonic - Live at Wembley Stadium, 2000",4,Familiar To Millions,F#,minor,F# minor 2000-11-01,2000,0.245,0.952,4,-4.393,1,0.0833,0.0043,0.0182,0.984,0.123,104.983,4,1,313000,FALSE,FALSE,"Shakermaker - Live at Wembley Stadium, 2000",5,Familiar To Millions,E,major,E major 2000-11-01,2000,0.301,0.99,5,-4.1,1,0.147,0.000488,0.00976,0.975,0.109,125.211,4,1,258440,FALSE,FALSE,"Acquiesce - Live at Wembley Stadium, 2000",6,Familiar To Millions,F,major,F major 2000-11-01,2000,0.26,0.98,4,-3.855,0,0.0796,0.000122,0.241,0.992,0.293,137.657,4,1,245493,FALSE,FALSE,"Step Out - Live at Wembley Stadium, 2000",7,Familiar To Millions,E,minor,E minor 2000-11-01,2000,0.257,0.951,5,-3.893,0,0.0589,0.000586,0.117,0.985,0.369,148.105,4,1,481533,FALSE,FALSE,"Gas Panic! - Live at Wembley Stadium, 2000",8,Familiar To Millions,F,minor,F minor 2000-11-01,2000,0.25,0.983,9,-4.454,0,0.0881,0.00201,3.45e-05,0.943,0.269,131.568,4,1,283706,FALSE,FALSE,"Roll With It - Live at Wembley Stadium, 2000",9,Familiar To Millions,A,minor,A minor 2000-11-01,2000,0.275,0.904,7,-4.824,1,0.0404,0.000378,0.0161,0.991,0.221,91.673,4,1,349000,FALSE,FALSE,"Stand by Me - Live at Wembley Stadium, 2000",10,Familiar To Millions,G,major,G major 2000-11-01,2000,0.139,0.924,6,-5.066,0,0.0534,0.0216,0.0166,0.982,0.433,92.99,4,2,286466,FALSE,FALSE,"Wonderwall - Live at Wembley Stadium, 2000",1,Familiar To Millions,F#,minor,F# minor 2000-11-01,2000,0.165,0.959,9,-4.077,1,0.0696,0.000542,0.0108,0.969,0.154,130.082,4,2,412026,FALSE,FALSE,"Cigarettes & Alcohol - Live at Wembley Stadium, 2000",2,Familiar To Millions,A,major,A major 2000-11-01,2000,0.286,0.942,0,-5.115,1,0.0786,0.0235,0.0229,0.965,0.214,86.276,4,2,327600,FALSE,FALSE,"Don't Look Back In Anger - Live at Wembley Stadium, 2000",3,Familiar To Millions,C,major,C major 2000-11-01,2000,0.232,0.946,9,-4.079,0,0.0773,0.0107,0.0681,0.983,0.196,90.387,4,2,309906,FALSE,FALSE,"Live Forever - Live at Wembley Stadium, 2000",4,Familiar To Millions,A,minor,A minor 2000-11-01,2000,0.384,0.956,9,-5.247,0,0.0607,0.000661,0.646,0.982,0.23,128.431,4,2,225426,FALSE,FALSE,"Hey Hey, My, My (Into The Black) - Live at Wembley Stadium, 2000",5,Familiar To Millions,A,minor,A minor 2000-11-01,2000,0.113,0.888,2,-4.645,1,0.0541,0.00388,0.00864,0.983,0.107,82.179,4,2,392066,FALSE,FALSE,"Champagne Supernova - Live at Wembley Stadium, 2000",6,Familiar To Millions,D,major,D major 2000-11-01,2000,0.142,0.996,4,-3.444,1,0.262,0.00853,0.562,0.978,0.0772,140.109,4,2,446866,FALSE,FALSE,"Rock 'n' Roll Star - Live at Wembley Stadium, 2000",7,Familiar To Millions,E,major,E major 2000-11-01,2000,0.111,0.979,9,-3.934,0,0.104,0.000118,0.357,0.98,0.156,89.353,4,2,392573,FALSE,FALSE,"Helter Skelter - Live for SFX Radio, 2000",8,Familiar To Millions,A,minor,A minor 2000-02-28,2000,0.374,0.807,9,-8.645,0,0.0477,0.00134,0.0654,0.891,0.369,134.142,5,1,198466,TRUE,FALSE,Fuckin' In the Bushes,1,Standing On The Shoulder Of Giants,A,minor,A minor 2000-02-28,2000,0.408,0.856,2,-5.614,1,0.0334,0.0107,5.51e-05,0.514,0.619,84.196,4,1,278400,FALSE,FALSE,Go Let It Out,2,Standing On The Shoulder Of Giants,D,major,D major 2000-02-28,2000,0.322,0.801,0,-5.722,1,0.0382,0.185,0.0428,0.245,0.324,152.96,4,1,344226,FALSE,FALSE,Who Feels Love?,3,Standing On The Shoulder Of Giants,C,major,C major 2000-02-28,2000,0.404,0.924,8,-4.248,1,0.0546,4.25e-06,2.84e-05,0.112,0.143,124.186,4,1,267160,FALSE,FALSE,Put Yer Money Where Yer Mouth Is,4,Standing On The Shoulder Of Giants,G#,major,G# major 2000-02-28,2000,0.401,0.604,0,-7.009,1,0.0261,0.32,0.0381,0.275,0.141,82.026,4,1,255266,FALSE,FALSE,Little James,5,Standing On The Shoulder Of Giants,C,major,C major 2000-02-28,2000,0.369,0.681,5,-6.006,0,0.042,0.0123,0.00389,0.356,0.233,147.795,4,1,368266,FALSE,FALSE,Gas Panic!,6,Standing On The Shoulder Of Giants,F,minor,F minor 2000-02-28,2000,0.377,0.728,4,-5.07,0,0.0321,0.041,0,0.114,0.432,149.845,4,1,266600,FALSE,FALSE,Where Did It All Go Wrong?,7,Standing On The Shoulder Of Giants,E,minor,E minor 2000-02-28,2000,0.296,0.59,7,-5.924,1,0.0304,0.0364,0.0658,0.162,0.195,156.1,4,1,312640,FALSE,FALSE,Sunday Morning Call,8,Standing On The Shoulder Of Giants,G,major,G major 2000-02-28,2000,0.347,0.768,9,-5.713,0,0.0526,0.000397,0,0.384,0.318,128.038,4,1,192960,FALSE,FALSE,I Can See a Liar,9,Standing On The Shoulder Of Giants,A,minor,A minor 2000-02-28,2000,0.271,0.627,9,-6.367,1,0.0373,0.011,9.63e-05,0.109,0.164,131.714,4,1,391106,FALSE,FALSE,Roll It Over,10,Standing On The Shoulder Of Giants,A,major,A major 2000-02-28,2000,0.374,0.807,9,-8.645,0,0.0477,0.00134,0.0654,0.891,0.369,134.142,5,1,198466,TRUE,FALSE,Fuckin' In the Bushes,1,Standing On The Shoulder Of Giants,A,minor,A minor 2000-02-28,2000,0.408,0.856,2,-5.614,1,0.0334,0.0107,5.51e-05,0.514,0.619,84.196,4,1,278400,FALSE,FALSE,Go Let It Out,2,Standing On The Shoulder Of Giants,D,major,D major 2000-02-28,2000,0.322,0.801,0,-5.722,1,0.0382,0.185,0.0428,0.245,0.324,152.96,4,1,344226,FALSE,FALSE,Who Feels Love?,3,Standing On The Shoulder Of Giants,C,major,C major 2000-02-28,2000,0.404,0.924,8,-4.248,1,0.0546,4.25e-06,2.84e-05,0.112,0.143,124.186,4,1,267160,FALSE,FALSE,Put Yer Money Where Yer Mouth Is,4,Standing On The Shoulder Of Giants,G#,major,G# major 2000-02-28,2000,0.401,0.604,0,-7.009,1,0.0261,0.32,0.0381,0.275,0.141,82.026,4,1,255266,FALSE,FALSE,Little James,5,Standing On The Shoulder Of Giants,C,major,C major 2000-02-28,2000,0.369,0.681,5,-6.006,0,0.042,0.0123,0.00389,0.356,0.233,147.795,4,1,368266,FALSE,FALSE,Gas Panic!,6,Standing On The Shoulder Of Giants,F,minor,F minor 2000-02-28,2000,0.377,0.728,4,-5.07,0,0.0321,0.041,0,0.114,0.432,149.845,4,1,266600,FALSE,FALSE,Where Did It All Go Wrong?,7,Standing On The Shoulder Of Giants,E,minor,E minor 2000-02-28,2000,0.296,0.59,7,-5.924,1,0.0304,0.0364,0.0658,0.162,0.195,156.1,4,1,312640,FALSE,FALSE,Sunday Morning Call,8,Standing On The Shoulder Of Giants,G,major,G major 2000-02-28,2000,0.347,0.768,9,-5.713,0,0.0526,0.000397,0,0.384,0.318,128.038,4,1,192960,FALSE,FALSE,I Can See a Liar,9,Standing On The Shoulder Of Giants,A,minor,A minor 2000-02-28,2000,0.271,0.627,9,-6.367,1,0.0373,0.011,9.63e-05,0.109,0.164,131.714,4,1,391106,FALSE,FALSE,Roll It Over,10,Standing On The Shoulder Of Giants,A,major,A major 2000-02-28,2000,0.374,0.807,9,-8.645,0,0.0477,0.00134,0.0654,0.891,0.369,134.142,5,1,198466,TRUE,FALSE,Fuckin' In the Bushes,1,Standing on the Shoulder of Giants,A,minor,A minor 2000-02-28,2000,0.408,0.856,2,-5.614,1,0.0334,0.0107,5.51e-05,0.514,0.619,84.196,4,1,278400,FALSE,FALSE,Go Let It Out,2,Standing on the Shoulder of Giants,D,major,D major 2000-02-28,2000,0.322,0.801,0,-5.722,1,0.0382,0.185,0.0428,0.245,0.324,152.96,4,1,344226,FALSE,FALSE,Who Feels Love?,3,Standing on the Shoulder of Giants,C,major,C major 2000-02-28,2000,0.404,0.924,8,-4.248,1,0.0546,4.25e-06,2.84e-05,0.112,0.143,124.186,4,1,267160,FALSE,FALSE,Put Yer Money Where Yer Mouth Is,4,Standing on the Shoulder of Giants,G#,major,G# major 2000-02-28,2000,0.401,0.604,0,-7.009,1,0.0261,0.32,0.0381,0.275,0.141,82.026,4,1,255266,FALSE,FALSE,Little James,5,Standing on the Shoulder of Giants,C,major,C major 2000-02-28,2000,0.369,0.681,5,-6.006,0,0.042,0.0123,0.00389,0.356,0.233,147.795,4,1,368266,FALSE,FALSE,Gas Panic!,6,Standing on the Shoulder of Giants,F,minor,F minor 2000-02-28,2000,0.377,0.728,4,-5.07,0,0.0321,0.041,0,0.114,0.432,149.845,4,1,266600,FALSE,FALSE,Where Did It All Go Wrong?,7,Standing on the Shoulder of Giants,E,minor,E minor 2000-02-28,2000,0.296,0.59,7,-5.924,1,0.0304,0.0364,0.0658,0.162,0.195,156.1,4,1,312640,FALSE,FALSE,Sunday Morning Call,8,Standing on the Shoulder of Giants,G,major,G major 2000-02-28,2000,0.347,0.768,9,-5.713,0,0.0526,0.000397,0,0.384,0.318,128.038,4,1,192960,FALSE,FALSE,I Can See a Liar,9,Standing on the Shoulder of Giants,A,minor,A minor 2000-02-28,2000,0.271,0.627,9,-6.367,1,0.0373,0.011,9.63e-05,0.109,0.164,131.714,4,1,391106,FALSE,FALSE,Roll It Over,10,Standing on the Shoulder of Giants,A,major,A major 2000-02-28,2000,0.387,0.811,9,-8.923,0,0.0433,0.00133,0.0767,0.862,0.335,100.526,4,1,198800,FALSE,FALSE,Fuckin' In the Bushes - Clean Version - For use on Walmart product ONLY!,1,Standing On The Shoulder Of Giants,A,minor,A minor 2000-02-28,2000,0.41,0.847,2,-5.644,1,0.0331,0.0129,4.97e-05,0.557,0.593,84.192,4,1,278533,FALSE,FALSE,Go Let It Out,2,Standing On The Shoulder Of Giants,D,major,D major 2000-02-28,2000,0.362,0.801,0,-5.68,1,0.0362,0.188,0.0514,0.309,0.327,76.486,4,1,344466,FALSE,FALSE,Who Feels Love?,3,Standing On The Shoulder Of Giants,C,major,C major 2000-02-28,2000,0.412,0.929,8,-4.224,1,0.055,3.92e-06,2.57e-05,0.103,0.143,124.178,4,1,267266,FALSE,FALSE,Put Yer Money Where Yer Mouth Is,4,Standing On The Shoulder Of Giants,G#,major,G# major 2000-02-28,2000,0.398,0.618,0,-6.962,1,0.027,0.335,0.0178,0.226,0.119,82.014,4,1,255266,FALSE,FALSE,Little James,5,Standing On The Shoulder Of Giants,C,major,C major 2000-02-28,2000,0.346,0.647,5,-6.028,0,0.0408,0.00924,0.00269,0.403,0.259,148.058,4,1,368266,FALSE,FALSE,Gas Panic!,6,Standing On The Shoulder Of Giants,F,minor,F minor 2000-02-28,2000,0.373,0.703,4,-5.094,0,0.0323,0.0431,0,0.109,0.404,149.814,4,1,266706,FALSE,FALSE,Where Did It All Go Wrong?,7,Standing On The Shoulder Of Giants,E,minor,E minor 2000-02-28,2000,0.351,0.589,7,-5.928,1,0.0297,0.041,0.0378,0.151,0.205,78.027,4,1,312733,FALSE,FALSE,Sunday Morning Call,8,Standing On The Shoulder Of Giants,G,major,G major 2000-02-28,2000,0.351,0.76,9,-5.767,0,0.0526,0.000474,0,0.317,0.36,128.063,4,1,192960,FALSE,FALSE,I Can See a Liar,9,Standing On The Shoulder Of Giants,A,minor,A minor 2000-02-28,2000,0.283,0.63,9,-6.324,1,0.0368,0.0123,8.9e-05,0.11,0.179,132.068,4,1,391240,FALSE,FALSE,Roll It Over,10,Standing On The Shoulder Of Giants,A,major,A major 2000-02-28,2000,0.152,0.825,9,-8.545,0,0.0486,0.00142,0.0454,0.898,0.338,100.499,4,1,198533,TRUE,FALSE,Fuckin' in the Bushes,1,Standing On The Shoulder Of Giants,A,minor,A minor 2000-02-28,2000,0.408,0.857,2,-5.71,1,0.034,0.0131,7.44e-05,0.528,0.622,84.197,4,1,278693,FALSE,FALSE,Go Let It Out,2,Standing On The Shoulder Of Giants,D,major,D major 2000-02-28,2000,0.31,0.801,0,-5.824,1,0.038,0.176,0.0797,0.182,0.312,153.088,4,1,344493,FALSE,FALSE,Who Feels Love?,3,Standing On The Shoulder Of Giants,C,major,C major 2000-02-28,2000,0.409,0.931,8,-4.338,1,0.0545,3.79e-06,1.72e-05,0.116,0.154,124.18,4,1,267160,FALSE,FALSE,Put Yer Money Where Yer Mouth Is,4,Standing On The Shoulder Of Giants,G#,major,G# major 2000-02-28,2000,0.398,0.59,0,-7.118,1,0.0269,0.341,0.0305,0.331,0.113,82.004,4,1,255293,FALSE,FALSE,Little James,5,Standing On The Shoulder Of Giants,C,major,C major 2000-02-28,2000,0.349,0.664,5,-6.07,0,0.0408,0.0133,0.00257,0.39,0.287,148.059,4,1,368253,FALSE,FALSE,Gas Panic!,6,Standing On The Shoulder Of Giants,F,minor,F minor 2000-02-28,2000,0.372,0.708,4,-5.202,0,0.0323,0.0417,0,0.116,0.39,149.804,4,1,266840,FALSE,FALSE,Where Did It All Go Wrong?,7,Standing On The Shoulder Of Giants,E,minor,E minor 2000-02-28,2000,0.353,0.584,7,-6.066,1,0.0296,0.0512,0.142,0.153,0.212,77.989,4,1,312680,FALSE,FALSE,Sunday Morning Call,8,Standing On The Shoulder Of Giants,G,major,G major 2000-02-28,2000,0.34,0.76,9,-5.896,0,0.0542,0.000363,0,0.375,0.342,128.069,4,1,192960,FALSE,FALSE,I Can See A Liar,9,Standing On The Shoulder Of Giants,A,minor,A minor 2000-02-28,2000,0.279,0.611,9,-6.429,1,0.036,0.0128,7e-05,0.113,0.219,132.135,4,1,391146,FALSE,FALSE,Roll It Over,10,Standing On The Shoulder Of Giants,A,major,A major 2000-02-23,2000,0.165,0.82,9,-8.608,0,0.0524,0.00132,0.0691,0.871,0.401,133.648,5,1,198826,TRUE,FALSE,Fuckin' In the Bushes,1,Standing On The Shoulder Of Giants,A,minor,A minor 2000-02-23,2000,0.409,0.844,2,-5.604,1,0.0333,0.0143,5.97e-05,0.488,0.618,84.195,4,1,278666,FALSE,FALSE,Go Let It Out,2,Standing On The Shoulder Of Giants,D,major,D major 2000-02-23,2000,0.318,0.793,0,-5.655,1,0.037,0.187,0.0494,0.24,0.335,152.764,4,1,344466,FALSE,FALSE,Who Feels Love?,3,Standing On The Shoulder Of Giants,C,major,C major 2000-02-23,2000,0.415,0.933,8,-4.192,1,0.0547,4.45e-06,3.65e-05,0.105,0.15,124.172,4,1,267133,FALSE,FALSE,Put Yer Money Where Yer Mouth Is,4,Standing On The Shoulder Of Giants,G#,major,G# major 2000-02-23,2000,0.399,0.584,0,-6.927,1,0.0271,0.389,0.0398,0.208,0.106,82.019,4,1,255306,FALSE,FALSE,Little James,5,Standing On The Shoulder Of Giants,C,major,C major 2000-02-23,2000,0.369,0.675,5,-6.022,0,0.0407,0.0114,0.0015,0.421,0.235,148.004,4,1,368266,FALSE,FALSE,Gas Panic!,6,Standing On The Shoulder Of Giants,F,minor,F minor 2000-02-23,2000,0.384,0.72,2,-5.063,1,0.0329,0.034,0,0.114,0.441,75.035,4,1,266800,FALSE,FALSE,Where Did It All Go Wrong?,7,Standing On The Shoulder Of Giants,D,major,D major 2000-02-23,2000,0.298,0.602,7,-5.931,1,0.0296,0.0386,0.0253,0.194,0.193,156.073,4,1,312626,FALSE,FALSE,Sunday Morning Call,8,Standing On The Shoulder Of Giants,G,major,G major 2000-02-23,2000,0.347,0.779,9,-5.773,0,0.053,0.000398,0,0.257,0.348,128.062,4,1,192933,FALSE,FALSE,I Can See a Liar,9,Standing On The Shoulder Of Giants,A,minor,A minor 2000-02-23,2000,0.281,0.635,9,-6.346,1,0.0357,0.00912,0.000153,0.109,0.184,132.081,4,1,396040,FALSE,FALSE,Roll It Over,10,Standing On The Shoulder Of Giants,A,major,A major 2000-02-23,2000,0.193,0.637,2,-6.729,0,0.0365,0.751,0.0108,0.259,0.108,173.697,4,1,231093,FALSE,FALSE,Let's All Make Believe,11,Standing On The Shoulder Of Giants,D,minor,D minor 2000,2000,0.137,0.965,9,-6.536,0,0.104,0.0015,0.0315,0.982,0.115,100.58,4,1,184573,FALSE,FALSE,"Fuckin' In the Bushes - Live at Wembley Stadium, 2000",1,Fmiliar to millions,A,minor,A minor 2000,2000,0.328,0.938,2,-4.353,1,0.0445,0.000129,0.0635,0.918,0.542,85.167,4,1,331826,FALSE,FALSE,"Go Let It Out - Live from Wembley Stadium, 2000",2,Fmiliar to millions,D,major,D major 2000,2000,0.332,0.883,9,-5.383,0,0.0364,0.000836,0.00639,0.961,0.207,79.989,4,1,360000,FALSE,FALSE,"Who Feels Love? - Live at Wembley Stadium, 2000",3,Fmiliar to millions,A,minor,A minor 2000,2000,0.303,0.991,6,-4.495,0,0.0733,6.89e-05,0.227,0.989,0.182,119.347,4,1,272106,FALSE,FALSE,"Supersonic - Live at Wembley Stadium, 2000",4,Fmiliar to millions,F#,minor,F# minor 2000,2000,0.258,0.95,4,-4.374,1,0.0736,0.00334,0.0153,0.972,0.111,104.85,4,1,310600,FALSE,FALSE,"Shakermaker - Live at Wembley Stadium, 2000",5,Fmiliar to millions,E,major,E major 2000,2000,0.261,0.99,5,-4.124,1,0.168,0.00038,0.00737,0.969,0.125,125.137,4,1,259293,FALSE,FALSE,"Acquiesce - Live at Wembley Stadium, 2000",6,Fmiliar to millions,F,major,F major 2000,2000,0.238,0.979,7,-3.802,1,0.0745,0.000105,0.258,0.987,0.309,137.661,4,1,244773,FALSE,FALSE,"Step Out - Live at Wembley Stadium, 2000",7,Fmiliar to millions,G,major,G major 2000,2000,0.254,0.951,5,-3.927,0,0.0623,0.000576,0.0831,0.99,0.359,148.3,4,1,481600,FALSE,FALSE,"Gas Panic! - Live at Wembley Stadium, 2000",8,Fmiliar to millions,F,minor,F minor 2000,2000,0.256,0.983,9,-4.444,0,0.0786,0.00187,4.85e-05,0.951,0.322,131.616,4,1,284026,FALSE,FALSE,"Roll With It - Live at Wembley Stadium, 2000",9,Fmiliar to millions,A,minor,A minor 2000,2000,0.269,0.909,7,-4.804,1,0.0406,0.000293,0.0126,0.984,0.234,91.665,4,1,351213,FALSE,FALSE,"Stand by Me - Live at Wembley Stadium, 2000",10,Fmiliar to millions,G,major,G major 2000,2000,0.15,0.912,6,-5.07,0,0.0501,0.0221,0.0154,0.982,0.391,94.592,4,1,286906,FALSE,FALSE,"Wonderwall - Live at Wembley Stadium, 2000",11,Fmiliar to millions,F#,minor,F# minor 2000,2000,0.164,0.955,9,-4.132,1,0.0683,0.000551,0.00999,0.986,0.163,130.306,4,1,413666,FALSE,FALSE,"Cigarettes & Alcohol - Live at Wembley Stadium, 2000",12,Fmiliar to millions,A,major,A major 2000,2000,0.105,0.94,0,-5.12,1,0.0799,0.0212,0.015,0.985,0.222,84.125,4,1,327600,FALSE,FALSE,"Don't Look Back In Anger - Live at Wembley Stadium, 2000",13,Fmiliar to millions,C,major,C major 2000,2000,0.126,0.939,9,-3.979,0,0.0767,0.00791,0.116,0.99,0.192,89.758,4,1,307693,FALSE,FALSE,"Live Forever - Live at Wembley Stadium, 2000",14,Fmiliar to millions,A,minor,A minor 2000,2000,0.387,0.955,9,-5.329,0,0.066,0.00212,0.738,0.988,0.213,128.486,4,1,226173,FALSE,FALSE,"Hey Hey, My, My (Into The Black) - Live at Wembley Stadium, 2000",15,Fmiliar to millions,A,minor,A minor 2000,2000,0.122,0.892,2,-4.626,1,0.0508,0.00463,0.00584,0.987,0.137,80.594,4,1,391626,FALSE,FALSE,"Champagne Supernova - Live at Wembley Stadium, 2000",16,Fmiliar to millions,D,major,D major 2000,2000,0.149,0.996,4,-3.423,1,0.26,0.00933,0.607,0.979,0.0676,136.633,4,1,447440,FALSE,FALSE,"Rock 'n' Roll Star - Live at Wembley Stadium, 2000",17,Fmiliar to millions,E,major,E major 2000,2000,0.115,0.977,9,-3.893,0,0.0862,0.000131,0.284,0.966,0.169,89.167,4,1,393506,FALSE,FALSE,"Helter Skelter - Live for SFX Radio, 2000",18,Fmiliar to millions,A,minor,A minor 1998-11-03,1998,0.199,0.952,0,-1.976,1,0.0694,0.00792,0.000355,0.437,0.244,111.521,4,1,264960,FALSE,FALSE,Acquiesce,1,The Masterplan,C,major,C major 1998-11-03,1998,0.487,0.941,11,-3.779,0,0.0564,0.00195,0,0.745,0.797,123.992,4,1,201133,FALSE,FALSE,Underneath The Sky,2,The Masterplan,B,minor,B minor 1998-11-03,1998,0.393,0.443,4,-8.484,0,0.0265,0.485,4.25e-05,0.371,0.353,84.966,4,1,261106,FALSE,FALSE,Talk Tonight,3,The Masterplan,E,minor,E minor 1998-11-03,1998,0.5,0.722,5,-3.839,1,0.0304,0.282,0,0.325,0.126,107.026,4,1,279400,FALSE,FALSE,Going Nowhere,4,The Masterplan,F,major,F major 1998-11-03,1998,0.111,0.679,2,-3.416,1,0.0482,3.41e-05,0.607,0.372,0.289,72.475,4,1,253040,FALSE,FALSE,Fade Away,5,The Masterplan,D,major,D major 1998-11-03,1998,0.265,0.955,7,-2.185,0,0.0631,0.000874,0.977,0.152,0.178,142.714,4,1,259666,FALSE,FALSE,The Swamp Song,6,The Masterplan,G,minor,G minor 1998-11-03,1998,0.154,0.981,4,-3.461,1,0.17,2.66e-05,0.729,0.395,0.0385,106.511,4,1,385333,FALSE,FALSE,I Am The Walrus - Live Glasgow Cathouse June '94,7,The Masterplan,E,major,E major 1998-11-03,1998,0.132,0.901,9,-2.562,1,0.0678,0.0195,0.00721,0.369,0.346,99.209,4,1,381173,FALSE,FALSE,Listen Up,8,The Masterplan,A,major,A major 1998-11-03,1998,0.519,0.903,9,-4.118,0,0.0332,0.00246,0,0.0621,0.363,125.934,4,1,275880,FALSE,FALSE,Rockin' Chair,9,The Masterplan,A,minor,A minor 1998-11-03,1998,0.339,0.448,0,-8.866,1,0.0314,0.314,0,0.075,0.213,171.116,3,1,261853,FALSE,FALSE,Half The World Away,10,The Masterplan,C,major,C major 1998-11-03,1998,0.323,0.9,0,-3.19,1,0.0577,0.00404,0.0125,0.752,0.348,98.365,5,1,258826,FALSE,FALSE,(It's Good) To Be Free,11,The Masterplan,C,major,C major 1998-11-03,1998,0.396,0.983,2,-2.608,1,0.0764,0.00574,0.000947,0.322,0.223,126.008,4,1,305413,FALSE,FALSE,Stay Young,12,The Masterplan,D,major,D major 1998-11-03,1998,0.198,0.892,7,-2.287,1,0.0569,0.0307,1.16e-05,0.371,0.235,80.02,4,1,278293,FALSE,FALSE,Headshrinker,13,The Masterplan,G,major,G major 1998-11-03,1998,0.363,0.603,7,-6.525,1,0.0309,0.0966,3.71e-05,0.0799,0.197,149.631,4,1,322640,FALSE,FALSE,The Masterplan,14,The Masterplan,G,major,G major 1997-08-21,1997,0.309,0.861,11,-3.41,0,0.0445,0.000164,0.000212,0.113,0.228,80.109,4,1,463213,FALSE,FALSE,D'You Know What I Mean? - Remastered,1,Be Here Now (Remastered),B,minor,B minor 1997-08-21,1997,0.355,0.971,9,-1.898,0,0.0706,0.00249,0.00522,0.673,0.226,135.178,4,1,311333,FALSE,FALSE,My Big Mouth - Remastered,2,Be Here Now (Remastered),A,minor,A minor 1997-08-21,1997,0.301,0.879,0,-2.899,1,0.0548,0.221,0.0334,0.262,0.255,148.48,4,1,430373,FALSE,FALSE,Magic Pie - Remastered,3,Be Here Now (Remastered),C,major,C major 1997-08-21,1997,0.197,0.818,7,-2.596,1,0.045,0.0834,0.00307,0.259,0.337,170.069,4,1,355866,FALSE,FALSE,Stand by Me - Remastered,4,Be Here Now (Remastered),G,major,G major 1997-08-21,1997,0.343,0.978,2,-2.116,1,0.0565,0.00386,0.000362,0.628,0.195,137.298,4,1,262400,FALSE,FALSE,"I Hope, I Think, I Know - Remastered",5,Be Here Now (Remastered),D,major,D major 1997-08-21,1997,0.344,0.912,7,-2.615,1,0.0371,0.124,0,0.07,0.318,166.153,4,1,349640,FALSE,FALSE,The Girl in the Dirty Shirt - Remastered,6,Be Here Now (Remastered),G,major,G major 1997-08-21,1997,0.383,0.783,7,-4.124,1,0.0425,0.091,0.0194,0.416,0.206,86.204,4,1,411360,FALSE,FALSE,Fade In-Out - Remastered,7,Be Here Now (Remastered),G,major,G major 1997-08-21,1997,0.396,0.826,0,-4.925,1,0.0385,0.0372,4.3e-05,0.0756,0.19,81.107,4,1,288666,FALSE,FALSE,Don't Go Away - Remastered,8,Be Here Now (Remastered),C,major,C major 1997-08-21,1997,0.46,0.944,9,-1.945,1,0.0461,0.0795,0.476,0.546,0.286,112.197,4,1,312906,FALSE,FALSE,Be Here Now - Remastered,9,Be Here Now (Remastered),A,major,A major 1997-08-21,1997,0.333,0.831,9,-3.15,1,0.051,0.134,0.000456,0.696,0.333,82.054,4,1,559200,FALSE,FALSE,All Around the World - Remastered,10,Be Here Now (Remastered),A,major,A major 1997-08-21,1997,0.322,0.776,2,-1.693,1,0.0651,0.00203,0.0189,0.898,0.205,126.253,4,1,423373,FALSE,FALSE,It's Gettin' Better (Man!!) - Remastered,11,Be Here Now (Remastered),D,major,D major 1997-08-21,1997,0.303,0.823,2,-5.114,1,0.0499,0.00279,0.825,0.394,0.219,82.006,4,1,126853,FALSE,FALSE,All Around the World (Reprise) - Remastered,12,Be Here Now (Remastered),D,major,D major 1997-08-21,1997,0.381,0.98,2,-2.706,1,0.0691,0.00509,0.00079,0.338,0.223,126.053,4,2,308173,FALSE,FALSE,Stay Young - Remastered,1,Be Here Now (Remastered),D,major,D major 1997-08-21,1997,0.359,0.936,2,-2.951,1,0.0528,5.34e-05,5.42e-05,0.489,0.481,135.041,4,2,275626,FALSE,FALSE,The Fame - Remastered,2,Be Here Now (Remastered),D,major,D major 1997-08-21,1997,0.42,0.825,11,-3.183,0,0.0346,0.00685,4.93e-05,0.115,0.266,128.99,4,2,308626,FALSE,FALSE,Flashbax - Remastered,3,Be Here Now (Remastered),B,minor,B minor 1997-08-21,1997,0.337,0.845,0,-1.991,1,0.0571,0.00431,0.00363,0.475,0.423,125.948,4,2,314986,FALSE,FALSE,(I Got) The Fever - Remastered,4,Be Here Now (Remastered),C,major,C major 1997-08-21,1997,0.357,0.973,4,-2.459,1,0.0615,0.0035,0.00309,0.0872,0.208,134.093,4,2,359413,FALSE,FALSE,My Sister Lover - Remastered,5,Be Here Now (Remastered),E,major,E major 1997-08-21,1997,0.482,0.724,5,-3.705,1,0.0302,0.304,0,0.279,0.122,107.061,4,2,281800,FALSE,FALSE,Going Nowhere - Remastered,6,Be Here Now (Remastered),F,major,F major 1997-08-21,1997,0.576,0.545,9,-5.84,0,0.0257,0.23,0,0.113,0.629,81.068,4,2,362640,FALSE,FALSE,Stand by Me - Live at Bonehead's Outtake,7,Be Here Now (Remastered),A,minor,A minor 1997-08-21,1997,0.514,0.366,2,-7.109,1,0.0281,0.788,0.000124,0.147,0.411,100.807,4,2,277840,FALSE,FALSE,Untitled - Demo,8,Be Here Now (Remastered),D,major,D major 1997-08-21,1997,0.395,0.31,11,-6.871,0,0.0298,0.72,0,0.726,0.195,123.538,4,2,224866,FALSE,FALSE,Help! - Live in LA,9,Be Here Now (Remastered),B,minor,B minor 1997-08-21,1997,0.551,0.372,7,-5.762,1,0.025,0.414,0,0.0921,0.339,99.115,4,2,236026,FALSE,FALSE,Setting Sun - Live Radio Broadcast,10,Be Here Now (Remastered),G,major,G major 1997-08-21,1997,0.366,0.263,9,-9.605,0,0.0254,0.754,0.000261,0.0735,0.242,75.093,4,2,293213,FALSE,FALSE,If We Shadows - Demo,11,Be Here Now (Remastered),A,minor,A minor 1997-08-21,1997,0.488,0.529,0,-7.536,1,0.032,0.801,0,0.231,0.525,85.313,4,2,222546,FALSE,FALSE,Don't Go Away - Demo,12,Be Here Now (Remastered),C,major,C major 1997-08-21,1997,0.181,0.935,5,-5.404,1,0.0729,0.000148,0.272,0.956,0.366,141.382,4,2,321466,TRUE,FALSE,My Big Mouth - Live at Knebworth Park,13,Be Here Now (Remastered),F,major,F major 1997-08-21,1997,0.331,0.843,4,-3.273,1,0.0376,0.000126,0.0118,0.198,0.322,80.01,4,2,443495,FALSE,FALSE,D'You Know What I Mean? - NG's 2016 Rethink,14,Be Here Now (Remastered),E,major,E major 1997-08-21,1997,0.447,0.633,6,-8.421,0,0.0298,0.00662,0.000893,0.127,0.155,80.013,4,3,435373,FALSE,FALSE,D'You Know What I Mean? - Mustique Demo,1,Be Here Now (Remastered),F#,minor,F# minor 1997-08-21,1997,0.466,0.866,0,-7.625,1,0.047,9.79e-06,0.000285,0.171,0.696,134.001,4,3,317426,FALSE,FALSE,My Big Mouth - Mustique Demo,2,Be Here Now (Remastered),C,major,C major 1997-08-21,1997,0.445,0.888,11,-7.18,0,0.0323,4.51e-05,0.000976,0.332,0.552,134,4,3,369040,FALSE,FALSE,My Sister Lover - Mustique Demo,3,Be Here Now (Remastered),B,minor,B minor 1997-08-21,1997,0.364,0.801,7,-7.966,1,0.0319,0.00112,0.000471,0.607,0.455,168.024,4,3,360920,FALSE,FALSE,Stand by Me - Mustique Demo,4,Be Here Now (Remastered),G,major,G major 1997-08-21,1997,0.406,0.922,2,-7.529,1,0.0466,5.22e-06,4.77e-05,0.72,0.55,136.984,4,3,250680,FALSE,FALSE,"I Hope, I Think, I Know - Mustique Demo",5,Be Here Now (Remastered),D,major,D major 1997-08-21,1997,0.35,0.781,7,-8.019,1,0.0352,0.0181,3.52e-06,0.327,0.547,165.945,4,3,323266,FALSE,FALSE,The Girl in the Dirty Shirt - Mustique Demo,6,Be Here Now (Remastered),G,major,G major 1997-08-21,1997,0.421,0.783,9,-8.846,0,0.0361,0.0207,2.48e-06,0.125,0.535,161.771,4,3,258293,FALSE,FALSE,Don't Go Away - Mustique Demo,7,Be Here Now (Remastered),A,minor,A minor 1997-08-21,1997,0.178,0.272,7,-20.608,1,0.0294,0.974,0.996,0.21,0.102,164.818,4,3,215000,FALSE,FALSE,Trip Inside (Be Here Now) - Mustique Demo,8,Be Here Now (Remastered),G,major,G major 1997-08-21,1997,0.468,0.566,7,-10.033,1,0.027,0.0755,0.00173,0.45,0.277,86.039,4,3,362880,FALSE,FALSE,Fade In-Out - Mustique Demo,9,Be Here Now (Remastered),G,major,G major 1997-08-21,1997,0.381,0.832,2,-6.603,1,0.0423,5.64e-06,0.0114,0.575,0.383,128.959,4,3,296480,FALSE,FALSE,Stay Young - Mustique Demo,10,Be Here Now (Remastered),D,major,D major 1997-08-21,1997,0.3,0.397,4,-12.688,0,0.0302,0.376,5.18e-06,0.171,0.182,95.689,4,3,268373,FALSE,FALSE,Angel Child - Mustique Demo,11,Be Here Now (Remastered),E,minor,E minor 1997-08-21,1997,0.409,0.919,2,-6.865,1,0.0431,2.71e-05,0.000426,0.192,0.667,134.95,4,3,285360,FALSE,FALSE,The Fame - Mustique Demo,12,Be Here Now (Remastered),D,major,D major 1997-08-21,1997,0.469,0.744,11,-7.959,1,0.0301,0.0059,0.062,0.673,0.457,81.997,4,3,390893,FALSE,FALSE,All Around the World - Mustique Demo,13,Be Here Now (Remastered),B,major,B major 1997-08-21,1997,0.438,0.926,2,-7.535,1,0.0437,9.66e-05,0.000411,0.197,0.378,125.002,4,3,397586,FALSE,FALSE,It's Gettin' Better (Man!!) - Mustique Demo,14,Be Here Now (Remastered),D,major,D major 1997-08-21,1997,0.312,0.886,11,-3.244,0,0.0427,7.32e-05,0.000161,0.0885,0.251,80.025,4,1,462226,FALSE,FALSE,D'You Know What I Mean?,1,Be Here Now,B,minor,B minor 1997-08-21,1997,0.367,0.988,5,-1.071,1,0.0706,0.00425,7.58e-06,0.0486,0.327,135.043,4,1,302600,FALSE,FALSE,My Big Mouth,2,Be Here Now,F,major,F major 1997-08-21,1997,0.327,0.895,0,-3.064,1,0.0476,0.134,0.00206,0.385,0.295,148.348,4,1,439373,FALSE,FALSE,Magic Pie,3,Be Here Now,C,major,C major 1997-08-21,1997,0.214,0.828,7,-2.66,1,0.0383,0.0142,1.61e-06,0.161,0.388,169.876,4,1,356600,FALSE,FALSE,Stand by Me,4,Be Here Now,G,major,G major 1997-08-21,1997,0.355,0.978,2,-2.331,1,0.0596,0.000657,0.00495,0.448,0.19,137.059,4,1,262426,FALSE,FALSE,"I Hope, I Think, I Know",5,Be Here Now,D,major,D major 1997-08-21,1997,0.389,0.905,7,-3.126,1,0.0352,0.127,0,0.382,0.315,166.128,4,1,347400,FALSE,FALSE,The Girl in the Dirty Shirt,6,Be Here Now,G,major,G major 1997-08-21,1997,0.399,0.729,7,-5.515,1,0.0333,0.0126,0.000324,0.368,0.181,85.993,4,1,412293,FALSE,FALSE,Fade In-Out,7,Be Here Now,G,major,G major 1997-08-21,1997,0.426,0.838,0,-4.38,1,0.0362,0.0532,3.02e-06,0.0829,0.182,81.089,4,1,288600,FALSE,FALSE,Don't Go Away,8,Be Here Now,C,major,C major 1997-08-21,1997,0.486,0.913,9,-2.175,1,0.0394,0.0122,0.498,0.446,0.308,112.07,4,1,313200,FALSE,FALSE,Be Here Now,9,Be Here Now,A,major,A major 1997-08-21,1997,0.366,0.831,7,-3.449,1,0.0429,0.00572,0.00162,0.484,0.339,82.04,4,1,560000,FALSE,FALSE,All Around the World,10,Be Here Now,G,major,G major 1997-08-21,1997,0.368,0.92,2,-1.931,1,0.0627,0.000201,0.167,0.418,0.151,126.133,4,1,419973,FALSE,FALSE,It's Gettin' Better (Man!!),11,Be Here Now,D,major,D major 1997-08-21,1997,0.307,0.841,2,-5.759,1,0.0496,0.00035,0.866,0.477,0.183,81.944,4,1,128066,FALSE,FALSE,All Around the World - Reprise,12,Be Here Now,D,major,D major 1997-08-21,1997,0.309,0.861,11,-3.41,0,0.0445,0.000164,0.000212,0.113,0.228,80.109,4,1,463213,FALSE,FALSE,D'You Know What I Mean? - Remastered,1,Be Here Now (Remastered),B,minor,B minor 1997-08-21,1997,0.355,0.971,9,-1.898,0,0.0706,0.00249,0.00522,0.673,0.226,135.178,4,1,311333,FALSE,FALSE,My Big Mouth - Remastered,2,Be Here Now (Remastered),A,minor,A minor 1997-08-21,1997,0.301,0.879,0,-2.899,1,0.0548,0.221,0.0334,0.262,0.255,148.48,4,1,430373,FALSE,FALSE,Magic Pie - Remastered,3,Be Here Now (Remastered),C,major,C major 1997-08-21,1997,0.197,0.818,7,-2.596,1,0.045,0.0834,0.00307,0.259,0.337,170.069,4,1,355866,FALSE,FALSE,Stand by Me - Remastered,4,Be Here Now (Remastered),G,major,G major 1997-08-21,1997,0.343,0.978,2,-2.116,1,0.0565,0.00386,0.000362,0.628,0.195,137.298,4,1,262400,FALSE,FALSE,"I Hope, I Think, I Know - Remastered",5,Be Here Now (Remastered),D,major,D major 1997-08-21,1997,0.344,0.912,7,-2.615,1,0.0371,0.124,0,0.07,0.318,166.153,4,1,349640,FALSE,FALSE,The Girl in the Dirty Shirt - Remastered,6,Be Here Now (Remastered),G,major,G major 1997-08-21,1997,0.383,0.783,7,-4.124,1,0.0425,0.091,0.0194,0.416,0.206,86.204,4,1,411360,FALSE,FALSE,Fade In-Out - Remastered,7,Be Here Now (Remastered),G,major,G major 1997-08-21,1997,0.396,0.826,0,-4.925,1,0.0385,0.0372,4.3e-05,0.0756,0.19,81.107,4,1,288666,FALSE,FALSE,Don't Go Away - Remastered,8,Be Here Now (Remastered),C,major,C major 1997-08-21,1997,0.46,0.944,9,-1.945,1,0.0461,0.0795,0.476,0.546,0.286,112.197,4,1,312906,FALSE,FALSE,Be Here Now - Remastered,9,Be Here Now (Remastered),A,major,A major 1997-08-21,1997,0.333,0.831,9,-3.15,1,0.051,0.134,0.000456,0.696,0.333,82.054,4,1,559200,FALSE,FALSE,All Around the World - Remastered,10,Be Here Now (Remastered),A,major,A major 1997-08-21,1997,0.322,0.776,2,-1.693,1,0.0651,0.00203,0.0189,0.898,0.205,126.253,4,1,423373,FALSE,FALSE,It's Gettin' Better (Man!!) - Remastered,11,Be Here Now (Remastered),D,major,D major 1997-08-21,1997,0.303,0.823,2,-5.114,1,0.0499,0.00279,0.825,0.394,0.219,82.006,4,1,126853,FALSE,FALSE,All Around the World (Reprise) - Remastered,12,Be Here Now (Remastered),D,major,D major 1997-08-21,1997,0.312,0.886,11,-3.244,0,0.0427,7.32e-05,0.000161,0.0885,0.251,80.025,4,1,462226,FALSE,FALSE,D'You Know What I Mean?,1,Be Here Now,B,minor,B minor 1997-08-21,1997,0.367,0.988,5,-1.071,1,0.0706,0.00425,7.58e-06,0.0486,0.327,135.043,4,1,302600,FALSE,FALSE,My Big Mouth,2,Be Here Now,F,major,F major 1997-08-21,1997,0.327,0.895,0,-3.064,1,0.0476,0.134,0.00206,0.385,0.295,148.348,4,1,439373,FALSE,FALSE,Magic Pie,3,Be Here Now,C,major,C major 1997-08-21,1997,0.214,0.828,7,-2.66,1,0.0383,0.0142,1.61e-06,0.161,0.388,169.876,4,1,356600,FALSE,FALSE,Stand by Me,4,Be Here Now,G,major,G major 1997-08-21,1997,0.355,0.978,2,-2.331,1,0.0596,0.000657,0.00495,0.448,0.19,137.059,4,1,262426,FALSE,FALSE,"I Hope, I Think, I Know",5,Be Here Now,D,major,D major 1997-08-21,1997,0.389,0.905,7,-3.126,1,0.0352,0.127,0,0.382,0.315,166.128,4,1,347400,FALSE,FALSE,The Girl in the Dirty Shirt,6,Be Here Now,G,major,G major 1997-08-21,1997,0.399,0.729,7,-5.515,1,0.0333,0.0126,0.000324,0.368,0.181,85.993,4,1,412293,FALSE,FALSE,Fade In-Out,7,Be Here Now,G,major,G major 1997-08-21,1997,0.426,0.838,0,-4.38,1,0.0362,0.0532,3.02e-06,0.0829,0.182,81.089,4,1,288600,FALSE,FALSE,Don't Go Away,8,Be Here Now,C,major,C major 1997-08-21,1997,0.486,0.913,9,-2.175,1,0.0394,0.0122,0.498,0.446,0.308,112.07,4,1,313200,FALSE,FALSE,Be Here Now,9,Be Here Now,A,major,A major 1997-08-21,1997,0.366,0.831,7,-3.449,1,0.0429,0.00572,0.00162,0.484,0.339,82.04,4,1,560000,FALSE,FALSE,All Around the World,10,Be Here Now,G,major,G major 1997-08-21,1997,0.368,0.92,2,-1.931,1,0.0627,0.000201,0.167,0.418,0.151,126.133,4,1,419973,FALSE,FALSE,It's Gettin' Better (Man!!),11,Be Here Now,D,major,D major 1997-08-21,1997,0.307,0.841,2,-5.759,1,0.0496,0.00035,0.866,0.477,0.183,81.944,4,1,128066,FALSE,FALSE,All Around the World - Reprise,12,Be Here Now,D,major,D major 1997-08-21,1997,0.139,0.885,11,-3.247,0,0.0473,6.98e-05,0.000109,0.0972,0.216,80.063,4,1,462493,FALSE,FALSE,D'You Know What I Mean?,1,Be Here Now,B,minor,B minor 1997-08-21,1997,0.367,0.988,5,-1.077,1,0.0701,0.00373,6.93e-06,0.0462,0.327,135.042,4,1,302640,FALSE,FALSE,My Big Mouth,2,Be Here Now,F,major,F major 1997-08-21,1997,0.325,0.904,0,-3.041,1,0.0513,0.145,0.00247,0.385,0.266,148.305,4,1,439400,FALSE,FALSE,Magic Pie,3,Be Here Now,C,major,C major 1997-08-21,1997,0.229,0.848,7,-2.633,1,0.039,0.0126,1.7e-06,0.146,0.362,169.878,4,1,356626,FALSE,FALSE,Stand By Me,4,Be Here Now,G,major,G major 1997-08-21,1997,0.357,0.975,2,-2.305,1,0.0594,0.000471,0.00559,0.446,0.199,137.067,4,1,262466,FALSE,FALSE,"I Hope, I Think, I Know",5,Be Here Now,D,major,D major 1997-08-21,1997,0.393,0.905,7,-3.081,1,0.0349,0.13,0,0.0778,0.376,166.231,4,1,349773,FALSE,FALSE,The Girl In The Dirty Shirt,6,Be Here Now,G,major,G major 1997-08-21,1997,0.295,0.731,7,-5.551,1,0.0376,0.0104,0.00026,0.351,0.195,171.828,4,1,412560,FALSE,FALSE,Fade In-Out,7,Be Here Now,G,major,G major 1997-08-21,1997,0.342,0.844,0,-4.442,1,0.0425,0.054,2.55e-06,0.0718,0.19,162.285,4,1,288640,FALSE,FALSE,Don't Go Away,8,Be Here Now,C,major,C major 1997-08-21,1997,0.483,0.921,9,-2.262,1,0.0361,0.0126,0.435,0.526,0.328,112.065,4,1,313226,FALSE,FALSE,Be Here Now,9,Be Here Now,A,major,A major 1997-08-21,1997,0.365,0.842,6,-3.446,0,0.0425,0.0054,0.00114,0.422,0.377,82.038,4,1,560040,FALSE,FALSE,All Around The World,10,Be Here Now,F#,minor,F# minor 1997-08-21,1997,0.376,0.921,2,-1.719,1,0.0613,0.000203,0.166,0.437,0.152,126.1,4,1,420000,FALSE,FALSE,It's Gettin' Better (Man!!),11,Be Here Now,D,major,D major 1997-08-21,1997,0.0746,0.838,2,-5.771,1,0.0669,0.000315,0.929,0.371,0.144,79.32,4,1,128333,FALSE,FALSE,All Around The World - Reprise,12,Be Here Now,D,major,D major 1997-07-08,1997,0.312,0.887,11,-3.244,0,0.0428,7.35e-05,0.000173,0.0885,0.253,80.05,4,1,462226,FALSE,FALSE,D'You Know What I Mean?,1,Be Here Now,B,minor,B minor 1997-07-08,1997,0.367,0.987,5,-1.072,1,0.0707,0.00446,8.47e-06,0.0486,0.335,135.038,4,1,302600,FALSE,FALSE,My Big Mouth,2,Be Here Now,F,major,F major 1997-07-08,1997,0.327,0.895,0,-3.064,1,0.0476,0.134,0.00209,0.385,0.295,148.362,4,1,439373,FALSE,FALSE,Magic Pie,3,Be Here Now,C,major,C major 1997-07-08,1997,0.214,0.827,7,-2.661,1,0.038,0.0139,1.65e-06,0.162,0.384,169.96,4,1,356600,FALSE,FALSE,Stand by Me,4,Be Here Now,G,major,G major 1997-07-08,1997,0.355,0.978,2,-2.331,1,0.0596,0.000657,0.00487,0.448,0.19,137.065,4,1,262426,FALSE,FALSE,"I Hope, I Think, I Know",5,Be Here Now,D,major,D major 1997-07-08,1997,0.388,0.905,7,-3.126,1,0.0352,0.126,0,0.382,0.329,166.128,4,1,347400,FALSE,FALSE,The Girl in the Dirty Shirt,6,Be Here Now,G,major,G major 1997-07-08,1997,0.398,0.729,7,-5.515,1,0.0334,0.0126,0.000326,0.368,0.181,85.985,4,1,412293,FALSE,FALSE,Fade In-Out,7,Be Here Now,G,major,G major 1997-07-08,1997,0.426,0.838,0,-4.38,1,0.0362,0.0532,3.02e-06,0.0829,0.182,81.089,4,1,288600,FALSE,FALSE,Don't Go Away,8,Be Here Now,C,major,C major 1997-07-08,1997,0.486,0.913,9,-2.174,1,0.0394,0.0122,0.498,0.446,0.308,112.064,4,1,313200,FALSE,FALSE,Be Here Now,9,Be Here Now,A,major,A major 1997-07-08,1997,0.364,0.831,2,-3.449,1,0.0421,0.00553,0.00162,0.484,0.34,82.05,4,1,560000,FALSE,FALSE,All Around the World,10,Be Here Now,D,major,D major 1997-07-08,1997,0.367,0.92,2,-1.931,1,0.0626,0.000201,0.167,0.418,0.151,126.132,4,1,419973,FALSE,FALSE,It's Gettin' Better (Man!!),11,Be Here Now,D,major,D major 1997-07-08,1997,0.246,0.841,2,-5.759,1,0.0513,0.00035,0.862,0.477,0.181,82.026,4,1,128065,FALSE,FALSE,All Around the World - Reprise,12,Be Here Now,D,major,D major 1997,1997,0.316,0.877,4,-3.187,1,0.0406,6.86e-05,8.67e-05,0.109,0.273,80.008,4,1,462533,FALSE,FALSE,D'You Know What I Mean?,1,BE HERE NOW,E,major,E major 1997,1997,0.364,0.987,5,-1.067,1,0.0691,0.0035,7.56e-06,0.0494,0.322,135.025,4,1,302600,FALSE,FALSE,My Big Mouth,2,BE HERE NOW,F,major,F major 1997,1997,0.326,0.895,0,-3.061,1,0.0483,0.134,0.00341,0.382,0.281,148.312,4,1,439400,FALSE,FALSE,Magic Pie,3,BE HERE NOW,C,major,C major 1997,1997,0.22,0.831,7,-2.623,1,0.0377,0.0118,1.79e-06,0.135,0.393,169.916,4,1,356066,FALSE,FALSE,Stand by Me,4,BE HERE NOW,G,major,G major 1997,1997,0.353,0.978,2,-2.311,1,0.0597,0.000478,0.00596,0.541,0.2,137.059,4,1,263026,FALSE,FALSE,"I Hope, I Think, I Know",5,BE HERE NOW,D,major,D major 1997,1997,0.386,0.897,7,-3.134,1,0.0341,0.152,0,0.103,0.385,166.162,4,1,349733,FALSE,FALSE,The Girl in the Dirty Shirt,6,BE HERE NOW,G,major,G major 1997,1997,0.396,0.738,7,-5.494,1,0.0333,0.0103,0.000641,0.368,0.205,86.002,4,1,412600,FALSE,FALSE,Fade In-Out,7,BE HERE NOW,G,major,G major 1997,1997,0.425,0.847,0,-4.421,1,0.037,0.0536,1.89e-06,0.0799,0.185,81.136,4,1,288666,FALSE,FALSE,Don't Go Away,8,BE HERE NOW,C,major,C major 1997,1997,0.486,0.914,9,-2.255,1,0.0364,0.0115,0.42,0.527,0.353,112.109,4,1,313240,FALSE,FALSE,Be Here Now,9,BE HERE NOW,A,major,A major 1997,1997,0.366,0.851,2,-3.432,1,0.0404,0.00579,0.000981,0.388,0.414,81.985,4,1,560000,FALSE,FALSE,All Around the World,10,BE HERE NOW,D,major,D major 1997,1997,0.375,0.936,2,-1.716,1,0.0611,0.000178,0.157,0.415,0.168,126.103,4,1,420000,FALSE,FALSE,It's Gettin' Better (Man!!),11,BE HERE NOW,D,major,D major 1997,1997,0.25,0.834,2,-5.796,1,0.0523,0.000318,0.927,0.386,0.163,82.024,4,1,129199,FALSE,FALSE,All Around the World - Reprise,12,BE HERE NOW,D,major,D major 1997,1997,0.299,0.861,11,-3.418,0,0.0442,0.000154,0.000985,0.114,0.229,80.208,4,1,463066,FALSE,FALSE,D'You Know What I Mean? - Remastered,1,Be Here Now (Deluxe Remastered Edition),B,minor,B minor 1997,1997,0.355,0.979,2,-1.936,0,0.0712,0.00309,0.00925,0.675,0.219,135.172,4,1,311333,FALSE,FALSE,My Big Mouth - Remastered,2,Be Here Now (Deluxe Remastered Edition),D,minor,D minor 1997,1997,0.301,0.884,0,-2.912,1,0.0555,0.231,0.0222,0.333,0.263,148.244,4,1,430373,FALSE,FALSE,Magic Pie - Remastered,3,Be Here Now (Deluxe Remastered Edition),C,major,C major 1997,1997,0.194,0.825,7,-2.605,1,0.041,0.0864,0.00284,0.182,0.35,169.974,4,1,355866,FALSE,FALSE,Stand By Me - Remastered,4,Be Here Now (Deluxe Remastered Edition),G,major,G major 1997,1997,0.341,0.976,2,-2.138,1,0.0553,0.00347,0.000519,0.68,0.187,137.38,4,1,262400,FALSE,FALSE,"I Hope, I Think, I Know - Remastered",5,Be Here Now (Deluxe Remastered Edition),D,major,D major 1997,1997,0.344,0.919,7,-2.582,1,0.0371,0.116,0,0.0649,0.354,166.314,4,1,349640,FALSE,FALSE,The Girl In The Dirty Shirt - Remastered,6,Be Here Now (Deluxe Remastered Edition),G,major,G major 1997,1997,0.389,0.784,7,-4.135,1,0.0417,0.0979,0.0171,0.399,0.188,86.106,4,1,411360,FALSE,FALSE,Fade In-Out - Remastered,7,Be Here Now (Deluxe Remastered Edition),G,major,G major 1997,1997,0.396,0.831,0,-4.913,1,0.0359,0.0382,9.62e-05,0.0721,0.18,81.175,4,1,288666,FALSE,FALSE,Don't Go Away - Remastered,8,Be Here Now (Deluxe Remastered Edition),C,major,C major 1997,1997,0.456,0.942,4,-1.944,1,0.0455,0.0653,0.472,0.493,0.322,112.194,4,1,312906,FALSE,FALSE,Be Here Now - Remastered,9,Be Here Now (Deluxe Remastered Edition),E,major,E major 1997,1997,0.33,0.814,9,-3.138,1,0.0506,0.155,0.000291,0.701,0.297,82.131,4,1,559200,FALSE,FALSE,All Around The World - Remastered,10,Be Here Now (Deluxe Remastered Edition),A,major,A major 1997,1997,0.328,0.74,2,-1.696,1,0.0658,0.00226,0.0183,0.877,0.24,126.208,4,1,423373,FALSE,FALSE,It's Gettin' Better (Man!!) - Remastered,11,Be Here Now (Deluxe Remastered Edition),D,major,D major 1997,1997,0.294,0.835,2,-5.134,1,0.0489,0.00317,0.803,0.404,0.214,82.548,4,1,127000,FALSE,FALSE,All Around The World (Reprise) - Remastered,12,Be Here Now (Deluxe Remastered Edition),D,major,D major 1997,1997,0.381,0.98,2,-2.742,1,0.0719,0.00519,0.000319,0.332,0.216,126.057,4,2,307333,FALSE,FALSE,Stay Young - Remastered,1,Be Here Now (Deluxe Remastered Edition),D,major,D major 1997,1997,0.363,0.938,2,-2.938,1,0.0535,5.67e-05,3.99e-05,0.485,0.464,135.01,4,2,275626,FALSE,FALSE,The Fame - Remastered,2,Be Here Now (Deluxe Remastered Edition),D,major,D major 1997,1997,0.419,0.809,4,-3.283,1,0.0335,0.00712,2.94e-05,0.137,0.234,129.009,4,2,309413,FALSE,FALSE,Flashbax - Remastered,3,Be Here Now (Deluxe Remastered Edition),E,major,E major 1997,1997,0.335,0.858,0,-2.032,1,0.0574,0.00589,0.0145,0.408,0.403,126.054,4,2,315026,FALSE,FALSE,(I Got) The Fever - Remastered,4,Be Here Now (Deluxe Remastered Edition),C,major,C major 1997,1997,0.366,0.976,4,-2.468,1,0.0617,0.00313,0.00465,0.0756,0.222,134.081,4,2,359546,FALSE,FALSE,My Sister Lover - Remastered,5,Be Here Now (Deluxe Remastered Edition),E,major,E major 1997,1997,0.482,0.735,2,-3.681,0,0.0303,0.279,0,0.263,0.117,107.06,4,2,281626,FALSE,FALSE,Going Nowhere - Remastered,6,Be Here Now (Deluxe Remastered Edition),D,minor,D minor 1997,1997,0.576,0.543,9,-5.855,0,0.0259,0.229,0,0.114,0.644,81.074,4,2,362640,FALSE,FALSE,Stand By Me - Live at Bonehead's Outtake,7,Be Here Now (Deluxe Remastered Edition),A,minor,A minor 1997,1997,0.516,0.368,2,-7.198,1,0.028,0.781,0.000175,0.147,0.41,100.511,4,2,277840,FALSE,FALSE,Untitled - Demo,8,Be Here Now (Deluxe Remastered Edition),D,major,D major 1997,1997,0.39,0.307,11,-6.889,0,0.03,0.701,0,0.733,0.19,123.911,4,2,225040,FALSE,FALSE,Help! - Live in LA,9,Be Here Now (Deluxe Remastered Edition),B,minor,B minor 1997,1997,0.567,0.373,7,-5.743,1,0.0251,0.439,0,0.0936,0.29,99.651,4,2,235853,FALSE,FALSE,Setting Sun - Live Radio Broadcast,10,Be Here Now (Deluxe Remastered Edition),G,major,G major 1997,1997,0.422,0.258,9,-9.616,0,0.0263,0.741,0.000195,0.0737,0.271,140.819,4,2,293213,FALSE,FALSE,If We Shadows - Demo,11,Be Here Now (Deluxe Remastered Edition),A,minor,A minor 1997,1997,0.482,0.526,0,-7.515,1,0.0308,0.781,0,0.174,0.513,84.75,4,2,222546,FALSE,FALSE,Don't Go Away - Demo,12,Be Here Now (Deluxe Remastered Edition),C,major,C major 1997,1997,0.186,0.936,5,-5.386,1,0.0747,0.000131,0.186,0.907,0.361,140.254,4,2,322680,TRUE,FALSE,My Big Mouth - Live at Knebworth Park,13,Be Here Now (Deluxe Remastered Edition),F,major,F major 1997,1997,0.321,0.832,4,-3.872,1,0.0384,0.000134,0.024,0.201,0.311,79.991,4,2,443653,FALSE,FALSE,D'You Know What I Mean? - NG's 2016 Rethink,14,Be Here Now (Deluxe Remastered Edition),E,major,E major 1997,1997,0.448,0.632,6,-8.421,0,0.0293,0.00662,0.000857,0.127,0.156,79.981,4,3,435373,FALSE,FALSE,D'You Know What I Mean? - Mustique Demo,1,Be Here Now (Deluxe Remastered Edition),F#,minor,F# minor 1997,1997,0.467,0.867,0,-7.625,1,0.0469,9.68e-06,0.000281,0.171,0.696,134.005,4,3,317426,FALSE,FALSE,My Big Mouth - Mustique Demo,2,Be Here Now (Deluxe Remastered Edition),C,major,C major 1997,1997,0.444,0.888,11,-7.18,0,0.0323,4.47e-05,0.00098,0.332,0.552,134.003,4,3,369040,FALSE,FALSE,My Sister Lover - Mustique Demo,3,Be Here Now (Deluxe Remastered Edition),B,minor,B minor 1997,1997,0.364,0.801,7,-7.966,1,0.0319,0.00112,0.000471,0.607,0.454,168.018,4,3,360920,FALSE,FALSE,Stand By Me - Mustique Demo,4,Be Here Now (Deluxe Remastered Edition),G,major,G major 1997,1997,0.405,0.922,2,-7.529,1,0.0466,5.21e-06,4.51e-05,0.72,0.564,136.98,4,3,250680,FALSE,FALSE,"I Hope, I Think, I Know - Mustique Demo",5,Be Here Now (Deluxe Remastered Edition),D,major,D major 1997,1997,0.35,0.781,7,-8.019,1,0.0352,0.0183,3.52e-06,0.327,0.547,165.94,4,3,323266,FALSE,FALSE,The Girl In The Dirty Shirt - Mustique Demo,6,Be Here Now (Deluxe Remastered Edition),G,major,G major 1997,1997,0.421,0.783,9,-8.846,0,0.0361,0.021,2.59e-06,0.124,0.536,161.772,4,3,258293,FALSE,FALSE,Don't Go Away - Mustique Demo,7,Be Here Now (Deluxe Remastered Edition),A,minor,A minor 1997,1997,0.178,0.272,7,-20.608,1,0.0294,0.974,0.996,0.21,0.102,164.816,4,3,215000,FALSE,FALSE,Trip Inside (Be Here Now) - Mustique Demo,8,Be Here Now (Deluxe Remastered Edition),G,major,G major 1997,1997,0.467,0.566,7,-10.033,1,0.0271,0.0755,0.00169,0.45,0.279,85.948,4,3,362880,FALSE,FALSE,Fade In-Out - Mustique Demo,9,Be Here Now (Deluxe Remastered Edition),G,major,G major 1997,1997,0.38,0.832,2,-6.603,1,0.0423,5.56e-06,0.0118,0.574,0.383,128.956,4,3,296480,FALSE,FALSE,Stay Young - Mustique Demo,10,Be Here Now (Deluxe Remastered Edition),D,major,D major 1997,1997,0.298,0.397,4,-12.687,0,0.0302,0.376,5.18e-06,0.171,0.181,96.021,4,3,268373,FALSE,FALSE,Angel Child - Mustique Demo,11,Be Here Now (Deluxe Remastered Edition),E,minor,E minor 1997,1997,0.409,0.919,2,-6.864,1,0.0431,2.67e-05,0.000429,0.192,0.666,134.959,4,3,285360,FALSE,FALSE,The Fame - Mustique Demo,12,Be Here Now (Deluxe Remastered Edition),D,major,D major 1997,1997,0.471,0.743,11,-7.96,1,0.0297,0.00594,0.0597,0.673,0.46,82.023,4,3,390893,FALSE,FALSE,All Around The World - Mustique Demo,13,Be Here Now (Deluxe Remastered Edition),B,major,B major 1997,1997,0.438,0.926,2,-7.535,1,0.0437,9.66e-05,0.000404,0.197,0.378,125.005,4,3,397586,FALSE,FALSE,It's Gettin' Better (Man!!) - Mustique Demo,14,Be Here Now (Deluxe Remastered Edition),D,major,D major 1995-10-02,1995,0.162,0.947,9,-3.174,0,0.113,0.0142,0.0446,0.166,0.0563,132.31,4,1,203186,FALSE,FALSE,Hello - Remastered,1,(What's The Story) Morning Glory? [Remastered],A,minor,A minor 1995-10-02,1995,0.232,0.986,9,-1.896,0,0.0947,0.0325,0.000311,0.117,0.145,126.555,4,1,240093,FALSE,FALSE,Roll with It - Remastered,2,(What's The Story) Morning Glory? [Remastered],A,minor,A minor 1995-10-02,1995,0.378,0.896,2,-4.066,1,0.0407,0.000452,0,0.194,0.469,174.302,4,1,258773,FALSE,FALSE,Wonderwall - Remastered,3,(What's The Story) Morning Glory? [Remastered],D,major,D major 1995-10-02,1995,0.327,0.938,0,-3.237,1,0.0645,0.0708,3.79e-06,0.148,0.326,162.937,4,1,289560,FALSE,FALSE,Don't Look Back in Anger - Remastered,4,(What's The Story) Morning Glory? [Remastered],C,major,C major 1995-10-02,1995,0.148,0.933,2,-2.478,1,0.0658,0.000301,0.00139,0.382,0.205,202.196,4,1,341906,FALSE,FALSE,Hey Now - Remastered,5,(What's The Story) Morning Glory? [Remastered],D,major,D major 1995-10-02,1995,0.279,0.742,10,-5.656,1,0.048,3.93e-05,0.92,0.258,0.21,143.155,4,1,44626,FALSE,FALSE,Untitled - Remastered,6,(What's The Story) Morning Glory? [Remastered],A#,major,A# major 1995-10-02,1995,0.266,0.934,0,-2.28,0,0.0929,0.171,0.0223,0.288,0.07,110.268,4,1,327920,FALSE,FALSE,Some Might Say - Remastered,7,(What's The Story) Morning Glory? [Remastered],C,minor,C minor 1995-10-02,1995,0.414,0.839,7,-4.321,1,0.0284,0.00194,0,0.163,0.631,158.389,4,1,294813,FALSE,FALSE,Cast No Shadow - Remastered,8,(What's The Story) Morning Glory? [Remastered],G,major,G major 1995-10-02,1995,0.487,0.909,9,-3.484,1,0.0463,0.159,1.27e-06,0.303,0.51,125.418,4,1,220920,FALSE,FALSE,She's Electric - Remastered,9,(What's The Story) Morning Glory? [Remastered],A,major,A major 1995-10-02,1995,0.327,0.982,0,-3.038,1,0.0937,0.0665,4.79e-05,0.491,0.1,136.96,4,1,303320,FALSE,FALSE,Morning Glory - Remastered,10,(What's The Story) Morning Glory? [Remastered],C,major,C major 1995-10-02,1995,0.137,0.991,5,-13.27,1,0.0761,0.849,0.92,0.721,0.0176,141.688,4,1,39360,FALSE,FALSE,Untitled - Remastered,11,(What's The Story) Morning Glory? [Remastered],F,major,F major 1995-10-02,1995,0.294,0.825,2,-3.771,1,0.0404,0.465,0.0841,0.354,0.122,150.338,4,1,451320,FALSE,FALSE,Champagne Supernova - Remastered,12,(What's The Story) Morning Glory? [Remastered],D,major,D major 1995-10-02,1995,0.392,0.428,4,-8.405,0,0.0246,0.52,7.8e-06,0.365,0.317,84.505,4,2,263746,FALSE,FALSE,Talk Tonight - Remastered,1,(What's The Story) Morning Glory? [Remastered],E,minor,E minor 1995-10-02,1995,0.204,0.928,7,-3.274,1,0.0795,0.00974,0.000746,0.334,0.209,112.864,4,2,267986,FALSE,FALSE,Acquiesce - Remastered,2,(What's The Story) Morning Glory? [Remastered],G,major,G major 1995-10-02,1995,0.231,0.875,7,-1.844,1,0.0559,0.00323,0.000339,0.368,0.275,79.483,4,2,281840,FALSE,FALSE,Headshrinker - Remastered,3,(What's The Story) Morning Glory? [Remastered],G,major,G major 1995-10-02,1995,0.472,0.789,4,-6.129,1,0.0319,0.000453,4.03e-05,0.101,0.902,101.377,4,2,240146,FALSE,FALSE,It's Better People - Remastered,4,(What's The Story) Morning Glory? [Remastered],E,major,E major 1995-10-02,1995,0.509,0.911,9,-4.121,0,0.0353,0.000589,8.21e-06,0.0384,0.278,126.426,4,2,279200,FALSE,FALSE,Rockin' Chair - Remastered,5,(What's The Story) Morning Glory? [Remastered],A,minor,A minor 1995-10-02,1995,0.328,0.98,7,-1.874,1,0.0791,0.00982,0.00399,0.35,0.179,139.623,4,2,224426,FALSE,FALSE,Step Out - Remastered,6,(What's The Story) Morning Glory? [Remastered],G,major,G major 1995-10-02,1995,0.443,0.954,11,-2.23,0,0.0521,0.00134,0,0.347,0.735,124.224,4,2,204653,FALSE,FALSE,Underneath the Sky - Remastered,7,(What's The Story) Morning Glory? [Remastered],B,minor,B minor 1995-10-02,1995,0.372,0.9,9,-1.578,0,0.046,1.49e-05,0.382,0.379,0.558,133.14,4,2,312160,FALSE,FALSE,Cum On Feel The Noize - Remastered,8,(What's The Story) Morning Glory? [Remastered],A,minor,A minor 1995-10-02,1995,0.332,0.915,0,-2.1,1,0.0438,1.6e-05,0.000237,0.0748,0.379,137.965,4,2,344440,FALSE,FALSE,Round Are Way - Remastered,9,(What's The Story) Morning Glory? [Remastered],C,major,C major 1995-10-02,1995,0.211,0.942,7,-2.865,0,0.0623,3.06e-05,0.945,0.106,0.196,142.847,4,2,262400,FALSE,FALSE,The Swamp Song - Remastered,10,(What's The Story) Morning Glory? [Remastered],G,minor,G minor 1995-10-02,1995,0.382,0.585,7,-6.707,1,0.0294,0.0128,8.65e-05,0.0725,0.145,148.515,4,2,325200,FALSE,FALSE,The Masterplan - Remastered,11,(What's The Story) Morning Glory? [Remastered],G,major,G major 1995-10-02,1995,0.35,0.812,7,-3.983,1,0.106,0.294,0,0.335,0.519,166.843,4,2,242920,FALSE,FALSE,Bonehead's Bank Holiday - Remastered,12,(What's The Story) Morning Glory? [Remastered],G,major,G major 1995-10-02,1995,0.477,0.785,2,-5.941,1,0.0315,0.0167,0.000673,0.103,0.417,150.654,4,2,417960,FALSE,FALSE,Champagne Supernova - Remastered,13,(What's The Story) Morning Glory? [Remastered],D,major,D major 1995-10-02,1995,0.248,0.594,7,-7.74,1,0.0287,0.106,0,0.366,0.692,95.886,3,2,137200,FALSE,FALSE,You've Got to Hide Your Love Away - Remastered,14,(What's The Story) Morning Glory? [Remastered],G,major,G major 1995-10-02,1995,0.32,0.831,0,-2.355,1,0.0562,5.01e-05,0.173,0.547,0.377,121.716,4,3,234440,FALSE,FALSE,Acquiesce - Live at Earls Court,1,(What's The Story) Morning Glory? [Remastered],C,major,C major 1995-10-02,1995,0.596,0.681,2,-5.441,1,0.0284,0.789,2.13e-06,0.102,0.61,108.525,4,3,243866,FALSE,FALSE,Some Might Say - Demo,2,(What's The Story) Morning Glory? [Remastered],D,major,D major 1995-10-02,1995,0.169,0.744,2,-2.651,1,0.0619,0.00146,0.00306,0.38,0.364,122.772,4,3,306066,FALSE,FALSE,Some Might Say - Live at Roskilde,3,(What's The Story) Morning Glory? [Remastered],D,major,D major 1995-10-02,1995,0.497,0.55,9,-6.195,1,0.0286,0.238,6.97e-06,0.0962,0.21,146.75,4,3,182906,FALSE,FALSE,She's Electric - Demo,4,(What's The Story) Morning Glory? [Remastered],A,major,A major 1995-10-02,1995,0.277,0.589,0,-6.296,1,0.0283,0.227,0,0.136,0.43,92.89,4,3,222186,FALSE,FALSE,Talk Tonight - Live at Bath Pavilion,5,(What's The Story) Morning Glory? [Remastered],C,major,C major 1995-10-02,1995,0.535,0.417,9,-6.654,0,0.026,0.11,0.000982,0.0968,0.193,129.211,4,3,244560,FALSE,FALSE,Rockin' Chair - Demo,6,(What's The Story) Morning Glory? [Remastered],A,minor,A minor 1995-10-02,1995,0.133,0.858,2,-3.826,1,0.096,0.000779,0.0214,0.614,0.122,143.598,4,3,203866,FALSE,FALSE,Hello - Live at Roskilde,7,(What's The Story) Morning Glory? [Remastered],D,major,D major 1995-10-02,1995,0.198,0.771,9,-3.728,0,0.0531,0.000115,0.667,0.378,0.376,127.526,4,3,247693,FALSE,FALSE,Roll with It - Live at Roskilde,8,(What's The Story) Morning Glory? [Remastered],A,minor,A minor 1995-10-02,1995,0.185,0.81,0,-4.398,1,0.0709,0.000515,0.206,0.123,0.184,135.848,4,3,287253,FALSE,FALSE,Morning Glory - Live at Roskilde,9,(What's The Story) Morning Glory? [Remastered],C,major,C major 1995-10-02,1995,0.556,0.613,7,-6.291,1,0.0291,0.871,0.000136,0.156,0.36,98.756,4,3,187920,FALSE,FALSE,Hey Now - Demo,10,(What's The Story) Morning Glory? [Remastered],G,major,G major 1995-10-02,1995,0.535,0.672,7,-6.465,1,0.0261,0.749,0.00416,0.182,0.625,88.33,4,3,128706,FALSE,FALSE,Bonehead's Bank Holiday - Demo,11,(What's The Story) Morning Glory? [Remastered],G,major,G major 1995-10-02,1995,0.375,0.889,7,-5.004,1,0.0899,0.0254,1.07e-05,0.732,0.37,145.985,4,3,291293,FALSE,FALSE,Round Are Way - MTV Unplugged,12,(What's The Story) Morning Glory? [Remastered],G,major,G major 1995-10-02,1995,0.321,0.842,0,-4.87,1,0.0406,0.0056,0,0.369,0.287,95.838,4,3,245506,FALSE,FALSE,Cast No Shadow - Live at Maine Road,13,(What's The Story) Morning Glory? [Remastered],C,major,C major 1995-10-02,1995,0.253,0.724,9,-4.436,0,0.0404,0.248,0.0145,0.894,0.286,82.116,4,3,295160,FALSE,FALSE,The Masterplan - Live at Knebworth Park,14,(What's The Story) Morning Glory? [Remastered],A,minor,A minor 1995-10-02,1995,0.162,0.947,9,-3.174,0,0.113,0.0142,0.0446,0.166,0.0563,132.31,4,1,203186,FALSE,FALSE,Hello - Remastered,1,(What's The Story) Morning Glory? [Remastered],A,minor,A minor 1995-10-02,1995,0.232,0.986,9,-1.896,0,0.0947,0.0325,0.000311,0.117,0.145,126.555,4,1,240093,FALSE,FALSE,Roll with It - Remastered,2,(What's The Story) Morning Glory? [Remastered],A,minor,A minor 1995-10-02,1995,0.378,0.896,2,-4.066,1,0.0407,0.000452,0,0.194,0.469,174.302,4,1,258773,FALSE,FALSE,Wonderwall - Remastered,3,(What's The Story) Morning Glory? [Remastered],D,major,D major 1995-10-02,1995,0.327,0.938,0,-3.237,1,0.0645,0.0708,3.79e-06,0.148,0.326,162.937,4,1,289560,FALSE,FALSE,Don't Look Back in Anger - Remastered,4,(What's The Story) Morning Glory? [Remastered],C,major,C major 1995-10-02,1995,0.148,0.933,2,-2.478,1,0.0658,0.000301,0.00139,0.382,0.205,202.196,4,1,341906,FALSE,FALSE,Hey Now - Remastered,5,(What's The Story) Morning Glory? [Remastered],D,major,D major 1995-10-02,1995,0.279,0.742,10,-5.656,1,0.048,3.93e-05,0.92,0.258,0.21,143.155,4,1,44626,FALSE,FALSE,Untitled - Remastered,6,(What's The Story) Morning Glory? [Remastered],A#,major,A# major 1995-10-02,1995,0.266,0.934,0,-2.28,0,0.0929,0.171,0.0223,0.288,0.07,110.268,4,1,327920,FALSE,FALSE,Some Might Say - Remastered,7,(What's The Story) Morning Glory? [Remastered],C,minor,C minor 1995-10-02,1995,0.414,0.839,7,-4.321,1,0.0284,0.00194,0,0.163,0.631,158.389,4,1,294813,FALSE,FALSE,Cast No Shadow - Remastered,8,(What's The Story) Morning Glory? [Remastered],G,major,G major 1995-10-02,1995,0.487,0.909,9,-3.484,1,0.0463,0.159,1.27e-06,0.303,0.51,125.418,4,1,220920,FALSE,FALSE,She's Electric - Remastered,9,(What's The Story) Morning Glory? [Remastered],A,major,A major 1995-10-02,1995,0.327,0.982,0,-3.038,1,0.0937,0.0665,4.79e-05,0.491,0.1,136.96,4,1,303320,FALSE,FALSE,Morning Glory - Remastered,10,(What's The Story) Morning Glory? [Remastered],C,major,C major 1995-10-02,1995,0.137,0.991,5,-13.27,1,0.0761,0.849,0.92,0.721,0.0176,141.688,4,1,39360,FALSE,FALSE,Untitled - Remastered,11,(What's The Story) Morning Glory? [Remastered],F,major,F major 1995-10-02,1995,0.294,0.825,2,-3.771,1,0.0404,0.465,0.0841,0.354,0.122,150.338,4,1,451320,FALSE,FALSE,Champagne Supernova - Remastered,12,(What's The Story) Morning Glory? [Remastered],D,major,D major 1995-10-02,1995,0.318,0.952,9,-3.234,0,0.094,0.0136,0.0152,0.167,0.0537,132.191,4,1,203186,FALSE,FALSE,Hello,1,(What's The Story) Morning Glory?,A,minor,A minor 1995-10-02,1995,0.244,0.985,9,-1.816,0,0.107,0.00302,0.000204,0.318,0.228,126.734,4,1,239826,FALSE,FALSE,Roll With It,2,(What's The Story) Morning Glory?,A,minor,A minor 1995-10-02,1995,0.41,0.854,2,-5.609,1,0.0366,0.00236,0,0.133,0.456,174.584,4,1,258906,FALSE,FALSE,Wonderwall,3,(What's The Story) Morning Glory?,D,major,D major 1995-10-02,1995,0.349,0.917,0,-3.645,1,0.071,0.026,7.25e-06,0.0968,0.206,164.036,4,1,287826,FALSE,FALSE,Don't Look Back In Anger,4,(What's The Story) Morning Glory?,C,major,C major 1995-10-02,1995,0.145,0.938,2,-2.488,1,0.0627,0.000275,0.00187,0.38,0.204,202.403,4,1,341906,FALSE,FALSE,Hey Now!,5,(What's The Story) Morning Glory?,D,major,D major 1995-10-02,1995,0.288,0.68,10,-5.711,1,0.0481,3.44e-05,0.876,0.268,0.149,143.019,4,1,44626,FALSE,FALSE,The Swamp Song - Version 1,6,(What's The Story) Morning Glory?,A#,major,A# major 1995-10-02,1995,0.263,0.935,0,-2.289,0,0.0933,0.181,0.013,0.331,0.0688,110.138,4,1,327920,FALSE,FALSE,Some Might Say,7,(What's The Story) Morning Glory?,C,minor,C minor 1995-10-02,1995,0.418,0.838,7,-4.306,1,0.0282,0.00181,0,0.153,0.628,158.304,4,1,294813,FALSE,FALSE,Cast No Shadow,8,(What's The Story) Morning Glory?,G,major,G major 1995-10-02,1995,0.484,0.91,9,-3.499,1,0.0483,0.163,1.13e-06,0.315,0.501,125.364,4,1,220920,FALSE,FALSE,She's Electric,9,(What's The Story) Morning Glory?,A,major,A major 1995-10-02,1995,0.334,0.986,2,-1.655,0,0.0932,0.00866,0.000354,0.466,0.136,137.031,4,1,303533,FALSE,FALSE,Morning Glory,10,(What's The Story) Morning Glory?,D,minor,D minor 1995-10-02,1995,0.199,0.991,5,-12.953,1,0.0804,0.867,0.962,0.851,0.0185,106.717,4,1,39360,FALSE,FALSE,The Swamp Song - Version 2,11,(What's The Story) Morning Glory?,F,major,F major 1995-10-02,1995,0.303,0.853,2,-2.26,1,0.0366,0.223,0.00159,0.361,0.119,150.381,4,1,450506,FALSE,FALSE,Champagne Supernova,12,(What's The Story) Morning Glory?,D,major,D major 1995,1995,0.348,0.95,9,-3.577,0,0.0909,0.000431,0.0212,0.101,0.0968,132.44,4,1,201360,FALSE,FALSE,Hello,1,(WHAT'S THE STORY) MORNING GLORY?,A,minor,A minor 1995,1995,0.25,0.981,9,-1.828,0,0.125,0.00333,0.000236,0.793,0.21,126.741,4,1,238266,FALSE,FALSE,Roll With It,2,(WHAT'S THE STORY) MORNING GLORY?,A,minor,A minor 1995,1995,0.408,0.844,2,-5.63,1,0.0371,0.00214,0,0.205,0.452,174.358,4,1,260440,FALSE,FALSE,Wonderwall,3,(WHAT'S THE STORY) MORNING GLORY?,D,major,D major 1995,1995,0.348,0.914,0,-3.6,1,0.0711,0.0262,7.7e-06,0.15,0.252,163.997,4,1,287893,FALSE,FALSE,Don't Look Back in Anger,4,(WHAT'S THE STORY) MORNING GLORY?,C,major,C major 1995,1995,0.163,0.952,11,-1.627,0,0.0645,6.73e-05,0.0011,0.291,0.192,202.572,4,1,340533,FALSE,FALSE,Hey Now,5,(WHAT'S THE STORY) MORNING GLORY?,B,minor,B minor 1995,1995,0.255,0.825,7,-5.906,0,0.0529,2.14e-05,0.788,0.785,0.164,142.817,4,1,45533,FALSE,FALSE,The Swamp Song - Version 1,6,(WHAT'S THE STORY) MORNING GLORY?,G,minor,G minor 1995,1995,0.237,0.956,0,-2.336,0,0.0874,0.0434,0.0243,0.203,0.138,110.211,4,1,328533,FALSE,FALSE,Some Might Say,7,(WHAT'S THE STORY) MORNING GLORY?,C,minor,C minor 1995,1995,0.437,0.797,7,-5.253,1,0.0297,0.00263,0,0.159,0.539,159.933,4,1,291840,FALSE,FALSE,Cast No Shadow,8,(WHAT'S THE STORY) MORNING GLORY?,G,major,G major 1995,1995,0.539,0.912,9,-3.104,1,0.0407,0.182,0,0.686,0.515,125.522,4,1,219533,FALSE,FALSE,She's Electric,9,(WHAT'S THE STORY) MORNING GLORY?,A,major,A major 1995,1995,0.325,0.986,0,-1.617,1,0.0928,0.00938,0.000671,0.431,0.12,136.99,4,1,304293,FALSE,FALSE,Morning Glory,10,(WHAT'S THE STORY) MORNING GLORY?,C,major,C major 1995,1995,0.246,0.996,5,-10.8,1,0.0821,0.411,0.825,0.857,0.0153,107.201,1,1,39200,FALSE,FALSE,The Swamp Song - Version 2,11,(WHAT'S THE STORY) MORNING GLORY?,F,major,F major 1995,1995,0.307,0.873,2,-2.309,1,0.0389,0.226,0.00496,0.365,0.12,150.397,4,1,449506,FALSE,FALSE,Champagne Supernova,12,(WHAT'S THE STORY) MORNING GLORY?,D,major,D major 1995,1995,0.346,0.954,9,-3.185,0,0.0866,0.0131,0.0173,0.161,0.059,132.201,4,1,203186,FALSE,FALSE,Hello - Remastered,1,(What's The Story) Morning Glory? (Deluxe Remastered Edition),A,minor,A minor 1995,1995,0.223,0.985,9,-1.909,0,0.0957,0.0298,0.000424,0.11,0.139,126.612,4,1,240093,FALSE,FALSE,Roll With It - Remastered,2,(What's The Story) Morning Glory? (Deluxe Remastered Edition),A,minor,A minor 1995,1995,0.375,0.893,2,-4.097,1,0.0406,0.000509,0,0.187,0.434,174.323,4,1,258773,FALSE,FALSE,Wonderwall - Remastered,3,(What's The Story) Morning Glory? (Deluxe Remastered Edition),D,major,D major 1995,1995,0.328,0.936,0,-3.254,1,0.0628,0.0665,2.61e-06,0.165,0.31,162.97,4,1,289560,FALSE,FALSE,Don't Look Back In Anger - Remastered,4,(What's The Story) Morning Glory? (Deluxe Remastered Edition),C,major,C major 1995,1995,0.151,0.935,11,-2.461,0,0.0626,0.000235,0.000561,0.308,0.202,202.341,4,1,341906,FALSE,FALSE,Hey Now! - Remastered,5,(What's The Story) Morning Glory? (Deluxe Remastered Edition),B,minor,B minor 1995,1995,0.278,0.702,10,-5.683,1,0.0474,6.93e-05,0.65,0.236,0.166,143.126,4,1,44626,FALSE,FALSE,The Swamp Song (Excerpt 1) - Remastered,6,(What's The Story) Morning Glory? (Deluxe Remastered Edition),A#,major,A# major 1995,1995,0.259,0.927,0,-2.277,0,0.092,0.165,0.013,0.287,0.0734,110.156,4,1,327920,FALSE,FALSE,Some Might Say - Remastered,7,(What's The Story) Morning Glory? (Deluxe Remastered Edition),C,minor,C minor 1995,1995,0.421,0.846,7,-4.302,1,0.0283,0.00174,0,0.166,0.613,158.351,4,1,294813,FALSE,FALSE,Cast No Shadow - Remastered,8,(What's The Story) Morning Glory? (Deluxe Remastered Edition),G,major,G major 1995,1995,0.484,0.905,9,-3.506,1,0.0481,0.146,1.13e-06,0.24,0.486,125.414,4,1,220920,FALSE,FALSE,She's Electric - Remastered,9,(What's The Story) Morning Glory? (Deluxe Remastered Edition),A,major,A major 1995,1995,0.33,0.982,0,-3.045,1,0.0926,0.0588,4.74e-05,0.519,0.104,136.986,4,1,303320,FALSE,FALSE,Morning Glory - Remastered,10,(What's The Story) Morning Glory? (Deluxe Remastered Edition),C,major,C major 1995,1995,0.179,0.989,2,-13.14,1,0.0903,0.849,0.954,0.76,0.0192,60.38,4,1,39360,FALSE,FALSE,The Swamp Song (Excerpt 2) - Remastered,11,(What's The Story) Morning Glory? (Deluxe Remastered Edition),D,major,D major 1995,1995,0.293,0.817,2,-3.786,1,0.039,0.458,0.0509,0.355,0.138,150.249,4,1,451320,FALSE,FALSE,Champagne Supernova - Remastered,12,(What's The Story) Morning Glory? (Deluxe Remastered Edition),D,major,D major 1995,1995,0.376,0.423,4,-8.499,0,0.0242,0.54,1.23e-05,0.361,0.299,85.213,4,2,263746,FALSE,FALSE,Talk Tonight - Remastered,1,(What's The Story) Morning Glory? (Deluxe Remastered Edition),E,minor,E minor 1995,1995,0.178,0.931,7,-3.366,1,0.0831,0.0128,0.000714,0.334,0.184,112.447,4,2,267986,FALSE,FALSE,Acquiesce - Remastered,2,(What's The Story) Morning Glory? (Deluxe Remastered Edition),G,major,G major 1995,1995,0.217,0.839,7,-1.954,1,0.0573,0.00297,7.37e-05,0.376,0.246,79.023,4,2,281840,FALSE,FALSE,Headshrinker - Remastered,3,(What's The Story) Morning Glory? (Deluxe Remastered Edition),G,major,G major 1995,1995,0.471,0.797,4,-6.309,1,0.0326,0.000489,3.83e-05,0.102,0.872,101.315,4,2,240146,FALSE,FALSE,It's Better People - Remastered,4,(What's The Story) Morning Glory? (Deluxe Remastered Edition),E,major,E major 1995,1995,0.509,0.896,9,-4.236,0,0.0356,0.000802,4.44e-06,0.0412,0.315,126.404,4,2,279200,FALSE,FALSE,Rockin' Chair - Remastered,5,(What's The Story) Morning Glory? (Deluxe Remastered Edition),A,minor,A minor 1995,1995,0.334,0.983,7,-2.005,1,0.0802,0.00979,0.00677,0.35,0.169,139.589,4,2,224426,FALSE,FALSE,Step Out - Remastered,6,(What's The Story) Morning Glory? (Deluxe Remastered Edition),G,major,G major 1995,1995,0.44,0.951,11,-2.356,0,0.0527,0.00131,0,0.36,0.72,124.134,4,2,204653,FALSE,FALSE,Underneath The Sky - Remastered,7,(What's The Story) Morning Glory? (Deluxe Remastered Edition),B,minor,B minor 1995,1995,0.373,0.891,0,-1.724,1,0.0453,1.36e-05,0.303,0.37,0.539,133.123,4,2,312160,FALSE,FALSE,Cum On Feel The Noize - Remastered,8,(What's The Story) Morning Glory? (Deluxe Remastered Edition),C,major,C major 1995,1995,0.316,0.909,0,-2.205,1,0.0449,1.63e-05,0.000586,0.0767,0.381,137.953,4,2,344440,FALSE,FALSE,Round Are Way - Remastered,9,(What's The Story) Morning Glory? (Deluxe Remastered Edition),C,major,C major 1995,1995,0.238,0.933,7,-3.072,0,0.0576,3.3e-05,0.944,0.105,0.189,142.825,4,2,262400,FALSE,FALSE,The Swamp Song - Remastered,10,(What's The Story) Morning Glory? (Deluxe Remastered Edition),G,minor,G minor 1995,1995,0.417,0.596,7,-6.82,1,0.0302,0.0145,9.22e-05,0.0725,0.156,73.958,4,2,325200,FALSE,FALSE,The Masterplan - Remastered,11,(What's The Story) Morning Glory? (Deluxe Remastered Edition),G,major,G major 1995,1995,0.329,0.813,7,-4.159,1,0.123,0.294,0,0.369,0.526,166.114,4,2,242920,FALSE,FALSE,Bonehead's Bank Holiday - Remastered,12,(What's The Story) Morning Glory? (Deluxe Remastered Edition),G,major,G major 1995,1995,0.477,0.781,2,-6.092,1,0.0327,0.018,0.000676,0.103,0.43,150.649,4,2,417960,FALSE,FALSE,Champagne Supernova (Brendan Lynch Mix) - Remastered,13,(What's The Story) Morning Glory? (Deluxe Remastered Edition),D,major,D major 1995,1995,0.333,0.609,7,-7.86,1,0.0287,0.105,0,0.366,0.726,62.91,4,2,137200,FALSE,FALSE,You've Got To Hide Your Love Away - Remastered,14,(What's The Story) Morning Glory? (Deluxe Remastered Edition),G,major,G major 1995,1995,0.328,0.854,0,-2.333,1,0.0607,5.2e-05,0.0424,0.613,0.349,121.191,4,3,234440,FALSE,FALSE,Acquiesce - Live at Earls Court,1,(What's The Story) Morning Glory? (Deluxe Remastered Edition),C,major,C major 1995,1995,0.598,0.694,2,-5.457,1,0.0296,0.772,5.7e-06,0.0849,0.594,108.529,4,3,243866,FALSE,FALSE,Some Might Say - Demo,2,(What's The Story) Morning Glory? (Deluxe Remastered Edition),D,major,D major 1995,1995,0.168,0.743,2,-2.652,1,0.0591,0.00135,0.00125,0.379,0.336,123.869,4,3,306066,FALSE,FALSE,Some Might Say - Live at Roskilde,3,(What's The Story) Morning Glory? (Deluxe Remastered Edition),D,major,D major 1995,1995,0.501,0.552,9,-6.176,1,0.0281,0.248,1.17e-05,0.0941,0.212,146.635,4,3,182906,FALSE,FALSE,She's Electric - Demo,4,(What's The Story) Morning Glory? (Deluxe Remastered Edition),A,major,A major 1995,1995,0.279,0.608,0,-6.283,1,0.0281,0.249,0,0.139,0.463,92.266,4,3,222186,FALSE,FALSE,Talk Tonight - Live at Bath Pavillion,5,(What's The Story) Morning Glory? (Deluxe Remastered Edition),C,major,C major 1995,1995,0.534,0.414,9,-6.66,0,0.0257,0.103,0.00073,0.0942,0.182,129.036,4,3,244560,FALSE,FALSE,Rockin' Chair - Demo,6,(What's The Story) Morning Glory? (Deluxe Remastered Edition),A,minor,A minor 1995,1995,0.129,0.901,2,-3.915,1,0.0967,0.000849,0.0278,0.454,0.13,145.582,4,3,203866,FALSE,FALSE,Hello - Live at Roskilde,7,(What's The Story) Morning Glory? (Deluxe Remastered Edition),D,major,D major 1995,1995,0.207,0.777,9,-3.806,0,0.0538,0.000103,0.601,0.376,0.341,127.319,4,3,247693,FALSE,FALSE,Roll With It - Live at Roskilde,8,(What's The Story) Morning Glory? (Deluxe Remastered Edition),A,minor,A minor 1995,1995,0.175,0.832,9,-4.399,0,0.0662,0.000428,0.239,0.11,0.215,136.043,4,3,287253,FALSE,FALSE,Morning Glory - Live at Roskilde,9,(What's The Story) Morning Glory? (Deluxe Remastered Edition),A,minor,A minor 1995,1995,0.556,0.605,7,-6.321,1,0.0287,0.874,0.000128,0.146,0.375,98.945,4,3,187920,FALSE,FALSE,Hey Now - Demo,10,(What's The Story) Morning Glory? (Deluxe Remastered Edition),G,major,G major 1995,1995,0.342,0.671,7,-6.398,1,0.0314,0.742,0.00247,0.169,0.581,173.979,4,3,128706,FALSE,FALSE,Bonehead's Bank Holiday - Demo,11,(What's The Story) Morning Glory? (Deluxe Remastered Edition),G,major,G major 1995,1995,0.373,0.883,7,-5.024,1,0.0963,0.0184,1.25e-05,0.737,0.38,145.915,4,3,291293,FALSE,FALSE,Round Are Way - MTV Unplugged,12,(What's The Story) Morning Glory? (Deluxe Remastered Edition),G,major,G major 1995,1995,0.108,0.85,0,-4.858,1,0.055,0.00453,0,0.366,0.307,193.989,4,3,245506,FALSE,FALSE,Cast No Shadow - Live at Maine Road,13,(What's The Story) Morning Glory? (Deluxe Remastered Edition),C,major,C major 1995,1995,0.145,0.713,9,-4.438,0,0.0431,0.288,0.0147,0.92,0.314,85.341,4,3,295160,FALSE,FALSE,The Masterplan - Live at Knebworth Park,14,(What's The Story) Morning Glory? (Deluxe Remastered Edition),A,minor,A minor 1995,1995,0.197,0.955,7,-1.782,1,0.075,0.00625,0.000215,0.438,0.223,111.795,4,1,265066,FALSE,FALSE,Acquiesce,1,The Masterplan,G,major,G major 1995,1995,0.492,0.945,11,-3.606,0,0.0537,0.00165,0,0.743,0.841,124.04,4,1,201133,FALSE,FALSE,Underneath the Sky,2,The Masterplan,B,minor,B minor 1995,1995,0.381,0.452,4,-8.445,0,0.0265,0.511,3.19e-05,0.371,0.324,85.14,4,1,261092,FALSE,FALSE,Talk Tonight,3,The Masterplan,E,minor,E minor 1995,1995,0.501,0.738,5,-3.668,1,0.0303,0.282,0,0.345,0.128,107.028,4,1,279440,FALSE,FALSE,Going Nowhere,4,The Masterplan,F,major,F major 1995,1995,0.152,0.673,2,-3.257,1,0.0499,2.81e-05,0.669,0.37,0.265,62.112,3,1,253066,FALSE,FALSE,Fade Away,5,The Masterplan,D,major,D major 1995,1995,0.242,0.954,7,-1.91,0,0.0644,0.000768,0.96,0.179,0.187,142.881,4,1,259626,FALSE,FALSE,The Swamp Song,6,The Masterplan,G,minor,G minor 1995,1995,0.155,0.986,4,-3.278,1,0.147,2.57e-05,0.645,0.368,0.0387,106.752,4,1,385306,FALSE,FALSE,"I Am the Walrus - Live Glasgow Cathouse, June '94",7,The Masterplan,E,major,E major 1995,1995,0.0607,0.897,9,-2.416,1,0.0797,0.0178,0.0132,0.344,0.338,200.552,4,1,381133,FALSE,FALSE,Listen Up,8,The Masterplan,A,major,A major 1995,1995,0.517,0.903,9,-3.951,0,0.0335,0.00302,0,0.0612,0.331,125.946,4,1,275826,FALSE,FALSE,Rockin' Chair,9,The Masterplan,A,minor,A minor 1995,1995,0.431,0.454,0,-8.712,1,0.0323,0.301,0,0.0772,0.22,115.617,4,1,261799,FALSE,FALSE,Half the World Away,10,The Masterplan,C,major,C major 1995,1995,0.321,0.914,4,-3.032,0,0.0531,0.00349,0.0107,0.667,0.318,97.772,5,1,258838,FALSE,FALSE,(It's Good) To Be Free,11,The Masterplan,E,minor,E minor 1995,1995,0.402,0.987,2,-2.465,1,0.0714,0.00586,0.00166,0.332,0.232,125.963,4,1,305360,FALSE,FALSE,Stay Young,12,The Masterplan,D,major,D major 1995,1995,0.15,0.904,7,-2.154,1,0.0565,0.028,4.02e-06,0.383,0.241,158.66,4,1,278306,FALSE,FALSE,Headshrinker,13,The Masterplan,G,major,G major 1995,1995,0.369,0.616,7,-6.39,1,0.0304,0.103,4.88e-05,0.0793,0.156,147.697,4,1,322826,FALSE,FALSE,The Masterplan,14,The Masterplan,G,major,G major 1994-08-29,1994,0.315,0.975,4,-3.21,1,0.0685,0.000567,0.00137,0.467,0.436,138.197,4,1,322946,FALSE,FALSE,Rock 'n' Roll Star - Remastered,1,Definitely Maybe (Remastered),E,major,E major 1994-08-29,1994,0.297,0.93,4,-2.661,1,0.0583,0.0136,0.117,0.687,0.159,95.89,4,1,308280,FALSE,FALSE,Shakermaker - Remastered,2,Definitely Maybe (Remastered),E,major,E major 1994-08-29,1994,0.191,0.829,9,-3.381,0,0.0447,2.72e-05,2.11e-05,0.362,0.191,116.007,5,1,276666,FALSE,FALSE,Live Forever - Remastered,3,Definitely Maybe (Remastered),A,minor,A minor 1994-08-29,1994,0.263,0.905,0,-3.543,1,0.0398,1.41e-05,0.0214,0.38,0.328,140.557,4,1,268000,FALSE,FALSE,Up in the Sky - Remastered,4,Definitely Maybe (Remastered),C,major,C major 1994-08-29,1994,0.314,0.835,7,-5.106,1,0.0498,2.01e-06,0.618,0.392,0.041,100.134,4,1,377400,FALSE,FALSE,Columbia - Remastered,5,Definitely Maybe (Remastered),G,major,G major 1994-08-29,1994,0.361,0.905,9,-2.851,1,0.0405,5.86e-05,0.0094,0.089,0.635,103.997,4,1,283786,FALSE,FALSE,Supersonic - Remastered,6,Definitely Maybe (Remastered),A,major,A major 1994-08-29,1994,0.114,0.938,9,-2.741,1,0.0776,1.13e-05,0.806,0.446,0.191,153.335,4,1,257813,FALSE,FALSE,Bring It on Down - Remastered,7,Definitely Maybe (Remastered),A,major,A major 1994-08-29,1994,0.289,0.76,2,-2.31,1,0.0461,1.56e-05,0.0378,0.16,0.465,114.794,4,1,289146,FALSE,FALSE,Cigarettes & Alcohol - Remastered,8,Definitely Maybe (Remastered),D,major,D major 1994-08-29,1994,0.303,0.987,2,-2.865,1,0.111,0.000895,0.537,0.0659,0.057,139.499,4,1,152266,FALSE,FALSE,Digsy's Dinner - Remastered,9,Definitely Maybe (Remastered),D,major,D major 1994-08-29,1994,0.067,0.941,5,-2.7,0,0.137,9.68e-05,0.000359,0.253,0.236,187.874,4,1,392306,FALSE,FALSE,Slide Away - Remastered,10,Definitely Maybe (Remastered),F,minor,F minor 1994-08-29,1994,0.585,0.427,4,-10.907,1,0.0278,0.806,0,0.0985,0.313,87.615,4,1,195000,FALSE,FALSE,Married with Children - Remastered,11,Definitely Maybe (Remastered),E,major,E major 1994-08-29,1994,0.117,0.89,2,-1.9,1,0.0504,0.00203,0.812,0.647,0.309,199.838,4,2,328666,FALSE,FALSE,Columbia - Remastered White Label Demo,1,Definitely Maybe (Remastered),D,major,D major 1994-08-29,1994,0.361,0.932,9,-1.727,1,0.0449,0.000182,0.000252,0.0917,0.33,110.946,4,2,277986,FALSE,FALSE,Cigarettes & Alcohol - Remastered Demo,2,Definitely Maybe (Remastered),A,major,A major 1994-08-29,1994,0.527,0.575,8,-6.36,0,0.0309,0.538,0,0.391,0.162,118.465,4,2,269213,FALSE,FALSE,Sad Song - Remastered,3,Definitely Maybe (Remastered),G#,minor,G# minor 1994-08-29,1994,0.347,0.979,2,-3.294,1,0.0754,0.000615,1.38e-06,0.0872,0.528,128.608,4,2,228880,FALSE,FALSE,I Will Believe - Remastered Live,4,Definitely Maybe (Remastered),D,major,D major 1994-08-29,1994,0.454,0.332,2,-10.886,1,0.0286,0.655,0,0.235,0.115,112.186,4,2,272773,FALSE,FALSE,Take Me Away - Remastered,5,Definitely Maybe (Remastered),D,major,D major 1994-08-29,1994,0.261,0.911,4,-4.515,1,0.0483,7.29e-06,0.00418,0.144,0.221,147.66,4,2,238226,FALSE,FALSE,Alive - Remastered Demo,6,Definitely Maybe (Remastered),E,major,E major 1994-08-29,1994,0.402,0.51,7,-9.073,1,0.0261,0.365,0,0.0866,0.613,139.173,4,2,161013,FALSE,FALSE,D'Yer Wanna Be a Spaceman? - Remastered,7,Definitely Maybe (Remastered),G,major,G major 1994-08-29,1994,0.226,0.965,6,-3.494,0,0.0985,0.00264,0.44,0.685,0.118,108.728,4,2,315026,FALSE,FALSE,Supersonic - Remastered Live,8,Definitely Maybe (Remastered),F#,minor,F# minor 1994-08-29,1994,0.136,0.784,7,-4.125,1,0.0422,0.172,0,0.0862,0.378,95.29,3,2,214320,FALSE,FALSE,Up in the Sky - Remastered Acoustic,9,Definitely Maybe (Remastered),G,major,G major 1994-08-29,1994,0.263,0.876,9,-5.483,1,0.0492,2.85e-06,0.481,0.189,0.288,101.846,4,2,323146,FALSE,FALSE,Cloudburst - Remastered,10,Definitely Maybe (Remastered),A,major,A major 1994-08-29,1994,0.166,0.593,2,-3.467,1,0.0474,1.5e-05,0.0655,0.391,0.345,71.79,4,2,256853,FALSE,FALSE,Fade Away - Remastered,11,Definitely Maybe (Remastered),D,major,D major 1994-08-29,1994,0.217,0.835,9,-1.751,1,0.0628,0.0208,0.0741,0.379,0.381,98.767,4,2,402360,FALSE,FALSE,Listen Up - Remastered,12,Definitely Maybe (Remastered),A,major,A major 1994-08-29,1994,0.154,0.975,4,-3.738,1,0.135,5.11e-06,0.741,0.417,0.0399,106.566,4,2,498333,FALSE,FALSE,I Am the Walrus - Remastered Live Glasgow Cathouse June '94,13,Definitely Maybe (Remastered),E,major,E major 1994-08-29,1994,0.247,0.913,7,-2.437,1,0.0388,0.0418,0.00839,0.257,0.34,91.157,4,2,382266,FALSE,FALSE,Whatever - Remastered,14,Definitely Maybe (Remastered),G,major,G major 1994-08-29,1994,0.309,0.901,4,-2.036,0,0.0506,0.00189,0.0117,0.379,0.306,97.823,5,2,263533,FALSE,FALSE,(It's Good) To Be Free - Remastered,15,Definitely Maybe (Remastered),E,minor,E minor 1994-08-29,1994,0.339,0.459,0,-8.652,1,0.0329,0.303,0,0.0909,0.22,171.95,3,2,267333,FALSE,FALSE,Half the World Away - Remastered,16,Definitely Maybe (Remastered),C,major,C major 1994-08-29,1994,0.161,0.93,4,-2.515,1,0.0748,0.000108,0.944,0.901,0.293,109.319,4,3,331360,FALSE,FALSE,Supersonic - Remastered Live At Glasgow Tramshed,1,Definitely Maybe (Remastered),E,major,E major 1994-08-29,1994,0.31,0.915,4,-1.98,1,0.0534,0.000122,0.123,0.147,0.387,136.269,4,3,346226,FALSE,FALSE,Rock 'n' Roll Star - Remastered Demo,2,Definitely Maybe (Remastered),E,major,E major 1994-08-29,1994,0.515,0.737,4,-5.371,1,0.0311,0.139,4.38e-05,0.128,0.254,104.701,4,3,245253,FALSE,FALSE,Shakermaker - Remastered Live Paris Instore,3,Definitely Maybe (Remastered),E,major,E major 1994-08-29,1994,0.346,0.922,2,-2.111,1,0.0394,0.00026,0.594,0.403,0.518,99.194,4,3,337133,FALSE,FALSE,Columbia - Remastered Eden Studios Mix,4,Definitely Maybe (Remastered),D,major,D major 1994-08-29,1994,0.409,0.957,9,-2.964,1,0.0425,0.00042,0.000225,0.0341,0.633,102.127,4,3,310373,FALSE,FALSE,Cloudburst - Remastered Demo,5,Definitely Maybe (Remastered),A,major,A major 1994-08-29,1994,0.297,0.985,11,-1.874,0,0.0631,0.000277,0.00189,0.265,0.391,103.106,4,3,314866,FALSE,FALSE,Strange Thing - Remastered Demo,6,Definitely Maybe (Remastered),B,minor,B minor 1994-08-29,1994,0.295,0.619,9,-4.809,0,0.0312,0.176,1.09e-05,0.142,0.278,172.686,4,3,282120,FALSE,FALSE,Live Forever - Remastered Live Paris Instore,7,Definitely Maybe (Remastered),A,minor,A minor 1994-08-29,1994,0.346,0.998,2,-1.435,1,0.0887,0.0191,0.00107,0.396,0.0489,128.6,4,3,238560,FALSE,FALSE,Cigarettes & Alcohol - Remastered Live At Manchester Academy,8,Definitely Maybe (Remastered),D,major,D major 1994-08-29,1994,0.296,0.636,0,-6.955,1,0.0316,0.693,0,0.923,0.54,142.862,4,3,166213,FALSE,FALSE,D'Yer Wanna Be a Spaceman? - Remastered Live At Manchester Academy,9,Definitely Maybe (Remastered),C,major,C major 1994-08-29,1994,0.277,0.898,9,-2.288,1,0.0522,0.000163,0,0.316,0.396,143.319,4,3,263200,FALSE,FALSE,Fade Away - Remastered Demo,10,Definitely Maybe (Remastered),A,major,A major 1994-08-29,1994,0.285,0.364,2,-7.235,1,0.0284,0.685,1.73e-05,0.785,0.169,111.439,4,3,255160,FALSE,FALSE,Take Me Away - Remastered Live At Manchester Academy,11,Definitely Maybe (Remastered),D,major,D major 1994-08-29,1994,0.431,0.411,9,-8.817,0,0.0273,0.68,0,0.938,0.281,116.436,4,3,269280,FALSE,FALSE,Sad Song - Remastered Live At Manchester Academy,12,Definitely Maybe (Remastered),A,minor,A minor 1994-08-29,1994,0.438,0.417,11,-6.651,1,0.0336,0.788,1.6e-05,0.167,0.152,111.477,4,3,233373,FALSE,FALSE,"Half the World Away - Remastered Live, Tokyo Hotel Room",13,Definitely Maybe (Remastered),B,major,B major 1994-08-29,1994,0.458,0.5,9,-5.43,1,0.0276,0.133,0,0.113,0.541,134.409,4,3,156866,FALSE,FALSE,Digsy's Dinner - Remastered Live Paris Instore,14,Definitely Maybe (Remastered),A,major,A major 1994-08-29,1994,0.621,0.479,4,-7.693,1,0.0249,0.653,0,0.104,0.549,87.696,4,3,196066,FALSE,FALSE,Married with Children - Remastered Demo,15,Definitely Maybe (Remastered),E,major,E major 1994-08-29,1994,0.338,0.689,0,-5.993,1,0.0328,0.064,0,0.0951,0.549,134.832,4,3,199320,FALSE,FALSE,Up in the Sky - Remastered Live Paris Instore,16,Definitely Maybe (Remastered),C,major,C major 1994-08-29,1994,0.558,0.323,7,-7.969,1,0.0297,0.922,0.951,0.312,0.724,92.799,4,3,293960,FALSE,FALSE,Whatever - Remastered Strings,17,Definitely Maybe (Remastered),G,major,G major 1994-08-29,1994,0.315,0.975,4,-3.21,1,0.0685,0.000567,0.00137,0.467,0.436,138.197,4,1,322946,FALSE,FALSE,Rock 'n' Roll Star - Remastered,1,Definitely Maybe (Remastered),E,major,E major 1994-08-29,1994,0.297,0.93,4,-2.661,1,0.0583,0.0136,0.117,0.687,0.159,95.89,4,1,308280,FALSE,FALSE,Shakermaker - Remastered,2,Definitely Maybe (Remastered),E,major,E major 1994-08-29,1994,0.191,0.829,9,-3.381,0,0.0447,2.72e-05,2.11e-05,0.362,0.191,116.007,5,1,276666,FALSE,FALSE,Live Forever - Remastered,3,Definitely Maybe (Remastered),A,minor,A minor 1994-08-29,1994,0.263,0.905,0,-3.543,1,0.0398,1.41e-05,0.0214,0.38,0.328,140.557,4,1,268000,FALSE,FALSE,Up in the Sky - Remastered,4,Definitely Maybe (Remastered),C,major,C major 1994-08-29,1994,0.314,0.835,7,-5.106,1,0.0498,2.01e-06,0.618,0.392,0.041,100.134,4,1,377400,FALSE,FALSE,Columbia - Remastered,5,Definitely Maybe (Remastered),G,major,G major 1994-08-29,1994,0.361,0.905,9,-2.851,1,0.0405,5.86e-05,0.0094,0.089,0.635,103.997,4,1,283786,FALSE,FALSE,Supersonic - Remastered,6,Definitely Maybe (Remastered),A,major,A major 1994-08-29,1994,0.114,0.938,9,-2.741,1,0.0776,1.13e-05,0.806,0.446,0.191,153.335,4,1,257813,FALSE,FALSE,Bring It on Down - Remastered,7,Definitely Maybe (Remastered),A,major,A major 1994-08-29,1994,0.289,0.76,2,-2.31,1,0.0461,1.56e-05,0.0378,0.16,0.465,114.794,4,1,289146,FALSE,FALSE,Cigarettes & Alcohol - Remastered,8,Definitely Maybe (Remastered),D,major,D major 1994-08-29,1994,0.303,0.987,2,-2.865,1,0.111,0.000895,0.537,0.0659,0.057,139.499,4,1,152266,FALSE,FALSE,Digsy's Dinner - Remastered,9,Definitely Maybe (Remastered),D,major,D major 1994-08-29,1994,0.067,0.941,5,-2.7,0,0.137,9.68e-05,0.000359,0.253,0.236,187.874,4,1,392306,FALSE,FALSE,Slide Away - Remastered,10,Definitely Maybe (Remastered),F,minor,F minor 1994-08-29,1994,0.585,0.427,4,-10.907,1,0.0278,0.806,0,0.0985,0.313,87.615,4,1,195000,FALSE,FALSE,Married with Children - Remastered,11,Definitely Maybe (Remastered),E,major,E major 1994-08-29,1994,0.322,0.959,4,-4.766,1,0.0735,0.000135,1.73e-05,0.518,0.522,138.096,4,1,322426,FALSE,FALSE,Rock 'N' Roll Star,1,Definitely Maybe,E,major,E major 1994-08-29,1994,0.119,0.879,4,-5.958,1,0.0645,0.00333,0.187,0.628,0.18,191.801,4,1,308400,FALSE,FALSE,Shakermaker,2,Definitely Maybe,E,major,E major 1994-08-29,1994,0.335,0.776,9,-5.32,0,0.0325,9.27e-06,9.51e-06,0.369,0.219,90.59,4,1,276866,FALSE,FALSE,Live Forever,3,Definitely Maybe,A,minor,A minor 1994-08-29,1994,0.285,0.879,0,-5.856,1,0.0374,2.92e-05,0.00526,0.308,0.322,140.503,4,1,268866,FALSE,FALSE,Up In The Sky,4,Definitely Maybe,C,major,C major 1994-08-29,1994,0.324,0.836,7,-5.482,1,0.0468,1.78e-06,0.82,0.375,0.0452,100.104,4,1,376960,FALSE,FALSE,Columbia,5,Definitely Maybe,G,major,G major 1994-08-29,1994,0.387,0.863,9,-5.285,1,0.0351,2.7e-05,0.0032,0.116,0.652,104.227,4,1,283533,FALSE,FALSE,Supersonic,6,Definitely Maybe,A,major,A major 1994-08-29,1994,0.139,0.945,9,-3.821,1,0.0859,1.15e-05,0.884,0.41,0.205,150.42,4,1,257893,FALSE,FALSE,Bring It On Down,7,Definitely Maybe,A,major,A major 1994-08-29,1994,0.296,0.803,2,-3.652,1,0.0476,2.76e-05,0.00449,0.112,0.463,114.684,4,1,289560,FALSE,FALSE,Cigarettes & Alcohol,8,Definitely Maybe,D,major,D major 1994-08-29,1994,0.301,0.976,2,-5.24,1,0.108,0.000132,0.704,0.0638,0.0933,139.544,4,1,152293,FALSE,FALSE,Digsy's Dinner,9,Definitely Maybe,D,major,D major 1994-08-29,1994,0.0701,0.926,5,-4.987,0,0.113,0.000579,4.62e-05,0.28,0.261,187.309,4,1,392160,FALSE,FALSE,Slide Away,10,Definitely Maybe,F,minor,F minor 1994-08-29,1994,0.586,0.412,4,-11.608,1,0.0282,0.851,3.56e-06,0.281,0.31,87.645,4,1,191573,FALSE,FALSE,Married With Children,11,Definitely Maybe,E,major,E major 1994-08-29,1994,0.322,0.973,4,-4.38,1,0.0766,0.000745,5.66e-05,0.525,0.468,138.14,4,1,323240,FALSE,FALSE,Rock 'n' Roll Star,1,Definitely Maybe,E,major,E major 1994-08-29,1994,0.117,0.911,4,-5.951,1,0.067,0.00893,0.145,0.765,0.197,191.724,4,1,308453,FALSE,FALSE,Shakermaker,2,Definitely Maybe,E,major,E major 1994-08-29,1994,0.29,0.769,9,-5.578,0,0.0329,1.44e-05,8.35e-06,0.375,0.198,90.248,4,1,276866,FALSE,FALSE,Live Forever,3,Definitely Maybe,A,minor,A minor 1994-08-29,1994,0.299,0.894,0,-5.365,1,0.0378,3.81e-05,0.00944,0.316,0.324,140.624,4,1,268880,FALSE,FALSE,Up In The Sky,4,Definitely Maybe,C,major,C major 1994-08-29,1994,0.329,0.855,7,-4.435,1,0.0493,1.91e-06,0.775,0.356,0.0485,100.104,4,1,377000,FALSE,FALSE,Columbia,5,Definitely Maybe,G,major,G major 1994-08-29,1994,0.39,0.877,9,-4.829,1,0.0347,4.9e-05,0.00241,0.265,0.689,103.94,4,1,283744,FALSE,FALSE,Supersonic,6,Definitely Maybe,A,major,A major 1994-08-29,1994,0.144,0.956,9,-3.411,1,0.0956,1.07e-05,0.833,0.397,0.19,151.308,4,1,257853,FALSE,FALSE,Bring It On Down,7,Definitely Maybe,A,major,A major 1994-08-29,1994,0.3,0.865,2,-2.473,1,0.0497,3.26e-05,0.055,0.162,0.466,114.661,4,1,289373,TRUE,FALSE,Cigarettes & Alcohol,8,Definitely Maybe,D,major,D major 1994-08-29,1994,0.305,0.977,2,-5.04,1,0.115,6.43e-05,0.724,0.067,0.0881,139.469,4,1,152293,FALSE,FALSE,Digsy's Dinner,9,Definitely Maybe,D,major,D major 1994-08-29,1994,0.0807,0.952,5,-3.447,0,0.124,0.000986,2.57e-05,0.22,0.228,188.397,4,1,392773,FALSE,FALSE,Slide Away,10,Definitely Maybe,F,minor,F minor 1994-08-29,1994,0.59,0.429,4,-11.7,1,0.0263,0.83,0,0.334,0.342,87.83,4,1,192546,TRUE,FALSE,Married With Children,11,Definitely Maybe,E,major,E major 1994,1994,0.321,0.973,4,-4.375,1,0.0703,0.000953,3e-05,0.503,0.498,138.136,4,1,322226,FALSE,FALSE,Rock 'N' Roll Star,1,DEFINITELY MAYBE,E,major,E major 1994,1994,0.12,0.894,4,-5.785,1,0.0731,0.00754,0.183,0.759,0.236,191.947,4,1,308466,FALSE,FALSE,Shakermaker,2,DEFINITELY MAYBE,E,major,E major 1994,1994,0.147,0.782,9,-5.393,0,0.0367,1.37e-05,6.86e-06,0.369,0.182,90.896,4,1,276533,FALSE,FALSE,Live Forever,3,DEFINITELY MAYBE,A,minor,A minor 1994,1994,0.335,0.819,9,-8.915,1,0.046,2.65e-06,0.28,0.261,0.282,102.268,4,1,320240,FALSE,FALSE,Cloudburst,4,DEFINITELY MAYBE,A,major,A major 1994,1994,0.305,0.909,0,-5.242,1,0.0377,3.73e-05,0.00458,0.198,0.325,140.588,4,1,268866,FALSE,FALSE,Up In The Sky,5,DEFINITELY MAYBE,C,major,C major 1994,1994,0.518,0.398,8,-12.455,0,0.0318,0.572,1.56e-06,0.382,0.174,118.269,4,1,267093,FALSE,FALSE,Sad Song,6,DEFINITELY MAYBE,G#,minor,G# minor 1994,1994,0.323,0.867,7,-4.288,1,0.0527,1.93e-06,0.705,0.371,0.0434,100.07,4,1,377106,FALSE,FALSE,Columbia,7,DEFINITELY MAYBE,G,major,G major 1994,1994,0.389,0.873,9,-4.707,1,0.0346,4.53e-05,0.00935,0.102,0.66,103.927,4,1,283760,FALSE,FALSE,Supersonic,8,DEFINITELY MAYBE,A,major,A major 1994,1994,0.136,0.96,9,-3.229,1,0.0897,1.15e-05,0.845,0.414,0.185,154.319,4,1,257799,FALSE,FALSE,Bring It On Down,9,DEFINITELY MAYBE,A,major,A major 1994,1994,0.299,0.856,2,-2.301,1,0.0479,2.17e-05,0.0688,0.145,0.509,114.75,4,1,289400,FALSE,FALSE,Cigarettes & Alcohol,10,DEFINITELY MAYBE,D,major,D major 1994,1994,0.326,0.978,2,-4.928,1,0.1,6.09e-05,0.692,0.0663,0.109,139.374,4,1,152266,FALSE,FALSE,Digsy's Dinner,11,DEFINITELY MAYBE,D,major,D major 1994,1994,0.0811,0.957,5,-3.299,0,0.144,0.000885,0.000202,0.236,0.252,188.063,4,1,392733,FALSE,FALSE,Slide Away,12,DEFINITELY MAYBE,F,minor,F minor 1994,1994,0.577,0.407,4,-11.536,1,0.0286,0.801,0,0.0971,0.337,87.877,4,1,189973,FALSE,FALSE,Married With Children,13,DEFINITELY MAYBE,E,major,E major 1994,1994,0.315,0.97,4,-3.245,1,0.068,0.000392,0.00255,0.435,0.481,138.206,4,1,322946,FALSE,FALSE,Rock 'n' Roll Star - Remastered,1,Definitely Maybe (Deluxe Edition Remastered),E,major,E major 1994,1994,0.0839,0.929,4,-2.682,1,0.0732,0.0152,0.197,0.718,0.16,191.894,4,1,308280,FALSE,FALSE,Shakermaker - Remastered,2,Definitely Maybe (Deluxe Edition Remastered),E,major,E major 1994,1994,0.286,0.822,9,-3.366,0,0.0381,2.31e-05,1.31e-05,0.353,0.19,90.96,4,1,276666,FALSE,FALSE,Live Forever - Remastered,3,Definitely Maybe (Deluxe Edition Remastered),A,minor,A minor 1994,1994,0.256,0.908,0,-3.521,1,0.0398,1.53e-05,0.0193,0.354,0.341,140.533,4,1,268000,FALSE,FALSE,Up In The Sky - Remastered,4,Definitely Maybe (Deluxe Edition Remastered),C,major,C major 1994,1994,0.314,0.824,7,-5.079,1,0.049,2.38e-06,0.673,0.384,0.0546,100.151,4,1,377400,FALSE,FALSE,Columbia - Remastered,5,Definitely Maybe (Deluxe Edition Remastered),G,major,G major 1994,1994,0.359,0.913,9,-2.865,1,0.0391,6.31e-05,0.0121,0.0954,0.589,104.058,4,1,283786,FALSE,FALSE,Supersonic - Remastered,6,Definitely Maybe (Deluxe Edition Remastered),A,major,A major 1994,1994,0.115,0.945,9,-2.8,1,0.075,1.21e-05,0.801,0.462,0.195,152.589,4,1,257813,FALSE,FALSE,Bring It On Down - Remastered,7,Definitely Maybe (Deluxe Edition Remastered),A,major,A major 1994,1994,0.294,0.742,2,-2.334,1,0.0458,1.45e-05,0.0311,0.152,0.44,114.87,4,1,289146,TRUE,FALSE,Cigarettes & Alcohol - Remastered,8,Definitely Maybe (Deluxe Edition Remastered),D,major,D major 1994,1994,0.305,0.988,2,-2.912,1,0.103,0.000824,0.837,0.0678,0.0513,139.353,4,1,152266,FALSE,FALSE,Digsy's Dinner - Remastered,9,Definitely Maybe (Deluxe Edition Remastered),D,major,D major 1994,1994,0.0657,0.943,8,-2.71,1,0.138,0.000114,0.00016,0.313,0.264,190.555,4,1,392306,FALSE,FALSE,Slide Away - Remastered,10,Definitely Maybe (Deluxe Edition Remastered),G#,major,G# major 1994,1994,0.588,0.435,4,-10.845,1,0.0268,0.787,0,0.0801,0.305,88.068,4,1,195000,TRUE,FALSE,Married With Children - Remastered,11,Definitely Maybe (Deluxe Edition Remastered),E,major,E major 1994,1994,0.322,0.891,2,-1.882,1,0.0421,0.00235,0.782,0.701,0.295,100.999,4,2,328666,FALSE,FALSE,Columbia (White Label Demo) - Remastered,1,Definitely Maybe (Deluxe Edition Remastered),D,major,D major 1994,1994,0.362,0.93,9,-1.709,1,0.0448,0.000218,8.11e-05,0.0883,0.338,110.968,4,2,277986,TRUE,FALSE,Cigarettes & Alcohol (Demo) - Remastered,2,Definitely Maybe (Deluxe Edition Remastered),A,major,A major 1994,1994,0.528,0.578,8,-6.345,0,0.0308,0.529,0,0.392,0.161,118.427,4,2,269213,FALSE,FALSE,Sad Song - Remastered,3,Definitely Maybe (Deluxe Edition Remastered),G#,minor,G# minor 1994,1994,0.342,0.98,2,-3.241,1,0.0733,0.000745,0,0.0889,0.555,128.631,4,2,228880,FALSE,FALSE,I Will Believe (Live) - Remastered,4,Definitely Maybe (Deluxe Edition Remastered),D,major,D major 1994,1994,0.45,0.33,2,-10.919,1,0.0286,0.686,0,0.231,0.123,112.225,4,2,272773,FALSE,FALSE,Take Me Away - Remastered,5,Definitely Maybe (Deluxe Edition Remastered),D,major,D major 1994,1994,0.262,0.905,4,-4.514,1,0.0447,7.27e-06,0.00635,0.153,0.252,147.631,4,2,238226,FALSE,FALSE,Alive (Demo) - Remastered,6,Definitely Maybe (Deluxe Edition Remastered),E,major,E major 1994,1994,0.399,0.501,2,-9.077,1,0.0262,0.366,0,0.0888,0.622,138.087,4,2,161013,FALSE,FALSE,D'Yer Wanna Be A Spaceman? - Remastered,7,Definitely Maybe (Deluxe Edition Remastered),D,major,D major 1994,1994,0.248,0.969,6,-3.502,0,0.0923,0.00245,0.452,0.686,0.112,109.245,4,2,315026,FALSE,FALSE,Supersonic (Live) - Remastered,8,Definitely Maybe (Deluxe Edition Remastered),F#,minor,F# minor 1994,1994,0.153,0.782,0,-4.117,1,0.0427,0.147,0,0.132,0.341,141.712,4,2,214320,FALSE,FALSE,Up In The Sky (Acoustic) - Remastered,9,Definitely Maybe (Deluxe Edition Remastered),C,major,C major 1994,1994,0.31,0.883,9,-5.516,1,0.0511,3.21e-06,0.371,0.237,0.289,102.705,4,2,323146,FALSE,FALSE,Cloudburst - Remastered,10,Definitely Maybe (Deluxe Edition Remastered),A,major,A major 1994,1994,0.145,0.564,2,-3.486,1,0.0467,8.69e-06,0.218,0.384,0.351,72.65,4,2,256853,FALSE,FALSE,Fade Away - Remastered,11,Definitely Maybe (Deluxe Edition Remastered),D,major,D major 1994,1994,0.154,0.861,9,-1.786,1,0.0697,0.0257,0.0862,0.373,0.335,133.412,5,2,402360,FALSE,FALSE,Listen Up - Remastered,12,Definitely Maybe (Deluxe Edition Remastered),A,major,A major 1994,1994,0.129,0.977,4,-3.719,1,0.127,4.95e-06,0.795,0.419,0.04,98.681,4,2,498333,FALSE,FALSE,I Am The Walrus (Live Glasgow Cathouse June '94) - Remastered,13,Definitely Maybe (Deluxe Edition Remastered),E,major,E major 1994,1994,0.252,0.902,7,-2.479,1,0.0392,0.0421,0.0148,0.309,0.306,91.474,4,2,382266,FALSE,FALSE,Whatever - Remastered,14,Definitely Maybe (Deluxe Edition Remastered),G,major,G major 1994,1994,0.316,0.902,4,-2.061,0,0.0489,0.00207,0.00713,0.335,0.303,97.848,5,2,263533,FALSE,FALSE,(It's Good) To Be Free - Remastered,15,Definitely Maybe (Deluxe Edition Remastered),E,minor,E minor 1994,1994,0.433,0.458,0,-8.666,1,0.0328,0.305,0,0.0863,0.23,115.213,4,2,267333,FALSE,FALSE,Half The World Away - Remastered,16,Definitely Maybe (Deluxe Edition Remastered),C,major,C major 1994,1994,0.168,0.92,4,-2.503,1,0.0733,0.000104,0.93,0.847,0.278,113.048,4,3,331360,FALSE,FALSE,Supersonic - Live at Glasgow Tramshed,1,Definitely Maybe (Deluxe Edition Remastered),E,major,E major 1994,1994,0.31,0.908,4,-1.973,1,0.053,0.000128,0.0413,0.188,0.43,136.283,4,3,346226,FALSE,FALSE,Rock 'n' Roll Star - Demo,2,Definitely Maybe (Deluxe Edition Remastered),E,major,E major 1994,1994,0.518,0.733,4,-5.405,1,0.032,0.147,3.34e-05,0.0859,0.233,105,4,3,245253,FALSE,FALSE,Shakermaker - Live Paris In-Store,3,Definitely Maybe (Deluxe Edition Remastered),E,major,E major 1994,1994,0.304,0.928,2,-2.086,1,0.0411,0.000293,0.677,0.384,0.523,98.922,4,3,337133,FALSE,FALSE,Columbia - Eden Studios Mix,4,Definitely Maybe (Deluxe Edition Remastered),D,major,D major 1994,1994,0.406,0.955,9,-2.868,1,0.0416,0.000424,0.000359,0.039,0.602,101.896,4,3,310373,FALSE,FALSE,Cloudburst - Demo,5,Definitely Maybe (Deluxe Edition Remastered),A,major,A major 1994,1994,0.296,0.981,9,-1.834,1,0.0635,0.000357,0.00111,0.305,0.406,103.165,4,3,314866,FALSE,FALSE,Strange Thing - Demo,6,Definitely Maybe (Deluxe Edition Remastered),A,major,A major 1994,1994,0.288,0.633,9,-4.81,0,0.0327,0.137,5.76e-06,0.167,0.257,172.08,4,3,282120,FALSE,FALSE,Live Forever - Live Paris In-Store,7,Definitely Maybe (Deluxe Edition Remastered),A,minor,A minor 1994,1994,0.345,0.998,9,-1.389,1,0.0885,0.0382,0.000801,0.414,0.05,128.587,4,3,238560,FALSE,FALSE,Cigarettes & Alcohol - Live at Manchester Academy,8,Definitely Maybe (Deluxe Edition Remastered),A,major,A major 1994,1994,0.305,0.633,0,-6.996,1,0.0315,0.719,0,0.93,0.524,146.315,4,3,166213,FALSE,FALSE,D'Yer Wanna Be A Spaceman? - Live at Manchester Academy,9,Definitely Maybe (Deluxe Edition Remastered),C,major,C major 1994,1994,0.278,0.901,9,-2.307,1,0.0531,0.000122,0,0.331,0.37,143.406,4,3,263200,FALSE,FALSE,Fade Away - Demo,10,Definitely Maybe (Deluxe Edition Remastered),A,major,A major 1994,1994,0.296,0.371,2,-7.15,1,0.0293,0.655,1.56e-05,0.823,0.158,116.93,4,3,255160,FALSE,FALSE,Take Me Away - Live at Manchester Academy,11,Definitely Maybe (Deluxe Edition Remastered),D,major,D major 1994,1994,0.437,0.419,9,-8.779,0,0.0275,0.638,0,0.953,0.262,116.511,4,3,269280,FALSE,FALSE,Sad Song - Live at Manchester Academy,12,Definitely Maybe (Deluxe Edition Remastered),A,minor,A minor 1994,1994,0.44,0.415,11,-6.629,1,0.0306,0.776,1.77e-05,0.184,0.157,111.384,4,3,233373,FALSE,FALSE,"Half The World Away - Live, Tokyo Hotel Room",13,Definitely Maybe (Deluxe Edition Remastered),B,major,B major 1994,1994,0.456,0.5,9,-5.422,1,0.0278,0.133,0,0.106,0.529,134.086,4,3,156866,FALSE,FALSE,Digsy's Dinner - Live Paris In-Store,14,Definitely Maybe (Deluxe Edition Remastered),A,major,A major 1994,1994,0.624,0.466,4,-7.735,1,0.025,0.619,0,0.105,0.505,87.692,4,3,196066,FALSE,FALSE,Married With Children - Demo,15,Definitely Maybe (Deluxe Edition Remastered),E,major,E major 1994,1994,0.378,0.687,0,-5.968,1,0.0308,0.055,0,0.13,0.548,135.035,4,3,199320,FALSE,FALSE,Up In The Sky - Live Paris In-Store,16,Definitely Maybe (Deluxe Edition Remastered),C,major,C major 1994,1994,0.562,0.321,7,-7.981,1,0.0313,0.92,0.935,0.349,0.713,92.745,4,3,293960,FALSE,FALSE,Whatever - Strings,17,Definitely Maybe (Deluxe Edition Remastered),G,major,G major ================================================ FILE: docs/third-party/data-science/files/pandas/pop_density.py ================================================ import pandas as pd democan = pd.read_csv('democan.csv', index_col='Island') democan['Density'] = democan['Population'] / democan['Area'] ================================================ FILE: docs/third-party/data-science/files/pandas/pop_percentage.py ================================================ import pandas as pd democan = pd.read_csv('democan.csv', index_col='Island') total_population = democan['Population'].sum() provinces_by_pop = democan.groupby('Province')['Population'].sum() pop_percentages = provinces_by_pop / total_population ================================================ FILE: docs/third-party/data-science/files/pandas/recoding.py ================================================ import pandas as pd democan = pd.read_csv('democan.csv', index_col='Island') recoding = {'LPGC': 'Las Palmas de Gran Canaria', 'SCTF': 'Santa Cruz de Tenerife'} democan.replace(recoding, inplace=True) ================================================ FILE: docs/third-party/data-science/files/pandas/smallest_density.py ================================================ import pandas as pd democan = pd.read_csv('democan.csv', index_col='Island') democan['Density'] = democan['Population'] / democan['Area'] democan.nsmallest(3, 'Density') ================================================ FILE: docs/third-party/data-science/files/pandas/tech.csv ================================================ Company,Revenue,Employees,City,Country Amazon,574.8,1525000,Seattle,United States Apple,394.33,164000,Cupertino,United States Alphabet,282.84,190234,Mountain View,United States Samsung Electronics,234.13,270372,Suwon,South Korea Foxconn,222.54,767062,New Taipei City,Taiwan Microsoft,198.27,221000,Redmond,United States Jingdong,152.8,310000,Beijing,China Alibaba,130.35,204891,Yuhang,China AT&T,122.4,149900,Dallas,United States Meta,116.61,86482,Menlo Park,United States Deutsche Telekom,112.0,205000,Bonn,Germany Dell Technologies,102.30,133000,Round Rock,United States Huawei,95.49,207000,Shenzhen,China Sony,85.25,112994,Tokyo,Japan Tencent,82.44,108436,Shenzhen,China Hitachi,80.39,322525,Tokyo,Japan TSMC,76.02,73090,New Taipei City,Taiwan LG Electronics,64.95,74000,Seoul,South Korea Intel,63.05,131900,Santa Clara,United States HP Inc.,62.98,53000,Palo Alto,United States Lenovo,61.95,71500,Hong Kong,Hong Kong Panasonic,61.90,233391,Osaka,Japan Accenture,61.59,721000,Dublin,Ireland Nvidia,60.93,29600,Santa Clara,United States IBM,60.53,303100,Armonk,United States ================================================ FILE: docs/third-party/data-science/index.md ================================================ # Ciencia de datos La ciencia de datos es un campo multidisciplinar que utiliza técnicas estadísticas, matemáticas y de programación para extraer conocimiento y patrones útiles a partir de grandes volúmenes de datos. En la era digital, la capacidad de analizar datos de manera eficiente se ha vuelto crucial para tomar decisiones informadas en una variedad de industrias, desde la tecnología hasta la medicina. Python se ha consolidado como uno de los lenguajes más populares para la ciencia de datos debido a su simplicidad y a la potencia de sus bibliotecas especializadas, como Pandas, NumPy, Matplotlib y Scikit-learn. En este capítulo, exploraremos cómo Python puede ser utilizado para realizar análisis de datos y manipular grandes conjuntos de información, sentando las bases para adentrarse en el fascinante mundo de la ciencia de datos. ================================================ FILE: docs/third-party/data-science/jupyter.md ================================================ --- icon: simple/jupyter tags: - Paquetes de terceros - Ciencia de datos - Jupyter --- # Jupyter { #jupyter } ![Banner](images/jupyter/banner.jpg) ///caption Imagen generada con Inteligencia Artificial /// El módulo [`jupyter`](https://jupyter.org/) proporciona un **entorno de desarrollo integrado** para ciencia de datos (incluso generalista), que no es exclusivo de Python, sino que además admite otros lenguajes ([«kernels»](#kernel-menu)) en su «backend». ## Instalación { #install } ```console pip install jupyter ``` ## Modo de uso { #usage } El paquete proporciona un comando `jupyter` que puede usarse para distintas funcionalidades. La más habitual es lanzar un servidor que permite trabajar con **cuadernos** («notebooks») sobre los que desarrollar código Python. === "`jupyter notebook`" Lanza un servidor «legacy» en http://localhost:8888 === "`jupyter lab`" Lanza un [servidor «vitaminado»](#jupyterlab) en http://localhost:8888 === "`jupyter console`" Lanza un intérprete interactivo en consola. !!! tip "Jupyter en la nube" Es posible probar `jupyter` desde [este enlace](https://jupyter.org/try-jupyter/lab/) con lo que no necesitaríamos instalar nada en nuestra propia máquina. ## Notebooks { #notebooks } Un «notebook» es un **documento interactivo** compuestos por **celdas** que contienen: - [x] Texto en formato [Markdown](https://www.markdownguide.org/basic-syntax/) (incluyendo [fórmulas]()). - [x] Código Python. - [x] Elementos multimedia. Para ejecutar (o renderizar) una celda basta con pulsar ++shift++ + ++enter++ ![Celdas de Jupyter](images/jupyter/jupyter-cells.jpg) !!! note "Formato de fichero" Los «notebooks» o cuadernos son básicamente **archivos de texto en formato json** con extensión `.ipynb` (que proviene de «IPython Notebook»). ## Interfaz { #interface } Jupyter se presenta como una aplicación web en cuya interfaz podemos encontrar distintos elementos que nos permitirán desarrollar nuestras tareas de programación de una forma más cómoda. ### Explorador de archivos { #file-browser } Lo primero que veremos al arrancar el servidor de «notebooks» será el **explorador de archivos** con un diseño muy similar al de cualquier sistema operativo. ![Explorador de archivos](images/jupyter/jupyter-browser.png) :material-check-all:{ .blue } Los «notebooks» que se están ejecutando suelen tener un color verde en el icono, mientras que los que están parados aparecen en gris. ### Barra de menú { #menubar } #### Menú Fichero { #file-menu } Del estilo de los menús tradicionales de aplicaciones, aquí podemos encontrar las principales funciones sobre ficheros: ![Menu Fichero](images/jupyter/jupyter-file-menu.png) Los «checkpoints» permiten guardar el estado del «notebook» en un momento determinado para luego poder revertirlo a ese momento del tiempo. Es posible exportar el «notebook» a una gran variedad de formatos, entre otros los siguientes: - Asciidoc (`.asciidoc`) - HTML (`.html`) - LaTeX (`.tex`) - Markdown (`.md`) - PDF vía LaTeX (`.pdf`) - Python (.`py`) - reST (`.rst`) - Reveal.js «slides» (`.html`) !!! exercise "Ejercicio" Crea un «notebook» de prueba y descárgalo en formato **HTML** y **Markdown**. #### Menú Edición { #edit-menu } Este menú contiene las acciones que podemos realizar sobre una o varias celdas: ![Menú Edición](images/jupyter/jupyter-edit-menu.png) Las funciones las podríamos agrupar en **gestión de celdas** (cortar, pegar, borrar, dividir, unir, mover, etc.) e **inserción de imágenes** seleccionando desde un cuadro de diálogo. #### Menú Vista { #view-menu } Permite modificar el aspecto visual de determinados elementos de la aplicación: ![Menú Vista](images/jupyter/jupyter-view-menu.png) - Números de línea: Puede resultar interesante mostrar los números de línea en celdas que contengan código. - Modo presentación (Cell toolbar :material-arrow-right-bold: Slideshow): Jupyter Notebook ofrece la posibilidad de crear una presentación sobre el documento en el que estamos trabajando. Cada celda se puede configurar con alguno de los siguientes tipos: - Slide. - Subslide. - Fragment. - Skip. - Notes - Etiquetas (Cell toolbar :material-arrow-right-bold: Tags): Es interesante —entre otras— el uso de la etiqueta `raises-exception` ya que nos permite ejecutar todas las celdas de un «notebook» sin que el sistema se detenga por errores en la celda etiquetada, ya que estamos informando que lanzará una [excepción](../../core/modularity/exceptions.md). #### Menú Insertar { #insert-menu } Insertar celda antes o después de la actual: ![Menú Insertar](images/jupyter/jupyter-insert-menu.png) #### Menú Celda { #cell-menu } Principalmente enfocado a la ejecución de las celdas que componen el «notebook»: ![Menú Celda](images/jupyter/jupyter-cell-menu.png) - Ejecución de celdas: La ejecución de celdas se puede hacer de forma individual o grupal así como indicando el punto de partida (celda actual). - Tipo de celdas: Define el tipo de la celda actual. - **Code**: para incluir código (se podrá ejecutar el lenguaje de programación según el «kernel» instalado). - **Markdown**: para escribir texto utilizando sintaxis [Markdown](https://www.markdownguide.org/basic-syntax/). - **Raw**: estas celdas no serán formateadas. - Salida de celdas: La ejecución de las celdas de código tiene (suele tener) una salida. Esta salida se puede ocultar (si interesa). Incluso tenemos control sobre activar o desactivar el «scroll» en caso de que la salida sea muy larga. #### Menú Kernel { #kernel-menu } Permite gestionar el servicio que se encarga de lanzar los «notebooks»: ![Menú Kernel](images/jupyter/jupyter-kernel-menu.png) El **kernel** es la capa de software que se encarga de ejecutar las celdas de nuestro «notebook» que contienen código. Podemos tener instalados distintos «kernels» para un mismo Jupyter Notebook. El kernel se puede interrumpir o reiniciar. Hay veces, que debido a un error de programación o a procesos muy largos, podemos encontrarnos con el «kernel» bloqueado durante un largo período de tiempo. En estas ocasiones es útil reiniciarlo para salvar esa situación: ![Kernel ocupado](images/jupyter/jupyter-busy-kernel.png) #### Menú Ayuda { #help-menu } Como cualquier aplicación, existe un menú de ayuda en el que se pueden encontrar enlaces a referencias y manuales: ![Menú Ayuda](images/jupyter/jupyter-help-menu.png) Uno de los elementos más interesantes de la ayuda es el uso de los «shortcuts»[^1]. Aunque hay muchos, dejamos aquí algunos de los más útiles: | Shortcut | Acción | | --- | --- | | ++shift++ + ++enter++ | Ejecutar la celda actual | | ++alt++ + ++enter++ | Ejecutar la celda actual y «abrir» una celda debajo | | ++a++ | Abrir una celda encima de la actual («above») | | ++b++ | Abrir una celda debajo de la actual («below») | | ++m++ | Convertir la celda actual a Markdown | | ++y++ | Convertir la celda actual a código | | ++d++ ++d++ | Borrar la celda actual | ## Mathjax { #mathjax } [MathJax](https://www.mathjax.org/) es una biblioteca javascript que permite visualizar fórmulas matemáticas en navegadores web, utilizando (entre otros) el lenguajes de marcado [LaTeX](https://es.overleaf.com/learn/latex/Mathematical_expressions). Para escribir fórmulas matemáticas la celda debe ser de tipo Markdown y tendremos que usar delimitadores especiales en función del formato: === "Fórmulas «en línea»" Se debe usar el delimitador dólar antes y después de la expresión `$ ... $` Por ejemplo:material-flash:: `$\sum_{x=1}^n sin(x) + cos(x)$` :material-arrow-right-bold: $\sum_{i=1}^n sin(x) + cos(x)$ === "Fórmulas «en bloque»" Se debe usar el delimitador doble dólar antes y después de la expresión `$$ ... $$` Por ejemplo:material-flash:: `$$\sum_{x=1}^n sin(x) + cos(x)$$` :material-arrow-down-bold: $$ $\sum_{x=1}^n sin(x) + cos(x)$ $$ ### Ejemplos de fórmulas { #formula-examples } A continuación veremos distintas fórmulas inspiradas en [Motivating Examples](https://jupyter-notebook.readthedocs.io/en/latest/examples/Notebook/Typesetting%20Equations.html#Motivating-Examples) de la documentación oficial de Jupyter Notebook. ```latex title="Ecuaciones en varias líneas" $$ \begin{align} \dot{x} &= \sigma(y-x) \\ \dot{y} &= \rho x - y - xz \\ \dot{z} &= -\beta z + xy \end{align} $$ ```
$$ \begin{align} \dot{x} &= \sigma(y-x) \\ \dot{y} &= \rho x - y - xz \\ \dot{z} &= -\beta z + xy \end{align} $$
```latex title="Usando paréntesis" $$ \left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right) $$ ```
$$ \left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right) $$
```latex title="Trabajando con matrices" $$ \mathbf{V}_1 \times \mathbf{V}_2 = \begin{vmatrix} \mathbf{i} & \mathbf{j} & \mathbf{k} \\ \frac{\partial X}{\partial u} & \frac{\partial Y}{\partial u} & 0 \\ \frac{\partial X}{\partial v} & \frac{\partial Y}{\partial v} & 0 \end{vmatrix} $$ ```
$$ \mathbf{V}_1 \times \mathbf{V}_2 = \begin{vmatrix} \mathbf{i} & \mathbf{j} & \mathbf{k} \\ \frac{\partial X}{\partial u} & \frac{\partial Y}{\partial u} & 0 \\ \frac{\partial X}{\partial v} & \frac{\partial Y}{\partial v} & 0 \end{vmatrix} $$
```latex title="Algo de probabilidad" $$ P(E) = {n \choose k} p^k (1-p)^{ n-k} $$ ```
$$ P(E) = {n \choose k} p^k (1-p)^{ n-k} $$
```latex title="Uso de fracciones" $$ 1 + \frac{q^2}{(1-q)}+\frac{q^6}{(1-q)(1-q^2)}+\cdots = \prod_{j=0}^{\infty}\frac{1}{(1-q^{5j+2})(1-q^{5j+3})}, \quad\quad \text{for $|q|<1$}. $$ ```
$$ 1 + \frac{q^2}{(1-q)}+\frac{q^6}{(1-q)(1-q^2)}+\cdots = \prod_{j=0}^{\infty}\frac{1}{(1-q^{5j+2})(1-q^{5j+3})}, \quad\quad \text{for $|q|<1$}. $$
```latex title="Alineación múltiple" $$ \begin{eqnarray} x' &=& &x \sin\phi &+& z \cos\phi \\ z' &=& - &x \cos\phi &+& z \sin\phi \end{eqnarray} $$ ```
$$ \begin{eqnarray} x' &=& &x \sin\phi &+& z \cos\phi \\ z' &=& - &x \cos\phi &+& z \sin\phi \end{eqnarray} $$
!!! info "Recursos" - [Listado de símbolos matemáticos](https://www.cmor-faculty.rice.edu/~heinken/latex/symbols.pdf) - [Dibujar un símbolo y obtener su referencia con Detexify](https://detexify.kirelabs.org/classify.html) !!! exercise "Ejercicio" Escribe en MathJax (usando Jupyter Notebook) las siguientes ecuaciones: $$ (I)\quad \int_a^b f'(x)dx = f(b) - f(a) $$ $$ (II)\quad t' = t \frac{1}{\sqrt{1 - \frac{v^2}{c^2}}} $$ $$ (III)\quad \Big[ M \frac{\partial}{\partial M} + \beta(g) \frac{\partial}{\partial g} + \eta \gamma \Big] G^n(x_1, x_2, \dots, x_n; M, g) = 0 $$ $$ (IV)\quad R_{00} \approx -\frac{1}{2} \sum_i \frac{\partial^2 h_{00}}{\partial(x^i)^2} = \frac{4\pi G}{c^2} (\rho c^2) \Rightarrow \bigtriangledown^2 \phi_g = 4\pi G \rho $$ [:material-lightbulb: Solución](files/jupyter/equations.tex) ## Comandos especiales { #special-commands } Jupyter Notebook ofrece una gama de comandos especiales que cubren gran variedad de funcionalidades. ### Comandos de shell { #shell-commands } Podemos ejecutar comandos de «shell» usando el prefijo exclamación `!` Por ejemplo:material-flash:: ```pycon >>> !whoami sdelquin ``` ```pycon >>> !uname Darwin ``` !!! exercise "Ejercicio" Ejecuta los siguientes comandos del sistema en una celda del «notebook»: | Windows | Linux & macOS | | --- | --- | | `time` | `date` | | `dir` | `ls` | | `mem` | `free` | ### Obteniendo ayuda { #help } Una de las formas más sencillas de obtener información de librerías, funciones o módulos es utilizar el sufijo interrogación `?` ```pycon >>> import random >>> random.randint? Signature: random.randint(a, b) Docstring: Return random integer in range [a, b], including both end points. File: ~/.local/share/uv/python/cpython-3.13.2-macos-aarch64-none/lib/python3.13/random.py Type: method ``` !!! exercise "Ejercicio" Encuentra la ayuda de las siguientes funciones: - `os.path.dirname` - `re.match` - `datetime.timedelta` ### Comandos mágicos Jupyter Notebook, o mejor expresado [IPython](https://ipython.org/), admite un conjunto de [comandos mágicos](https://ipython.readthedocs.io/en/stable/interactive/magics.html) que permiten realizar distintas tareas, en muchos casos, no necesariamente relacionadas con Python. La lista es bastante extensa pero puede consultarse con `%lsmagic`: ```pycon >>> %lsmagic Available line magics: %aimport %alias %alias_magic %autoawait %autocall %autoindent %automagic %autoreload %bookmark %cat %cd %clear %code_wrap %colors %conda %config %cp %cpaste %debug %dhist %dirs %doctest_mode %ed %edit %env %gui %hist %history %killbgscripts %ldir %less %lf %lk %ll %load %load_ext %loadpy %logoff %logon %logstart %logstate %logstop %ls %lsmagic %lx %macro %magic %mamba %man %matplotlib %micromamba %mkdir %more %mv %notebook %page %paste %pastebin %pdb %pdef %pdoc %pfile %pinfo %pinfo2 %pip %popd %pprint %precision %prun %psearch %psource %pushd %pwd %pycat %pylab %quickref %recall %rehashx %reload_ext %rep %rerun %reset %reset_selective %rm %rmdir %run %save %sc %set_env %store %sx %system %tb %time %timeit %unalias %unload_ext %uv %who %who_ls %whos %xdel %xmode Available cell magics: %%! %%HTML %%SVG %%bash %%capture %%code_wrap %%debug %%file %%html %%javascript %%js %%latex %%markdown %%perl %%prun %%pypy %%python %%python2 %%python3 %%ruby %%script %%sh %%svg %%sx %%system %%time %%timeit %%writefile Automagic is ON, % prefix IS NOT needed for line magics. ``` Si nos fijamos en el último mensaje, al estar habilitado el modo «automagic», no es estrictamente necesario que usemos el prefijo `%` para hacer uso de estos comandos «line magics». Por ejemplo:material-flash: podríamos conocer la _historia de comandos_ en el intérprete simplemente con `hist`: ```pycon >>> hist#(1)! import random random.randint? %lsmagic lsmagic hist ``` { .annotate } 1. Equivale a `%hist` #### Representando gráficas { #plots } Otra de las grandes ventajas que ofrece Jupyter Notebook es poder graficar directamente sobre el cuaderno. Para ello utilizamos código Python (en este caso) y una directiva de comando mágico para indicar que se renderice en línea: ```pycon >>> %matplotlib inline >>> from matplotlib import pyplot as plt >>> x = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] >>> y = [1, 4, 9, 16, 25, 36, 49, 64, 81, 100] >>> plt.plot(x, y) []
```
![Basic plot](images/jupyter/basic-plot.png)
#### Manejo de ficheros { #handling-files }
| Comando | Descripción | | --- | --- | | `%load ` | Carga el contenido del fichero `` en la celda actual. | | `%run ` | Ejecuta el contenido del fichero `` en la celda actual. | | `%%writefile ` | Escribe el contenido de la celda actual en el fichero ``.(1) |
1. La sentencia `%%writefile ` debe ser la primera línea de la celda y luego vendría el código que queremos volcar al fichero. !!! exercise "Ejercicio" 1. En una celda del «notebook» escribe código Python para crear una lsita de los primeros 100 números pares. 2. Guarda el contenido de dicha celda en un fichero Python usando `%writefile`. 3. Carga este fichero en otra celda con `%load`. 4. Ejecuta dicho código mediante `%run`. #### Tiempos de ejecución { #execution-time } Para medir el tiempo de ejecución de una determinada instrucción Python podemos utilizar el comando `%timeit` que calcula un promedio tras correr repetidas veces el código indicado. Por ejemplo:material-flash: veamos cuánto tarda (en mi máquina) crear una distribución normal con 100 muestras: ```pycon >>> import numpy >>> %timeit numpy.random.normal(size=100) 2.05 μs ± 14.2 ns per loop (mean ± std. dev. of 7 runs, 100,000 loops each) ``` De igual forma, existe un mecanismo para medir el tiempo de ejecución de una celda completa. En este caso se utiliza el comando `%%timeit` (nótese la diferencia del doble porcentaje como prefijo). A continuación analizamos un ejemplo:material-flash: para medir el tiempo de ejecución de tres distribuciones aleatorias: ```pycon >>> %%timeit ... ... numpy.random.poisson(size=100) ... numpy.random.uniform(size=100) ... numpy.random.logistic(size=100) ... ... 7.48 μs ± 45.7 ns per loop (mean ± std. dev. of 7 runs, 100,000 loops each) ``` !!! exercise "Ejercicio" Mide los tiempos de ejecución en la creación de distribuciones aleatorias y descubre si hay diferencias significativas atendiendo a: - Tipo de distribución (_Poisson_, _Uniform_, `Logistic`). - Tamaño de la muestra (100, 10000, 1000000). [:material-lightbulb: Solución](files/jupyter/timeit.py) #### Incluyendo otros lenguajes { #another-langs } Por defecto, Jupyter espera que las celdas tipos «código» estén escritas en Python, pero este comportamiento se puede modificar aplicando distintos comandos mágicos: === "Celdas con HTML" Si necesitamos insertar código HTML en una celda, podemos usar el comando %%html al comienzo de la misma. Por ejemplo:material-flash: incrustamos un mapa de Canarias: ```pycon >>> %%html ... ... ... ... ```
![Mapa de Canarias](images/jupyter/canaryislands-googlemaps.png)
=== "Celdas con «shell script»" Hay ocasiones en las que un código en [shell script](http://trajano.us.es/~fjfj/shell/shellscript.htm) suele ser útil. Para incluirlo recurrimos al comando `%%bash` al principio de la celda. Por ejemplo:material-flash: mostramos un árbol de ficheros: ```pycon >>> %%bash ... ... tree -d -L 2 ... ... . ├── docs │   ├── assets │   ├── core │   ├── stdlib │   └── third-party ├── includes └── site ├── assets ├── core ├── search ├── stdlib └── third-party 13 directories ``` === "Celdas con Perl" No hay que subestimar el poder del lenguaje de programación [Perl](https://perlenespanol.com/). Si fuera necesario, lo podemos incluir en una celda del «notebook» con `%%perl` al comienzo de la misma. En el siguiente ejemplo:material-flash: usamos Perl para «parsear» un correo electrónico: ```pycon >>> %%perl ... ... my $email = 'sdelquin@gmail.com' ... if ($email =~ /^([^@]+)\@(.+)$/) { ... print "Username is: $1\n"; ... print "Hostname is: $2\n"; ... } ... ... Username is: sdelquin Hostname is: gmail.com ``` ## Extensiones { #extensions } El ecosistema de Jupyter Notebook es muy amplio y ofrece una gran variedad de extensiones que se pueden incluir en la instalación que tengamos: [Unofficial Jupyter Notebook Extensions](https://jupyter-contrib-nbextensions.readthedocs.io/en/latest/). Su instalación es tan sencilla como: ```console $ pip install jupyter_contrib_nbextensions ``` ## Otros entornos { #environments } El ecosistema de entornos para trabajos en ciencia de datos ha ido ampliándose durante estos últimos años con la explosión del «BigData» y la inteligencia artificial. En este apartado veremos otras plataformas que también nos permiten usar Python enfocado al análisis de datos. ### Jupyter Lab { #jupyterlab } [JupyterLab](https://jupyterlab.readthedocs.io/en/stable/) es una evolución de Jupyter Notebook. ![JupyterLab](images/jupyter/jupyterlab.png) Mejoras con respecto a Jupyter Notebook: - [x] Explorador de ficheros integrado en la barra lateral. - [x] Posibilidad de abrir múltiples `.ipynb` al mismo tiempo usando pestañas. - [x] Posibilidad de abrir múltiples terminales. - [x] Editor integrado para cualquier fichero de texto. - [x] Vista previa en tiempo real de documentos _markdown_ o _csv_. :material-check-all:{ .blue } Forma parte del proyecto Jupyter y por tanto viene instalado por defecto al instalar el propio paquete `jupyter`. ### Google Colab { #google-colab } [Google Colab](https://colab.research.google.com/) es un entorno de computación científica creado por Google y disponible en su nube. Como era previsible, para su uso es necesario disponer de una cuenta en Google. ![Google Colab](images/jupyter/google-colab.png) **Características**: - [x] Tiene un comportamiento totalmente análogo a Jupyter en cuanto a comportamiento y funcionalidades. - [x] Completamente en la nube. No necesita instalación ni configuración. - [x] Por defecto trae multitud de paquetes instalados, principalmente en el ámbito científico. - [x] Espacio en disco sujeto a las características de Google Compute Engine. - [x] Memoria RAM sujeta a las características de Google Compute Engine. - [x] Acceso limitado al sistema operativo. - [x] Previsualización _markdown_ en tiempo real sobre cada celda. - [x] Posibilidad de subir ficheros de datos propios en carpetas accesibles por el cuaderno. - [x] Posibilidad de ejecutar Jupyter «notebooks» propios. - [x] Posibilidad (limitada) de acelerar cálculos usando GPU o TPU. - [x] Posibilidad de descargar el cuaderno como Jupyter «notebook» o archivo de Python. - [x] Índice de contenidos integrado en barra lateral. - [x] Inspector de variables integrado en barra lateral. ### Kaggle { #kaggle } [Kaggle](https://www.kaggle.com/) es una plataforma que no sólo ofrece un entorno de trabajo para cuadernos Jupyter sino también [una enorme colección de conjuntos de datos](https://www.kaggle.com/datasets) de libre acceso. Para su uso es necesario disponer de una cuenta en el servicio. ![Kaggle](images/jupyter/kaggle.png) **Características**: - [x] Tiene un comportamiento totalmente análogo a Jupyter en cuanto a comportamiento y funcionalidades. - [x] Completamente en la nube. No necesita instalación ni configuración. - [x] Por defecto trae multitud de paquetes instalados, principalmente en el ámbito científico. - [x] Espacio en disco sujeto a las características de Kaggle. - [x] Memoria RAM sujeta a las características de Kaggle. - [x] Acceso limitado al sistema operativo. - [x] Posibilidad de subir ficheros de datos propios sólo como «datasets» de Kaggle. - [x] Posibilidad de ejecutar Jupyter «notebooks» propios. - [x] Posibilidad (limitada) de acelerar cálculos usando GPU o TPU. - [x] Posibilidad de descargar el cuaderno como Jupyter «notebook». ### Comparativa { #compare-envs } Haremos un análisis de los entornos vistos comparando tiempos de ejecución a través del cómputo de una FFT sobre una matriz de 1 millón de elementos: ```pycon >>> import numpy as np >>> bigdata = np.random.randint(1, 100, size=(1_000, 1_000)) >>> %timeit np.fft.fft(bigdata) 8.07 ms ± 2.01 ms per loop (mean ± std. dev. of 7 runs, 1 loop each) ```
| Jupyter (local) | Colab | Kaggle | | --- | --- | --- | | 8.07ms(1) | 41.5ms(2) | 6.62ms(3) |
1. Apple Silicon M1. 2. Abril de 2025 (capa gratuita). 3. Abril de 2025 (capa gratuita). Obviamente se trata de una ejecución puntual y no podemos sacar conclusiones claras al respecto. Además de ello depende del «hardware» sobre el que estemos trabajando. En cualquier caso el propósito es únicamente tener una ligera idea de los órdenes de magnitud. [^1]: Un «shortcut» es un «atajo de teclado» (combinación de teclas) para lanzar una determinada acción. ================================================ FILE: docs/third-party/data-science/matplotlib.md ================================================ --- icon: material/chart-scatter-plot tags: - Paquetes de terceros - Ciencia de datos - Matplotlib --- # Matplotlib ![Banner](images/matplotlib/banner.jpg) ///caption Imagen generada con Inteligencia Artificial /// [`matplotlib`](https://matplotlib.org/) es el módulo Python más utilizado en el ámbito de ciencia de datos para representaciones gráficas. ## Instalación { #install } ```console pip install matplotlib ``` ## Modo de uso { #usage } La forma más habitual de importar esta librería es utilizar el alias `plt`: ```pycon >>> import matplotlib.pyplot as plt ``` Si bien podemos utilizar matplotlib en el intérprete habitual de Python, suele ser muy frecuente trabajar con esta librería mediante entornos [Jupyter](jupyter.md), ya que facilitan la visualización de los gráficos en su interfaz de usuario. ## Figura { #figure } La [figura](https://matplotlib.org/stable/gallery/showcase/anatomy.html) es el elemento base sobre el que se construyen todos los gráficos en matplotlib. Veamos cómo crearla: ```pycon >>> fig = plt.figure() >>> type(fig) matplotlib.figure.Figure >>> fig
``` Podemos observar que la resolución (por defecto) de la figura es de 640x480 píxeles y que no dispone de ningún eje («0 Axes»). !!! info "Ejes" El término «axes» hace referencia a un conjunto de ejes. Puede resultar confuso en español y he decidido asignar el nombre **marco** cuando haga referencia a «axes». La **resolución final** de una figura viene determinada por su altura (height) y anchura (width) especificadas en pulgadas[^1] que, a su vez, se multiplican por los puntos por pulgada o DPI. Veamos el funcionamiento: ```pycon >>> fig
>>> fig.get_figwidth()#(1)! 6.4 >>> fig.get_figheight()#(2)! 4.8 >>> fig.get_dpi()#(3)! 100.0 >>> fig.get_figwidth() * fig.dpi, fig.get_figheight() * fig.dpi (640.0, 480.0) ``` { .annotate } 1. Resultado en pulgadas. 2. Resultado en pulgadas. 3. Puntos por pulgada (DPI). !!! tip "Entorno Jupyter" Si utilizamos entornos de desarollo basados en [Jupyter](jupyter.md), los valores por defecto son distintos: - Ancho de figura: 6 in - Alto de figura: 4 in - DPI: 75 - Resolución: 450x300 px Por tanto, cuando creamos una figura podemos modificar los parámetros por defecto para obtener la resolución deseada: ```pycon >>> fig = plt.figure(figsize=(19.2, 10.8))#(1)! >>> fig
>>> fig = plt.figure(figsize=(19.2, 10.8), dpi=300) >>> fig
``` { .annotate } 1. 100 DPI Si nos interesa que cualquier figura tome unos valores concretos de resolución, podemos modificar los **valores por defecto del entorno**. Para ello, matplotlib hace uso de un diccionario plt.rcParams que contiene los parámetros globales de configuración. Veamos cómo modificarlo: ```pycon hl_lines="6-7" >>> plt.rcParams['figure.figsize'] [6.4, 4.8] >>> plt.rcParams['figure.dpi'] 100.0 >>> plt.rcParams['figure.figsize'] = (10, 5) >>> plt.rcParams['figure.dpi'] = 300#(1)! >>> fig.get_figwidth() 10.0 >>> fig.get_figheight() 5.0 >>> fig.dpi 300.0 ``` { .annotate } 1. Resolución final = $(300*10, 300*5) = (3000, 1500)\ px$ ## Marco { #frame } Para poder empezar a graficar necesitamos tener, al menos, un **marco**. Utilizaremos la función `add_subplot()` que requiere pasar como parámetros el número de filas, el número de columnas y el marco activo: ![Dark image](images/matplotlib/add-subplot-dark.svg#only-dark) ![Light image](images/matplotlib/add-subplot-light.svg#only-light) Para comenzar vamos a trabajar únicamente con un marco: ```pycon >>> fig = plt.figure() >>> ax = fig.add_subplot(1, 1, 1)#(1)! >>> ax#(2)! >>> fig
``` { .annotate } 1. Equivalente a `#!python fig.add_subplot(111)`. 2. Suele ser habitual encontrar `ax` como nombre de variable del «axes» devuelto por la función `add_subplot()`.
![Figura en blanco](images/matplotlib/blank-figure.png)
!!! tip "Escala" La escala por defecto de cada eje va de 0 a 1 con marcas cada 0.2 Ahora vamos a generar 4 marcos sobre los que fijaremos un título identificativo: ```pycon >>> fig = plt.figure() >>> for i in range(1, 5): ... ax = fig.add_subplot(2, 2, i) ... ax.set_title(f'Subplot {i}') >>> fig.tight_layout(pad=1)#(1)! >>> fig
``` { .annotate } 1. Sólo para que no se solapen los títulos.
![Ejes 2x2](images/matplotlib/axes-2by2.png)
### Atajo para subgráficos { #subplot-shortcut } Matplotlib nos ofrece una forma compacta de crear a la vez tanto la [figura](#figure) como los [marcos](#frame) que necesitemos. Para ello utilizaremos la función `plt.subplots()` que recibe como parámetros el _número de filas_ y el _número de columnas_ para la disposición de los marcos, y devuelve una tupla con la figura y los marcos. En el siguiente ejemplo:material-flash: creamos **una figura con un único marco**: ```pycon >>> fig, ax = plt.subplots(1, 1)#(1)! >>> fig
>>> ax ``` { .annotate } 1. Si invocamos la función `plt.subplots()` sin parámetros, creará (por defecto) un único marco. En el siguiente ejemplo:material-flash: creamos **una figura con 6 marcos** en disposición de 2 filas por 3 columnas: ```pycon >>> fig, ax = plt.subplots(2, 3) >>> fig
>>> ax array([[, , ], [, , ]], dtype=object) >>> ax.shape (2, 3) ``` !!! note "Combinación" Se podría ver la función subplots() como una combinación de `figure()` + `add_subplot()`. ### Etiquetas { #labels } Dentro de un marco también es posible fijar las etiquetas de los ejes (X e Y). Veamos cómo hacerlo: ```pycon >>> fig, ax = plt.subplots() >>> ax.set_title('Gráfico en blanco') Text(0.5, 1.0, 'Gráfico en blanco') >>> ax.set_xlabel('Etiqueta para el eje X') Text(0.5, 0, 'Etiqueta para el eje X') >>> ax.set_ylabel('Etiqueta para el eje Y') Text(0, 0.5, 'Etiqueta para el eje Y') >>> fig
```
![Etiquetas en ejes](images/matplotlib/axis-labels.png)
### Ejes { #axis } Un marco (2D) está compuesto por dos ejes: eje X e eje Y. Podemos acceder a cada eje mediante sendos atributos: ```pycon >>> ax.xaxis >>> ax.yaxis ``` #### Rejilla { #grid } En cada eje podemos activar o desactivar la rejilla, así como indicar su estilo. En primer lugar vamos a activar la rejilla en ambos ejes: ```pycon >>> ax.xaxis.grid(True) >>> ax.yaxis.grid(True) ``` :material-check-all:{ .blue } Esto sería equivalente a `#!python ax.grid(True)`. Y obtendríamos una figura con la rejilla (por defecto): ![Rejilla por defecto](images/matplotlib/default-grid.png) !!! tip "Interruptores" Las funciones de matplotlib que actúan como «interruptores» tienen por defecto el valor verdadero. En este sentido `ax.grid()` invocada sin parámetros hace que se muestre la rejilla. Esto se puede aplicar a muchas otras funciones. Supongamos ahora que queremos personalizar la rejilla[^2] con **estilos diferentes en cada eje**: ```pycon >>> ax.xaxis.grid(color='r', linestyle='-')#(1)! >>> ax.yaxis.grid(color='b', linestyle='-')#(2)! ``` { .annotate } 1. Equivale a `#!python color='red', linestyle='solid` 2. Equivale a `#!python color='blue', linestyle='solid`
![Rejilla en azul y rojo](images/matplotlib/bluered-grid.png)
#### Marcas { #marks } Por defecto, los ejes del marco tienen unas marcas[^3] equiespaciadas que constituyen las _marcas mayores_. Igualmente existen unas _marcas menores_ que, a priori, no están activadas. Ambos elementos son susceptibles de modificarse. Veamos un ejemplo:material-flash: en el que establecemos las **marcas menores con distinto espaciado en cada eje** y además le damos un estilo diferente a cada rejilla: ```pycon >>> from matplotlib.ticker import MultipleLocator >>> ax.xaxis.set_minor_locator(MultipleLocator(0.1))#(1)! >>> ax.yaxis.set_minor_locator(MultipleLocator(0.05))#(2)! >>> ax.xaxis.grid(which='minor', linestyle='dashed', color='gray') >>> ax.yaxis.grid(which='minor', linestyle='dashed', color='lightskyblue') ``` { .annotate } 1. Eje X: Separación cada 0.1 unidades. 2. Eje Y: Separación cada 0.05 unidades.
![Marcas menores](images/matplotlib/minor-ticks.png)
También es posible asignar etiquetas a las marcas menores. En ese sentido, veremos un ejemplo:material-flash: en el que incorporamos los **valores a los ejes con estilos propios**: - Marcas menores en el eje X: precisión de 1 decimal, tamaño de letra 8 y color gris. - Marcas menores en el eje Y: precisión de 2 decimales, tamaño de letra 8 y color azul. ```pycon >>> # Eje X >>> ax.xaxis.set_minor_formatter('{x:.1f}') >>> ax.tick_params(axis='x', which='minor', labelsize=8, labelcolor='gray') >>> # Eje Y >>> ax.yaxis.set_minor_formatter('{x:.2f}') >>> ax.tick_params(axis='y', which='minor', labelsize=8, labelcolor='lightskyblue') ```
![Etiquetas en marcas](images/matplotlib/label-ticks.png)
## Primeros pasos { #first-steps } Vamos a empezar por representar la función $f(x) = sin(x)$ . Para ello crearemos una variable con valores flotantes equidistantes y una variable aplicando la función senoidal. Nos apoyamos en [NumPy](numpy.md) para ello. A continuación usaremos la función `plot()` del marco para representar la función creada: ```pycon >>> x = np.linspace(0, 2 * np.pi) >>> y = np.sin(x) >>> fig, ax = plt.subplots() >>> ax.plot(x, y) [] ```
![Gráfico sin](images/matplotlib/plot-sin.png)
### Múltiples funciones { #nplots } Partiendo de un mismo marco, es posible graficar todas las funciones que necesitemos. A continuación crearemos un marco con las funciones seno y coseno: ```pycon >>> x = np.linspace(0, 2 * np.pi) >>> sin = np.sin(x) >>> cos = np.cos(x) >>> fig, ax = plt.subplots() >>> ax.plot(x, sin) [] >>> ax.plot(x, cos) [] ```
![Gráfico sin y cos](images/matplotlib/plot-sincos.png)
!!! tip "Colores" Los colores «auto» asignados a las funciones siguen un [ciclo establecido por matplotlib](https://matplotlib.org/stable/users/dflt_style_changes.html#colors-in-default-property-cycle) que es igualmente personalizable. ### Leyenda { #legend } En el caso de que tengamos múltiples gráficos en el mismo marco puede ser deseable mostrar una leyenda identificativa. Para usarla necesitamos asignar etiquetas a cada función. Veamos a continuación cómo incorporar una leyenda: ```pycon >>> ax.plot(x, sin, label='sin') [] >>> ax.plot(x, cos, label='cos') [] >>> ax.legend() ```
![Leyenda](images/matplotlib/plot-legend.png)
Es posible incorporar sintaxis [TeX](https://matplotlib.org/stable/gallery/text_labels_and_annotations/tex_demo.html) en los distintos elementos textuales de matplotlib. En el siguiente ejemplo usaremos esta notación en las etiquetas de las funciones utilizando las marcas `$ ... $` para ello: ```pycon >>> ax.plot(x, sin, label='$f_1(x) = sin(x)$') [] >>> ax.plot(x, cos, label='$f_2(x) = cos(x)$') [] ```
![Leyenda TeX](images/matplotlib/tex-legend.png)
#### Ubicación de la leyenda { #legend-position } Matplotlib intenta encontrar la **mejor ubicación** para la leyenda en el marco. Sin embargo, también es posible [personalizar el lugar en el que queremos colocarla](https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.legend.html). Si nos interesa situar la leyenda en la **parte superior central** del marco haríamos lo siguiente: ```pycon >>> ax.legend(loc='upper center') ```
![Leyenda centrada](images/matplotlib/centering-legend.png)
### Aplicando estilos { #styles } Para cada función que incluimos en el marco es posible establecer un [estilo personalizado con multitud de parámetros](https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.plot.html). Veamos la aplicación de algunos de estos parámetros a las funciones seno y coseno con las que hemos estado trabajando: ```pycon >>> sin_style = dict(linewidth=3, color='darkorange') >>> cos_style = dict(marker='o', markerfacecolor='limegreen', color='darkgreen') >>> ax.plot(x, sin, label='$f_1(x) = sin(x)$', **sin_style) [] >>> ax.plot(x, cos, label='$f_2(x) = cos(x)$', **cos_style) [] ```
![](images/matplotlib/plot-styles.png)
### Acotando ejes { #axis-lim } Hay veces que nos interesa definir los límites de los ejes. En ese caso, podemos hacerlo de una manera muy sencilla: ```pycon >>> ax.set_xlim(0, np.pi / 2) >>> ax.set_ylim(0, 1) >>> ax.grid()#(1)! ``` { .annotate } 1. Sólo a efectos estéticos.
![Límite de ejes](images/matplotlib/axis-lim.png)
!!! tip "Límite completado" También es posible especificar únicamente límite inferior o superior en ambas funciones `set_xlim()` y `set_ylim()`. En ese caso, el otro valor sería ajustado automáticamente por matplotlib. ### Anotaciones { #annotate } En ocasiones necesitamos [añadir ciertas anotaciones al gráfico](https://matplotlib.org/stable/tutorials/text/annotations.html) que estamos diseñando. Esto permite destacar áreas o detalles que pueden ser relevantes. Partiendo de las funciones seno y coseno con las que hemos estado trabajando, vamos a suponer que **queremos obtener sus puntos de corte**, es decir, [resolver la siguiente ecuación](https://www.mathway.com/popular-problems/Precalculus/435071): $$ \begin{align} sin(x) &= cos(x)\\ &\Downarrow\\ x &= \frac{\pi}{4} + \pi n, \ n \in \mathbb{Z} \end{align} $$ Para el caso que nos ocupa haríamos $n=0$ con lo que obtendríamos la siguiente solución: ```pycon >>> xsol = np.pi / 4 + np.pi * 0 >>> ysol = np.sin(xsol) >>> xsol, ysol (0.7853981633974483, 0.7071067811865475) ``` Vamos a insertar una serie de anotaciones en el gráfico: - Flecha en el punto de corte con etiqueta de ecuación. - Coordenadas de solución en el punto de corte. - Proyección del punto de corte hacia ambos ejes. ```pycon >>> ax.annotate('$sin(x) = cos(x)$', ... xy=(xsol, ysol), ... xytext=(1.2, 0.8), ... arrowprops=dict(facecolor='black', shrink=0.05)) >>> ax.text(0.47, 0.72, f'({xsol:.2f}, {ysol:.2f})') >>> ax.plot([xsol, xsol], [0, ysol], color='gray', linestyle='--') >>> ax.plot([0, xsol], [ysol, ysol], color='gray', linestyle='--') ```
![Anotaciones en gráfico](images/matplotlib/plot-annotations.png)
!!! exercise "Ejercicio" Escribe el código Python necesario para recrear el siguiente gráfico:
![Onda suavizada](images/matplotlib/soften-wave.png)
Datos: - $x \in [0, 2\pi]$ (1000 puntos) - $y = e^{-\alpha x} sin(\beta x)$, donde $\alpha = 0.7$ y $\beta = 10$. [:material-lightbulb: Solución](files/matplotlib/soften_wave.py) ## Tipos de gráficos { #plot-types } Mediante matplotlib podemos hacer prácticamente [cualquier tipo de gráfico](https://matplotlib.org/stable/gallery/index.html). En esta sección haremos un repaso por algunos de ellos. ### Gráficos de barras { #barplot } Características del «dataset» con el que vamos a trabajar: - [x] Resultados de los [JJOO de Tokio 2020](https://olympics.com/tokyo-2020/es/). - [x] Fichero: [`medals.xlsx`](files/matplotlib/medals.xlsx) - [x] Fuente: [Kaggle](https://www.kaggle.com/arjunprasadsarkhel/2021-olympics-in-tokyo/version/7?select=Medals.xlsx) En primer lugar cargaremos el fichero en un DataFrame y haremos una pequeña «limpieza»: ```pycon >>> df = pd.read_excel('medals.xlsx')#(1)! >>> df.head() Rank Team/NOC Gold Silver Bronze Total Rank by Total 0 1 United States of America 39 41 33 113 1 1 2 People's Republic of China 38 32 18 88 2 2 3 Japan 27 14 17 58 5 3 4 Great Britain 22 21 22 65 4 4 5 ROC 20 28 23 71 3 >>> df.rename(columns={'Team/NOC': 'Country'}, inplace=True) >>> df.set_index('Country', inplace=True) >>> df.head() Rank Gold Silver Bronze Total Rank by Total Country United States of America 1 39 41 33 113 1 People's Republic of China 2 38 32 18 88 2 Japan 3 27 14 17 58 5 Great Britain 4 22 21 22 65 4 ROC 5 20 28 23 71 3 ``` { .annotate } 1. Para la carga de ficheros Excel, es necesario instalar un paquete adicional denominado [OpenPyXL](https://openpyxl.readthedocs.io/en/stable/). Ahora ya podemos centrarnos en el diseño del gráfico de barras: ```pycon >>> fig, ax = plt.subplots(figsize=(8, 5), dpi=100)#(1)! >>> bar_width = 0.30 >>> x = np.arange(df_best.index.size) >>> golden_medals = ax.bar(x - bar_width, df_best['Gold'], ... bar_width, label='Oro', color='#ffd700') >>> silver_medals = ax.bar(x, df_best['Silver'], ... bar_width, label='Plata', color='#aaa9ad') >>> bronze_medals = ax.bar(x + bar_width, df_best['Bronze'], ... bar_width, label='Bronce', color='#cd7f32') >>> ax.set_xticks(x) >>> ax.set_xticklabels(df_best.index, rotation=90) >>> ax.legend() >>> # Etiquetas en barras >>> ax.bar_label(golden_medals, padding=3) >>> ax.bar_label(silver_medals, padding=3) >>> ax.bar_label(bronze_medals, padding=3) >>> ax.spines['right'].set_visible(False)#(2)! >>> ax.spines['top'].set_visible(False)#(3)! >>> fig.tight_layout()#(4)! >>> fig ``` { .annotate } 1. 800x500 px 2. Ocultar el borde derecho. 3. Ocultar el border superior. 4. Ajustar elementos al tamaño de la figura.
![Gráfico de barras](images/matplotlib/gbar-plot.png)
!!! exercise "Ejercicio" Características del «dataset» con el que vamos a trabajar: - [x] Valoraciones de los lenguajes de programación más utilizados durante 2020. - [x] Fichero: [`tiobe-2020-clean.csv`](files/matplotlib/tiobe-2020-clean.csv) - [x] Fuente: [TIOBE](https://www.tiobe.com/tiobe-index/) Recrea el siguiente gráfico:
![Gráfico de barras TIOBE](images/matplotlib/barplot-tiobe.png)
[:material-lightbulb: Solución](files/matplotlib/tiobe_2020.py) ### Gráficos de dispersión { #scatterplot } Características del «dataset» con el que vamos a trabajar: - [x] Estadísticas de jugadores de la NBA[^4] desde 1996 hasta 2019. - [x] Fichero: [`nba-data.csv`](files/matplotlib/nba-data.csv) - [x] Fuente: [Kaggle](https://www.kaggle.com/justinas/nba-players-data) En primer lugar cargamos los datos y nos quedamos con un subconjunto de las columnas: ```pycon >>> df = pd.read_csv('nba-data.csv', usecols=['pts', 'reb', 'ast']) >>> df.head() pts reb ast 0 4.8 4.5 0.5 1 0.3 0.8 0.0 2 4.5 1.6 0.9 3 7.8 4.4 1.4 4 3.7 1.6 0.5 >>> df.shape (11700, 3) ``` El objetivo es crear un **gráfico de dispersión en el relacionaremos los puntos anotados con los rebotes capturados, así como las asistencias dadas**: ```pycon >>> fig, ax = plt.subplots(figsize=(8, 6), dpi=100)#(1)! >>> x = df['pts']#(2)! >>> y = df['reb']#(3)! >>> colors = df['ast'] >>> p = ax.scatter(x, y, ... s=30,#(4)! ... c=colors, cmap='RdBu_r',#(5)! ... vmin=colors.min(), vmax=colors.max(),#(6)! ... alpha=0.7, ... edgecolors='none') >>> cb = fig.colorbar(p, ax=ax, label='Asistencias', extend='max')#(7)! >>> cb.outline.set_visible(False) >>> ax.set_xlabel('Puntos') >>> ax.set_ylabel('Rebotes') >>> ax.spines['right'].set_visible(False) >>> ax.spines['top'].set_visible(False) >>> fig.tight_layout() ``` { .annotate } 1. 800x600 px 2. Variable auxiliar $x$. 3. Variable auxiliar $y$. 4. Tamaño de puntos 30. 5. Colores azul y rojo. 6. Normalización de colores con `vmin` y `vmax`. 7. Barra de colores.
![NBA gráfico difusión](images/matplotlib/nba-scatter-plot.png)
Del gráfico anterior cabe destacar un par de aspectos: - **Normalización**: Cuando aplicamos una estética de color al gráfico basada en los datos de una variable, debemos normalizar dicha variable en el [mapa de color («colormap»)](https://matplotlib.org/stable/gallery/color/colormap_reference.html) que elijamos. Para ello, matplotlib nos ofrece la [normalización de mapas de color](https://matplotlib.org/stable/tutorials/colors/colormapnorms.html). En el caso concreto de `scatter()` pasaríamos esta normalización mediante el parámetro `norm` pero también podemos usar los parámetros `vmin` y `vmax`. - **Barra de color**: Se trata de una leyenda particular en la que mostramos el gradiente de color vinculado a una determinada estética/variable del gráfico. Matplotlib también nos permite personalizar estas [barras de color](https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.colorbar.html). !!! example "Ejemplo" Características del «dataset» con el que vamos a trabajar: - [x] Información sobre vehículos de la marca BMW[^5] - [x] Fichero: [`bmw-clean.csv`](files/matplotlib/bmw-clean.csv) - [x] Fuente: [Kaggle](https://www.kaggle.com/mysarahmadbhat/bmw-used-car-listing) Recrea el siguiente gráfico:
![Dispersión BMW](images/matplotlib/scatter-bmw.png)
El mapa de color que se ha usado es `plasma_r`. [:material-lightbulb: Solución](files/matplotlib/bmw_plot.py) ### Histogramas { #histograms } Características del «dataset» con el que vamos a trabajar: - [x] Información sobre «Avengers»[^6]. - [x] Fichero: [`avengers.csv`](files/matplotlib/avengers.csv) - [x] Fuente: [Kaggle](https://www.kaggle.com/mysarahmadbhat/avengers-marvel) Como punto de partida vamos a cargar la información y a quedarnos únicamente con la columna que hace referencia al año en el que se crearon los personajes: ```pycon >>> df = pd.read_csv('avengers.csv', usecols=['Year']) >>> df.head() Year 0 1963 1 1963 2 1963 3 1963 4 1963 >>> df.shape (173, 1) ``` Igualmente haremos un pequeño filtrado para manejar sólo registros a partir de 1960: ```pycon >>> df = df[df['Year'] >= 1960] >>> df.shape (159, 1) ``` Ahora ya podemos construir el histograma, que va a representar las **frecuencias absolutas de creación de personajes Marvel según su año de creación**. Aunque es posible indicar un número determinado de contenedores («bins»), en este caso vamos a especificar directamente los intervalos (cada 5 años): ```pycon >>> df['Year'].min(), df['Year'].max() (1963, 2015) >>> bins = range(1960, 2021, 5) ``` Y a continuación el código necesario para montar el gráfico: ```pycon >>> fig, ax = plt.subplots(figsize=(8, 4), dpi=100)#(1)! >>> ax.hist(df, ... bins=bins,#(2)! ... rwidth=0.95,#(3)! ... zorder=2,#(4)! ... color='deeppink', ... alpha=0.5) >>> ax.spines['right'].set_visible(False) >>> ax.spines['top'].set_visible(False) >>> ax.set_xticks(bins)#(5)! >>> ax.yaxis.grid(color='lightgray', linestyle='--')#(6)! >>> fig.tight_layout() ``` { .annotate } 1. 800x400 px 2. Intervalos de agrupación. 3. Ancho de cada barra. 4. Barras por encima de la rejilla. 5. Etiquetas de intervalos en el eje X. 6. Rejilla.
![Histograma Vengadores](images/matplotlib/avengers-plot.png)
!!! note "Aclaración" Técnicamente este gráfico no es un histograma ya que los años (fechas en general) no representan categorías válidas, pero sirve a efectos demostrativos de cómo se construyen este tipo de diagramas. !!! exercise "Ejercicio" Características del «dataset» con el que vamos a trabajar: - [x] Datos sobre criaturas «Pokemon»[^7]. - [x] Fichero: [`pokemon.csv`](files/matplotlib/pokemon.csv) - [x] Fuente: [Kaggle](https://www.kaggle.com/arjunprasadsarkhel/2021-olympics-in-tokyo/version/7?select=Medals.xlsx) Recrea el siguiente gráfico:
![Histograma pokemon](images/matplotlib/hist-pokemon-speed.png)
Número de criaturas («pokemos») en función de su velocidad (columna _Speed_). [:material-lightbulb: Solución](files/matplotlib/pokemon_speed.py) ### Gráficos para series temporales { #temp-series } Características del «dataset» con el que vamos a trabajar: - [x] Información histórica de temperaturas del planeta Tierra. - [x] Fichero: [`global-temperatures.csv`](files/matplotlib/global-temperatures.csv) - [x] Fuente: [Kaggle](https://www.kaggle.com/berkeleyearth/climate-change-earth-surface-temperature-data?select=GlobalTemperatures.csv) En primer lugar cargamos los datos, renombramos las columnas y eliminamos los valores nulos: ```pycon >>> df = pd.read_csv('global-temperatures.csv', ... parse_dates=['dt'],#(1)! ... usecols=['dt', 'LandAverageTemperature']) >>> df.rename(columns={'dt': 'when', 'LandAverageTemperature': 'temp'}, inplace=True) >>> df.dropna(inplace=True) >>> df.head() when temp 0 1750-01-01 3.034 1 1750-02-01 3.083 2 1750-03-01 5.626 3 1750-04-01 8.490 4 1750-05-01 11.573 >>> df.shape (3180, 2) ``` { .annotate } 1. Conversión a tipo `datetime`. A continuación montamos un gráfico en el que se representan todas las **mediciones históricas de la temperatura media global del planeta** y añadimos una línea de tendencia: ```pycon >>> from matplotlib.dates import YearLocator, DateFormatter, date2num#(1)! >>> from matplotlib.ticker import MultipleLocator >>> fig, ax = plt.subplots(figsize=(8, 4), dpi=100)#(2)! >>> x = df.when#(3)! >>> y = df.temp#(4)! >>> ax.plot(x, y, ... linestyle='None', marker='.', color='tomato',#(5)! ... zorder=2)#(6)! >>> # Construcción de la línea de tendencia >>> x = date2num(x) >>> z = np.polyfit(x, y, 2)#(7)! >>> p = np.poly1d(z) >>> plt.plot(x, p(x), linewidth=4, alpha=0.8, color='royalblue') >>> # Formateo de los ejes >>> ax.xaxis.set_minor_locator(YearLocator(10)) >>> ax.xaxis.set_minor_formatter(DateFormatter('%Y')) >>> ax.tick_params(axis='x', which='minor', ... labelsize=8, labelcolor='lightgray', rotation=90) >>> ax.xaxis.grid(which='minor', color='lightgray', linestyle='dashed') >>> ax.yaxis.set_major_formatter('{x:.0f}º') >>> ax.yaxis.set_minor_locator(MultipleLocator(1)) >>> ax.tick_params(axis='y', which='minor', ... labelsize=8, labelcolor='lightgray') >>> ax.yaxis.grid(which='minor', linestyle='dashed', color='lightgray') >>> ax.yaxis.set_minor_formatter('{x:.0f}') >>> ax.tick_params(axis='y', which='minor', labelsize=8, labelcolor='lightgray') >>> ax.spines['right'].set_visible(False) >>> ax.spines['top'].set_visible(False) >>> fig.tight_layout() ``` { .annotate } 1. Necesitamos algunas utilidades de gestión de fechas. 2. 800x400 px 3. Variable auxiliar $x$. 4. Variable auxiliar $y$. 5. Estilo de línea. 6. Orden para colocar sobre rejilla. 7. Ajuste polinómico de grado 2.
![Serie temporal Temperaturas](images/matplotlib/global-temperatures.png)
### Mapas de calor { #heatmaps } Características del «dataset» con el que vamos a trabajar: - [x] Películas más valoradas en IMBD[^8]. - [x] Fichero: [`imdb-top-1000.csv`](files/matplotlib/imdb-top-1000.csv) - [x] Fuente: [Kaggle](https://www.kaggle.com/harshitshankhdhar/imdb-dataset-of-top-1000-movies-and-tv-shows) En primer lugar vamos a cargar los datos quedándonos con las columnas _Certificate_ (clasificación de la película según edades), _Genre_ (géneros de la película) e _IMDB_Rating_ (valoración de la película en IMDB): ```pycon >>> df = pd.read_csv('imdb-top-1000.csv', ... usecols=['Certificate', 'Genre', 'IMDB_Rating']) >>> df.head() Certificate Genre IMDB_Rating 0 A Drama 9.3 1 A Crime, Drama 9.2 2 UA Action, Crime, Drama 9.0 3 A Crime, Drama 9.0 4 U Crime, Drama 9.0 ``` Ahora creamos una nueva columna en el DataFrame donde guardaremos únicamente el género principal de cada película: ```pycon >>> df['Main_Genre'] = df['Genre'].str.split(',', expand=True)[0] >>> df.head() Certificate Genre IMDB_Rating Main_Genre 0 A Drama 9.3 Drama 1 A Crime, Drama 9.2 Crime 2 UA Action, Crime, Drama 9.0 Action 3 A Crime, Drama 9.0 Crime 4 U Crime, Drama 9.0 Crime ``` A continuación agrupamos y obtenemos los valores medios de las valoraciones: ```pycon >>> ratings = df.groupby( ... ['Certificate', 'Main_Genre'] ... )['IMDB_Rating'].mean().unstack()#(1)! >>> # Nos quedamos con un subconjunto de certificados y géneros >>> review_certificates = ['U', 'UA', 'PG-13', 'R', 'A'] >>> review_genres = ['Animation', 'Action', 'Adventure', 'Biography', ... 'Comedy', 'Crime', 'Drama'] >>> ratings = ratings.loc[review_certificates, review_genres] >>> # Recodificamos los certificados (clasificación) con códigos más entendibles >>> certs_description = {'U': 'ALL', 'UA': '>12', 'PG-13': '>13', 'R': '>17', 'A': '>18'} >>> ratings.index = ratings.reset_index()['Certificate'].replace(certs_description) >>> ratings Main_Genre Animation Action Adventure Biography Comedy Crime Drama Certificate ALL 7.947368 8.165000 7.953571 7.862500 7.940541 8.200000 7.976364 >12 7.883333 7.992424 7.958333 7.971429 7.885714 7.900000 7.953659 >13 7.866667 7.783333 7.600000 7.862500 7.785714 8.000000 7.775000 >17 7.800000 7.812500 7.900000 7.900000 7.824138 7.814286 7.915094 >18 7.866667 7.873171 7.912500 8.017647 7.877778 8.130233 8.036364 ``` { .annotate } 1. `unstack()` permite disponer la agrupación en forma tabular (para el _heatmap_). Ahora ya podemos construir el mapa de calor usando el DataFrame `ratings` generado previamente: ```pycon >>> fig, ax = plt.subplots(figsize=(8, 4), dpi=100) >>> text_colors = ('black', 'white') >>> im = ax.imshow(ratings, cmap='Reds')#(1)! >>> cbar = fig.colorbar(im, ax=ax, label='IMDB Rating')#(2)! >>> cbar.outline.set_visible(False) >>> x = ratings.columns >>> y = ratings.index >>> # Mostrar las etiquetas. El color del texto cambia en función de su normalización >>> for i in range(len(y)): ... for j in range(len(x)): ... value = ratings.iloc[i, j] ... text_color = text_colors[int(im.norm(value) > 0.5)]#(3)! ... ax.text(j, i, f'{value:.2f}', color=text_color, va='center', ha='center') >>> # Formateo de los ejes >>> ax.set_xticks(range(len(x))) >>> ax.set_xticklabels(x, rotation=90) >>> ax.set_yticks(range(len(y))) >>> ax.set_yticklabels(y) >>> ax.invert_yaxis() >>> ax.spines[:].set_visible(False) >>> fig.tight_layout() ``` { .annotate } 1. Mapa de calor. 2. Leyenda. 3. Color de la etiqueta.
![Mapa de calor IMDB](images/matplotlib/imdb-heatmap.png)
!!! exercise "Ejercicio" Características del «dataset» con el que vamos a trabajar: - [x] Información sobre el cambio euro-dólar entre 1999 y 2020. - [x] Fichero: [`euro-dollar-clean.csv`](files/matplotlib/euro-dollar-clean.csv) - [x] Fuente: [Kaggle](https://www.kaggle.com/datasets/lsind18/euro-exchange-daily-rates-19992020) Recrea el siguiente gráfico:
![Euro-dollar Cambio Mapa de calor](images/matplotlib/heatmap-eurodollar.png)
[:material-lightbulb: Solución](files/matplotlib/euro_dollar.py) ### Diagramas de caja { #boxplot } Un diagrama de caja permite mostrar la distribución de los valores de manera rápida y muy visual: ![Dark image](images/matplotlib/boxplot-anatomy-dark.svg#only-dark) ![Light image](images/matplotlib/boxplot-anatomy-light.svg#only-light) Para mostrar el funcionamiento de los diagramas de caja en Matplotlib vamos a hacer uso de distintas distribuciones aleatorias que crearemos mediante funciones de [NumPy](numpy.md): ```pycon >>> DIST_SIZE = 100#(1)! >>> boxplots = [] >>> boxplots.append(dict( ... dist=np.random.normal(0, 1, size=DIST_SIZE), ... label='Normal\n$\mu=0, \sigma=1$', ... fill_color='pink', ... brush_color='deeppink')) >>> boxplots.append(dict( ... dist=np.random.geometric(0.4, size=DIST_SIZE), ... label='Geometric\n$p=0.4$', ... fill_color='lightblue', ... brush_color='navy')) >>> boxplots.append(dict( ... dist=np.random.chisquare(2, size=DIST_SIZE), ... label='Chi-squared\n$df=2$', ... fill_color='lightgreen', ... brush_color='darkgreen')) ``` { .annotate } 1. Tamaño de la muestra. Ahora ya podemos construir el gráfico de cajas que nos permite visualizar la distribución de las muestras: ```pycon >>> fig, ax = plt.subplots(figsize=(8, 6), dpi=100)#(1)! >>> for i, boxplot in enumerate(boxplots): ... fcolor, bcolor = boxplot['fill_color'], boxplot['brush_color'] ... ax.boxplot(boxplot['dist'], ... labels=[boxplot['label']], ... positions=[i], ... widths=[.3], ... notch=True, ... patch_artist=True, ... boxprops=dict(edgecolor=bcolor, ... facecolor=fcolor, ... linewidth=2), ... capprops=dict(color=bcolor, linewidth=2), ... flierprops=dict(color=bcolor, ... markerfacecolor=fcolor, ... linestyle='none', ... markeredgecolor='none', ... markersize=9), ... medianprops=dict(color=bcolor), ... whiskerprops=dict(color=bcolor, ... linewidth=1)) >>> ax.yaxis.grid(color='lightgray') >>> ax.xaxis.set_ticks_position('none') >>> ax.yaxis.set_ticks_position('none') >>> ax.spines[:].set_visible(False) >>> fig.tight_layout() ``` { .annotate } 1. 800x600 px
![Diagrama de caja](images/matplotlib/dist-boxplot.png)
!!! tip "Complicaciones en código" El código para preparar el gráfico se ha complicado porque se ha incidido en mejorar la estética. En cualquier caso, una vez hecho, se puede refactorizar en una función y reutilizarlo para futuros trabajos. ### Gráficos de evolución { #evolution-plots } Características del «dataset» con el que vamos a trabajar: - [x] Evolución temporal de la criptomoneda «Ethereum» (volumen, precio). - [x] Fichero: [`eth-usd.csv`](files/matplotlib/eth-usd.csv) - [x] Fuente: [Kaggle](https://www.kaggle.com/varpit94/ethereum-data) El objetivo será crear un **gráfico que represente el valor de la criptomoneda (a lo largo del tiempo) en contraposición al volumen de unidades**. Lo primero que haremos, además de cargar los datos, será lo siguiente: - Seleccionar las columnas _Date_ (fecha de referencia), _Open_ (precio de la moneda a la apertura) y _Volume_ (volumen de moneda). - Parsear el campo fecha. - Filtrar sólo aquellos registros a partir del 1 de enero de 2017 (por simplicidad). - Dividir la columna de volumen por 10M de cara a equiparar cantidades con la valoración (ajuste de gráfico). - Aplicar una _media móvil_ para suavizar las curvas a representar. ```pycon >>> import datetime >>> df = pd.read_csv('eth-usd.csv', ... parse_dates=['Date'], ... usecols=['Date', 'Open', 'Volume'], ... index_col='Date') >>> min_date = datetime.datetime(year=2017, month=1, day=1) >>> df = df.loc[df.index > min_date] >>> df['Volume'] /= 1e7 >>> df_smooth = df.rolling(20).mean().dropna() >>> df_smooth.head() Open Volume Date 2017-01-21 9.968611 2.146882 2017-01-22 10.105573 2.117377 2017-01-23 10.222339 1.985587 2017-01-24 10.273270 1.821968 2017-01-25 10.239854 1.647938 ``` Ahora ya podemos montar el gráfico dedicando algo de esfuerzo a la parte estética: ```pycon >>> fig, ax = plt.subplots(figsize=(8, 4), dpi=100)#(1)! >>> # Alias para facilitar el acceso >>> x = df_smooth.index >>> y_open = df_smooth['Open'] >>> y_vol = df_smooth['Volume'] >>> # Líneas de evolución >>> ax.plot(x, y_open, label='Value ($)', color='skyblue', linewidth=1.5) >>> ax.plot(x, -y_vol, label='Volume (10M ud.)', color='pink', linewidth=1.5) >>> # Relleno del área >>> plt.fill_between(x, y_open, alpha=0.5, color='skyblue', zorder=3) >>> plt.fill_between(x, -y_vol, alpha=0.5, color='pink', zorder=3) >>> # Formateo de los ejes >>> ax.xaxis.set_ticks_position('none') >>> ax.yaxis.set_ticks_position('none') >>> y_ticks = [-4000, -2000, 0, 2000, 4000] >>> y_tick_labels = ['4000', '2000', '0', '2000', '4000'] >>> ax.set_yticks(y_ticks) >>> ax.set_yticklabels(y_tick_labels) >>> ax.set_ylim(-6000, 6000) >>> # Rejilla >>> ax.xaxis.grid(color='lightgray', linewidth=.5) >>> for y_tick in y_ticks: ... if y_tick != 0: ... ax.axhline(y_tick, color='lightgray', linewidth=.5) >>> ax.legend() >>> ax.spines[:].set_visible(False) >>> fig.tight_layout() ``` { .annotate } 1. 800x400 px
![Evolución Ethereum](images/matplotlib/eth-evolution.png)
!!! exercise "Ejercicio" Características del «dataset» con el que vamos a trabajar: - [x] Precio de la energía en España durante el año 2021. - [x] Fichero: [`mwh-spain-2021-clean.csv`](files/matplotlib/mwh-spain-2021-clean.csv) - [x] Fuente: [Kaggle](https://www.epdata.es/datos/precio-factura-luz-datos-estadisticas/594) Recrea el siguiente gráfico:
![Precio MWh](images/matplotlib/mwh-spain-2021.png)
- Eje X: Tiempo (las marcas tienen una separación de 10 días). - Eje Y: Precio del MWh[^9]. [:material-lightbulb: Solución](files/matplotlib/mwh_spain.py) [^1]: Se suele usar el término inglés «inches». [^2]: [Parámetros disponibles para creación del grid](https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.grid.html) | [Listado de nombres de colores en matplotlib](https://matplotlib.org/stable/gallery/color/named_colors.html) | [Estilos de línea en matplotlib](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html) [^3]: Se suele usar el término inglés «ticks». [^4]: [NBA](https://nba.com) :material-arrow-right-bold: National Basketball League (liga estadounidense de baloncesto). [^5]: [BMW](https://bmw.es) :material-arrow-right-bold: Fabricante alemán de automóviles y motocicletas. [^6]: [Los Vengadores](https://es.wikipedia.org/wiki/Los_Vengadores) :material-arrow-right-bold: Equipo de superhéroes publicados por Marvel Comics. [^7]: [Pokemon](https://www.pokemon.com/es) :material-arrow-right-bold: Franquicia de medios que originalmente comenzó como un videojuego RPG, pero debido a su popularidad ha logrado expandirse a otros medios de entretenimiento como series de televisión, películas, juegos de cartas, ropa, entre otros, convirtiéndose en una marca que es reconocida en el mercado mundial. [^8]: [IMDB](https://www.imdb.com/) :material-arrow-right-bold: Reconocida página web que contiene valoraciones sobre películas y series. [^9]: Mega Watio Hora (medida de consumo de energía). ================================================ FILE: docs/third-party/data-science/numpy.md ================================================ --- icon: simple/numpy tags: - Paquetes de terceros - Ciencia de datos - NumPy --- # NumPy { #numpy } ![Banner](images/numpy/banner.jpg) ///caption Imagen generada con Inteligencia Artificial /// [`numpy`](https://numpy.org/) es el paquete fundamental para computación científica en Python y manejo de arrays numéricos multi-dimensionales. ## Instalación { #install } ```console pip install numpy ``` ## Modo de uso { #usage } La forma más habitual de importar esta librería es utilizar el alias `np`: ```pycon >>> import numpy as np ``` ## ndarray { #ndarray } En el núcleo de NumPy está el `ndarray`, donde «nd» es por n-dimensional. Un «ndarray» es un array multidimensional de **elementos del mismo tipo**. Aquí tenemos una diferencia fundamental con las [listas](../../core/datastructures/lists.md) en Python que pueden mantener objetos heterogéneos. Y esta característica propicia que el rendimiento de un ndarray sea bastante mejor que el de una lista convencional. Para crear un array podemos usar el constructo `np.array()` que recibe un ^^iterable^^: ```pycon >>> import numpy as np >>> x = np.array([1, 2, 3, 4, 5])#(1)! >>> x array([1, 2, 3, 4, 5]) >>> type(x) ``` { .annotate } 1. Otros ejemplos de construcción con iterables: ```pycon >>> np.array('abcde') array('abcde', dtype='>> np.array(range(10)) array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]) ``` Podemos obtener información sobre el array creado: ```pycon >>> x.ndim#(1)! 1 >>> x.size#(2)! 5 >>> x.shape#(3)! (5,) >>> x.dtype#(4)! dtype('int64') ``` { .annotate } 1. Dimension del array. 2. Tamaño total del array (número de elementos). 3. Forma (espacial) del array. 4. Tipo de los elementos del array. ### Datos heterogéneos { #het-ndarray } Hemos dicho que los «ndarray» son estructuras de datos que almacenan un único tipo de datos. A pesar de esto, es posible crear un array con los siguientes valores: ```pycon >>> x = np.array([4, 'Einstein', 1e-7]) ``` Aunque, a priori, puede parecer que estamos mezclando tipos enteros, flotantes y cadenas de texto, lo que realmente se produce (de forma implícita) es una coerción[^1] de tipos a [Unicode](../../core/datatypes/strings.md#unicode): ```pycon >>> x#(1)! array(['4', 'Einstein', '1e-07'], dtype='>> a = np.array(range(10)) >>> a array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]) >>> a.dtype dtype('int64') ``` Sin embargo podemos especificar el tipo de datos que nos interese: ```pycon >>> a = np.array(range(10), dtype='int32') >>> a array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9], dtype=int32) >>> a.dtype dtype('int32') ``` Lo mismo ocurre con **valores flotantes**, donde `float64` es el tipo de datos por defecto. Es posible convertir el tipo de datos que almacena un array mediante el método `astype`: ```pycon hl_lines="4" >>> a array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]) >>> b = a.astype(float) >>> b array([0., 1., 2., 3., 4., 5., 6., 7., 8., 9.]) >>> b.dtype dtype('float64') ``` ### Arrays vs. listas { #arrays-vs-lists } Como ya se ha comentado en la introducción de esta sección, el uso de `ndarray` frente a `list` está justificado por cuestiones de rendimiento. Pero veamos un ejemplo:material-flash: clarificador en el que sumamos 10 millones de valores enteros: ```pycon >>> array_as_list = list(range(10_000_000)) >>> array_as_ndarray = np.array(array_as_list) >>> %timeit sum(array_as_list) 27.5 ms ± 24 μs per loop (mean ± std. dev. of 7 runs, 10 loops each) >>> %timeit array_as_ndarray.sum() 1.29 ms ± 2.81 μs per loop (mean ± std. dev. of 7 runs, 1,000 loops each) >>> 27.5 // 1.29 21.0 ``` Utilizar `ndarray` frente a `list` (en este contexto) es 21 veces más rápido :fontawesome-regular-face-surprise: En cualquier caso, existe la posibilidad de **convertir a lista** cualquier «ndarray» mediante el método `tolist()`: ```pycon >>> a array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]) >>> a.tolist() [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] ``` ### Matrices { #matrix } Una matriz no es más que un **array bidimensional**. Como ya se ha comentado, NumPy provee `ndarray` que se comporta como un array multidimensional con lo que podríamos crear una matriz sin mayor problema. Veamos un ejemplo en el que tratamos de construir con NumPy la siguiente matriz: $$ M= \begin{bmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \\ 7 & 8 & 9 \\ 10 & 11 & 12 \end{bmatrix} $$ Nos apoyamos en una [lista de listas](../../core/datastructures/lists.md#list-of-lists) para la creación de la matriz: ```pycon >>> M = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12]]) >>> M array([[ 1, 2, 3], [ 4, 5, 6], [ 7, 8, 9], [10, 11, 12]]) >>> M.ndim#(1)! 2 >>> M.size#(2)! 12 >>> M.shape#(3)! (4, 3) >>> M.dtype#(4)! dtype('int64') ``` { .annotate } 1. Se trata de una matrix :material-arrow-right-bold: array bidimensional. 2. Hay 12 elementos en total. 3. 4 filas :octicons-x-24: 3 columnas. 4. Los valores de la matriz son números enteros. !!! exercise "Ejercicio" Crea los siguientes arrays en NumPy: $$ (I)\quad \begin{bmatrix} 88 & 23 & 39 & 41 \end{bmatrix} $$ $$ (II)\quad \begin{bmatrix} 76.4 & 21.7 & 38.4 \\ 41.2 & 52.8 & 68.9 \end{bmatrix} $$ $$ (III)\quad \begin{bmatrix} 12 \\ 4 \\ 9 \\ 8 \end{bmatrix} $$ Encuentra igualmente las siguientes características de cada uno de ellos: dimensión, tamaño, forma y tipo de sus elementos. [:material-lightbulb: Solución](files/numpy/np_matrix.py) #### Cambiando la forma { #reshape } Dado un array, podemos cambiar su forma mediante la función `np.reshape()`: ```pycon >>> np.array(range(1, 13)).reshape(3, 4)#(1)! array([[ 1, 2, 3, 4], [ 5, 6, 7, 8], [ 9, 10, 11, 12]]) ``` { .annotate } 1. 3 filas :octicons-x-24: 4 columnas. Si sólo queremos especificar un número determinado de filas o columnas, podemos dejar la otra dimensión a -1: ```pycon >>> np.array(range(1, 13)).reshape(6, -1)#(1)! array([[ 1, 2], [ 3, 4], [ 5, 6], [ 7, 8], [ 9, 10], [11, 12]]) >>> np.array(range(1, 13)).reshape(-1, 3)#(2)! array([[ 1, 2, 3], [ 4, 5, 6], [ 7, 8, 9], [10, 11, 12]]) ``` { .annotate } 1. 6 filas :octicons-x-24: el número de columnas necesarias. 1. 3 columnas :octicons-x-24: el número de filas necesarias. !!! warning "Dimensión incorrecta" En el caso de que no exista posibilidad de cambiar la forma del array por el número de filas y/o columnas especificado, obtendremos un error de tipo `ValueError: cannot reshape array`. ### Persistiendo arrays { #persist-arrays } Es posible que nos interese guardar de forma persistente los arrays que hemos ido creando. Para ello NumPy nos provee —al menos— de dos formatos: === "Binario :octicons-file-binary-16:" El método `save()` almacena la estructura de datos en [formato NPY](https://numpy.org/devdocs/reference/generated/numpy.lib.format.html). ```pycon title="Volcado" >>> M array([[ 1, 2, 3], [ 4, 5, 6], [ 7, 8, 9], [10, 11, 12]]) >>> np.save('my_matrix', M) >>> !file my_matrix.npy my_matrix.npy: NumPy data file, version 1.0, description {'descr': '>> M_reloaded = np.load('my_matrix.npy') >>> M_reloaded array([[ 1, 2, 3], [ 4, 5, 6], [ 7, 8, 9], [10, 11, 12]]) ``` === "Texto plano :fontawesome-solid-file-csv:" El método `savetxt()` almacena la estructura de datos en [formato CSV](https://es.wikipedia.org/wiki/Valores_separados_por_comas). ```pycon title="Volcado" >>> M array([[ 1, 2, 3], [ 4, 5, 6], [ 7, 8, 9], [10, 11, 12]]) >>> np.savetxt('my_matrix.csv', M)#(1)! >>> !file my_matrix.csv my_matrix.csv: ASCII text ``` { .annotate } 1. - Por defecto los datos se almacenan en formato _float_. - Si quisiéramos volcarlos como enteros, tendríamos que hacer lo siguiente: ```pycon >>> np.savetxt('my_matrix.csv', M, fmt='%d') ``` El método `loadtxt()` permite cargar los datos volcados de vuelta en un «ndarray»: ```pycon title="Carga" >>> M_reloaded = np.loadtxt('my_matrix.csv') >>> M_reloaded array([[ 1., 2., 3.], [ 4., 5., 6.], [ 7., 8., 9.], [10., 11., 12.]]) >>> M_reloaded = np.loadtxt('my_matrix.csv').astype('int')#(1)! >>> M_reloaded array([[ 1, 2, 3], [ 4, 5, 6], [ 7, 8, 9], [10, 11, 12]]) ``` { .annotate } 1. En este caso convertimos el array a valores enteros. ## Funciones para creación de arrays { #create-arrays-funcs } NumPy ofrece una gran variedad de funciones predefinidas para creación de arrays que nos permiten simplificar el proceso de construcción de este tipo de estructuras de datos. ### Valores fijos { #fixed-value-arrays } A continuación veremos una serie de funciones para crear arrays con valores fijos: === "Ceros" Crea un «ndarray» completamente lleno de ceros: ```pycon >>> np.zeros((3, 4))#(1)! array([[0., 0., 0., 0.], [0., 0., 0., 0.], [0., 0., 0., 0.]]) ``` { .annotate } 1. Por defecto se obtienen **valores flotantes**. Si queremos generar valores enteros: ```pycon >>> np.zeros((3, 4), dtype=int) array([[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]) ``` Existe la posibilidad de crear un **array de ceros con las mismas dimensiones** (y forma) que otro array: ```pycon >>> M = np.array([[1, 2, 3], [4, 5, 6]]) >>> np.zeros_like(M) array([[0, 0, 0], [0, 0, 0]]) ``` === "Unos" Crea un «ndarray» completamente lleno de unos: ```pycon >>> np.ones((3, 4)) array([[1., 1., 1., 1.], [1., 1., 1., 1.], [1., 1., 1., 1.]]) ``` Variantes: - `#!python np.ones((3, 4), dtype=int)` - `#!python np.ones_like(M)` === "Mismo valor" Crea un «ndarray» completamente lleno de un valor establecido: ```pycon >>> np.full((3, 4), 7) array([[7, 7, 7, 7], [7, 7, 7, 7], [7, 7, 7, 7]]) ``` Variantes: - `#!python np.full_like(M, 7)` === "Matriz identidad" Crea un «ndarray» con la ^^matriz identidad^^[^2]: ```pycon >>> np.eye(5) array([[1., 0., 0., 0., 0.], [0., 1., 0., 0., 0.], [0., 0., 1., 0., 0.], [0., 0., 0., 1., 0.], [0., 0., 0., 0., 1.]]) ``` Variantes: - `#!python np.eye(5, dtype=int)` === "Matriz diagonal" Crea un «ndarray» con la ^^matriz diagonal^^[^3]: ```pycon >>> np.diag([1, 2, 3, 4, 5]) array([[1, 0, 0, 0, 0], [0, 2, 0, 0, 0], [0, 0, 3, 0, 0], [0, 0, 0, 4, 0], [0, 0, 0, 0, 5]]) ``` !!! exercise "Ejercicio" Crea la siguiente matriz («ndarray») mediante código Python: $$ \begin{bmatrix} 0 & 0 & 0 & \dots & 0\\ 0 & 1 & 0 & \dots & 0\\ 0 & 0 & 2 & \dots & 0\\ \vdots & \vdots & 0 & \ddots & 0\\ 0 & 0 & 0 & \dots & 49\\ \end{bmatrix} $$ Encuentra igualmente las siguientes características de cada uno de ellos: dimensión, tamaño, forma y tipo de sus elementos. [:material-lightbulb: Solución](files/numpy/diag.py) ### Valores equiespaciados { #equispaced-arrays } A continuación veremos una serie de funciones para crear arrays con valores equiespaciados o en intervalos definidos: === "Valores enteros equiespaciados" La función que usamos para este propósito es `np.arange()` cuyo comportamiento es totalmente análogo a la función «built-in» de Python [`range()`](../../core/controlflow/loops.md#range): ```pycon >>> np.arange(21)#(1)! array([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]) >>> np.arange(6, 60)#(2)! array([ 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59]) >>> np.arange(6, 60, 3)#(3)! array([ 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 51, 54, 57]) >>> np.arange(6, 16, .3)#(4)! array([ 6. , 6.3, 6.6, 6.9, 7.2, 7.5, 7.8, 8.1, 8.4, 8.7, 9. , 9.3, 9.6, 9.9, 10.2, 10.5, 10.8, 11.1, 11.4, 11.7, 12. , 12.3, 12.6, 12.9, 13.2, 13.5, 13.8, 14.1, 14.4, 14.7, 15. , 15.3, 15.6, 15.9]) ``` { .annotate } 1. Especificamos límite superior. 2. Especificamos límite inferior y superior. 3. Especificamos límite inferior, superior y paso. 4. Especificamos límite inferior, superior y un **paso flotante**. === "Valores flotantes equiespaciados" La función que usamos para este propósito es np.linspace() cuyo comportamiento es «similar» a np.arange() pero para valores flotantes. ```pycon >>> np.linspace(6, 60)#(1)! array([ 6. , 7.10204082, 8.20408163, 9.30612245, 10.40816327, 11.51020408, 12.6122449 , 13.71428571, 14.81632653, 15.91836735, 17.02040816, 18.12244898, 19.2244898 , 20.32653061, 21.42857143, 22.53061224, 23.63265306, 24.73469388, 25.83673469, 26.93877551, 28.04081633, 29.14285714, 30.24489796, 31.34693878, 32.44897959, 33.55102041, 34.65306122, 35.75510204, 36.85714286, 37.95918367, 39.06122449, 40.16326531, 41.26530612, 42.36734694, 43.46938776, 44.57142857, 45.67346939, 46.7755102 , 47.87755102, 48.97959184, 50.08163265, 51.18367347, 52.28571429, 53.3877551 , 54.48979592, 55.59183673, 56.69387755, 57.79591837, 58.89795918, 60. ]) >>> np.linspace(6, 60, 20)#(2)! array([ 6. , 8.84210526, 11.68421053, 14.52631579, 17.36842105, 20.21052632, 23.05263158, 25.89473684, 28.73684211, 31.57894737, 34.42105263, 37.26315789, 40.10526316, 42.94736842, 45.78947368, 48.63157895, 51.47368421, 54.31578947, 57.15789474, 60. ]) >>> np.linspace(6, 60, 20, endpoint=False)#(3)! array([ 6. , 8.7, 11.4, 14.1, 16.8, 19.5, 22.2, 24.9, 27.6, 30.3, 33. , 35.7, 38.4, 41.1, 43.8, 46.5, 49.2, 51.9, 54.6, 57.3]) ``` { .annotate } 1. - Especificamos límite inferior y superior. - En este caso se trata de un intervalo cerrado $[6, 60]$ - Por defecto se generan 50 valores. 2. - Especificamos límite inferior, superior y número total de elementos. - En este caso se trata de un intervalo cerrado $[6, 60]$ 3. - Especificamos límite inferior, superior y número total de elementos. - En este caso se trata de un intervalo semicerrado $[6, 60)$ ### Valores aleatorios { #random-array } A continuación veremos una serie de funciones para crear arrays con valores aleatorios y distribuciones de probabilidad: === "Valores aleatorios enteros" ```pycon >>> np.random.randint(1, 100, size=9)#(1)! array([82, 97, 41, 21, 74, 78, 64, 55, 96]) ``` { .annotate } 1. - Especificamos límite inferior, superior y número total de elementos. - En este caso se trata de un intervalo semicerrado $[1, 100)$ === "Valores aleatorios flotantes" ```pycon >>> np.random.random(9)#(1)! array([0.46645546, 0.26669973, 0.18785006, 0.88809046, 0.48813905, 0.9792628 , 0.04653787, 0.53658358, 0.93921952]) ``` { .annotate } 1. - Especificamos número total de elementos. - En este caso se trata de un intervalo semicerrado $[0, 1)$ ```pycon >>> np.random.uniform(1, 100, size=9)#(1)! array([ 3.17134673, 23.36519832, 96.47212333, 97.60396461, 73.68806549, 12.39404503, 92.67380475, 75.23402229, 50.73980184]) ``` { .annotate } 1. - Especificamos límite inferior, superior y número total de elementos. - En este caso se trata de un intervalo semicerrado $[1, 100)$ #### Distribuciones de probabilidad { #prob-dist } NumPy ofrece una gran variedad de [distribuciones aleatorias](https://numpy.org/doc/stable/reference/random/generator.html#distributions). A continuación se muestran sólo algunas posibilidades: === "Distribución normal" ```pycon >>> dist = np.random.normal(0, 5, size=1_000_000)#(1)! >>> dist[:20]#(2)! array([ 2.5290643 , 1.46577658, 1.65170437, -1.36970819, -2.24547757, 7.19905613, -4.4666239 , -1.05505116, 2.42351298, -4.45314272, 1.13604077, -2.85054948, 4.34589478, -2.81235743, -0.8215143 , 0.57796411, -2.56594122, -7.14899388, 3.49197644, 1.80691996]) >>> dist.mean()#(3)! 0.004992046432131982 >>> dist.std()#(4)! 4.998583810032169 ``` { .annotate } 1. Generamos 1 millón de valores de una distribución **normal** con media $\mu=0$ y desviación típica $\sigma=5$. 2. Muestra los primeros 20 elementos. 3. La media tiende a 0. 4. La desviación típica tienda a 5. === "Muestra aleatoria" ```pycon >>> coins = np.random.choice(['head', 'tail'], size=1_000_000)#(1)! >>> coins array(['tail', 'head', 'tail', ..., 'tail', 'head', 'tail'], dtype='>> sum(coins == 'head')#(2)! 499874 >>> sum(coins == 'tail')#(3)! 500126 ``` { .annotate } 1. Generamos 1 millón de «lanzamientos» de una moneda (cara o cruz). 2. La suma de las caras tiende a medio millón. 3. La suma de las cruces tiende a medio millón. === "Muestra aleatoria con probabilidades" ```pycon >>> dices = np.random.choice(#(1)! ... range(1, 7), ... size=1_000_000, ... p=[.5, .1, .1, .1, .1, .1] ... ) >>> dices array([6, 5, 4, ..., 1, 6, 1]) >>> sum(dices == 1)#(2)! 500290 >>> sum(dices == 6)#(3)! 99550 ``` { .annotate } 1. - Generamos 1 millón de «lanzamientos» de un dado (valores del 1 al 6) - La cuestión es que la cara del «1» tiene mayor probabilidad que el resto. 2. La suma de los «1» tiende a medio millón. 3. La suma de cualquier otro número tiende a cien mil. === "Muestra aleatoria sin reemplazo" ```pycon >>> import this#(1)! >>> import codecs#(2)! >>> zen = codecs.decode(this.s, 'rot-13').splitlines()[3:]#(3)! >>> np.random.choice(zen, size=5, replace=False)#(4)! array(['Unless explicitly silenced.', "Although that way may not be obvious at first unless you're Dutch.", 'Sparse is better than dense.', 'If the implementation is easy to explain, it may be a good idea.', 'Complex is better than complicated.'], dtype='>> values = np.array(range(10, 16)) >>> values array([10, 11, 12, 13, 14, 15]) ``` === "Acceso :material-table-eye:" ```pycon >>> values[2] 12 >>> values[-3] 13 ``` === "Modificación :material-table-edit:" ```pycon >>> values[0] = values[1] + values[5] >>> values array([26, 11, 12, 13, 14, 15]) ``` === "Borrado :material-table-minus:" ```pycon >>> np.delete(values, 2)#(1)! array([10, 11, 13, 14, 15]) >>> np.delete(values, (2, 3, 4))#(2)! array([10, 11, 15]) ``` { .annotate } 1. - Índice como escalar. - La función `np.delete()` no es destructiva. Devuelve una copia modificada del array. 1. - Índice como tupla. - La función `np.delete()` no es destructiva. Devuelve una copia modificada del array. === "Inserción :material-table-plus:" ```pycon >>> np.append(values, 16)#(1)! array([10, 11, 12, 13, 14, 15, 16]) >>> np.insert(values, 1, 101)#(2)! array([10, 101, 11, 12, 13, 14, 15]) ``` { .annotate } 1. - Añade elementos al final del array. - La función `np.append()` no es destructiva. Devuelve una copia modificada del array. - También es posible añadir varios elementos a la vez: ```pycon >>> np.append(values, [16, 17, 18]) array([10, 11, 12, 13, 14, 15, 16, 17, 18]) ``` 2. - Añade elementos en una posición determinada del array. - La función `np.insert()` no es destructiva. Devuelve una copia modificada del array. - También es posible insertar varios elementos a la vez: ```pycon >>> np.insert(values, 1, [101, 102, 103]) array([10, 101, 102, 103, 12, 13, 14, 15]) ``` ### Arrays multidimensionales { #ndarrays } Partimos del siguiente array bidimensional (matriz) para ejemplificar las distintas operaciones: ```pycon >>> values = np.arange(1, 13).reshape(3, 4) >>> values array([[ 1, 2, 3, 4], [ 5, 6, 7, 8], [ 9, 10, 11, 12]]) ``` === "Acceso :material-table-eye:" Acceso a elementos individuales: ```pycon >>> values[0, 0] 1 >>> values[-1, -1] 12 >>> values[1, 2] 7 ``` Acceso a múltiples elementos: ```pycon >>> values[[0, 2], [1, 2]]#(1)! array([ 2, 11]) ``` { .annotate } 1. Elementos `[0,1]` y `[2,2]` Acceso a filas o columnas completas: ```pycon >>> values[2]#(1)! array([ 9, 10, 11, 12]) >>> values[:, 1]#(2)! array([ 2, 6, 10]) ``` { .annotate } 1. Tercera fila. 2. Segunda columna. Acceso a zonas parciales del array: ```pycon >>> values[0:2, 0:2] array([[1, 2], [5, 6]]) >>> values[0:2, [1, 3]] array([[2, 4], [6, 8]]) ``` !!! tip "Vistas" Todos estos accesos devuelven una **vista** del array original. Esto significa que, si modificamos un valor en el array original, se ve reflejado en la vista (y viceversa). Para evitar esta situación podemos usar la función `np.copy()` y desvincular la vista de su fuente. === "Modificación :material-table-edit:" ```pycon >>> values array([[ 1, 2, 3, 4], [ 5, 6, 7, 8], [ 9, 10, 11, 12]]) >>> values[0, 0] = 100#(1)! >>> values[1] = [55, 66, 77, 88]#(2)! >>> values[:,2] = [30, 70, 110]#(3)! >>> values array([[100, 2, 30, 4], [ 55, 66, 70, 88], [ 9, 10, 110, 12]]) ``` { .annotate } 1. Modificación de un elemento. 2. Modificación de la segunda fila. 3. Modificación de la tercera columna. === "Borrado :material-table-minus:" ```pycon >>> values array([[ 1, 2, 3, 4], [ 5, 6, 7, 8], [ 9, 10, 11, 12]]) >>> np.delete(values, 0, axis=0)#(1)! array([[ 5, 6, 7, 8], [ 9, 10, 11, 12]]) >>> np.delete(values, (1, 3), axis=1)#(2)! array([[ 1, 3], [ 5, 7], [ 9, 11]]) ``` { .annotate } 1. - Borrado de la primera fila. - `axis=0` hace referencia a las **filas**. 2. - Borrado de la segunda y cuarta columnas. - `axis=1` hace referencia a las **columnas**. === "Inserción :material-table-plus:" Añadir elementos al final del array: ```pycon >>> values array([[1, 2], [3, 4]]) >>> np.append(values, [[5, 6]], axis=0)#(1)! array([[1, 2], [3, 4], [5, 6]]) >>> np.append(values, [[5], [6]], axis=1)#(2)! array([[1, 2, 5], [3, 4, 6]]) ``` { .annotate } 1. - Añade una nueva fila. - `axis=0` hace referencia a las **filas**. 2. - Añade una nueva columna. - `axis=1` hace referencia a las **columnas**. Insertar elementos en posiciones arbitrarias del array: ```pycon >>> values array([[1, 2], [3, 4]]) >>> np.insert(values, 0, [0, 0], axis=0)#(1)! array([[0, 0], [1, 2], [3, 4]]) >>> np.insert(values, 1, [0, 0], axis=1)#(2)! array([[1, 0, 2], [3, 0, 4]]) ``` { .annotate } 1. - Inserta una nueva fila en la «primera posición». - `axis=0` hace referencia a las **filas**. 2. - Inserta una nueva columna en la «segunda posición». - `axis=1` hace referencia a las **columnas**. !!! exercise "Ejercicio" Utilizando operaciones de modificación, borrado e inserción, transforma la siguiente matriz: $$ \begin{bmatrix} 17 & 12 & 31 \\ 49 & 11 & 51 \\ 21 & 31 & 62 \\ 63 & 75 & 22 \end{bmatrix} $$ en esta: $$ \begin{bmatrix} 17 & 12 & 31 & 63\\ 49 & 11 & 51 & 75\\ 21 & 31 & 62 & 22\\ \end{bmatrix} $$ y luego en esta: $$ \begin{bmatrix} 17 & 12 & 31 & 63\\ 49 & 49 & 49 & 63\\ 21 & 31 & 62 & 63\\ \end{bmatrix} $$ [:material-lightbulb: Solución](files/numpy/np_transform.py) ### Apilando matrices { #stack-matrix } Hay ocasiones en las que nos interesa combinar dos matrices (arrays en general). Una de los mecanismos que nos proporciona NumPy es el **apilado**: === "Apilado vertical :material-dots-vertical:" ```pycon hl_lines="11" >>> m1 = np.random.randint(1, 100, size=(3, 2)) >>> m2 = np.random.randint(1, 100, size=(1, 2)) >>> m1 array([[68, 68], [10, 50], [87, 92]]) >>> m2 array([[63, 80]]) >>> np.vstack((m1, m2)) array([[68, 68], [10, 50], [87, 92], [63, 80]]) ``` === "Apilado horizontal :material-dots-horizontal:" ```pycon hl_lines="13" >>> m1 = np.random.randint(1, 100, size=(3, 2)) >>> m2 = np.random.randint(1, 100, size=(3, 1)) >>> m1 array([[51, 50], [52, 15], [14, 21]]) >>> m2 array([[18], [52], [ 1]]) >>> np.hstack((m1, m2)) array([[51, 50, 18], [52, 15, 52], [14, 21, 1]]) ``` ### Repitiendo elementos { #rep-items } === "Repetición por ejes :material-axis-arrow:" El parámetro de repetición indica el número de veces que repetimos el array completo por cada eje: ```pycon >>> values array([[1, 2], [3, 4], [5, 6]]) >>> np.tile(values, 3)#(1)! array([[1, 2, 1, 2, 1, 2], [3, 4, 3, 4, 3, 4], [5, 6, 5, 6, 5, 6]]) >>> np.tile(values, (2, 3))#(2)! array([[1, 2, 1, 2, 1, 2], [3, 4, 3, 4, 3, 4], [5, 6, 5, 6, 5, 6], [1, 2, 1, 2, 1, 2], [3, 4, 3, 4, 3, 4], [5, 6, 5, 6, 5, 6]]) ``` { .annotate } 1. Repite 3 veces en columnas. 2. Repite 2 veces en filas y 3 veces en columnas. === "Repetición por elementos :material-sitemap-outline:" El parámetro de repetición indica el número de veces que repetimos cada elemento del array: ```pycon >>> values array([[1, 2], [3, 4], [5, 6]]) >>> np.repeat(values, 2)#(1)! array([1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6]) >>> np.repeat(values, 2, axis=0)#(2)! array([[1, 2], [1, 2], [3, 4], [3, 4], [5, 6], [5, 6]]) >>> np.repeat(values, 3, axis=1)#(3)! array([[1, 1, 1, 2, 2, 2], [3, 3, 3, 4, 4, 4], [5, 5, 5, 6, 6, 6]]) ``` { .annotate } 1. Repite 2 veces cada elementos. 2. - Repite 2 veces en filas. - `axis=0` hace referencia a las **filas**. 3. - Repite 3 veces en columnas. - `axis=1` hace referencia a las **columnas**. ### Acceso por diagonal { #diagonal } Es bastante común acceder a elementos de una matriz —cuadrada— tomando como referencia su diagonal. Para ello, NumPy nos provee de ciertos mecanismos que veremos a continuación. Para ejemplificarlo, partiremos del siguiente array: ```pycon >>> values = np.array([73, 86, 90, 20, 96, 55, 15, 48, 38, 63, 96, 95, 13, 87, 32, 96]).reshape(4, 4) >>> values array([[73, 86, 90, 20], [96, 55, 15, 48], [38, 63, 96, 95], [13, 87, 32, 96]]) ``` A partir de un array multidimensional se establece una «distancia» $k$ desde la diagonal que usaremos en las operaciones posteriores: ![Dark image](images/numpy/numpy-diagonal-dark.svg#only-dark) ![Light image](images/numpy/numpy-diagonal-light.svg#only-light) === "Extracción :material-table-off:" Veamos cómo variando el parámetro `k` obtenemos distintos resultados: ```pycon >>> np.diag(values)#(1)! array([73, 55, 96, 96]) >>> for k in range(1, values.shape[0]): ... print(f'k={k}', np.diag(values, k=k)) ... k=1 [86 15 95] k=2 [90 48] k=3 [20] >>> for k in range(1, values.shape[0]): ... print(f'k={-k}', np.diag(values, k=-k)) ... k=-1 [96 63 32] k=-2 [38 87] k=-3 [13] ``` { .annotate } 1. $k = 0$ === "Modificación :material-table-pivot:" NumPy también provee un método `np.diag_indices()` que retorna los índices de los elementos de la diagonal principal, con lo que podemos modificar sus valores directamente: ```pycon >>> values array([[73, 86, 90, 20], [96, 55, 15, 48], [38, 63, 96, 95], [13, 87, 32, 96]]) >>> di = np.diag_indices(values.shape[0]) >>> di (array([0, 1, 2, 3]), array([0, 1, 2, 3])) >>> values[di] = 0 >>> values array([[ 0, 86, 90, 20], [96, 0, 15, 48], [38, 63, 0, 95], [13, 87, 32, 0]]) ``` !!! note "Índices auxiliares" Existen igualmente las funciones `np.triu_indices()` y `np.tril_indices()` para obtener los índices de la diagonal superior e inferior de una matriz. ## Operaciones sobre arrays { #array-ops } En este apartado veremos distintas operaciones que podemos realizar con `ndarrays` y las funciones que provee NumPy para ello. ### Operaciones lógicas { #logical-ops } Las operaciones lógicas involucran condiciones y filtrado con tratamiento de valores booleanos: === "Indexado booleano" El indexado booleano es una operación que permite conocer (a nivel de elemento) si un array cumple o no con una determinada condición: ```pycon >>> values array([[73, 86, 90, 20], [96, 55, 15, 48], [38, 63, 96, 95], [13, 87, 32, 96]]) >>> values > 50#(1)! array([[ True, False, False, False], [False, True, False, True], [ True, False, False, False], [False, True, False, True]]) >>> values[values > 50]#(2)! array([60, 63, 68, 58, 65, 96]) >>> values[values > 50] = -1#(3)! >>> values array([[-1, 47, 34, 38], [43, -1, 37, -1], [-1, 28, 31, 43], [32, -1, 32, -1]]) ``` { .annotate } 1. Indexado booleano. 2. Uso de máscara. 3. Modificación de valores. !!! tip "Condiciones compuestas" Las condiciones pueden ser más complejas e incorporar operadores lógicos `|` (or) y `&` (and) :material-arrow-right-bold: `#!python (values < 25) & (values < 75)` !!! exercise "Ejercicio" Extrae todos los números impares de la siguiente matriz: $$ \text{values} = \begin{bmatrix} 10 & 11 & 12 & 13\\ 14 & 15 & 16 & 17\\ 18 & 19 & 20 & 21\\ \end{bmatrix} $$ [:material-lightbulb: Solución](files/numpy/np_odds.py) Si lo que nos interesa es obtener los índices del array que satisfacen una determinada condición, NumPy nos proporciona el método `where()`: ```pycon hl_lines="1" >>> idx = np.where(values > 50) >>> idx (array([0, 1, 1, 2, 3, 3]), array([0, 1, 3, 0, 1, 3])) >>> values[idx] array([60, 63, 68, 58, 65, 96]) ``` !!! exercise "Ejercicio" Partiendo de una matriz de 10 filas y 10 columnas con valores aleatorios enteros en el intervalo, realice las operaciones necesarias para obtener una matriz de las mismas dimensiones donde: 1. Todos los elementos de la diagonal sean 50. 2. Los elementos mayores que 50 tengan valor 100. 3. Los elementos menores que 50 tengan valor 0. [:material-lightbulb: Solución](files/numpy/diag_transform.py) === "Comparando arrays" Dados dos arrays podemos compararlos usando el operador `==` del mismo modo que con cualquier otro objeto en Python. La cuestión es que el resultado se evalúa a nivel de elemento: ```pycon >>> m1 = np.array([[1, 2], [3, 4]]) >>> m3 = np.array([[1, 2], [3, 4]]) >>> m1 == m2 array([[ True, True], [ True, True]]) ``` Si queremos comparar arrays en su totalidad, podemos hacer uso de la siguiente función: ```pycon >>> np.array_equal(m1, m2) True ``` ### Operaciones de conjunto { #set-ops } Al igual que existen [operaciones sobre conjuntos](../../core/datastructures/sets.md) en Python, también podemos llevarlas a cabo sobre arrays en NumPy. Partiremos de los dos siguientes arrays para ejemplificar cada una de las posibles operaciones de conjunto: ```pycon >>> x = np.array([9, 4, 11, 3, 14, 5, 13, 12, 7]) >>> y = np.array([17, 9, 19, 4, 18, 7, 13, 11, 10]) ``` === "Unión :material-set-all:" $x \cup y$ ```pycon >>> np.union1d(x, y) array([ 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 17, 18, 19]) ``` === "Intersección :material-set-center:" $x \cap y$ ```pycon >>> np.intersect1d(x, y) array([ 4, 7, 9, 11, 13]) ``` === "Diferencia :material-set-left:" $x \setminus y$ ```pycon >>> np.setdiff1d(x, y) array([ 3, 5, 12, 14]) ``` ### Ordenación de arrays { #sort } En términos generales, existen dos formas de ordenar cualquier estructura de datos, una que modifica «in-situ» los valores (destructiva) y otra que devuelve «nuevos» valores (no destructiva). En el caso de NumPy también es así. === "Arrays unidimensionales" ```pycon >>> values array([23, 24, 92, 88, 75, 68, 12, 91, 94, 24, 9, 21, 42, 3, 66]) >>> np.sort(values)#(1)! array([ 3, 9, 12, 21, 23, 24, 24, 42, 66, 68, 75, 88, 91, 92, 94]) >>> values.sort()#(2)! >>> values array([ 3, 9, 12, 21, 23, 24, 24, 42, 66, 68, 75, 88, 91, 92, 94]) ``` { .annotate } 1. Método no destructivo. 2. Método destructivo. === "Arrays multidimensionales" ```pycon >>> values array([[52, 23, 90, 46], [61, 63, 74, 59], [75, 5, 58, 70], [21, 7, 80, 52]]) >>> np.sort(values, axis=1)#(1)! array([[23, 46, 52, 90], [59, 61, 63, 74], [ 5, 58, 70, 75], [ 7, 21, 52, 80]]) >>> np.sort(values, axis=0)#(2)! array([[21, 5, 58, 46], [52, 7, 74, 52], [61, 23, 80, 59], [75, 63, 90, 70]]) ``` { .annotate } 1. - Método no destructivo. - `axis=1` hace referencia a las **columnas**. - También existe `#!python values.sort(axis=1)` como método destructivo. 2. - Método no destructivo. - `axis=0` hace referencia a las **filas**. - También existe `#!python values.sort(axis=0)` como método destructivo. ### Contando valores { #count } Otra de las herramientas útiles que proporciona NumPy es la posibilidad de contar el número de valores que existen en un array en base a ciertos criterios. Para ejemplificarlo, partiremos de un array unidimensional con valores de una distribución aleatoria uniforme en el intervalo $[1,10]$: ```pycon >>> values = np.random.randint(1, 11, size=1000) >>> values array([ 3, 9, 5, 6, 10, 7, 10, 5, 7, 7, 2, 1, 2, 2, 4, 10, 8, 8, 3, 9, 10, 2, 7, 2, 10, 6, 9, 6, 8, 2, 5, 2, 6, 9, 5, 1, 6, 4, 6, 2, 9, 10, 5, 3, 4, 4, 4, 10, 8, 9, 8, ...]) ``` === "Valores únicos" ```pycon >>> np.unique(values) array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]) ``` === "Valores únicos con frecuencias" ```pycon >>> np.unique(values, return_counts=True) (array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]), array([ 88, 106, 90, 87, 116, 93, 106, 104, 122, 88])) ``` === "Valores distintos de cero" ```pycon >>> np.count_nonzero(values) 1000 ``` === "Valores distintos de cero con condición" ```pycon >>> np.count_nonzero(values > 5) 513 ``` ### Operaciones aritméticas { #arith-ops } Una de las grandes ventajas del uso de arrays numéricos en NumPy es la posibilidad de trabajar con ellos como si fueran objetos «simples» pero sacando partido de la **aritmética vectorial**. Esto redunda en una mayor eficiencia y rapidez de cómputo. === "Arrays con la misma dimensión" Cuando operamos entre arrays de las mismas dimensiones, las operaciones aritméticas se realizan elemento a elemento (ocupando misma posición) y el resultado, obviamente, tiene las mismas dimensiones: ```pycon >>> m1 array([[21, 86, 45], [31, 36, 78], [31, 64, 70]]) >>> m2 array([[58, 67, 17], [99, 53, 9], [92, 42, 75]]) >>> m1 + m2 array([[ 79, 153, 62], [130, 89, 87], [123, 106, 145]]) >>> m1 - m2 array([[-37, 19, 28], [-68, -17, 69], [-61, 22, -5]]) >>> m1 * m2 array([[1218, 5762, 765], [3069, 1908, 702], [2852, 2688, 5250]]) >>> m1 / m2#(1)! array([[0.36206897, 1.28358209, 2.64705882], [0.31313131, 0.67924528, 8.66666667], [0.33695652, 1.52380952, 0.93333333]]) >>> m1 // m2#(2)! array([[0, 1, 2], [0, 0, 8], [0, 1, 0]]) ``` { .annotate } 1. División flotante. 2. División entera. === "Arrays con distinta dimensión" Cuando operamos entre arrays con dimensiones diferentes, siempre y cuando se cumplan ciertas restricciones en tamaños de filas y/o columnas, lo que se produce es un «broadcasting» (o difusión) de los valores.
- Suma con array «fila»: ```pycon >>> m array([[9, 8, 1], [7, 6, 7]]) >>> v array([[2, 3, 6]]) >>> m + v#(1)! array([[11, 11, 7], [ 9, 9, 13]]) ``` { .annotate } 1. Aquí se produce el «broadcasting». - Suma con array «columna»: ```pycon >>> m array([[9, 8, 1], [7, 6, 7]]) >>> v array([[1], [6]]) >>> m + v#(1)! array([[10, 9, 2], [13, 12, 13]]) ``` { .annotate } 1. Aquí se produce el «broadcasting».
!!! warning "Erores en dimensiones" En el caso de que no coincidan dimensiones de filas y/o columnas, NumPy no podrá ejecutar la operación y obtendremos un error `ValueError: operands could not be broadcast together with shapes`. === "Arrays y escalares" Al igual que ocurría en los casos anteriores, si operamos con un array y un escalar, éste último será difundido para abarcar el tamaño del array: ```pycon >>> m array([[9, 8, 1], [7, 6, 7]]) >>> m + 5 array([[14, 13, 6], [12, 11, 12]]) >>> m - 5 array([[ 4, 3, -4], [ 2, 1, 2]]) >>> m * 5 array([[45, 40, 5], [35, 30, 35]]) >>> m / 5 array([[1.8, 1.6, 0.2], [1.4, 1.2, 1.4]]) >>> m // 5 array([[1, 1, 0], [1, 1, 1]]) >>> m ** 5 array([[59049, 32768, 1], [16807, 7776, 16807]]) ``` ### Operaciones unarias { #unary-ops } Existen multitud de operaciones sobre un único array. A continuación veremos algunas de las más utilizas en NumPy. === "Funciones universales" Las funciones universales «ufunc» son funciones que operan sobre arrays **elemento a elemento**. Existen [muchas funciones universales definidas en NumPy](https://docs.scipy.org/doc/numpy/reference/ufuncs.html#available-ufuncs), parte de ellas operan sobre dos arrays y parte sobre un único array. Un ejemplo:material-flash: de algunas de estas funciones: ```pycon >>> values array([[48.32172375, 24.89651106, 77.49724241], [77.81874191, 22.54051494, 65.11282444], [ 5.54960482, 59.06720303, 62.52817198]]) >>> np.sqrt(values) array([[6.95138287, 4.98964037, 8.80325181], [8.82149318, 4.74768522, 8.06925179], [2.35575992, 7.68551905, 7.9074757 ]]) >>> np.sin(values) array([[-0.93125201, -0.23403917, 0.86370435], [ 0.66019205, -0.52214693, 0.75824777], [-0.66953344, 0.58352079, -0.29903488]]) >>> np.ceil(values) array([[49., 25., 78.], [78., 23., 66.], [ 6., 60., 63.]]) >>> np.floor(values) array([[48., 24., 77.], [77., 22., 65.], [ 5., 59., 62.]]) >>> np.log(values) array([[3.87788123, 3.21472768, 4.35024235], [4.3543823 , 3.11531435, 4.17612153], [1.71372672, 4.07867583, 4.13561721]]) ``` === "Reduciendo el resultado" NumPy nos permite aplicar cualquier función sobre un array **reduciendo** el resultado por alguno de sus ejes. Esto abre una amplia gama de posibilidades. A modo de ilustración, veamos un par de ejemplos:material-flash: con la suma y el producto: ```pycon >>> values array([[8, 2, 7], [2, 0, 6], [6, 3, 4]]) >>> np.sum(values, axis=0)#(1)! array([16, 5, 17]) >>> np.sum(values, axis=1)#(2)! array([17, 8, 13]) >>> np.prod(values, axis=0)#(3)! array([ 96, 0, 168]) >>> np.prod(values, axis=1)#(4)! array([112, 0, 72]) ``` { .annotate } 1. Suma por columnas. 2. Suma por filas. 3. Producto por columnas. 4. Producto por filas. !!! exercise "Ejercicio" Comprueba que, para $\theta=2\pi$ (_radianes_) y $k=20$ se cumple la siguiente igualdad del _producto infinito de Euler_: $$ \cos\left({\frac{\theta}{2}}\right) \cdot \cos\left({\frac{\theta}{4}}\right) \cdot \cos\left({\frac{\theta}{8}}\right) \cdots = \prod_{i=1}^k \cos\left(\frac{\theta}{2^i}\right) \approx \frac{\sin(\theta)}{\theta} $$ [:material-lightbulb: Solución](files/numpy/euler_product.py) === "Funciones estadísticas" NumPy proporciona una gran cantidad de [funciones estadísticas](https://numpy.org/doc/stable/reference/routines.statistics.html) que pueden ser aplicadas sobre arrays. Veamos algunas de ellas: ```pycon >>> dist array([[-6.79006504, -0.01579498, -0.29182173, 0.3298951 , -5.30598975], [ 3.10720923, -4.09625791, -7.60624152, 2.3454259 , 9.23399023], [-7.4394269 , -9.68427195, 3.04248586, -5.9843767 , 1.536578 ], [ 3.33953286, -8.41584411, -9.530274 , -2.42827813, -7.34843663], [ 7.1508544 , 5.51727548, -3.20216834, -5.00154367, -7.15715252]]) >>> np.mean(dist)#(1)! -2.1877878715377777 >>> np.std(dist)#(2)! 5.393254994089515 >>> np.median(dist)#(3)! -3.2021683412383295 ``` { .annotate } 1. Media. 2. Desviación típica. 3. Mediana. === "Máximos y mínimos" Una de las operaciones más comunes en el manejo de datos es encontrar máximos o mínimos. Para ello, disponemos de las típicas funciones con las ventajas del uso de arrays multidimensionales: ```pycon >>> values array([[66, 54, 33, 15, 58], [55, 46, 39, 16, 38], [73, 75, 79, 25, 83], [81, 30, 22, 32, 8], [92, 25, 82, 10, 90]]) >>> np.min(values)#(1)! 8 >>> np.min(values, axis=0)#(2)! array([55, 25, 22, 10, 8]) >>> np.min(values, axis=1)#(3)! array([15, 16, 25, 8, 10]) >>> np.max(values)#(4)! 92 >>> np.max(values, axis=0)#(5)! array([92, 75, 82, 32, 90]) >>> np.max(values, axis=1)#(6)! array([66, 55, 83, 81, 92]) ``` { .annotate } 1. Mínimo de todos los valores de la matriz. 2. Mínimo de cada una de las columnas. 3. Mínimo de cada una de las filas. 4. Máximo de todos los valores de la matriz. 5. Máximo de cada una de las columnas. 6. Máximo de cada una de las filas. También es posible **obtener los índices** de aquellos valores máximos o mínimos: ```pycon hl_lines="8" >>> values array([[66, 54, 33, 15, 58], [55, 46, 39, 16, 38], [73, 75, 79, 25, 83], [81, 30, 22, 32, 8], [92, 25, 82, 10, 90]]) >>> idx = np.argmax(values, axis=0) >>> idx array([4, 2, 4, 3, 4]) >>> values[idx, range(values.shape[1])] array([92, 75, 82, 32, 90]) ``` ### Vectorizando funciones { #vectorize } Una de las ventajas de trabajar con arrays numéricos en NumPy es sacar provecho de la optimización que se produce a nivel de la propia estructura de datos. En el caso de que queramos implementar una función propia para realizar una determinada acción, sería deseable seguir aprovechando esa característica. Veamos un ejemplo:material-flash: en el que queremos realizar el siguiente cálculo entre dos matrices $A$ y $B$: $$ A_{ij} * B_{ij} = \begin{cases} A_{ij} + B_{ij} &, \text{si}\ A_{ij} > B_{ij}\\ A_{ij} - B_{ij} &, \text{si}\ A_{ij} < B_{ij}\\ 0 &, \text{e.o.c.} \end{cases} $$ Esta función, definida en Python, quedaría tal que así: ```pycon >>> def customf(a, b): ... if a > b: ... return a + b ... elif a < b: ... return a - b ... else: ... return 0 ... ``` Las dos matrices de partida tienen 9M de valores aleatorios entre -100 y 100: ```pycon >>> A = np.random.randint(-100, 100, size=(3000, 3000)) >>> B = np.random.randint(-100, 100, size=(3000, 3000)) ``` Una primera aproximación para aplicar esta función a cada elemento de las matrices de entrada sería la siguiente: ```pycon >>> result = np.zeros_like(A) >>> %%timeit#(1)! ... for i in range(A.shape[0]): ... for j in range(A.shape[1]): ... result[i, j] = customf(A[i, j], B[i, j]) ... ... 2.31 s ± 53.1 ms per loop (mean ± std. dev. of 7 runs, 1 loop each) ``` { .annotate } 1. Prueba realizada con un MacBook Pro 13" M1, 2020 (RAM 16GB). #### Mejorando rendimiento con funciones vectorizadas { #improve-vectorize } Con un pequeño detalle podemos mejorar el rendimiento de la función que hemos diseñado anteriormente. Se trata de [decorarla](../../core/modularity/functions.md#decorators) con `np.vectorize` con lo que estamos otorgándole un comportamiento distinto y enfocado al procesamiento de arrays numéricos: ```pycon >>> @np.vectorize ... def customf(a, b): ... if a > b: ... return a + b ... elif a < b: ... return a - b ... else: ... return 0 ... ``` Dado que ahora ya se trata de una **función vectorizada** podemos aplicarla directamente a las matrices de entrada (aprovechamos para medir su tiempo de ejecución): ```pycon >>> %timeit customf(A, B) 1.16 s ± 3.24 ms per loop (mean ± std. dev. of 7 runs, 1 loop each) ``` :material-check-all:{ .blue } Usando una función vectorizada hemos conseguido reducir prácticamente a **la mitad el tiempo** de ejecución con respecto al modelo «clásico». A medida que los tamaños de las matrices (arrays) son mayores se consigue una mejor aceleración. !!! tip "Funciones «lambda»" El uso de [funciones «lambda»](../../core/modularity/functions.md#lambda) puede ser muy útil en vectorización :material-arrow-right-bold: `#!python np.vectorize(lambda a, b: return a + b)` !!! exercise "Ejercicio" 1. Crea dos matrices cuadradas de 20x20 con valores aleatorios flotantes uniformes en el intervalo $[0,1000)$ 2. Vectoriza una función que devuelva la media (elemento a elemento) entre las dos matrices. 3. Realiza la misma operación que en 2) pero usando suma de matrices y división por escalar. 4. Calcula los tiempos de ejecución de 2) y 3) [:material-lightbulb: Solución](files/numpy/vectorize.py) ## Álgebra lineal { #lineal-algebra } NumPy tiene una sección dedicada al [álgebra lineal](https://numpy.org/doc/stable/reference/routines.linalg.html) cuyas funciones pueden resultar muy interesantes según el contexto en el que estemos trabajando. ### Producto de matrices { #matrix-product } Si bien hemos hablado del producto de arrays elemento a elemento, NumPy nos permite hacer la [multiplicación clásica de matrices](https://es.wikipedia.org/wiki/Multiplicaci%C3%B3n_de_matrices): ```pycon >>> m1 array([[1, 8, 4], [8, 7, 1], [1, 3, 8]]) >>> m2 array([[1, 5, 7], [9, 4, 2], [1, 4, 2]]) >>> np.dot(m1, m2) array([[77, 53, 31], [72, 72, 72], [36, 49, 29]]) ``` En Python :octicons-tag-24: 3.5 se introdujo el operador [`@`](https://docs.python.org/3/whatsnew/3.5.html#pep-465-a-dedicated-infix-operator-for-matrix-multiplication) que permitía implementar el [método especial](../../core/modularity/oop.md#magic-methods) `__matmul__()` de multiplicación de matrices. NumPy lo ha desarrollado y simplifica la multiplicación de matrices de la siguiente manera: ```pycon >>> m1 @ m2 array([[77, 53, 31], [72, 72, 72], [36, 49, 29]]) ``` !!! exercise "Ejercicio" Comprueba que la matriz $\begin{bmatrix}1 & 2\\3 & 5\end{bmatrix}$ satisface la ecuación matricial: $X^2 - 6X - I = 0$ donde $I$ es la [matriz identidad](#fixed-value-arrays) de orden 2. [:material-lightbulb: Solución](files/numpy/identity_equation.py) ### Determinante de una matriz { #determinant } El [cálculo del determinante](https://es.wikipedia.org/wiki/Determinante_(matem%C3%A1tica)) es una operación muy utilizada en álgebra lineal. Lo podemos realizar en NumPy de la siguiente manera: ```pycon >>> m array([[4, 1, 6], [4, 8, 8], [2, 1, 7]]) >>> np.linalg.det(m) 108.00000000000003 ``` ### Inversa de una matriz { #inverse } La [inversa de una matriz](https://es.wikipedia.org/wiki/Matriz_invertible) se calcula de la siguiente manera: ```pycon >>> m array([[4, 1, 6], [4, 8, 8], [2, 1, 7]]) >>> m_inv = np.linalg.inv(m) >>> m_inv array([[ 0.44444444, -0.00925926, -0.37037037], [-0.11111111, 0.14814815, -0.07407407], [-0.11111111, -0.01851852, 0.25925926]]) ``` Una propiedad de la matriz inversa es que si la multiplicamos por la matriz de partida obtenemos la matriz identidad. Vemos que se cumple: $A \cdot A^{-1} = I$: ```pycon >>> np.dot(m, m_inv) array([[1., 0., 0.], [0., 1., 0.], [0., 0., 1.]]) ``` ### Traspuesta de una matriz { #transpose } La traspuesta de una matriz $A$ se denota por: $(A^t)_{ij} = A_{ji},\ 1\le i\le n,\ 1\le j\le m$, pero básicamente consiste en intercambiar filas por columnas. Aún más fácil es computar la traspuesta de una matriz con NumPy: ```pycon >>> m array([[1, 2, 3], [4, 5, 6]]) >>> m.T array([[1, 4], [2, 5], [3, 6]]) ``` !!! exercise "Ejercicio" Dadas las matrices: $$ A= \begin{bmatrix} 1 & -2 & 1 \\ 3 & 0 & 1 \end{bmatrix} ;\ B= \begin{bmatrix} 4 & 0 & -1 \\ -2 & 1 & 0 \end{bmatrix} $$ comprueba que se cumplen las siguientes igualdades: 1. $(A + B)^t = A^t + B^t$ 2. $(3A)^t = 3A^t$ [:material-lightbulb: Solución](files/numpy/transpose.py) ### Elevar matriz a potencia { #pow } En el mundo del álgebra lineal es muy frecuente recurrir a la exponenciación de matrices a a través de su producto clásico. En este sentido, NumPy nos proporciona una función para computarlo: ```pycon >>> m array([[4, 1, 6], [4, 8, 8], [2, 1, 7]]) >>> np.linalg.matrix_power(m, 3)#(1)! array([[ 348, 250, 854], [ 848, 816, 2000], [ 310, 231, 775]]) ``` { .annotate } 1. Más eficiente que `#!python np.dot(m, np.dot(m, m))` !!! exercise "Ejercicio" Dada la matriz $A = \begin{bmatrix} 4 & 5 & -1 \\ -3 & -4 & 1 \\ -3 & -4 & 0 \end{bmatrix}$ calcula: $A^2, A^3, \dots, A^{128}$ ¿Notas algo especial en los resultados? [:material-lightbulb: Solución](files/numpy/flip_powers.py) ### Sistemas de ecuaciones lineales { #linear-equation } NumPy también nos permite resolver sistemas de ecuaciones lineales. Para ello debemos modelar nuestro sistema a través de arrays. Veamos un ejemplo:material-flash: en el que queremos resolver el siguiente sistema de ecuaciones lineales: $$ \begin{cases} x_1 + 2x_3 = 1\\ x_1 - x_2 = -2\\ x_2 + x_3 = -1 \end{cases} \Longrightarrow \begin{pmatrix} 1 & 0 & 2 \\ 1 & -1 & 0 \\ 0 & 1 & 1 \end{pmatrix} \begin{pmatrix} x_1 \\ x_2 \\ x_3 \end{pmatrix}= \begin{pmatrix} 1 \\ -2 \\ -1 \end{pmatrix} \Longrightarrow \mathcal{A} \mathcal{X} = \mathcal{B} $$ Podemos almacenar las matrices de coeficientes $\mathcal{A}$ y $\mathcal{B}$ de la siguiente manera: ```pycon >>> A = np.array([[1, 0, 2], [1, -1, 0], [0, 1, 1]]) >>> B = np.array([1, -2, -1]).reshape(-1, 1) >>> A array([[ 1, 0, 2], [ 1, -1, 0], [ 0, 1, 1]]) >>> B array([[ 1], [-2], [-1]]) ``` La solución al sistema viene dada por la siguiente función: ```pycon >>> np.linalg.solve(A, B) array([[-7.], [-5.], [ 4.]]) ``` La solución del sistema debe ser la misma que si obtenemos $\mathcal{X} = \mathcal{A}^{-1} \cdot \mathcal{B}$: ```pycon >>> np.dot(np.linalg.inv(A), B) array([[-7.], [-5.], [ 4.]]) ``` !!! exercise "Ejercicio" Resuelve el siguiente sistema de ecuaciones lineales usando NumPy: $$ \begin{cases} 3x + 4y - z = 8\\ 5x - 2y + z = 4\\ 2x - 2y + z = 1 \end{cases} $$ [:material-lightbulb: Solución](files/numpy/lineq.py) [^1]: Característica de los lenguajes de programación que permite, implícita o explícitamente, convertir un elemento de un tipo de datos en otro, sin tener en cuenta la comprobación de tipos. [^2]: Una matriz identidad es una matriz cuadrada donde todos sus elementos son ceros (0) menos los elementos de la _diagonal principal_ que son unos (1). [^3]: Una matriz diagonal es un tipo de matriz cuadrada en la que todos los elementos fuera de la diagonal principal son cero. [^4]: En software los huevos de Pascua son respuestas secretas que se producen como resultado a una serie de comandos no documentados. ================================================ FILE: docs/third-party/data-science/pandas/dataframes.md ================================================ --- icon: octicons/table-24 tags: - Paquetes de terceros - Ciencia de datos - Pandas --- # DataFrames { #dataframes } Un DataFrame es una **estructura tabular compuesta por series**. Se trata del tipo de datos fundamental en pandas y sobre el que giran la mayoría de operaciones que podemos realizar. Podemos ver un DataFrame como la «suma» de varias [series](series.md)[^1]... ![Dark image](../images/pandas/series-and-dataframes-dark.svg#only-dark) ![Light image](../images/pandas/series-and-dataframes-light.svg#only-light) ## Creación { #create } Existen múltiples formas de crear un DataFrame en pandas. ### Desde diccionario de listas { #create-from-dict-of-lists } Cada elemento del diccionario se convierte en una **columna**, donde su clave es el nombre y sus valores se despliegan en «vertical»: ```pycon >>> data = {'A': [1, 2, 3], 'B': [4, 5, 6]} >>> pd.DataFrame(data)#(1)! A B 0 1 4 1 2 5 2 3 6 ``` { .annotate } 1. - Cada clave del diccionario se convierte en el nombre de una columna. - Cada valor del diccionario (lista) se convierte en los valores de la columna. ### Desde lista de diccionarios { #create-from-list-of-dicts } Cada elemento de la lista se convierte en una **fila**. Las claves de cada diccionario serán los nombres de las columnas y sus valores se despliegan en «horizontal»: ```pycon >>> data = [{'A': 1, 'B': 2, 'C': 3}, {'A': 4, 'B': 5, 'C': 6}] >>> pd.DataFrame(data)#(1)! A B C 0 1 2 3 1 4 5 6 ``` { .annotate } 1. - Cada diccionario de la lista se convierte en una fila. - Cada clave del diccionario se convierte en el nombre de una columna. - Cada valor del diccionario se convierte en los valores de la columna. ### Desde lista de listas { #create-from-list-of-lists } Cada elemento de la lista se convierte en una **fila** y sus valores se despliegan en «horizontal». Los nombres de las columnas deben pasarse como parámetro opcional: ```pycon >>> data = [[1, 2], [3, 4], [5, 6]] >>> pd.DataFrame(data, columns=['A', 'B'])#(1)! A B 0 1 2 1 3 4 2 5 6 ``` { .annotate } 1. - Cada lista de la lista se convierte en una fila. - Los nombres de las columnas se asignan mediante el argumento `columns`. ### Desde series { #create-from-series } Constuir un DataFrame a partir de series es una aproximación bastante natural en el mundo pandas: ```pycon >>> employees Apple 164000 Samsung 270372 Google 190234 Microsoft 221000 Huawei 207000 Dell 133000 Meta 86482 Foxconn 767062 Sony 112994 Name: Tech Employees, dtype: int64 >>> revenues Apple 394.33 Samsung 234.13 Google 282.84 Microsoft 198.27 Huawei 95.49 Dell 102.30 Meta 116.61 Foxconn 222.54 Sony 85.25 Name: Tech Revenues, dtype: float64 >>> pd.DataFrame({'employees': employees, 'revenues': revenues})#(1)! employees revenues Apple 164000 394.33 Samsung 270372 234.13 Google 190234 282.84 Microsoft 221000 198.27 Huawei 207000 95.49 Dell 133000 102.30 Meta 86482 116.61 Foxconn 767062 222.54 Sony 112994 85.25 ``` { .annotate } 1. Hemos usado la aproximación de un diccionario pero ahora con valores siendo series. !!! exercise "Ejercicio" Crea el siguiente DataFrame[^2] en pandas: |Island | Population| Area| Province| |:-------------|----------:|-------:|--------:| |El Hierro | 11423| 268.71| TF| |Fuerteventura​ | 120021| 1665.74| LP| |Gran Canaria | 853262| 1560.10| LP| |La Gomera | 21798| 369.76| TF| |Lanzarote​ | 156112| 888.07| LP| |La Palma | 83439| 708.32| TF| |Tenerife | 931646| 2034.38| TF| Aclaraciones: - La superficie (_Area_) está expresada en $km^2$ - `TF` :material-arrow-right-bold: Provincia de Santa Cruz de Tenerife. - `LPGC` :material-arrow-right-bold: Provincia de Las Palmas. :material-check-all:{ .blue } Utilizaremos este DataFrame en próximos ejercicios y lo identificaremos como **democan**. [:material-lightbulb: Solución](../files/pandas/create_dataframe.py) ### Gestión del índice { #index-management } Cuando creamos un DataFrame, pandas autocompleta el índice con un valor entero autoincremental comenzando desde cero: ```pycon >>> pd.DataFrame({'A': [1, 2], 'B': [3, 4]}) A B 0 1 3 1 2 4 ``` Si queremos convertir alguna columna en el índice de la tabla, podemos hacerlo así: ```pycon >>> stats = pd.DataFrame({'A': [1, 2], 'B': [3, 4]}) >>> stats.set_index('A')#(1)! B A 1 3 2 4 ``` { .annotate } 1. - Columna A como índice. - Para cambiar el nombre `A` del índice podemos asignar un valor a `#!python df.index.name` Podemos añadir un parámetro (en la creación) para especificar los valores que queremos incluir en el índice: ```pycon >>> pd.DataFrame({'A': [1, 2], 'B': [3, 4]}, index=['R1', 'R2']) A B R1 1 3 R2 2 4 ``` En aquellos DataFrames que disponen de un índice etiquetado, es posible resetearlo: ```pycon >>> pd.DataFrame({'A': [1, 2], 'B': [3, 4]}, index=['R1', 'R2']).reset_index() index A B 0 R1 1 3 1 R2 2 4 ``` !!! exercise "Ejercicio" Haz que la columna _Island_ se convierta en el índice del DataFrame **democan**: ```pycon Population Area Province Island El Hierro 11423 268.71 TF Fuerteventura 120021 1665.74 LP Gran Canaria 853262 1560.10 LP La Gomera 21798 369.76 TF Lanzarote 156112 888.07 LP La Palma 83439 708.32 TF Tenerife 931646 2034.38 TF ``` [:material-lightbulb: Solución](../files/pandas/index_dataframe.py) ### Lectura de fuentes externas { #read } Lo más habitual cuando se trabaja en ciencia de datos es tener la información en distintas fuentes auxiliares: bases de datos, ficheros, llamadas remotas a APIs, etc. Pandas nos ofrece una variedad enorme de funciones para cargar datos desde, prácticamente, cualquier origen. |Función|Explicación| |---|---| |[read_pickle](https://pandas.pydata.org/docs/reference/api/pandas.read_pickle.html)|Lectura de datos en formato pickle (Python)| |[read_table](https://pandas.pydata.org/docs/reference/api/pandas.read_table.html)|Lectura de ficheros con delimitadores| |[read_csv](https://pandas.pydata.org/docs/reference/api/pandas.read_csv.html)|Lectura de ficheros .csv| |[read_fwf](https://pandas.pydata.org/docs/reference/api/pandas.read_fwf.html)|Lectura de tablas con líneas de ancho fijo| |[read_clipboard](https://pandas.pydata.org/docs/reference/api/pandas.read_clipboard.html)|Lectura de texto del portapapeles| |[read_excel](https://pandas.pydata.org/docs/reference/api/pandas.read_excel.html)|Lectura de ficheros excel| |[read_json](https://pandas.pydata.org/docs/reference/api/pandas.read_json.html)|Lectura de ficheros json| |[read_html](https://pandas.pydata.org/docs/reference/api/pandas.read_html.html)|Lectura de tablas HTML| |[read_xml](https://pandas.pydata.org/docs/reference/api/pandas.read_xml.html)|Lectura de documentos XML| |[read_hdf](https://pandas.pydata.org/docs/reference/api/pandas.read_hdf.html)|Lectura de objetos pandas almacenados en fichero| |[read_feather](https://pandas.pydata.org/docs/reference/api/pandas.read_feather.html)|Lectura de objetos en formato "feather"| |[read_parquet](https://pandas.pydata.org/docs/reference/api/pandas.read_parquet.html)|Lectura de objetos en formato "parquet"| |[read_orc](https://pandas.pydata.org/docs/reference/api/pandas.read_orc.html)|Lectura de objetos en formato ORC| |[read_sas](https://pandas.pydata.org/docs/reference/api/pandas.read_sas.html)|Lectura de ficheros SAS| |[read_spss](https://pandas.pydata.org/docs/reference/api/pandas.read_spss.html)|Lectura de ficheros SPSS| |[read_sql_table](https://pandas.pydata.org/docs/reference/api/pandas.read_sql_table.html)|Lectura de tabla SQL| |[read_sql_query](https://pandas.pydata.org/docs/reference/api/pandas.read_sql_query.html)|Lectura de una consulta SQL| |[read_sql](https://pandas.pydata.org/docs/reference/api/pandas.read_sql.html)|Wrapper para ``read_sql_table`` y ``read_sql_query``| |[read_gbq](https://pandas.pydata.org/docs/reference/api/pandas.read_gbq.html)|Lectura de datos desde Google BigQuery| |[read_stata](https://pandas.pydata.org/docs/reference/api/pandas.read_stata.html)|Lectura de ficheros Stata| !!! tip "Escritura" Todas estas funciones tienen su equivalente para escribir datos en los distintos formatos. En vez de `read_` habría que usar el prefijo `to_`. Por ejemplo: `.to_csv()`, `.to_json()` o`.to_sql()` De aquí en adelante usaremos el fichero [`tech.csv`](../files/pandas/tech.csv)[^1] que contiene la lista de las mayores empresas tecnológicas por ingresos totales (en billones de dólares)[^3]: ```pycon >>> df = pd.read_csv('tech.csv', index_col='Company')#(1)! >>> df Revenue Employees City Country Company Amazon 574.80 1525000 Seattle United States Apple 394.33 164000 Cupertino United States Alphabet 282.84 190234 Mountain View United States Samsung Electronics 234.13 270372 Suwon South Korea Foxconn 222.54 767062 New Taipei City Taiwan Microsoft 198.27 221000 Redmond United States Jingdong 152.80 310000 Beijing China Alibaba 130.35 204891 Yuhang China AT&T 122.40 149900 Dallas United States Meta 116.61 86482 Menlo Park United States Deutsche Telekom 112.00 205000 Bonn Germany Dell Technologies 102.30 133000 Round Rock United States Huawei 95.49 207000 Shenzhen China Sony 85.25 112994 Tokyo Japan Tencent 82.44 108436 Shenzhen China Hitachi 80.39 322525 Tokyo Japan TSMC 76.02 73090 New Taipei City Taiwan LG Electronics 64.95 74000 Seoul South Korea Intel 63.05 131900 Santa Clara United States HP Inc. 62.98 53000 Palo Alto United States Lenovo 61.95 71500 Hong Kong Hong Kong Panasonic 61.90 233391 Osaka Japan Accenture 61.59 721000 Dublin Ireland Nvidia 60.93 29600 Santa Clara United States IBM 60.53 303100 Armonk United States ``` { .annotate } 1. Es habitual usar `df` como nombre de variable para un DataFrame. !!! exercise "Ejercicio" Carga el conjunto de datos **democan** desde [`democan.csv`](../files/pandas/democan.csv) en un DataFrame `df` indicando que la columna `Island` sea su índice. :material-web: También es posible cargar el «dataset» a través de la URL que conseguimos con botón derecho: copiar enlace. [:material-lightbulb: Solución](../files/pandas/load_dataframe.py) ## Características { #features } Veamos las principales características de un DataFrame. ### Muestra parcial { #chunks } Para «echar un vistazo» a los datos, existen dos funciones muy recurridas: ```pycon >>> df.head()#(1)! Revenue Employees City Country Company Amazon 574.80 1525000 Seattle United States Apple 394.33 164000 Cupertino United States Alphabet 282.84 190234 Mountain View United States Samsung Electronics 234.13 270372 Suwon South Korea Foxconn 222.54 767062 New Taipei City Taiwan >>> df.tail()#(2)! Revenue Employees City Country Company Lenovo 61.95 71500 Hong Kong Hong Kong Panasonic 61.90 233391 Osaka Japan Accenture 61.59 721000 Dublin Ireland Nvidia 60.93 29600 Santa Clara United States IBM 60.53 303100 Armonk United States ``` { .annotate } 1. También admite un parámetro indicando el número de registros a mostrar. 2. También admite un parámetro indicando el número de registros a mostrar. ### Información sobre los datos { #info } Pandas ofrece algunas funciones que proporcionan un cierto «resumen» de los datos a nivel descriptivo. Veamos algunas de ellas: === "Información sobre columnas" ```pycon >>> df.info()#(1)! Index: 25 entries, Amazon to IBM Data columns (total 4 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 Revenue 25 non-null float64 1 Employees 25 non-null int64 2 City 25 non-null object 3 Country 25 non-null object dtypes: float64(1), int64(1), object(2) memory usage: 1000.0+ bytes ``` { .annotate } 1. Información sobre columnas. === "Resumen de variables" ```pycon >>> df.describe()#(1)! Revenue Employees count 25.000000 2.500000e+01 mean 142.433600 2.667391e+05 std 122.595103 3.177151e+05 min 60.530000 2.960000e+04 25% 63.050000 1.084360e+05 50% 95.490000 1.902340e+05 75% 152.800000 2.703720e+05 max 574.800000 1.525000e+06 ``` { .annotate } 1. - Descripción (resumen) de las variables numéricas. - Devuelve un DataFrame. === "Uso de memoria" ```pycon >>> df.memory_usage()#(1)! Index 200 Revenue 200 Employees 200 City 200 Country 200 dtype: int64 ``` { .annotate } 1. - Uso de memoria. - Devuelve una serie. ### Atributos { #attributes } === "Tamaños y dimensiones" ```pycon >>> df.shape (25, 4) >>> df.size 100 >>> df.ndim 2 ``` === "Índice, columnas y valores" ```pycon >>> df.index Index(['Amazon', 'Apple', 'Alphabet', 'Samsung Electronics', 'Foxconn', 'Microsoft', 'Jingdong', 'Alibaba', 'AT&T', 'Meta', 'Deutsche Telekom', 'Dell Technologies', 'Huawei', 'Sony', 'Tencent', 'Hitachi', 'TSMC', 'LG Electronics', 'Intel', 'HP Inc.', 'Lenovo', 'Panasonic', 'Accenture', 'Nvidia', 'IBM'], dtype='object', name='Company') >>> df.columns Index(['Revenue', 'Employees', 'City', 'Country'], dtype='object') >>> df.values array([[574.8, 1525000, 'Seattle', 'United States'], [394.33, 164000, 'Cupertino', 'United States'], [282.84, 190234, 'Mountain View', 'United States'], [234.13, 270372, 'Suwon', 'South Korea'], [222.54, 767062, 'New Taipei City', 'Taiwan'], [198.27, 221000, 'Redmond', 'United States'], [152.8, 310000, 'Beijing', 'China'], [130.35, 204891, 'Yuhang', 'China'], [122.4, 149900, 'Dallas', 'United States'], [116.61, 86482, 'Menlo Park', 'United States'], [112.0, 205000, 'Bonn', 'Germany'], [102.3, 133000, 'Round Rock', 'United States'], [95.49, 207000, 'Shenzhen', 'China'], [85.25, 112994, 'Tokyo', 'Japan'], [82.44, 108436, 'Shenzhen', 'China'], [80.39, 322525, 'Tokyo', 'Japan'], [76.02, 73090, 'New Taipei City', 'Taiwan'], [64.95, 74000, 'Seoul', 'South Korea'], [63.05, 131900, 'Santa Clara', 'United States'], [62.98, 53000, 'Palo Alto', 'United States'], [61.95, 71500, 'Hong Kong', 'Hong Kong'], [61.9, 233391, 'Osaka', 'Japan'], [61.59, 721000, 'Dublin', 'Ireland'], [60.93, 29600, 'Santa Clara', 'United States'], [60.53, 303100, 'Armonk', 'United States']], dtype=object) ``` ## Acceso { #access } Es fundamental conocer la estructura de un DataFrame para su adecuado manejo: ![Dark image](../images/pandas/dataframe-structure-dark.svg#only-dark) ![Light image](../images/pandas/dataframe-structure-light.svg#only-light) ### Acceso a filas { #row-access } Si queremos acceder a las filas de un conjunto de datos **mediante la posición (índice numérico)** del registro usamos el atributo `iloc`: ```pycon >>> df.iloc[0]#(1)! Revenue 574.8 Employees 1525000 City Seattle Country United States Name: Amazon, dtype: object >>> df.iloc[-1]#(2)! Revenue 60.53 Employees 303100 City Armonk Country United States Name: IBM, dtype: object >>> df.iloc[3:5]#(3)! Revenue Employees City Country Company Samsung Electronics 234.13 270372 Suwon South Korea Foxconn 222.54 767062 New Taipei City Taiwan >>> df.iloc[::5]#(4)! Revenue Employees City Country Company Amazon 574.80 1525000 Seattle United States Microsoft 198.27 221000 Redmond United States Deutsche Telekom 112.00 205000 Bonn Germany Hitachi 80.39 322525 Tokyo Japan Lenovo 61.95 71500 Hong Kong Hong Kong ``` { .annotate } 1. - Acceso a la primera fila. - El acceso a un registro individual devuelve una serie. 2. - Acceso a la última fila. - El acceso a un registro individual devuelve una serie. 3. Acceso a la segunda y tercera fila. 4. Acceso a todas las filas «saltando» de 5 en 5. Si queremos acceder a las filas de un conjunto de datos **mediante la etiqueta del registro** usamos el atributo `loc`: ```pycon >>> df.loc['Apple']#(1)! Revenue 394.33 Employees 164000 City Cupertino Country United States Name: Apple, dtype: object >>> df.loc['IBM']#(2)! Revenue 60.53 Employees 303100 City Armonk Country United States Name: IBM, dtype: object >>> df.loc['Alphabet':'Microsoft']#(3)! Revenue Employees City Country Company Alphabet 282.84 190234 Mountain View United States Samsung Electronics 234.13 270372 Suwon South Korea Foxconn 222.54 767062 New Taipei City Taiwan Microsoft 198.27 221000 Redmond United States ``` { .annotate } 1. - Acceso al registro con etiqueta _Apple_. - El acceso a un registro individual devuelve una serie. 2. - Acceso al registro con etiqueta _IBM_. - El acceso a un registro individual devuelve una serie. 3. Acceso al rango de registros entre las etiquetas _Alphabet_ y _Microsoft_. ### Acceso a columnas { #col-access } El acceso a columnas se realiza directamente utilizando corchetes, como si fuera un diccionario: ```pycon >>> df['Revenue']#(1)! Company Amazon 574.80 Apple 394.33 Alphabet 282.84 Samsung Electronics 234.13 Foxconn 222.54 Microsoft 198.27 Jingdong 152.80 Alibaba 130.35 AT&T 122.40 Meta 116.61 Deutsche Telekom 112.00 Dell Technologies 102.30 Huawei 95.49 Sony 85.25 Tencent 82.44 Hitachi 80.39 TSMC 76.02 LG Electronics 64.95 Intel 63.05 HP Inc. 62.98 Lenovo 61.95 Panasonic 61.90 Accenture 61.59 Nvidia 60.93 IBM 60.53 Name: Revenue, dtype: float64 ``` { .annotate } 1. El acceso a una columna individual devuelve una serie. Se pueden seleccionar varias columnas a la vez pasando una lista con sus nombres: ```pycon >>> df[['Employees', 'City']].head()#(1)! Employees City Company Amazon 1525000 Seattle Apple 164000 Cupertino Alphabet 190234 Mountain View Samsung Electronics 270372 Suwon Foxconn 767062 New Taipei City ``` { .annotate } 1. Devuelve un DataFrame. Esta misma sintaxis permite la **reordenación de las columnas** de un DataFrame, si asignamos el resultado a la misma (u otra) variable: ```pycon >>> df_reordered = df[['City', 'Country', 'Revenue', 'Employees']] >>> df_reordered.head() City Country Revenue Employees Company Amazon Seattle United States 574.80 1525000 Apple Cupertino United States 394.33 164000 Alphabet Mountain View United States 282.84 190234 Samsung Electronics Suwon South Korea 234.13 270372 Foxconn New Taipei City Taiwan 222.54 767062 ``` ### Acceso a filas y columnas { #row-col-access } Si mezclamos los dos accesos anteriores podemos seleccionar datos de forma muy precisa. Como siempre, partimos del «dataset» de empresas tecnológicas: ```pycon >>> df.head() Revenue Employees City Country Company Amazon 574.80 1525000 Seattle United States Apple 394.33 164000 Cupertino United States Alphabet 282.84 190234 Mountain View United States Samsung Electronics 234.13 270372 Suwon South Korea Foxconn 222.54 767062 New Taipei City Taiwan ``` Acceso al **primer valor del número de empleados/as**. Formas equivalentes de hacerlo: ```pycon >>> df.iloc[0, 0] np.float64(574.8) >>> df.loc['Amazon', 'Revenue'] np.float64(574.8) ``` Acceso a **ciudad y país de las empresas Sony, Panasonic y Lenovo**: ```pycon >>> df.loc[['Sony', 'Panasonic', 'Lenovo'], ['City', 'Country']] City Country Company Sony Tokyo Japan Panasonic Osaka Japan Lenovo Hong Kong Hong Kong ``` Acceso a la **última columna** del DataFrame: ```pycon >>> df.iloc[:, -1] Company Amazon United States Apple United States Alphabet United States Samsung Electronics South Korea Foxconn Taiwan Microsoft United States Jingdong China Alibaba China AT&T United States Meta United States Deutsche Telekom Germany Dell Technologies United States Huawei China Sony Japan Tencent China Hitachi Japan TSMC Taiwan LG Electronics South Korea Intel United States HP Inc. United States Lenovo Hong Kong Panasonic Japan Accenture Ireland Nvidia United States IBM United States Name: Country, dtype: object ``` Acceso a las **tres últimas filas (empresas) y a las dos primeras columnas**: ```pycon >>> df.iloc[-3:, :2] Revenue Employees Company Accenture 61.59 721000 Nvidia 60.93 29600 IBM 60.53 303100 ``` Acceso a las **filas que van desde «Meta» a «Huawei» y a las columnas que van desde «Revenue» hasta «City»**: ```pycon >>> df.loc['Meta':'Huawei', 'Revenue':'City'] Revenue Employees City Company Meta 116.61 86482 Menlo Park Deutsche Telekom 112.00 205000 Bonn Dell Technologies 102.30 133000 Round Rock Huawei 95.49 207000 Shenzhen ``` ### Selección condicional { #conditional-selection } Es posible aplicar ciertas condiciones en la selección de los datos para obtener el subconjunto que estemos buscando. Veremos distintas aproximaciones a esta técnica. Supongamos que queremos seleccionar aquellas **empresas con base en Estados Unidos**. Si aplicamos la condición sobre la columna obtendremos una serie de tipo «booleano» en la que se indica para qué registros se cumple la condición (incluyendo el índice): ```pycon >>> df['Country'] == 'United States' Company Amazon True Apple True Alphabet True Samsung Electronics False Foxconn False Microsoft True Jingdong False Alibaba False AT&T True Meta True Deutsche Telekom False Dell Technologies True Huawei False Sony False Tencent False Hitachi False TSMC False LG Electronics False Intel True HP Inc. True Lenovo False Panasonic False Accenture False Nvidia True IBM True Name: Country, dtype: bool ``` Si aplicamos esta «máscara» al conjunto original de datos, obtendremos las empresas que estamos buscando: ```pycon >>> df[df['Country'] == 'United States'] Revenue Employees City Country Company Amazon 574.80 1525000 Seattle United States Apple 394.33 164000 Cupertino United States Alphabet 282.84 190234 Mountain View United States Microsoft 198.27 221000 Redmond United States AT&T 122.40 149900 Dallas United States Meta 116.61 86482 Menlo Park United States Dell Technologies 102.30 133000 Round Rock United States Intel 63.05 131900 Santa Clara United States HP Inc. 62.98 53000 Palo Alto United States Nvidia 60.93 29600 Santa Clara United States IBM 60.53 303100 Armonk United States ``` También es posible aplicar condiciones compuestas. Supongamos que necesitamos selecionar aquellas **empresas con más de 100 billones[^3] de dólares de ingresos y más de 100000 empleados/as**: ```pycon >>> revenue_condition = df['Revenue'] > 100 >>> employees_condition = df['Employees'] > 100_000 >>> df[revenue_condition & employees_condition] Revenue Employees City Country Company Amazon 574.80 1525000 Seattle United States Apple 394.33 164000 Cupertino United States Alphabet 282.84 190234 Mountain View United States Samsung Electronics 234.13 270372 Suwon South Korea Foxconn 222.54 767062 New Taipei City Taiwan Microsoft 198.27 221000 Redmond United States Jingdong 152.80 310000 Beijing China Alibaba 130.35 204891 Yuhang China AT&T 122.40 149900 Dallas United States Deutsche Telekom 112.00 205000 Bonn Germany Dell Technologies 102.30 133000 Round Rock United States ``` Los operadores lógicos que se pueden utilizar para combinar condiciones de selección son los siguientes: | Operador | Significado | | --- | --- | | `|` | «or» lógico | | `&` | «and» lógico | | `~` | «not» lógico | | `^` | «xor» lógico | Imaginemos ahora que estamos buscando aquellas **empresas establecidas en Shenzen o Tokyo**. Una posible aproximación sería utilizar una condición compuesta, pero existe la función `isin()` que nos permite comprobar si un valor está dentro de una lista de opciones: ```pycon >>> mask = df['City'].isin(['Shenzhen', 'Tokyo']) >>> df[mask] Revenue Employees City Country Company Huawei 95.49 207000 Shenzhen China Sony 85.25 112994 Tokyo Japan Tencent 82.44 108436 Shenzhen China Hitachi 80.39 322525 Tokyo Japan ``` !!! exercise "Ejercicio" Encuentra los siguientes subconjuntos del dataset [`democan`](../files/pandas/democan.csv): 1. Filas con los datos de las islas de El Hierro y La Gomera. 2. Columna de provincia. 3. Columna de área para todas las islas «saltando de dos en dos». 4. Islas con más de $1000 km^2$ de extensión. [:material-lightbulb: Solución](../files/pandas/df_access.py) #### Selección mediante «query» { #query-select } Pandas provee una alternativa para la selección condicional de registros a través de la función [`query()`](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.query.html). Admite una sintaxis de consulta mediante operadores de comparación. Veamos las mismas consultas de ejemplo:material-flash: que para el apartado anterior: ```pycon >>> df.query('Country == "United States"') Revenue Employees City Country Company Amazon 574.80 1525000 Seattle United States Apple 394.33 164000 Cupertino United States Alphabet 282.84 190234 Mountain View United States Microsoft 198.27 221000 Redmond United States AT&T 122.40 149900 Dallas United States Meta 116.61 86482 Menlo Park United States Dell Technologies 102.30 133000 Round Rock United States Intel 63.05 131900 Santa Clara United States HP Inc. 62.98 53000 Palo Alto United States Nvidia 60.93 29600 Santa Clara United States IBM 60.53 303100 Armonk United States >>> df.query('Revenue > 100 & Employees > 100_000') Revenue Employees City Country Company Amazon 574.80 1525000 Seattle United States Apple 394.33 164000 Cupertino United States Alphabet 282.84 190234 Mountain View United States Samsung Electronics 234.13 270372 Suwon South Korea Foxconn 222.54 767062 New Taipei City Taiwan Microsoft 198.27 221000 Redmond United States Jingdong 152.80 310000 Beijing China Alibaba 130.35 204891 Yuhang China AT&T 122.40 149900 Dallas United States Deutsche Telekom 112.00 205000 Bonn Germany Dell Technologies 102.30 133000 Round Rock United States >>> df.query('City in ["Shenzhen", "Tokyo"]') Revenue Employees City Country Company Huawei 95.49 207000 Shenzhen China Sony 85.25 112994 Tokyo Japan Tencent 82.44 108436 Shenzhen China Hitachi 80.39 322525 Tokyo Japan ``` !!! tip "Nombres de columna" Si los nombres de columna contienen espacios, se puede hacer referencias a ellas con comillas invertidas. #### Comparativa en consultas { #query-benchmark } Hemos visto dos métodos para realizar consultas (o filtrado) en un DataFrame: usando selección booleana con corchetes y usando la función `query`. ¿Ambos métodos son igual de eficientes en términos de rendimiento? Haremos una comparativa muy simple para tener, al menos, una idea de sus órdenes de magnitud. En primer lugar creamos un DataFrame con 3 columnas y 1 millón de valores aleatorios enteros en cada una de ellas: ```pycon >>> size = 1_000_000 >>> data = { ... 'A': np.random.randint(1, 100, size=size), ... 'B': np.random.randint(1, 100, size=size), ... 'C': np.random.randint(1, 100, size=size) ... } >>> df = pd.DataFrame(data) >>> df.shape (1000000, 3) ``` Ahora realizaremos la misma consulta sobre el DataFrame aplicando los métodos ya vistos: ```pycon >>> %timeit df[(df['A'] > 50) & (df['B'] < 50)] 3.29 ms ± 403 μs per loop (mean ± std. dev. of 7 runs, 100 loops each) >>> %timeit df.query('A > 50 & B < 50') 4.49 ms ± 179 μs per loop (mean ± std. dev. of 7 runs, 100 loops each) ``` Sin que esto sea en modo alguno concluyente, da la sensación de que `query()` añade un cierto «overhead»[^4] al filtrado y aumentan los tiempos de cómputo. ## Modificación { #modification } ### Modificando valores existentes { #mod-existent } Partiendo del [acceso a los datos](#access) que ya hemos visto, podemos asignar valores sin mayor dificultad. Pero antes de modificar el DataFrame original, vamos a hacer una copia del mismo: ```pycon >>> df_mod = df.copy() >>> df_mod.equals(df)#(1)! True ``` { .annotate } 1. Comprueba que todos los valores de cada DataFrame son iguales. Supongamos que hemos cometido un **error en el número de empleados/as de Apple** y queremos corregirlo: ```pycon hl_lines="8" >>> df_mod.loc['Apple'] Revenue 394.33 Employees 164000 City Cupertino Country United States Name: Apple, dtype: object >>> df_mod.loc['Apple', 'Employees'] = 146_000 >>> df_mod.loc['Apple'] Revenue 394.33 Employees 146000 City Cupertino Country United States Name: Apple, dtype: object ``` Supongamos que no se había contemplado una **subida del 20% en los ingresos** (para todas las empresas) y queremos reflejarla: ```pycon >>> df_mod['Revenue'] *= 1.20 >>> df_mod['Revenue'].head() Company Amazon 689.760 Apple 473.196 Alphabet 339.408 Samsung Electronics 280.956 Foxconn 267.048 Name: Revenue, dtype: float64 ``` Supongamos que todas las empresas tecnológicas **mueven su sede a Tenerife (España)** y queremos reflejarlo: ```pycon >>> df_mod['City'] = 'Tenerife'#(1)! >>> df_mod['Country'] = 'Spain'#(2)! >>> df_mod.head() Revenue Employees City Country Company Amazon 689.760 1525000 Tenerife Spain Apple 473.196 146000 Tenerife Spain Alphabet 339.408 190234 Tenerife Spain Samsung Electronics 280.956 270372 Tenerife Spain Foxconn 267.048 767062 Tenerife Spain ``` { .annotate } 1. Se produce un «broadcast» o difusión del valor escalar en todos los registros del «dataset». 2. Se produce un «broadcast» o difusión del valor escalar en todos los registros del «dataset». ### Reemplazo de valores { #replace } Hay una función muy importante en lo relativo a la modificación de valores. Se trata de `replace()` y admite una amplia variedad de parámetros. Se puede usar tanto para tipos numéricos como textuales. Uno de los usos más habituales es la **recodificación**. Supongamos que queremos recodificar los países en [ISO3166 Alpha-3](https://es.wikipedia.org/wiki/ISO_3166-1_alfa-3) para el DataFrame de empresas tecnológicas: ```pycon >>> iso3166 = { ... 'United States': 'USA', ... 'South Korea': 'KOR', ... 'Taiwan': 'TWN', ... 'China': 'CHN', ... 'Japan': 'JPN', ... 'Germany': 'DEU', ... 'Hong Kong': 'HKG', ... 'Ireland': 'IRL' ... } >>> df['Country'].replace(iso3166) Company Amazon USA Apple USA Alphabet USA Samsung Electronics KOR Foxconn TWN Microsoft USA Jingdong CHN Alibaba CHN AT&T USA Meta USA Deutsche Telekom DEU Dell Technologies USA Huawei CHN Sony JPN Tencent CHN Hitachi JPN TSMC TWN LG Electronics KOR Intel USA HP Inc. USA Lenovo HKG Panasonic JPN Accenture IRL Nvidia USA IBM USA Name: Country, dtype: object ``` !!! exercise "Ejercicio" Recodifica la columna _Province_ del «dataset» [`democan`](../files/pandas/democan.csv) de tal manera que aparezcan las provincias con el texto completo: _Santa Cruz de Tenerife_ y _Las Palmas de Gran Canaria_. [:material-lightbulb: Solución](../files/pandas/recoding.py) ### Insertando y borrando filas { #add-delete-rows } Insertar una fila en un DataFrame es equivalente a [añadir una clave en un diccionario](../../../core/datastructures/dicts.md#add-modify), donde la clave es el índice (o etiqueta) de la fila en cuestión. Supongamos que queremos incluir una **nueva empresa «Cisco»**: ```pycon hl_lines="11 20" >>> cisco = pd.Series( ... {'Revenue': 51_904, 'Employees': 75_900, 'City': 'San Jose', 'Country': 'United States'} ... ) >>> cisco Revenue 51904 Employees 75900 City San Jose Country United States dtype: object >>> df_mod.loc['Cisco'] = cisco >>> df_mod.tail() Revenue Employees City Country Company Panasonic 74.280 233391.0 Tenerife Spain Accenture 73.908 721000.0 Tenerife Spain Nvidia 73.116 29600.0 Tenerife Spain IBM 72.636 303100.0 Tenerife Spain Cisco 51904.000 75900.0 San Jose United States ``` Imaginemos ahora que **Meta, Sony e Hitachi** caen en bancarrota y debemos eliminarlas de nuestro conjunto de datos: ```pycon hl_lines="1" >>> df_mod = df_mod.drop(labels=['Meta', 'Sony', 'Hitachi']) >>> df_mod.index#(1)! Index(['Amazon', 'Apple', 'Alphabet', 'Samsung Electronics', 'Foxconn', 'Microsoft', 'Jingdong', 'Alibaba', 'AT&T', 'Deutsche Telekom', 'Dell Technologies', 'Huawei', 'Tencent', 'TSMC', 'LG Electronics', 'Intel', 'HP Inc.', 'Lenovo', 'Panasonic', 'Accenture', 'Nvidia', 'IBM', 'Cisco'], dtype='object', name='Company') ``` { .annotate } 1. Las empresas eliminadas ya no aparecen en el índice. ### Insertando y borrando columnas { #add-delete-cols } Insertar una columna en un DataFrame es equivalente a [añadir una clave en un diccionario](../../../core/datastructures/dicts.md#add-modify), donde la clave es el índice (o etiqueta) de la columna en cuestión. Supongamos que queremos **añadir una columna «Expenses» (gastos)**. No manejamos esta información, así que, a modo de ejemplo, utilizaremos unos valores aleatorios: ```pycon hl_lines="6" >>> expenses = np.random.randint(50, 500, size=23) >>> expenses array([396, 183, 419, 346, 378, 481, 376, 350, 229, 226, 486, 429, 285, 291, 301, 277, 193, 55, 75, 406, 350, 372, 268]) >>> df_mod['Expenses'] = expenses >>> df_mod.head() Revenue Employees City Country Expenses Company Amazon 689.760 1525000.0 Tenerife Spain 396 Apple 473.196 146000.0 Tenerife Spain 183 Alphabet 339.408 190234.0 Tenerife Spain 419 Samsung Electronics 280.956 270372.0 Tenerife Spain 346 Foxconn 267.048 767062.0 Tenerife Spain 378 ``` En el caso de que no nos haga falta una columna podemos borrarla fácilmente. Una opción sería utilizar la sentencia `del`, pero seguiremos con el uso de funciones propias de pandas. Imaginemos que queremos **eliminar la columna «Expenses»**: ```pycon hl_lines="4" >>> df_mod.columns Index(['Revenue', 'Employees', 'City', 'Country', 'Expenses'], dtype='object') >>> df_mod = df_mod.drop(labels='Expenses', axis=1)#(1)! >>> df_mod.columns Index(['Revenue', 'Employees', 'City', 'Country'], dtype='object') ``` { .annotate } 1. Recuerda que el parámetro `axis` indica en qué «dirección» estamos trabajando. Véase el [acceso a un DataFrame](#access). !!! exercise "Ejercicio" Añade una nueva columna _Density_ a [`democan`](../files/pandas/democan.csv) de tal manera que represente la densidad de población de cada isla del archipiélago canario. [:material-lightbulb: Solución](../files/pandas/pop_density.py) ### Renombrando columnas { #rename-cols } También es posible **renombrar columnas** utilizando la función `rename()` de pandas. Supongamos un caso de uso en el que queremos **renombrar las columnas a sus tres primeras letras en minúsculas**. Tenemos dos maneras de hacerlo: === "Mediante un diccionario" ```pycon >>> new_columns = {'Revenue': 'rev', 'Employees': 'emp', 'City': 'cit', 'Country': 'cou'} >>> df_mod.rename(columns=new_columns).head(3)#(1)! rev emp cit cou Company Apple 473.196 146000.0 Tenerife Spain Alphabet 339.408 190234.0 Tenerife Spain Samsung Electronics 280.956 270372.0 Tenerife Spain ``` { .annotate } 1. Si en vez del parámetro nominal `columns` utilizamos el parámetro `index` estaremos renombrando los valores del índice. Se aplica el mismo comportamiento ya visto. === "Mediante una función «lambda»" ```pycon >>> df.rename(columns=lambda c: c.lower()[:3]).head(3)#(1)! rev emp cit cou Company Amazon 689.760 1525000 Tenerife Spain Apple 473.196 146000 Tenerife Spain Alphabet 339.408 190234 Tenerife Spain ``` { .annotate } 1. Si en vez del parámetro nominal `columns` utilizamos el parámetro `index` estaremos renombrando los valores del índice. Se aplica el mismo comportamiento ya visto. La primera sería directamente creando un «mapping» entre los nombres de columna actuales y los nombres nuevos: ### Modificación «in-situ» { #inplace } Muchas de las funciones de pandas se dicen «no destructivas» en el sentido de que no modifican el conjunto de datos original, sino que devuelven uno nuevo con las modificaciones realizadas. Pero este comportamiento se puede modificar utilizando el parámetro `inplace`. Veamos un ejemplo:material-flash: borrando algunas columnas: ```pycon hl_lines="10" >>> df_mod.head() Revenue Employees City Country Company Amazon 689.760 1525000.0 Tenerife Spain Apple 473.196 146000.0 Tenerife Spain Alphabet 339.408 190234.0 Tenerife Spain Samsung Electronics 280.956 270372.0 Tenerife Spain Foxconn 267.048 767062.0 Tenerife Spain >>> df_mod.drop(labels='Amazon', inplace=True)#(1)! >>> df_mod.head() Revenue Employees City Country Company Apple 473.196 146000.0 Tenerife Spain Alphabet 339.408 190234.0 Tenerife Spain Samsung Electronics 280.956 270372.0 Tenerife Spain Foxconn 267.048 767062.0 Tenerife Spain Microsoft 237.924 221000.0 Tenerife Spain ``` { .annotate } 1. No es necesario «reasignar» el _dataframe_ ya que `inplace=True` lo modifica «in-situ». ## Otras operaciones { #operations } Aunque hay una enorme cantidad de operaciones sobre DataFrames, en este apartado trataremos de hacer un recorrido por algunas de las más recurrentes. ### Manejando cadenas de texto { #strings } A menudo solemos trabajar con datos que incluyen información textual. Pandas también nos ofrece herramientas para cubrir estos casos. De hecho, simplemente debemos utilizar el manejador str y tendremos a disposición la gran mayoría de funciones vistas en la sección de [cadenas de texto](../../../core/datatypes/strings.md). Veamos un primer ejemplo:material-flash: en el que **pasamos a mayúsculas las ciudades** en las que se localizan las empresas tecnológicas: ```pycon >>> df['City'].str.upper().head() Company Amazon SEATTLE Apple CUPERTINO Alphabet MOUNTAIN VIEW Samsung Electronics SUWON Foxconn NEW TAIPEI CITY Name: City, dtype: object ``` Otro supuesto sería el de **sustituir espacios por subguiones en los países** de las empresas: ```pycon >>> df['Country'].str.replace(' ', '_').head() Company Amazon United_States Apple United_States Alphabet United_States Samsung Electronics South_Korea Foxconn Taiwan Name: Country, dtype: object ``` ### Expresiones regulares { #regex } El uso de expresiones regulares aporta una gran expresividad. Veamos su aplicación con tres casos de uso: === "Filtrado de filas" Supongamos que queremos **filtrar las empresas y quedarnos con las que comienzan por vocal**: ```pycon >>> import re >>> mask = df.index.str.match(r'^[aeiou]', flags=re.IGNORECASE)#(1)! >>> df[mask] Revenue Employees City Country Company Amazon 574.80 1525000 Seattle United States Apple 394.33 164000 Cupertino United States Alphabet 282.84 190234 Mountain View United States Alibaba 130.35 204891 Yuhang China AT&T 122.40 149900 Dallas United States Intel 63.05 131900 Santa Clara United States Accenture 61.59 721000 Dublin Ireland IBM 60.53 303100 Armonk United States ``` { .annotate } 1. Dado que el nombre de la empresa está actuando como índice del «dataset», hemos aplicado la búsqueda sobre `.index`. === "Reemplazo de valores" Ahora imaginemos que vamos a **sustituir aquellas ciudades que empiezan con «S» o «T» por «Stanton»**: ```pycon >>> df['City'].str.replace(r'^[ST].*', 'Stanton', regex=True).head() Company Amazon Stanton Apple Cupertino Alphabet Mountain View Samsung Electronics Stanton Foxconn New Taipei City Name: City, dtype: object ``` === "Extracción de columnas" supongamos que queremos **dividir la columna «Country»** en dos columnas usando el espacio como separador: ```pycon >>> df['Country'].str.split(' ', expand=True).head() 0 1 Company Amazon United States Apple United States Alphabet United States Samsung Electronics South Korea Foxconn Taiwan None ``` Existen otras funciones interesantes de Pandas que trabajan sobre expresiones regulares: | Función | Explicación | | --- | --- | | [`count()`](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.count.html) | Contar el número de ocurrencias de un patrón. | | [`contains()`](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.contains.html) | Comprobar si existe un determinado patrón. | | [`extract()`](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.extract.html) | Extraer grupos de captura sobre un patrón. | | [`findall()`](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.findall.html) | Encontrar todas las ocurrencias de un patrón. | ### Manejando fechas { #dates } Suele ser habitual tener que manejar datos en formato fecha (o fecha-hora). Pandas ofrece un amplio abanico de posibilidades para ello. Veamos algunas de las herramientas disponibles. Para ejemplificar este apartado hemos añadido al «dataset» de empresas tecnológicas una **nueva columna con las fechas de fundación de las empresas** (en formato «string»): ```pycon >>> founded_at = [ ... '5/7/1994', # Amazon ... '1/4/1976', # Apple ... '2/10/2015', # Alphabet ... '13/1/1969', # Samsung Electronics ... '20/2/1974', # Foxconn ... '4/4/1975', # Microsoft ... '18/6/1998', # Jingdong ... '4/4/1999', # Alibaba ... '3/3/1885', # AT&T ... '4/2/2004', # Meta ... '1/1/1995', # Deutsche Telekom ... '1/2/1984', # Dell Technologies ... '15/9/1987', # Huawei ... '7/5/1946', # Sony ... '11/11/1998', # Tencent ... '1/2/1910', # Hitachi ... '21/2/1987', # TSMC ... '1/10/1958', # LG Electronics ... '18/7/1968', # Intel ... '1/1/1939', # HP Inc. ... '1/11/1984', # Lenovo ... '7/3/1918', # Panasonic ... '1/1/1989', # Accenture ... '5/4/1993', # Nvidia ... '16/6/1911' # IBM ... ] >>> df['Founded'] = founded_at >>> df.head() Revenue Employees City Country Founded Company Amazon 574.80 1525000 Seattle United States 5/7/1994 Apple 394.33 164000 Cupertino United States 1/4/1976 Alphabet 282.84 190234 Mountain View United States 2/10/2015 Samsung Electronics 234.13 270372 Suwon South Korea 13/1/1969 Foxconn 222.54 767062 New Taipei City Taiwan 20/2/1974 >>> df['Founded'].dtype#(1)! dtype('O') ``` { .annotate } 1. Columna de tipo **object**. Lo primero que deberíamos hacer es convertir la columna «Founded» al tipo «datetime» usando la función [`to_datetime()`](https://pandas.pydata.org/docs/reference/api/pandas.to_datetime.html): ```pycon >>> df['Founded'] = pd.to_datetime(df['Founded'], format='%d/%m/%Y')#(1)! >>> df['Founded'].head() Company Amazon 1994-07-05 Apple 1976-04-01 Alphabet 2015-10-02 Samsung Electronics 1969-01-13 Foxconn 1974-02-20 Name: Founded, dtype: datetime64[ns] ``` { .annotate } 1. Dado que el formato de fecha no es [`ISO 8601`](https://es.wikipedia.org/wiki/ISO_8601) tendremos que especificar el formato con el parámetro `format`. Es posible acceder a cada elemento de la fecha: ```pycon df['fyear'] = df['Founded'].dt.year df['fmonth'] = df['Founded'].dt.month df['fday'] = df['Founded'].dt.day >>> df.loc[:, 'Founded':].head() Founded fyear fmonth fday Company Amazon 1994-07-05 1994 7 5 Apple 1976-04-01 1976 4 1 Alphabet 2015-10-02 2015 10 2 Samsung Electronics 1969-01-13 1969 1 13 Foxconn 1974-02-20 1974 2 20 ``` Por ejemplo, podríamos querer calcular el **número de años que llevan activas las empresas**: ```pycon >>> pd.to_datetime('today').year - df['Founded'].dt.year Company Amazon 31 Apple 49 Alphabet 10 Samsung Electronics 56 Foxconn 51 Microsoft 50 Jingdong 27 Alibaba 26 AT&T 140 Meta 21 Deutsche Telekom 30 Dell Technologies 41 Huawei 38 Sony 79 Tencent 27 Hitachi 115 TSMC 38 LG Electronics 67 Intel 57 HP Inc. 86 Lenovo 41 Panasonic 107 Accenture 36 Nvidia 32 IBM 114 Name: Founded, dtype: int32 ``` Los tipos de datos «datetime» dan mucha flexibilidad a la hora de hacer consultas: ```pycon >>> df.query('Founded <= 1950')#(1)! Revenue Employees City Country Founded fyear fmonth fday Company AT&T 122.40 149900 Dallas United States 1885-03-03 1885 3 3 Sony 85.25 112994 Tokyo Japan 1946-05-07 1946 5 7 Hitachi 80.39 322525 Tokyo Japan 1910-02-01 1910 2 1 HP Inc. 62.98 53000 Palo Alto United States 1939-01-01 1939 1 1 Panasonic 61.90 233391 Osaka Japan 1918-03-07 1918 3 7 IBM 60.53 303100 Armonk United States 1911-06-16 1911 6 16 >>> df.query('Founded.dt.month == 1')#(2)! Revenue Employees City Country Founded fyear fmonth fday Company Samsung Electronics 234.13 270372 Suwon South Korea 1969-01-13 1969 1 13 Deutsche Telekom 112.00 205000 Bonn Germany 1995-01-01 1995 1 1 HP Inc. 62.98 53000 Palo Alto United States 1939-01-01 1939 1 1 Accenture 61.59 721000 Dublin Ireland 1989-01-01 1989 1 1 >>> df.query('9 <= Founded.dt.month <= 12')#(3)! Revenue Employees City Country Founded fyear fmonth fday Company Alphabet 282.84 190234 Mountain View United States 2015-10-02 2015 10 2 Huawei 95.49 207000 Shenzhen China 1987-09-15 1987 9 15 Tencent 82.44 108436 Shenzhen China 1998-11-11 1998 11 11 LG Electronics 64.95 74000 Seoul South Korea 1958-10-01 1958 10 1 Lenovo 61.95 71500 Hong Kong Hong Kong 1984-11-01 1984 11 1 ``` { .annotate } 1. Empresas creadas antes de 1950. 2. Empresas creadas en Enero. 3. Empresas creadas en el último cuatrimestre del año. Hay ocasiones en las que necesitamos que **la fecha se convierta en el índice** del DataFrame: ```pycon >>> df = df.reset_index().set_index('Founded').sort_index() >>> df.head() Company Revenue Employees City Country fyear fmonth fday Founded 1885-03-03 AT&T 122.40 149900 Dallas United States 1885 3 3 1910-02-01 Hitachi 80.39 322525 Tokyo Japan 1910 2 1 1911-06-16 IBM 60.53 303100 Armonk United States 1911 6 16 1918-03-07 Panasonic 61.90 233391 Osaka Japan 1918 3 7 1939-01-01 HP Inc. 62.98 53000 Palo Alto United States 1939 1 1 ``` Esto nos permite indexar de forma mucho más precisa: ```pycon >>> df.loc['1998']#(1)! Company Revenue Employees City Country fyear fmonth fday Founded 1998-06-18 Jingdong 152.80 310000 Beijing China 1998 6 18 1998-11-11 Tencent 82.44 108436 Shenzhen China 1998 11 11 >>> df.loc['1970':'1980']#(2)! Company Revenue Employees City Country fyear fmonth fday Founded 1974-02-20 Foxconn 222.54 767062 New Taipei City Taiwan 1974 2 20 1975-04-04 Microsoft 198.27 221000 Redmond United States 1975 4 4 1976-04-01 Apple 394.33 164000 Cupertino United States 1976 4 1 >>> df.loc['1975-1':'1984-3']#(3)! Company Revenue Employees City Country fyear fmonth fday Founded 1975-04-04 Microsoft 198.27 221000 Redmond United States 1975 4 4 1976-04-01 Apple 394.33 164000 Cupertino United States 1976 4 1 1984-02-01 Dell Technologies 102.30 133000 Round Rock United States 1984 2 1 ``` { .annotate } 1. Empresas creadas en 1988. 2. Empresas creadas entre 1970 y 1980. 3. Empresas creadas entre enero de 1975 y marzo de 1984. !!! exercise "Ejercicio" Partiendo del fichero [`oasis.csv`](../files/pandas/oasis.csv) que contiene información sobre la discografía del grupo de pop británico [Oasis](https://www.oasisinet.com/), se pide: 1. Carga el fichero en un DataFrame. 2. Convierte la columna `album_release_date` a tipo «datetime». 3. Encuentra los nombres de los álbumes publicados entre 2000 y 2005. [:material-lightbulb: Solución](../files/pandas/df_oasis.py) ### Manejando categorías { #categories } Hasta ahora hemos visto tipos de datos numéricos, cadenas de texto y fechas. ¿Pero qué ocurre con las categorías? Las categorías pueden ser tanto datos numéricos como textuales, con la característica de tener un número discreto (relativamente pequeño) de elementos y, en ciertas ocasiones, un orden preestablecido. Ejemplos de variables categóricas son: género, idioma, meses del año, color de ojos, nivel de estudios, grupo sanguíneo, valoración, etc. Pandas facilita el [tratamiento de datos categóricos](https://pandas.pydata.org/pandas-docs/stable/user_guide/categorical.html) mediante un tipo específico `Categorical`. Siguiendo con el «dataset» de empresas tecnológicas, vamos a añadir el continente al que pertenece cada empresa. En primera instancia mediante valores de texto habituales: ```pycon >>> continents_from = [ ... 'America', # Amazon ... 'America', # Apple ... 'America', # Alphabet ... 'Asia', # Samsung Electronics ... 'Asia', # Foxconn ... 'America', # Microsoft ... 'Asia', # Jingdong ... 'Asia', # Alibaba ... 'America', # AT&T ... 'America', # Meta ... 'Europe', # Deutsche Telekom ... 'America', # Dell Technologies ... 'Asia', # Huawei ... 'Asia', # Sony ... 'Asia', # Tencent ... 'Asia', # Hitachi ... 'Asia', # TSMC ... 'Asia', # LG Electronics ... 'America', # Intel ... 'America', # HP Inc. ... 'Asia', # Lenovo ... 'Asia', # Panasonic ... 'Europe', # Accenture ... 'America', # Nvidia ... 'America' # IBM ... ] >>> df['Continent'] = continents_from >>> df['Continent'].head() Company Amazon America Apple America Alphabet America Samsung Electronics Asia Foxconn Asia Name: Continent, dtype: object ``` Ahora podemos convertir esta columna a tipo categoría: ```pycon >>> df['Continent'].astype('category') Company Amazon America Apple America Alphabet America Samsung Electronics Asia Foxconn Asia Microsoft America Jingdong Asia Alibaba Asia AT&T America Meta America Deutsche Telekom Europe Dell Technologies America Huawei Asia Sony Asia Tencent Asia Hitachi Asia TSMC Asia LG Electronics Asia Intel America HP Inc. America Lenovo Asia Panasonic Asia Accenture Europe Nvidia America IBM America Name: Continent, dtype: category Categories (3, object): ['America', 'Asia', 'Europe'] ``` En este caso, al ser una conversión «automática», las categorías no han incluido ningún tipo de orden. Pero imaginemos que queremos establecer un orden para las categorías de continentes basadas, por ejemplo, en su población: Asia, África, Europa, América, Australia: ```pycon hl_lines="4 35" >>> from pandas.api.types import CategoricalDtype >>> continents = ('Asia', 'Africa', 'Europe', 'America', 'Australia') >>> cat_continents = CategoricalDtype(categories=continents, ordered=True) >>> df['Continent'] = df['Continent'].astype(cat_continents) >>> df['Continent] Company Amazon America Apple America Alphabet America Samsung Electronics Asia Foxconn Asia Microsoft America Jingdong Asia Alibaba Asia AT&T America Meta America Deutsche Telekom Europe Dell Technologies America Huawei Asia Sony Asia Tencent Asia Hitachi Asia TSMC Asia LG Electronics Asia Intel America HP Inc. America Lenovo Asia Panasonic Asia Accenture Europe Nvidia America IBM America Name: Continent, dtype: category Categories (5, object): ['Asia' < 'Africa' < 'Europe' < 'America' < 'Australia'] ``` El hecho de trabajar con **categorías ordenadas** permite (entre otras) estas operaciones: ```pycon >>> df['Continent'].min()#(1)! 'Asia' >>> df['Continent'].max()#(2)! 'America' >>> df['Continent'].sort_values()#(3)! Company Huawei Asia Panasonic Asia Samsung Electronics Asia Foxconn Asia Lenovo Asia Jingdong Asia Alibaba Asia LG Electronics Asia TSMC Asia Sony Asia Tencent Asia Hitachi Asia Accenture Europe Deutsche Telekom Europe HP Inc. America Intel America Amazon America Dell Technologies America Meta America AT&T America Microsoft America Alphabet America Apple America Nvidia America IBM America Name: Continent, dtype: category Categories (5, object): ['Asia' < 'Africa' < 'Europe' < 'America' < 'Australia'] ``` { .annotate } 1. En condiciones normales (categorías sin ordenar) el mínimo hubiera sido America ya que se habrían ordenado alfabéticamente. 2. En condiciones normales (categorías sin ordenar) el máximo hubiera sido Asia ya que se habrían ordenado alfabéticamente. 3. La ordenación se verá más adelante pero en este caso ordenamos la columna por sus valores. ### Usando funciones estadísticas { #stats } Vamos a aplicar las funciones estadísticas que proporciona pandas sobre la columna _Revenue_ de nuestro «dataset», aunque podríamos hacerlo sobre todas aquellas variables numéricas susceptibles: ```pycon >>> df['Revenue'].head() Company Amazon 574.80 Apple 394.33 Alphabet 282.84 Samsung Electronics 234.13 Foxconn 222.54 Name: Revenue, dtype: float64 ``` Función|Resultado|Descripción ---|---|--- `df['Revenue'].count()`|25|Número de observaciones no nulas `df['Revenue'].sum()`|3560.84|Suma de los valores `df['Revenue'].mean()`|142.43|Media de los valores `df['Revenue'].median()`|95.49|Mediana de los valores `df['Revenue'].min()`|60.53|Mínimo `df['Revenue'].max()`|574.80|Máximo `df['Revenue'].mode()`|Múltiples valores|Moda `df['Revenue'].abs()`|Múltiples valores|Valor absoluto `df['Revenue'].prod()`|1.98e+51|Producto de los valores `df['Revenue'].std()`|122.60|Desviación típica `df['Revenue'].var()`|15029.56|Varianza `df['Revenue'].sem()`|24.52|Error típico de la media `df['Revenue'].skew()`|2.35|Asimetría `df['Revenue'].kurt()`|6.03|Apuntamiento `df['Revenue'].quantile()`|95.49|Cuantiles (por defecto 50%) `df['Revenue'].cumsum()`|Múltiples valores|Suma acumulativa `df['Revenue'].cumprod()`|Múltiples valores|Producto acumulativo `df['Revenue'].cummax()`|Múltiples valores|Máximo acumulativo `df['Revenue'].cummin()`|Múltiples valores|Mínimo acumulativo !!! exercise "Ejercicio" Partiendo del conjunto de datos [`democan`](../files/pandas/democan.csv), encuentra aquellas islas cuya población está por encima de la media del archipiélago canario. Resultado esperado :material-arrow-right-bold: Gran Canaria y Tenerife. [:material-lightbulb: Solución](../files/pandas/above_mean.py) ### Ordenando valores { #sort } Una operación muy típica cuando trabajamos con datos es la de ordenarlos en base a ciertos criterios. Veamos cómo podemos hacerlo utilizando pandas. Volvemos a nuestro «dataset» tecnológico: ```pycon >>> df.head() Revenue Employees City Country Company Amazon 574.80 1525000 Seattle United States Apple 394.33 164000 Cupertino United States Alphabet 282.84 190234 Mountain View United States Samsung Electronics 234.13 270372 Suwon South Korea Foxconn 222.54 767062 New Taipei City Taiwan ``` Supongamos que queremos tener el conjunto de datos **ordenado por el nombre de empresa**. Como, en este caso, la columna _Company_ constituye el índice, debemos ordenar por el índice: ```pycon >>> df.sort_index() Revenue Employees City Country Company AT&T 122.40 149900 Dallas United States Accenture 61.59 721000 Dublin Ireland Alibaba 130.35 204891 Yuhang China Alphabet 282.84 190234 Mountain View United States Amazon 574.80 1525000 Seattle United States Apple 394.33 164000 Cupertino United States Dell Technologies 102.30 133000 Round Rock United States Deutsche Telekom 112.00 205000 Bonn Germany Foxconn 222.54 767062 New Taipei City Taiwan HP Inc. 62.98 53000 Palo Alto United States Hitachi 80.39 322525 Tokyo Japan Huawei 95.49 207000 Shenzhen China IBM 60.53 303100 Armonk United States Intel 63.05 131900 Santa Clara United States Jingdong 152.80 310000 Beijing China LG Electronics 64.95 74000 Seoul South Korea Lenovo 61.95 71500 Hong Kong Hong Kong Meta 116.61 86482 Menlo Park United States Microsoft 198.27 221000 Redmond United States Nvidia 60.93 29600 Santa Clara United States Panasonic 61.90 233391 Osaka Japan Samsung Electronics 234.13 270372 Suwon South Korea Sony 85.25 112994 Tokyo Japan TSMC 76.02 73090 New Taipei City Taiwan Tencent 82.44 108436 Shenzhen China ``` Ahora imaginemos que necesitamos tener las **empresas ordenadas de mayor a menor número de ingresos**: ```pycon >>> df.sort_index() Revenue Employees City Country Company AT&T 122.40 149900 Dallas United States Accenture 61.59 721000 Dublin Ireland Alibaba 130.35 204891 Yuhang China Alphabet 282.84 190234 Mountain View United States Amazon 574.80 1525000 Seattle United States Apple 394.33 164000 Cupertino United States Dell Technologies 102.30 133000 Round Rock United States Deutsche Telekom 112.00 205000 Bonn Germany Foxconn 222.54 767062 New Taipei City Taiwan HP Inc. 62.98 53000 Palo Alto United States Hitachi 80.39 322525 Tokyo Japan Huawei 95.49 207000 Shenzhen China IBM 60.53 303100 Armonk United States Intel 63.05 131900 Santa Clara United States Jingdong 152.80 310000 Beijing China LG Electronics 64.95 74000 Seoul South Korea Lenovo 61.95 71500 Hong Kong Hong Kong Meta 116.61 86482 Menlo Park United States Microsoft 198.27 221000 Redmond United States Nvidia 60.93 29600 Santa Clara United States Panasonic 61.90 233391 Osaka Japan Samsung Electronics 234.13 270372 Suwon South Korea Sony 85.25 112994 Tokyo Japan TSMC 76.02 73090 New Taipei City Taiwan Tencent 82.44 108436 Shenzhen China >>> df.sort_values(by='Revenue', ascending=False) Revenue Employees City Country Company Amazon 574.80 1525000 Seattle United States Apple 394.33 164000 Cupertino United States Alphabet 282.84 190234 Mountain View United States Samsung Electronics 234.13 270372 Suwon South Korea Foxconn 222.54 767062 New Taipei City Taiwan Microsoft 198.27 221000 Redmond United States Jingdong 152.80 310000 Beijing China Alibaba 130.35 204891 Yuhang China AT&T 122.40 149900 Dallas United States Meta 116.61 86482 Menlo Park United States Deutsche Telekom 112.00 205000 Bonn Germany Dell Technologies 102.30 133000 Round Rock United States Huawei 95.49 207000 Shenzhen China Sony 85.25 112994 Tokyo Japan Tencent 82.44 108436 Shenzhen China Hitachi 80.39 322525 Tokyo Japan TSMC 76.02 73090 New Taipei City Taiwan LG Electronics 64.95 74000 Seoul South Korea Intel 63.05 131900 Santa Clara United States HP Inc. 62.98 53000 Palo Alto United States Lenovo 61.95 71500 Hong Kong Hong Kong Panasonic 61.90 233391 Osaka Japan Accenture 61.59 721000 Dublin Ireland Nvidia 60.93 29600 Santa Clara United States IBM 60.53 303100 Armonk United States ``` También es posible utilizar varias columnas en la ordenación. Pongamos que deseamos **ordenar los datos por país y por ciudad**. Veamos cómo afrontarlo: ```pycon >>> df.sort_values(by=['Country', 'City']) Revenue Employees City Country Company Jingdong 152.80 310000 Beijing China Huawei 95.49 207000 Shenzhen China Tencent 82.44 108436 Shenzhen China Alibaba 130.35 204891 Yuhang China Deutsche Telekom 112.00 205000 Bonn Germany Lenovo 61.95 71500 Hong Kong Hong Kong Accenture 61.59 721000 Dublin Ireland Panasonic 61.90 233391 Osaka Japan Sony 85.25 112994 Tokyo Japan Hitachi 80.39 322525 Tokyo Japan LG Electronics 64.95 74000 Seoul South Korea Samsung Electronics 234.13 270372 Suwon South Korea Foxconn 222.54 767062 New Taipei City Taiwan TSMC 76.02 73090 New Taipei City Taiwan IBM 60.53 303100 Armonk United States Apple 394.33 164000 Cupertino United States AT&T 122.40 149900 Dallas United States Meta 116.61 86482 Menlo Park United States Alphabet 282.84 190234 Mountain View United States HP Inc. 62.98 53000 Palo Alto United States Microsoft 198.27 221000 Redmond United States Dell Technologies 102.30 133000 Round Rock United States Intel 63.05 131900 Santa Clara United States Nvidia 60.93 29600 Santa Clara United States Amazon 574.80 1525000 Seattle United States ``` ### Buscando máximos y mínimos { #max-min } Al igual que veíamos [en el caso de las series](series.md#series-ops), podemos aplicar muchas de estas funciones de máximos y mínimos sobre un DataFrame de Pandas. Podemos obtener los **valores mínimos y máximos de todas las columnas**: ```pycon >>> df.min() Revenue 60.53 Employees 29600 City Armonk Country China dtype: object >>> df.max() Revenue 574.8 Employees 1525000 City Yuhang Country United States dtype: object ``` También podría ser de utilidad saber **qué empresa tiene el valor mínimo o máximo** para una determinada columna: ```pycon >>> df['Revenue'].idxmin()#(1)! 'IBM' >>> df['Employees'].idxmax()#(2)! 'Amazon' ``` { .annotate } 1. - Empresa con menores ingresos. - Devuelve una cadena de texto con el nombre de la empresa porque así lo tenemos definido en el índice. En otro caso devolvería la posición (numérica) del índice. 2. - Empresa con mayor números de empleados/as. - Devuelve una cadena de texto con el nombre de la empresa porque así lo tenemos definido en el índice. En otro caso devolvería la posición (numérica) del índice. Si queremos acceder al **registro completo**, basta con acceder a través de la etiqueta devuelta: ```pycon >>> company = df['Revenue'].idxmin() >>> df.loc[company] Revenue 60.53 Employees 303100 City Armonk Country United States Name: IBM, dtype: object ``` Otra de las operaciones muy usuales es encontrar los $n$ registros con mayores/menores valores. Supongamos que nos interesa conocer las **3 empresas con mayores ingresos y las 3 empresas con menor número de empleados/as**: ```pycon >>> df['Revenue'].nlargest(3)#(1)! Company Amazon 574.80 Apple 394.33 Alphabet 282.84 Name: Revenue, dtype: float64 >>> df['Employees'].nsmallest(3)#(2)! Company Nvidia 29600 HP Inc. 53000 Lenovo 71500 Name: Employees, dtype: int64 ``` { .annotate } 1. - Las tres empresas con mayores ingresos. - Si no se especifica una cantidad, la función `nlargest()` lo tiene definido en 5. 2. - Las tres empresas con menor número de empleados/as. - Si no se especifica una cantidad, la función `nsmallest()` lo tiene definido en 5. Si queremos acceder al **registro completo**, podemos aplicar estas funciones de otro modo: ```pycon >>> df.nlargest(3, 'Revenue') Revenue Employees City Country Company Amazon 574.80 1525000 Seattle United States Apple 394.33 164000 Cupertino United States Alphabet 282.84 190234 Mountain View United States >>> df.nsmallest(3, 'Employees') Revenue Employees City Country Company Nvidia 60.93 29600 Santa Clara United States HP Inc. 62.98 53000 Palo Alto United States Lenovo 61.95 71500 Hong Kong Hong Kong ``` !!! exercise "Ejercicio" Partiendo del conjunto de datos [`democan`](../files/pandas/democan.csv) encuentra las 3 islas con menor densidad de población incluyendo el resto de su información (en cada fila). Resultado esperado :material-arrow-right-bold: El Hierro, La Gomera y Fuerteventura. [:material-lightbulb: Solución](../files/pandas/smallest_density.py) ### Gestionando valores nulos { #null } La limpieza de un «dataset» suele estar vinculado, en muchas ocasiones, a la gestión de los valores nulos. En este sentido, pandas ofrece varias funciones. Para ejemplificar este apartado, vamos a hacer uso del siguiente DataFrame: ```pycon >>> df A B C 0 1 4.0 7.0 1 2 NaN 8.0 2 3 6.0 NaN ``` Veamos distintas aproximaciones a la gestión de valores nulos: === "Detectar valores nulos" ```pycon >>> df.isna()#(1)! A B C 0 False False False 1 False True False 2 False False True ``` { .annotate } 1. También existe la función `isnull()` que funciona de manera análoga a `isna()`[^5]. === "Descartar registros" ```pycon >>> df.dropna() A B C 0 1 4.0 7.0 ``` === "Rellenar valores nulos" ```pycon >>> df.fillna(0) A B C 0 1 4.0 0.0 1 2 0.0 0.0 2 3 6.0 9.0 ``` === "Interpolar valores nulos" ```pycon >>> df.interpolate() A B C 0 1 4.0 7.0 1 2 5.0 8.0 2 3 6.0 8.0 ``` ### Pivotando { #pivot } En esta sección se verán las operaciones de **pivotar** y **apilar** que permiten reformar (remodelar) un DataFrame. Seguimos utilizando el conjunto de datos de empresas tecnológicas aunque nos quedaremos únicamente con las 3 primeras filas a efectos didácticos: ```pycon >>> df = df.reset_index()[:3] >>> df Company Revenue Employees City Country 0 Amazon 574.80 1525000 Seattle United States 1 Apple 394.33 164000 Cupertino United States 2 Alphabet 282.84 190234 Mountain View United States ``` === "Pivotar" Típicamente existen dos maneras de presentar datos tabulares: formato ancho y formato largo. En **formato ancho** cada fila tiene múltiples columnas representando todas las variables de una misma observación. En **formato largo** cada fila tiene básicamente tres columnas: una que identifica la observación, otra que identifica la variable y otra que contiene el valor. Para pasar de formato ancho a formato largo usamos la función [`melt()`](https://pandas.pydata.org/docs/reference/api/pandas.melt.html): ```pycon >>> df.melt(id_vars='Company') Company variable value 0 Amazon Revenue 574.8 1 Apple Revenue 394.33 2 Alphabet Revenue 282.84 3 Amazon Employees 1525000 4 Apple Employees 164000 5 Alphabet Employees 190234 6 Amazon City Seattle 7 Apple City Cupertino 8 Alphabet City Mountain View 9 Amazon Country United States 10 Apple Country United States 11 Alphabet Country United States ``` Para pasar de formato largo a formato ancho usamos la función [`pivot()`](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.pivot.html): ```pycon >>> df_long = df.melt(id_vars='Company') >>> df_long.pivot(index='Company', columns='variable', values='value')#(1)! variable City Country Employees Revenue Company Alphabet Mountain View United States 190234 282.84 Amazon Seattle United States 1525000 574.8 Apple Cupertino United States 164000 394.33 ``` { .annotate } 1. Si queremos obtener el DataFrame en formato ancho, tal y como estaba, tenemos que realizar alguna operación adicional :material-arrow-right-bold: `#!python df.rename_axis(columns = None).reset_index()`. === "Apilar" Las operaciones de apilado trabajan sobre los índices del DataFrame. Para comprobar su aplicabilidad, vamos a añadir la columna _Company_ como índice del «dataset» anterior: ```pycon >>> df.set_index('Company', inplace=True) >>> df Revenue Employees City Country Company Amazon 574.80 1525000 Seattle United States Apple 394.33 164000 Cupertino United States Alphabet 282.84 190234 Mountain View United States ``` La función [`stack()`](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.stack.html) nos permite obtener un DataFrame con **índice multinivel** que incluye las columnas del DataFrame de origen y los valores agrupados: ```pycon >>> df_stacked = df.stack() >>> df_stacked#(1)! Company Amazon Revenue 574.8 Employees 1525000 City Seattle Country United States Apple Revenue 394.33 Employees 164000 City Cupertino Country United States Alphabet Revenue 282.84 Employees 190234 City Mountain View Country United States dtype: object ``` { .annotate } 1. El índice contiene múltiples columnas: ```pycon >>> df_stacked.index MultiIndex([( 'Amazon', 'Revenue'), ( 'Amazon', 'Employees'), ( 'Amazon', 'City'), ( 'Amazon', 'Country'), ( 'Apple', 'Revenue'), ( 'Apple', 'Employees'), ( 'Apple', 'City'), ( 'Apple', 'Country'), ('Alphabet', 'Revenue'), ('Alphabet', 'Employees'), ('Alphabet', 'City'), ('Alphabet', 'Country')], names=['Company', None]) ``` La función [`unstack()`](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.unstack.html) realiza justo la operación contraria: convertir un DataFrame con índice multinivel en un Dataframe en formato ancho con índice sencillo. Se podría ver como una manera de aplanar el «dataset»: ```pycon >>> df_flat = df_stacked.unstack() >>> df_flat#(1)! Revenue Employees City Country Company Amazon 574.8 1525000 Seattle United States Apple 394.33 164000 Cupertino United States Alphabet 282.84 190234 Mountain View United States ``` 1. El índice contiene una única columna: ```pycon >>> df_flat.index Index(['Amazon', 'Apple', 'Alphabet'], dtype='object', name='Company') ``` ### Agrupando datos { #groupby } Las operaciones de agregado son muy recurridas y nos permiten extraer información relevante, que, a simple vista, quizás no sea tan evidente. Veamos un ejemplo en el que calculamos **la suma de los ingresos de las empresas, agrupados por país**: ```pycon >>> df.groupby('Country')['Revenue'].sum() Country China 461.08 Germany 112.00 Hong Kong 61.95 Ireland 61.59 Japan 227.54 South Korea 299.08 Taiwan 298.56 United States 2039.04 Name: Revenue, dtype: float64 ``` También es posible realizar la agrupación en varios niveles. En el siguiente ejemplo tendremos los **datos agrupados por país y ciudad**: ```pycon >>> df.groupby(['Country', 'City'])['Revenue'].sum()#(1)! Country City China Beijing 152.80 Shenzhen 177.93 Yuhang 130.35 Germany Bonn 112.00 Hong Kong Hong Kong 61.95 Ireland Dublin 61.59 Japan Osaka 61.90 Tokyo 165.64 South Korea Seoul 64.95 Suwon 234.13 Taiwan New Taipei City 298.56 United States Armonk 60.53 Cupertino 394.33 Dallas 122.40 Menlo Park 116.61 Mountain View 282.84 Palo Alto 62.98 Redmond 198.27 Round Rock 102.30 Santa Clara 123.98 Seattle 574.80 Name: Revenue, dtype: float64 ``` { .annotate } 1. Cuando realizamos una agrupación por varias columnas, el resultado contiene un índice de múltiples niveles. Podemos aplanar el DataFrame usando [`unstack()`](https://aprendepython.es/pypi/datascience/pandas/#reformando-datos). Incluso podemos aplicar distintas funciones de agregación a cada columna. Supongamos que necesitamos calcular **la media de los ingresos y la mediana del número de empleados/as, con las empresas agrupadas por país**: ```pycon >>> df.groupby('Country').agg({'Revenue': 'mean', 'Employees': 'median'})#(1)! Revenue Employees Country China 115.270000 205945.5 Germany 112.000000 205000.0 Hong Kong 61.950000 71500.0 Ireland 61.590000 721000.0 Japan 75.846667 233391.0 South Korea 149.540000 172186.0 Taiwan 149.280000 420076.0 United States 185.367273 149900.0 ``` { .annotate } 1. Utilizamos la función `agg()` pasando un diccionario cuyas claves son nombres de columnas y cuyos valores son funciones a aplicar. !!! exercise "Ejercicio" Calcula el porcentaje de población (en relación con el total) de cada provincia de las Islas Canarias en base al «dataset» [`democan`](../files/pandas/democan.csv). El resultado debería ser similar a: - Provincia de Las Palmas: 52% - Provincia de Santa Cruz de Tenerife: 48% [:material-lightbulb: Solución](../files/pandas/pop_percentage.py) ### Aplicando funciones { #apply } Pandas permite la aplicación de funciones (tanto propias como «built-in») a filas y/o columnas de un DataFrame. Numpy nos ofrece una [amplia gama de funciones matemáticas](https://numpy.org/doc/stable/reference/routines.math.html). Podemos hacer uso de cualquier de ellas aplicándola directamente a nuestro conjunto de datos. Veamos un ejemplo en el que obtenemos el **máximo de cada columna**: ```pycon >>> df.apply(np.max)#(1)! Revenue 574.8 Employees 1525000 City Yuhang Country United States dtype: object ``` { .annotate } 1. En este caso es equivalente a `df.max()` Podemos aplicar funciones sobre determinadas columnas. Supongamos que queremos obtener el **logaritmo de la serie de ingresos**: ```pycon >>> df['Revenue'].apply(np.log) Company Amazon 6.354022 Apple 5.977188 Alphabet 5.644881 Samsung Electronics 5.455877 Foxconn 5.405107 Microsoft 5.289630 Jingdong 5.029130 Alibaba 4.870223 AT&T 4.807294 Meta 4.758835 Deutsche Telekom 4.718499 Dell Technologies 4.627910 Huawei 4.559022 Sony 4.445588 Tencent 4.412071 Hitachi 4.386890 TSMC 4.330996 LG Electronics 4.173618 Intel 4.143928 HP Inc. 4.142817 Lenovo 4.126328 Panasonic 4.125520 Accenture 4.120500 Nvidia 4.109726 IBM 4.103139 Name: Revenue, dtype: float64 ``` Ahora imaginemos un escenario en el que **la normativa de Estados Unidos ha cambiado y obliga a sus empresas tecnológicas a aumentar un 5% el número de empleados/as que tienen**. Esto lo podríamos abordar escribiendo una función propia que gestione cada fila del «dataset» y devuelva el valor adecuado de empleados/as según las características de cada empresa: ```pycon >>> def raise_employment(row): ... num_employees = row['Employees'] ... if row['Country'] == 'United States': ... return num_employees * 1.05 ... return num_employees ``` Ahora ya podemos aplicar esta función a nuestro DataFrame, teniendo en cuenta que debemos actuar sobre el **eje de filas** (`axis=1`): ```pycon >>> df.apply(raise_employment, axis=1) Company Amazon 1601250.0 Apple 172200.0 Alphabet 199745.7 Samsung Electronics 270372.0 Foxconn 767062.0 Microsoft 232050.0 Jingdong 310000.0 Alibaba 204891.0 AT&T 157395.0 Meta 90806.1 Deutsche Telekom 205000.0 Dell Technologies 139650.0 Huawei 207000.0 Sony 112994.0 Tencent 108436.0 Hitachi 322525.0 TSMC 73090.0 LG Electronics 74000.0 Intel 138495.0 HP Inc. 55650.0 Lenovo 71500.0 Panasonic 233391.0 Accenture 721000.0 Nvidia 31080.0 IBM 318255.0 dtype: float64 ``` El resultado es una serie que se podría incorporar al conjunto de datos, o bien, reemplazar la columna _Employees_ con estos valores. !!! exercise "Ejercicio" Supongamos que el Gobierno de Canarias va a dar unas ayudas a cada isla en función de su superficie y su población, con las siguientes reglas: - Islas con menos de $1000km^2$ :material-arrow-right-bold: Ayuda del 30% de su población. - Islas con más de $1000km^2$ :material-arrow-right-bold: Ayuda del 20% de su población. Añade una nueva columna Grant al «dataset» [`democan`](../files/pandas/democan.csv) donde se contemplen estas ayudas. El DataFrame debería quedar así: ```pycon Population Area Province Grant Island El Hierro 11423 268.71 TF 3426.9 Fuerteventura 120021 1665.74 LP 24004.2 Gran Canaria 853262 1560.10 LP 170652.4 La Gomera 21798 369.76 TF 6539.4 Lanzarote 156112 888.07 LP 46833.6 La Palma 83439 708.32 TF 25031.7 Tenerife 931646 2034.38 TF 186329.2 ``` [:material-lightbulb: Solución](../files/pandas/grants.py) ### Uniendo DataFrames { #merge } En esta sección veremos dos técnicas: Una de ellas «fusiona» dos DataFrames mientras que la otra los «concatena». === "Fusión de DataFrames" Pandas proporciona la función [`merge()`](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.merge.html) para mezclar dos DataFrames. El comportamiento de la función viene definido, entre otros, por el parámetro `how` que establece el método de «fusión»: ![Dark image](../images/pandas/pandas-merge-dark.svg#only-dark) ![Light image](../images/pandas/pandas-merge-light.svg#only-light) En principio, si no establecemos ningún argumento adicional, «merge» tratará de vincular aquellas filas con columnas homónimas en ambos conjuntos de datos. Si queremos especificar que la mezcla se dirija por determinadas columnas, tenemos a disposición los parámetros `on`, `left_on` o `right_on`. !!! tip "Producto cartesiano" Existe la posibilidad de generar un [producto cartesiano](https://es.wikipedia.org/wiki/Producto_cartesiano) entre las filas de ambos DataFrames :material-arrow-right-bold: `#!python pd.merge(df1, df2, how='cross')`. === "Concatenación de DataFrames" Para concatenar dos DataFrames podemos utilizar la función [`concat()`](https://pandas.pydata.org/docs/reference/api/pandas.concat.html) que permite añadir las filas de un DataFrame a otro, o bien añadir las columnas de un DataFrame a otro. ![Dark image](../images/pandas/pandas-concat-dark.svg#only-dark) ![Light image](../images/pandas/pandas-concat-light.svg#only-light) Si queremos «reindexar» el DataFrame concatenado, la función `concat()` admite un parámetro `ignore_index` que podemos poner a `#!python True`. De esta forma tendremos un «dataset» resultante con índice desde 0 hasta N. !!! exercise "Ejercicio" Extrae los datos de población y superficie de las comunidades autónomas españolas desde [esta url de Wikipedia](https://es.wikipedia.org/wiki/Comunidad_aut%C3%B3noma) en un único DataFrame con la siguiente estructura: ```pycon Comunidad Superficie Población Densidad 0 Castilla y León 94226 2407650 25.551865 1 Andalucía 87268 8379248 96.017418 2 Casstilla-La Mancha 79463 2025510 25.489976 ... ``` Notas: - Utiliza la función `pd.read_html()` para acceder a las tablas. La tabla de superficie tiene el índice 3 y la tabla de población tiene el índice 4. - Elimina la última fila de totales en cada DataFrame y quédese sólo con las columnas que interesen. - Renombra las columnas según interese. - Reemplaza los valores de población y superficie para que sean números y convierta las columnas a entero. - Realiza la mezcla de población y superficie en un único DataFrame. - Calcula la densidad de población de cada comunidad autónoma. [:material-lightbulb: Solución](../files/pandas/comunidades.py) [^1]: Datos capturados desde [Wikipedia](https://en.wikipedia.org/wiki/List_of_largest_technology_companies_by_revenue) en abril de 2025. [^2]: Datos capturados desde [Wikipedia](https://es.wikipedia.org/wiki/Canarias) en abril de 2025. [^3]: Un billón de dólares americanos equivale a 1.000.000.000$ [^4]: Exceso de tiempo de cómputacion, memoria o ancho de banda que son necesarios para realizar una tarea específica. [^5]: Comparativa de ambas funciones en [StackExchange](https://datascience.stackexchange.com/a/37879). ================================================ FILE: docs/third-party/data-science/pandas/index.md ================================================ --- icon: simple/pandas tags: - Paquetes de terceros - Ciencia de datos - Pandas --- # Pandas { #pandas } ![Banner](../images/pandas/banner.jpg) ///caption Imagen generada con Inteligencia Artificial /// [`pandas`](https://pandas.pydata.org/docs/) es un paquete «open-source» especializada en la manipulación y el análisis de datos, ofreciendo estructuras de datos y operaciones para trabajar de forma sencilla y potente con gran cantidad de información. ## Instalación { #install } ```console pip install pandas ``` ## Modo de uso { #usage } La forma más habitual de importar esta librería es utilizar el alias `pd`: ```pycon >>> import pandas as pd ``` Si bien en [NumPy](../numpy.md) la estructura de datos fundamental es el `ndarray`, en pandas existen dos estructuras de datos sobre las que giran todas las operaciones: - [x] [Series](series.md). - [x] [Dataframes](dataframes.md). ================================================ FILE: docs/third-party/data-science/pandas/series.md ================================================ --- icon: octicons/pivot-column-24 tags: - Paquetes de terceros - Ciencia de datos - Pandas --- # Series { #series } Podríamos pensar en una **serie** como un [`ndarray`](../numpy.md#ndarray) en el que cada valor tiene asignado una etiqueta (índice) y además admite un título (nombre). ## Creación { #create } Veamos varios _mecanismos de creación de series_, con el objetivo de conseguir los valores $[1,2,3]$: === "Usando una lista" ```pycon >>> pd.Series([1, 2, 3]) 0 1 1 2 2 3 dtype: int64 ``` !!! note "Índice por defecto" El índice por defecto (etiquetas de los datos) empieza en 0 y usa números enteros positivos. === "Con índice personalizado" ```pycon >>> pd.Series(range(1, 4), index=['a', 'b', 'c']) a 1 b 2 c 3 dtype: int64 ``` === "Usando un diccionario" ```pycon >>> items = {'a': 1, 'b': 2, 'c': 3} >>> pd.Series(items) a 1 b 2 c 3 dtype: int64 ``` Ninguna de las series anteriores tienen nombre. Lo podemos hacer usando el parámetro `name` en la creación de la serie: ```pycon >>> pd.Series([1, 2, 3], name='integers') 0 1 1 2 2 3 Name: integers, dtype: int64 ``` !!! exercise "Ejercicio" Crea una serie de pandas con valores enteros en el intervalo $[1,26]$ y etiquetas `'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`. Busca una manera ^^programática^^ (no manual) de hacerlo (recuerda el módulo [`string`](../../../stdlib/text-processing/string.md)). [:material-lightbulb: Solución](../files/pandas/create_series.py) ## Atributos { #attrs } Las [series](https://pandas.pydata.org/docs/reference/api/pandas.Series.html) en pandas contienen gran cantidad de atributos. A continuación destacaremos algunos de ellos. Para ilustrar los diferentes ejemplos:material-flash: de todo este capítulo vamos a usar datos de **gases nobles**[^1]:
- Construcción de la serie: ```pycon >>> density = pd.Series({#(1)! ... 'Helio': 0.1785, ... 'Neón': 0.9002, ... 'Argón': 1.7818, ... 'Kriptón': 3.708, ... 'Xenón': 5.851, ... 'Radón': 9.97 ... }, name='Gas Density') ``` { .annotate } 1. Densidad de los gases nobles medida en $kg/m^3$ - Visualización de la serie: ```pycon >>> density Helio 0.1785 Neón 0.9002 Argón 1.7818 Kriptón 3.7080 Xenón 5.8510 Radón 9.9700 Name: Gas Density, dtype: float64 ```
=== "Índice" ```pycon >>> density.index Index(['Helio', 'Neón', 'Argón', 'Kriptón', 'Xenón', 'Radón'], dtype='object') ``` === "Valores" ```pycon >>> density.values array([0.1785, 0.9002, 1.7818, 3.708 , 5.851 , 9.97 ]) ``` === "Tipo de datos" ```pycon >>> density.dtype dtype('float64') ``` === "Nombre" ```pycon >>> density.name 'Gas Density' ``` === "Memoria ocupada" ```pycon >>> employees.nbytes 48 ``` === "Número de registros" ```pycon >>> employees.size 6 ``` ## Selección de registros { #record-select } La selección de los datos se puede realizar desde múltiples aproximaciones. A continuación veremos las posiblidades que nos ofrece pandas para seleccionar/filtrar los registros de una serie. ### Selección usando indexado numérico { #index-select } Para acceder a los registros por su posición (índice numérico) utilizamos el atributo `.iloc`: ```pycon >>> density.iloc[0]#(1)! np.float64(0.1785) >>> density.iloc[-1] np.float64(9.97) >>> density.iloc[2:5] Argón 1.7818 Kriptón 3.7080 Xenón 5.8510 Name: Gas Density, dtype: float64 >>> density.iloc[1:6:2] Neón 0.9002 Kriptón 3.7080 Radón 9.9700 Name: Gas Density, dtype: float64 ``` { .annotate } 1. El uso `density[0]` está obsoleto y se recomienda la migración a `density.iloc[0]`. En caso de usarlo obtendríamos el siguiente _warning_: `FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use ser.iloc[pos]`. ### Selección usando etiquetas { #label-select } En el caso de aquellas series que dispongan de un índice con etiquetas, podemos acceder a sus registros utilizando el atributo `loc`: ```pycon >>> density.loc['Helio']#(1)! np.float64(0.1785) >>> density['Helio':'Xenón'] Helio 0.1785 Neón 0.9002 Argón 1.7818 Kriptón 3.7080 Xenón 5.8510 Name: Gas Density, dtype: float64 >>> density['Helio':'Xenón':2] Helio 0.1785 Argón 1.7818 Xenón 5.8510 Name: Gas Density, dtype: float64 ``` { .annotate } 1. Equivale a la sintaxis :material-arrow-right-bold: `#!python density['Helio']` o incluso a `#!python density.Helio`. ### Fragmentos de comienzo y fin { #head-tail } A nivel exploratorio, es bastante cómodo acceder a una porción inicial (o final) de los datos que manejamos. Esto se puede hacer de forma muy sencilla con series: ```pycon >>> density.head(3) Helio 0.1785 Neón 0.9002 Argón 1.7818 Name: Gas Density, dtype: float64 >>> density.tail(3) Kriptón 3.708 Xenón 5.851 Radón 9.970 Name: Gas Density, dtype: float64 ``` ## Operaciones { #ops } Si tenemos en cuenta que una serie contiene valores en formato `ndarray` podemos concluir que las [operaciones sobre arrays](https://aprendepython.es/pypi/datascience/numpy/#operaciones-sobre-arrays) son aplicables al caso de las series. Veamos algunos ejemplos:material-flash: de operaciones que podemos aplicar sobre series: ### Operaciones lógicas { #logical-ops } Supongamos que queremos filtrar aquellos **gases cuya densidad sea mayor que 3 $kg/m^3$**: ```pycon >>> density Helio 0.1785 Neón 0.9002 Argón 1.7818 Kriptón 3.7080 Xenón 5.8510 Radón 9.9700 Name: Gas Density, dtype: float64 >>> density > 3#(1)! Helio False Neón False Argón False Kriptón True Xenón True Radón True Name: Gas Density, dtype: bool >>> density[density > 3]#(2)! Kriptón 3.708 Xenón 5.851 Radón 9.970 Name: Gas Density, dtype: float64 ``` { .annotate } 1. Se obtiene una serie «booleana». 2. Para obtener los datos filtrados debemos aplicar la «máscara» anterior. ### Ordenación { #sort } Es posible ordenar una serie por sus valores o por su índice: === "Ordenación de valores" ```pycon >>> density.sort_values()#(1)! Helio 0.1785 Neón 0.9002 Argón 1.7818 Kriptón 3.7080 Xenón 5.8510 Radón 9.9700 Name: Gas Density, dtype: float64 ``` { .annotate } 1. - Ordenación de una serie por sus valores. - El argumento `ascending=False` hará que la ordenación sea de mayor a menor. - El argumento `inplace=True` hará que se modifique la serie en vez de retornar una nueva. === "Ordenación de índice" ```pycon >>> density.sort_index()#(1)! Argón 1.7818 Helio 0.1785 Kriptón 3.7080 Neón 0.9002 Radón 9.9700 Xenón 5.8510 Name: Gas Density, dtype: float64 ``` { .annotate } 1. - Ordenación de una serie por su índice. - El argumento `ascending=False` hará que la ordenación sea de mayor a menor. - El argumento `inplace=True` hará que se modifique la serie en vez de retornar una nueva. ### Contando valores { #count } ```pycon >>> marks = pd.Series([5, 5, 3, 6, 5, 2, 8, 3, 8, 7, 6]) >>> marks.value_counts()#(1)! 5 3 3 2 6 2 8 2 2 1 7 1 dtype: int64 >>> marks.nunique()#(2)! 6 >>> marks.count()#(3)! 11 ``` { .annotate } 1. Tabla de frecuencias de la serie. 2. Número de valores únicos de la serie. 3. Número de valores no nulos de la serie. ### Operaciones aritméticas { #arith-ops } Se distingue el tipo de operación en función de los operandos: #### Operaciones entre series y escalaras { #series-scalar-ops } En el siguiente ejemplo:material-flash: pasamos la densidad de los gases nobles de $kg/m^3$ a $g/m^3$: ```pycon >>> density * 1000 Helio 178.5 Neón 900.2 Argón 1781.8 Kriptón 3708.0 Xenón 5851.0 Radón 9970.0 Name: Gas Density, dtype: float64 ``` #### Operaciones entre series { #series-ops } Para trabajar a posteriori, vamos a crear una nueva serie que almacena el **radio atómico** de los gases nobles medido en $nm$[^1]: ```pycon >>> radius = pd.Series({ ... 'Helio': 0.05, ... 'Neón': 0.07, ... 'Argón': 0.094, ... 'Kriptón': 0.109, ... 'Xenón': 0.13, ... 'Radón': 0.152 ... }, name='Gas Radius') ``` Supongamos que en el siguiente ejemplo:material-flash: queremos calcular la **proporción entre el radio y la densidad de cada gas noble**: ```pycon >>> radius / density Helio 0.280112 Neón 0.077760 Argón 0.052756 Kriptón 0.029396 Xenón 0.022218 Radón 0.015246 dtype: float64 ``` !!! tip "Correspondencia de operación" Ten en cuenta que las operaciones se realizan entre registros que tienen el mismo índice (etiqueta). ### Funciones estadísticas { #stats } Existen multitud de funciones estadísticas que podemos aplicar a una serie. Dependiendo del tipo de dato con el que estamos trabajando, serán más útiles unas que otras. Veamos dos ejemplos:material-flash: de función estadística: ```pycon >>> density.mean() np.float64(3.731583333333333) >>> radius.std() np.float64(0.03772753194507516) ``` ### Máximos y mínimos { #max-min } El abanico de posibilidades es muy amplio en cuanto a la búsqueda de valores máximos y mínimos en una serie. Veamos lo que nos ofrece pandas a este respecto: === "Máximo/mínimo (valor)" ```pycon >>> density.min()#(1)! np.float64(0.1785) >>> density.max()#(2)! np.float64(9.97) ``` { .annotate } 1. Valor mínimo de la serie. 2. Valor máximo de la serie. === "Máximo/mínimo (índice)" ```pycon >>> density.argmin()#(1)! np.int64(0) >>> density.argmax()#(2)! np.int64(5) ``` { .annotate } 1. Índice del valor mínimo de la serie. 2. Índice del valor máximo de la serie. === "Máximo/mínimo (etiqueta)" ```pycon >>> density.idxmin()#(1)! 'Helio' >>> density.idxmax()#(2)! 'Radón' ``` { .annotate } 1. Etiqueta del valor mínimo de la serie. 2. Etiqueta del valor máximo de la serie. === "Máximo/mínimo ($n$)" ```pycon >>> density.nsmallest(3)#(1)! Helio 0.1785 Neón 0.9002 Argón 1.7818 Name: Gas Density, dtype: float64 >>> density.nlargest(3)#(2)! Radón 9.970 Xenón 5.851 Kriptón 3.708 Name: Gas Density, dtype: float64 ``` { .annotate } 1. $n$ menores valores de la serie. 2. $n$ mayores valores de la serie. ## Exportación de series { #export-series } Suele ser bastante habitual intercambiar datos en distintos formatos (y aplicaciones). Para ello, pandas nos permite exportar una serie a multitud de formatos. Veamos algunos de ellos: === "De serie a lista" ```pycon >>> density.to_list() [0.1785, 0.9002, 1.7818, 3.708, 5.851, 9.97] ``` === "De serie a diccionario" ```pycon >>> density.to_dict() {'Helio': 0.1785, 'Neón': 0.9002, 'Argón': 1.7818, 'Kriptón': 3.708, 'Xenón': 5.851, 'Radón': 9.97} ``` === "De serie a CSV" ```pycon >>> density.to_csv() ',Gas Density\nHelio,0.1785\nNeón,0.9002\nArgón,1.7818\nKriptón,3.708\nXenón,5.851\nRadón,9.97\n' ``` === "De serie a JSON" ```pycon >>> density.to_json() '{"Helio":0.1785,"Ne\\u00f3n":0.9002,"Arg\\u00f3n":1.7818,"Kript\\u00f3n":3.708,"Xen\\u00f3n":5.851,"Rad\\u00f3n":9.97}' ``` === "De serie a DataFrame" ```pycon >>> density.to_frame() Gas Density Helio 0.1785 Neón 0.9002 Argón 1.7818 Kriptón 3.7080 Xenón 5.8510 Radón 9.9700 ``` Y muchos otros como: `to_clipboard()`, `to_numpy()`, `to_pickle()`, `to_string()`, `to_xarray()`, `to_excel()`, `to_hdf()`, `to_latex()`, `to_markdown()`, `to_period()`, `to_sql()` o `to_timestamp()`. [^1]: Datos capturados desde [Wikipedia](https://es.wikipedia.org/wiki/Gases_nobles) en abril de 2025. ================================================ FILE: docs/third-party/index.md ================================================ --- icon: material/package-variant --- # Paquetes de terceros Los paquetes de terceros son bibliotecas externas que amplían la funcionalidad de Python más allá de su librería estándar, permitiendo a los programadores acceder a herramientas avanzadas y soluciones especializadas sin tener que escribir todo desde cero. Estos paquetes cubren una amplia gama de áreas, como análisis de datos, aprendizaje automático, desarrollo web, interfaces gráficas y más. Gracias a la gestión de dependencias a través de herramientas como pip, instalar y usar estos paquetes es sencillo. En este bloque, exploraremos cómo instalar y trabajar con algunos de los paquetes más populares y útiles en Python, y cómo aprovechar su poder para mejorar la eficiencia y versatilidad de tus proyectos. ================================================ FILE: docs/third-party/learning/index.md ================================================ # Aprendizaje Los paquetes de terceros de Python orientados al aprendizaje del propio lenguaje y a la práctica mediante ejercicios son importantes porque amplían las posibilidades educativas más allá de lo que ofrece la biblioteca estándar. Estas herramientas ayudan a comprender mejor la sintaxis, las buenas prácticas y los conceptos fundamentales de Python a través de entornos interactivos, validación automática de ejercicios, análisis de errores y retroalimentación inmediata. Además, facilitan un aprendizaje más guiado y motivador, ya que permiten practicar de forma progresiva, simular situaciones reales de programación y adoptar hábitos profesionales desde etapas tempranas, lo que contribuye a una formación más sólida y eficaz en el lenguaje Python. ================================================ FILE: docs/third-party/learning/pypas.md ================================================ --- icon: material/seed tags: - Paquetes de terceros - Aprendizaje - pypas --- # pypas { #pypas } ![Banner](images/pypas/banner.jpg) ///caption Imagen generada con Inteligencia Artificial /// Si damos por buena aquella frase de «A programar se aprende programando», sería muy útil disponer de «problemas» a los que encontrar una solución mediante código. Pues este proyecto viene a dar respuesta a este escenario. Este paquete te ofrece **cientos de ejercicios** con los que podrás practicar tu lenguaje de programación favorito :heart:{.beat} Python. !!! note "Aprende Python" **pypas** está íntimamente relacionado con [Aprende Python](https://aprendepython.es). Es la herramienta que permite trabajar los ejercicios propuestos. ## Instalación { #install } El paquete —en realidad— se denomina [`pypas-cli`](https://pypi.org/project/pypas-cli/) y existen varias maneras de instalarlo: === "Mediante: *uv*  :simple-uv:{.uv}" ??? info "Requisitos" Necesitarás [instalar uv](https://docs.astral.sh/uv/getting-started/installation/) que es un gestor (rápido y eficiente) de paquetería para Python. Una vez tengas `uv` instalado, abre una terminal y ejecuta el siguiente comando: ```console $ uv tool install -n -p 3.13 pypas-cli ``` ??? warning "PATH" Para que puedas utilizar correctamente el ejecutable `pypas` debes añadir a tu `PATH` la ruta `$HOME/.local/bin` (en [Linux/macOS](https://www.youtube.com/watch?v=xeXEEp-tqgY)) o `%HOMEPATH%\.local\bin` (en [Windows](https://www.youtube.com/watch?v=JND4SsPQ3HU)). === "Mediante: *pip*  :simple-python:{.green}" ??? info "Requisitos" Necesitarás [instalar Python >= 3.10](https://www.python.org/downloads/). Una vez tengas `python` instalado, abre una terminal y ejecuta el siguiente comando: ```console $ python -m pip install pypas-cli ``` ??? warning "pip" Si obtienes un error del tipo `No module named pip` entonces debes ejecutar este comando para asegurarte de que `pip` queda instalado en tu distribución Python: ```console $ python -m ensurepip --upgrade ``` === "Mediante: *pipx*  :simple-pipx:{.blue}" ??? info "Requisitos" Necesitarás [instalar pipx](https://pipx.pypa.io/stable/installation/) que es una herramienta para instalar aplicaciones Python en entornos aislados. Una vez tengas `pipx` instalado, abre una terminal y ejecuta el siguiente comando: ```console $ pipx install pypas-cli ``` ## Actualización { #upgrade } Es **fundamental** :material-hands-pray:{.beat .green} que tengas instalada la última versión disponible de `pypas-cli`, para evitar fallos y disponer de las mejoras implementadas. Para actualizar a la última versión de `pypas-cli` puedes usar la propia herramienta (*self-upgrading*): ```console $ pypas upgrade ``` ### Actualización manual { #manual-upgrade } Si tienes algún problema con el comando de actualización `pypas upgrade`, también puedes actualizar manualmente el paquete `pypas-cli`. Este proceso dependerá del gestor de paquetes que hayas utilizado: | Gestor | Comando de actualización | | --- | --- | | `uv` | `uv tool upgrade --no-cache pypas-cli` | | `pip` | `python -m pip install --no-cache -U pypas-cli` | | `pipx` | `pipx upgrade pypas-cli` | ## Listar ejercicios { #list } Para listar todos los ejercicios «públicos» basta con ejecutar el siguiente comando: ```console $ pypas list ``` ### Filtros { #list-filter } Es posible aplicar distintos filtros para refinar el listado de ejercicios: === "Por _tema principal_" ```console $ pypas list -p # primary topic ``` === "Por _tema secundario_" ```console $ pypas list -s # secondary topic ``` === "Por _frame_" ```console $ pypas list -f ``` :material-check-all:{ .blue } Es posible **combinar filtros** para obtener un resultado más concreto. ## Obtener un ejercicio { #get } Cada ejercicio dispone de un _slug_ (palabra) que lo identifica unívocamente. !!! example "Ejemplo" Supongamos que queremos trabajar en el ejercicio `add`. Para obtenerlo escribimos el siguiente comando: ```console $ pypas get add #(1)! ``` { .annotate } 1. Utilizamos su _slug_. El comando anterior creará una carpeta `add` con una estructura «similar»[^1] a la siguiente: ``` . ├── docs │ └── README.pdf ├── main.py ├── tests │ ├── __init__.py │ └── test_main.py └── vendor.py ``` !!! tip "Ejercicio público" Si estás [autenticado](#auth) tendrás acceso únicamente a los ejercicios definidos en el _frame_ activo en cada momento. Pero aún así es posible acceder a cualquier ejercicio «público» utilizando un modificador: ```console $ pypas get -p add ``` ## Enunciado de un ejercicio { #doc } Una vez dentro de la carpeta del ejercicio, podemos visualizar el enunciado del ejercicio mediante el siguiente comando: ```console $ pypas doc ``` Previsiblemente se abrirá un documento `.pdf` con la explicación del ejercicio. !!! warning "Dentro de la carpeta" :material-folder-open: Este comando requiere estar dentro de la carpeta del ejercicio :material-arrow-right-bold: `#!console cd ` ## Probar un ejercicio { #test } El punto de entrada de la mayoría de los ejercicios es `main.py`. Será el fichero que debes cumplimentar buscando la etiqueta `#!python #TODO` Para probar («pypas testear») un ejercicio puedes usar: ```console $ pypas test ``` ??? tip "pytest" En realidad `pypas test`, en la mayoría de ocasiones, es un simple «wrapper» sobre [`pytest`](https://docs.pytest.org/en/stable/). Puedes aprovechar todo el potencial de `pytest` usando las [opciones en línea de comandos](https://docs.pytest.org/en/stable/reference/reference.html#command-line-flags) que ofrece. Por ejemplo: `#!console pypas test -x` (para tras el primer test fallido) !!! warning "Dentro de la carpeta" :material-folder-open: Este comando requiere estar dentro de la carpeta del ejercicio :material-arrow-right-bold: `#!console cd ` ## Ejecutar un ejercicio { #run } Eventualmente podrías querer ejecutar tu código en vez de lanzar las pruebas. Puedes utilizar esta estrategia para depurar los errores o mejorar la solución propuesta. !!! example "Ejemplo" Para explicar cómo, vamos a partir del ejercicio `add`. Este sería su `main.py` una vez terminado: ```python def run(a: int, b: int) -> int: result = a + b return result # DO NOT TOUCH THE CODE BELOW # ... ``` Tendrás que crear un fichero `args.py` dentro de la carpeta del ejercicio con los valores que quieras dar a los **parámetros de la función principal**: ```python a = 3 b = 7 ``` Ahora podrías ejecutar tu programa con: ```console $ pypas run ``` !!! warning "Dentro de la carpeta" :material-folder-open: Este comando requiere estar dentro de la carpeta del ejercicio :material-arrow-right-bold: `#!console cd ` ## Actualizar un ejercicio { #update } Es posible que, debido a la corrección de errores o mejoras introducidas, haya actualizaciones de los ejercicios. En ese caso, puedes **actualizar el ejercicio** con: ```console $ pypas update ``` Se hará automáticamente una copia de seguridad (local) de aquellos ficheros (propios) que puedan ser sobreescritos. :material-check-all:{ .blue } Tras la actualización, se mostrará un **mensaje informativo** con las _release notes_ que incluye ^^anotaciones de cada versión^^ desde la actual hasta la última disponible. !!! warning "Dentro de la carpeta" :material-folder-open: Este comando requiere estar dentro de la carpeta del ejercicio :material-arrow-right-bold: `#!console cd ` ## Comprimir un ejercicio { #zip } Si quisieras comprimir todo el contenido del ejercicio para enviarlo o almacenarlo, lo puedes hacer con: ```console $ pypas zip ``` El comando anterior genera un fichero `.zip` dentro de la propia carpeta del ejercicio con todos los ficheros (exluyendo ciertos ficheros «temporales» o «auxiliares»). !!! warning "Dentro de la carpeta" :material-folder-open: Este comando requiere estar dentro de la carpeta del ejercicio :material-arrow-right-bold: `#!console cd ` ## Información de un ejercicio { #exercise } Puede ser interesante conocer información sobre el ejercicio que estamos trabajando. Para ello es suficiente con ejecutar el siguiente comando: ```console $ pypas exercise ``` Si se quiere mostrar el historial de versiones (_releases_) podemos utilizar un modificador: ```console $ pypas exercise -r ``` !!! warning "Dentro de la carpeta" :material-folder-open: Este comando requiere estar dentro de la carpeta del ejercicio :material-arrow-right-bold: `#!console cd ` ## Autenticarse como usuario { #auth } Para poder autenticarte como usuario debes recibir un **token** por parte del administrador. Una vez que dispongas de este «token» debes ejecutar el siguiente comando: ```console $ pypas auth tu-token ``` ### Desautenticarse { #unauth } Es posible eliminar el «token» de autenticación ejecutando el comando: ```console $ pypas unauth ``` ### Información de autenticación { #auth-info } Para conocer el estado de la autenticación, basta con ejecutar el mismo comando sin argumentos: ```console $ pypas auth ``` ## Entregar un ejercicio { #put } Para entregar (_subir_) un ejercicio a [pypas.es](https://pypas.es) debes ejecutar el siguiente comando: ```console $ pypas put #(1)! ``` { .annotate } 1. Este comando [comprime todos los archivos](#zip) de tu ejercicio y los sube a [pypas.es](https://pypas.es). !!! warning "Requiere autenticación" :octicons-key-16: Este comando necesita estar previamente [autenticado/a](#auth). !!! warning "Dentro de la carpeta" :material-folder-open: Este comando requiere estar dentro de la carpeta del ejercicio :material-arrow-right-bold: `#!console cd ` ## Seguir tu actividad { #log } Para seguir tu actividad (de entrega de ejercicios) puedes lanzar el siguiente comando: ```console $ pypas log ``` Con el comando anterior podrás obtener la **información de tus entregas**, separadas por _frames_. Un _frame_ es un «bloque de ejercicios» que suele tener asociada una fecha de comienzo y una fecha de finalización. Dentro de cada _frame_ verás la siguiente información: | Item | Explicación | | --- | --- | | _Uploaded_{.acc} | Número de ejercicios **entregados** sobre el total de ejercicios del frame. | | _Passed_{.acc} | Número de ejercicios que **han pasado todos los tests**. | | _Failed_{.acc} | Número de ejercicios que **no han pasado todos los tests**. | | _Waiting_{.acc} | Número de ejercicios que están **pendientes de testearse**. | | _Score_{.acc} | Número de ejercicios que han **pasado los tests sobre el total** disponible: Nota/Puntuación | Puedes obtener **información más detallada sobre cada ejercicio** entregado utilizando lo siguiente: ```console $ pypas log -v ``` Puedes obtener **información de un determinado _frame_** utilizando lo siguiente: ```console $ pypas log -f frame ``` !!! warning "Requiere autenticación" :octicons-key-16: Este comando necesita estar previamente [autenticado/a](#auth). ## Obtener tus entregas { #pull } Puedes obtener (descargar) tus entregas a través del siguiente comando: ```console $ pypas pull foo ``` Funciona de la siguiente manera: ```mermaid flowchart TB q1(["¿foo es un slug de ejercicio válido?"]) q1 -->|sí| a1[["Se descarga el ejercicio foo"]] q1 -->|no| q2(["¿foo es un slug de frame válido?"]) q2 -->|sí| a2[["Se descarga el frame foo"]] ``` !!! warning "Requiere autenticación" :octicons-key-16: Este comando necesita estar previamente [autenticado/a](#auth). ## Miscelánea { #misc } | Comando | Descripción | | --- | --- | | `pypas --version` | Indica la **versión instalada actualmente** del paquete `pypas-cli` | | `pypas --help` | Muestra la **ayuda** del programa.
Puedes aplicar `--help` sobre cualquier comando. | [^1]: Cada ejercicio puede disponer de una estructura inicial (_plantilla_) distinta y por lo tanto no ser exactamente igual al ejemplo mostrado. ================================================ FILE: docs/third-party/networking/files/requests/req.py ================================================ import requests response = requests.get('https://twitter.com') print(response.status_code) print(len(response.text)) print(response.cookies.get('guest_id')) print(response.headers.get('content-encoding')) ================================================ FILE: docs/third-party/networking/index.md ================================================ # Redes El desarrollo de redes es un área fundamental de la programación que permite la comunicación entre sistemas a través de internet o redes locales. En el contexto de Python, trabajar con redes implica conocer cómo enviar y recibir datos entre dispositivos, gestionar conexiones de red y crear aplicaciones que interactúan con servidores, bases de datos remotas o servicios web. Python proporciona una variedad de bibliotecas como socket, requests y asyncio, que facilitan la implementación de protocolos de comunicación como HTTP, FTP o incluso la creación de servidores y clientes personalizados. En este capítulo, exploraremos cómo utilizar Python para desarrollar aplicaciones que puedan enviar y recibir datos a través de redes, sentando las bases para proyectos como chatbots, servidores web o aplicaciones distribuidas. ================================================ FILE: docs/third-party/networking/requests.md ================================================ --- icon: material/download-network tags: - Paquetes de terceros - Redes - Requests --- # Requests { #requests } ![Banner](images/requests/banner.jpg) ///caption Imagen generada con Inteligencia Artificial /// [`requests`](https://docs.python-requests.org/) es es uno de los paquetes más famosos del ecosistema Python. Como dice su lema «HTTP for Humans» permite realizar peticiones HTTP de una forma muy sencilla y realmente potente. ## Instalación { #install } ```console pip install requests ``` ## Petición { #request } Realizar una petición HTTP mediante requests es **realmente sencillo**: ```pycon >>> import requests >>> response = requests.get('https://pypi.org') ``` Hemos ejecutado una solicitud GET al sitio web https://pypi.org. La respuesta se almacena en un objeto de tipo `requests.models.Response` (muy rica en métodos y atributos): ```pycon >>> type(response) requests.models.Response ``` Quizás lo primero que nos interese sea ver el **contenido de la respuesta**. En este sentido `requests` nos provee del atributo `text` que contendrá el contenido HTML del sitio web en cuestión como cadena de texto: ```pycon >>> response.text#(1)! '\n\n\n\n\n\n\n\n \n \n \n \n\n \n \n\n \n\n PyPI · The Python Package Index\n \n\n \n \n \n \n \n \n